From 627badaf69987c01811c477219fd943757a635f5 Mon Sep 17 00:00:00 2001 From: "Christopher Lott (Christopher) (cl778h)" Date: Mon, 12 Jun 2017 09:49:00 -0400 Subject: [PATCH] [PORTAL-16 PORTAL-18] Widget ms; staging Remove staging repositories from poms. Add widget microservice code base. Add portal unit tests. Repair defects. Normalize line endings. Change-Id: Ia5e48da2a3141b352439ecd548cddf918f4df585 Signed-off-by: Christopher Lott (cl778h) --- LICENSE.txt | 6 +- deliveries/Apps_Users_OnBoarding_Script.sql | 80 +- deliveries/Dockerfile.mariadb | 4 +- deliveries/os_build_febe.sh | 4 + deliveries/widget_ms_start.sh | 4 + deliveries/widget_ms_stop.sh | 5 + ecomp-portal-BE-common-test/.classpath | 31 - ecomp-portal-BE-common-test/.gitignore | 4 + ecomp-portal-BE-common-test/.project | 23 - .../.settings/org.eclipse.core.resources.prefs | 4 - .../.settings/org.eclipse.jdt.core.prefs | 5 - ecomp-portal-BE-common-test/README.md | 26 +- ecomp-portal-BE-common-test/pom.xml | 300 +- .../test/controller/AppCatalogControllerTest.java | 527 +- .../controller/AppContactUsControllerTest.java | 555 +- .../AppsControllerExternalRequestTest.java | 503 + .../portal/test/controller/AppsControllerTest.java | 914 + .../controller/BEPropertyReaderControllerTest.java | 73 + .../controller/BasicAuthAccountControllerTest.java | 264 + .../controller/CommonWidgetControllerTest.java | 84 + .../controller/ConsulClientControllerTest.java | 142 + .../DashboardSearchResultControllerTest.java | 366 + .../ExternalAppsRestfulControllerTest.java | 174 + .../controller/FunctionalMenuControllerTest.java | 378 +- .../test/controller/GetAccessControllerTest.java | 71 + .../test/controller/ManifestControllerTest.java | 56 + .../controller/MicroserviceControllerTest.java | 233 + .../MicroserviceProxyControllerTest.java | 106 + .../test/controller/PortalAdminControllerTest.java | 231 + .../RolesApprovalSystemControllerTest.java | 336 + .../test/controller/TicketEventControllerTest.java | 99 + .../portal/test/controller/UserControllerTest.java | 141 + .../controller/UserNotificationControllerTest.java | 528 +- .../UserRecommendationControllerTest.java | 69 + .../test/controller/UserRolesControllerTest.java | 261 +- .../WebAnalyticsExtAppControllerTest.java | 131 + .../WidgetsCatalogMarkupControllerTest.java | 71 + .../portalapp/portal/test/core/MockEPUser.java | 170 +- .../portal/test/core/PopulateSampleTestData.java | 132 +- .../portal/test/core/RemoveSampleTestData.java | 131 +- .../portal/test/core/RestURLsTestSuite.java | 662 +- .../ApplicationCommonContextTestSuite.java | 350 +- .../portal/test/framework/MockitoTestSuite.java | 140 +- .../service/FunctionalMenuServiceImplTest.java | 161 +- .../ApplicationCommonContextTestSuite.java | 175 + .../portalapp/test/framework/MockitoTestSuite.java | 70 + .../src/main/resources/PopulateTestData.sql | 60 +- .../src/main/resources/RemoveTestData.sql | 58 +- ecomp-portal-BE-common/README.md | 10 + ecomp-portal-BE-common/pom.xml | 7 - .../src/main/java/jarutil/ExtractJar.java | 408 +- .../portalapp/config/NotificationCleanup.java | 40 + .../config/NotificationCleanupConfig.java | 62 + .../openecomp/portalapp/config/SwaggerConfig.java | 116 +- .../portalapp/config/SwaggerMVCConfig.java | 74 +- .../model/ExternalSystemRoleApproval.java | 79 +- .../model/ExternalSystemUser.java | 148 +- .../portalapp/lm/FusionLicenseManagerImpl.java | 176 +- .../portal/controller/AppCatalogController.java | 44 +- .../portal/controller/AppContactUsController.java | 24 +- .../portal/controller/AppsController.java | 112 +- .../controller/AppsControllerExternalRequest.java | 748 +- .../portal/controller/AuditLogController.java | 212 +- .../controller/BEPropertyReaderController.java | 92 +- .../controller/BasicAuthAccountController.java | 115 +- .../controller/BasicAuthenticationController.java | 56 +- .../portal/controller/ConsulClientController.java | 185 +- .../portal/controller/DashboardController.java | 770 +- .../controller/ExternalAppsRestfulController.java | 412 +- .../controller/FunctionalMenuController.java | 1217 +- .../portal/controller/HealthCheckController.java | 60 +- .../portal/controller/MicroserviceController.java | 280 +- .../controller/MicroserviceProxyController.java | 206 +- .../portal/controller/PortalAdminController.java | 409 +- .../portal/controller/RoleManageController.java | 332 +- .../controller/RolesApprovalSystemController.java | 342 +- .../controller/SharedContextRestController.java | 35 +- .../portal/controller/TicketEventController.java | 363 +- .../portal/controller/UserController.java | 104 + .../controller/UserNotificationController.java | 433 +- .../controller/UserRecommendationController.java | 87 + .../portal/controller/UserRolesController.java | 296 +- .../controller/WebAnalyticsExtAppController.java | 398 +- .../controller/WidgetsCatalogController.java | 768 +- .../controller/WidgetsCatalogMarkupController.java | 169 +- .../org/openecomp/portalapp/portal/domain/App.java | 124 +- .../portalapp/portal/domain/AppContactUs.java | 172 +- .../portal/domain/AppIdAndNameTransportModel.java | 126 +- .../portalapp/portal/domain/AppsResponse.java | 152 +- .../portalapp/portal/domain/BEProperty.java | 121 +- .../openecomp/portalapp/portal/domain/EPApp.java | 584 +- .../openecomp/portalapp/portal/domain/EPRole.java | 404 +- .../portalapp/portal/domain/EPUserApp.java | 238 +- .../portal/domain/EPUserAppCatalogRoles.java | 184 +- .../portal/domain/EPUserAppRolesRequest.java | 172 +- .../portal/domain/EPUserAppRolesRequestDetail.java | 108 +- .../domain/EPUserAppsManualSortPreference.java | 100 +- .../portal/domain/EPUserAppsSortPreference.java | 88 +- .../portal/domain/EPUserNotification.java | 114 +- .../domain/EPWidgetsManualSortPreference.java | 140 +- .../portalapp/portal/domain/EcompApp.java | 292 +- .../portalapp/portal/domain/EcompAppRole.java | 160 +- .../portalapp/portal/domain/EcompAppRoleId.java | 166 +- .../portalapp/portal/domain/EcompAuditLog.java | 122 +- .../portalapp/portal/domain/EpUserAppRoles.java | 126 +- .../portal/domain/ExternalSystemAccess.java | 98 +- .../portal/domain/FunctionalMenuItemWithAppID.java | 192 +- .../portalapp/portal/domain/GetAccessResult.java | 228 +- .../portalapp/portal/domain/GetAccessResultId.java | 128 +- .../portalapp/portal/domain/MicroserviceData.java | 292 +- .../portal/domain/MicroserviceParameter.java | 164 +- .../portal/domain/PersUserAppSelection.java | 156 +- .../portal/domain/PersUserWidgetSelection.java | 162 +- .../openecomp/portalapp/portal/domain/RoleApp.java | 228 +- .../portalapp/portal/domain/SharedContext.java | 334 +- .../portalapp/portal/domain/UserRoles.java | 226 +- .../openecomp/portalapp/portal/domain/Widget.java | 210 +- .../portalapp/portal/domain/WidgetCatalog.java | 218 +- .../portal/domain/WidgetCatalogParameter.java | 180 +- .../portal/domain/WidgetParameterResult.java | 140 +- .../portal/domain/WidgetServiceHeaders.java | 108 +- .../portal/ecomp/model/AppCatalogItem.java | 507 +- .../ecomp/model/AppCategoryFunctionsItem.java | 280 +- .../portal/ecomp/model/AppContactUsItem.java | 342 +- .../portal/ecomp/model/CommonWidgetsEnum.java | 72 +- .../portal/ecomp/model/PortalRestResponse.java | 202 +- .../portal/ecomp/model/PortalRestStatusEnum.java | 72 +- .../portal/ecomp/model/SearchResultItem.java | 172 +- .../exceptions/NoHealthyServiceException.java | 72 +- .../interceptor/PortalResourceInterceptor.java | 112 +- .../portalapp/portal/listener/HealthMonitor.java | 696 +- .../portal/listener/UserContextListener.java | 102 +- .../portalapp/portal/logging/aop/EPAuditLog.java | 62 +- .../portalapp/portal/logging/aop/EPMetricsLog.java | 62 +- .../logging/format/ApplicationCodes.properties | 282 +- .../portal/logging/format/EPAppMessagesEnum.java | 520 +- .../portal/logging/format/EPErrorCodesEnum.java | 190 +- .../portalapp/portal/logging/logic/EPLogUtil.java | 555 +- .../portal/service/AdminRolesService.java | 112 +- .../portal/service/AdminRolesServiceImpl.java | 658 +- .../portal/service/AppContactUsService.java | 110 +- .../portal/service/AppContactUsServiceImpl.java | 378 +- .../portalapp/portal/service/AppsCacheService.java | 84 +- .../portal/service/AppsCacheServiceImple.java | 272 +- .../portal/service/BasicAuthAccountService.java | 45 +- .../service/BasicAuthAccountServiceImpl.java | 4 +- .../BasicAuthenticationCredentialService.java | 70 +- .../BasicAuthenticationCredentialServiceImpl.java | 28 +- .../portal/service/ConsulHealthService.java | 75 +- .../portal/service/ConsulHealthServiceImpl.java | 186 +- .../portal/service/DashboardSearchService.java | 74 +- .../portal/service/DashboardSearchServiceImpl.java | 200 +- .../portal/service/EPAppCommonServiceImpl.java | 2789 +- .../portalapp/portal/service/EPAppService.java | 426 +- .../portalapp/portal/service/EPAuditService.java | 54 +- .../portal/service/EPAuditServiceImpl.java | 208 +- .../portalapp/portal/service/EPLdapService.java | 62 +- .../portal/service/EPLdapServiceImpl.java | 576 +- .../portal/service/EPLeftMenuService.java | 88 +- .../portal/service/EPLeftMenuServiceImpl.java | 390 +- .../portalapp/portal/service/EPLoginService.java | 142 +- .../portal/service/EPLoginServiceImpl.java | 468 +- .../portalapp/portal/service/EPRoleService.java | 74 +- .../portal/service/EPRoleServiceImpl.java | 350 +- .../portal/service/FunctionalMenuService.java | 116 +- .../portal/service/FunctionalMenuServiceImpl.java | 1926 +- .../portalapp/portal/service/GetAccessService.java | 66 +- .../portal/service/GetAccessServiceImpl.java | 122 +- .../portalapp/portal/service/ManifestService.java | 66 +- .../portal/service/ManifestServiceImpl.java | 124 +- .../portal/service/MicroserviceProxyService.java | 118 +- .../service/MicroserviceProxyServiceImpl.java | 464 +- .../portal/service/MicroserviceService.java | 173 +- .../portal/service/MicroserviceServiceImpl.java | 407 +- .../portal/service/PersUserAppService.java | 84 +- .../portal/service/PersUserAppServiceImpl.java | 282 +- .../portal/service/PersUserWidgetService.java | 80 +- .../portal/service/PersUserWidgetServiceImpl.java | 162 +- .../portal/service/PortalAdminService.java | 62 +- .../portal/service/PortalAdminServiceImpl.java | 417 +- .../portalapp/portal/service/SearchService.java | 60 +- .../portal/service/SearchServiceImpl.java | 350 +- .../portal/service/SharedContextService.java | 198 +- .../portal/service/SharedContextServiceImpl.java | 354 +- .../portal/service/UserNotificationService.java | 195 +- .../service/UserNotificationServiceImpl.java | 455 +- .../portal/service/UserRolesCommonServiceImpl.java | 1479 + .../portalapp/portal/service/UserRolesService.java | 158 +- .../portalapp/portal/service/UserService.java | 10 +- .../portalapp/portal/service/UserServiceImpl.java | 7 +- .../portal/service/WidgetParameterService.java | 128 +- .../portal/service/WidgetParameterServiceImpl.java | 183 +- .../portalapp/portal/service/WidgetService.java | 72 +- .../portal/service/WidgetServiceImpl.java | 552 +- .../portal/transport/AllAppsWithRolesForUser.java | 80 +- .../portalapp/portal/transport/Analytics.java | 132 +- .../transport/AppCatalogPersonalization.java | 188 +- .../portal/transport/AppNameIdIsAdmin.java | 228 +- .../portal/transport/AppWithRolesForUser.java | 145 +- .../portal/transport/AppsListWithAdminRole.java | 172 +- .../transport/BusinessCardApplicationRole.java | 216 +- .../BusinessCardApplicationRolesList.java | 172 +- .../portalapp/portal/transport/CommonWidget.java | 278 +- .../portal/transport/CommonWidgetMeta.java | 100 +- .../portal/transport/EPAppsManualPreference.java | 228 +- .../portal/transport/EPAppsSortPreference.java | 94 +- .../transport/EPDeleteAppsManualSortPref.java | 102 +- .../portal/transport/EPWidgetsSortPreference.java | 184 +- .../portal/transport/EpNotificationItem.java | 656 +- .../portal/transport/EpNotificationItemExtVO.java | 238 +- .../portal/transport/EpNotificationItemVO.java | 382 +- .../portal/transport/EpRoleNotificationItem.java | 180 +- .../portalapp/portal/transport/EventWidget.java | 276 +- .../portal/transport/EventWidgetMeta.java | 102 +- .../transport/ExternalRequestFieldsValidator.java | 28 + .../transport/FavoritesFunctionalMenuItem.java | 90 +- .../transport/FavoritesFunctionalMenuItemJson.java | 114 +- .../portal/transport/FieldsValidator.java | 250 +- .../portal/transport/FunctionalMenuItem.java | 200 +- .../transport/FunctionalMenuItemWithRoles.java | 120 +- .../portal/transport/FunctionalMenuRole.java | 230 +- .../portalapp/portal/transport/LocalRole.java | 101 +- .../portalapp/portal/transport/OnboardingApp.java | 200 +- .../portal/transport/OnboardingWidget.java | 130 +- .../portalapp/portal/transport/PortalAdmin.java | 138 +- .../portal/transport/PortalAdminUserRole.java | 96 +- .../portalapp/portal/transport/ProfileDetail.java | 60 + .../portalapp/portal/transport/RemoteRole.java | 88 +- .../portal/transport/RoleInAppForUser.java | 210 +- .../portal/transport/RolesInAppForUser.java | 66 +- .../transport/WidgetCatalogPersonalization.java | 114 +- .../portalapp/portal/ueb/EPUebHelper.java | 434 +- .../portalapp/portal/ueb/EPUebMsgTypes.java | 54 +- .../portal/utils/CustomLoggingFilter.java | 108 +- .../portal/utils/EPCommonSystemProperties.java | 1 + .../portalapp/portal/utils/EcompPortalUtils.java | 675 +- .../portalapp/portal/utils/EcompVersion.java | 66 +- .../portalapp/portal/utils/HashMapFromList.java | 198 +- .../portalapp/portal/utils/ParallelExecutor.java | 166 +- .../portalapp/portal/utils/PortalConstants.java | 55 +- .../portalapp/service/AdminAuthExtension.java | 72 +- .../portalapp/service/EPProfileService.java | 72 +- .../portalapp/service/EPProfileServiceImpl.java | 154 +- .../service/RemoteWebServiceCallService.java | 102 +- .../org/openecomp/portalapp/util/EPUserUtils.java | 814 +- .../org/openecomp/portalapp/util/SystemType.java | 52 +- .../src/main/webapp/WEB-INF/defs/definitions.xml | 76 +- .../webapp/WEB-INF/fusion/defs/definitions.xml | 392 +- .../src/main/webapp/WEB-INF/fusion/orm/EP.hbm.xml | 160 +- .../main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml | 670 +- .../webapp/WEB-INF/fusion/orm/Workflow.hbm.xml | 96 +- .../src/main/webapp/WEB-INF/jsp/error.jsp | 40 +- .../src/main/webapp/WEB-INF/jsp/index.jsp | 42 +- .../src/main/webapp/WEB-INF/jsp/login.jsp | 240 +- .../src/main/webapp/WEB-INF/jsp/login_external.jsp | 324 +- .../src/main/webapp/WEB-INF/web.xml | 112 +- ecomp-portal-BE-common/src/main/webapp/index.jsp | 68 +- .../portal/controller/SharedContextRestClient.java | 562 +- .../SharedContextRestControllerTest.java | 254 +- .../controller/SharedContextTestProperties.java | 162 +- .../controller/shared-context-test.properties | 56 +- .../portal/listener/HealthMonitorTest.java | 72 +- .../portal/utils/EcompPortalUtilsTest.java | 74 +- ecomp-portal-BE-os/README.md | 29 +- ecomp-portal-BE-os/pom.xml | 35 +- .../portalapp/conf/ExternalAppConfig.java | 1 + .../portalapp/controller/ONAPLoginController.java | 162 +- .../portalapp/portal/service/EPAppServiceImpl.java | 10 + .../portalapp/portal/service/UserRolesService.java | 58 - .../portal/service/UserRolesServiceImpl.java | 605 +- .../portalapp/util/SessionCookieUtil.java | 0 .../src/main/webapp/WEB-INF/conf/system.properties | 6 +- .../src/main/webapp/WEB-INF/defs/definitions.xml | 2 +- .../webapp/WEB-INF/fusion/defs/definitions.xml | 120 - .../external/b2b/css/b2b-angular/font_icons.css | 1 + .../ds2/css/digital-ng-library/ecomp-ionicons.css | 156 + .../ds2/css/digital-ng-library/ionicons.css | 1480 + .../app/fusion/external/ds2/css/fonts/ionicons.eot | Bin 0 -> 120724 bytes .../app/fusion/external/ds2/css/fonts/ionicons.svg | 2230 + .../app/fusion/external/ds2/css/fonts/ionicons.ttf | Bin 0 -> 188508 bytes .../fusion/external/ds2/css/fonts/ionicons.woff | Bin 0 -> 67904 bytes ecomp-portal-BE-os/src/main/webapp/index.jsp | 82 +- .../portal/controller/SharedContextRestClient.java | 560 +- .../SharedContextRestControllerTest.java | 250 +- .../controller/SharedContextTestProperties.java | 162 +- .../controller/shared-context-test.properties | 56 +- .../portal/listener/HealthMonitorTest.java | 72 +- .../portal/utils/EcompPortalUtilsTest.java | 66 +- ecomp-portal-FE-common/.gitignore | 3 + ecomp-portal-FE-common/README.md | 13 +- .../b2b-leftnav-ext/b2b-leftnav-ext.directive.js | 136 +- .../b2b-leftnav-ext/b2b-leftnav-ext.less | 6 +- .../b2b-leftnav-ext/b2b-leftnav-ext.tpl.html | 124 +- .../file-upload/file-upload.directive.js | 78 +- .../directives/left-menu/left-menu.directive.js | 180 +- .../app/directives/left-menu/left-menu.tpl.html | 44 +- .../multiple-select/multiple-select.directive.js | 226 +- .../multiple-select/multiple-select.tpl.html | 72 +- .../multiple-select/multiple-select2.directive.js | 226 +- .../multiple-select/multiple-select2.tpl.html | 72 +- .../right-click/ng-right-click-directive.js | 64 +- ecomp-portal-FE-common/client/app/router.js | 50 +- .../client/app/services/admins/admins.service.js | 442 +- .../app/services/audit-log/audit-log.service.js | 184 +- .../client/app/services/base64/base64.service.js | 138 +- .../be-property-reader.service.js | 140 +- .../client/app/services/catalog/catalog.service.js | 374 +- .../services/confirm-box/confirm-box.service.js | 472 +- .../app/services/contact-us/contact-us.service.js | 494 +- .../app/services/dashboard/dashboard.service.js | 370 +- .../external-request-access-service.js | 126 +- .../services/global-constants/global-constants.js | 46 +- .../app/services/manifest/manifest.service.js | 128 +- .../client/app/services/menus/menus.service.js | 29 +- .../services/microservice/microservice.service.js | 436 +- .../services/notification/notification.service.js | 644 +- .../recommendation/recommendation.service.js | 88 + .../client/app/services/role/role.service.js | 380 +- .../client/app/services/users/users.service.js | 483 +- .../widgets-catalog/widgets-catalog.service.js | 716 +- .../client/app/services/widgets/widgets.service.js | 412 +- .../account-add-details/account-add-details.html | 6 + .../account-add-details/account-add-details.js | 15 +- .../account-onboarding/account-onboarding.less | 22 +- .../account-onboarding/account-onboarding.tpl.html | 2 +- .../add-admin-dialogs/new-admin.controller.js | 505 +- .../add-admin-dialogs/new-admin.controller.spec.js | 268 +- .../admins/add-admin-dialogs/new-admin.modal.html | 25 +- .../admins/add-admin-dialogs/new-admin.modal.less | 6 +- .../app/views/admins/admins.controller.spec.js | 38 +- .../client/app/views/admins/admins.less | 57 +- .../client/app/views/admins/admins.tpl.html | 132 +- .../add-catalog-dialogs/new-catalog.modal.less | 250 +- .../client/app/views/catalog/catalog.controller.js | 483 +- .../client/app/views/catalog/catalog.tpl.html | 180 +- .../app/views/catalog/information-box.tpl.html | 84 +- .../admin-confirmation-box.tpl.html | 62 +- .../confirmation-box.controller.js | 98 +- .../confirmation-box/confirmation-box.tpl.html | 56 +- .../dragdrop-confirmation-box.tpl.html | 62 +- .../confirmation-box/information-box.tpl.html | 54 +- .../views/dashboard/dashboard-widget-manage.html | 305 +- .../dashboard-widget-parameter-manage.html | 178 +- .../dashboard-widget-parameters.controller.js | 162 +- .../dashboard-widget-parameters.controller.less | 54 +- .../views/dashboard/dashboard-widget.controller.js | 844 +- .../app/views/dashboard/dashboard.controller.js | 1029 +- .../client/app/views/dashboard/dashboard.less | 1809 +- .../client/app/views/dashboard/dashboard.tpl.html | 362 +- .../menu-details.controller.js | 400 + .../menu-details.delete.modal.html | 18 + .../functionalMenu-dialog/menu-details.modal.html | 97 + .../functionalMenu-dialog/modal-details.modal.less | 95 +- .../client/app/views/header/header.controller.js | 1007 +- .../app/views/header/header.controller.spec.js | 38 +- .../client/app/views/header/header.less | 54 +- .../client/app/views/header/header.tpl.html | 596 +- .../microservice-add-details.html | 416 +- .../microservice-add-details.js | 673 +- .../microservice-onboarding.less | 20 +- .../microservice-onboarding.tpl.html | 150 +- .../notificationhistory.controller.js | 174 +- .../notificationhistory.tpl.html | 200 +- .../new-portal-admin.controller.js | 190 +- .../new-portal-admin.controller.spec.js | 38 +- .../new-portal-admin/new-portal-admin.modal.html | 78 +- .../views/portal-admin/portal-admin-controller.js | 220 +- .../app/views/portal-admin/portal-admin.tpl.html | 128 +- .../app/views/role/popup_modal_rolefunction.html | 114 +- .../client/app/views/role/role-controller.js | 438 +- .../views/role/role-function-list-controller.js | 320 +- .../client/app/views/role/role-list-controller.js | 294 +- .../client/app/views/role/role.html | 192 +- .../client/app/views/role/role.less | 98 +- .../app/views/role/role_childrole_popup.html | 106 +- .../client/app/views/role/role_function_list.html | 214 +- .../app/views/role/role_functions_popup.html | 104 +- .../client/app/views/role/role_list.html | 112 +- .../app/views/role/rolefunctionpopupController.js | 190 +- .../app/views/role/rolepopupmodelController.js | 502 +- .../client/app/views/sidebar/sidebar.controller.js | 126 +- .../client/app/views/sidebar/sidebar.less | 72 +- .../client/app/views/sidebar/sidebar.tpl.html | 40 +- .../contact-us-manage.controller.js | 404 +- .../contact-us-manage.controller.less | 18 + .../contact-us-manage/contact-us-manage.html | 361 +- .../support/contact-us/contact-us.controller.js | 342 +- .../contact-us/contact-us.controller.spec.js | 38 +- .../views/support/contact-us/contact-us.tpl.html | 250 +- .../support/get-access/get-access.controller.js | 248 +- .../get-access/get-access.controller.spec.js | 38 +- .../views/support/get-access/get-access.tpl.html | 204 +- .../client/app/views/tabs/tabs.controller.js | 17 +- .../user.notifications.Json.details.controller.js | 72 +- ...user.notifications.Json.details.modal.page.html | 96 +- .../user.notifications.controller.js | 392 +- ...user.notifications.json.details.modal.page.less | 94 +- .../user.notifications.modal.controller.js | 1494 +- .../user.notifications.modal.page.html | 328 +- .../user.notifications.tpl.html | 234 +- .../users/new-user-dialogs/bulk-user.ack.html | 64 +- .../users/new-user-dialogs/bulk-user.confirm.html | 166 +- .../users/new-user-dialogs/bulk-user.controller.js | 1154 +- .../users/new-user-dialogs/bulk-user.modal.html | 146 +- .../users/new-user-dialogs/new-user.controller.js | 433 +- .../new-user-dialogs/new-user.controller.spec.js | 510 +- .../users/new-user-dialogs/new-user.modal.html | 174 +- .../client/app/views/users/users.controller.js | 487 +- .../app/views/users/users.controller.spec.js | 282 +- .../client/app/views/users/users.less | 43 +- .../client/app/views/users/users.tpl.html | 196 +- .../widget-catalog/widget-catalog.controller.js | 700 +- .../widget-catalog.controller.spec.js | 40 +- .../views/widget-catalog/widget-catalog.tpl.html | 152 +- .../widget-details.controller.js | 762 +- .../widget-details.controller.spec.js | 308 +- .../widget-details.modal.html | 312 +- .../widget-onboarding.controller.js | 408 +- .../widget-onboarding.controller.spec.js | 40 +- .../views/widget-onboarding/widget-onboarding.less | 6 + .../widget-onboarding/widget-onboarding.tpl.html | 228 +- .../widget-details.controller.js | 452 +- .../widget-details.controller.spec.js | 308 +- .../widget-details.modal.html | 304 +- .../client/app/views/widgets/widgets.controller.js | 336 +- .../app/views/widgets/widgets.controller.spec.js | 38 +- .../client/app/views/widgets/widgets.tpl.html | 162 +- .../b2b/css/b2b-angular/b2b-angular.css | 23652 +++++----- .../b2b/js/b2b-angular/README.md | 6 +- .../b2b/js/b2b-angular/b2b-library.min.js | 44110 +++++++++---------- .../client/assets/images/onap-logo.png | Bin 0 -> 29116 bytes .../b2b/css/b2b-angular/.gitignore | 2 + .../b2b/css/b2b-angular/README.md | 14 - .../b2b/js/b2b-angular/.gitignore | 2 + .../b2b/js/b2b-angular/README.md | 13 - .../b2b/js/b2b-angular/b2b-library.min.js | 22048 --------- .../ionicons-2.0.1/css/ecomp-ionicons.css | 108 + .../ionicons-2.0.1/css/ionicons.css | 2973 +- ecomp-portal-FE-os/client/configurations/dev.json | 43 +- .../client/configurations/integ.json | 43 +- ecomp-portal-FE-os/client/index.html | 412 +- .../src/directives/right-menu/right-menu.less | 362 +- .../src/directives/search-users/search-users.less | 4 +- ecomp-portal-FE-os/client/src/styles/att-abs.less | 40 + .../applications/applications.controller.spec.js | 38 +- .../src/views/applications/applications.tpl.html | 4 +- .../add-catalog-dialogs/new-catalog.controller.js | 436 +- .../add-catalog-dialogs/new-catalog.modal.html | 226 +- .../views/dashboard/dashboard-extension.tpl.html | 1 + .../client/src/views/dashboard/dashboard.tpl.html | 173 - .../client/src/views/footer/footer.controller.js | 96 +- .../src/views/footer/footer.controller.spec.js | 38 +- .../client/src/views/footer/footer.less | 208 +- .../client/src/views/footer/footer.tpl.html | 68 +- .../menu-details.controller.js | 830 +- .../menu-details.delete.modal.html | 74 +- .../functionalMenu-dialog/menu-details.modal.html | 206 +- .../functionalMenu/functionalMenu.controller.js | 744 +- .../views/functionalMenu/functionalMenu.tpl.html | 92 +- .../src/views/functionalMenu/jqTreeContextMenu.js | 428 +- .../src/views/header/header-extension.tpl.html | 3 + .../client/src/views/header/header-logo.html | 1 + .../profile-edit.controller.js | 87 + .../profile-edit-dialogs/profile-edit.modal.html | 69 + .../profile-edit-dialogs/profile-edit.modal.less | 21 + .../client/src/views/search/search.controller.js | 396 +- .../src/views/search/search.controller.spec.js | 38 +- .../views/support/contact-us/contact-us.aux.html | 50 +- .../views/support/get-access/get-accessinfo.html | 48 +- .../client/src/views/userbar/userbar.tpl.html | 40 +- ecomp-portal-FE-os/pom.xml | 447 +- ecomp-portal-widget-ms/.gitignore | 39 + .../1702-widgets/approx-portal-usage.zip | Bin 0 -> 90114 bytes .../1702-widgets/daily-app-usage-count.zip | Bin 0 -> 52363 bytes .../1702-widgets/daily-app-usage-count2.zip | Bin 0 -> 90872 bytes .../1702-widgets/widget_events.zip | Bin 0 -> 1504004 bytes .../1702-widgets/widget_news.zip | Bin 0 -> 1503954 bytes .../1702-widgets/widget_resources.zip | Bin 0 -> 1504661 bytes ecomp-portal-widget-ms/README.md | 220 + .../dashboard-widgets/approx-portal-usage.zip | Bin 0 -> 5017 bytes .../dashboard-widgets/approx-portal-usage2.zip | Bin 0 -> 5062 bytes .../dashboard-widgets/ccd_widget.zip | Bin 0 -> 1502265 bytes .../dashboard-widgets/daily-app-usage-count.zip | Bin 0 -> 4962 bytes .../dashboard-widgets/events-widget.zip | Bin 0 -> 1501585 bytes .../dashboard-widgets/news-widget.zip | Bin 0 -> 1502150 bytes .../dashboard-widgets/resources-widget.zip | Bin 0 -> 1502662 bytes ...ment Guide Portal Microservices and Consul.docx | Bin 0 -> 92934 bytes ecomp-portal-widget-ms/java | 0 ecomp-portal-widget-ms/pom.xml | 170 + .../src/main/certificates/be1/widget-keystore.p12 | Bin 0 -> 2614 bytes .../src/main/certificates/be2/widget-keystore.p12 | Bin 0 -> 2614 bytes ecomp-portal-widget-ms/src/main/docker/Dockerfile | 6 + .../portalapp/widget/MicroserviceApplication.java | 20 + .../portalapp/widget/constant/WidgetConstant.java | 13 + .../controller/DatabaseFileUploadController.java | 82 + .../widget/controller/HealthController.java | 35 + .../controller/WidgetsCatalogController.java | 261 + .../portalapp/widget/dao/WidgetDataSource.java | 34 + .../org/openecomp/portalapp/widget/domain/App.java | 47 + .../portalapp/widget/domain/MicroserviceData.java | 126 + .../widget/domain/MicroserviceParameter.java | 70 + .../openecomp/portalapp/widget/domain/RoleApp.java | 96 + .../portalapp/widget/domain/ValidationRespond.java | 34 + .../portalapp/widget/domain/WidgetCatalog.java | 134 + .../portalapp/widget/domain/WidgetFile.java | 96 + .../widget/excetpion/StorageException.java | 15 + .../excetpion/StorageFileNotFoundException.java | 14 + .../widget/filters/CorsConfiguration.java | 15 + .../widget/hibernate/HibernateConfiguration.java | 44 + .../widget/listener/WidgetEventListener.java | 36 + .../widget/service/InitializationService.java | 7 + .../widget/service/MicroserviceService.java | 17 + .../portalapp/widget/service/StorageService.java | 34 + .../widget/service/WidgetCatalogService.java | 29 + .../service/impl/InitializationServiceImpl.java | 128 + .../service/impl/MicroserviceServiceImpl.java | 87 + .../widget/service/impl/StorageServiceImpl.java | 487 + .../service/impl/WidgetCatalogServiceImpl.java | 240 + .../portalapp/widget/utils/AuthorizationUtil.java | 19 + .../portalapp/widget/utils/UnzipUtil.java | 102 + .../src/main/resources/application-properties | 28 + .../resources/application.properties.templated | 35 + .../src/main/resources/events-widget.zip | Bin 0 -> 1501585 bytes .../src/main/resources/framework-template.js | 173 + .../src/main/resources/logback.xml | 138 + .../src/main/resources/news-widget.zip | Bin 0 -> 1502150 bytes .../src/main/resources/resources-widget.zip | Bin 0 -> 1502662 bytes .../src/main/resources/templates/Upload.html | 17 + .../src/main/resources/templates/widgetsPage.html | 15 + .../src/main/resources/widget-keystore.p12 | Bin 0 -> 2638 bytes .../src/main/resources/widget_ms_start.sh | 4 + .../src/main/resources/widget_ms_stop.sh | 5 + .../test/controller/WidgetFileControllerTest.java | 74 + .../controller/WidgetsCatalogControllerTest.java | 195 + .../test/service/WidgetCatalogServiceTest.java | 124 + ecomp-portal-widget-ms/testadd.txt | 1 + ecomp-portal-widget-ms/website.url | Bin 0 -> 103 bytes 537 files changed, 97624 insertions(+), 104646 deletions(-) create mode 100755 deliveries/widget_ms_start.sh create mode 100755 deliveries/widget_ms_stop.sh delete mode 100644 ecomp-portal-BE-common-test/.classpath delete mode 100644 ecomp-portal-BE-common-test/.project delete mode 100644 ecomp-portal-BE-common-test/.settings/org.eclipse.core.resources.prefs delete mode 100644 ecomp-portal-BE-common-test/.settings/org.eclipse.jdt.core.prefs create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppsControllerExternalRequestTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppsControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/BEPropertyReaderControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/BasicAuthAccountControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/CommonWidgetControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ConsulClientControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/DashboardSearchResultControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ExternalAppsRestfulControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/GetAccessControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ManifestControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/MicroserviceControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/MicroserviceProxyControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/PortalAdminControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/RolesApprovalSystemControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/TicketEventControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserRecommendationControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/WebAnalyticsExtAppControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/WidgetsCatalogMarkupControllerTest.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/framework/ApplicationCommonContextTestSuite.java create mode 100644 ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/framework/MockitoTestSuite.java create mode 100644 ecomp-portal-BE-common/README.md create mode 100644 ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/config/NotificationCleanup.java create mode 100644 ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/config/NotificationCleanupConfig.java rename ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/{externalsystemapproval => portal}/controller/RolesApprovalSystemController.java (52%) create mode 100644 ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserController.java create mode 100644 ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserRecommendationController.java create mode 100644 ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java create mode 100644 ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/ExternalRequestFieldsValidator.java create mode 100644 ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/ProfileDetail.java delete mode 100644 ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/UserRolesService.java rename {ecomp-portal-BE-common => ecomp-portal-BE-os}/src/main/java/org/openecomp/portalapp/util/SessionCookieUtil.java (100%) delete mode 100644 ecomp-portal-BE-os/src/main/webapp/WEB-INF/fusion/defs/definitions.xml create mode 100644 ecomp-portal-BE-os/src/main/webapp/app/fusion/external/b2b/css/b2b-angular/font_icons.css create mode 100644 ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/digital-ng-library/ecomp-ionicons.css create mode 100644 ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/digital-ng-library/ionicons.css create mode 100644 ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.eot create mode 100644 ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.svg create mode 100644 ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.ttf create mode 100644 ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.woff create mode 100644 ecomp-portal-FE-common/.gitignore create mode 100644 ecomp-portal-FE-common/client/app/services/recommendation/recommendation.service.js create mode 100644 ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.controller.js create mode 100644 ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.delete.modal.html create mode 100644 ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html create mode 100644 ecomp-portal-FE-os/client/assets/images/onap-logo.png create mode 100644 ecomp-portal-FE-os/client/bower_components_external/b2b/css/b2b-angular/.gitignore delete mode 100644 ecomp-portal-FE-os/client/bower_components_external/b2b/css/b2b-angular/README.md create mode 100644 ecomp-portal-FE-os/client/bower_components_external/b2b/js/b2b-angular/.gitignore delete mode 100644 ecomp-portal-FE-os/client/bower_components_external/b2b/js/b2b-angular/README.md delete mode 100644 ecomp-portal-FE-os/client/bower_components_external/b2b/js/b2b-angular/b2b-library.min.js create mode 100644 ecomp-portal-FE-os/client/bower_components_external/ionicons-2.0.1/css/ecomp-ionicons.css create mode 100644 ecomp-portal-FE-os/client/src/views/dashboard/dashboard-extension.tpl.html delete mode 100644 ecomp-portal-FE-os/client/src/views/dashboard/dashboard.tpl.html create mode 100644 ecomp-portal-FE-os/client/src/views/header/header-extension.tpl.html create mode 100644 ecomp-portal-FE-os/client/src/views/header/header-logo.html create mode 100644 ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.controller.js create mode 100644 ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.html create mode 100644 ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.less create mode 100644 ecomp-portal-widget-ms/.gitignore create mode 100644 ecomp-portal-widget-ms/1702-widgets/approx-portal-usage.zip create mode 100644 ecomp-portal-widget-ms/1702-widgets/daily-app-usage-count.zip create mode 100644 ecomp-portal-widget-ms/1702-widgets/daily-app-usage-count2.zip create mode 100644 ecomp-portal-widget-ms/1702-widgets/widget_events.zip create mode 100644 ecomp-portal-widget-ms/1702-widgets/widget_news.zip create mode 100644 ecomp-portal-widget-ms/1702-widgets/widget_resources.zip create mode 100644 ecomp-portal-widget-ms/README.md create mode 100644 ecomp-portal-widget-ms/dashboard-widgets/approx-portal-usage.zip create mode 100644 ecomp-portal-widget-ms/dashboard-widgets/approx-portal-usage2.zip create mode 100644 ecomp-portal-widget-ms/dashboard-widgets/ccd_widget.zip create mode 100644 ecomp-portal-widget-ms/dashboard-widgets/daily-app-usage-count.zip create mode 100644 ecomp-portal-widget-ms/dashboard-widgets/events-widget.zip create mode 100644 ecomp-portal-widget-ms/dashboard-widgets/news-widget.zip create mode 100644 ecomp-portal-widget-ms/dashboard-widgets/resources-widget.zip create mode 100644 ecomp-portal-widget-ms/docs/Deployment Guide Portal Microservices and Consul.docx create mode 100644 ecomp-portal-widget-ms/java create mode 100644 ecomp-portal-widget-ms/pom.xml create mode 100644 ecomp-portal-widget-ms/src/main/certificates/be1/widget-keystore.p12 create mode 100644 ecomp-portal-widget-ms/src/main/certificates/be2/widget-keystore.p12 create mode 100644 ecomp-portal-widget-ms/src/main/docker/Dockerfile create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/MicroserviceApplication.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/constant/WidgetConstant.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/controller/DatabaseFileUploadController.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/controller/HealthController.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/controller/WidgetsCatalogController.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/dao/WidgetDataSource.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/domain/App.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/domain/MicroserviceData.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/domain/MicroserviceParameter.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/domain/RoleApp.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/domain/ValidationRespond.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/domain/WidgetCatalog.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/domain/WidgetFile.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/excetpion/StorageException.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/excetpion/StorageFileNotFoundException.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/filters/CorsConfiguration.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/hibernate/HibernateConfiguration.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/listener/WidgetEventListener.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/service/InitializationService.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/service/MicroserviceService.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/service/StorageService.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/service/WidgetCatalogService.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/service/impl/InitializationServiceImpl.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/service/impl/MicroserviceServiceImpl.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/service/impl/StorageServiceImpl.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/service/impl/WidgetCatalogServiceImpl.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/utils/AuthorizationUtil.java create mode 100644 ecomp-portal-widget-ms/src/main/java/org/openecomp/portalapp/widget/utils/UnzipUtil.java create mode 100644 ecomp-portal-widget-ms/src/main/resources/application-properties create mode 100644 ecomp-portal-widget-ms/src/main/resources/application.properties.templated create mode 100644 ecomp-portal-widget-ms/src/main/resources/events-widget.zip create mode 100644 ecomp-portal-widget-ms/src/main/resources/framework-template.js create mode 100644 ecomp-portal-widget-ms/src/main/resources/logback.xml create mode 100644 ecomp-portal-widget-ms/src/main/resources/news-widget.zip create mode 100644 ecomp-portal-widget-ms/src/main/resources/resources-widget.zip create mode 100644 ecomp-portal-widget-ms/src/main/resources/templates/Upload.html create mode 100644 ecomp-portal-widget-ms/src/main/resources/templates/widgetsPage.html create mode 100644 ecomp-portal-widget-ms/src/main/resources/widget-keystore.p12 create mode 100755 ecomp-portal-widget-ms/src/main/resources/widget_ms_start.sh create mode 100755 ecomp-portal-widget-ms/src/main/resources/widget_ms_stop.sh create mode 100644 ecomp-portal-widget-ms/src/test/java/org/openecomp/portalapp/widget/test/controller/WidgetFileControllerTest.java create mode 100644 ecomp-portal-widget-ms/src/test/java/org/openecomp/portalapp/widget/test/controller/WidgetsCatalogControllerTest.java create mode 100644 ecomp-portal-widget-ms/src/test/java/org/openecomp/portalapp/widget/test/service/WidgetCatalogServiceTest.java create mode 100644 ecomp-portal-widget-ms/testadd.txt create mode 100644 ecomp-portal-widget-ms/website.url diff --git a/LICENSE.txt b/LICENSE.txt index 880bbc9d..9532e5b8 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,7 +1,7 @@ /* * ============LICENSE_START=========================================================== * ==================================================================================== - * Copyright © 2017 AT&T Intellectual Property. All rights reserved. + * Copyright © 2017 AT&T Intellectual Property. All rights reserved. * ==================================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -14,6 +14,6 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * ==================================================================================== - * ECOMP and OpenECOMP are trademarks and service marks of AT&T Intellectual Property. + * ============LICENSE_END============================================================= + * ECOMP is a trademark and service mark of AT&T Intellectual Property. */ \ No newline at end of file diff --git a/deliveries/Apps_Users_OnBoarding_Script.sql b/deliveries/Apps_Users_OnBoarding_Script.sql index 3a86abfd..64edfc3d 100644 --- a/deliveries/Apps_Users_OnBoarding_Script.sql +++ b/deliveries/Apps_Users_OnBoarding_Script.sql @@ -1,13 +1,18 @@ USE portal; --- Apps -INSERT INTO `fn_app` (`app_id`, `app_name`, `app_image_url`, `app_description`, `app_notes`, `app_url`, `app_alternate_url`, `app_rest_endpoint`, `ml_app_name`, `ml_app_admin_id`, `mots_id`, `app_password`, `open`, `enabled`, `thumbnail`, `app_username`, `ueb_key`, `ueb_secret`, `ueb_topic_name`, `app_type`) VALUES - (2, 'xDemo App', 'images/cache/portal-222865671_37476.png', NULL, NULL, 'http://portal.api.simpledemo.openecomp.org:8989/ECOMPSDKAPP/welcome.htm', NULL, 'http://portal.api.simpledemo.openecomp.org:8989/ECOMPSDKAPP/api', '', '', NULL, 'okYTaDrhzibcbGVq5mjkVQ==', 'N', 'Y', 0x89504E470D0A1A0A0000000D49484452000001680000012C0806000000EE2C29AF0000200049444154785EEC9D099C5D6579FFBF67B9EBEC5B6626B364DFC91E12080142D87710595C0A5A37B455FBD75AB56A6D6BD55A6D6D6D6B6BAB15045111C50504917D95B0869090909DEC997DEE7AF6FFE77DCFBD333721C0850C3093BCE7C3903B73DF7BEE39BF73CEEF3CE7F7FE9EE7D1508B424021A01050088C4A04B451B9556AA314020A018580420045D0EA24500828041402A3140145D0A3F4C0A8CD5208280414028AA0D539A010500828044629028AA047E981519BA510500828041441AB734021A01050088C520414418FD203A3364B21A0105008288256E780424021A01018A50828821EA507466D96424021A0105004ADCE018580424021304A1150043D4A0F8CDA2C8580424021A0085A9D030A01858042609422A0087A941E18B5590A018580424011B43A0714020A0185C028454011F4283D306AB314020A0185802268750E280414020A81518A8022E8517A60D466290414020A0145D0EA1C500828041402A3140145D0A3F4C0A8CD5208280414028AA0D539A010500828044629028AA047E981519BA510500828041441AB734021A01050088C520414418FD203A3364B21A0105008288256E780424021A01018A50828821EA507466D96424021A0105004ADCE018580424021304A1150043D4A0F8CDA2C8580424021A0F5A6EC40C1A010500828041402A30F0145D0A3EF98A82D520828041402120145D0EA44500828041402A3140145D0A3F4C0A8CD5208280414028AA0D539A010500828044629028AA047E981519BA510500828041441AB734021A01050088C520414418FD203A3364B21A0105008288256E780424021A01018A50828821EA507466D96424021A0105004ADCE018580424021304A1150043D4A0F8CDA2C8580424021A0085A9D030A01858042609422A0087A941E18B5590A018580424011B43A0714020A0185C028454011F4283D306AB314020A0185802268750E280414020A81518A8022E8517A60D466290414020A0145D0EA1C500828041402A3140145D0A3F4C0A8CD5208280414028AA0D539A010500828044629028AA047E981519BA510500828041441AB734021A01050088C520414418FD203A3364B21A0105008288256E780424021A01018A5088C28416B1A68E27F6A510828041402C718024110100423BBD3234AD0B1884E32668CEC16AAB5290414020A81318080E5F8642D6F44B75411F488C2A956A61050081CAB0828823E568FBCDA6F85804260D423A0087AD41F22B5810A81A31701A1B18A45CD331DFE182B823E7ACF7DB5670A81518DC08E1D83DC7BEF4EB98DAB5675306142F5A8DEDEB763E31441BF1DA8ABEF54081CE308B8AECBAF7EF5221FFAF0831289EBAF3B830B2E988CAEEBC7383207EFBE2268753A280414026F3902B66D73D34D6B79FF9F3E2CBFFB673F3D8BCB2E9B8E6128C756E9C15004FD969F9AEA0B15020A817C3ECF0D373ECB873FFCB804E327379D21093A128928704A105004AD4E07858042E02D472097CBF1A31B9EE1DA6B9F90DF7DD34DA7F3CECB6628823EE44828827ECB4F4DF5850A01858024E81F3DC3B51F5504FD6A6783226875AD280414026F39028AA0CB835C11747938A9510A0185C00822A008BA3C3015419787931AA51050088C20028AA0CB035311747938A9510A0185C00822A008BA3C3015419787931AA51050088C20028AA0CB035311747938A9510A0185C00822A008BA3C3015419787931AA51050088C20028AA0CB035311747938A9510A0185C00822A008BA3C3015419787931AA51050088C20028AA0CB035311747938A9510A0185C00822A008BA3C3015419787931AA51050088C20028AA0CB035311747938A9510A0185C00822A008BA3C3015419787931AA51050088C20028AA0CB035311747938A9510A0185C00822A008BA3C3015419787931AA51050088C20028AA0CB035311747938A9510A0185C00822A008BA3C3015419787931AA51050088C20028AA0CB0353117479388DECA8C027E8DB4490EB26705290EB016B407E879FD9034E06341D2D568B166F18FEEEAA7630A2F26F5A450B5A55C7C86E975A9B42E02D4240117479402B822E0FA7231BE5D9787B1F23E8D900D97DF87D9B09522F110822F62D70B2E0E6E57704760A7C1BD0C04CA09989E1EF8ED5806EA0991510AD444B8C43AB6845AB9B8ADEB400BDE93888541DD9B6AA4F2B04DE020414419707B222E8F2702A6B54E064F1773D10FEEC790CDC4C48BA411046C86E163C9BC0CD41E095B5CE571DA4E961442D483C528516A900CD90DC8E66A25577A2371F8F31E522B4FA1947FE7D6A0D0A81114240117479402A822E0FA7571D153869FCDD0FE33CF8391919E33BE0BB829A4760ED47B00A41E0BA8956D18631F14C8C1957A2B79E1092B85A14026F23028AA0CB035F11747938958C0A0A32842789D87BF116DCD55F23103AF2DB4DC8AFB92F1A5A653BD1737F84563F538ED68CA8945284E67D444BE01FF93A8E6803D487C712028AA0CB3B5A8AA0CBC349926F90EF87D40EECDF7F00BF677DE1936F73945CF6F6970E141A48B8E813CE20B2E43352C7D6E28D523279DD8BEFE1F73C8F5E33456AE36A5108BC16028AA05F0BA1F07D45D065E024A2E3A0E779BCADB7E36DFC0941B6AB8C4F8D9D21C22DA2B79F823EE97CCC199783997C5D1BEFEF7F1AE7912F1039E9ABE8CD0BC3094EB528045E050145D0E59D1E8AA05F15A780207B006FFD0DB8CFFF1FC1E08E9199DC2BEFD8BCF5A38C3891657F8DDEB112BD711E98F1D7DE063787F3E89771D7FC37D10B6FC6987096923A5E1BB5637E8422E8F24E0145D087C3C9B371D77E9F6060AB24687FCF2304E9DDE5213AD6471931F4A6F9D2B6A7554FC098740E5AFDAC9793AE67E1EF79146FCB6FF05EBA97A06F23D1F36EC2987AF13137095914B90E7A6E38EC1FC7FAC93172DBAF08BA3C2C15411F062777C34F711FF834415E4CFC1DAB8B06D12AF471F331A65F8131ED32B4787D0846E0E16DBF0BF7B12FE377AF1B7AAA889EF13D8C59EF91CE91A37E11D6C921460E5F084E1E7E558A80927C0E3D1F144197778528822EC129187C09F7C97FC2DB7A1B41665F79081EEDA3444663BC1EF3946F624EBB2C9C44B453E46F5A4630B84D98BC8710889EFE5F18B3FFE4D8216841C99A349D176E5CE2F7024D07E26FC5F78FF693E4F5EF9F22E8F23053045DC0C9DBF63B9C873E2F650DE96356CBC108442A3067BE1BF384BF913730E79E8FBDCC561859F135CC851F073D72D4A327EE4B828A050F0B2A9626456935D408D0C2FB56E13D153FBFFC7450045DDE25726C13B4A88931B00DE7F1AFE26DFA257861BAB55A5E0D8122DDBCDC5E689EF02569D97B4356BD510CBACC042D2C322E16241C804B40CE87BC1BE0BA015EE0636A1A31D3A0361206D732BE9651B65A4A1150045DDEF970EC12B4A88FB1EB01DCC7BF8EBFF7D1F2D052A35E150173E127899CF4F760C4DE52A402E151470BC970580816A5A70AF2C3213715C9B705F61CDA521112879244715D22440ED71D126DA005E41CC8783EBD399FFD298BFDFD167927C0F1021CDF470B7C6246C0B82A9386AA38CDD5719A92260953470FD732AC5617C3EFB714ADD1F1658AA0CB3B0EC72C41FBDD6BB17F7DC9B1E3CE28EF7C38A251C6DC0F113DE59BE5D9F38EE89B0EF970416E10EC2CA25D3D64D39249BB428EA7E064190D0B223E38DD5D727620A859BC1B927DB804782252767C7AF32E2F7459F4E61CB2B64822D0B0020DBFA0377B22B9544CA0FA2E9A9BC7C4A73AA633BBA592992D55D4554431C4BAB5A1DB49E12B8E3DAD5A11747917C03147D041BE177FF3ADD27DE0AEF96E7928A951652160CC7C37D1D3FF334C1D7FCB96909D8BD41A68BE50802110AAB02E63683B08C87922E2CD3360B9641D485B3EAE0F9E1F485295E42C43E580A20745C7A33611A33259417FCEE140DAA1D7127F15045E903964E0ED83EFE37B3E7E10E0061EBEE71278E25F8FA4EED25A1B637C759C8698C6FC094DE1DCA2F84EF1427EEFB1258328822EEF0239A6085A249AB8CFFC3BEEDAFF05CF2A0F2135AA6C048CC917C83A1FAF3713B1EC2F78D9C030622ECD5C143C27485944B53DB6C78BBD3976A65C76A61D3674E5E8CA7BA41D8D8CE5E00BDD5844BB9E85E179E88120581F538811814F7D4594396DCDB4D7D71574643FBC19F822AAF62531FB5E611B84262D09DAC317A9EFAE8D2F483BF0B17D5FBE879527A9D9BC7FC54C3AC755A10782EAF5B0F6F71B07614C7E5211747987ED982268FBDE3FC37BE12610E53ED532E2081813CF217AFE4D6F3A418773768589BB21D942BCD0480501BB52369BBBD33CD365F14C9747BF15907675D29E81E30798BE4BA59F2111D844F048682E31CDC790D28329A58CEACA1A6674B631AE224E4484D6224A0E021128E307A1941112B420EA50BF766420ED11F81EAEEB84442DA3690FCFF37005613B2E932BE0B485139935BE16B320CF8848FA58226945D0E55D7EC70C418B7A11F61DEF0D6D746A795310D05B9711BBF47720EA528FC47270703CB4462929C8B8599072381198436767D6E5B60D0758D765B32FEDD2E3C5496B7149A49AEF92D0032A758F3AC365BC99A7427388E113D73C0C215CE8069617A1DFAC605C731B159118BA274AC70A32464A1BC2A9218857B2B4F89B27DE13441C482216E42C48DBF15C193D8BD79EE7E2FA01AEA7A189D7F92C13EB34CE5B3A9599CDF568F8324297D1F431B228822EEF401FF5041DA477491B9DBFF9370456FFDB5B4BC38862B42E43EB380D73F6D5A0BF81CA71C5E3EAA4F15EBA077FDF9304FB1EC7EFDFF2B6FBB7F5A6B9C42EBF0F22475ED16EC83921E977386F5A44AB9A9888D34DB27EC0833B06F9ED867EF63B06B66630E847707C0DDFB1A88AF8CCA88FD35913A53E1145CFF4E1A57AF173299C5C56BA2E021101FB1E8316F47911DAA6CEA2A65AB4190B35E6A0206548995946D0A15EED89509A90A0FDC09551B47C2DA2651129FB829885DC11FE1BFEF8F8AE8BE3DA684E8E981E70F6FC0ECE5B1436530865E863238E5604AD085A12B2FBE43FE33EF39DB74773D60D6939D31BE6622EFA24C6A4730B0E8791BE0803BC6D77E2BF7833EE8E3F803D0822F27B8BEB536B15E3895DFD2C5AB4BABCB3EF554785141D52B398F813C4A8E36B06BE1FB07130CBDD9B7B79648FC77EBF02CF088DC7819DA54273195F6932735C2553EBE218BE8D97CB92EEDA4F3E3D8863E5C9E52D5CD796137929CB67902A5A672DA4A1A989C0B6C3893FA95C08520E658CE26BB945051216842D74EC21822E21E4E218296F8888DA15DAB48B23E63F1C3171E971D2F446DE7FCA5C12868E9CE01CAACB3DD2E7C8081C92115C8522E8F2C03C7A2368CF92C927F6FDFF0F44E4FC562C661C2DD1282348D17E4A9F7016C6940BD11B8E7B8B92370A74B66F35CE837F45201BD10690EF0FEB8AC82E2F6FDEA225C711BBE6F91121681929173655389185D52D6B7B64ED803BB70FF0D8CE4176E60D5C2389661818BA89A1F94CACF0985897A4A53A4652F3D06C1BD7B2B133830C76EF259F4D63DB16996C56EAC4AEEF918D34D230653EE3C6B586BAB2EFA1090943C4CF7E48CC45722E9275F15F215F841383C311B378EDBAEE10897BAE3B1C5D7B1EB663E10A95C473195F1DE1B2A5535838B995A8A117DC1D85F4F1A398A3154197771D1E9D042D1E81B7FC264CDD1EDC5E1E1247384A448DA2A09031F783E8CD8B0A6B7B3BAFB0822C200867FB9DB8CF5F87DFBD8620B52B9CF07A9396F8B5FB6437F2235D849C204D7281262D725BFA73DCBFB597A7F6E5D81B6B0E73AC038D58E0D2561130B93E416B65942ACD1EF2310BF9C2C967C9A57AC9F60F30D0DF8D95CB60E7F3643359529E4EC6A862CAFC65348FEF905639690191138021297B624250FCBDF8BBD09905714BF942481D05D78688A40F913464042DA26741D04592F67D6C4744D10E81EBE0E472B4D5E87CF0BC1399DDD91A4E488682C7512D7728822EEF0A392A09DA3FF02CF69DD7C812986FF6A245ABD01AE76174ACC498FFD130821E858B683AE0EFBA4F4A21A2E98098F87A33969122683909878FA7C1133BFBB9FDC51E36E5A2E48C04B611C3F05CA2F84CAE3139AE394175C44017A41E88A70431D916E0B90EB9C13E327D7DE407FB1918ECC1CEE4B0F27906B2797AA964DCD4794C993E8398190953B8A52B4310B2F837F4498BDF872368A1390BDD3AD4995D394958785D42C245B22E12B4EB384304EED80EAE277E5C1CDBC2B0D35CBAFC382E5BB180642C8226273EC53EBC9D37F837E3EC185EA722E8F2F03D2A09DAFACDA5F8DBEE280F812319251EAB279D87B9F4F3E80DB3DFF214E737B4E9F620CE93DFC2DF7E17229B7244BA8B976C48FCFD1B651DE9D7B71C5CA85364FB0951C30D74B6F5E6F8C5865E9E1ED071A2893043D0F5A8323CDA6B624CA98FD310054338354A547749AE769E74CF7ED27DBDE4D2830C0EF460A72DAC7C96DDB98044DB2CE62C3A9E8A8A4A49CCC2972CA366797318D6990F92388250AE2812F6101117648DD2285A4E18BAA1E54E46D18508DB16B28BE7E2899E968E8D9549735C5B1D9FB8FC4C263454A369E2E629321D1541BFBEF3E8E81B7DD411B4A8B466DF76E588134FE9A1D79B9760CCBC0AADA205AD6E067AE3DC317566B8EB7E88BBFA1B6107F211963B62EF79E2F5E321095952A2A4249164B2664F3F4FEF49B1C38EB0336F92F185633920E6DBCC1F5F43B5E15117D3881B05122BA64F0F293B3EF9CC207D7B77911DE8259B4E3338D0473E9D23E3B8C4A79F48E794695455540D4D060AC786FCEF9049C1E1DF45C4EC1C44CEAF48D04E48C87282D00DA3E7A22E6DD9B69C2CF43D1BC7B1C85BC2F2E771ED25A772CEE25918BA70AA88041645D063EAC27A1336F6A822E820B513EBB7EF20E85AFB264035BCCAF8D56BD0AA278E8D88F93048E47F309920BDE74DC12876E9EDE89DA7BFBE754B3B9B706978B24646D685AFDFF322FBFC24D9682522B74F44B871CD62725D8C79E31232EB2F8CB443395A96D728D4D090E288EB4A79A36BD776B283BD58990C03FD29329914079C08275F752DF18889CCF716E9DEC5B24842572E44C862278A041C46D182A08563637842B07432B0F85A4C1C7A43045DF041BB6E18450B0DDAB2A4FE2C2418DBB1C9BB0E5A3ECDFBCE5ACA9F9C750211532790553B8EDE45491CE51DDBA387A07D07E7EE8FE26EFCE99BE656D02295444EFBB7B06BC8185DDC47BF8CF3C437DEB4AD8F5DF44BF449E7BDAEF58799819E4CD6C8A273DF867DDCB2C3213013385A4C929A48919ED118A7B3364195970BED76D2922688BA506DAEF0AD527E701D327DDD74EFDC4636DD4F2E9B61A027C5817496C15813175E750DBEE30C45CF82A48B245CF4380F5BE9428D59BC1F46D0E1EF87BA358674E6E2C4E050041D927351E6102E8EC0B1E5F7DBAE70A638C434978F5F761A172F9D8121DC1C52E278854C9DD785EEE81CAC08BABCE3727410B4886CD65D8FFBE8970872DDE5EDF9EB19A519E8F5332439EBE34F1A7B4D51858CE1E5711EFC2C42DE1879BBDD70E9CED885BF40177EEFD27A70C5A240AF8079B1DEB2706EDFFDC25EEED8D045AABE1D373024D655584C6F8CD35E1D23E2B918854A756175A3E145FCE6E9A07B019E6D91EAE9A27BD736B2A901B2B90CFDBD29B6A55C262E5AC9FCB9B343392308B30385AD4ED4D8184A4639C8EB3C4CC842372E7A9E8B12C610593BCE505AB7533A29E83838452747E0625B7902DB9263C5053868392493493E7BCD799C3FBD49EC32BA22E8D773851EB5638F0A829605901EFF1A81D537F2074A74BA3EF59B98733F3846276D02DCA7BE8DFBC43F859994872EA27F60690714DD402BCD70946C2192404AD29045DB2B59AE332448BD6A025AB245BED666BF07BDE37499622252988533A248D6438FEC850247A2BEB2AC4317183CB3B397DFACEF62AFD98863C6F00257AE43A466CF6E4AD092142E8D32EC81528AF064324AAAFB00DDBBB64B592397C9B2617F9696E356B060F102022B47E08B6CC1128F7321392524DC421D8D82BFB9384E44C132922EF89CC3ECC1A29D2ED49A053917DF77E524A1156ACE52F670C8590E9A97C77534F6EFCCB2DFAB22DFDA8EE70DF0FCD72E624A4DAC509D4F24AE1C5C1675E44FF0B7678D2A822E0FF7A380A0039C073E83FBEC7F94B7C7AF6754A40263F285984B3F875E3FF3F57C72F48C75F3B84FFF2BDE965F0F6F53AC6EE8B5B005EA95E387DF8BD74265C7F0FBD14AB48A5634235E1410A076329815720EAB58B728CC5216948CF40ECB1F517FA2F023A95546D282EB75C4DC5E54D788E8A1FDF8862776F374DAC48D26080283C07749EA1E136AA2B45747881D142D9746CEA54A6DB10F958F9DCF91EADA4FF7EEED64B329B2D93CBBEC2A169E722E15C9B8D4808BA45B9A2D38246B14ABD215A48CE29821CD596607869380421F179F731C7B6832B0286738628C63E18BF7A4CCE160E75D02CBA6F7A51EF6AEDF47CEAC21367F01D9C66AFEF2CC4EFEF2AC9924A2A0FB1ABA2C6E7DF42D8AA0CB3BA6639EA0835C9724684F68CF23B908729E7E854CD11EB3E42CF070F304B903F2DFE2A2D54D7B0DA45E9D14427A0CFF2F26E67C7C59252EEB06A41D9F7D595766FC651C9F8CE591737DDCC2849EA60798862EB3E66A22260D0903CBB1B977A7CD3EDB9451B24714337098506DD2561B23AEB98542FBC3B98507EF4089C12E0CCAB1F35952DDFBE9DDBD834C2E454A54D86F5DC09459C785E42CEF188592A142DA2868CCA5045DEA6F2E92B9888E4B53B8858D2E4C5A0909BA48E0C24A17A67887041D5AED7C3C274FC4F278E9B92DECDFB8172DA3E3E9519C8E0ECC8573A8AC36F8CA550BB962712771B123C2CC71144E172A822E8FACC6344107D90378EBAEC35DFBFDD03236528B192772D25731269F1FBA35D4328C80205AADD0F6296BD39B73E9B321E56A64DC80941DD093B125613B5E6892F0440D8D02A9CB24104DD46DD33074D1BF4F7424F118744D9C20228958C365526D84D64484B819BA3B6481FC728F83F86E2B47BAFB00BD7B7791CE66D9D59F63E2E255D4D7D687645CC80E0C35E7E1449450BE10863EF1B790788BA45B2A6DC8D4EE82C75992B41827A40DE1E010E9DCD2EB2CA40F1BCFB6B11D07CD7798D652CBC9D327B167D376BCACCFB34FEDE00F773D8F1B4DE2B58DC35FBA9089ED493E7CEA24DEB9A08371C9E106BC47536F4345D0E59DCC6397A0453AF7F6BB70EEF93382CCC85AC6F496E3895DF95079081E6DA3645FBE304216C9D6C51E7FA5D5E5065C8FD53B07D995121D4620E31B7242CF2F481C82600D024C4DC7D075F442417A41B122CF2F10937C22CAF57DF2521E10A590345C4D481B3ED59ACDA2B64A0C1F7491B42199B91825CB02D00583434995BBE1E70349AE5E3E4BBAA797BEFD7BE94B6779B1DB62E189A7529D88E3A1CB0A766252505AF264BAB6D88ED04A17DAECFC421AF7C13536A47D4E96112D789CA5AE2C3CCD3E8E889285B75910B72DD629A2680BCF72F13219668EAFE53DE7AF64765B3DA669629A70FD0FEEE6CB7FFD1320229BD006679F46B6BD9D96448EBF3B6F16EF3E7E62D815B168F72E3CB78CF5D34E1174794770CC12B494361EF922DEFA1F85CD3E4768D192CDB2E8BC746B1C934BB14DAAC0542F31196BB283F54B83393675A559DF07592D2A2701A503423C8D8B76513AD4C4848461C81FD1E5DA1C9A272C8823225B0F64946DB9E2C7A7CFF2C8D86194D95E5B495B8588B143CD5A9775374A3BC28A770A5AC641253A430D5C4817BE20E8BE3EFABBF6B3BB37C39E7C8C79F317509988CA9B81E88452ACAFE1FBC58247226F6798984B4B850EC91A8290658D8D83AD73E27D1125FB2285DBF5B12C4F5650F4FC1CBAE5B368C2781A2339CE5E71022DCD09224682542AC3BF7CF397FCE8BA87087413D3D7E8EB68A1F2E453B0123E57CDA9E2BB572F2FECAB48E229765E19FBBAB422E8F2C865CC12B4DFF52CD62D6785A535476A31A244CFBD514A1B8736151DA9AF18BDEB292ACBC566AB855ED9F2CF3A5D399B67F7A7D8D827122B4CD2A688443574DF23AA7924220615D11815A6415264F50D3546152E8D029916495570A3E45CAD10750B7FB14ED676A503A2B62A4E2408CBA58AD653A2C6864CF12E74DC96938845538988CE75D188B564C63270F16D8B7C7F2FFDDD5DBCB0378D956C64D6B4A952FB16DB5DACB921562DEA39CB4E2805B943481A6219AEE35C8CB043194390BB4C462990743199C595B246585AD4B184734344E52EDD2F6CE5FCC57338616127B95496D3CF9A876926D8B1753F5FFADC8D3CF2E84B843DBF0306741B6DFE71C416CF63D9D41AAEFF9345D4C6C4934C98C473B4E8D18AA0CB63823149D0819DC2FAD10282CCEEF2F6B28C51A22468F4829FA1D54E2963F4D1386428264597C5E803990CD263793CBB67807503016922328A132363814D753442752C414C4E64899E7E61A0EB16026FBDE08A93997E251284142C869414591B0E3F083DC4B82EBAEF080B88ACC521A5132326234C0C83401335A1CD90D865C966596EAEB0F6403658D1752F8CDAAD0C07F6EE63F5F61E264E9D496763B57487084D1C5F4CF6850F5FC311F470F2496979D183B205EDD04A5724E7A25B43DAEB44753A173C51903F9726D3956560FB368C9E1C99BE34FFF0CD0FD37D600FEF7A9748E4091D1A8F3CBC817FFCEA4FD9F8C25E342D82E7EB58BA8F3F7D0A0D272EE2FCA575FCD5B9F3185F119337BDA3A53E8722E8F238646C12B4D54FFEBF43DFED482DD133FE0B63D67B0FF6048FD4CAC7D47AC20ED50E3A2F0D5A3C2BEA616475F2BA298BC9EB1E183A3455992422427E084B82CAC7EF21A9342C052A5D120769A701811ECA2132AA16516BB16EB2F005CB4ED8521426E71BE8461C5DD8EECC381866988E2D3E26B2088BB2967487143569999018B6B8127BE0FBF41CE865DDCEBD4C9E3C85A6AA78E8B8D07402D1D43510242F9253C2087A285BB0B04DC58494616B5D18410F47D607CB1C395754A60BF7899C4D76C77E1A4C93DE3D7DF4F7F5F1F75FFD30BB766EE4F2779E8B666852833ED095E56B7FF7536EFBCD13327BD04378A05DAC649CE8B2C54C387E027F73E12CCE9AD1425411F498BA92466263C72641A7F720EA498CD862C6899EF793B0E3C9B1BA14345E99D517681CC839FC7E730F075C13DF48485434DF23AE05542522544544342DDC0EF29D30242E4E2DFAA1FE20125104414B322E261BCA529D61EB28D9F95A140EF25C701DA947677D0D2B8044552391681CCD8884845A1281CBE8B650BD2E944FC2C85DC6E28198001465472D8240978D65D2C2DA6646658358D9AE4A4A1CA2EBB6B81784DB22BAA2941274A9DC21FCCBC59E83A254E870C5BA509209A3690FD7B1713C1BCD72493DBF9B591DEDC47483679F59CBA92B8EE3A413A793C90EB2EACC2572F2547CFF9A67B6F1CDAFDFC2534FEC243084D061E2EB2EA2E7BC376306D5A72EE45DC78FE32F56CD05F8E9980000200049444154A035190DA59CB12F41A322E8F28866EC11B4C8127BFC1F711FFF4A797BF81AA3B4783DFAC4B3892CFD3C5ADDF41159E7985C492112CD3A3E7B07F36CCBF8ACED71F08CA8E45E91541237022A2286AC2057CC1B09FB9E849379B2EBF590F61CF276283F87EE084D4CAEC91467D1FE29D470450A74266FA1099B991E27EF413499A4B2AAA630F77B88BDAE90F957ECB83224CC14826841B8A1C02D32FEC4A45F78F310FD0085BC216F0E224897DEE502F10E15DD0F2D7787764329FDDD91FEE642012441CCD25A27925544F289456D328696CEB26BF5666A9249E90469AC4F72E925A7626879DA3B5A19DF568BEB6ADC73CFB3FCFC670FB2E6995D64D3BED4D50D7103110A8C48F4696B2376C6494C6C31F9F8E993B970763B8948A1EBCA18676945D0E5B1C49823E860701BF91F2D94B5258E78D13459CF3972F237D06AA71EF1EAC6E60A42660B894E63F5CE3E9EE9CACBC2F89A1E911367E2C1BB361125618849AA70E2AEAC4508C2821045042AAAB78908339F95C48CE7627BB03FEB9173A0B1AD938A9AFAC2649F30C2BDBCC3753159446E6D8971A758CB43BE2FC3E2F0CDC3950D3D2821454A1B0737782D7A9D8B29DC323A2E494E2926A014A366DB11892A3681936362758CE5D3A6A00FA6184CE564D1A38898344D98B4B737D1DED68C6906446326B93C7CEF7BB773E30D0F92C91452DE8550248F45B8EF7E5515C6F22598131A58DC11E5DFAE58425B9DA8892DACE4633B8C56045DD615246BB5648523680417AD57642B8CD0128BE82463C3F508DC67FF13E7814F8FC8DA450F3D73D917308FFB008849A86364199E6A2AB82B0AD1A7E5C3CF9FD94F774444B326119953E25111D1A88A849639C97D8714292AB1E90E491B61990DD1C5DAC6CDE724397B82E8EC9C7CB477759DAEAC478F15A1B9B595EA9A5AA9718B6E2261958F83097A989CC346AE434B21422F9276D875FBF0CD5E8B641C16E50F5B5589649430221E766A94164112BE67910558B4DC494943C8197E2133D0168E911CA66F71F1E2494C6B692016C0E0604E626598060DF595D4D6C6D1759D4824413C5E496068AC5EBD99AFFCED4F79716377F81C229374C2671291DAE3440CFC59D3491E3F8F9A44C0CF3FBC94E9CD95614B2F45D0C7C4D53AA6085AF4D3B36E3D8FA0EFC5233E385AAC0663C19F61CEFFD8A86D5375C43BF90A2B18266831ED1652C2BE812CCFEDE9678B5D8DA78B093F5F3A2112D2D32CD22884AE1B6AC16191A38397E1782E407444153286487116197D5E3E272500291F68263BBB53EC1DB4E998328DFABA3AE2B1F8505D8FA2C9EFD06A78A551B2F8E6E2EF52832E1072694D8DD22248A58E8C62042D09B91041BFAC2A5D21F124CC142C46D0218187198285FD131DBAD3194C2B4F1D0133C7D572C292195455E8C4A249A2B118A6283AA2F998119DAE9E1CB7FCE27EB66EEDA6BEBE86CD5BBAD8B6653FAE250A2709D8C4646B44EE8F30037A41805D5B4DCD49228A6EE53FAE9ECF19936B0BE246F118BC3C921E0BE4AD22E8F2AEEE3145D0EEFA1B71EEFBF383EA4A94B79B2F1FA5D5CF2076E9EFD02ADBDEE82AC6ECE742822E265F6BA42D8F3F6ED9C7D69C8615AB938FD9A2FD5345CC2026324F8417B9CCB929E1D7F5F2966C3725C9D9B664F42C4A9C0AC259BFCF626B5796798B16D0D9DE84212ACA8571B7DC2A59FD4EBA42866F0282188BCB417246B1F3F7219DB75FAD0892889C65328ACC16149383C3D1F310514B1B5DF8775943A35846D4F711DD508487DAF65C74C72261E789BB79E6774C62EFAEAD9C71F2121AABE338A64977574E584E68195F41736B1D4F3CB19D4F7FFA7BA4D28284435D7EF98953B9E4A21359BB660BB7DEFA0039CB0C495A3CBDF82E9609C90573A858BA808F9DD5C9B527761211369AF02E75F0E469E15146A6B31464ABD14AD68AA0CBA38F3145D0F61D57E36DFAC588B4B3D29BE6117BF7EAF2503A2A4785F634E16858B76B802777A7C957544A8FB1889E45C45C1B8FBD42058C62E28900264C139471B8AC71E162A70764B94F41CE72324E94E8F46D2C3DCA6F9EDDC3CA534FA6655C3D81E34B57B5F8FF2B2D879336A414209256640DE7E18EDB8746D087D6D810A42B2606C537CAB2A1E277D925254CDB2E56A62BED1F28AC7FC29D1188F7456ABA206B57E8E73ECD519DD3674C20EE7BF41CE867DAD4F154C4C57A3D1E7D7A3FFFF3BDDFC8CE2A9FFC8BCB58B56A11BFBFF349BEFDED5F93F54C343F82E66579EFBB8EE7739FB99275EB77F2B9CFFF2FDB76E540BCEF69F86E8A5CE0109D3A9571AB4E65C5C25AFEF2C27934579A4481D05B134A49D20EAE891F0DA320FBC80AB1D24613DEEE0AC9FBA3E26C56045DDE611833041D0CEEC0FAD58523226FC82481D665C4AEB8BF3C948ED25182D0BAD2791ED9D2CB012F8A174F8471ACE8986DE854C5A2AF52A26838C295AAA92067619B732CD96A4AE8CDD239E1D9B88E4B2A30D9D29367E2ACB98C1F57876B87198622320F55D7972FA5E45C94354AF56741CEF2F7C2A460D1B75C2A6FBCAC4A5DC15227C958A6758791F210418B424BC2FA57F8BBCC0A141AB46C572592516C3C51CFD9B1995C5341936FF0F8236BC8D80133A78CE3E20B961389EA7CFE0BB7B271F36E342360C1DC164E5CDC29E645B9F781E7D979004CDD2011B178F7554B79EFBB4F2195F2F9D6B77EC1A3AB77E3D92EB1288C1F5F41B2A282A7B67553BFE2541293C6D1520BB515D05C9564666B3D6D0D5574D625A88FE8529212924A65DC90FF1613C38B754CC4113BDCE4EBDB717A2B822E0FF53143D061D1F96F1CBEE87C79FB3A3C4AF89E57FE1BC69C6B5EEF27C7F4F862E4296B55482B9AC6B3BBFB796C9F875E511146589E4D4483642C8A71D8C48850B32EC664923885DE6C0BBD398B9BCBE0E6B272124D44CF8EA7B1A13BC70B072C8E5F348F299DE3110FF122CA139B5070C1BD0CD7C3C91AA5242DFB1116A48D22098BF75F4EC8C54A75C35EE7522943F89BE5EF25353686BBA18814F490A045FF40E1950E2C9FD481019A8D80E3A775F2C4939BC858018F3CBA86CB2F5949A66F0F7FF197D7F0B14F7C8F0D9BBAD0CD084BE78DE7C37F72226D2D06916805DFBFEE3E3A3ADA9935BD93CEF62AAA2A7574DD249509B8E79E27E9EDEBE18A2B2F62F2E426366DDECB97BE72231B064C2A16CD837852B6D615C9E862A2559471B5BD3C7AE0501D37185F6370F58A49CC6F6F607C659CEA9849B450C44AC847A58E72F9FCF3364D362A822E8F4AC60C418BAA75EE0B37806797B767AF324AABEA2476E583B22BF7B1B98436B5BC1BF0D4BE1CEBFA020253D49F0B307D979829B46761A913DAEFCBA3DBE149C6F0F1DAB32C1C41CC96F81996360449BFD4EFF2E4DE2C53A64D67C9AC293241239C637C659B5829391749B9F45F91065EAA3317A50D31A6D8F0B57432301C2B087A385296A45C283B2A12518A2543A537BB245B50C81F610DE8D0BD91EBCAF3E2531B684BC225672F65CDBAED38BEC9D66D07386E7A070D35011FFDD8152C3FEDB3387E42660C365519BCEFAAE59C7C621B11C3438FD5108B4464612943F3D145828A261C1E11A2F14AE992314D8D6CDEE697BF7E9A7FFBF7DB493911F4A67A3022B2E1811635312A931889387A55257E65054E24826DFA541B1653C655B268623D67CE6EE5F8CE3A92C23F5DB0F14979E835DA90BDD9D78522E8F2101E33046DDF7639DE96DF96B757AF31CA987D0DD133BF3722EB1AB32B09020EA42D1EDD99A1CB8FE1EB614C1C0D7CD9ED5AD46A2E54B57FD92E16095A5AC37C17279BC14EA7F0EC9C94396C613D135A74E0B3F6804B2A5EC7890B6753138D86135B929B43DDF9658EBD42C1A262647790A451485211045D1A4D17ED73C508BAF87B314B3024F0E1087AA87E46C1032DE50B37246F31AE94A045228D903564228AABF1FCC3EBE9DEDACDE23993B8E8ECE3D0FC1C1B37EDC5334C2A2301975EBC9C5CCEE6437FFE63FAD38EB4D9E164B8F0AC595CFDAEE554C504C746314C9388114117F545D089464D62A2B398A1631886ACD3B16B6F3FFFF8AD5F71F71FD66106313C212A17F465D1D6C0D17DCC680C3D99C4A8AAC4A84A12D4D762B677E0450D0C3360767B928B17B470D2C446A6B55493940D69DF7E0FB522E8F298E3D823683D22B567BD797179081D45A364E05A48BB1607FEE91D3DACEB75D12AAAF17571F107C4651B2AE1B31DF6481F0A812C312AB3F4449FBD3C766A1027932AF8853D1C3B2F33025FECB6C946AA5930FF38EAAA2A0BC5F88B6B3B4C645E24E0121BDDC1B24668AF9313838531A5DEE6A2065D8CA4C3BE826171FE506B0EAD7EA13BA390A4228A3249096398A045D76D51DF597640112E0E3B4B65D4A47B571FABEFDB4A6005B434C4387BE5143A9A1368668CDEC114B9748E8A8A2A5E7CF180D4944D532797B769AC8B73F2099D1C376B3C095323E3983CFDF47A6CCBA3B373A26C58904A0D62E811AAAA222C5F3E9FCAA4CE60DAE2B1D59BB9EBCEA7E93990A6B232414F6F8A679EDAC8A489AD2C5C3C8DFBEF7F8E7DFBFA993C651CA7AC9A8FA399DC72CF0BE8C90A2C714C1BAA699F3591899D2D34D646397F7A152B66B7D19810425368510CDB29840A7538A1F8E653B822E8F288E5982368BD712EB1773F3EF63A7397773C5F635468ED12015457C6E5EEE776D16F561215FA73A11E7ED21417AE68562A29F07039290482C0A53BC3C1CDA5B15329F9AFA843E1F83ABE9D664B46E3B16D3916CD9DC9F2E3A6C9758A08503BB8B4DDD0F61E6E42B0F8A620D9904386C9B9288314258DA2CC51FA7B585F232C235A4ACAA58E0D59856EA8C9AB983874B16D0BD713FA738067E54906164B674EA4677737B7FE622DA9816E2EBB7019EFBC7839BD5DBD3CB7712777DEF3047D030EFBBA2DE29128FFF0E9F3A9A9D0C8BB3E158908F535E2A9C424168BF19F3FB853661876B435B164D15CE2C988F464F7F4E4B9F9E63B983C793CD75E7B05D555BA749A7477E7C8641CAAAA4DBA7B72BCEFEA2F326BFA243EF8E1F3F8F94F1EE2A9273672C1852772C699F348A72CAE79FFBF138D26A9AA8A921CDFC89E4812AD7D025A730BE36A3C4E9BD9C0BB4F9ACCE28E46E9D609B3436505ABC275F1CAAE9A11390D41D5E22813C8B141D0A68B7DFBBBF0B6FDAECCDD7AE561E6E24F1159F1B5235ECFD85B41C16825224A74B67465B877DD3EB4867168221345689281465C3C92CB72FA32982A743339786FC5C49E2E745A3131984961675292C8022F8FED050C3A3A77BDD88F9BACE792954B6916A5320541CB28FDB51D1B61465DB8C83C944281A56281FDC3D9E90ED59C65642DB304C32EDC45821EAADD2CAD7FA2F0FE702FC1A20DCFB6457D0D11417B44BD3C0BDBEA583167221586CEB6032EE9812E96CE9D44476B1DBE11E5869F3FCA3F7FF7F70CA41D3CD3208ACEF7BFFA4EEA2B5D3CD15D46B82B44701A89E193E4735FFC1F2E7FC7E92C5934858A8A2855D555242A4C296D7CF39B37F3F4535BB9F2DD6773F1C50B8919A20094417757370D753544E3557CE04FFF9AC6DA06AE7AD7E974ED4BD1D337404B6B0D9515115C4BE3FFFDC5FFA09926E79CB78464BC821FFFE271F658106BEF20B26C31B6E130B71E3E79C66C2E3B7E52A1BAA008A0C5F4A3005DD68F7D531715419707EF9820E8447E07F65D1FC2DFF348797BF52AA3A2EFBC1BA36DC511AF67ACAD406AB9D2D226A2508DD59B0EF0D4AE0CC9D6567CD15B4A14330A3462824D8AA923C345EA0EDA5DC9B1560E5768CF9934563E856BBB18760ED77378B227C6635B539C7FE652164C6D2370C42D4168CFA113F7D0E5708E0D912C534CC428D598C5670FF53797CA1CD2DF5C48020927050FAEB75194368A3EE8A1641459BC49A470FB389683232622DD3CD31A139C377F0AAD0993B809664D35C9A8B8E178442231D24EC037BFF32B6EFCD573785E8440D4A2D63596CEA8E6FCB317336D5223B1427DEA4832C97D8FADA7B5B193B6E6188978841736ECE5D9E7B6327FFE4CCE387D0935B5716EBFE3596EF8D14FF8D2973EC07173DAA5D4B267F71E9CBCCB9E7DBDF4F5F5D13EBE9588E9239AF08A42FEA29B8BB0F10985B9FB80472E97A7ADAD8AC71E7B81EBAF7B845456C3094CFC855349CC9D493652C1C2D608FFF927F399D35415362B9085AE7499A8A4087A745CE16382A063FBEF97F53782DE0D47849A5E3F5BBA3788561ED17A46FB87C389B5D0A72C0D71B28646802BFB004257CEE18117F69237AA885726866A4008028DCA1653C58E27AF10F0FA0176AA17279DC6CD67F0F27949108E98300CA27CE7D16EDE73F14AE6743622BE54FA718B0D4F4AC03B5C128A0CE0048DCBFC1321C90CFF1489FCD02248A5B24691A0852C52EC7A52D49DA5CE5CA8FB2C9D1905DDB9B4F8BEEBBBB8791BDFCDD15615E19CB993993EAE964854F4103449C46398A22E891123123788C76264F23E37DEF2000F3DB199CEB6361E79683DCFBFD44760E75836A7853F7DD7623ADBEAC86434FEFDFBB7F3E71F3C035D8B70E73DEBB8F1D6A7B182288E35C0F4CE6AEEBDFD6FE94F7BFCD5A7FF83258BA671ED47CE95B54BBABB7A181C48234A57899E878303199E58BD81A79EDCC6C4894D9C71E602B66DDFCBAE97063969C53462B1F02964CBA6FDFCE29627E8ED4F3363662BEBD674F1D29E41EC4651EA602EB4B7B0A833C95F5E3497D327354AFFBB903ADE6C155A45D0E5B1C8D820E81DBFC479E40B048347D6B95BB4B28A9E7B0398C9F2D019D5A38AE9CF61265FA807842F7D21D816EA1E3B3EF4E75DD97D7BC0F2C9381EBDB68F25EB6A0839A3F8F9508B14057D0E2A1577E8A3AE206FCFC5EADB2FE50DCFB2B12D0B57A47613B0291D636BB682CBCF399EB858A31F66FD1D6E795582F6C4A3FDC1045D9A8052943986A3E7302BB0E8C41822E5621124A9290FD77216759D0357746D11138661328D90385CDFC3CD0E521F373963CE44668F1F8768B12584A1A86952D790A0321923669844449317DD9451772A67914E79C41311FEF0D07A3EFEF99F4A1FF909F3C7F3BECB17D3D1524126A7F19DFFBE8D0F7DF07412D12477DDBB9E1B6F7D8AAC6DE0BA29E64CA9E70FBFFE222FED1CE0BAEBEFE08C558B983EAD01C7F1C80929C989B06B6F9EBBFFF0088DF515444D839FDF7C3FA79FB9844B2E3D953FDCF5383FFCDFDB39E7DCC55C74C90A2A2B62128FBEDE2C8EE7D1D454CB7F7DE71E1E7A68037A3C8AD5D244F4C4A5588918735A63FCDFFB9731635C95EC4A1318A1E4351C498F6C58AD08BA3C721913041D7DF187B87FFC7B82EC81F2F6EA154689C2489193BF0E46EC88D6337A3E5CC8E62B5E3B525F0E3B64F7E63DFAAC9098BBB32E693BC00944BB284D7A730BE59B0F22681971BF56E28248DC736D72DD7B70B2697CCB91936A2222CDF83A776D4D71FA69AB98DA5E876F0B4DF3B5C939149A87E56E593B5AB6A23ABCDFB954831EB2D405616D8DB09091F85CD1AD51A85257ACE15C88A25D3B4CA41111B3746A48EFB3D0AA1D92DE202B66CF60FAB866366EDACD93EB7630904EC9AC9AB9D33B58B67812F36775D0545B81EF59E4450125272097CD61D93932B918E7BEF79F9938BE91954B27B262C9046AAB23B87A941B6FBE8F534F5EC2F8E64A76EF1DE0C7B73CC9F3CF1FA0AE46E73D57ADE0931F3B87DBEE788ADFDFF118975F7E0A2D8D49C19632FD7ECDDA3DFCDF0FEF62DDBACDBCF39D2BB8F28A93D9B9B397EAEA18F58D49F6EEEBE3A1079E67F2C47666CE9EC4E64DDBA9AC8CD1D9592FC1CD657D3EF5E91F31D02BFA48826546C877B661CE9E85555BC5972F9DCCFB4E984CBDB8F3489D235C868FE0C809D38AA0CB6391B141D0CFFE23CE93DF023757DE5EBDC2A8C819FF8D29DB5A1D2DA5458B151634D2B6477FDE21E3F8E4029D03695746CBB2B934A2C9AA8802C30AFAA2A4671825178B5B0E5F8C52147995EB505AD6AC3C9903BB64D6A02726D46C9B8CA3F15CB7CD93FBB2FCF507AE20A20B7B5B28B11CBA1C94882227270F2E21FA4A9981F221A130E137AC4317124E4469D342224A91B40FB6D37961995069AF2B383764D53A91BE1D7A9DC58D47773D8E1FDF447F6F0EC7D648A732385E9EF1CDB574F76519D790E0B9B55B696A1CC79927CFE2DC5366E13A1676DE2697CF33386873EF231BD8D735C8CCC94DB4B7D6938C0AAD188C68820D9B77F3C4532F71FCE269B20C695F7F9EFDFBFA98D0398E19B326B0F1C52DDC76FB6AC635D672C53B575095D0A5FD2E5911E3C9275FE4A187D7CA4495450BA632635A13BA1E953715F17420BEC471024CC3249DB1F9ED6F1E116D1C39FBDCC524A251D2A93C7FF7F7B7E0BA1102DBA3A73743CE30099A9AF0DAC7D3B16432E72C69E7ACA9F59C34B355F69A0C6D78B200F5880AD38AA0CBA3B2D14FD0864BE48F9FC37DEEC8134B84FEACB71C3FA2275A79308FFCA89052C30833E3066CECB6D89D71C97922D013979470B7CA82CE0521599AE786FB01BEC14D1276302F9B26B57F275E2E2B1BA48AA2F5FB3206B7BD3848754B339FB8E81459D02A54410F26E843ED74A17BE4E57A73E9B8C3799D87248E12A786187750379482DF59DE5464324AD8C1457CB658783F7003F29ED8870C86956566CB380677E7F8D91D4F307B4A3B1FB86225F1B8869DB7C8E71D49763FF8C1EDAC7E6E278D4D4D7CFAFDABE86C34A56DCCCAE71948EB7CE9DB3FE7E295C75355A5CBF65DF555111A6AA2B2FE46241AE1073FFB2303FD196A2A13AC5CB984BA9A38AE67D3DD6D71EFFD8FC908F8AA2B4F236E0A6923C340CA4133A2C4A26282D70E1D3162424188D3F2F00A374A207F04A3CA7ADBBECE9EDDA271408ACE090DB2029E382BD6AEDD851718A407036EFBF5A3BCB4B34F4A3879132267ACC26B6E605A93C797DFB180B3A70B794778DE45275E71AB5511F41BBC6CDEF0C7463F417BBD987FFC1CDE869FBCE19D2C7E50F89FF5A6F947BC9EB77D0562C61D106D11BA320EBBFAF3ECCB055832522E542FF30359DE532ACBB2EEC6F0B4E1CBB7BF34821E7EB760851EFA83ECF957D06807F7BE842F9C1C8E8DE5FAACEB0AF8C3F634A79FB294F38E9B24279A0AA6ADE1CF9724A214A3E1E277149D1743C45C42DA877A9D0FD69F8733040F47D0A57537647BAA42828A2C7A24BBA104D86E1E2FD7CFC49A4ACE3D7E111FFF9BFFA3BABA8153164CA0637C0BBFBEF75976F6F449FFC9E5672FE4BD979E483693E5A777ACA5B936C15567CF0527473A9B12FDCEF9E12F9FE48107D613AD88E004010BA6B773C959C7D1586D08C3057937CE9AE7B7B16EC30E4090BB88BCFB686A68E1B24B4F66DAC47A6286905C3406D236BFBEED61FEF8C4063EFD89CB18D7501936CC95A4A94B0B5E36EBC8CCCF6884B03142A1AFA460EFAEDE14CFAFDD4C67BB68B555174A165A848D2F7471C30FEF65DBF61E594D509C0156472B15272E215B19E1EC6915DCF8C193C2F415697B0CCFAB915A54045D1E92A39FA0AD7D988F7F166FD32FCBDBA3571935B6093AAC9F519C5FB77D9F8D3D595E1A74487B4658A54CD7A4C62C62D762E727D9B95A62F2C666E64B2F49499E9E879DED27B56787943A44169ED0B71FDA65B379C0E79A4BCE607A43A5D4B24B09FA952604C34D1B2E7C344CD007BB3786258D42C3D9429660A9AC213E5B1A41CB946ED13CA0904558DA915BE8E69E982414371C2B4D53D4E7ACB9D398D2D2C6D91FFD365FF8C47B3975F1447EFCABA7F8DF5B1E473345395593A8DFCBDF7CE2024E3E7E269FFED2F7A96968E6AF3EB08AE66A91F99792938DDBF7E4B9E5F6B53CBD790FFBFA2C1AE206579C398BF3CF9C4522A6614685B32646366FB0BF6B90FE8134C97884F1AD0D744EA844D610742D1C342C2BCA962D7BD8B5B78F850B3AA888990579CAA367D0E7DEFB9E938D676B6AE29CB6721EF3E77662BBE942D6A6C6FD0FBCC075D7DDC505179ECCD967CF97D98B77DEF1240F3EB89E7DFB2C904D02C4790379313F31A593CA139630AEA5921B3FB89069F549793E89E256C508FA35E729CAB8521541970192B8698EFA9657D65ECC3F7E166FF3ADE5EDD15148D03272150E559150A7C1F6812C9B7AB2A47D51DB423831741CDD43383644728520E54016030E67E18B9DAF87A0293B102A991E2AB499129D52ACC13E52BBB7E13A79A93FEFCBC05DDBF3548D6BE5FD179D4432081FA7C36D18962F8AAF4B0F914C4A2929B87FA853A35473169F2BBA338AC5F60FD59D8B042DC95A44CC857E82B2334AE1C70B7CACBC2027F1378B79CDD59C3EBD9DBAAA18BD76824BFFDF75BCFBF4395C71DE095CFFBB35FCF2FE0D61179920C0C9F6B3727633FFFAB50FF1FB479EE1C7373FC8673E743673DAAB480FA6B1DC3C96E5921DB0B9E9EE17B9FB8F3B69694EF2912B4F64E98C4634C3A53AD904A6B80159619AB51960EA3A51334AA2BA194D384ADC0C795BE7F7F73EC9AF7EF7282B4F5DCA79A7CE2126928A74979D7BD2FCC5E76E606FB72D356A31A7675B69CE397D0E9FF9D42A7C574C2C06F4F4A67966CD36D94477F1E2690441826F7DFDA7AC7EE245B448122396C0F0C2BA2B82846D4D67A03641ED8AA5CC98DDC45F5F308F55339B10A5B3C2E8BBEC93E755AF5745D0E5D19922E8F2707A5B47C94C3A4D931EE66D5D2936F7E5C8184939D96914E48B8C8804458DE382EE5B24C7305DFBF012C66BEFD4B0052FECF9272268177BA09781DD5B65D71441803B07E1AE1D361D53A7F2DEB317127545BA83D046C3AA69A12F3B5C4A5FCBDFFD973B36C4DF0FAD4A375C00A93019284A7F160A2B15B3030F9A142CE8D1B20FA2C44614DE0F35E83019C5C2772D702DCE9BD9CEB249CDD2EB6C6BB59CFBE7FFC1BF7CE9232C9D5DC7F76EFE23FFF5F3A7C08C482D56CFF4F1D90F9FCE490BA7F1D9AFFE90CAEA717CEA9A93E968D4490F0E62D9196C4F279D8971C3AF9FE681A776B2EAA4697CE01DF369A88960C422FCE496C7E9983891D933DA185F671217968A888EEB193CF8C85A2AE31AA7AD5C246A0BB2FAB95DFCFD577E4867CB383EFF990B68AAAD92730FDB77F573CDC7FE879C1B0B537F021D3B6BB3604E2DDFFDF6D532B925D06C742D86615648FDDCCE67652A7B4F7796679FDDC2BD0F6CE0F98D3D44021D5364558A3040B83D0870A6745073C672CE9A5DC35F9D771C53EB92AFD256E1B5CFA4434728822E0F3345D0E5E1F4B68E129AA3E5796CECCDB3ADCFC6D1A204BA29BDB9A2B09BD05145C3D7B001529831286D03AFB01CA6A5E06BEE5F512316F537EC811E06766DC5B1454B2B871DA980BB77794C9D3993F79C311FD31D8EB25E89A04B13504A23E822391F9A8C529A3D2826D44A53BB8B045DD4A08B5E6841C8C5085A24A8086B9D48F2081353B244038789D5559C3AA38DCE862411334AACB292D33FF67F242B2A3973C9049A1B6AF8ED7D6BB089CA4CBE93E67770D1394B18CC64B9F1670F31ADA396779E3E07138B6C368365D9ACDDD2CF8EFD197918F6F5E6A9ACAC64D9DC76AA2A626CDDD5C70D37DF4375A28271E3925C76F65C56F6ECE2F600002000494441542E9F4ECA8AF0A31FDF475B5B0D0BE74D66F2C466621193ADBB7BF8F92DF7D3D6D8C439E7CC26198FA3FB1E7BBAFAF99BAFFF86ED3BB3E4F3AED4A0135138E7F4195CFBBE95B8B29598C58E97FAB8E79E3554D72458B572A14873A1BB2F232596471F7D89EBAFBF8F88AEA3FB01AE485011A78F68ED555745E28255D4D447F8D35327F3BEA513A98F475EF33C29778022E8F29052045D1E4E6FF1A8E1A40041CE83AECF969E0C3BD326AE8C633C9C00B26E801BB6D90E7BF9BD89CB90D3C2B5C90F76D3B7630B8E9D95A4B72BE373DF2E9F0953A6F3BEB3162314F1701EEBF0BD04C3505A3442092BCD95BA380EADA9513A2128E50E69A5B30B76BBE16E28C5085B960A15FAB4A8F72C1BBEBA327A96A46D7B8584141BCDCDB2A8A38565D33A694C68C462069188705918DCF3743FDFBEE17744137196CCEDE0C25366316B6A27F73FB691B696763EF5B73F6057F720A72C9CC4973E703251D325675958B91CDBF6E6F88F1F3FCA9F5C7916EF3A773EF94C967FF8EFBBF8F99DCF485C4CCDE7FFBEF54192A6C73D8FAC2716D3B8E6AA553CF8E456BEF2ED5B98377322E3C735B0706EBBB4F1897D58B771A7B4ED2D5F34998AA429A360218D740F183CFCD80BAC5DBF95DA9A4A4E3EF138664F6BC6F35204BE284C65F0F8D39BB9FE477772C6AAE339EB8C053CB5662BDFF8E62DE4AD28AE2B52950ADD1F45FD0DE9D81025397C5C53C39B3189CAA58BA8A886EF5E398F93A736C94317CA1C4796B8A208BABC8B5511747938BD65A3E4692F66E80B9A5FCAF1D9DC9767F7A08555E842276A26E47C911518BA34E4E55248A51EB24295CA1A877077F91174F1422CCA1342CAB4A5C4D1B363236E3E2735E8BD599F07766BD4B775F0C10B9713D38C50CA286CC3A1124758C9544CF689ECBF509429B5D21DD6565778049772856841E5879F1F766984D24758CB397C1D367C2DD6D870E5CD44764E716DB2FD39A6348DA3311963E9F446664FAA236A6898310333D6C8ED0F6FE0C6DB1F63E38EBD2C9A3F8D96867AEEBEEF71264F9AC4FA2DBB686FACE18A55B3B8F8A44EAA6BAA71FC80AD9BB6B265771FB7FC7E03D7FEE9859C38A7153F6F71C36D4FF1AB073690496798DA56CB173E76169695E1F70F6F67C3D67DAC38711E0FADDEC4DD8F6DC4CD8425528F9B51C9B7BE740D6DCD757CFFC6DBB9E99607F8D7AF7D94C5F3DAF19D5C88997892F20DB2962BEB474784AE2D4AA54A8BA3B0DD451848B96CDBBA9B86FA18CD4DD5FCFA8E67F8F677EEC430AAA5475ADAE870E571105DDBA563C31713CD60D75753B57C095A5B1DFF72C51C2E3AAE45E69E86245D284FFA06AF0C45D0E50137FA09DAED09270937FEACBC3D7A955163C3C5115AE88A997E3B072C9EEFCA91173193268A43EAE43D8F9C78542F55055F4D673E34B82EC9DA7BBDA006AE8333D847D7B60D78D92C8E93A73717F0E83E03B7BA9E0FBF6315B551531244B1B46891A043D2966C7C5021A4A2AC513A41585A204946BF41584CFF95AC74227B50269D48CD5964040A19C339A8F8BE2D9351845FD963CDBA3E3C4B448B1AD79C3B87F79D3D839A6840C48C10ABACC0D3A2ACDF76805BEF5EC3C34F6D61206B61B92E139A2A993FB59365F32631797C82E6DA186DEDED18A6CE0BCFBFC0819E3E06337166CE6EA5BED294FD05F7F5E4D9DB93931A7543459CFA069F6CDEE4A6DFAEE3B67BD7108B2749673C328E256B74882784E5F31AF8F2272F65F6B476563FBB9DAF7CE326FEF29397B17CD94490859184BD50C81182A8455ABC2DDCD1E019F8BE8E70F9AC59B38B3D7B7A58B6741AD55526E203BBF6A7B9E5D6A7B9EF81E748A79C822FDE970D033C471488124D741D74238A1B89139B3D83CAC5B3F9C87993F8C8091D54897E68E209A95058E9F59E3FC5F18AA0CB436EF413B4E111F9E367472651E5AA47467DA1FE7042509744B4B32FCBE63E87415FA4DEEAD2F79C753C6CDF905ED7D219F5D735117898C24505D5E155CF1A39D5278A09A507D8BFF9799C94A8C591236D3BACEB8FB1211FE7A23357B07C5253C16257F05F9746D28526AFA51A7451C628FE6D485316581C525FA318359746CF42069004ED7B8852A143B63A9198229C1CB25D958393CF5315093869C102563FFE025535AD3CF6FC0E164F6BE02FDEB984C60A88181AB1448268348A6E98ECDE3FC0D69DFBC966F39214639180AACA040931A997CFCB47FD8E09AD3436D492CFFBE4F396246BADD8FD44A4DE8B92A6AE2B13595CCB2197CF48FBD4B63D19EE7E7823DB77F7326D721BAD0D491E7D720B0D0D157CF0BDA733AEA19AEACA28220774E3E6977869670F0FAF7E01C7F53967D5024E5E36155364120A4B9E63C93EDF791B0C23206F6B5C77FDED18BACF1597AF24168DF1E4531BD87760102BAFF3C0C34F93CFDB9C77F672060607686CACE1C0BE2E3C4F67D6EC697CF73B374B32F7AB6BA85CBA8459CB3AF8FC457358D159272D9DBE5E9C8E7E63D29A22E8A385A0233A9167BE86FBD43F832B2E8837BE442FB81963F205A3BA58BF8C32358DFD83799ED9D54F464F821112F440CE262BB2C5C4A36DA1C07AE9E5F17A2E95C3F93A5ED5EB515CB9B0AFE50638B0E939F2FD7DB2925DCECAB22717E3F1BE04D367CEE4FDABE613C8BA1FE11A4B270A05798A4941C9F525B5360E4D46092368F1E82DBAA184F5358A51F541D982059D5910B9F8BB23258D82AC213307056187EE0D3B635111C007DE790EE3E319D66E4BF1AF3F79800B4F9EC79F5DB8105377D1A326D5958942F53D61C71384EA228A2B897E8BE96C1ECB1637823C563E47E0384CEC6CA3797C2B6622269F0C743C06F3067B0F0C4AFFF2C0608E6432C6B8BA4AEA2B22D8763F962DDA6841FFA0452AEB9248681858FCFC77DB59FDEC06162D984ECECA71D292E95C728EA8EB0CF73CF002DFFCCEEDAC796133575F79325FF8D455AC7F612735B5513A3AEBD9BE2DC58D3FBE8F8ECE24175DB092FD7BF7C93AD46DADF5BCB8F100FFF29D5FB16173376D4DB55C76C54AEAEA74162F9C295D2D56D6A1B2CAA4BEA91E5D8BF3FDFFB999813E83DFDDF128FD4D6D542E9FC307CE99CEA74E9B4E5C78DC656661B16EF7EB39F3C2EB571174793C36FA23E8884EF4F9EFE0AEFE47027BA0BCBD7A8551A250BFB9F0E3A08FDC6CF4116DD0613E2CC82CE7073CFAE27EFAFC18463C5EC808343890B3B134A1136A8812CE2398795BF66E08C274ED0C3D9B9E23D7DB8393CB62E5B2F45BF074BA023BD9C417AFB940DAF1867A7F9756A513E45C983C3C1C411F5C6363B84555697D8D525B9DACAF51F03A4B0DBAD0BEAAD8EC5554AA13B52A703CF6EC4DC9CCB9692D0D5CF73797F3ECF39BF99F5F3EC8DC9953F9B32B57D13A2E89AF9BECEB4D317D7C1542CEC9A4B2B2C7A088C48543C3CAD932C1C5B2F2E49C3CB5B535B4B7B4128D478956082F739CADFB737CE55F7EC9DA8D3BD9DF93C672908E8CE6BA1873A73773ED7BCFA4BA52C74D0F4A4D5CD4CF10371622113EF4C55FB0A3CB420B5C34CF65C1F47AFEFEB357B064EE4499F1B77D678AEB7F7C2BADE36AA9AA6AE09BFFFE332E3E7F059FFCC43BF8ED6F1FE4AFBF701DE79D731C1FFFC8A574B4D7C93ADD426E7AF299ED7CEDEBBF664FF720313DCF673F730573664DE69E7BD7B07AF533B434D7306DCA783239970B2E398FA953EAF9C5CD0FF2D5AF5C47AAA299DA734E65E9DC66FEF9EA654C4C98050DAED8D5A1ECD36768A022E8F2301B13041DDB743DCE637F4790DD5FDE5EBDC22863DE47889EF20D30E247B49E37E3C34305E9029F6777F7B3EE409E644D9D4C991673F639C7A74F5CC8087216133AA12821FF79BD014CC18957BA1FAFD0E864A8E5959453A4842C269FF2F46C594FA66B3F7666102B93216BD96C722AD998ADE41B9F788F944286DB1A163305C3EE289444D0826CC5F2B2D6557E2855944A19C5A495E1FE8161D42CE48BE264A19C189456BA30ADDB96F2874D904FD3D6D0CA434F6C6560C0E56FDF7B22C7CFEAE4406F3FBF7A681D8E11E7FCB397B1FAF10DDCF5E85A2E3E753EEF38750E6D8D7172D99424E79CA5E15869A2318D8816913246BC2A492216150F38E4F538773EB49E1FDCFC304F6DD8433C9E90B53722C2DC261C24A257A3888A67B471D945CB387E4E0B869F93DB8F6FB2E5A5149FFCD6EF481391BEE4381E679F3285BFFAB3F319DF5089EDD9329DDB301274ED1FE0D6DB1FE4C1D59B9933B583ABDF751A9B366E67D3A67E2EBDF80462A683655B589E887303EC40E7BBFF75071D1DE389472D664E6E63FD0B5BF9F7FFFC151133C6C7AEBD185D37F9C63F5DCFC4C9CD7CECA39713040E37FDF40FECEC75094E5841DDF83ABE78D93C2E98DA50A8F1A208FACDE082D2758E09828EEFFD03F6839F21E8DB74447868F533885FF9304485D97FF42C438625F1388FC60D7FDC4675739B2439F1C09C760306F236AE26AAF0C9A4EE90280BC4FC7AF939A4F68397575AC7CBFE2EA3618FCCDE9DF4EFDB49A6673FB9C15E9C5C9A8CA7F1A2D3C0F2732F65E994163CA18BCA4941C1C98592A28568BAD4D75C9A2D18EAD122B12424E82152164938C5D655B2546858FF39EC27188E15846C89DFC5EC9967E1DB2EA201AC20D7A6CA4A3E7FE5198C4BEAF4A7323CFEDC1E3C372F1FFFFFF7CE75DCB57E3F3927862977D89451E607CF9DC9C72E582823D93B9FD8CE3FDEF07B164CEAE423979D4847438CA4E9138BEA44A2097A2D8DCB3F7BE3FF67EF3CC0ACAACEF5FFDBED9439D30BD319981960E8D23B82A0A8891A6BAC29A6F7DEFEC9BD3726F7A627D7146F62A229C6A8B125512CA8A8802220BD0E7D18A6F776EA3E7BEFFFB3D63E0706053D5272AF66B60F0F32B3CF2EEBECFDAE6F7DDFFBBD2F075A7A98775E2535792A9FFFE8E51CDE77446A6578FD1E8A470EE7DB3FFC235DC10C36EF3E484196C167AE9DC7B2B915C4AD08A613E0C6CFDD49BF290208958C3495658B2732764C392B57AEA7E148339FFDC8E55C7DC554E962138B0A77700B4DA6776C3979C762B654A18BC735EE7B6815BFB8F369028174465595D1D6D6C5F471D9DC74E3321E78E859FCFE346EBCEE02145DA33F14A6BCA4587E57ED5D1D1414E4A16A169B371FE43FFFF33EC2E7CD451B59C2D22A1F3FBB6EE671D12DA1FD721ADB50049DDAA0BD3D00BA7303B1173E87D3B13DB5BB3AC55E8AEEC7FB813D2881A2333ACE59FD70C2BD44469B8AC3919E101B9AE3E81EE1741227E63874456CC2A2334CD564FE5CD0F04E24C09DD52B7A938309AEAC45A4A79DDE96467A5B1A0876B7486D68A110D71E0FD0513E979B2F9A438EC099B840679195750B7E227A7E2D38BBC09BB0A63AD61DF8FA08FA58349D10D73F46A54BD85589283A2AA874C228362EBA1C6DA93DD1D91FA3B9B5939F7CF40A1657E7D0D0DEC3577EF30263CB73B8EA82496C3EDCC1BD2F1EE0506B5C52CC4C3B4C866671D9EC0AA68ECE273F3B83E7371DE2A1557BB04371668C29E6C3974F656A550E5E03E24A1AF73FB795DF3EB18B505F275FFAC0855C30B98CC9132AF0790DA9156D9B361DFD7D6CDD7D8467371CE5DE475F116E855CB168145FBA71219A3D80E9683CB67217BD4131F1D81C69EC64DD96161C5D98CF86890D04F9B74F5DCE37BE70312DAD1D3CFFC2368A4AF21835B2180783D5EBF6B273E7513E72CB6232B2D2F8D3FD6BF8D91D4F62DA5ECC6888F2920CBEFB95CBA5D0FFF77EF62899593EBEF7ADF7B27D571D7F7B6213975F3C9BEBAE9E8FEE31D8BAFD00C1C800C545053CFCF04BBC14CCA63337979AAC280F7C7C51C21C3E2943FAD69FBF21804E6DCCDE1600ED379B89ADB815BB61756A77F5067B79DEF3185AC545677C9CB3738044549930AE306D8515DBF613CFAE9020261A5204D7B92322AC47C54E2E0BF53863E3F4A297D3BF7637D6173248B1503F031D2D74371DA1BFA59EE8401F91984938E6B0D1338E65E7CF654E4D398665CA6298E87A14138EC4E8C1C541DB923A1012A093DC68E16C92307B3DB13BD04D79B862FB6EF1F07554BA9809428FC48A10150EDD2187C3CD411ADB83DCFEC94BB86A5A213B0F7771F96D8FF29E59D5BCEFA209ACDDDDCAFD6BEA68E80E93E9D1C84C73C822C2A76F5C4ADF401F79197E0E3675F3DB47D79199974F535D1D5FBD611E972F18236979BB8FF6F1A33FBF80E1CB60E69861541705F8C8F5737114836028CAC04018BF57473344FDC0E07FFEF2140D6D0EAFEC6A223D4DE56BB72CA0A2409379E8984863490A9DC6C69D2D7CEFCE55988A8EA3DB38E1305FFEF8C5DC7AFD0CC20321F6EF3B443466535D554A7BB7CDB7BEF317F61DEAE4131F5CCC65974C61FBB646FEE7EE2739D21EC289EB32EDF1DDAF5F4A46208D1FFEEC11468EC8E72B9FBE8C47FEF112F73CB09E6BAE98C67FDEF6613A3A43FCFBB7EFE4AAF7CC63E182892C7F6A330FD546E8C81B468ED6C7B35F5CE2A6A9A4C7A4D00F7FEBCFE11040A7F616BE2D005A745DC59EB8FEACB87A6BA3AFC373C93DA98DCE39DE2B11344B2924C1DCD8D5D8CDAABD8D948CA892790101D1BD11E88C5852E3D9CD030F7A194ED6717226B21B27BBDFD71DCFFD81742119E8A1AFB581CE43B5F4773449801674AFDA78319EE2D1CC993289492386E1157AC5223123DC4B060923C9885802F471AFC06403CAEB54E912D655526FC37485F68F19BECAE614578B2466464044D8669CEC4C3F0BC68EC4B61522518B25532A1916D038D4D8CDD7EE7C8E8B678D62F1C4E13CFAD23ED6D6F5E0317432358BAB178EA5B3BD930963CA098623E466FA39DAD84ECF401453F5B273F77EAE3E7F32E5055E06A20AF7BDB897879EDFCB8D974EE7BAA53514A4EBD2626AF781A3540E2F2533238DE6F62E0ED71D61E1F4C992E7DCDC61F18F557B7879D35E96CDAEE48A4535188A70A7B1D8B9BF995DFB5BD871A09DB5DBDA7144CD44D0DAE271468D18C6D47139BCFFEAB94C195B4267CF00CFADDEC5F2957B58BDFE30B198C69C89597CF5F357931BD079716D2DBF7F701DF547FBF0E90E1FBC7E0AB3678CE6851737A1281AB3A68D95935E5D7D1B1326543275EA6899427BECF1754C9F3E8ADC9C4CFE78EF4A9E3E1441193716D5E967CD5716CBD670292025D3D0A7961538D52B3404D0A981CBDB03A0BD1AB1E5D7621D7C3CB5BB7A83BD14231DEF47EB51FE0FF812BAF460297E40D85278E4E57DF4797C9414E449301639C58EB04D8F10DA10E02C0D5106472BA78BC6A73F8C32E52852BC227232C3447A3B68AEDD4957FD7E9987B6A3033446FCB4798A482F19CDC5F3CEA3AA301B4B74A909FA9B743E71BB0C93002D9A5092CC8C6379E6846EF3F122A12B1DEA02F4F1085A449D82B9216450456130160BCA966E33AE909399CE2D8BA730B7A698CC808F17B71DE268632FC387E5B163DF3EC6578DA0A727C4F20D07C1EFE7D259A3C9F32B1CA96FE6C08123CC9C310E9FC79014BD7DFBEA78F79259F83C3AD1A84D9AEED0DDD3C191CE28BFFCC7665ED9D3CD7F7C703197CC2A21CBAFB362DD5EFAFA07B862D96C29C224AEF977F72D67EAC4092C9B5D4D4BA7C5F31B0EF1E7E5EBA92CC9E43337CE23C70FDD6195EFDEFE08DBF737513EBC90BE7E4BF2A5354DF0A155E2518BD2BC087FB8FD134CAACC055DE3BF7EF138773FF03271DB8F1989F29B1FDCC485E78F47B1426CDBD5CC776E7F926DBB5AF0185E46975B7CE93357CA7CFE5F1F5A437757841BAF5BC89C59A37865C34176EE3EC89C59E3A81E59826A183CBD621D1B361F615FC44FE6AC29C408F3E297CFC727177F2E956828823EFDF7E9CD3EF92F07D06240BC573F8B5AB6E0CDC6E69CFFDEED78B625F61EED0CF3E09A3D148CAE22CB2B3AF15444EB417BD8A63F96606B9CF32B4AFD042222564503486480B603BB69DEB78B486FA7644B74866D7A1D3FDDE92398357B0E4BA78D910EDA22D5612554E88E6B6CB85D82C7DCB813EDDBAF7546B107E59945AE3B09DC029C054759A64DE282B9102266C531C30EDDBD712E9A51C317AF9985473778EFF71EA4F65013D3CB73F87F1F58847053F9FD935B79EA957D8C2ACBE72BB72C233F5D65F3CE7A543BC2D489C3A5EB89B0988A5A3699693E2C33447666366D4D6D7474F6D2D4A772C73F36B2F15037D7CF29E1B3372C24C36BF0D7E736515E5EC8ACC923A96B6CE3BCB115DCFBF73598C0A7AE99C7A18630B7DFFD142BD61F66DE79357CE9FD7329C854680D3B7CF5DFEF62F6CC69DC78ED5C0E1D69E3377F5EC9FA1D6285A2A29961164C2BE0E7DFFF38A5394234CB61E79E56F61C68A72FE4D0D1D1C6273F7011861A053BC6BA4DF57CE7F615EC3FD283A2EA5CB67034D75D3607AF07D66FACE50F7F5ACE55572DE0C61B2FE6D39FFE09FB0F1D62F1A2697CE93337A0F974FEED5B7FE4D5CD0DA48F1D43C545F3315593155F5C40BA8C2D5C95C5D3715A198AA0537BD7FE25015A9FF54D8CD9FF96DA089DE3BD441422F278EBF735B272672BD5E78DC327B514544236B484E284E3A75A42FEF323689975948C3BD7C854B1A2F4341EA679DF767A9B1B880CF4110E0E108EC669338AA898BA984BCE9F454017AEDA0A8EC84927981C96A4D125CC5E0745CCAFCD3B4BFD8C41CD2749F076F59DDD766E91F270E216B1480433D6C7F8B2524CD28944427CEE86F33954DFC257EF5E4986C7E0FAF913B9727E353DFD31566C6B94ADD8B3ABF3193D3C93E52F6E60EE941A8A057D4E350864FAF1780D34434CA436E118787418E8EBA2B72FCEC18630BF5EBE8D757B5BB8FD2BEF61D6A84C0CC561F596FDB4B5F5F0BEEB2E213B53A72F14E547BFFC0B4B16CDE192E9D5F45A3A1B0EB6F18BBB9EA52C3DC0E7DE378FDC348BCEA0CD4F7FF157AEBFF6122E5D3A51AE18B6ED6FE6C7BF7D9C504861F1EC712C9C554D557996E44A4BDE8FE391D2A46271250D73A33184359910107F76D54EBEFD932769EB73D0741FA34BD3F1C7A30C2F0D70CD758BA9AB6B276A06292BCD65CD9A7D8C1E3F82C58B66E3516D56AFDBC58BAB6A797EE556BCD515542E5B886DD82CFFDC5C32E56ACE5DD90D01F4B90389B70D409B6B842FE16F211E3AF3D1300278AF7A0AB568E6991FEB8C8EE04AF1F7C5151E787127FD5A265555A5A8F108263ADD5187D6011353E49F4F83EE7C4697F6261F96D1BF34034076D585DA9BE8ADDB4DC791FD7435374B3B2CC1A8684B1B41E6F8455C38F73CCA3234ECB85BE893A90CE16F28803541911BACEF7C2C829646AF2EA73999061111B4C837CB7F4B9A5D18D190220A8B66D0E45DF3E7306A7809F150174BA78C42157E7C1E4853559ABBFB68EB8C70F30F1E624F4B04CD085093E3F0C5F74C9682F5AB37EEE243974E27A6F87968CD6E1E786E27936B4AF8E6871633B9A2905FDFFF38E98100572E9E4B6BC3513A43264F6F6DE6AF2F1CA6AA3893FFF7FE0554157AC8503D1C0D3A3CBF612BCD2DADD4540FE7CA8BE65098E9939D7BAFD4B6F0F51F3F4A575794AF7DF8022E9A3712D58CC97674512C35BC3AF9B9D93285613B2A5ED5C0B4A2C44527A960C2881491F87FB12C114F919CF4145984154EE58A1D97A92891BFEE0AC153CF6EE2A18756B178F1242EBE702A15C539B4363773E4681B5959856CDEB297E933C771FBED7F22AFA084EA9A49FCF72F1F4133A4510F81CAE1542D5B84EDB1F8FB276792257E282DD54E4FC47F28824EEDED7CDB00B4B5F7414CC1853EC36615392C9A0763EA17D0E7DE96DA289DABBDC403AEB8207CCFCA9D78871533A22417C516A0ACD311B4690D99B251E5ADD7C9CFCD452714A71334BF84D4A9484B840718686BA4E3E01EEA776EC0944A7751FA940CBAB36BA89E349325D36BC8540598B8A2476EEED915DE7F9DD9AB28048A7D04E80EF212143F8B460550B9EDDFD2834FE8520BA797B84347D022BF60381D5D3D0CCFF1F1EDF72D66DBF61D8C1951C48C51C3D974B49DDF3DFC22EB9B606F7318AFA671D3EC726E983D9C83F5CDAC5CBF9DCF5C339FA0E3E7AEA737F3E48606C65464F2EFB72E64EE980A1AFAFB8974072909A4D1DDDB43674F2F073AA2DCFDE44E3C812C469764529619E3D64BA7A27935344F3AAA9646C0AFE26816BAEEE5177F788CA63E87F5B51D14A4F9F9CE272FA2B4C88B1535B14362A511C774A2E46467911908C8894CB42B498F492909EA4ED7429B251E170A83A21148E482C57322BE1321CC1FC5892B6E4F90A611770CEAEB3B292F2D4053A2C4A3415A3BC23CF7F201D66FAA63C3E69D5CB8E47C9E79661DA6ADE3F77931851D9623689D161963CAA8BA6801966EF1B74FCE9011B44C710CE5A0CFCD8B9638EADB06A09DBE7A624FDF82DDB2E1988CE5E98F8C825A3A0FEF35CF9DFE21CECA274504E2B0BFAD9F3FBEB09BD2CA6ACA0B32112D0716BA04EED6601C4BD2EB5E2341774C1B63D0859CF0B3C16C8FE43E2791B17BED71DEA40699AC511EFB58C252CBB16C62E11003AD0D1C7AE5597A3BDD2EC3483446B796472C7F0C93CF9BC2FC89A3F16A8256771CA093290D195927981DA245F9C4EEC0C4BF851B8AF41374591B02A0ED585416E10C8F8F57EB43744684CAB1C6F8F23C968CCB9574C0EB2F9ACAAC51651CEAB779FFB7FFC49EDE742C5BC5438C4B261672C3CC52BCBAC5FEA39D4CAFC845F3186C6BEC66DDAE26C6561470F9BC1A32020196AF59477E7A16D34795D3D3DB416747AFB4897AB9B69D07D63470B4AD8B65F34673DDBCD18C28CE241E8E2452242A597905EC3DDCCADD8FBFCCCA17F7505452CC47AF9EC527AE9E8162C788C42CFEF0C87A0CC3275BC2C754E6332C2B204156342505C3260D2D5D7409479D8843437B90EEBE20FDFD11A96F921EF09395994E699E261DC005FB64586E3AC2C65040A9AA8B62652CA1FAE7F0FCDA43FCECD7CFD2D51B930541316A49BB34F15D688AC8928867CF266F4225232F9C434C35F9C7C7A71348E6A08700FAAC20C1A90EF2B601687103F10DDFC7DCF07DB062673C286AC124BC37ACFB5F174E1200FDEA9136FEB07A1F93274CA434C7475C11D1A34ECB80497348E41913F29D83F8A62E01E4D439E89355D68FB146CE70F4125DDFC7F59E931D8D62E96DC668DBBB85D603B5F4341C20D8D5268571426A80504E2517BCFBBD4CA82844111A19423B43E44C85425EA21B5000BD00665344C6096ADDE0085AB6710B2FC4A4BFA0480BC462A8668459E346F1CCEE767AC21AC53939146579A8CAF370C1B4914C1C9E855F57E973FC7CFABF1FE1F13D2255A649AAD9CC8A4CAE9C94C3D8021FAD9D3D74456164413A238BB3F1FBBD780D15DD9FC18EBA3646E406D044039119A7ABBB9B48FF008663A17B7C3CBCA985A73637D3128C32BA20939A51651CAD3B4AC0508859363593C6B2F2A56D34B60D50539AC907AE98C6754B27929BEE9500DC3710E7435FFF2D55230AF9FC872E939D8642DF595CA7C8313FF0CC761E59B18D1DB50DF405E3320DE65155A9C02744F6ADB84644E8B4587DE464FA98589DC775EF9ACA82E91520A26C494237E5337FB825CC8F7EF5349B76F724D267B6D4821691B8C85DD98AE0E9086D68B8B6DBAC0000200049444154F7392B9B359EE18BA711B50678FCA3B3E513298D225EA3AA98EAA33594E2486DA4DE56006D376F20FAB74BC00CA676776FB097925D85F7DD0FA1E48D3BE3639DC901C463BEF640237F58B39F69E74DA12CC78B684BB16D8DE6605CFE912DDEB22960F0262A42A73EF371807ECDE7DE4A5D5102EFEB3F70B2E0FD9820883064ED6AA2BBA19EF643B5B41EDA43B0A39998E510D4B3F04DBE841953A75053988962C52485CD357E75B9CD326D3108A0933E8372BF24F7391A763D06A520BF89190E529D97C1758BE6D0118912B11546E4E79217F09091263CFF84E59FD07AF660695E9EDF7E845F3F53CBDE862EDAFB2CAA0B7C5C581360C9E812B23C2AF73CB785E125C31857293A4E856B8D82E928043C2A23F23339D2D2CD81CE8894171D9EA1519A019A1D27A807D872A49B977635B3F560BBBC0EC712024A82871DC7AB397815583CA78AAB2F98C8E2E923C8F40B8714D77641AC0A0E36761248F752989D8EF05314631DC760EBBE16BEFCA3BFB3A74E00AA978047A3A0C0436B530F936BCAF1EA0EEBB71C46248D8533555F5850A7A3CC9D52C6C76F399FB165B9684E08413B178E914290E927BF7B86755B9B133C66D7BC57344149912BD9879268A4B26D2A174DA36CEE646CAB9B473F3C47A637444A6508A0CFE4ED7FF3CFBEAD009A7898C8BDD3717A0FBEF99DBDC91E8A27137DDA17D1677EFD8C8F75260710F0F7D2BEA3FC6ED55E664E9BC6F05C3F36222FABD13C10A741444A8A50DF3B19509EFBCCF4C9087E273BABCC8BCAC8CB41318344FB7A659761FDCE5769DDB75DE6A84D5BA5BB700A199553993D711423F203A882B72C73D089A25F92EB3C485F4344D002A05DAEB385191502436EA150880F05548B2B674E666ECD08D23C0E8AE641D76C54D54155353445435555148F1745D3246DEE4047880DFB5B7962DD5E46E4A771DDF935F86361FADADB69ED8DCA2EC0CEBE10D1B8499AA4D7C1A4AA723C19693CB9763FF7AFDE8382CECCE1395C34A588E20C01C4AA2CEA7504159EDBD3CE11918EE81542FF0E695E83E23C0F13471673FD4593292D10A907054D17D7A6618B13D831E29A5F521185283F8E8EED68ACDB51CF2FEF7F81F53B3A89251C638A7333F9E42D0B58B76E3353C755929B13E0CF0FAF60446905078F76B3657FA7745911E3317B5219B75EB3800995E9B2482B24B762B6CE3F9EDBCFF7EF582E5DC1454A488E95D0B2967E648A2BC895B0191B7BF17C8AA78DC16B7771EF07E7BA1C68E9C69268837D8B2FC150049DDA80BDBD005A4413DB7F87F9C26752BBBB37DA4BC876E68C469FFB1DB4AACBCFFC7867708457EA5AB9FDC92D4C993C99B1E5B9600B912183B688C3A1DE1831C74D71BC267E4EB97098FCEC5BA5439D2AD87E2D408B55F1894D8D82F32C5AB223F4341DA271F716BAEBF6D1DFD986198B13F11760948EA7B2663C534795499DEFA43595E04BBBC2FB2ED739A9F12C53209610DE8F6346232E50C74D86A57BB9786215E755E4E3F778F16AC2EC5C14E73C58AA87A86899D73C78BC3EB27C6EBF8F4851689A2EB9CD5DFD11D27C06F959E9C4A3513AC32677FF63A3C4C7FD878E503A2C939EBE209565E518BE007F5DBF9FCE9E28ED7DA23A675193AF73F3F92319374CC710D1A7EE45511D59609346BE8E23CF251A5EFC690659997E0A72B264E1B02B6CF2B717B7B0EB40334BE74EE082699564FB5D5F402148D5DE17E3AF2B76F2C0333B38DA1EC60C45583CB59A6B2E9D8C19EC615CF570F61E6AA6BDBB4F6A880845BD9AD1C54482260D6D7D1869593CF8E44676EE6DA0345BE5EA8B26F39E25D518C2100295AE8108F54D21D7CFD23669E930B9EB9EA768EFB1510C0FAA68F2741C4CDB64FAB54BC91D534645468C1FBF678A0C2204A8CB89F934E28421804E0D30DE76004DAC8FC81FC7E1843B52BBC33701696DECCD180B7E80E2CB3DF3E3BDD5232410706B7317DF7F781DD5636B985153816345A4F75B8FA9B3BF3BCA80C08264D76182DE264EF5DAF76230A09EEA776FF6F354332027D412072937B9B42B7191C2845488FBF7D3DF7A94AEBABD341DDC4BFFE1EDA8964D9FAF0C5FF54C66CD9E4E41C070991882929028FEC512396801C43149B38BC94614272614EB6212B823668C9955C5DC346702E90298555532297AE236B58DDDEC6BEAA6A3A783886033E0E7BC9179CC9E54C1F8D21C1C3386A65A32BA56745D82BA652BFCE6C9EDFCF2B12D44C226A1984561A687F6EE7EF20259A4F93DEC12D29B9683660BD5B838178C49E7BA9925641BD0D21BA1B12344F5C86114A48928DEC1301CD23C017C5E3FBAD7405563A8DE00583E7EFFF87A7EFBD4767A223AB99E105FFDE022A90DA2AB22E7ACF26A6D3D9FFFF19352C449F8079A7D9DD23FF1875FBF16271EE7AE0737B06977036D7D21D90894E6D3A828CDE657FFF62172D2355EDEBC9FEFFEEA310EB79B92765791E3E1CF3FBD018FE2B22FA4988023FC5A84588A494CCBE2A7BF7E8615CFD7A2FAD3A4EEB86C22B2E3CCB9E922B2471631AB348D2F2E1AE9D6AC132DDEA781CF4382FD2962C5DB0FA001F3C52F10DFF6EB146FF18D7753F3C7632CFC316AF90567E5786FE9200952C5FEAE20B7DDF7121945C52C9B3D1EB19ED69D3803B68703BD269DE1B8949F74D31CC76546DFD2B9CEE9CE276769BB4C2C0B27D24FA4AB95D6FA031C78E93962A2E3D08181AC4A72269DCFA4AA0A728CA8044DDB52888BDC74425F437A0B8A42A088A00548C74C82824B2DF635C32C9B38822B678D93FC5FC39BC10BFBDAD9B6FF103B9B06B0550F5FB8763EB5879BF9FD632FB1647A15A1602F15A5657CE3C6C5F824B7212ED30C86A653D7D9CBF5DFF8131BFAF3DD82992AF2B842D75A41B15CAEB1A27951054D109B2C9FCA7BA79470C9B85C2CC7E2278F6E667B5D37238A037CEBCA69B23350D521EA78E8891B0C44A394E76530A2D027F59FEFF8DB36EE5EB193385ED2F520DFFDE4C55C37AF1255D41B1483675FADE77DDFFE078E6690E3B7B87EC978A6560F931A214FADDDC3777FBB12430F8010531257246889F10897CF2CE20B1FBD52A62A9E59BD8B67D71F60DB8166AC5090E7FFF0297C7A58E69B053B44B6DE3B269A62D03CA073F7FDEB79EE859D685E9F6B6D25D22D3ACCBAF142F287E773C58422AE99982781FDB58C9EB7F2880D45D0A98DD6DB12A0ED968D44FF3A3FB53B7CB3BD140D6DFC076467E1FF8A0CA9E3D012B6F8CEC3AFD01054B969D90C7CAA2DBBF484C1D7A13E9BC67ED159E882A0CB7375E3DC5389ECBFD92D9FFDDF2762A8D75D902B4729A237271624DCD7CDA1575FA153E876743711B675FAF3C65154319AF1E5B9D22F302E4D4F5D668654B4139C60F1FF42465476134609C5903A2023B20C2E9B3E8EAAE2610C381E1A431A773FB3815B2E9A21ADA57A3ABA593C71047D11879D8DADCC9E54CAD3AF1CE5570F3DCF17AF9FCFF431E514667BC80E783034C18080BB976FE44B7FDD03A23BCFCD35B86C05416770DCBCAC224D6F05B726CEF080CAF4AA42429110F5ADDDD2C75080FA4DB34B19579E83A378786CD3519ED9DE48576F3F534695F1A30FCD970982BFACDCCBFD2FEE46513C8C29F473DBA72E61628968A2B6B0149D47571FE1D33F7E12C3A392E977B8F38BEF964A79ABB61FE5BF1F7889C65EA18EA74A0307D934925CFE845BB962C9443E75CB52A90BFDCB7B5FE4D9B57BA460D4BDFF752DD5E57EC984110174D4B4E80AC568EF8E73CFC36BD9BCA71DF0C8274DA438E28E495A410653AF58486545161F983792F38609929DE05DBB63733ADB1040A7366A6F4B8076A2BD44EE2C962FC9D9DAA45FE13F3D17ED86D05114EE5ABD87DF3EBB9B1BDEBD88B18569AE9A9DEA70B4CF626F97852DB4A045482791396989727A2FC7D91AB3138F934487E3D1B46001C8FC66A2A941FC6D0F7433D0DE44DB9143741CD84647533D617F11C5131750555E449A139251B274E016AC0E91738E455D4F4091EEB063D803212AF3025CBB702A0579B96C6CECE7D57D8DCC1B3F8A8A4C1FC3F3540CD544D7BCA0EB688A28C6093A9A23B58E1D7C6C6D0B72DB9D4F307B42259FBD7C1A25D93E34D1E8A1298CBCF54E8EF4795144D14F4E8D3AB6E8469486B78A3403C8F55AE4A57B38DA19251277F0C50778F9E737317EC43039A1FCF1C1A7C9C9C8A4ADCBE468284E5B5F9CF5BBDB69EC1EE0BD8B27E25322747675525C94CBF4F1C3A92A2DA0625806861391DF73C8F6F0AB8737F18B07379395A6307FCA483EF1EE1AFA43369FFAC183B4C7BCF8155D3ABBCB967B4744FBEEFBA0C8E6C230D72D1DCDA50B26F2F8EA6DACDFDA40635B9C8F5D359E9B2F9B4C38D48BAA68D4350FF0AB7B56B17177379AD020571CD951292D212C074B8D3366CE04C6CF1ACD85938771F5E4323C89EFF474F3CFE2E843009DDA5BF8B6046862FD44EE9B81D35B97DA5DA6B097B1E40EF4B1B7C882D23F6D4B584889F33D53DBCCD7EE5DCD94A953B8625AB9FBD2290A4D0371767599B2502838BB6E249D781165DAE3FFC2969C284F4C75B8854301D222F8749D0944CA231E0B11E96EA3BD762B0D5B5EA63718225E3E93E155359467AB1822C72C0A81827E970468C1E410D1B465931EEDE58A3993995E3D9CFA5E93BBD6D63160C6F8D2BBA6333EDB83AAC4B00D1F2D41D8DB1AC2B21C72D374A657E592ED17AC62A86D37F9F9DF5F26689A7CF6B2192C9E301255B1D134856FFD65356B76B5CA0E4E51446CEE8DD36F09F70111559A8C2FF470D5DC115497E6F0F8EA5DB4F645195592C737DE3B8382AC34D9C5B7BD56687CF453DFD4C9E40923A9AA2C63CDCE467EF78FADACDFDDCCC4520F5FFFC845CC1A5342A6A1BB5443332A530AA27B7BC0D6F9E9FDAFF2BB27F690996673D1F44A3E73C56436EEAEE79BBF7A9A982F0F4D86CC82BFECE6FC45E94FA4617461D86B47397F723E5FBAF5121A3A82FCF1E1977875472B372CA9E05337CC23141E90CF577D5B88FFB96F1D1B7777A088204040BEFC3A8571818D2FCBC7AC4BE631615C3E57CD28676A71967419175CEAE3CCA2B71E280C01746AEFEDDB13A0AD28E6DAFF20BEF9F6D4EE3285BDD4E14BF12CB90325B32285BDCFD22E12C0C4C38E2C067EE6AE67E9B4FD7CEB86F9C2A44FE63E7B62B0BB3B4657C4CD4BBA4ED9C251E5E479DFB374656FF13083A3E7133FEABEBA6EC7A4B851D1FE2022512516A1B7E930F51B9E9352A5DD6923304AC75153964B8E1AC30E07654AC315438AC9885A44D0F198C3ACB2742E9F35994CAFCEC6A3BD3CB1AB93F29C00EF99594145BA435C0FB0BD23CAE35B8EB2E17037C2012B60C0F5F34673F5F44A8AD34D6268B40C44D975A495E2DC74E68F2997C0AD8A49B12F486B77580254534F88BFAED9C7939B3A08590A694E90DB6E59C0F5E757E1B1E334B5F7C9083A3F379D7C617FA5D832EAB41C3FE1688C50344AA6DF4B7ABA977E74BEF9EB95FCE1E97DCC199DC3AFBE7115A372546241A1BFE1E6828576B548A1F4391A3F7B600BBF7FAA1645A419EC5EFEF29D9B254FFA6B3F5F8EE9CD4195939F28584A5DA4E3E228B62639E68BA61570D9F96379F8B1F56C3B3C40C8D4B879E9703E76DD1CC2E101F9BD347646B9FBAFEB78695B23A801195523849644711087B2D165CCBA643ED3AA035C755E3185012F9A08D11DE1EE73EAEFFDCD1EA021807EB311727FFFF604682114D3B11D73D557B01BCFDC65458E84E6432B3F1F7DFEF750F3C6A7367A67B897CC5424F29CA2A9E19EF507B9EDA175DCFED9EBF1119536514243A1330207BA06E8347509CD2EA8FF5F02E8D40742AAE149FEACD0BDEAA3E7F00E5AF76CE1486337E1BCD1949416539D69E304071202492E408B3FC26F50B7A27CEDDDE7939F25E86C1E5E38D44B7D5F94778D2F6378A64654F1F2974D0DBC58D7475D579490A8AFCA79D0A130C3C3D4615E3EB264148B46E7E0185E9ED97A98C6EE20372E18C7B0805746FBBAE0AB25F8BDCDC118773CBD933B97EFA6330CDE583F5FB9FC3C3E71C514BC4E0455C0BAC03431F5D8AA6485C8158323920F02F1D5844E8650C8D0B873F9666EFBE32B1465194C1B53C2F0FC0025F9695417E530B3A6149F21F2DB1651C7E09E670EF0DDBFACC7A32A8C2EF6F1D5F7CEA2AC28979FFEE9399ED9D48C62A4498016AB2D194C8B71552C9C984D49B6C2973EB098EA11053CFAD4569E58B38F8E7E93EFDC3A8B0BA695108985E598C42216758D5D34754758B7AD83CDB58DF447DDA274667E3A3396CEA1645421EF9998CBBC113918AA822681F9CC566F43009DDA3BF3F60468716F560C6BEF03C45EFC3C986741E12E315EDA8865782E7B08297FF64FD8645CE922358783261FB86305172D5CC0D4522F51E1462DF29F8E4E437F84ED3D36A6941E15F969F1B9337B49FE09B7F7BA530872972CBA89175CB035BA9A69DFBF83BD9B36D1172823B3743863B31CD4900BD0A250285C524491301A0E316944011F9B7F1EB6E610D7023CBAB38DEEF000EF9F3D8A228FC38E1E2F5FFBDB469AE2DEC47798588ACB85878D1AECE6FD73CAF9C98DD3244DACB93FCEEA3D752C1C57C6D8C23C2C2D8E070F0396CD81B65E1E59BB9F075F3C446F30268969237254FEEDE625CC2C139E91A62BBBAA3A38BA9781709448D096CC88CC7C0F9982F121DCC565C940C1D1143A623A5FFDC5638CAA28E3506317ABB7D64BFD8B9A0283FFF8D8C54C2C4B9391B4781E9EDAD0C6277EB512C3F0936E585C3E65189FBB7EB1EC64FCCFBB5F606753D08D78E5F420645BC1107F625D7CE4DAF97CE8AAF93CB5660777FD6D3D2D9D31FAC2511EF88F2B28CBB23085238AE81CB44518E04E48ED418DBFAFAEE56F2B76A0FBD21933A38AE94B67E3D743BC6F5A09E38A3265FDC3ED527DEB698DC10FC31040A7F6F6BD7D015A3C96DDFB30577F15ABEEE9D4EE3695BD541D63CEB7D1A77F3995BDCF6C9F64114D3EF482F0A5F0F3E7F7F3E4C17E3E7ED144BC8897DBAD96472C83550D03F4C5F50407F5389BE3CC2EE2DC7C5ABEC26F44AA1691A688FC82DD52B3A3F6A517E85272F0978E605C868D1AEE77BDF912006D86C3A42B36EF5D348D490519E8C2895AF353DB0BF95E8551D9C291DB6175639C6F3DB593A0919158F24BF16A771345B4F0004B47F879E0B38B5D4686D7CF139BF731A62C9F29A5C3A400BEC8F3FFF685DDDCB97C2B755D71FC9ACE4D4B2671DEC85CB2BC3129A664C44258A2F8A829C46C833D473BD85FDF2AA14EFC1154C16105394C1C554E6E9AC7A51B8A31D1344251C8F07BD87CB49B6FFFE16536D7F6123006F8DA07E672C3B49128AA255923ABB7B7F3F1DB9FC624434E665FBF7936372D1A2BF3192B371DE16BB7FF9D889D8662884E53E12A13271EB1F9CA0D53F9F0B58BC8CBF0F2F3FBD7F0837BD6A0AB7EF4581F8FFCE47AD2957EF9ACB9591137FA562D15C7EBE381A777F1C747F7905590CFB21B17935F964D893FC2B5934B2913097CB90D01F4B9796B5E7FD4B735404BB3D19D77115BF38DB3A2CF911C1EC59B85EF63CDE75E482909D072D9EF46D107FB4C267DF3413EFFDE8B9855918F1D176DC72273EBE195A63EEA07043FD7EBE2CD6B10F0CC629A933F72A936AE9CECD3A7BA1E9183161E8B12396321826D0DD4AE5A415BD487BF78046302266AB84FFAFA49808E8650A261168DAB66E9A44ABC6234349BA0E6A3C14A6798DF4FA1164151636C6857F9FA937BE857B3130A80421759A4844491D24089F4F3AE9A4CEEF9D02C2C4DE795031D3CBFF520372F9DC884924C6C1191DAF0C9DF3FCF1F9FAB43F5A6737E75806F5D33839AC234D7762B16C7D04494ABD3692ABCBCF9203D7D034C9F3A0DD51790E90DBF1966C7BEFD7476754999D5CAA20C297A250B8D8A85D7B6E85302FC74F96EFEE71F9BC18C70EDEC32FEEB9645788C18B61263E7A13EBE79F77A763545E524FD891BE662F77630A2C0C3FCE9A379FAE5033CFB4A2D750D3DB2F53D274B61C6D891FCE7976FA0BEA59DBD871AD976B09BDF3DF2AA5C818C2B31F8E9672FC2AB4425033C6A6B0CC47421F62108D1F49A0A77DEBF922DFB06C82DCBE77D9F7D2FBAD5C3BCCA4CE6570D23CD487EA367BE721B8AA05383F8B737404B94B230577DF9AC35AEC8615375F471EFC758F84330A4B9CF39DA121CDB63045611BBA92CFBEFA7597FB8971B2F9AC19289A57884909088EC84087C5F9CCD4DBD0C38BE44EE53148A34B7927F963779C893A0EC1B46C6295C83CBE54E04B642FBBABF87FD2F3F4B634F8C404E29237C119C50A72CD2093124AF1D63E98431CCAD2AC650A2A86A3A8A1143D1FD2CAFED655B731F1F5F308A919982C29BC513B5ADFC62CD11BAE33E6CD18227625A278E27DAC7DC0A0F3FB8793195E996A4E1B53B5E8E76F533AE20409E5F45B7350EC72CAEFBE1636CAE07DD037346A4F3A1D963983ADC4FBA1694EEEA82DF7CA4B5875D473B28ABA8E6A117B7B2727B1D39E97E0C4F1AF54DED8C294EE3D6F72C24CF17A73CDB4B71769A8C5B35C5A47140E7377FDFCA63EBF69393E1E5E60BCFE3AAF963C8D2FBA51B8A62E95214E95057905F3DBA96155B9BB1AC00A61964E1A4726EB9741607F7ECE4F26553F1797C7875039FCFCB532BB7523DA18AA757EEE0378FBC420C956CC564D9CC6A6EBC6402697AD89DF01D8D577775F1DDDFAF268AA0D72968899E7D6F96C265D72C65D4A842E6566633AB220BBFD01E7DAD77CAE9D3A087687629BC276297B73F408BC59D705BD9F28BB3CA8B56BCD9E8D3BF843EF9936048F5DB73BA09CD037773787047335FFCE32AD233F3F8E0B249D4148BE5BA483A2385FCEB7A4DF6B485E8B184D3B72AA351B9B41E243F7A0EF0FAD8FD0FEAEC7ECB6372A2E7ADEB08120F0539B4FE799A3BFAF0650EA354741586BB880B3D0FD362644136174EAAA128DDC0706CB20C0B47881EE91E36368768337D2CAACC23D788E2D321AC66F08FBDDD3CB6BD9EFA3E9794A863727E652E9F583286C9C5E2FBB4A522DD4BFB1AA4FCE9F935C578B0112CE95575DDDCFC3311D10710A2C8AA196252B6C2B7AE9ACE84121DCD51A52A5E7BC8A6A12FC60B3B1A7878F52EAE5A3A93922C91065058B7E728AF6CDBCBF88A3CCE1F9DC794CA02A65697A2A971A9B35CD7EDF0ADBB9EA77DC0E413574E67D9B4110444641B15AB0BE15C28F44C5C9EF3DEC620BF7F62232B77F710313572FD0A8134132516E373EF5F2A0D6DD3FC5EE6CE3A8F7FFFDE9F30B27289C4140E37764BB1A425138BB866F1388AB314B7655EB1885906CB5F69E2F7CB6B31142D61E61BC7D162CC59369B050B27C962ED053585E407C4F3255B57DEF2F77DAA0F0C45D0A90DE53B02A0E33B7F4FFC95DBCE8EDBCAA07153B22A31E6DEE636B088A68773BDC93E0893EE98CA771FDBC8BDAB0FB06CE604AE59300AD556E58B2596E0160607BB0758DF2C981E82CD90C80ACA94897B91C9C0F75C01F5095A1C27199753A5375E0FD03656344CFDA697686CE9262D9045A13A801DEEC58E9B882EF7B4DC128A0B8B49D354B2149B1B2666CA8611A17571B027CA9A86089606534B73995F16C0ABEB4455832D2D415E3ADC230B6239693AD74C1FCEA83CD1AA0DA6EEE5F7ABF672DFF39BF8EA3573B9694E952B9FA9EAEC6AECE4DFEFDBC8CB7561FA2DB79839C21FE17B37CC65D230034D50E2148596A8CEFE8E28772CDF40477F9C4B678D61E7FE2384A336572F9AC6531B76B3B7AE91F74C2D614665010B278E24CD7079CB5DA6CE1D8F6F24666B7CF9FA79E47B5CFD6BD9491917290D211AE5DA5B39AA8F836D11BE73CF8B6CAFEFC134C554E29095A631AA3483E68E7EE98358599ECFD6DDF5D2E24AE83AA71BB0786201375D3C8EA24C1D251E952DE962C68AC40D1E79E930F7AE3C8221532F82561761FC946A165FBE80BC0C8D778FCA6074BED0E410359204B3E52CBD0343009DDA40BE2300DA1968C2AABD9FF8969FE384DA52BBF354F65214D482C918F3BF8F5ABEE88C2BD7A99C529AC83A50DB19E44F6BF6B2B539C284AA32A6541692A9DBB23025E0376239ECEB8AD21C84B6B045548ACF27D1F9383CBABD226717A64F06BEAF3D432AF9F04482072716A163F7461A1ADBF1682A39561F56A44F1609459EB6C75F424CCF92CC429F15E3474BCAA84C17195D13212BB5B3C3646D5D177E436771753E05191E46E606500D0F4121066483DF6790E773D00C95DA96309B8EB4D113B649F368BC6BCA084617F82523428826C5559DDD0D5DACAE6D6563FD00B190C9F85C87C5E38A18E613EC606121A5D218843DED26773CB15136B59C5796C3DA5D4770743F5FBB6E012B36EC62FDDEA35C33633853CBB35838A182748F8056240FFB6073377B1B7A8888D94541E689FB4C15331AA73C5767CED8620A33F4447D42E795DD0DD43674D3153668EE8971B0BE959E601F31D3E5410BE794CC4C3F63CA0BC84933C8F6D94CAAC8A6B2240BC7162C14C1F470B08496091ABBEAFBF9C3937B39DC1AC67234662CAC61EACCB10CCBF731BED0C792EA3CBC32684EEA20A6F2ADA6F2940F7512A6364AEF901487C4207380F8DA7F23BEFD2ED735E22C6E5AE5BB30E67F0F2567F4B90769D970E76A01B7854DBEBB7C078F6C6EE0F27913B9A0A648AAA3894D134A632874871D6A7B22ECEF8D1376C402DD7D890699AF9CC591383B873A06E62EC7102D16C269D8CBE1C30DC4234102F17EE2E120038E418FAF90605A29961648A4794CDE5D6071F3E41C0A3C31544DC1D0BC7446743635F7B07CDB61AA8665F3E98BA793A65B44E351F27C06217442A6437E513E7F7E7E27B58D1DDC306F1CB347E690EE111AA442AED32379CBE91E4D1AA58A16FC97F6B4D2D33640558E8D6345319C38A6307045A533AA53D71DE70FCF6F6757733F372F988A6599042351B2337D3CFDEA5EC2C120EF9A50C0B491F9CC195D86CF10B436712BAE13CAAA1D6DFCF0B19DB48685C1208445F389A331CC30B971C1486EBD681C9A1996E02A3C62510C229642E780C9C1967EDAFB061818084B100FF87CE465FB18939F85DF2B0AA371B90A911DE08A228D07C26614BFC783138F108ED9BCB8BD9FBFAEDC415A410157DE742139E90A63867958505940AE57979DED6E7AE30C12CE27796C8622E8D4DEA57744049DBC55A7EF08D1BFBD0BA7E7406A779FEA5E7A1A5AE5253292563286A7FAA9D3DB4FA639C432D835FCBCEFD5437CE58157C113E09B379DCF884C11BDB90C32B154B6559581B8C2FAC630077A84FB8AC877B8CB51D169265E4C378A3E45DAE3B5B98A37CB5DBCE95D25E0571EC7CD560FEE377B5DA4EDD878CC20FECE23D4D6EE271AECC71B0F4AFFBD1E239B604629713DC395B694DAC336B9D16E3E7A5E018BAB33F0383174CD902245225ABE6B631B475BDBB960D22899571D0845B87CD638F6B7B4F2FC8E064616A5130C4679EF828954E679F02B96549CD3FD016A5B43FC7DCD2E164FA96478718EF4F07BFED53AD22C8B09855E29D4A4C6632852AE53A725285AF11D7637F7F397976AC9C9CA627C45812C806DDEDF42381C65414D21D3CAFCCA875F6A0000200049444154D4146532B62C0F552810A1CB083A62DA3CB1B589FF79760F41D1FD27F929315735CF8C73614D163FF9E07CC9F397D90E6187620B7D0C370A8F0B072BD1D7628A5597A06288261221702464EAA2529343C4FB62D2198819BCB2A389FDF50D4C1F3B9AD1A5D982C7C18A4D4D6CACEF66CA82998C189EC398021FF347E54870D6456BBE6884392169F6A60F404A3B0C01744AC3F4CE28121EBF550767A099C8DD95A9DDFD5BD94BF3A0F80BD0465D25E549CFE9964031F19E09AD88DD1D41EE786E272FECEB65CEB8E15C3E6F1C99822B6B09BA9410CB51080B011A47A73B62B3BFBD8FDA6E8BB8E6435544AF9BCB99960D0909E0948BD6415A20C7EE47EC7AAC16741C4E8F81AC8BF927D94EFCE1A9922AF2F0426744008CA390AEC49990A7D077643FAB366C23DAD7836E866857B308665660EA4238CAA5A7C989C7B1B961B8CDD563D2C9D54CC92BD6849091F85B35888A3CAEAA60A4A511B5BCF4471D3C5E0D5553C9F4E86479E368B649567AA6E4302B9AC3917E87BB5EDCCF337B3AE9300DD20CB7655B48720A10152DDD3E254A45BACD6D978E47D38504A949D4D4D8D1D84F6B4F98E2D20AB6377473A4AD13D37298515DCEC8C2743A5B1A29CA30185F9EED1E5351082B69DCF55C2D2B76B611C64758E42824BFC3BD3F81BA996A844F2CA9E2BDF3CA5D0EB5E2A7BD3F427A204D4E2A829E18B54C99BD127C7291AF76A406B7C0F0B8D431C112A93085159B0EF3D8C626BAA37EE296894F084759114A0AB3587AF1F9A4E767621831DE35AE8011593E3C862205934EE66B79B69EFB21804E6D24DF511174F296C37764415C986D9E9BCDFFE9DE7356341CBC9014FA0CB26D4251A90B9A5CFAFDA7D8DB1163FEC4726E3C7F02E542F75D2C7E85672171745100D20CA923BDAEB18FFAEE103D118798EA939AC2C20249B6054B6C160B5797EA762CCE1D146527E3DF63B07B2C8F9DA05BC976E6C4F84ADEDDA920F9B5C0ADCADCB1BC3347654C86C38C620F3BB7EEE4E9B55B88F77649879596CCD144FD0538F2DE124D2662668846B9E7DD65142903EE1D081B2BAF079F306E151D78BAA01F0A4710074315943701B6A02B068E6A6328BA04660C1D5DD389695E7EFCEC3E7EBBA681A8A6BB4A4A22272CD6F6B2A53E21391A47D2F41EFCF044F2552104EB8AFD47F1B0E7681F754D1D8C18399CF4DC6C29AFDAD3D24A5D7B3799012F3347E6C922A5AB8C67D318D4F9C6BD6BD9DBEF47F3A4C973298EF826458DC1062BCEE4020FFFEF9A198CCAB5D17583C35D2A3F796015F9F9994CAB1AC6F8E24C86650A8EB7489988DCB9473E070290AD81303ED5D5CF8E2906CBB7B670DFAA8344A30AC2E550083269AAC9D20B6670C1D29968911E46E76BCCAF2A244D17CE07EE126D08A0CF0D7EBC95A3BE23013ABEED37986BBE7A56DCBF4F36985AF9628CA5BF41C9283FEBCD2C2766FA5C80164B5E1109FF78C50EFE7B85D054B09834A6882F5C3D9780EA6A31A8426847A2AAE0442B44342FDDD138477B821CEA8AD2167288383A9668C490FA0D83531183EE72702A24991E49C2EF2007E7E3B44037BF795CBC6910501FB3FF4E08F9C8E388285E38975AE4191A17946A940614D6ACDFC1332FBD2AC5FC4504DA523417E704654121D0A3A0C5C3FCED8A5274332A2DAD36B705D9D212625A4511938BBC147A44BC2D96F526AA21C0589334324DF5A0796C74250D29DA6608FB409D305EBEF5C45EEEDBD28EA28B494380931B891E97DE76530B7A2CC27D375452E2890B0F1239430989D2B8E1A52B14A7F650832C3C8AF1280C2894161753989381CF11EC89648C6C115132F8FB9666EE5F7B884E4B70B53D9229A1D9624524581C312695A6F3B9774F664C81876D47BAF8CBCA5DBC7A6440AAFC79549B456372B9EDFAA99236D71F5359B7A785BD4DFDB4076DB29508375E38950C8F28FEA9BC54DBC3EF9FDD4D5F5095FA2E79393E162D9ECC94A955F8D52863727D4C2DCF255DF88539A2BE212E36B9DA7A2B7092FABE4311746A63F58E0468612E2B5C57ACA32F20F2D2677D13BCE3A219E8D3BF22859594AC9167FD1489B0D1D581932FB72515CE1EDF58C7832FEFA739AC525494CF799545E405340A33D3F07B451E5380AF800F055B1380ACD21D3269E9138A78367D518B7E11652584E8E57906119B4F88AA05409F84AF775CA73D11469F346F9DA0FC258491E4491272CAEE2464519CA631BF340D3D1E65C5CB5B7876CD3ACC8101C29E2C7A8AA6268A820298937DE3AAA03AF0E9C9B9E4F80DEA7BC2BCD2D0CBBE9E18C3FC1E2616A5B16C7436E3730C8A7D22B72CF2B57EBA438E144DB2359B989A260B80938B3DA4193AAAE6E53F56ECE7771B9A712495528094183F916A107F89EB762DA14A7D0EBF7E572901CD211A17CD1E96648EC8A2AE2AF8E85E4C61AF251CC0FD0A9A484158368EAA21F487064261390C1E7F169B5B4DEE5973504E9E8E88DC45FED889E3885CB4580D1065CAF04CC60F2F62F5F6831C6A17FB098A1F98164C2A54F8DDAD33885926AF1EEEE1CE277772B0DDC4527D646A11DE3DAB9205E3F2C9F2C0C6035DFC6D733326E9548ECC64D6CC7154550C23DB30A9CED1A9CA4F27DD10ADF762B5F6BA769473F26C0F01746AC3FACE046871EF5614C18F16407DCE3691DFADB9C12D1EA6159C3D86C7A0303A19C8897CA8284E25E3B0B547BAF9DC9FD7B1B7A51F5F9A972BE78E65D6E852B2035E3CAA852D8A44B2582872D4C95672C1A5D6B045AAE384944432E9EDE61D9331B004E76301F16BA87BAF1BD4443130E1EC21AF3BA1017DBCC894B0EB1201AE9B00478D3BF25A1F79660D2B5F5E4FD849235A301AD3275AB593A98D44449B3CA7084745514C74094AB1204935702B66A14EBEB47024378ECD96D6547511953FBF7A941DAD3199EEE9366D0CC7E2F6EBA67181D087F6387CEFF97DFC6A6D2B66427848E6BCDD3CD0B19C304E0CC30AF3AD459514A42B1C68EA40B51DE65764135005DF435C86681CB2E404105704DF5A90EF2CDA6206AF369AACDFD784C7D018969FCBB3DBEAE9890B0EBB2601DD4D1CB94C0D4D5A6AB98029FE3BD68494982CC43EA3B21C7EFD91D972E2F8C3CAFD3CB4B10D5BF54A9689E81ED4E241AA720DC60ECF278443766139E3C6955298E3274B8B5396E3A7BA2040814CBDB88EEC82F5214B828E98E8CFDEE37CB2F76F08A05343A5772E408BF7B57E25B1A7DF7F760C664F319E4A7A09DAE86BD0C77FD0A5E1C997FCEC6EC7F2C489B484789D43A6C5AA836DFC7D733D2FEC6E2564AB8CA8C863D2F062C616E75051E095CD0AB2FC2F8B72E2D51B649825C133F912BA12A0C9A8DDFD3B193D275CA6A573B72B24F446EFAE5BB4728125A91572D29AA23CBD0B82966D72EFDF9EE5C557B713CDAA20965526B5AF4FD85E97E23E36750DAA6A0A7B9A7E3E35B3840F4CCAC2346D9E3C12E4AEF54DB4C404854E3ACBCA22E5C46C9B5BE7D7505D94C15D6B0FF0D8AEDE04C73C419191E74B8C91046B1182C7A9CED2C9F4281CEDE8265DD3B86E5C0E73CBBDA489DCBE6AB85DE58A22036FDD8EC963ACAA1BE0DE2DFD34F40BB08DA31BC2515C914D311298ED845C68623674D34F8A9B6E11558664DA494CB4D24B50919CEE5B6697E231749EDBD9C6B6237D325217CB2D2B1E45D72C0A32BD9C377638D3A68EA17098900A35199EA95095EBA338C38F5F7F2DBFF95851E1EC3EC02739DA1040A736C4EF688076822DC437FC80F8EE3F21D21EE76C33D2D14AE7635CF04B372FFD4FD844E55ED0ED9AFAA3BC72A89D5F3EB7978DF59D6478BC9415E673D99C6ACAF3B2C8F31B3267E936C02473ACAFAFD00F8A9BDDC0F5358A652E5E253C0693E09EC88D1C67D489A324402D21D2EF8275721B4CBB3B9EB7B66C9BDFDEF70F5EAE6DC4CCAF266E641D97C23BF6E1C1087D62A63ED147E99E2432C08D130BF8C49C323AFA42FC6A7D13AB1A22C445FA22999B7104788629CF36C8494BA3AE2B4297C0D2E48A4102B2E0AF25E7AC44342DA9273109D46267BFE2704985C10D13F3C822445B44677D53AF34899D9067303ADF900C9A27F60EF0A76DFD745BE2DF9614E777437E573A5644FA72D844ADE1585F51621CA59F43625A4C5C9334E1722C32B430AA6A108C2239CD8E6D636830B22C8BCA91C58CAE2CA6B424879C804A40B1284833985C964196474BF262FED708F343009D1A48BCA3015A1A69069BB00EFC9DF8965FE2F49D3D8BACD70DAF28CE154E43CD1D833EF5F328E75CF43F69122AA854710EB60DD0D617A1351467435D072B763648C3509FE1252DDDCBB0EC348A7202146405282BC8425745AE34017449C3D1632965F7D8B2A162502419883631A3F1E7F8E35D3C31EA77123864C4EC724D8E83B350AB4BFC549CE38446C6041089F1932C0C79009BE756ADA525A262F9B2254809B6810BED8949258995493A59E2E7C9CE4B37E214A4064B6A550CCFD088991607FB1DFAE309EC4D9C4B90142CC1F1156A88526E5314C404748AF4C2F1CECBE48426D4E9A45D97B85E995E71ADA544AE789861511550284C536818B0D8D32BEA9FC262CB6464965772940FF798D4851462028005BF5D887927274BD16E243D055D435A29C1EA0EEAB1BFE5E429CF271644E25BB1F0192AB99959E4650618599E4F69491E693E8F6C7F0F786DF2B2FC146779A54468815FC3A722E975018FB04E73574567E288921ABC9C7AAF21804E6D04DFD9009D1C837898F8E69F13DFFCDF08C3D973BAA9064A7A29FAE48FA14F3D87F9EF647E22F1A225B156D83BF5454C56EE6FE7E57D4DBC7AB0833D4D4182111BC3D0D07D3A395969927D20013A918E108713AD2D2E68BB9B649008A8B51D2EF0EFE08B590F5365EF256CE92CEDBA936E2B4D5E45F233C9683919272763E7C1491141B2139B889F05DB4D80A3E5C4B96C5A19934797A32B22FF291201EE5E492A4572A290E792AA6BC92B4C80996B9AE2325964938F9B6291FA2512DC0400BB91B1C8F10A3D1301B871D13822D3406E94ECA6710605CFC9F191054357E3C2E594BB1387885A85B9AA6EBBCC0E29572A24525553E0289663B8632C9833096D8D586212702738C16116809FE430278E993C76C22DE518688B2F58B1C8C90E503AAC8874BF419A17B94AD245D38F62519CA35390E1931D94E9BA60B124925B623C4E103C7AB384D5B97B5386003AB5B1FDD70068F9D2DA44EF9F8DDDBE3DB59139C3BD04481BE7FF04ADF232295F7AB6373766158821F29DE2E5B66405DEC56B0122AA9070A7251C67D59E4656ED6E626FF3004D5DFD0C44E238B228E482B0CC838A3A9BEA46A14923EE2408E66B7DFC34EF4EE67977CA1F0985B5C7C3F3F88F9E0F21F806F2B3C97487B48B7217EF026865DC294E25FF08817B910756E4D25FF8FF698235615B7CE0C209D494E5488A9CD09493544089D1C7F3A4121A251E27D20F12705C6790E426582BF26A1202F92E8F595C872D8B80627F01D0925F2D8B716E87A2EB66ED46ED525AFF58E2DC1D4B39A5481D6B710DEED8B9B9E204584BE016002D605A3407895A847B9D72A2905720181F6EB47CFC04AA7B4F897B914D408955CBF1C9CFDD475CA725CF6B4BA716C7114A243601CD20434CBC3E4DF2AD856FA084643131C9F11F5C5F48145C4FD08C3D6995E06C3FB2271C6F08A0531BDE7F1D8016E9436134BBE72F38C1E604952AB5413AEDBD743F5AD565E8533E235BC4153DE04A979E35A10C1798DC629B28048AB84E808D6B3C2A5F4CA1D0868268DBE989DA74F447E80D9928826A702CA79C04D004208ACF5911887693D6B38BC2DD3F23D0B951024372B38D4CBAC67E9C9E9A8FA37A335165C12B015C09F84970014EB8DD2458BBD8EB829EAA3804445E54152C08F77E04582663E82458CADF25532E890B3996914844FEC7FCC513FF76FF72514F46D072C044A12DB9424870B49379F564149E484027825E773293BF4BD8DF0E5A7D24AF4174F3090075F984EEA4E0AE5092D1BDDBAA2E521C6E047EEC72DC887FD00FA4A8913CDF71F094BF561DA9E1E15515C95B1634BF0C8F815F97EE88C70EE84273227F7D02FEBEBE187CDACFF7197C7008A0531BBC7F298096AF8E1924F6C40DD80D2F9EB34696930DBD225C98ABDF835E733D4A76154A7A596ADFD05BD86B70F34812CC8EBD9BC9B6EE24C56E70C13E991F112F756C00A7FF28D6E127A4F8D49B6D6AC95C8C853F411D2678CB2772AA8F058A83EB7BAF39E071B878839D5E7B11830027195F9F78EF83412D71DC934C8A278B1B8F657812BF749B24075DDBF165CA2016CCB1B03771A583417070C224F9EBD74A779EB84F72184FBCEDE43113CC9CC4BCE3AE33DCEB9314C91312FEC78BC1C99F9FCBEEC0377B5606FF7E08A0531BAD7F39809620DD7F14F385CF611D7E32B5513A8B7B295278E95234D1E4925DFD4F310348468D6E92F5D8EBFCBABB72C21DC477FD1167DF23D8ED5B53BB6B45C558F07DF4C99F76696C12CF12803128FA3BE5C14EB9BA3E19609FC9523CC5E3BDD16E8327A093D8CAA43EC5B8D3CAB1FD4F2264754286E558642C47F778F35062F5343861F2465F9ADB8872266398DA2391CA5E43009DCA28BD83E44653BBDDC45EA230D3B08AE8DF2F3FEBD2A4295D87607C94CC412D5B885A3453B23F8410D3B9DA8E4764C948EDC497546868DBCDEBB18FBE407CE7DD6F7965A18DBA127DEE7FA266559EF5F4CDC9A3C8D31DA9D742E85906AB5321742A1E6129CE1F8366D8B33B34A73BA4A7F9B921804E6DE0FE252368198744BAB0F63D2C41C9AA7B4A0AF4FCD337CD8B923902357F028A2FD73DBDC85B8FBD113577EC391364B2F63D84D3B91327DCE946BCE14EECF66D38FDF5098EEF5B1C094F065AE902B45157A38DBE4EB62E27530F291D2965704AE968A9EF94F2798FEF783C33742A707F83387A505A69F05E838F3438F374F21B1994BE4970CEFFAF44C5A90FFC90607FAA63F52F0BD02E3259523BDADCF853ACFD8F9C5567F054BF80D7EDA7EAAEBE477A99747351726BE41F35BBF2F40C6CC53DF61DC16EDF21EFD56ED980DDB60527DC7ED69B770473C5B3E47F50472C3BEDDB1FFAE0BFC6080C45D0A97DCFFFDA002D41DA96AC8ED88A0FB985C3FF2B9BD075105AC8423E53F7CBBFD5FC4912B41105C761534E79A52212B69BD7E2F4D563F71C74279E7848AE1284F38C6BB1716E3625B302DF07F79E9B830F1DF51D330243009DDA573904D089718ABFFA23E21B7F8213EB4B6DE4FE37F63AE696224AF66FA0F9215B82651FE03905E3530D81EFD6032819679FA5F2BF31E443E73C37233004D0A98DEB1040BF669CE23BEE26FEF23771A23DA98DE0D05EAF1F01D5409F702BC6C21F82E61B1AA1A11178DD080C01746A0FC510409F649CEC96F5C41E7D979B0E18DA4E6B04145F0EFA8CAFA24FFC1818C2B6EA9FBF59B643DC168D1DAA94003D934D3492C4E289261551CBD514A96732B49DDE080C01746AE33604D0271B27A125BDE107D81D3BB17BF6E3F4EC97EDC843DB5B1B0125AB1263C10FD0AA2E3FF6C14387EBC98AB69ED095F86647D5F38713C82B427B0340EC0BC739DA1922337494EC78171E3B422866138C5964FB7514C34B9BA78C3E238FD2FFDFDE79874759657FFC3BBD646632994C7A01124A48082194109080D2150404042C14CBEAAA587077ADBBBABA826B57102B82B00A48D31510842010405A2091165A422009E965D22799F27BEE1D3229A4CC40767F3BCEB9CFC31F64EEFBBEF77ECEE4FBDE9C7BCEB9DE4AE855D2361FCBC2B8AF96D5A0C4500DAFFA0278D7E5C164AA4769553D98E8B32066AD4202B15C8962893F2A255A786A5408D0CADB15EDBCB25A949596C2B7F68AFDD9F54229AA852A54893D11E4EB05AD87C491E871FEE2C92BAD41655909BC4C8590F0D2A6B65629D2A0D623005DFD34908AED074CF2CFCE67E6C2B3361712763C582BAD9E9D1A2E54A256A28140AE81BF56CED3C83B3B7C9A04BAA36FBDED7312E8F638996A60CEDA03D3E185B0E4273B46947A351290282119F81788E35EE43FAB335B7170E90BF0339CB295D874B05D89B80FEA4193D12F4405590BC13199ADC828A8C4F9F42C18D20EA07BE15E04D4654165A96876F71AA102E9CABEC854F482266A38A68CECDFE6D37F39958FA28C53C0A523E85A9386D09AF3FCF4F096AD4AA842A6220279F2AE30870CC49851B7C0DBD3A3CDFBAE4ABA0C8F946F106DD867EF532354C220D1A350160CF49D8C4923A2F98ABFA3565A69C4D65D87E075612B826B2F4261A9B65F522809C0C9C049881E320203BA6979E53BD6D8BB65C7D2D711547A1C326BEB61A546811CE5622D0CF24094EAA2A1098F41CFB01084F9A9788A7967351268C748924077C4C96AE6F53B4C47DEB41D9FF51F8C80E86828AEF4B940E10D51C47D1047CD83C03B920F3DCF6084E4E33110189D731D6DF2BA1FE74326E391E18108F751345BCD5DB86AC06F4989D067EF4158D549A8CCED6FF2D60AE4C8D4F483E8AE45181C76EDD4962660734B6B70F8EB7FA24BED3904D56640CC0AF577D0D8AA334F1A8A8C417FC290C1B1F0F7644767356F6C85FFF9F65398716201D4E6EB2B2AB2B322777A4EC1A8079E819F57DB22DF70D7E2A2221CFEFA6D0C2EDFD5E2741C7698B70807D4637038F47E4C1E188CF8300DBFACB0A20E82256321ACED78239C15912A11FBE0AA220CF921A33164D46884FAA83B42E1F0E724D08EA12281768093B5B694AFA0CDA757C29CFEC38D257338F09CDF4B17A1361CA2B89720EA320602A5AF7D5A978A6AA0F97C9CD302BDD1EB7EFCAABD1DB3E2FC30BAB797DDD551536F41C6A144089396426FBCCA8BE13BD2D89FF04B23BFC0D8984024F4D4DAFDD317F3CA71E8781AC61C7E1A925656CC1DDD3B4D198B63114F60FAAD7D10A86DEE42C929356243E231CC38FD17C82CAD1F1E512AF2C6D6B88F317B4418BC942D4E9469F27096CC62C8BA00C3F2475A157B765CD651D52DD8E03517A3FA06E2DEC17EFCEA1BE1CF84BA48E2879CB8673068F8ADD028DA1E57477C9A7E4E02ED182D1268C738D9925A6A8AF83FD389CF613EBD0230B7EEC773F496BFB77E028907C403FFCCB30979981D3F84B5B1B5148862B10F1235139121EBD92E0A83480B9354831903FD3026D226D0C51546ECDAB50FFD2E7E05EFF2F3CD56917BD4E391EC3194FB724D1041CC4E3C178830B16C3D226A4FA15628C7AB418BE1A5D5E0EE81BE18D855836DC7B3E199BC0CFE4547A133E6DAC7735AD10FEC7E9542352FEBDA508E55663522ACF63CA694ADB6F735438412890F4E77BB0FA3A7CD8246D1180A995D5A8B4D89C7703717689B7B81CD3B47DA0509153BF9FF59E1A3D7821743E71F88BF4DECDAA6CF9DFDD2AEFD2111779E64AE232B7E55DDC67DCA31D547B82BA641A0D77BCDC56DD101981DEFDFAA40B7E42FB318799D0FEFFA224C2B5D05B5A571A57D41D51FFB42E6213CA217EE8ABDF9B20424D08EFDF693403BC6A9792F530D2C3907507FE0A5FF5A7DE91B19E67FF31A61403C24C31642E837B0CD14F596029D2F0904735F9C91F7ED70A8CC8FFADCF850F4F453C26CB62231E512EAF6AFC42D255B9A89F3173ECFE2A22C02CCB7CB1ADB57948A84A8B758A1AC37A0A7F10C2697ADC622FFB721947BE0AE583D8234429CDDBB0D83339743632AB18FA54E20E52F90ED9E77D9CF6254B033A57855552B826AD331B5601982EB9A9F1C5F2CF5C78E5BBEC41F4704DA45B635813EA388C125594F4C285B6F7FE62B811FC1ACF6C5A3C383B8CFBDB57631BF0A9BBFDF8CB957DFE61F3386CCE73EA2FC67EE5B7654A09BF2679B89CCBDCF8ECE62FB03D1352978A8E843FBE3D94A7AA9DF8BB8AAE983CF67F7EAD05E1D752081EE8890ED731268C738B5DA8B1519321D5E04135F4DDB0E0875AF2600441288639FE22B6781EC7A9F6E531E6D09F4798F180C0BF744400BB740D36BBBFB2810EEABE41B55ECC081CFD6ECC4942B1F40672EB2773309C4F86BE0125489D43C9A22CC478101A16AF86924A8309A7128C380ABA5B5A8AFAD42B54506854C8229B17AD4D75643B3E72D44571EB66F5E32713EE431025BB577A346A4844A2A420F3F056EEFE3CD43EC58D8DD85DC4A9C3B9284D1856B115A77C93E0EF67278ABC797B86B803F6E8BF0E23F6F4BA0D3E47D31D1B0DEBEAADEE639153BB49331384C87C76E0B6A35A263E5AE73084E5E82D8AA5FED02ED61A9C0AD3721D07D823C302AC20B4595F53C9C30EBEC09DC9BF697662FBF75BA0770C0E356AC7A38FAA6A33A48A01D530A1268C738B5D9CB5A990373DAB7305FDEC153C6D941B53CB5FAF7DC58BD105D044F4117068F80B8EF23FC40828E5A7B02FDCCA860C4863AB609F5536A1EAAF72EC7C8E20D4D56BB32EC578FC216ED0C683C9898DBC4B4A79FA2D9B0982F78EB89627E502C2B783F2E4A07D1A58350EE5F0C7DDD55DE97B91AD8EA7699FE2928140A84EAE4981AAB474F7F8F66F1D4CCDD71E862092EEF5A8DA1F91BEC1B94B54205FE11F43EC24303F05042203FE5A42D81FE453D01B71B3622CC6873D3303FF412FF9720D387E0A9512108D2367713B150BDE5EB133137E79F3C72833DEBDFDA7BA033156278C5CE1B5E410F09D360F6107F782A6CA7FFD4E45F42D6E78F416F2AB0F3DBAF1A8DEFBDEEC59B3322E1EFD976986247DF037EFF9A1AAC5A95823F3E7694775FBD7A14A64FEB0589A4737CDC8E8CC115FA904077A2952CC5A7613EBB9657C863F530D80AFB77D54452B05A1BAC0E8864E45208A48E096A0383CE12E867971DC0F3597F6AB69197A28CC78F5E335129F7C313B705A37F68EBEE8186B1B07866A3C9761C57F5B67721485E6B375595508D0FFDFF863C712017F0FBE3FDDB4C74A93359F06372367CF6BD8DA88A43EC5447D40964F8D26701323CA23131468FA9B13EC829BBDE07CD5E02ABF44F20BE722FC618FE0D0F8B2DBAE5B06A3836783F88F89E7AFC2121D03E2E16FBFCD1D6B318F9DB2BE85297CE7F7E5C19CF5F4A432B7F41424562A7097459411E5296BF8A986A9B80B296AA8CC35ADD83981C1F8E097DBD6FEAAB4D02ED183E1268C73839D58B9D7BC80A2F99CEFC0B5656AC88152A72F126F0898128E4560883D9BF040824ED0B606BD36D4FA01F1A16803E81CDC3CB989B4229634761358FBFFDE0D335989BFB8EFD116CC5FB8DF7A348560E45989F075E696783ADE5B8AE9619B940EBD236DA3FCA90F5C227BE7F419D508E3BFA78DBA320DA32E1EED3F928DFB302830A37436EA9814920C166ED0CECD38C45422F3DEE89F3454955FD759B844CA057FA3C8900731EA6172D47B031833FC220F2C23BFE6FA0778F103C39B2B1A6C9A5A26AACDBB20F0F5DFA2B77C5B0D573A27A029234E331CEF0038675A24057E667E1DCB23FA39BF1827DDA49EAB1F8413B0B63FB0674C8A4A3AF3B097447846C9F93403BC6C9F95EA66A58F28EF2D29E96AB0760C9DE0FABB1D4F9FBFC3F5F2150FA4018780B449173210ABDEDA66A6BB414E832910E3F7B4EC119652C220294D0B5082D1388C4080BF641BFAE5ECD328D535614000018B149444154E27E78F7650C2FDF6627C3922B56EA1FC329457FCC1FC9E27E3D1DA6969653C105BADB95CDF66B0EA846F28D37AB58863BFB7A63DA80C650C1D66E7CEC5219D2776F40FC956FA0B294DBE29055A3B0D96B167A87EA704F9C1F3F65A66514071768DFA721170B3035FF0B44571E811066B0B8EAF55EF36089BA1D4F8DE96A7FE47707B3E0F9EB12C41912F9CF7224A1D8A09B831C59379B4097778E8B83B96E8A2F9F43EDD70F43696974D7ADD13D8C43AA044C1BE08F293719C94102EDD8579404DA314E37DECB6C84B5221B564306ACA61AA09E09F76198D3BE81B5AE79B6DB8D3FA4F3AE64BE65E657E6E54CE53AB0D03996B2CD6A3D4374737EC79602CD36F58AC5BE2817B15864C1751B4F15224F9CF31D8DA8F8040CEEEEC5A331583BB8682E7AD59EB44F3A57128CF5BAB9B828EB85A5F745D8FDA88E50399651C2053A2A7FBBBDFB6A2E44C3E1AD9261D6205F0C096F5FF02F1454E3D09EBDB8E5EC07D09A8AF849E1A714B158A97F027EDE6ADC3FD81F5AA5A855815EE5FB34A2BAE8A02E3A8D11E73FE469DBEC2F824BB21ED81FFE38C60E1F80C86B7F59FCB8760D62CE7DC1639FD9EA394935063B3577422E93624CE9460C2EDD71C32E0E1631323652875A9305E72FE5A14FD60674496FF4F15F968563ADEE21E44842F0F74961E8EEDBDCB7EF08EBA67D48A01D234602ED18A7CEEBC5E2A98D06580D9760C93F064BD62E5872F6DB4F37E9BC07397727A1771F08BB8E85387236A0F4B3F997859DBB61E36CA2044FDCD04E87A8CF38CC880B828FDA369E33AF4F84BFC9B6A1C7DA39791FB0641626D45FCEE905A5B49D52AC2DB01CB958CC05BA6FE1CFF64F3EF57D1E698A6874F5566076BC1F7AF9B75FEC29D760C44F49BF21E1B7D7A0AFCBE5029B268FC6329F67E0A154F2CDB7602F699B023D2E360825A5E5884A7E13BDAA52F969E02C1264B7D714486F9983E9037CF90A3CFBCBC7A1CA39C237130BC57EDCCF9D270902D34AB6613AA0D8B9303BF617CC2ECD44B048120F99107E0A337415E98828DE037FE365EEAE6968EB74F370C86338EA0552AC7CB0F74D178A228176ECF79304DA314EFF815E565B46A2B90E96A2933067ED8535FF082C45A7612DCFFC0F3CAFC52DD90100BEFD210A1D0551F72910A8436C2BE4FF6079506705BA214E57DA7D08EE8BF747E0B588868BAF8D6D165EC7123E98406749BBE18B3911372DD05FEBE723C5231E11FE4ACC19128010DDF5A9DB4D695E2EAEC59EA443B8E5D45BD0D5E7F31574B2C72D60A22653D8043A54276B53A06FEF1F0C9D4288EC7D9B303A7BD9B5CD4F014E7A0CC2B1FE2FE39E41BEA8349AA15AF3006425369FF0554908DEF37F0D66910C7E0A2B4614AE775AA0D98B84F9CB994B8635E6E967BE6D96D8C35E020D8D25F92CD7CFC709C54048C5222C9F1771D3DF4F1268C71092403BC6E9BFDACB929D0473DE11A0240D968254582AB23AE5F942EF4808BC7A40DCE76108030677CA3D9DB9494B812E11EBF1A3E74C1CF318C2DD1B2D4BF188AC661E151115AAC37D83FDECA15D4717DD8BF0DAB3F647174802C0B2E6CECB23F1F99CDE4E097472BA6D05DDA7A07105CDA222767A4E4254A00AF386FA77185296965B8594DD3F63C8C54FE0692AE1598B873D12B0D16B36E44A0FDC1FEFD7A1402774F7C4F25FCEE3FE944721BF56F8E8A4A23FD687FE19B3E2FC915F548ABE7B16C0BBC656092F4BDA15EFF8FF036291087E4A0B12F29D17E8B66CC75E306C0ECC05C53228F7AAC6E1B07A38CC120FF8AA25786B5AB833666FB52F09B4630849A01DE344BD3A81409B511CCA18EED36C88C16DF9A861DD3D798C7443C9CBED6F3D83B8AAA4C6151E8458A17F12BF29073ABD823E9D5DCE053A3C6B8BFD7E29CAC158E3FD07E8759EB82FDE0FD141ED47AC24A515A264CF2A0CCAFF9EC7263337C05AEF87705439147E1A195F41EB55E27657D07744EB702ABB02A1DFDC09519D2DDCEEA2AC37BED1FF1152AD2F220DBF6254EE2AEE7FB66D428EC446DD3C0CECA286B7CC0C6DCAD74EAFA0596A3AF3F3570B9B47CFE48B0371411E89C3AA04B0841DC63D4023C59CA1FEFCA5D51965B049A01DFB852281768C13F5EA04029D1507FDF5E20F31A96855B311FDDBEB1EEC538DC6C773FB3AB58266892B55DBDE85FE6C63981D8B8EF8C0FF555EE3994560C475B355836BADD59BADD872F40A3CF7BD87E8CA8360AB7EA350CE57B7F9E2009EE4C256D09E8AB63709998B8309342B075AFCDE4428ABF3F8A3988FF827ED349C500EC2F4929588AD3EC4EFCFE2AC3FF17D0E59CA081E8FAC1699519FF485D302CD7CFC3F6A67F2BA254D1BAB3362821816A188676E0678CA3073A02F58B6617B35B99DF98A90403B468B04DA314ED4AB1308749640BFFDAF5D9891B1101A73E3B164D9D2AED8EC390393A6DC81E890B605B5E534AAEBCC28D9BE14D263DF72DF2B6B4C0057E8E7E38A672C26F5F7E31989AD3596EE7D2EB71267F6ED40F485E57C839035B6C1F762D0A75CE00677D370F70C7B4E6B61762C8AA341A059ADEB759F2DC6C8ABABB86B87B919CEC9A2902E8F405CD53EF8D6DBEE9FAA1CC4135C82F52A5E08E972BE01757B9D17E8A6B538FC3552BE19DAB4DE365B392BA54244F87BA0A7BF1252AA07DD09BF05CEDD8204DA395ED4FB26087496406F3C9809E9C12F704B5963681C1BD679791476F57E112F4CEEDDE64AAFCA68464A463182F54A74F5B1B92E4EEFDE02D9FE8FA1ABB7657EB2CD33B6E1B8CEFB21C4F48FC1CCC18DD97C4DA75F60A8C5FE7D071172F22B84D5A4D937D65826E28BC19FF00DB53B63BC79F5B7B652BD5B0AF4A24DA770D7E917E057DF18A5D2F4994CB417F9BF89324530CF729C31D0173B4FE4DEB440B74CF5BE09333B7429ADA01DC244892A8E61A25E9D41A0B3043AB7AC16ABD76DC1AC9C0FA1B0366669B24DADCFFC5F44BFB8384C1A1074DD908FA697E0646631B417B6C210311953E242789D8CCD072F40BF67217AD69CB48B2CF323335FB479E8C3B863D8F5C58158AAF885F3E9C8FFE96344180E354B3B672E8355FAC7D14527E7197751811E0E0BF496947C54EEFD0A634B1A63909B4E8455EAFBD4F72F50AB5578747820BFF78EDFDC53A0338FE663D93BC770BE85A5C57231A6BE3416D33B0A363118B0F5BB935899D85856F5AD1563D0CDA3A3F0520B3233B3F0F1375578F0A9484436F983EDC4D73BF0C64FED1FF220556AF1E8BB4391A0EFF8B78A56D01D33A21E9D44A02D813EA78CC1A8DE5E3CD2A1B5D6C3578960AFC6CFEACD16FC78E02C5447BEC2A0F2DDCD2E2994F8E357DD9DC80A198750AD185DFCD4FC6CC122430DB4977F41CFC2DDD0D417E3C3AEEFA247908EFB70F34BAB91BBF73BC45D5D0B0F73E3692F2C4331D96F32F2226620CC4F8D10BD12ACF6467E791D2E6415C133F7286EBDB4D45E898E0DA45CA8C552BF1790270DC6A0AE1A5E729495F2747405CDAAC9BDBF26090BB25FE0FEE6966DA5F71338E63118C13A055E9FD48DDFDBDD04BAB622137F1F73085B4B8DC8BC508696E7F3088402F41BD70B1FAD1CD7AA08D657D7E3B34736E29B320D6E9DD20BD3FAAA80736731FBA533903C380EA75E0B6BF71BBFEBF5B57866A710C1B70FC2BAE7BA41CDEB4B55E3E7D7F7E0B92F2EE2C4D5B6AB5AF67E7C0C563DE08F6ED13A783B90F74502DD49E243B7E998404B8166E15C6C43CD2C10F3129E2C9BB0B596E47337EAFB4EC1A47EBE50CB6D31BBC67A334E5FCAC7956DCB30BCF8876697311F729D5006E632158984B058ACBC3CA8D86CE42B5D9685F7B7A025B04A143C957B528C378A0C5558BB331513CFBDC12BC33534B6923689E4FC3E7C83CC6A85D90A98CC16882CF5CD4E47F9513B0BC714F13048BD111BCAC439080AA92DFBD1518166BFDABB4EE5A3F097551857B4A6D9BCD88A9E654C560A35E8E1ABC0AB93BAF1CFDD45A073362562F8B399C0E0FED8BC24026D2D40CB3727A2D76397A18E0EC193AF24E01F931BF6102AB072E646BC711C48393C03D55621942A295432216032A1C4500293C40BBE9AD657D0A3466D42E433133162D3A778F9B81E9B0FDD839E0A9B7D4F9CB022506F84556C81E16432E21EBE82E7BF9C8A075A943A97A8E4F052767CE66483E149A03BD615EAD149049C4D546978ECBFB5B3B0DF6B02660F0D44420FADDDBFCCDC0CE947F7C2B8F34304D465F38DB58E1AF32FB3C35E5F095A0CAB588A89D1DEFC54159B881AF1C996542CB8381F42ABE5BAB3FEDABA377BD1B01AD41FFB3C8FABD250BEB1F6CEF4EED02A6DA53B9D1168D6979D5FF8EEAA1D987FF535FBC625FBF932FD029C50C64220102236448567C7DA4ABCFEFE05DA8AEC1FF662FC82B3F826F501845D48C6B0B864844FEE8EEFBF9F709D592CC63AFCF4EA5ADCB94E8A67FE391A1FCCD0C354978337E276E0ADB42ACCDF361FEF8CECE89BD2F8B9C564C191CF7E42D9E4788C0E16E2ADC1FFC206930F528EDF7BFD4D2C16AC7EE4337C103E09475F6C2C74E5F8D39AF72481BE5172749DD304CA6BCC28FB6832A435C54E5DBB597B37F669C66174A4370F7B6B7ABAF4E18BC5D8FEEB694415EC44644D2ABC4D05FCF8A7968DC5FC321165A16F7BD5E378CC345B8D4FE9E783F17D74F6EE39A57558F7CDB74830FC0CBDB980C735B7753E215BA99789BD705A1E8B7DEA512812FB412814A2979F122F4FE8D26C082C9C6F7DE2714C3DF322AF1BCD5E14279503F0ADCFE3B8E35A985D43040573A3ACDD710C61BF7DCAE7C41ACBF8FBC8EF65644AC3E12113E381A10118126E737E269ECC43D5DE151850B40D4A4B252FB67444351CDF6BEF6D76E415CB78947E3E11B25ADBA9312C4D7C83D71C9C9347E17F7A93D05C84AF9F388CF484A17879A60A079EFF166397D461FAFD43F1DDF23EAD88A419A95B93307041019E7D7B34DE9EEA8577EFDA8A85BFE461E43B7761E3230E387FF95D2DA82A29C3D6A5C9F83C558EA5EF0F4278F96F18187304C27E3D91727C7C8B675B50FADD76043F7A05DFA5FD111303AE7D6CB6C02410F08585B3E7A293403B2515D4F96609ECDEF26F54A6A7C068B2F0F3FD1C692715B1C890F7C29D7DF598D6DF87BB431A1A5B451F4C372035B304A82A45B7F4F5F0AACBBBEEDE9542159255C3F87D2C4229BAFA78204C2FE7279E34F56FB3FB7E989805182BE0517C0E3E85C7E063CCBE6E98EC7C42162F7D54958052B11E569104DD7C943CD36E5A7F5F7BDD90860B0D3526FC7CFC0A7A64AC4775561AEA8552B04CC1E3EA04DCD5DF0FE3A3BDED616C2C1EFA6C8E01670F24C23F63339F0BCBBADCAE998272890E51412A3C3D2A180A89ED4FE5333906649F3A0ED5A5DD4059362A042AFE0262E7298EE9E3C7E3B0596363C8FC6131AA2F9FE46E1F1666B75B339E8F7F780F2D2F0CA5B956B0DF11BBDC4C1FA7A2380C065CAC9221D0478E334947F0D7F18791332E120BFE36140F0EBEBE6893D564C2DE553BF0F02639DEFDC740C48A4BF1D81B69A88C08C7B697D80BCE011783C984D2A222ECDD968D9F4F8A30677E6F0C0913E3C86B6B11FF4619864D4A40D2C6986B08EA9092528CFC82526C7D7937569C1360C3868695BD18BD033CA0EEA9825A2E4647DB8F2D999240DFCCB78CAEBD2102EB930B70B1A006D5751DBB241A1EE02113F1F303D999846DB8AAB9006D3856809CB23AF004943A33F76BB3F70013248D5CCC8FD50AD6CA30A99F1E7A55DBBF2E6C157BEA6A150E6794E37C7E0DAFE7CC0AE637D4A66E78B7B07BB0534FFC3D259810AD6FE6D6680D0EDB045CB8F5326AEA6D1B80BE6A29A6F6F741DF60765A4BF3F55546610D561FC9479EA1CEFE6C768C1713D286BA244D9F919C59819D674A70B9C476282D2B1AC542F1D8BF86C69EBFEA601E77E7B0D86C9140C0398C89D421AE9BBA5959D71B32AE83173925D04DEE19ABFB0CE7BC7DF1F5F6A998D146C679EDD56CBCFEC42F502E988CA7038AF1C6B349C8888BC3070B2210AC6A5F9C57AC3803639D19A8ADC585D3B9C8D20461648F86DDBC1AEC5B7C04EB2F8BF0E8EA795832C9F672284DCFC2276FFD8AF7D6E4A3B44A8D898F7641A3734389BBEFEE8191236FEC8003126807BF50D4ADF30830F1CB35D4A1B6DE71816685FB59324553F7466B232AAF35A1A0BC9E0B50598D893F83EDEDB14367BD144CA09998B28D21C72ADE95569B905E5083C2CA3AB0ACC1B26A5B0815BB1FBB878F5A8A102F19BC55920EC7D630DEA399155C1C1B049AA5B9B7362FC689CD23AFDCF66CF67208F751B4591B84ADBCAF14D772816652CF04BA9B5ECEC7D6B4B128942CF602339AF93D994077F196F339FDB7DA0D09B4211F5E5DB761ECA2F1F8F2317FB49E8E54839DAF6EC1A2CD22AC39743B2EAC3C84057F3D813F7C31110F4C0E477B8113977F4945DFC9FB515E757DF44C532E72B516EFFE3A174F44D97E5A9C568C038B93307F7536AC4313B06F5B3F3456F1BE39A224D037C78FAEFE1F26C0048B7DC18542F095A1B3FEBFD6A656516BE22B72994808D97F51D0FE8731DFD0D09C17E85A1C782F11E376E890B271287AB45A1EA51A89FFDC83173ECE44FFE7A660C9340196FC3511AFAC2CC1EAEF2762CAE4F68A3C95E1C0A622641973F1E97DA938DBB52B9E59D4B399D0161F48C5735FE643A80CC7A6EC0918DBA40AED63776DC18AD47A7CB4711C1EEDDF7E795A678091403B438BFA120122D029049C13E85A1CF8F4573CF7561A5EFBE17E8CEED7CA010AC55998F77436C63D158A6E56118223FD21CFBC84BF3FB9054B932C58F6FD44CC991CDEC2075C8375EBCE23C5A0C5FCFB03A03119316DFA16F49C702B1E1CA142AF18359A9691DAF2CC7798F9691E4483E2717CFF6074BF462273572AE6BE9F8B898F0FC01FC7FB40DD8929F124D09DF275A39B100122E00C016704BAE4502A1E7AEA30361FD7A3A86812B4DAA62E9B726CFEFB212CFC3C03FF5C3309838707E25A68322A2F6661D19FB7E3CD1FABE1A9EB820FF68EC6EC28158475F5D8F5F6F798F79901C366F5C2CBAF0E45A44A8C948F3662E4F1EEC8FE32069EADE44CAD9EB71A0FAF2E8464E4309CDA3E00216CC2E585F8ECF9BD7875BF0ACB360DC7841E4A34388AAA2F5FC5C7EBD3A18B8FC1C3C31CAF0FD3942309B433DF2AEA4B048840A7107058A0AD65F8EED9BD78FEA34C5CEE1B8D82DD09D0AAD8FE81199BB79CC6CC59FB20888FC486C5F19814D3BC6C2A5087D4F5C9F8D39F92B13BC7DA2CB2472291A2CFA8287CB86A3886EB01EBB163E83FF32866AE7F002FC4B69ED1BAE681D578E8DB424015802F5367E0BE50C0907A16CF3E9B84157B6A9A1C710088C44208BBFAE1C94523F1DE7447C3FAAE474B02DD295F37BA09112002CE107058A07372B070E111ACDCD5582FA3E1393D8786E295F76F439C57FB4F4EFFE9285E7AF70C52726CFDD46A298E25DFD3ECA2D3AB77E3A98FAE60F1CE7B10A5697D2B3177F31E4C78F90A4CFDC2B0F0E918DC3940CD725A7174E551BCB6341DE70DB65BCA3CA458B8F51E4C6A888376064C8BBE24D037018F2E250244E0C60830815EBD3A150B9E3DC66FF0D557233165720F4824CE460ADFD8F35DE52A126857B1148D9308FC8E08D4D6D6E2C08173F8FE87743EAB39B363111B1B4C024D2BE8DFD1B79CA642045C9480D168446E6E2ECACA6C872E04070743ABD5422C6EAC5FE2A253EBD461D30ABA5371D2CD880011708480D96C465555159850B3A652A92097CB21682B4DD4919BFE0EFB9040FF0E8D4A532202AE40C062B180FD634D24129138B76234126857F826D318890011704B0224D06E69769A34112002AE408004DA15AC4463240244C02D099040BBA5D969D2448008B80201126857B0128D91081001B7244002ED9666A749130122E00A0448A05DC14A3446224004DC920009B45B9A9D264D0488802B10208176052BD118890011704B0224D06E69769A34112002AE40E07F5EA05D01228D9108100122E02A04042515750DA7D2BBCA98699C4480081001B7204002ED1666A649120122E08A0448A05DD16A3466224004DC820009B45B989926490488802B1220817645ABD198890011700B0224D06E61669A24112002AE488004DA15AD4663260244C02D089040BB85996992448008B82201126857B41A8D99081001B7204002ED1666A649120122E08A0448A05DD16A3466224004DC820009B45B989926490488802B1220817645ABD198890011700B0224D06E61669A24112002AE488004DA15AD4663260244C02D089040BB85996992448008B82201126857B41A8D99081001B7204002ED1666A649120122E08A0448A05DD16A3466224004DC820009B45B989926490488802B1220817645ABD198890011700B0224D06E61669A24112002AE488004DA15AD4663260244C02D0808DC6296344922400488800B1220817641A3D190890011700F0224D0EE61679A251120022E488004DA058D4643260244C03D089040BB879D6996448008B82001126817341A0D99081001F7204002ED1E76A659120122E0820448A05DD0683464224004DC830009B47BD89966490488800B1220817641A3D190890011700F0224D0EE61679A251120022E488004DA058D4643260244C03D089040BB879D6996448008B82001126817341A0D99081001F7204002ED1E76A659120122E0820448A05DD0683464224004DC830009B47BD89966490488800B1220817641A3D190890011700F0224D0EE61679A251120022E488004DA058D4643260244C03D089040BB879D6996448008B82001126817341A0D99081001F7204002ED1E76A659120122E0820448A05DD0683464224004DC830009B47BD89966490488800B1220817641A3D190890011700F0224D0EE61679A251120022E488004DA058D4643260244C03D08FC1F8024C458BED69FBE0000000049454E44AE426082, 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1), - (3, 'DMaaP Bus Ctrl', 'images/cache/portal944583064_80711.png', NULL, NULL, 'http://portal.api.simpledemo.openecomp.org:8989/ECOMPDBCAPP/dbc#/dmaap', NULL, 'http://portal.api.simpledemo.openecomp.org:8989/ECOMPDBCAPP/api', '', '', NULL, 'okYTaDrhzibcbGVq5mjkVQ==', 'N', 'Y', 0x89504E470D0A1A0A0000000D49484452000001680000012C0806000000EE2C29AF0000200049444154785EECBD09985D577525BCEEF8A69A354BA5C91A6DCB039EC0536C636C631308B6434248483A2140C3FF058281907446487F49FA4F87A4D3FDFD9D4E826D861092302401023433D880C1C8181B5BB6065BF358D39BEFFC7F6B9F73DF7B552E59922D4B25F994292455BDF7EEBDFB9EBBCE3E6BAFBD8E05F3652260226022602230272360CDC9B3322765226022602260220003D06610980898089808CCD10818809EA337C69C96898089808980016833064C044C044C04E668040C40CFD11B634ECB44C044C044C000B4190326022602260273340206A0E7E88D31A76522602260226000DA8C01130113011381391A0103D073F4C698D332113011301130006DC6808980898089C01C8D8001E8397A63CC6999089808980818803663C044C044C044608E46C000F41CBD31E6B44C044C044C040C409B3160226022602230472360007A8EDE18735A26022602260206A0CD1830113011301198A31130003D476F8C392D13011301130103D0660C980898089808CCD10818809EA337C69C96898089808980016833064C044C044C04E668040C40CFD11B634ECB44C044C044C000B4190326022602260273340206A0E7E88D31A76522602260226000DA8C01130113011381391A0103D073F4C698D332113011301130006DC6808980898089C01C8D8001E8397A63CC6999089808980858E3D53033613011301130113011987B1130003DF7EE8939231301130113018980016833104C044C044C04E668040C40CFD11B634ECB44C044C044C000B4190326022602260273340206A0E7E88D31A76522602260226000DA8C01130113011381391A0103D073F4C698D332113011301130006DC6808980898089C01C8D8001E8397A63CC6999089808980818803663C044C044C044608E46C000F41CBD31E6B44C044C044C040C409B31602260226022304723F08203F46C7679C69D698E8E06735A26022602732A022F304067C8019A7F2A60B6D0FDE99C8A853919130113011381E71981939B7E9E5280E695139C0D403FCF3160DE6E22602230472370460134F3E5677E9DDC4B98A3F7C99C968980898089C0F38CC00B9C413FCFB3336F371130113011781147E03400B4C99F5FC4E3CD5CBA89C0191281B9B11BE0A90768B96E03D267C82835A76922F0E28C40F6620268CB40F28B73949BAB361138F322309772C8E79541675906DBB6C13FF32FFEDDB28E35FB1CEBF767DE4D35676C226022F0E28980C23E0B699A8A74F89890F71C43F39C019A20CC9323400B6991A60A98F9DD03D8DDF3228813980D383FC77B65DE662260223047229027A7291352A21AF15070EFE4D2B7CF19A009CC6AF650279703B482DFD94E32FF9901E93932C6CC69980898083CC708CC640ABA007D7221FA3903742FA5E108CDA1C05A65CF33698E6E0F61061B982304FC73BC37E66D260226026773048E73919F53B94C543BB42E935536E3CDCA229C78D09E3340E733084FCE751C3921C7B68497C9B2A487C8D099B32C054C17E189DF22F30E13011381531D81E3C9217B315051BE19923483653B278DCA7DCE009D531B499208403373F63C1BBEEFC02615DD7B8A5D238E531D67733C130113011381138A400ECEC76293C9F0B204C76499A5B7284C104429D2EC2865B8133A0BF5E2E705D0E4A109D0CC9C799604E742C151E07CACAB7B0E276BDE62226022707A22D05B413A3D67700A8F7A9CB260B2BA560F4087618C56104368DC932486785E006D59E49E359D91A528F80E8A454F21BF01E85338A2CCA14C049E430472AE75B667558B81B324933431D5A065F39FCFE15067EC5B9E858FCE33E73C7C4118A31D241AA04FCE153F0F80EEDE5DC52CA7F03D1BC5A2AFE60E03D027E70E994F3111782122D0C9123358B311AEF210A7C8122AB42CC4AE7AA4DD0C7072CAB217BC7215ED0B71AEA7FB336705697DC11AE738810561827610E3644E612711A013F89E8352D157E134007DBA879539BE89C0B34740837467B56BA54A61C56F0BA2EBB5997A25C0F65D357CEB5B4FC1B3AAB8FEBA8D58B162FE741C32008D3639E8203969F4C6F3E4A06766D006A00D1E98089CB91160A52B013292AAB60268E682291005C0273FB305EFBEEB6E78CE5EFCEFBF79076E7DD54B857F7D517C1D67066D00FA45311ACC459A089C8E08B0E225902C009DB31EC4A6A0017CFC1F9EC45BFFF3DD70DD27F00F1F7F0F7EE6B557C116AEE345F06500FA457093CD259A08CCE90810A0BB3C05AB4A5112C3B71DD4AB363EF6D16D78E73B3F02CFDF820FDDFD9BB8F3CE2BE1BA5A4F3BA7AFEB249C9C01E8931044F31126022602271681692A0E0DCE92455389C0D2BF238A8D46CDC2DDF73C89BBDEFD2178DE93B8F79EF7E08EDB09D08A0A39EBBF0C409FF5B7D85CA089C0DC8A80566948355F78678D42CCA22DA5E54D325B8A84CD3A70CFBD5B71D7BB49713C897BEE7E37EEBCE365F00C4077C4105471180E7A6E0D7173362602676E04048FA938A072C3EBAAAEA4CB2C45AA6D1958371480FEF056BCEBDDF7C275B7E1DE7B7E1377DEF15203D05C3EF4C8EC0C409FB98F8339731381B915810E40338376956423F767B032C11D31D2D4007DF7BDDB70D7BB3F0AD7DB8A7BEF7907EEBCE30A03D006A0E7D6983667632270D644A0C3AB66E8B409F618E864560AC2B4953A68D40101E8BB3EA601FA370C40CB146632E8B3E6793017622230E722908334B3E719FB6964C24393E870D0A839B8FB1E02F4873540BFD3501C06A0E7DC7036276422707645E059009A4D2B29E8B363A3517771CF3D5BF1AEBBEE81EB6E371CB48C0293419F5D0F83B91A1381B91481993E1ABDD60C9AEA105A3A059A0D521C4FE25D77B148F814EEBD8719B4E1A00DC5713206F4CC81C8CF9CA96B9CE91B724C97AF9E133BAA13D8719CBCF12B398E209997BC6011E81DE733FD44739F8E146808406FC55DEFFA305C77871409EFB8D300B401E8933132F38196AF4A3440B3049263B5B879E91DBB84F7A70181640F3D6603F9609EE1153B9B739FF8CD74DCA2D41B7BEA2FDDAB3AD6C43033ABE98DC7D1DE7B3262663EE3C517817C5C53069D5F3DFF9202F50E407F04BE501C0AA04DA38A29123EFF07A5374BC84158EBF215885AA0C7ADD615A949D1A63E942223EE14334B1BD16CA0DF7BA63337363F5A47EC510198D2270DEBCFF29AEEAFB89998F93211781E1110699D1AD8D3C65206D49BC0DDF7308336003D3DBB3200FD3C469C7EEB6C00ADD35995E9EAECB607082931525F2A83561FF12CFBD870BF9B4ED94067E34703D65990F49973403E63A813158B84DE25A89CB75A03B0CECE6E2F395343993CFFF1F262FD0403D047BFF3B3663FA64878521E15B66012CA98633253EEF183E95048741DE8CD94050FF3CED769389F03772F62E6103E03F56705E83C3D79E61D9F9E30339BD1340B7AB6109BF1990AA0D5346232E893325C5EBC1F6200DA00F4E918FD046865FD2284C5F4ADB87AC5FAB24DBACA983B389883F43332D3DE1FE899545EAB53F2D932D9A321287F3E2D7BCFF96B82347FA101BAF7DC6739BC41E8D331BACEA2631A8036007D5A86F36C95EAFC447A0A7F5D0AA3BBA384805E0E8633FF9CF6DE9954B5B079BDE4883A62CEA7F40442B2F74E43BF2E4AF65414E5B03DEFE3D662E06E95C2CF9023D78779B198A79F9641F42238A8016803D0A76D981F8D9BEDCDA0E5E47AA41C9D9454BFA817A07BB3E1FCD7D35E96B766CD4E3E3CF3EDFAB8548D08E06AD09617EAACBE538F8865FF47290BA60EC0F7188EE3B40DADB3E6C006A00D409FB6C19C92FBD5FBAC698585CD7F0A0E927F4E15C889F3226D1601DBD2EA8EFCA4A7D3D45DD257A7B82A135629B7F0D739A0F7EECBAEEB8C9220CFCCECE5DF7C41A277B6D04A0E8B4636163247ED72A14A83096C4DDB58B48A7C71EDB37CDA86D1597D6003D006A04FDB004F12C07604E01201CF0C96453B72FE40FF2E2FCAF6EC766C67D4476876A2979EE8D54277EA7E1A7DE5DF1652991432D836996F9D2113956542C80B8AFAC3B5939824D016B363FD9DC480ED2900B608D04270E8A980AFE1B148A7E814FA682B85D3167873E033260206A00D409FB6C19A723B1F05652A0B4D75064A84B3655B79514348164DE08B90890F81D6174B01517FCBDFF979EA2782C33D19B1A21E7AF80E7E28DF231FAE05D8B2DB66AEB156993D3F8B1BB6F3AD6A2F8B0C8EECB24CB73166F80AA87B0B98EAEF8AEF96E31A803E6D43EC8C3FB0016803D0A76D1093C22010E774040763162393ACD4159015BD4496C1C92220AB73A31F006D206901D571A05D45D69E421AD491864D200D110401DAED362CC743A1D807CF2F20B31CA4B60DBF50865BA8005E1F5019012AF300AB04A000D845C02A00962B3B5708F4E7A9BAC66462B84C2942C5CCE8B0C90329C8DC63E46B00FAB40DB133FEC006A00D409F96412CAC020159F1CA206D8010B05AB2A7BC300E710A381EAC34861555911DDA8660F26934AA7B91B42790548FC00927E1C555B8710D56D4808308691C218E520179DB2DC3760B486D17B16D21737D646E1989D38FC81B028A0B51E85B8CF2F05294E62D833DB40828F6037085BA500D29CCAA3D642801B6FAB9602EA912D21E92FECF507A18803E2DC3EAAC3BA8016803D0A76550EBC21A59026E428CA80D641340BC1BD8FB30A243DB3171700F82564B40B0E0A448DB63B0E226AC24441A07401AC1CE22B8762C7F220BE5B52C3492A5CE32F5ADB6ABB7913233E72B2C0789E522818BD422781761792540BE8BB0DC22D2CC82653928F50DA330FF1C14575F0A6B681D8061C01D4442B0D7E4862D74C77480569488AE599A0CFAB40CB1B3E2A006A00D404B047AD50B470B49AF0EAD177404A97A7F7014DE550A815CFA335B8E81B4AD8E9486405A45F6F40FB07FF3BFC39A7C02C5E820BCAC0D57680FD5C1975A91D00B76EA0AF7613B547628B2599A4744FEA18F912A0ED8B655CBB5AA07AAA29D6A35D1AA8E8E1C4FFD4581BA3E4DF2197611756F2192FE7330B0EC62F4ADBD12F6A2F3152DE27852E414DE3AF5D516451A959F15A07BDB263BAA92D3DC127E3CF7FFD910AF776C280AFED85F33DF33F31DC7F319C73ACAD1C6ECB1DE37577E6F00DA00B43C4F3D98DAC5DA1E7320E913E9A28992C2A52A73E4DFDD148945E02520BA82BF165359FDC5CFB7F8C3AC2D3446D21E03A27158D1389ABB1FC5F8E6AFC26AEC411913F0E23A7C514DF0184AC6C663733709E17F7B1A41667F86BB3FED9CC14C638D4EBD70C6C4D239E3FC9D36E2CC43621511642504CE30D0BF1CA337BC06D9BC95C8EC7ED8CE206C6701807EA14084A04E2380123CBD3373F73C1292EABADCA8741E59AA447A9DA222FF762CF03AD9007234803E1E90D43D44F94B652DD1DB7DDF594A746BBA795DF6597381E339F6B1E2A0E766398593F179C73ADEC9FEBD016803D0128199B686F2C02692512ACD84CE30F583ACC05375CE4952CC8164A748B30C2E414AB473F9DBF88200C014D0DA87B8BE133BBFF6AF482777C34BA650B46AF0D30914D0829B05025A2981596926D40D22A7CB0940B77E9F4AFCE219C85C647948DD0A6AB18BC41B42CBAAA0810A06566EC2D20B6F80DBBF0A767939E0F621B3A8EEA03A45D32C147C508942CB5499011D0DDEBCB80056368EE6F8380A7DCBE01406A4787AEABE7ACD50665BFDE4DAEFEE34D299AAF58F72675899AB7B015A8FAD69D7D2A99F763D5066C34E35C63A53BCFECB31EEBC9C4F3791983DF13875917DDE4732006D00BA9BE6F6C4C2165241F3ACB62E84692097A439A713723959DE6D4730CB6039394F9088E2226B1D4430FE1360FB37D1D8FE6DD8E118B2AC0D87BC711AC263C69C92C2B084FF4DA98F2688698DB214E3F4A6F3A736BDE475A6FA9A4A22F293B927CEE0383E52F808AD12027F3E4ACB2E817DCE75185C7B155267212C3D51259603CBB2E0662C7E5243CD78325E9C84B8C7DC38D243DFC4130F3E881557FC22FA176E00B2C2F37EB68FFF0308949C4D7334CD5B206599D4930EF35F4EE72EF0D5AECE94D52A47BD5ADEDDEBE3DD638522BFCB3F56E8A91EC0EDC9B4F3A9409D53AE32E79812E796EEA9CEC4EF6983B92B959C0EF6C71F99D3FE4A03D006A02502BD990A9FA069CD17CA5A33A74E856ED04A5FE184C9118BC698853536DD25B01C66CC75209D02EABBD1DCFA3D4C3EF60DF88DDD280587E1644D647608C7EEB1EDE4136EB380A7926FF5C0B37390C748456E278FEB29CE2E65621000721126096CD791461A97D79B9282F111DA65D49D2154DD455870C92D18597E2930B802700690BA83C8AC226C293CF21A7875D47993AE9904C2A750FFFE87B07BEB4E8CDEFCDBE85F713960558E8FC73D6908A234E4BDC8A7A29D0F0CE54B9CCB0F7328E73C2C8D961AA0F39FF7D209BDD9758EC11DAFEFDEF3EF4D8EA725CA1D4497496DE66A4E8E792CFA829F77ACD79CB4589EC40F32006D007ADA73481A81A35D6465DD6425CF8C54B4940F9DD64AA8AE10AD9AB0A8A6B00264F1218C6DF9362216FC5A3B91EEFF09503F80421AC04F294D8B6039A15022E49485ABA5D2821F6F5BC2672BCE9B1A68B202161C7D9C4474D227F12138C6470935C1B2A69E38E0BA40C2A61AC04E980D3BC81C179165A3C53FDD2194E7AD4336BC014EDF6AF4ADBA0CF6BC35B0EC41C9402D66AB19635447BCFF87686DFF1A9C5DDFC4A1BA8385B77D0095555703565F4FE5F6D45DEBB484B427C6BDD8D69B8D76EAB29A91E990203D137E9E5977890735729E1530A7A7D0CF1E8019E779C666CBB35DA5016803D0D3005AEF5A022A253440B3CD593D2F04234DC84A2AA4A466D23EAD335D2BAB02D97EA4DBBE825DDFF957F8ADFD28A635B8590B8E15089D2180E75888D214B6EDC1E6B2995617B2DC6531901A66161CD5234D70667BB7C36C95D383CDD79CAA744875205A7A52484953C8FA9DEDE236B244FF8E3F77D8E7482EBE8438251D5241EA0DC35DB41EFDEBAF4761D54DC84A4B915A2E9CE829C43BBF8EB107FE0DCED8E3E84BC631E62D47E5A63FC0E0FA1B61D903B3EF1A732AB0BA17496745D119E0DA933DAB21931797A79FEC342FEF5E7278DACBF4C10565BB14459E434B5A30DBADD7207DCC533F15F13B99C730006D00BA3702043E79C03A0E6ECA87429E957C1D9BBBD1DBB949502ADA642BAB01B52771E447FF8664E737E0D576A39434859A1052449CF96358568C38CB90D81EB2D451D9B15EF28BF04300506D6FD599185295A9AA8EEDDCB8E8643E0947FB2C9E90CAF08592B032B84E8A3089E0BA1E126DF84468D6848C00BACD4E48A1631C847605F5E26A8CFCD4DBD1B7FA2A64CE20D0D88CC94FFE1E507D0A45AB05378A70D85F87CA2BFE00031B6E84650D9EDA0C3ACF4273243C4A36376D5995BF663680E6EF7A4178B615CF4CA09DF99A1EEE3A3F2D59B53CDBDCDC33779CB239FC851C8606A00D40E799F2B44C7A46583259E653B5A1A46F2C7425B9A366CA16EBDDC0D3DFC4BE07FE05D6C43694AD06ECB801C7621309690C458928DF8D0CA9954A262C3BAA10D0C8CF8A62449E6C9D49EBBFC943A7B7B992C2BF9E445EC80763E6676BBEA7D7275A65845D973C16FEAC8CCC34AF547269C49685B6E520F686D1761663D1DA97C1BFEC95C8767C13F56FDF2DADEBB69DC28D1C8C391B51B8FA7D18B9E856580EBB194F1D8F935909B83AB059D0E4FDCD9516D379095D33A41245194CB101A8F3D503F2B2189219AAA31FEC288504B7757D5084403A59EEBD5C594BE97B2D1277491C74443829F2F8DACB453E41CE83594477049D155487016803D0B302744FF6220542795182340A61BBF4ACA05A2384954C20AB6EC391CD9F446BC7D7B1C03E82A4761805CF13884AF453AA1263D5D4A1BC3698056B5D730ED03D4F7A9E31A9A49DB482CAD6659F3F520EA7109CF326184B8A949C48B407AA0083523F1098A55125531CB38550F1F4B687C0B6116516BCCC453B2D23282C821B1EC2A03D86C48AE4FD4EE22A80BEFCBD9877C9AB607903A710A0D584C92FC6378D09D4AA26907F4D93ABE5E8C97B4BCB554BBB0BF6D20C1DDB5835DFD29C50B4CFACAFEAE49A574EAC8DD30C419C2152A1006BB0451FF02C0BBE65490D829A1E5BCE510371AA29303D5108DD26DE5B8E80F7340AFB54B1612FC49834006D007A3A40ABD19C6A7E59B241A15C1545A1141419ECB8892C3D8C78CF37D1DAFCCF681FFC090A691D4E5045C9F3C0E7872C89EC3D486F0D293C4ABE2C5405C18E822DA56BEE7601AAA3AB5C290746D90750405AA563562AFA8917E27178C6671264A5455C1A6762C9F2D9C9A8247F9C6494BB1ED28200B4A28358280D65A591662E225239B051E015A740683BF06C764486D25199F7361E71D7C17BC93BB0F0F23B60B9F34E194033E6715E90950950CB3272BF6E0D78B91BABAC1BD258AD690888BD227A4D4CD1BF9B0D38BCBF9295734CD9409C01ED38463505C6C30C631301C626AB68870912BA17A629D22842D1B1B160A084C54315CCEFF33054F250F294B1161BA0946115A938AD8D1705109B84BA1B29E423E98C546FE423D100B401E8E9115060A948841E791D8B60DA4DDF628B767A08D1E11FE2F017FF174AD54750008D8A52F172A6B73D1DE104D709CECC7DA701B4A233486BA8AAA3025FC5542B70EE921D399DC1F352C5CA53BD558998A04ABD8A60CCD310A78FEE794B46E97535BAA2846131944D2A8E34B810C8AC28814D4F113746222A105FF854123F29228C796B605FF0562CBEF21760B98B4E99E1BF02689DBDCAED577CBA46437102E44F98B35202D9CB7E4C2BCAE981A422A3575D3DB6AFCD30432388B073DF118CB73354231B610A440927727AA3D848924C56694E1AC34DDB70E326868A36562F9D8F954BE661B0E2C361566D012EA933A92E13A8F9A7034BEC5F7B6893E391E09D92A9FE391EC400B401E867464067B4BD5A36495DF8D03681E62E4C3EF52DE0F003881FFB3A2AD938ACB8A5B857DBA5020D19B31979ACA5B543EFDCAD3868796167C711A5C8C8015A9D8B02E8BC2899738F926BCB80EDF1DD788EE3FE44DED6E532D5EA81D9B3809018307155A1EA61C2A1938316CE34113B52667919A90FD2383CA81323B002B8CC4A59204D5D59C20311C6DD554837FE3216FFD4AFC0F6969F528016193B270B1642396B6489A87312DB968CBF9559A847C04423C064B38D208CD10E4284698234A16C92D799AF8854799740CA9F0FF4F5A1BFD28F7A2BC364BD8D6ABB8924F590D945191D71D6FDE6AE3919C1360D91854DD8491B6E1AA060A79837D887A5831EE6155DAC5DB54C3A1609D2769AA86C5A3C6095FA28E7B5CF781EDA00B4016819D0B9FD4387FCCD531F6D564FB049ABC0D413987AF4B398FAC9575068EF43D969C2CA9AD225472546FE70B038269CA33499A8ADA0246396F2995A16E740A700BAD39BA8B2546647B274EE948614EDA197E2DAF0F34470F639BFB6AB06D00528C9E4D5B5E4C54BA53C513C6EA74BD04A64E2B133576822CA0B332745ECA4328959F014BF2AEE4C09C6DDD588D6BE1ECB5EFE26D8FEE829036875CFF2766E6E8B004496B86EE3709861E744887DB536F64F85D87B680A93B5967452369A2DA4490024216CAE08E82942CA8193561AC3B76D0C94CA58BB622516CDA75789A2CE12C792F7334E046432219CCA733E3A8E7906AC77B0059E5C59842C8984FA70DA531846885B6FBC124BE7F7C317BF704E109C0CBBBCF9340EFA39DFF939F04603D0672340AB7428DFA2C9F76C945875E9A416B3E4CCBD00DDDDBF496D30220F6F0356B21B47BE7D2FE2273E8B5278187ECAA57980D48EE1C2861D936F54C971C44671D9AD84459E443F447C6CB85CF61599215AE7196A2CBD66CE01580172FE2FD5C9964AEEA47642C9F7E9EE74973D2B73DB951928D3A5BC7D9C795CCE29F76A7873AA255FC8EB4944D335BC16163E5587A02201329BA55172A59ED26BD3FE34B5243EA480A894605C62ED33E2F06F59022BB530E1AE467BF59D18BDE9CDB00BCF17A0BB3E17B3DEF79E829E2A31B0E9DC1260E6B6083B6B199E3ADCC09387A7B0F5400D1341866662210862C47102DF76602531CA4E083763ABBE0D8F3FD3296B1886A8F83E36AC5E8DE14A1F5C5D4864744299EC596064076A8684BCB34C52ECFFE1E4A5C64510D082369398250933F50485A889426B0A0B060BB8FAF2F370CE9211194DA214E2BD3FA55DA6A700C00D409F4D009D679BB30074417173C7FD959073565E11B6D50092034269ECF9F2DFA134F5044A6953BC8B2C8F52B24896EA36B959ADBA5045279527BB6C48D10F1099576A83D51234910C0A0EB943E5E1616B92931C6326046D2696A25C6E13EFA3AC88A6330F89554606178968A35D291009DBAD8B8E4A12A85048C805FA7BF020722E293C8BD344282DE78EF0E74DB8EC80A42F88EB08172ABA6BC9F6734A859F19C31121AE8730027CB720120525AB535C3A8FD3ED76E4125CCB083B7C28BD46B43F751AC1E3694619AADE0AD4466FC5CADB7E037661B52A78CDA640385A7DB4F35A619575BBBECAF43B9D7B323494B6869C2DB96766CA4DFDBDA7057CF7F1713C79A889B15A1B8D30469AD2342B112AA1E83AA03EA7E23898D75F44190468FA8BB8C81C6E86E0238829D9B3B164E12294FC827480B2FD5F326864886442223833E32620D3A384F73895EF24890594E398C756935A9C2448E2146E1CC36B47B0E2492C1C7271E3951760D5E261B00CCB38AAF96146DC7ACC938E7BFCCF95171A803EBB00BA5B64EB66D005CF46F15800ADD78404383E10AE54E12358DCE1A4FA040EFFF0D3686CFF3AFA92FD285B7564ED260A968B88B69A8A5C150E56D1155DB749D5A6AD321C45517099AB335136AB10D11D1B51C425B10B97D926FD38D294FBAB20B63D447601895D826517D1B6FA515C721EE68F6E0046CF010AFD5ADE464AC556D4B6EA37D492380550CA984873C862BF17C26A4E00879E427C703BEA479E4250DB0F2B9A829DB4507448D91078D5E7C97F5C09C844C2B8B8B02C1F49C49F11FE94EE595D5F978051748D9EAAF466B779029EB2A59DC5309BAB8F145567192617DF80735E7317ECE2063D39F48CCFE359B78BA42D8623BB20705E52AB0E9963F4B9A45984C4F10494A752E0915DE3F8D6A34FE14800349C7E4C063642A70CC4212A9E8D65237D5836AF8CE1A28BB85187D56E226DD711D426618581806F68B9A84529A6DA3156AF3F17FD43F3D546E8A2BA21C02B8E5AC056AB3B7A417926400B48E7809D52E191228E62B9AD5990C28AAB72AF8A59153F75C946BCFCA5170BDDC1A9685A838C0ABD1E13479BD9E60A1ACF721E06A0CF4680EE367330933C1E80561A524AA10834AA31C44DEB40633B6A9B3F81E6639F45393E82349A82E593B2C8E046365CCB17F73966C32A7B541924E14D3D9E0AA0723F0BF51A252DA32DA92C67655DCCADAD288D56196C041B4D7B0075771E9AFE62F8F33662F1BA6B503CE722B5F38945837C1E830A097EEB4D60B52A443E2CAF14754823A34A00002000494441540C76045DB57529FFE4D3CE825404246D60F7E3683DFD100EEFF83ECAC95EB8D17EB8D9146C4765D4F9C4213ECF510436A977B6C6B2B9A1AD526A2B65C6F40E0CCDA8AB8C9EBCABDE252B11D0E72AC3C6A4B30463235763FD9DBF05A74080D6EDF69D21AA41771689A192EA89E3B6520A2BD18B845634197A2F45D5956FE14806EC6CA4F8F613753CFCF42134781BFCA2B4DFAB55428A918285754B4670CEC221787184A455C7E491436855A710050DB45B0D356946C0543B443306D69C7B0106E72D948C3A0C22386A69A4B2654EC8D4C6F70034A98B2E38278ACA2020CB9F9ADAD07F32A34E32F51D350305C8ED715CBE7E295E77C3A5A870A2A4ECAFB76C9163F3F14C6E7311A70D409F4D00DD49173407CD657AA600BA786C8A83851DF12BCE698170175ADB3E8FE6773E0ABFB10D1EDAB09D0C4116C0B11C78340A4AF5AED6C277D0E08820C5DC93DB4929EF0C5520E4B9A8A61372D6F29564F044CD4063530FA9D38FD0EE47569E8F963708ABB200834B37A0B2FC2260643DE02E533B9908F2901C2740EB4D67F543D9159E742996CE1DCE5DD7743E2590A63BD059C8445C079209C01E477AE0511C78F04B40382600EE8475B8CD03F0E21A3C87A01E8B4A416D6CCBFF245DEC00346D3855469D173FBBCA6D9EAA283FA4614F193139998D296B090EF45F8AF35FFFFB708AE709859343B2BA86670768A5D456F176D8CCC3AC35C99079B6AC46486554C304E35182CD3B436C7EFA30F63412A45E057EC67B91C2B5228CF417B06CE11046478AF0E3103EB3E4760B41A38EEAC4189AF52AC23840AD514323F4106605645E01A3E7ACC5BC45CB443647EA4AC4889AC650197417A0E59E3FE39BC0AC326702740ED2FC37C159BEB30861DA869D7A089B21BCA481D10117AFB97C032E5CBB021E8DACF2ACA043C36BAA6B36BA682E8272EF3919803600ADD15267974CB90291D3B59FFA1282FBFE37ECEA76B8686AEF62554194CC883CADF836E71A61F2BB0A48C8C14AC55EA456DD6786FF909FB17828E91D0B74ECB02B2028AF80B3F61518D9F40A60E1B9CA6A543220368114D59F9221E9274DD2C219BB8F74B2A71E43E2691967AEF1EED2BB9DB768EA0369A00A98B2CF21B3EB16DABB7F84E0C9FF80BDFF21F8B53D645211725A21FF2E9ECED2EBA63364D5F2AD56156A45D26956EFA17A72450A97E40AA017637FF1029CFFC60FC0295D304B067D0C349109422942B4D845365C08E1A09602DBAA6DDCBF7D1C8F1C6AA299FA88A8C3F61CD85180E515072B160C6264A0889297210DDB2830D4DC80B7D94250AFA3363181A98931C99C5B610B8D76805AE423B68BD8B8E922CC5FBC14F4BE166E5BA4774A8D436A430099F48BCEA067036882F36C00ADC05A017442450752B49A811868A59477B626704EC5C2CFDDF6726C58BD54267DAE02A857975DE33911CA84914F71731D957BCECF00F4D906D039B1A039E82C83EF39C7C8A03567AB3A4C806C12E9C1EFE3F057FF0EE5F187E1A753C8AC1009795B52C65A4541FD2A3341A5A72050254A4A27692C018BBFD7EE15F26395B14A6EA5413B421991BF10F6C24D70462F4765D3ADB02B2B905A7D52F093CF147C533C724F2239FB8D13B4ED95A1A8E3C997B2CCD3AA909CA3CD815A0149D7F321DFCD9B801701E924D0DA0AECDD8CFACE1F626AEBF750B227514CAAA2D3251DA18A83AA4583D23AD51A9E332DF9FD501398E2E155D62DAF4F5DD4ED8538E06FC4B96FFC6338A58B157573025F39F74F7A85B234B66B532DD2B06C6CDE5DC5D7B68C61673343D5ED83EBBB8883162A568CD1A10AD62F1E41BFC78922824B6960C2E27086248AD0AA4DA13E3181E6D4041AF51AEAF5061A61846A33402D2D6074CDB958BB7E232CD783E5F88822EECE4E0E878D248ABB57C53EAD8CD759B5CAA009BEDDE2A00269FDFABC6098243A838E90B291254911052D51E1844980A455433998C26DD75C865BAFBD14FD255FC68D32FC6241560D49F1EA3A8178CE89971A803E1B013A17A6292999E73B4A6677D4259ECABA74AF1890EDC2C47F7C00D1530FA01237E05A6DA47680CC2650A5F0AD02A2C446E47AA206201FED2080C36ABE5AB08376A5F9034130A2E42C11FA84CD19E4AD59FCF3D17016C15B7515E65F72079C91F3017708197CB123555CB820AB6A191657B9E969D0331EB89C83EEBC5715C9146EE77B70E99CB9E3C2A6E470041225B753D7A03C3734B79D514247C73E1AECEFC6E1CDFF84D2D35F8535FE14DC24E07A4056068970F8F4B026E8F233D849A84861DE0B7545AA755C7546F23FF2D60E1AF6021C70CEC1B96F783F9CC19702C2B2F65CEF3196E83C4E7E07782DCC1E9B29B0752AC2971F3D80C7C752A4853E0429150F6D94AC00A38365AC9C3F8CBE4251541AECE7938E50097E82286C636AEC201A136308EA554C4D55516F05A80529269A31FA17ADC0F997BC14954A9FD2348B5C8E8A8C043629A03896C613293E8B2CD312EF0D9541F7F2CD8AD2C8E574426B90EED03F4B34C52100CD5A61D814FD753B69234B0264B5299CBB74086FFBF95761F18221E934940C9AA7D303D07302744FE4240C409FAD00AD818D70E711A0D98ADCBD56B1CEEC6CEA9AF3A401AC7412E18EFF8B235FFE13F487FB4452A5409080422693E53FF28E0E6287452C668B7CA099E912E454E62CFF135055F447CA6FC716BE32B246E02DBA00FEC6EB101796C19DB70EA5E1756AD3554AF0C85713CC25FB16C19C9C3A416F6606DD29D0E7B9EA333C26150FDEC539DDC23C13F934F0CBB17596DD2D32EA394218951A90EC44F6C4A7D1FAFE8781E67E20A3319227C4322565A2E6934A200F42AA470134818F71A775A9D20BB3034E4D06DC68B769CDC7416B146B7FEEF7E12CB84E01742F85D30BD07A37734D7C0B00B2155F3AF16C20CC80C7F7D7F0E3BD63D8DDF6B0AF69A145AF9038440131CE5D310FFD568281B20FDFE504C68953A9CCA95156F4448276B38EC3FB77A139358E767D0A13D5266A4186F11630BA6E134657AF41B16F405903C8B5D168C9124A423A0285DE5059324F59D2006935CD74A63C2363268DA10B854269F480B4E2A129CBCB10B75AB0921461DC449AB491341B986735F09F6FBF11975F7E894837D93823345ADE88752A77793811107EB6D71A803E3B015A0192CA41A55145CBEC3AC0DC0348F25A51A05581C947B0EB0B7F8D81F1FB51880E4AE3093BDEF8D45B16F93FF2AA4AA5C15C4BD91FE5D92153521A067109CFA2A15249F8D2EE0C04968FC05B8823F152ACFB85DF86337011526F3E6015245B55196B3E19680E99B481A6283A4BD45ECFDFFCF60978E539F7CC32FE33BDEF95A97C1E040DDFD391BCBB1E569540E5078D23009EC4DE8FFD1E066B0FC1B2EAB26088536E28E0A0142B37B5406F3860D19655B26416E054F79C4C626902CFA1F704419A2B0E076D7B1E26EC6558F1EAF7C05E799BC445CD74EACA3A9351079C55D553E2ADFB6BF8BAB60D4C45093EF4E52DD81B17D02EF423755C64611B834E826503059CB77C21DCB0AD54376AFA53F7B2A75DDB4A63D4AB9338B467A70074D06AE2E0440D536D602C7471EB1DBF00BF5810DA41BD8D9FC3BFA8EC98F79ED749D0168066C76096211280D67AE71EA506B3E5344E10A7CC9C35E72C0D2ABA489824889248BCB8B33045166588C226D234441206F06BFBF1AB375F8E57DE76335CDF97E628A51E5269829A0CCFB02F03D0672F40AB6EC2E900AD1A3EF4409D66CA1B00D11E1CF9CA0781BDDF84DDDA858A9DC04B15F8D030472C428537D5AE7262AFA90C8F5834132C490BEAA85CEA13D0C50F9A805D42CD1A46A3B801A32F7B130A1BAF079C61002C002A7DB4CABA89B3DA6AA7F781CA112A3FF59EDB364DE970942C69263B30ED519D09CCD3F09AD7263D768A22899F061EF85B8C3FFC39149383706C0208F95A163D3D20A1743041E6725359075194C0725D55BC4BB802B1613905A17FD2842DCD196CC7459ADA6865FDA83A4BB0E2D677C15EFB3380555419B89E6A45712236AF54DBE8758D00B3DE2A8C506441A6906F6C6DE15B4F1C40AB3482982E84610BFD768473E60F63F95005054AD2282FA4424582AE2D54B5ADAB902F5184FAC4380EEDDE8976BD86B0D5C6DEC3E3186FC608BD0A7EFAE77F491CE8724C577B2CE67A6766D02CB4767966590DA519A2589931E57C732FE7CC5892CE20C04751D4A13CD8BDC89F87A902E8B81D216A3309005A418856146324ABE15DAFBB1ED75C7E210A2E4BCF6A25C0FA809853D105EF4C036903D0671F40E7579467D0B90E7A3A28E96C538A392D203A88F4F1CFA3FED04781EAE3706CEA7C2D58F44C703C36BA69B241596CAAC256BEC37286943A6059D61354F82044B028A7731CB49232EAD62264F33661F1D56F80B7F85AC01D51CB77DDF5451A40AC142481D6C637D3B2639D42CE02D06A22EA92186A4D3BFDBE3E2B40F7BEB42748EA3DCC042781740288C651BFEF13489FF82CBCF83090D1208AA0E8206386488EDC2EA95DBF858FB7C53C8A5ED0A43CC47D4DFEED0950B9E4D92DBAB931C60569C2A93B0BB0E1A6B7C239E716A138B85251CD268A1957B9A0267D64A71A4E9E5212130F8D5696E1EB5B6AF8CAE37B600D2E423DB150705354AC10ABE6F561E9701F8A968D30A4D6D9869B50E3A1E8240165A16D554349D26EA13E3E8EC37BF7A255ABA35E6FE150B58E23F5006B2EBC04EB2E7C896A001290566DDB3204845BA6B24565CF1D5D332762D213D4E1599970CC39EF9C73D2F4E150009D220A591454BC742EB38B62A5E208DA2DD9173208695F6A63A29D60A410E1BDBFFC4A5C7FFE529411CB8A456D08E0698BD2332C7B9621AD544779A351E70A32A0DE04EEBE672BEE7AD747E0BBDB71EF3DEFC01D775E01D7CD1FA433F07A4FE494675D10F5AE8A959C9556B64190D79F4EE400CF32378C57C9223E972F9D8DE686A1A2E2A01707B7975219980230BD8B33FF4CA7D078E823081FFA07A0B603252F84E3F0018AC4D48700449652A96C991977951AB9B7736A87B2C34A9A9554130A68A204046919557F23FAAFFE4F18DC740B602D901DABB943B670B31A5AA7D317DD94B6DBA5AB97CF72F24ADAD71BA0A32D5E3B973B23941D5E5D06FF51DE2DCF45002BD98FB11F7D16ADCD9F44A1F1344A560B192D57A56B92948E0FDB294BE193AA09CBF35457A3F83FDB886D1796E74BEC13FA43A30CB8BEB42F73024B6D0FC5BE6158A5F9683BF365D795CAE8C5BA094665D0FA7F9AE650574F8584A86444AD013CBCBB8A2F3E3E8629141038BE38CD153C0BC5B885754B87B1B0BFA4A805E9EC14676ED1E3080D91D346BAC3254B42A4ED266A478E60FFEE3D68B72354EB219EDA7F04CBCFBD009B2EBD024DAEC6C4C14FEF4B49AA23CFA0A53098B76A2B9095FA21576491AA49E4ADDC3920138C05A035703F13A069984413A5047148FB810851E063F7C11AC6620783C30578D1417CEA83EFC4C6E1B2325A620584CE7934A5D2AACCE7F2549DB6F718803EBB32E88E9DA74E23BB8D2ADA0653C059EB8D844A20408F63EABE3F87F5E38FC2CBEAAA934C6B56B98335B39BDE729DC233B53D8692D531834E54771C8AAA38680588AC0A027F05DC95B761E0E2D7C159B001995396E53DBBC92C3E3179EE9B9F526FD54F3FFC0A43094A79C192D48A56041EE3C9E9426FCE91CC32EF4DB355ED514DF0CD94D805FB70E4E12F21DE751FFC644A356194FB90CA6E220EDC621F0AA5419198F10C3DCF47A15082459F0EC6A958068A25CD22B84061082811A4A919D64B0712D9761F326B0089DD0796F23845C7B95FB2EEC453264FC47F5B3270A2BE48D2017CF6811D7868B20014FB55A1350950B062C99C17F6F9F277593049BFBADA39C5938944C544F973B016C04E931069AB8EDAF8111CD8BB1FF5066D42338CB7135C7ACDCB511A1892F34B82B66ED8514D31FCA88E7C8EF23A91D8256A32D23C3EDBE3C97C8BBF86786C900E51CD29711C76336666D09D269548017A18C38A13448D3A9C38C1FEA727F1F48E4368142A98BF61350A032E7EFD960BF0F6575D8C924B550A0FEAABF547778398D386B7277C6003D0671740AB544BEF46222B24D5EA5D2AEAB661DD3C20B898D0E42602EA4FA37AFF5F207DE253F0ADB6E253E57962A349BE696CC7825D1E6555D4533B65C8A258B249B5DB09F3E7C876D128AC4069DD4D18DC7407EC914D922932B354BA664D3A6B9FD31C23158CEA057DAF9C596F162BEF620761A76AA6EFDFD152E52EF44CE7489E71DB67C9C7E5471910D581F61120AE2929225D9BFA48D1F8AA65CE21B5A1D522A2B7D57BFA0928A8AB513A5C9A2951A5A2DB91F96F899D9A33D938D2880B988A528C35DB6827199AED14CD204518293F0A16DE1861CF7385E3F64B3E0A250F61023CB4E3300E444524992D8A0CDA492D1C2861C97009252786CD061CDE3B1AF0F3BC09C6726CF2B3CAFA9359BF147DE3A803D0FBF7ED43B51560B29DA27FC128D69E77115AA12A6E7255A574CE3C355578558E74A44978CE0AA409BE02DE492AFE250468FE4EB86566D73A6B16E586FE591C11AC75076144808E8030048236EC20C1CEC77660FF9683085A365A8502BC65CBD07FEE7AACECABE2BD6FBC1637BE74BDA23A124A4C2DB5F9CB99F66500FAEC0168055EEA7A483708E865094AAE8332551C1A08C4A35952A90859631BC2C7FF1DEDC73F0DA7FA186C02760278D4EF8A617BDEE7415736C57F6636F945BE5FD9D3A8ED87B89C6499DE45EC528DB0080357BD1E036B6E00FAD72143BF02F05C0FACBDA13B528999D94D2F8791F3CEFAE2D406B427F2355B1570B6F7CFF23A390FAD48910C534F2E5257EB7A65E43C7167D73CFD511DEA40B1C5F2FF8A2822770A8C37534CB4DAA80711EA498A7AECA01924A8D69AA2178E98558A8195FA40B567201B8654E7A250277E41DA84EA5122523AB6D5FB59826543152CA89450B46378F20A55B49329D0223FAE762AE767F3F372476B72B7884269EF669170EFFE83E2B5B177AA81F35E72052A43F3C5B950E879D09150359AF0B3A416AACD8D848B26A5A2BD35E458046F66C259AC3868CAE6E87E473A4DC09BCDA58AEA88A216D294B406F9E850FCA1FDA889F54BE6E3A273D761F7D66DB01BC0C39B77E2735F7B04F5D2009CA5CBB0E2822558B6C4C2AFBE62136EB9781DE6F7F5AB0ED7CEB0510D4BBD1B11E73943FE32196A9DD55C8F6CE84486DDC978AD01E8B30BA0C5FC5DB630620795E26D4B8E8DB24F4D6DEE3247EE90D4460DD1539F47E35B7F0DA7B61DAED594FD03F990D167433268D987508D555738C7440A82C27D6645B55B88B8DF05E24F915965D4DD95682FB80EA3B7BF13F09621B32A5A8CA7B4D14ADE966BFB4EC6287EA13FA3DB60D23D522F27AECA770AA4BBEA3D29ECE41BC8682F0ADA8C52CB514D323CF2F4240ED4528CB56334094E044C87BBAA2670A5CF4439F41148D53E7C6A75C1B98CB50126ACAC7DB0F184F01BB148C7AC3809D1E700EB4617A090C6287277172A3F3A3BC1E4E2C8AED39E9058228FA4D733999D00563B446D620A7B0F1EC658B385A78E8CE3922BAF45B1320027B6B8390C6266C262D0AFC05781B0A235C4FB7A165F0DA5DA20208788F919CCA8D350289738A2993F2991086154571B13536C1204889B556C5C328C5F7CD50D58B962094A051B4E087CE4EECFE30FFEE8E3A8FB03A8FB452CBCFA62388BCA38DF3D8C77FCCC95B8E9CA8B95ED94A5AD037807C427862B31ED91A2315826D8DC5D56F8784EA5EA75A7E5CB00F4D904D0F9FE7D1C6DAA838D1D6B64372483CECD8264B95D43D6D82ACD16AD9F7C1AA56452DA63D9EDC77149DB4F617D05A0D520A601101F729A1DE5A6F41CE4E4406D69D6A096771093C5F3B1EC557F087FC145805311FF67793E7A77D2EADD20E0B48CFC1339683EA1CC94784CEF4C9CF60C73CDDFB3A22138D07BB99E59D8351963C7441D4F8DB5D0B298DB3A0266D2C96767F0D21443A59228401CD783EDBAB073933689A12ABEF1ACA8106947295A51865610A015B444EF3CBA60040B07FB80A80DBF67E76BDE4B7A72F7A4936A514035867422C6F0C96DC7944784A88E4FE1E0D838F64D4CE150AB8D8B2EBD0285F200EC28831BF3F88980B49C8F06E49C83EEFA3B4F373ECABB05993DC7B1A53B065B48289F8BB4835D96A0D99C9242A01BA670A3109B562FC39017E3966B2FC1A285F3C4A6B53995E27FFCC52771EF3D5F40E411A00B8816CFC7E22B2EC062F7206EBA703E7EF7D7EE00B545BC6C493BA4A354196D75A832ED3D20E45A673EA67494FF507D00A7E5CB00F4D903D04A55A0F8617A3BC8AED27602DFCF502EB89D5D991287C3731FC2035FC381CFFE15FADA4FA19C717B215A812AC99A98AC8BB1514E95E84D5EC9996AC92CB9569A2289153BABF3EE1026BD1518BDF537E08FDE8C2CEB974D3CE97B2C8C80168E086D92BB1DCF52B33B2D0FC2F11C7466834CCFB9CB5F357ECB6E21BAD53A4B954639722C1C69015B0E4C62C7911AAA998D96E3CB7E7C7C1B770529BB0EFA0B1ECA9EA3409500429588C08A52DEB02B93DA6B2A2F24AA424D10E01D84D4092701A27613F306FA256BA49786437F6DBD3BB9F885E48D1B72CD6A4563DB4A8A96C8E7F38D21AC304173AA8E436313D8B1EF00B272192BD7AE83EB152575F778FF09CE9241E7ADDBBD7FCE9E410BCF1C31DB66B66C29E546DA44CC7397AC5AF1D5ED7A9D2A7978ED187B1E7F042FBFF202BCEC92F310348EE086EBAF41A958C0D62D07F047BFF7213C70FF562476054D9A4E153D94369C8335E78DE092F386F1276F7A3516FAB21ED42DEC1DDEAE07A0BB9DAB6AF732D61694CE5A6C5F4D067D3C4FC8A97DCDAC8B9AE9EA81B925B3930D4C1540BB897AB069DEE31752940B6C7D55084380B4DA8F60F7BFBC0B95C61614E31A9C980231D5A22CCB682968758B7FB214948612E55227593697ED2C38D1541F7DC8862F40FFCDEF8333781EE0960047AB18F24C45A79409682EC4E66255BC3963BE34404FE329F5C9772E837E1E2CBE12F71C1F6DCBC2444860AE61EBA129342D0F895744100528780EFA7D0F7DBE8F025B93A9AC106C4A618BE1BEE2A4724648CAB6DC468B9CB880B592DAF15894428ADE388B90913760C75E4880E104C17140A95F0199E3E94941CD2EB2ED9760345F47B0D5F04DDA8A001A44D87FE808B6ECD881A56BD660C1926570D8E21FC4B099ED5A2962ADD450D4461794C55EF428BECEA26F26F71CDAC249C76913611AA09D06427544CD0885D04663DF182677ED445C3B82B0B917FFF503BF8D438776E20DBFF073A29176EC0ABE73DF63F8EF7FFA8FD8B2652F2CA784AA6361C2C9E06F588275172DC7CF5EB8106FBBFD3A2CE8E32EEA927EF42E203A456E65FC6AC1CDD92B69D9572F7D8683C0A91AB426833EFB326866CE8EA829C829A6F07D0DD04C87F9EDC5485BDFC7BE0FBF09FDC12ED9928AF6A19218CB8054995ABE43887E947526A7DABC99D3796CC98585C02EA26A2DC4F0756F4665DD1B80E212D5F0407F0EF16DEE493D4999080B4B3E904BC73309A0BB56A5D31E5A591E2860556B053664D8A85BC0D35311B6EC9DC4FE5A1B6DAF84586FF755B433CC2BFBE877394D29891A657B290B8F2E77AA2167ACC121D7B4EB1D5B04A8C55590801E2365F306DBA0E31841A45CECC23082ED789219F3339D4219499E49EBC2AE80BCAE0970F295C4512668D62752B854EAA4C0814347B06DE74E8CAE5D834A7FBFF0DC0EF57F94C1C986005DD3A3DC7CBFD7885F796A68F0CE9B4E12A5D0C8424B541D511A20CA144053BFE78636FC6A8AEACE83985FF4307E6007C626B7E38FDEFF5BD8BB77077EF6CE3BA4D186D778F8401B7FFA817FC4E73FFB2D64998FD04D11F816AAC37D187EC93ADCB061006FBBFD6A5C7BEE72F8E269A01DEE7245BD241AA24D924853622ADA6EBD7ACC37403855983CED3806A0CF2E80E6C3AB96C3EC40E358EC72D0926D092151473A793F0EFEC3DB30924D88B97BEEABA6D67CF9EB7495ABA34850FCA5926231C38A85BE68B90338E2ADC3C21BDF8E8155B721B5D9C2AD80578A6439A797D3007AE0778AE4A765E43F8783EAD27ECE6C4CCFAA74042563A50733B0BB95E0FEAD53A8C754C3B848D9FA1D72835560A4EC639054865883B22248DEC94328F74217080588D564294E783A951630156F8B54AC3D09CC54531033B9BB0925796459FAFA06E07A05F9DC8CEDE47A0305353E142F259A67B9E5DACF8319BAB603154A8A389C246885119C62516E2BE56FA22CA61C0EA94C26BDBB9FCC34E27F0640472A6366B7652A00CDA6A850BEA3B80DA79DC269A4187F722FCE5DB20A453BC18F7F7C3FAEBAEE025C75F525A8D5C7F08A1B6F52E148811FFF6817FEFC4FFF050F6DDE2619341020B2DB38581EC0E09A95D878D152BCE6AAB578D3CD17637EBF7208D48B4978F970CF27D6DCD13607E89E1D6A9EC38879FE6F31007DF600749E7109BCE6FECBD0323BDF577EC75903480FA0FAE047116DFE102AE1B898FC509A9B48C55A2B2D34179DB7EBF1B30567452AA7CC7E644B59AB84767905A255AFC4D065AF47716803D954690C2048C8C6DE3DBD31DDA2CCF31FBBA7FE13A6B7A0773C8BE4A274D1CE72508F80DD9375EC0B2D6C39D842C64E42E9647350F25C913D166CBAF3B11D996A189D7B931FA679BFC8DF72D11B3F5739054AB6CB0C34646307E903FA2167D231586BB560FB25D152731E2E17CBA8F4F549B62B3ECC1A70F29849238BEA1CD1FE272AF7CFF964C9D23B26482C67D802D422AC4B2278CC3AA348B6C8123BD91E0FE767283774D62CC04D2FE730449205A2D41015479C22A3C6396AC30A1A5850E883556D61FBC34F60A850E626849837AF84D7DCF10AA4590B2B572EC1A245A3C2617FE5CB9BF1CF9FF8261E7D7837EA0DD5D9E9D01E172D8C9587E02F5D8C9597ADC3DA251EDE7CF3265C7DE16A547CBA74A87949B2658E539D3C8867B988C3F3E6283606E54FD6A91F71A6D5FB59627EA671D0525692CD518198050EFD50975C172502B46C1D380E547F80EDFFFCC7188E9F403969C04DC85126489409B0FC4FED79D2E5DEA4D2AFB373D7510529383EEAD902F8AB6EC0E0356F81357CA1DE2B50F37C8CAD4D80514B47393339846671CF14E39A7C20081D905702733A48659CD2426D39086C1B0F3F3D89270F37D0727D8474914BE8A16DA3BF584291BA65015F351976563CB9C5A9CED8D46B547B2527D6380AA4B1288D22B41B0DC9B8C338453B05261B019A7182F94B4651191C51923C9DE6F78E6115FAFC2E760EDF5D34C954A03864D597AD9A4F04B805E479AD6A876F8BF73FE516546AD7F58EA786DE9D5BBAFEC8331394C931476C6851AF0B09D07C6F1A4BB6CFDFD95108B75DC78A81322EDDB01E56A381FA54039EE3C0F132944A36962F5F84654B17C0E3CAA3D0875A23C187FEF64BF8D847BF8036C199F64872ED216C2B46CD2B201C1AC4824B3662D1C2025EBABC84BB7EE9155835D227D729B24869B8623D455BC3C88A25A7E4993237530000200049444154F43D1215D269A2E24C067D3665D06A171079A0682E4F4222030AAE2BBB7A0B2CA60791FDF8EFB1F7BEBF47C51943210905A0A99996DD40A462A40056ED23D83522526A2DC5D4D10F3AF007D1286EC2D025BF84FEF36E039CF95DB30F1614735FE4DC92340725D94B30E73B4E435672A28754167B9A4B9F0ED0EAE7CAEB985AE4C9D4C2577FB41B55B71F1157190E8BA1BC071ECA85A2F0C61431F3E7CA545FF30D799626332137A8D59D792CFC4521C2B0AD8A69712C6E706D1A0EB9054C3502545B21E62F5E8281E111508F27B452BECD586792D52E73F90EE5BAEF991BFE324354BBBF884D9280AA5A6D298F0D6538946B9D55E720270BBAD591569909D0D38CF773ABD028EA0168AA35F29DBA23017BA7D544296AE2A6CB3761EDD285F0B21853B586BCCE2F7998373288C1BEB238067A6E09855241C6DAF77FB01B1F78FF87B163EB0E1965E4F169F12A99BDEBA15DF0E06F18C5399B9663915FC7FFFB8ED7E2BC85C37AFF4C4E484C5C6C29784B0221064B5C2572F0E693E46934F130007DF600B44AB7F46C6F47C22F4A5799A7005A9EB4DA6338F2B9F7C0197F00AED382CD4AB8B41E8BC259795E085870594EC659779E71E92DAA020AB612B4DD3E348AA3E8BBE0F5289FF77AD8A565805D5400CDD360E6E52A7B259E91EA53D39BC58A7AE34451F234BE3E4F473557DB995B74A225006559D83FD9C6637B277020705073CAF02C0B05FA617B1E5CC78643B066D6461F12D591DF91B9F5520F32C1D2C2949F1BB4918601DAAD960027FD2F22CBC5C109EA9327B17AED460C0C8EA0582CCAD29C7B10E60B933CE79349562611658A24E6FE6A2B5FB523BB1C504DBC5D8056F23BA15FC40489C387D9B502662A3604A0A573B09B41F7AA38E8EDAC0C9062B10E55DB5EA532D9D0B45FDABFC30871AD8E42AB85013BC4C6D1415C7EF179E8EF2B8AC789E79764771D4AB399681C39D4C0673EF9653CBD7B37FA0687B1EDA903D8BEFD1032162CC30C49CC64A38858767DCF10DA29EA233ECEB96C1D962EF2F0FE5F7F2DAE5939049B9B4FD0C7DBF211CB76092C94EB6484CD579D2C7A86B3E2A91E8606A0CF32801638E4F052404AB99CEB3B2852071D57113EFE398C7FFB4F3098EE404A4B5056F4296CD67A22D98A490627CD46F919BA29050E1CA145954EB6E18DA03A7C21467FFA7761F55D0680C5196558CC0796598CF279E86D99A5324179789C515F1D8AA38716D03F63D868F33919028FEC3884DDD51051A11F2DDB452175D0EF7AF03D82A6DA528CADEE92718BC659EF48AE0BB3EA35AA68479E396E37908501E25653B4C194C8B5321BDBF71FC6D3FB0EE1252FBD124B162FA1A9A9F87350BDC10EC3EEEA44F1CA1D1B39CDBC2A9A4381B36A3852002DDECD427190C6D0E02CB446F75BA4746CCBEE48EBE8BD311DA0737B500174EDAB415A436480E2F31C22A1295214A0185B705B212A698A73572FC6FE5D8FE2FAEBAFC2C0403F2CF4617CBC219AF2458BE661C9D2F9F8C1F7B6E1777EEB8398986A28B329BB8D2BAE78097EE6B6DBF0E8C34FE2739FF91A9A918B90E3374B105A31EA15078BCF1FC5EA8B96E1976FBA1C6FBC6ABDD400B80B3D25A24AB9A10BA632867DB180E52A47FE79FA080E6337FA6C4071A671D0BD0FA65AE272091DC165618A2BC2780F0E7DE97FA2BCF7F3709A3BC44A423228D0BF41EDBD47599E6A2DE386A504E8509A51D84AE1A66C8049458B7B241D4175F13558FFBAF703CE6AB5C12997BE3633F1E99D8382F73A5B147E2F0791D344EB9DF0E43093C8ED49FF39E5B42DE0B1DDE37874CF14B2CA10023670D80EBCC4C248B9025B803712458602BF148EEB2B30D5E9AE2A02129C15B7DBAAB1981B89EF7126BB8C00CD2845EC95F09D871EC1E557FD14162E5D8C3826F34AACD1DA688BBB892B4811C15CBE52D19207D1EBE85953005A126595D52BE0569239D9895B7B80288F0D4B4B0109B2F4D2C8773E514D2A1DEB50D901A5EB52C7A2207F1F6AE3237E36C1DA8ADBB0A23646DC0A2EDB70212AB0519DD88B55AB87D0D75F116EF8FBDFD982BFFF3F1F439606F88D77BC09D75EFF527CE54B3FC4FFFCAB4F22CC58B40CE1D887F1BA3B5F8EF7BDE71DD8F293FDF8DDF77D107B0F4C21CE485DB4D08A5B98CA6C0CAE5F81B5D76EC2D5E7ADC0DB7FE64ACC1FCC131935DC45B1AF37449082381F03E93CEC6DFD3EE191F3FCDF6032E8B32983561C9A549DB9AB34B5CC7620CE67253F8235F15D1CF8FC075118FB11FC780CE5A28738619187D56C1218EC12A4B65901B4EC226287A2DD4D321F5ECADD08A5CD0C07B22548D6BF162B6F791B5267991C4F71D41CE5B2FB1E9C8EAB5B47D0AB82DDD1A93DFFF17BAA3E21673754E154CD30FC23B26DECAFC77870C7114C240E22BF282E73542570AFBFB2CF2E345568A34115C3435E575EA395144A67CBB459F1CD59D446AB3A21F7A5194692E5B5E20C416A61CFFEC358B3FE5C2C5DB118F5462AE6EC0A709950B24D59D311DAD65F58541D6F55A4E544A0C158868BDAE544680F39CFEE24221BBDF267DA46947FE6EE742CF0C5047202B0B60CA57DA8F2E3605193C6FBF9765789066805FE04681604FDB08D25434BD0E754F083FB1E40D09CC0B9E72FC1CD37BF129E5BC67FFDA3FF0F5BB7EC816DB770C185AB70E9E5EB91A4057CE52B9B3136D91693A6C1F2145E7FE7CBF173AFBB1DAD9683BFFCE0C7F0DDFB370B85E2F50558B0743EFCBED5F8EEB6BD587AEDE558B27804CB06CA28F57B1818AE60F5B2A558BEB00F4BFB520C7840C1027CDBC6BC725128AADC0EEB19B9C4A94A2E0C409F3D00AD17B4FA82F8D84B93313C9F00DD44F4E0DFA2F9D04761B7F7A0C81D50586892244EB7BE8A89BF6A6FA5E05F38632B446A2B8B4C522102BADC56A9782EFAAFF94D0C9C4F13FE41CD7D2B72451E745BEDBF67E5AD58EA57672438E72344605937F248469901A165E1D15D47F0C8FE36B2BE61DAFB8BA11437DB2D95184365E529A1A549BEB62555323A95408BA715B5CC6188A8DD4212B61036AB08C8DD5A2EAAA9879D8726B06BDF215C76D9653867E50A05BAB6E69045BEA3A41632CD6AB14C2E25EB7853698056748656690885C1B72A9960BE038A6A38C98D8F14C5A16472DAA18E4E74A4393A56A1CA8D2E4A08F85466D0FC48293958B053CA8D14569421E57655E30731E858D8B4FE023CF4FD8711B6623CF0BD6FE2F6D7DE88A9A909FCE63BEFC23BDFF9E7D8FAE441B85E804B5EB20A6FFCC59BB178F122F87E1FEEF9F03F61D5EA35D8B86610AB4787D0DF57466615315507BEF98D6F637C6C0C3FFBFA576374D5423CB9AD8EFFF267FF84C71B0DACDEB851F682CCDC1811DA4A66C76BA08D294294CB16968E94F0CA9FBA021B968F60F1401183250F059BF755797173159877D9AA86ABAE6A661A9A74E8BDE34C236652693240CC8E2A478DDE994671A8EC4E379D385A819166F07C0725BF8AFAD7FE18F6D67F461A1E91FDD95C72C1521C226E2A334C470A79FC0C820B75A5AA6D5830809EC1D2EDE6617CE82A2CBFE32F81BE35DA4CA6275ACFA0048E7380CEB997E9D4534BEBD4EEDC6A09A0A467161A4986C7F6D4B17D2C42E49741CB28169C2A2EE0B834AC52C150853AD501987FE5DB5831A36531306E3510B7EB88C3400A69641628A3DB399560CBEEC358B5762D2E3E7F03D885C813A00995BA6F79FFA29E03258B56FEDCF98A45CE387712CCB3658DDCC215F7FC4C191FE5FE1AB911128B85AA3828AE736977F76DD97B3066E18F593EF7FFA3BE39076882768688CD29627C64A175B086ED3FFE21E6557CDC76F32D78FCD12D48121BBB9EDE868D1B566068B082B7BDF5E770ED8DEF44940EC0B203CC1B4AF1ABAFBF1E575E71BEEC37687B152920169C108EC5EDBB94D7387C07E54A49CE9F5D94AD26F0997FFB01FEEA6F3E8389D44269703E2CB788C469A150CCE0152BF08A7D702A7DB0FB4A887DAE744214AD08EB978E60D3AAF9B876D3326C5AB50815CF8193A424049171C721A1006D691F971DE7734096C953E7479D31738CC1DDEBF3D25B4037007D3665D0325CE4614BC5715FB5EB12A00BCE3826BFF85FE06DFF17E92424D8DAA44174F59E52A3AE5B31470B1B90992910C095FF1935B08953441303289EFFF3E8BBFE7D80B3A0EB0A36E70076FA094D1BF72772AEF91BD96527C0CCDD63B8751570A016E1919D554C242E22C797860E5A085508228CA9AE942AB9620EA53D5527D11AC7885A0D84F52AD280A641B1C8CB1AE49CDD129EDC378EC42DE3E24B2E46A55492FDD469C8AF0A8EAAD0C72EC11C8C73F5456722D0E0DB59C468F095A9262F06CE00E5FCE7AA65BBEBAF212A0E7A38E73CB3502009B258991C45CCC6B91515FF4DAA83323B6E36C06C9A7ECE69113FFCC68F31B6E7495C7ADE6AFCF4CDD7224B5AD8BA6D1F6CC746A1E0E1A76FBB1A412BC6DBDFF9D7A836D9E0C30D7BC770DB8D9BF02B6F7835FA0A162CB72220ED58DC1D9DEB0647F4D15E516D6EECB9B469F5B1775F15FFEDBFFF23BEFCB50791794544A98728A52F490C2B6D21CD5C387E1976B10267A80C542CF1BB9EB770093C2B40C16D63ED8A215C73F979B870ED4AAC5954C210179132017025A2B2E78E765A5BCE3E27897F8EF106A08FEFE93CF332680234E98854009AD90E3963DF735070C730F185DF86B7E333B0E972AE377D557B016A8F0971C3A3B2C3829D70776E3EF8BADD5878CB1889378C09ACC0E86B7E0B18BD19B007CF0C809E6674946BBBF538E8484D9E8D58E453A32821E1581D1FD538C523BB26B063AC059407C5369444BC27895C77E9AB3AF67416AD7D3444734CD0D63AE776BD8AA05113D5068F520B63B4ED3276EC1B033C0F175E74310606063B1D70D4EDB21351DD3B4E09CCA6959E3907D7DE512E3C759E316B80CE5F9767CBBD59F3F40C5AA93A4485412A464BE4C4609F3A68F2D01133EA48B2644E3874A86BB3159DB2CC3046D26AA2E25B38BCB786EF7DEB7138D1112C1D7670CBF59763C1481F2C7F1013B526EACD00FD25073B9EAC8A0EDA2F141036A7306FD8C55557ADC7A6F5AB51F65CD45B317EF4E3C7D06C37B17AF56A61E36AB52A6C2BC3F0F020AEB8FC52942A05D45B2DDCFFDD27F07FBFFC200E1F1A43FFC07C1C1AAB61F3E61F60CD9A9578C9A697E0BE6FDD8FFDFB8F60C5BA65B8FAA697A191F6E33FBEB2196E2905DC08C5E17EAC5CB70A2B4717627420C1D5E7AEC2CB2E588791324DC514AF9F6FF849F330B54C5203AE6711330D74F442ECD8406432E8B32D83E676466C6250CD06E4D88A2C7E784730F185DF85FFD4BF035643C0C161612F6F649036431609C9C5014E07A0D50B9481528AA6BD10ED91EBB1E48EF7018555805DE9D18C1E7BBC9DB6577456FBB9D6B5E74C3ADCB8D670CF729202B25CCAEB6A61E4B838D00AF08D1FEF41C32EC2EB2378B26097A050F00528A97966A62B6DD37965544F8802ACA40BA21071BB8576A386B0D910E3A3D072504D6CECAB26F8F1933B71F1A68DB8EC928B44E74C028ADA637A48B802D08ACB8E95D0EEE8009DAB346664CC7C6F4E69CC343AEABAD1758B7DCF04E84C9424343C123F0DBAD131BB8E62B45302768842BB8D5212E0D20BD6E2C0AE297CF6D3F7A159DD893B5E7D2D6E7FCDAB70E8480D9B9FD8832F7EF57E54EB6D4C1E38843ECFC7EFBCF7ADA81413D8718072C945FF6009B65340C1EDC787EEFD5BB86E86D115CB70E9A597C2F7CB8291D5892AFEE99F3E85952BCEC15BDFFE4654FAB859B28BC9B12A5AF506CAE522C62742FCA75FFB7FB07EFD3ABCE9D7DE844FFEF3A7F1D0833FC26DAFBE192FBFF91A8C4D16F06B6FF95D387D09FC7E1F838B57A19A661858B400F3168CA0BFAF80AB372DC66BAE3D0F17AD1A81CF498878CC159668E659AF513EE98A0E9B5E1DCA5732F9307B56A73C03D0671740B330C74A3B2B4FE499C96F96BC18BEB50F135FFC43F84FFF0760B594CA42E475AACC2FCA0F36B911A02DC04D289B53A6FFD4C692DEE3501BCF9662E4D277A074C5EB017748B5766BEF82D306BEC77DE0A3901CD378E1EE8775146A9A43965D68E487B6D8886E1B6FE1DB8FEE823BB40076412CE19125114AC5A24C92F4D4500F5F8FD1914C67D2F32666F4D43847AD26DACD3A4216089304F5CCC36456C4777EB44538D35BAEBB1A03655F6829B14EB2556BB24B599EC8E6C8477372E81299B9B2A397C6C80B93BD19F36C7FCF9B4D728016D739F2E4B9844E8A7F7A9357D9C28A5B55916B8E1066B40B65D12D4198B590464D0C044D5CB062092EDDB40625670087F605A8D776E3C24DABB074C9285207B8F75FBF8BBFFA9B4FA1560F51B633F8691B7FF167EFC15039442123CFAC1C491C7F1849D687F7FFD17B71E7EB6EC305175E8C62A90F43C3231277C74AF1977FF17778F8478FE3177EF15578E5ADD7A2E81230538C1D1EC3C8F002140A05BCF92DEFC0C8FCF9B8F3677F1E070E1CC6E4F804962D5D8482EF20890771D75D7F0CAB18E0A657BD1296BF089FF8B72FE17010C25FB41CA3E76E42C59FC08A91046F7AF59578C5651B848376C45D8AFDA4D4602BCA90D24AB5078E1A64BD233007EAE9D9F48CCAA201E8B30BA089A8F462E09E6F6C16A1A2A0E4B5E135B660F2AB7F066FDFD7003B906C4C6DFCAAF462E2E121197424838876A5D2AB2DCF3C7751E102DFC184BB0EA3AFFE1FB0175E06F8DAEFF98C02E8A3D018DD7A9ACE7754E6ABE055819F453132FFF42CD4B20C0F6C9BC496FD47D0B760A972A393892E96CE4D2A1C64DFC7AE51B47C962E194A0391F0CD04E6561D41AB2916A16CFA9842098F1F6A60CBB6A771FD0DD7E1A20DAB652544F185D24E6B7DAE4C9DAA0354FCBB854951F2BD1CA095F14FB7E09703F6CCAC79F6C260CE352BB7BADC0489BA6C6946917D04B5EE59360BE09E8804E708161B5362EEBC5DC3F9F38671F585E762DE601145A78091CA42D9FBB254A087B58766ECE24FFFE65FF0897FFD3252AB84248C5070800BCF5B8957DF7A0DD68F5650E0A6B73637C91DC1B7BFFB30162D1AC4828583F08A4BF0C4137BF0F0C33FC14B2E5A875B6EBC0403FD1EBEF81F0FE2231FFF3FF8833F7C2F2E38772D82A0853D7BF7498173DF9EBD989C9CC4E2C54B61BB74FC2BC1B253B49A0D38DCA51D1E0E1E3884206A60E1E265B8EFFEADF8D8C73F87894688566110C3EBCFC3F0390BE0F4C558BBC8C76FBFE5766C9CE7C18FB8F78A923E52F7ED5362A93B71F37697DE49BF9341E7ABD80E84F716DC8D8AE3A8087D2672D0F411705D471E1E95414728B975D887BE8FDA7D7F0DFFC8F790A1ADA47522834B757776EE66A6DA8155E38A78D24982CC3D0E43A782E6E06558FCDAFF05BBBC56F91F77ECEA8E3B8D9D9B2F9C76B37370560F47A8377AE56A43ED0398E1502BC1834FEC43031E8AFDC37A13DD141E63CEC614664E123F3644E49BDC6988A6543C4D10D42610376B924107418080BEC8F4F3C84AF8D4D77F809FBDF3769CB362B102E798F7C112ADB3341BE61DDA5A7B4E3E5A80587BB1F466D03940CFC639CF546B4CB70A2510F75A892A937D72D0CA894EA93A12EE88426A2649D166E8025A86B6E044352CEAF771C385E763CDB225D2E054F45CF4154BF01DFA8D58F0FD0ABC9203D2F89FF8CC7DF8EEF71FC3F2E5E7E03BDFFD219E7C622BECB48DCBCE1BC12FBFE1A7313ABA04D57A84BFFDD0C7F1E637FF8A24145FFECA63F8D467BE8E306211F230D6AC28E00B9FFF30AA93167EE7F7FF00175DBC016FF9F55F9626AA8347C630395E836D15A49E323131811FFEE027F8E1E687B062C502DC74D32BF1F4B6BDD8B3E7295C7DCDE5628F90A60EB66F1BC3BF7EFA8B989C6860E9C6CBF0BD27F761EFD80138831EE6AD5F8645F32BB870C542BCE5F6EBF0B2FF9FBDF780AFA33CB3FFBF33739BAE7AB72C59B65CE4DE6D6C535CB031361803A68412B221A411926C7A42FAEE26D964D32B210909A186DE4B68066C0CD806F76ED9729364F5ABDBEFCC9DF97F9E77E64A328124B0BFFFEEC2C7978FB02D5DDD3277E6BCCF7B9EF39C3366881B19A6CE27CFDB46AD8A83E61107F543721783C786FCEDB571B2827E6F55D0020A4A3DA05A4DAE6C2ECFE8217BE405E22FDF405EEF66B50D7337522E673920D2CA51AC2E30B9C92AEEC8B8A9FB881B15F81BCEA664F1BF43A0CE6D4FBD5517E4FF1A0CE72E0AAF57A6F4C71EF72C1A5F15D0EAD5CCB92A47E863E17CE352D59A36D1B8453C9D555F914C468D5DDB7A40ED2CD46E24E739A2C9EE4550541A77F2335771E13EAEDBF59750D6646F3776328A954A90362D62199B8C1EE0704F9AD684C385E72E52C6F832D4E24D62AB06A480BB4C775A6AA7E4BE6A5D0CFE956DA90704839A858381F9AD541B83330573D6A1725F1547A5941CDE38B78403A8946E771845403AE74B9DB1B2646C878095468BF6521E343875EA44C6D4D5AAF25F34DD81A04E594998A27C1F41DD26A0FB317459041D62098768DCC40804787EED41BEF2A5EF11F4079831A9842B2E5B4AF59012922987DFFCE6563EFCE10F10080479EAB95DDCF7C073A4D3191CAB93098D853C70EF6F397634CBAD77DCC4C245F318D350AF1A98D178924C26485B6B92679F7B92D2D20282869F07EFBB8B258BE7B2EAFC4B79E289B5DC7CEB1F386BF94256AC3C8F505E182C9D4877AFCC11515831969FDEF8006BD7AEC55F9047B6A294EA6953D04306932BE0471F5F4E437599C26615FA2E3B0A599F255432A7DA54FF7E438EC59BF11FEA74395941BF672A6877D9168016E258B82F31801180EE20BDFF0952EB6F221CDBED0EA378ABFA09D22FEFF7DD241637C32D07D0192D48C43794922997923FEFD3D8BE1A575ED4DF60FBBF86C86F783D3963234926573B0B17A973DEBFAADED1D4707C7F232E91CA124999F4A44C2212A09AB0D48831FE20595D53CD3AD9BA2A6F110FA075352A2F4D2359047D6AC047F1CDB929CB9C094F2645B2B78B4CB497ACFCDDB289593A3127C0EBBB0F306FD1D934D697E1A425295D940142570D849ECA74A700B4BAF815B5220B426E61F53CA6BD6198B7E299074BE906288E81F41317A007F4CEAEB44E541C2EC52106486E85EDA8D0808CA835AC2C412B4D2893E4D429931839A49AA67DFBD9BA6D275D31E97DA49930B19ED9D3A730BE711835E54564D3E2CB6192C9D8C4122689743EB1A4CD55577E92DA9A2ACE983792B9B3C753585C884D903BEF7A9C05F3E7525D5DCDE1A371EEBDEF0976EEDE4D69899FCBDF77161FFBF02A9E796A3B4F3E751F975CBC8221E52E608A57F4B66D87F8C39FEE67E79ED7B970D5395C76D145B41D69A6A4D0A7F8E9B6B63E5E58FB22C346D6316EC214F6EDDB4F714188FA6143C96635E2C9023EFF959F12E9EAC5F1F9898843E190A194358EA62C2FCE272E9ECB05F32751EAD391D43277711E2472CE6DA2E483934ADB2B0A0649EC4F3C714F02F47BA78276DF89EE01B41B59251AD2B0D642DFB6FBB036DD4661BA59E944DD5B4EC339B875E1CAB5FA015AC6BDC55E540BD36D0CA77AD1C7088EBD84AC31C475DC7863D7E3FF324E0FD299E61CE5BC1E298EAE1193CA389521216069425FCA1DB5CE481529B6514610DB082046AE2AB45513258C2C860336AF2A01457D99FD61AE2E4D94E385DD8BD24E2589B6B76125226AE22E6E414F46E360579C7DCD47F8C4B51F23A0D9CA6D500CFF6525541ED1DEC2A2C6EFE57B9ECCCB6B25788A91016586FA88BCEA7770259DAB8A4F546A7852BA41E6FB2E40E738689910940ADAE5A605A0A531E8F2D10E662A839E35095836636A6B317BBA70524922D114692B4D554D09DD3D51CA2B3476ED6CA6A2B48CC5F327B064C15CF47446699F6349F1B7F6F3FC9AD7E9EDEC644CC310EA6AC2E405E5BCF6A3FB0BD9B5FF189B5EDFC0CC19D32929AB26D297A0B5AD8DE1C3AB183776347B776FE2E9A75EA5ACDCC72517AD203F10C66F040887F3D8B071376B5EDA842F643171EA181A478D96E03515922B41023E9F1F19B0B56C8D7446E3E1871FC1AF67587AF61282A1222211F8CE776FC0B2C4D2D4A0B53B42C208A2575652585340E3D41A96CC18CEFCB135CC18D74858CE91DCA29C43612F624B766D3932ED2440BF03E078B771D039D0950A3AA787D5B414F94E33DDAFDF81B3ED5E8AB22DAAC273290CB78134F834C9D9502AF05695B6ABB5CD6885741A23197AFE1709D62E21AB950F9C78EFE0D8FEAFFD8AD764539E4DAAAA7230354866358E754469E98992D6FCA4D5208AF0097E0F04E57E06964A3277E91F35C727833E831237542287D7BD5761AD6A1058656ABBDE1B4A6DE1904DC4E96D3B869D8CA92A359AD5694B38ACDB75888AF20AAEBAF83CE5AB91D3A8CBE7E45232C233BBA247B757E082B68A7A5557FB8013DDE066E160401E0CD8B934EE0110F6D41A9E2C4F280E45634868808075CE885F65200AEF2CCE7432A66E8198206552D40F6DA0BDA59BD58FDDC7F891C35975C507F1899E3915C54AA739FBACA9DC7CF37DECD8B687211541AEFDE0FB18515644221E276AD974C5037CF7C737B36CF1428AF20368568CF2E220A5857E0C9F1F7FB0903BEEBA8FCEAE3E0A8B4B983F7F11C54525D87692EEEE4E9E7FF6691A473770D1C5CB08040CE251D14827F005E4130D28A0178F1A491117B9A93B01EF5E33D96C4A9987398E4FA5BDB4B6B6128BF6306CF870340162DBC7CE6DBBB0ED4222318D871F5CCDC1D66E923E8364186A678FA3B22CC888F2009F7ADF124E1D5FAB125BA498E94F6DC95A68E2C4A70A8613A740FF56E67192E2780F511CEE352A90E0B6A6E4BF0405E63EBA36DE02BB1FA1D83EEE4AB3FA1506B9A053EFFA567A3A71AD135587546FD27CD230B5223A8C51D45E743DA1AAF9D85AE94042CA3B1A9BFA5F82684FC524F4844808D30E74C52C5A7B62F424320A98B3BE806A7689078932B437452521010402B81E8DA48EB31BAEAA16728F6376E5E45E95AC067DE43AF4F4CA62542496A022518BC7881C6F259B88AA749A287EF6752458BBEB08CBCE5CC41993C7E0F36998390B6DA9A6857356C646EE02E1D234AEF4CF75EE76FDBAD527FF8669C1C1003D584637902538A0D4C839D30D501CB946A10BD0EA6B10408B31942F954290B0A6B48853E69DCDD7BEFD73CAF3D2CC9B3585C29AB13CB3FA15BADA3AF139112E5A319755179E453CDAC7638FBEC2D0B2022E5D320F279BA03B1927619472DB432FF0E273EB28C82B5234DB84D1435879F6744A450B8D8EA985D9B879177BF6EE53116CE984495FA49BAAAA122EBC601923870F514A112938FAFA823CFCE8E3BCB271355FF8EC27282F2E508D56E5E6E713D7141F8984A86E6C8201D1A6BBB6B8CAD50FE8EAEA63DB8E5DD40DAB6368553921F15371CAD9BEA39D5BFFFC38CD873BC91859FA020E0CAD64E4B4C9CA64EC9CC961BEFD890B944DAF7C29CAA3BF79983B67DC51FDFE26E11B54762739E8BF8313EFC60A5A0184679AA38A2A3B41616627DD1BFE0CFB9EA030DBE12A0CFE06A0DD080EA90E05A0FD591F8E9EC552006D90A15855D075B750A75B000020004944415402D0D50B71907467CF95E7DD02D0A2A515C37BC15543239985A35D195ABA63A41CD117FBDC705751AD880C4EB9D6B9CE80AE75A75B050B4088C6593A746E2A8A0C28B8EA17A579559C74CE074DA05350D6D52CCBA52823D19600745B0B762A8634D77A2C1FAF35777030A671F9F92B682C0D2ABF63D719C5FD5276DCAA60769406DA909173CF785F0D09AA2661CEA9CE95D6BD19C5D12F97F340DC6D0A0E8C74E778E7C14DC21CFF9CABA07326FC69510B59690A627D94FB1C4E9D3985D2BA195C7ACDD7F9EA672E65DEAC466E7D6413B7DDF3143E3D48301BC56FB6F2A5CF7D843973C672FD377EC390F2123E7BD5395496848825E2F4983A4DED511E7D740DBBF71CA5B3334A5158E3A2E5D35876E6A94A9E97D583F8F30A48C423B41F3F4E229AC11F08505553C18886A1F8A4076099D8599D74BA88BD4D0769397E8059D3475310101E3D1F4D2BA1B527C9B36BD6B365EB2E8A0BFC2C593883E9931A4927234A0D65DA1ACFBFB885DB6EBF8DF3562C62D992A5D8199D071F5EC78B2FEDA4B35D926E7C64C51A36A8110D81BF6E1863664EA631BF85EF7CE6328696172B973C15AB25BB2875EA886CD0FD64D580518E06C9518639F039C941BFC7386875250B372A9202018B3885C96DF46CBC19A7E969F205A04FB8E5C2E6DDE879693C8922C16FF914E86475011E83B4534CB76F24B5177C8950CD99A0150EF858FE6F0174EE243E61FE64506EA0D790515B5805BA6EF28980DEB11E93239D11A5C1CDFA826A4C5BAA63194D968EBF4BAF7B23CEB225963D89B2729572D5258844979BAB886CCD52BCBD3405D58656A6343D4F6ED57A546A18572A67CAE45D2C42F7D143AEB5A899E55842E3D5BDC7C81B3A924B57CCA752137090D2CBF5E996B7E8D5EADEE7EB01B4E656F9396E5AC5550DAAA007AB36DE4CEB9C73A87384BA70C44BC36D0CBAEE759286221E1B6E1A8AF2DA90C5459CEC94B42E8399B5F0A512CCA828E4B40963282B0CD2962CE5EA2FFC9CF3168FE7FCF31671FB635B7962F516C5EB868961C48F316DE230FEEB7B5FE3AF6BD773CF5D0FF0F58F5DC0A8BA72A2B198CBC7A71DA2C93C1E7E6C1D2FAFDF4A4D4501575FB280699346299FECA2F26AD25616BF9EC2A76531B4009AE1C7080609E7FBD0B48C6A3E66D21ACF3CB385C71E7F8A050B6671E6C2E9E407D2384E05878FA6F9E2377F446B67125DF3E193F9804C3B0B4E9FC897BFF011C5B1A38538DE65B375EB16B0BB3965E61CEC6C881FFCD74D6CDC7800B40282FEB0AA8E934E86B8CF265150882FA031715625531A4BF9E0AA73983D6E0441595815FDE8711EDE94A1A2139513577F6B68D0DF4F521CEF298A438D978A524140C49061930405E92D74AFFF3DD9FDCF52E0443C7317F792578A8341E3A86A4BEEE8F8C45046AA48DD5292AEA45E4CAFD140ED855F26547906F8CA55C2B41BDBFD16C31FFF7FB118DE36B03FBFB51FA09577A4A2100C5DCC9EDCB053358526FA654D23E5381CE94A73A4BD57191159BA441E4913CEA794086A7BAF820E5C7EDA7D0E19FE70E52A03EF74F07B76C924CF16D0631B733245A96A5DA6514808791C2BAB61F676D0D7D2A45245E296CEFE989F4D4D47A86F18C105CBE613F6526772D89B03E99CC78300BEF84EE42A6AB5A078AE74AA09E90D960C00B45B25BB16A2EED049FF7D241350864F1C87A424B54B97CCD63C573A990C4CABA82B5131C43226697987D924A4E3643332CA9DE0EC710DCC6A6CC0F0D944B41A2EBFEEFB7CF75B1F65F2C4A1FCE1CECDDC7AEF33383E87A016C3891EE5F31FF920A7CE98C4F5DFFF394545797CFEAA73A8A908D319E92693D549993E7A5345DCFDE06AD66FDCC899A74EE783AB16515098879E17E2AEBB1FA3A1610C93C655535116242C61BC869821F97869DDB3883A6ED1C28558593FAF6D6EE5FBDFFB21F535613EFFB98F5055954FD22CA2F958828F5CF73DD299A02A688286493A7E9C49934AF8F9CFBF8C93CE609BE25C57823F14249DEA22954AA8C5BAABD562DBE6A3AC7E711B7B7637BB610CBA4E1A83B46613372C02A3CB193F671C4B1BEBF8F00567505F1E941943C549AB0D8FD73650C64B3980F63CAF06C0FA2440BF8700DAD3F3CAF08902319178A528486DA27BE31FB0F63F47BEDDABF854B7352140E472966EE4B7465655893A862DBFEB1AB88BA42CA117D0633450B7EA2B842A1680AF6CA082FE9F0668D9B97B3AD25C91EC1A01E5161D97475741209EE7B254CDD1ACCDA1CE34ADDD7DCAECC83482646C5D5576725FC9DE535B7DA16EBC14B07EBDF83B788FAE84D1F361106F0E6586EF20FD34ABF73891634D4A6217B77DEC8DFAD97AB085C6B1A358B9F454FC59D14F7B01089E1263708925E0AAD828AF999703E537AB98079A8239D3A381041475FFACA4749B6A872169302A815B1D0B71A54B2B109695409A6669C7212E9C7326862F1DC3679B8C282F627E633D434AF209847C50349A8BAEF91605451A73E7CEA0AC6C044F3DBB06534B2927BC99931B59B1641E99581777DCF35746D557B26AE11CFC8649D44CD017873DFB8FD376BC878CA5D3D51BA7303FCCECC9E329280871A4E50877DFFD80CA61ACAECEE7DC658B386DEE294A237DEB1D0F535B57C1B4A9A3691856455E30C881C3311EB8EF118655E7B364F13CF28B7C64EC3C8EB425F9CE7FDECC91A311AC7452D12221BFC5D2A593B8FA83E7A09B593427C0C1C37D3CBB7A3545A53E16CC5F882DA3F89D322350C04B2FEFE4B6DBEFC5670495ADAA889F85EEC80675E29561EAE7CF645481CEFB168EE782534751120E2959A6E0B1E7AEE0D21E39DF7435DA3BB89A3E09D0EF21807605F06256E357DECDD29848939FDC4CEF6B7FC46A7A96FC6CB70BDEEAE6F2A7AA32F4CA51F17950196D22B4F79678F14A48E87974FA46517FE1D708952F04A3C8739AF720F27F526E37F81CEE97CEB92F402925D47B1FD09F8A4A236E6539D411A7332E2E6B22999346A04E322395A39BE23C78FACE3564F7005E2D68FF8D5D82A71557002D7234CBC1EA6BA7F7E87E65331ACFEA34C57D6C3D789C118D8D9C7FF669E42BAFEE81F7947B6FB94F4E01B4F77E73AF3B5711E7C0FAC4C6608E677E938057A98EEDB43A5F2CA17C646B6F5B988EA58CF71D53C26BC5A81F526686949321944C114A25183FAA9669E3865311CA5218D2F0F975B2C15A9E5B7F90DFDD76177A28C89CC9E358BC600A631AEB58F3521343860CE19BDFFE291D5D6DCC9F3E9C7FBDE67D14EA3E92C918D17482E6E349FE78C723FCCB454BB970C559F4260C7E76C36D3CF8E8B3EE708B93E0473FFA2E81B0CE8B6B5E5640FDBE4B2E61FD6BBBF8C14FFEC084898D545584993B71288B4F9B816987D8B37B3F9DED6DCC9A358170817B686DCD4F774F80752F6F65DB8ECDCA877AFE69B31937A606B27DD8A65C0979ACDFD0CC2DB7DFCAC2B366B164F1B9BCB67E3F3FFDC52D2492BAA279344906A7C0EB4F487A3958864677180A46D6316AFC28EAF3227CFB03673075ACA841026A91367CD2CCF70A8B7E25D04980FEA737DEEFC626A1CA04F4005A2E58BF66124E6EA17BE39FC8363D4DA1DD8978BAA80B5E350B5D10C881B60BD05E3E9BF2EA70D51C02D0EDBE46EA577D9DBCB2F9E02B72A757073CECFFE9E3FAFFFC8EB966E520BDA97811AB800107650B7AB83BCEF1484A4DB3D9BA4F558AA2D4C8588EE25D5D08CEB5D9739CAF7BB1B87EBF6FFF96ABE995EF894773A8CA54B8DC68175D87F62A1F8EA40547537E36371FA7B47624975DB8884245310D786A0C501C5E55ED5987E67865B5DC7A137FB9BF0FF6DB707FE64652B97CB248E75CB056F155880B9D848A18AA8296DCC1AC935615B4701AB62C2A599BB499568648464A23D39DA2B6BA8C8A7C8D398D654C1859AD3C928D50094EB08027D76DE1DEC75FE460D37EA64D9E4255D5505E7CEE451A868D645FD37EE5A571E992A99C75EA644A8A8BD502B1FBC0019A5B7A79F4AF2FF2F10FAC64E69471F4A5FDDCFBC8733CF5FCABA4A3BD8CA9ADE0DA4F7C944426C5732F6D61DF81A3CC9B339F75AF6EE3C5759B948706768C1923C3FCE05B9FA1B2AA8E5B6FBB877BEF7984FFFCFEF54C9A56A71254C4CDD1CEE62BA04E585155DCF80C836C26A180D3B103D8593F7D9134070F3751581EA4A262044F3CF22ABFB8E14E6C2D9F3C7F005B16FCAC7C5E5975BD291ACBD18905FD644B0BA9993189116569BE7DC56C4E9BD6882153859E4582D2B17B834C2E7DF5068EE36493F0AD2FBC772740EB6ACB2AE3B3E23816D44CF2323BE97CEDCF387B1FA328DBAE74BD392F871C8FEB02B4A39CD272491FC28B29A37EB224F502DA7D6319B6EA6BE4959D06FE925C10B80B5EFF531574FF93BD490485F7A6541F4F5E90A19171E0585F8AFDC7E364F0A97C4551C3A66D9B9497C7E8CEDD7A9619B9AAB4DF78DD8B337A07EFCFADC0DD1415F7657B8E471E40B71DD84D369D2065DA74640CB61DE9C62C18C295979E4B95CFED0178DB82FEDD41AE9276290E91DDB9809BAB9ADFBA29E84EFF0D36DFCF8D744BD3CF724C6534A2653405D0AA594A0ACB4A6167249DDB51064096A23D52A4620607761F279534C9B3135CBD6C32172F3F955010457304C301D24601DB0FB6F2F033EB7975C31EE27D69F44C9AE195A58C1D3B9219D3C631764890EA623F43EA6B55CF64E79E265ADBBB49A52DC637D653901F226507E9E88ED2D6D14932DA47797E88E2E20AE2498B7B9E58CBE3CFBC4A3858A6A472F14C1A5BE9FC939C3EA992AF7EE6838C1933868DAFEDE2873FBC914F7EFA439C72EA68D72F2463A365A53360933112AAD7629AAE4247A818CB0AB16DEB4E8EB71E64E6EC69840AF294F2E3C8E1240F3CF23CAB5FDC40BC2FEED1588E4A7A4116345BC3CC68A4FD61E2A13005931A193BA6908F9DD3C8050BA652289FADAA05723B33E905E514436F48BC3F09D0EF258096C905C9BF130324A9006430D624CF3948D7A6DBB1B7DF4B9175CC1DBC908B5B55D1EEFBCF01B42811543A87787A788D2D0196B4E8A07D63A93DEF0B846A17E218A5EE98713FF8BCFD0AF31DFDC69B01747F19EF5A36BB0A424735B38E44121C6C8F92248CA5FBB11C8DA4659112D31FF1B850F239B7F9D7DFEE54032CDE77BC71DD77F25A07784677AC5C8E970CB618421FC47A39D6B41B539CECD2197AD2364DD2BCCCE4B37CC942668C1CAA8650946AA49F8376FF2E3CF689B446EEFB03432A39F0CD796C28537D4F4A974B43C9C9ED54EA8980BC652BDE55D40B12086B3919321E072D715722B1CBA41284823EE64D9BCBEBAF6CA6A074183B36BFCE9C5121AEBE7439A5D2C4336CC2613F7E5FBE5A240F77C53878B88B743C839D49139608B6821021493FE9EB20A45BD40EABA7ACB28264C6229932559357334471234BAD9FB4254E7E594509998918564ABCA635F6B5F62A995CDBB14E1A468CA1ACA29AF55B36132A0A73DD07CE62484935056103C3D0D9B7FF20CD873A7975E326B46C2F4B17CE63FEECD3D1758B94D64342C43B7A899A2854FE33699D3B6EBB1DBF9E60D5AA55048225ACDF7880632D29CC6C8635EBD69048F672F6D96711EB8B52595E467B6B1B8EA531715C233FBDE13E9A3A12A4CB8A193D652873675572EDAA3399595BA58E9134166528462DE32AB9E86405FDB6AEB3775F052DD3656ECDAB3C21C4B8C631091BAD746DB98BECE6DB28CA34BB6A82DCFCA097FE90334D52CA05250893555E09CF14179DA1881E7D14D54B3F4970F472B27A19AA8D98F31A785B47F6BF71E7C1003DA872EF77F5746D2F046B684964D87EF438195DC0390FC717A4570C73A429E6F793364D34C350A3F1025E224B55CA54C5BDEB8A977627CDC4B5EFED6F13C4DB43805E4DFB791A10C3B1F13B2666BC8F634DFB49F6752BABD144264B5BCA60737B96F18D63B864F9FCFE2941B7BA1FA8A67300AD36C7FD46FC83951B83AC41BD2414E53A37C8F428378CE2DA853A642DB777A1A2ABCC8C3B88E2D8A42D99144C61CBC460C6C44C2409683AD75C7201A5411F3B0E7670CB6D7770EEC2C95C7EFED9E40947ECF711CA0B103634C5E3264D8B442A8D9996E93D937822463223F48989158DA2654D468C184E79551581FC30D9AC3B651749D81CEF4AD2D212A1B7B78F82223FE5250594E487C8AAA9C4940A37E88E88656B127FA090AC96C7C34FBDC8AB5B76316BE2689C74925933C770EE390B08E70558BD7A0BBFF8D55FD8B36B1D975DBA9C2F7DFA73ECDDBD9FC2CA2C43EB46B16F7F947BEEB983DADA522E5871016D2DC7308C143555C3D8B7A7835FFEEA7676ED6B65C890022EBEF46CF24B83CC983E55B299C9A43314E4E7535926BED4016EF8FD93B4C735EE7F760DD9323F23A657F3C1A5A7F0D125B394939F8ACC92068FAA877274DA1B50E76405FDDEAAA095E85D49672D358AEDCB6694595274CFC3645EBB89C2C43E3580AC00DA1B353DD193437869A1085C1DB43B05274A8742E25A2DE5A77E00FF8CABB08C6A2476A95F26F1DFC0DCB7F5AB83005A55F039ED8607AEEA9C5761AB36EBF6B6D0858F80C451593A19CD473C6592CA98AEBE58B9C1B94E73B99101979217EE3D5753CB5B1C641BF9365EACEB692280EFCE1F8A9E5C005AB79238E914479BF69110595922462299A0C70AB0B34757314F9FBCE64A9783CEBA76B0B9B82AA96495E84645669D08D0AEB1FEC014616E8C3B07CEB9AA7A7005ADAA68F1D73025BE4A4CF64D358E2DCF9D16B99B74B3EC145933A552E0DB5BBB38DC748C2975F9FCF89B9F62D3CEBDDC7ECF838C1D3F990F5D711E0DE5F94A977DBC3BCEE8BA7C65DC9F882548A633C4249B309B211AE9C0AF4994551A3393A6B4B488EA9A72FCE1207A5E18C70870A035C34F7E7E077BF61D56EE73A6E9E0F365185A5DC4D8861AAEF9E08594E443261A57FED3924C93CE06491BA57CFEEB3FE570BB896EC7F1D1CB84F1057CFDFA8F3165C218FC4690FDFB62DC7DDFBD949695515A388C5FFCE2279CBB723AD75D7B2D4F3CB28D6F7FFBAB2C5E329B4F7DFC63D40EAD226926719C3CB66C3CC48F7F7223475B3BC90BA6F8DCE73E4EE384C9BCB07A0D1B5FDE4055553923470F23954A72C1CAF3A96F28E72FF76FE0DF7E70230989CD5A3889331B2BF9CE07CEA7BC584CFD7376D1E2C3EE35E7DF48A59D04E8F716402B3582022D4B511412C713327A49343F4DEAD51BC8EFDBEA02B4023AB775956B81293DA6CBDEBA89D16A0B269D23A102C2649C320AC7AFC07FE697B07C43DD440FA5157AA378F36DA0D8DBBD6BAEC0F0140E8AAAC9A92D943E57027335B635F7B0AF3B865D54A6A44F028EB1B4AD8642644BAF5EB37283736586398076E5CCEEB04E6E864F384A2F1AE56DBD5AF5A80AA05D499C50474271C8A28999A6E55033D1AE76E50B9D4E448966FD34457DF425D37CF173D76299F2129596CEA3AD64D433EB9A1529DED99D6E5421C1F2E555C8B931EF9C87864B65B8E3D9FDB6A1DEF4A0026BE5A5E1FA6A88ED67D67413B92D4B5395B565C655E0AB480F6A4AABD8B6711B99EE66AEFBD02AC64F9A406B5794475ED88EDFF073EEA2796CDABC8DE7D7BECC9253C773FE59731956554A5F3C4D9715C04C25D1D351F20C8D800C45D9168585F9F8F2FC98BE10514DE7D935FBF8CB7D4FB363EB66828120A140B9A23CB2768A78AC17C7CE30765C1D179D7F1673C78F25288B4726419A20FBDBD35CFF6F376269D5E8768C803FCAC24563F8C4B597525F5D8E95C82A8B517C3E3A7B12DCFFC0F36C78ED55268C2BE5B28B2FA1696737FBF6EFE0E24BCE513B47D3B2954F8BF86C63FAB8F1C65B18565F475EC0A161442D3B77EDE67737FE815020CC87AEF90079F93ADFFBDEF718366C18D75D772D5902DC7ACF736CEF49503A7B12638A2DBE7AC999CC9A3882406E53A668C5DCB9F28686F449807E6F01B46B7224A025D48444576509F91264DBD6115FF73342DDEBC5C9C07BD3FD75A3E70F2DDA4E77B2D0ADFE5C347401D0876387312BE6527AF1CF7142C3D16D89C792A686F068EF44E7F0B6F0CEBDF30900EDEE02721AFF9CDA42EC6E1E78612B05B523C904F2D5B45B329D266EBA2E652E6A7A69318A3A18308C722B680168B78276771AEF0CA0DDC003E1C4DDB228E73EE7B74DE552D7D57E9C9EB6A3C47B3A48F6762A3FE8CE6C1E5D098B25CB97336EEC28CC8CEBF721120B792C51802812CB9B2E14A0CE8DA0BFD1A16EB001923B1538A0DC109ED91D5C9166988C45BB433A32BA2D89DCE2D627064822934F24536066280BF9B9EEFD2B189A57426B6F8ACD3B772843FD8AEAE1DCF2F8165EDE7A809838C2193EE5A459CA11AE5831932B579E43C6F6F3C46BCDDC7CE31F9935BA81F75DB2989A21418A744729219C4021EDA69F7FF9D22F696B39CA9CA98DD45705F8E4C7AE60DF9E6692C90CA15098DAFA917CF747BFA32B9E66D79E7DD486E19A4B5670D6693349581611025CF7D9FF24952E269B89535692C7E98B6633766C232F3CBD86F623DBF9E435E7B372E512E2A92C896C0ADDF0E31720CC485ABA414A1A887E1D2B13E4AE7B9EE597BFBB93704119634637D0DEBA9FE9531BB8F4E22B79E0BEFB292A345975D14A74239F583CC2D0A165E83E1FC7DB3B185A55AD4C98D66F69E2DB3FBF1DBB710A2387F858DA58C4C72E5B4E5E3F40BBA7766E706540067BD20FFAEF22C4BB8D8356622E4FFD2E13802A27CDCA12F2A731225BE97DE10704DBD76290F200D9032B714793B342840F52452B3ACC8B53121ED65BC5C5C92B121847F595BF472F1AE702872E668DFF0B00DD2F1F75F5CAB96EA7D4C3C7226976B444C8F80B9501BE349AFA120992968323EE74B23BF01A83DEA5E111252E90E6DCE9E44FE190D59CE0DF4DF67CF3D328B760B82FCF759C930550F968E0108F44E83C769848FB3152BDEDC4E34962B69F1ECBC05F5AC3CAF357120A045D532A014C99F8935C429564E27A6E64A582F62608DF1CA05D10FE9BC6A0F2A9C82A5A4380D9925C41CB54CDE5BE78CC0D631025432A43527CAA23BD445A9AF9F6751FE1D45175ECED4AF183DFFD9931430B59BA6439EB9B4C1E78F6359A3B7A557C6D36D14B55A88D65F346317DF4280A4B87F2D496C33CFBF40BD8D12833265573C5856730B9A19670208F24A5DCFDF46BDCFCD82B983D87F9DCD52B993DA39EA99347BB3981B259B31D3A7A2C5EDF7E80B59B8F72CB5F1E259F24CBCF98CEC7AF5AA17CCED37A80C79E5A474F440293431C3ADCC62B5B7628DA2493B2D0D287F9CAA7CEE7739FBC8AEECE084FBDF012D535358C6C1881960DF0EABAADECDCBD892BAEBA84C2FC52FEF29797F9D98D7792C91A989938F5B541BEF8B9AB0887AAF9F10F7F4659718AAF7FED7AB66C3BCA5F9F7A94B397CF5580ED0BE86C7D6D3BA9648A8AA175FCEE914D6C89852836224C2849F09DCFBE9FB0DA050E4219AFD838A1DD71B2827EEF54D00AA0D5EE5D00571236848376084A68ACD944F733FF81FFE8D3F8901AD36B4A78DA6195482C35A39D33867727EAA4EA934942F999DFD6E8D1865379EEF730462C00A90174C9257C8334E81D14C66FE757FA4F6BB5A6E4E81AD7063469C30B9B0EE02FAF511573560F90B42D7A1349326AF1F20D18D3A8EAD6F5B1E81FD576EB677578BCFAD703E8B7F30ABD625F19E9BB5590323A5295B9ADC0598E583A9120DAD946F7B166E21DC74844234AC5205440BB5DC882458B983A69BC02521945D604A45DA4EA0768A1360464D59F9E8FF3008D3110F63A58D5E102B2EBAF2155B6F86BC856DE110E3B230A051B53D684545AC9CDC41BBBB5E518913601E80F73CE8C096C3E1AE523D7FF3B2B4E1FCF79CB97B3767B1F8F3FFF1A6DDD510A833A85019B9240371FB9E25CCC4894BCC222761F4F71E7BD8F515A5A414FF366AEBDE21CCE5E700A863FCCF64316BFBAF92E7C8545CC1B3384499506975CB94CEDF5A4C1188B27C8F3870804426A57F39B5B5673B82BC58EEDBB290A5AFCEB875650535EA0169B8448021D3F66A680D7B71CE267BFBF17530FC8765201F4673FBA820F5D7A36E9BE287BF7EF2365690C1F399C9E9E20DFFED66F693EBC996B3E7C01CB972C61D3E6766EB8F9018EB5F529280DFABAB8FE2B575114AEE5A73FFA258DA3CAB8EEDAEB78E8C197B9EB9E5B5879E13CBEFE8DCFD3D39BE43FBEFD6FAC5C7936734E9FCB1DABF7F3D8CE5E8A02716AFC1DFCE2FA6BC857BE292E3DE8328E6E21E09E7F1E709F04E8F71640ABEA4F970C414B8D74FB6C8DA05FA2855AE8FAEB37F1373FAA2A68D7AE32A75A106B4D57D9A1D9E27FACE17724C9C3C2D26D2CC56BEBF81C9D3E6A30265E49F9FC0F8151E301F4FF10BD91FBA84E4068D78F53D232329AC68E633D6CDC75989A8631CA6323AB19F4A6D3F42492388670D1AEE6598E536E3AB0BF2FA32E86C1DDF41C3FEF2928DE2646BB8A901C40BB1ECE4A61A3ACFCC1CE64B0E25122C78F70FCE06EA29DAD6AE4B8CBC9E760329FCAEA6AE6CC9AC9E89123F12B125B3C323C8016A016DA44F1D16F04E8816194011AE3443BD15C9495FC5CC9EAC494DF74A9974432AD067CC4DFB9A2B080A91347E37362649311CE98750AE5A152F6B444F8F16FFFC0A253C63363FA0C1E7A692FDBF71E24E4877C43E39C33E7D1D37E94C963EB49C59314951472A0B58BBE680CEC20CD3B3772CEA2390CA92E2792D6B97BF57E9E78E6392E3A6F3E2B17CCA4BE5027934D2A00AD1F3192FCA202DA3BBA39B4BF995367CD23A9FB38DC19E789E737F1DAC657593E6F02CBCE984D50CF12CD686CDBDFC2EE7DADEC3ED8CE4B9B0E621B214535F9ED18E3469431736C31EFBF782113C68DA3AB27C1D36B36F3E4737B58F7EA1ECCF4314E9956C3973FFD69F2F30A79F695FDDCFE97676939729C505E1F975FBE80D9D34E61EDF36B31748759D36788350A478E363379CA68A64D1FAFBC4B1E7FF219A6CF9846417131BFBA672DAB9B7B69A82FA2C06CE1F7DFFC3805EA20BBDCB314489EF0D51B56C94D819D1CF57ECBCBEEDD487128805695AF709632B2AD13F44B15DD4ED7935FC37FE0217C4ECA7366F36A446930E92EA521002DD4886CC31D4905D12D35DC2106E6866390D0CAE92898CCD8CBFF0D429394DBD789B741DBB69CC462F01DDEEC7B6F13F83C0C75AB0D1596EAAA4E62683CF4D276D27A98CAAA21D89A0F4B37E84AA48848669DD0031E8521CDD49C694D2EB72B4765B84D427951B9E6A7C7A7BCCDD7E94682B9F1532E55E23582727593806C3A41A6AF8BA37BB7D379F400D9780FDD561E87D3F9D892805D51C1E285F3195653832D2E7B8A8F769B86A26291F470C5430B972C15B0D248CB48B92BAB53E0AD425EBD6414F1A296AA5938683545282929194C69022A999D4D3A2546F6599C9449757E3E172D9DCECC89C3C8CF0FB1F1B5BD341F35195253C9BEBDDB691C358AF64882A736ECC21FD0593C6F029505851CDE7F80C307F6337BE61402C19032A2DAB36F174B172F24CF2FEA8E0441BF4E7B6F1FCDDD16BF7E7003BB766EE1F31F5ACE9279D328CDD359BBE66562B13ECE5ABA08573AA0E800002000494441545F20AC5259FE72EB7DCC9C3899B90BE6D1D213E7998DFB79E0C1C7185B5DC4C72EBF90B2904677D2E007BFBA956D7B7651337C141D7138DAD243400F61C8F14927185ED9CB6F7EFA59C68D1EABCE931FFCE27E6EBEEB79B71849B5F2B3EF7D9E65F367AAE3F1EACE5E7EF8937BD8B5A38960304E4343884F7DEC1A029AC65D773F42A4B793CB2E3D9BD9B3E7B2FED5ADECD9B39DD9B327523F6A0CBACFCF137FDDC073DB9BD96F6A4C9A584BD86CE3F7DFF8288503C1468A62544BB8D2BDCB797712A0FFE1E5F66E0468A97E95304CF913BB9CB45435617F275D8F7F9950D343184E4A350065E4598656048C5D80168A43C4795EE8AC12CFABE02CC533CB63A709D3EBAB60D8B95F82FA5540614EECE01D4F39EB3C899A3A809E119387DBDEFAF10F8FFD3FBC43FF63BBCF27A2C243BD69EE7B7E33C31B27A88B3F6B48328A41772C49426C321547EF6E28DDCFD63332EA7FB2BFD138793FC93511FFE1ABFA9B3BE4F2E87291B1EE73BA5A754577D8199C648CD6037B38BA6F27C9EEE398B69FAE984D440F6105F3396DCE6CE69E32CB4DD496AA59F4DB8AF2D0DC316D098CD5DC493FF115513ED58A53F6F204C5465452B8BD3C4191CB09285B02E08EED26A364A4312863E81699741C9C34C908647A632C9D378CABDE77364EA888EBBFF13376EEEA66CAD8323EFEA10B4839856A0CFB8535EB195957C927AE5E456551315B5FDF22BE6E4C993C96A28222C56D63A508E587157D52921FA6B3ED38C7BAD21C8DFAF9CD23AF7260CF362E9C5BCF47DE7F21050178FCE917193AAC8EE953C770ACB59B516387F3C8438FE3CB9ABCEF8ACBD97B28C2CF6F7998B5EBD6B3686A03D77DE0122A0B4274C61DAEFF8F9F3067D6582E7EDF0AF61EEEE5A65B9FE6F5CD7BC8A652F8CC04679C52C37F7DF7D354561663393EB6EDEE664F530BD1588458771B1FBEEA527C5A5251622F6C38CE0F7F7E1F4D078E1334A22C5F3C990BCF3D9B90E1E795F59BB9FD8E5BB8E0C233B9ECF22BF9F4BF7E8D834D7B983F7F2ED77EE63A7C01876F7EE316D6EE3840DEB871CC3F633205561BBFFCEA0728567D901C95E15E36AA5EEE17F59F6C12FEDD2BEEDD09D0CA6FD4F57256D3821A797E8D7C5F27DD4F7E8D60D303F8EC840268F14096F69E4F7C178483D6DC8A5BAE25D3F02C3295D6D90B45557ECA3ECC4021C5D3DF0FA77C16F4AAFE6D9A7B300701B4C7ABB9BABFDC14C87F732CDCFB50DC0119F7B1646149A2B1714F2B2FEF69A371E22464A0DBD4FCC46C8DEE5882B4C8EFD4E0C83B9104BE11B8FF79A0EEA739BC5F714D7A5C8096869F6E9B689924DD2D87683BB08FEE96C3247A234A23DC91358819794C9C3A83C54B96E0377C4A37ACDEB770C6968D6688565974BAAE9A43260265F044388AAC786A781E1C02C2E2AF211C764EB1A18CF995BB9E9822995E08AC501E09CC541FA36A2790272DBFF83EAEFE9795EC3BD2CDCF7E793BC1D010962F9DC5FCD3A7703C11E495F5DB30DB3B9832A68EC69195AC7EF209E6CE98496145A98A762A292C252CE7A09E22ABD9A4C487423208A3497A1206BB5A92DCF8F0CBECDEF61A3FFDCAD54C6B1C4A81DFE2999736D2118973F9A52B292AF2D31733B9E1D7BF62FEE9B33965DE4225097C65472737FDE9018617A6B8F6AA8B28090768EF4BF3B3DFDCC4072E5DCAE233E712B761DB9E2E7E73E3BD98C904F3E74EE7D4D98D8C1E518EE5887DA82C9A85AA303184D2936C45274B262BAF37C0D32FEEE3BB3FBC8D9EBE2CF9FE34238706F139167535B5ACBAF8729A9A9B30B30986D60EE7F9351B983C713CA79D36033DA4F1D2BA26D6BCB089475EDA807F54030B4E9B44195DFCEC6B9753A442997329EC5ECAB78A311B747E9DE4A0DFFA627BB702B47220D62D55A9398E501C1AE14037C9B53FC4DA76273E2BA2B206A57A1280164AC36D040A67ED72B496D8D9E546BDBD2168496A117031F520DD053318B6EC1B1835D3A47582A389AAD3AB4B073302B94A57191AE538DD7F1EE0DEF49E2A4FD01BE0D0746593D967693CBA66133DD93C468C6E44B3D30AA07BD259BA62094C2FB2CA73D87F072FE09DF1EC6A247B90D9D260F9A25034BA9D25A8D9641311621D6DB41F3944FBE183741E3BA4AC5023199D68A09CBAC6899C79C65CAA2BCAC824530444126DA5D5FB121F67D12E2B3F684F232DDF5334869545135A43650B4AD52C15B7A7DC302D457FC8EF5AA9A45AA0E322B54BA458BC603E13EBEB70A21DCC9B3512BF6EE33334749F467BB7C3A148922F7CE7F71C688991EFF331A930C555172F533F7F7DEDB35CB1F21C3A7DE53CBC760B4FFDF505268D1ACA973EBC92C63175DC74EBCD541797B364C1220E1E6D2762867872C361563FF70CA38704F8F4872E665879087FB890DE588A17D7AEA7B5F52813C7D6B36CE962CACB0A88A4B36CDEDDCBBFFFE076FA7ADAF9F247CFE1CCB91355959EB275D28E8F3CC76448651976D0A746B3240650826085C697516ECB14B37F3936421B895A4657B40FA44867FA300262472B81088544123A8F3FBD8E87EEBF93A50B6773E6A2D3A81F3E4C8D8EB7B476505454C4A64DBB993DF7747EF2D31B28ABA862FCC4E9FCFCE7BFC1D08324F3F2088EAAE7CCF95328A68BEF7FEE52CA0CB105F6288DC1A1172701FA9FBB3EDF8D00ED6E8F845396E699F0AC3EFC01080722687BEEA273ED8D049347309C841B082B9E1B1284EA255AFA84E210372E19C9533CB6DB3C14DDB0EB4CEA5207C71841E9DC8F5339F33CE55FE020DD75AF23AD9A7003C7581A204AC3D03FFCF1CF1DFFBF7B2F6F8C505E9BA5416BCCE6DEA7D711AEA853DB62194D9614EECE689AAEB854426E94D5E0DDE3DF7BFC133FFB375221FFFCEBCF1D87DCE3B9BA6A4FBFAD541E620DEB60C84875324A775B2BED87F67160C76B6493195269875E7F19764139E3264D61EEAC59141862A69F560D2AE17615E86771134094878654D22E080BCDA14B828B00B470CFE203225FA624A228830BEC94A97CA9C5A324A91944FBD254550C25D9D6C4F0723FD77DE4FDECDEBC9509C36B19337E383B0FF7F2EBFB5F62C3A104C75A2314692657CEAD519CEDBEC347D8B4E6393E72F985B453CA6D8FBEC8BA75AF337678355FFCE8794C9E349A8EEE2E52BD3D541517D1D5DD4747C4645F7B967B1E7D9A506198913585D496E85CB472053E43C71F2C50F98CF9799E03AB1F7EFBC71768EFCEB267F74ECA0A35BE72ED2AEA6B4A4967D26EA880E510B092549715A90945A5159753DAF093148E45F7ABDD879571DD056537A254A372CD18367E23432A99F6405B869FFC585A8023879A195E5B8526C9296993F64E9B175FDCC4EB1BB7F1DAA6EDCC5F74364F3DBD1AF4003E5FD87D4C4DA3CFB0291C375CA5B514395DFCE7E72EA354F7E60EBC895E654DF6372CDBC926E15B5E6DEF36807659D5018A438CC1257A29E087BC601CAD773D1DCFFE1AA3ED65F2EC1ECF50C95DC18583969B4F19C50B60BB34894093A20664FB2702B1AC68890D7A7CF5A4872D65E4F26B71FC7522C25351B56E6BF2C46D9A3B91E80601FC3FA33ABC825CE46512D3B5FB789C079F5BCFB0518D9457562AAAC5D402B4475374C6D26475BFA242DE78050C70C3EE69700227E87DC71DAD7E67B71301DA6B164A234AA9FBDC400425BB938494AC49261E23D6798CEDAFAE26DED1492696A4D7B449F80AB18BEA9931631673A74C40D7258FD0C227409CC990D5FC98A6C8F0DC0194018096C943A91605A05D6BD18CFA9DB40270CDCA62A765BC3BA55CFEAC503E7B9A24C95A236C479830A29C53268D21DD7E88CBCE3E9D5113C6D01471F8E8B77ECFC16890AC69506027396F52014B4F9B861E0A736CFF5E268E1C86162A645FF351766CDDC3A8865A162D9C4A614198D5CFAFA1A220C094310D2423095A3B22C48D42D6EE6EE5C1B53B683DD6C4D205335971C61C1AAACB48A513F8030686DFA0A0B28A9DCD2DDC7FDFCBBCB8FA1546D5FAB8EAE2455CB56A99FA8C62968FBBEF7F10DDAF33636C2DA386555156568563BB010EB1341C6EEDA6A3B79768CAA4A3234B5F5F82685F4AD1414545614A8BFD9416E894E585292F08535111C417907206023285683924B3267D699BB5AF1EE5D7BFBE9748B7BCC6A0EB16EAA5BFDB59CDD5DCDB199221879289F52C3C7D22F9563BDFFFEC15947853A69EAAD35516F5CBEBBCF3ED24C5F1DEA13806BF1355F3A9B3C520A8003A0DD611929BEEA2EFB53F5260B6E297D46AA9A244A7ABBB2D659FED479393596511BAF97612E523548968A40D6FC823A295931C722A23567D15C73F5A351105DC5CB819E81BBAF5BC0B6FEAE41BFCC3778A7A72A5E5AA50518369B0B1B98B879F7F9DF1932753565EAA9ED5C4A700BA239A51D1566F366C32D8A4DF0568258EFE9B9322D75C7C27303D586EE7EAADDDB46F7758DBE58364ABEB0E09D9908ED2B27F07ADFB7611693D4667573B7D698784BF023DAF9CB3969FC798C6E16856125DA80D69ECD98ED22F3B8A67769DEBC436D4E599B364BC0ABA7F30451A8AE2C121432FE98C38FD6066524C983A994DDB9A884475EA2B020C29D2195651C282999399505F017921BA1C83CFFDF07E9EDF791CCBC923ACA5995F0F0BA78DA27EE810BADA3B301319AA879451377408E1503E3EBF813FAC73A0E900D515352E676E9AC4DABB48C7E238C2A587CA7978C37E5ED9B495DEBE287595E54C18DDC091437B0906FD64B23076F23456AF7D999ED656C60E1BC2E52B4FE182A5A7505E5444C6D6E84CC217BFF255EA87D7F1A96B2EA3B2B080AC3453351F494DE3D1275EE7D127D6B37D77137D7171AD73ED45FD3ED402260D71196DF7E9594AC361C68F1CCA852B66336FCE04259DD32D0DDD32C8180687DAFBF8E12F1E66DB8E367427A0DE93245D5852C438723D48B1239FAF493C68523B671C73678D243FD5C67F7DE64A0A72E7BF9708AF1AFCFDDF3B09D0FFF05A7BD755D0B92EB0C0B29D4BC1736576E180786846A0F3558E3CF4158AD307084A03487C2184AF960A5A260905A065B25099F9BB00AD92BE354379E7FA64D3A7DB44ED7CACCA69549DF579A83C4DF1D0EE4DA88481944397F47893ADDB3F3CFA7FE70EB26FF446B505E864ECE6A5FD1D3CF4FCEB4C9D3E950A694E6990B6754571B4C72C35A8A02EA037A985DD6B62A04C56CA8B4137F5F377B098B894BB50483976DE5BAA14D5E272FEAED5A9DBCD57495B4A556311EF394EF791FDB41FDC4DEBC1BD44BA7B486703C48C62864C9AC7F46953185957852E032752418B4FB348E9BC082B44B592F1680D71A513158780B10CB348FE6046A2ACC4A4DF52F486168B32ACB284154BCF209EB449A6FDD456E551566850140A93E733081A1684F248E84156EF38C42D8F6D65CFB11EA2BD5D4C2D4B73C6C45AE64C18453054CC238FBF48DDD0121A470F537B3AF197CEC8591208535B554F536B372D9D7DE8F128430A82D414FBD5CFE38122B61EE8E0D5ED87D8D9745805C34AFE61C0AF93362DE50217D01D169D329A0B97CCE68C59E3290EFB94CDAC48E452E81C3E7294A28230D545C5325C48467348E8061BF61DE73BDFBB95434D51B5FB0886FC549555D271FC2813C6D5AA0A78E3EB3B104E50F7FBC92452AAA13E6FFA103EFC81F369185643C074F05B1A294DE74877929FFEF651366E3DAC1435AEC45E9AB492D22DE79BE784A86589FA328C5C388579331BC88B1DE5FB9FBA92704E5E9FB3EC7DB353FE6405FD1EAAA0BD982601841C400BB84A4C5C5872DF9D0C5807387CCFBF92DFBB95902511972E400B204BC56D645D80167A433868E50FAD4E3CE1B3655845E0D624E504B00A47E09F742505B3AE06BD143419FB1693254F2EE4910A2EB736484EF40EC0EE44C4F4CA706F34567C9F5FDCDBCEBDCF6D60F69C53282B2EC430644B6AD0DE97A42D6A91D1430AA04F80DE77D6F7737703DE0BFA7B6F2507D0EE40D01BEE290A1BCF4FC32556BC06AB2D1A741B27932419EFA4B3E50087B7BD466BD31ECC7882A44C6F960FA77AD818264F9B455D75397646647102C602D2E229214E6E12FEEA4AE984D21080CEC8308A8C8B4B911E8F819551B983562246A16DB2EC8C39CC1CDF407E300F9F8CC8FB2C35C5EF234F59CBFA7D59F56F2760882B3FFB8F46D8D8D4CEDA751B195DAAB172E12C7C7686B6CE345D7D720E9944221D2AA1243F3F9F8C9565C498A904F387F0E4BACD3CF6EC5AC24E92E92387B0646A03E545214170B2FE42BA6259366EDFCFA1960E62BDDDCA052F100E50515AC8F891F55CB46C0E7515850A4875511C19EE14AD6ABA59A24F92F06FD73637A169BCB4FD08BFB9F379B66FDB8F133331B42465A5797CF05F3EC8FA97D63075D228CACA4AB8F39EFBA819D1C8DE832D1CD87F54A5701784B2CC9C3C92CB2F5ACE9486A104327192AA9518E4916777F2D35FDD8A4F979DA386E1F36388BDAD251ED4AE8DAD2CC6315F86F1CBE63073C2108A12C7F8EE759713CA099E3C35526E80F00457819300FD5E02E81C308A9E59DE971B4E29148798A4BB55E27132DB6EA275CDCD546A11F46C5C81B16A05AAB05897AA90EFB9369B9256EC65FD49DAB78A8D4FBB61AB817292E5A75138EB6AF2879F0646B1AAB4DD7173975F956A5A00DAF5F7C81D6BEF1FEF14A80757D01EC5B1EE4037B73EBE9629D3A753573714BF26CD32E84E981CE9CD907464F118B0ED7451F69F481AF4169B9CDD67FFD93208DCDF0AE7070722BC796C564ED5E2FDE94D370AC888CC2B2B86F9E928D1A34DB4ECD942D7E17D7477F512370DD2814A0AAA47336EFC68268E1FA9405046B5E5D064D31934DB56923C45693836C98C98EF8B7EDA5176A264C401CEB511AD2ACA67E1B4094C19398CB0583167B314E4E5910AF9C9F8FD6006D4B911CA33C80B0BE82508D83A01DD4F141FDD927212D0292D2E24914ED399C872D7435B4998699A0E35515359462CD243C330E1A5AB78E2E59D1CED8AD2934811CA46692C0F70C5C2298C1852AA8689D430ACE123AD3CBDFC4A9F6D047C684183FCA041796188CAE230C1408096B88F275F58C3BE7DDB587CEA0C16CC184749385FA5649BF8E9E8B3B8FBC957B9EFA90D1CEE4C6125FA983F732CE79DB3904C3A4243C3040E371FA5A7E3B8CA65D47D3663C64D2212CFD0D5D64330E0E7A1275E61DF9EED0C29F373F1D2392C3B6DA272DF13DAAC3D1AE0F0B11E74DDC0CAEAB4B5F771EB6D0FD2D39B563604928F298542DC309973D1994CA8CF674C7E8A4FBE6F29C1BF0168D75746EAEF01AAE36493F02D11FA5D4771F4D776B9C10A57B62032BBBC90E79761F780B98383B77F93F2F876027694AC17C5E76EB1A5B1E8E615E6A41839AA4301B8C235D1D442863CFA7CF584C6ADA062CE353879A3D07429B1A47C7123A75C758837BAA27059FE973B33DDE77ADB37D51A175EDC2DCC656BBCB925C60D773FC9887193983CA991806693312DE2598D83DD492557736D51079EF0042AA3BF9A7DB357E3F2C46FF7D69FA892F3F51844759C706E79EA16B54B515ED4367E5D232D5392423325FAE86B3B4467F3768E1FD8474BD341B2FE52924629D5A3473363DE1C8AF30238665A49EAA4692836AA99B418EDBB66496931CBF7941D3816995814D249F44C8A698D0DAC387D06F986F0B1210ACB2B698FC6696A3BCEA13671DCEB52664A62B13561DC08664C1CC1A4115590723FC780213B2B07DBA791F169FCFEA12DFCE9916DC4120952991445C52544BA3A185A14460B97B3E77852D1647636413971E68DAD62E59C911484C33477A58844BA1839BC8621794182B2EBF105F0E7E793F507282A08216E80BE4010CB08F1FB0737F097479FC34C4528F3F7F2A56BCEE6DCB39611F4E7ABB4F40D3B9BF9E67FDDCBD1F6043EF9F893C799D850C8D7BEFE254C1B6EBF6B0D9BB61CA4AF3782EE6408871C6A6BF3F9EEBF7D91F2908FD7361CE27B37DC466B670F5A36495DB1C91F7FF1350CC352693326416CDDAF06C26C0AB028E65737DCCD5F9F5DAFCCFB2DDB51B2BF84CFE4CCCBCE664C95C6E9230A5875E66C022A62C73B135455639315E9A5E2AE4F4E12FEC3EBEDDD06D039731FB78E1ED8CE0B7F9717928C3BC1C604386D245FBD89C4EB372935877825AB0C4BB1B4F44E8C5C432D171AAB7E59A930DCB41619959609AC845688563195A2799FC43F6C31E8794206BA882C5560C06D1AAAE1558571AE7CCFFDCE3B04E813E8054701F4FE1E8B1FFFF9418AEB46336FEE54826A043A8B903807BA527426855377ED43DFD1ED1DB8D9B9A3E3DE02A50278DDF058A56871CB79AFAA973F72E3BD02D2728C25785476206AAF8E26DBEAEEA37437EF61F74B6B88F4A5C81022535CCEB071139934B691B0DF8FA6E47332C221FADE8C4A3191B25ABC375232C22DC72493C49F3531CC344E2CCAE9332673D6E93355EEA02F58CEFAAD5BD9D1B497E663AD6ACB7ED5A597D2D4DCCC9D0F3EC8BC39B349F77631A2AE828F5F7D294165C865A99415A9700F7445B9E22BBF637B5FA51AC397A829CBF12BBDBD9EEA5352353350A4CEC3A096A6CA97E6DCB9E35930A946E9F2FF78EFE3ECDBB38B1143CAF9D465E72B7E3A1B2CA0CF3688581A663C467D7931E5436B48EB7E7E7FFF46EE7DFC058C6C8A52A3836F7D6A258BCE3815B400712DC48BAFEFE0F35FBF5735EDCA43262B16CF64DA84A18C9A3085E75E7A9D1FFDFA3E8C4095B231D0AC34012D856DB6307FCE68BE7CEDC7D53179F8A55DACDDB0837DBB76E3375BB9F3F7DF26E417CD4B064B0D83192A0DDDD28A698FF8B8FD9EBFF2F4731BC90B0425BA9BA4AE93F25B2CBB783163CB1D964F19CAC25326286FF0012F758F5254678214392701FA1F5EA7EF4680CEC9745C55860B06019F4138E82538483828499CE3CFD2FDC067C933DB7074A1354C25DE3FC17F4255D332FA2D278F1A045795825CFCB2A5731C43C502247C15F8275C4EF1CCAB30C223400B7A55B88323DC602EEFAF1FA0DD6DDB9BEA3EFFE1A732700755906B8EA2325A531ABFBAEB290E441C56AE5C4CD8B6C4939D94A3D3DC9BA1A5CF549E0B27D83BBEE1B9DED81C3CE199DE2640E7EAED9CF9522EF1D07D985C6370B009931227BA5A721904143AC290741CD9B3B8C936562689D97D9CA6D75EA6FD5013C958941E3B88AFA48AE1C31A18397C38F94191BEA531B3E24467AABF8B524334CF12F125BCB43C4BAAB793906D32B4B8880573E730A46E28B61EA2B52BCDD34FDECFCA734EA728AF503527A74F9F423295A0F94833132636B271C31E6EB9F34E2EBDE232664C18457571908A50480DA924D0F8D5E33BF9C6EDAF1132B28AE736B57C742388664A3BD76D90CA3965D826412B454DA19F99A3ABC824BB38D67A80B021ACB7CEF279D319515B453258C1D31B76B266CB5E92DD1DCC1859C7B59FFC30966EF2E05F5FE7AF4FAF51DCF7F861857CF9DA8B686818AA766E71238F879FDDC637BF772F61BF4E6528C6B7BEF219EA6A6B78694B33BFB9F57E3A6229B28E9F6036A824874636834F8BE1985DAC5C3C8B0F5C710109C2FCE14F4FF1D2DA8DE8E9A3FCF6C79F65584DB1440FAB54F8B4E9A337A22BDEFD967B9F60F3AE26B27A10C336D410554CB7281992CF5967CD665A6D888B4E9F407D6D850AF571D37B646B95BB5EBD85FAA49BDD3F4682772340CBD0895BB9B92A0CF1E408F97C8403C223BAE0A0720763AF72FCE6F7536CB77A60995521962EB0A8B20DCD91955CC0DB0508F97E2E67CFED040A57ED90D60B38EE9F48CDE24F51D270266845AE91BEEDA851DF7E9999375CE21AECBB8AED77C01C789E056E0A94783C48B32DE2E8DCFDFC366E7D7A0BE75FB8925115210C5DB4D03A87FA2C0E7525955638374C73C2A7DFAFDA780B1AE31F15DD6FC97EE4267672D5B1BB58B9D22BD7E7E4445D55CEA743D82137B1DB4D6291F76AABE3E57332D8B11EE2EDC7387E682F070FB772A4A5033D98CFB87113A9AF1F4EC0D03053096C9530ED8E7167D49734892D458538F128F515C52C9B7F3A5555D5EC38D2CEB69D7B9935650AD5253E6A2B82F8FD0538A2CEF11B6A043AAC675533CCEF17C99A8FA696767E2506FC93C7F2910B965059948FF008AD3ACCB9E6CFF4F675ABCC47D329C091455B93D807652642C88A531474282E2AA1A3F5183E3342D08E70CBAFAF67ECC8612AFFF0C13B9FA4ACB898C33D295AE3695AA226BB77EE27D2DECBE2B3E6E2374C7ABB7BA9ADAA64FAC4718CAC29A7A13A5F71F7B6A1D36987B9E99E6DDC7CD7C314E7692C9C52C3FB2EBC9058DCE60BFFFE4B224E1ED9804E36EB10C8FA096886DA75189A341953F833C738EFEC799CB1F02C9E796E2B9B37351339BE937FB9642EABCE5B4232D6AD0CAD8EB624B8E94F7F65D3CEA3644305A41DE9A186B0D36E6F2711CA306DE6184E9B3E923327D7B26CF668957321CBB41A8C51AA516FB19686CFE0F3ED6493F0AD81FADD08D0EE36DAE590C5D14E2AE990CFA0C02F55ADDB7C1006C2486FA7EBEE8F11E8DB89E148FA8A979BA712543C0E5BC0D991F11459DD4D0FF8C564C915FDE79ECBD442F4EA75949F713505632F84E05055596B429DB82D0F57F4EBC5805BDEEE4DF1D96F97DAF53E144F0AADF85A01E8946EF0FCAE0EFEE3CF4F3065EA54CE396D124E3685AD1B1C8DD91CEC4C90710CF56F858F4AE636F8F9FFDE0B71536A06DFBCB0ED13C896379E49390076178501F0750F88D0496F04684F2DE381B85B7DCB2AE48915D53FA57968423A46A6B793D6DD3BD8B3752BDD890C2555B5D48F1A4D5559999A4CB4D20905D0D21C14BF0D01694D74D3C938A16C8673E69FC684310D1CEFE9E3DE175E5389D9D75EB884DAAA62159996F695D21E73686EEF54CA889AA0C6A431751485754C2DC8918E5E7E77EF63643209AE5B712AA74F19AF9A62BD3EF8C11D9B58B76D1B695F909E88437B4F8A84A750F165924CA90972EE6913A81A56CFB32FAC27DADBC9B8DA22FE3FF6DE3B4AAFF33AEFFD9DFAB5E91518F4DE0136809D1409768B2A9428CB56B3E4E52CDDEBB8A438891D47B937D7292E711C3B766CD96A962C52A6444AA24491144991040990041B00A2770CCA00D3CBD74FB96BEFF79C99010836E52FC9336B8104E6FBE69B53DEB3DFBD9FFDECE7F9FCC76EA5BDAD55F1F2FDBB8F303830C2A9BEB3AC5CBF8C9E254BD5B5E5AB0FBDC6BE3DAFB06C5E3BBFFDABF770F9CA7934663238418C253A225239383E7D4186FF7DFF6BFCC3F77E444B1EEED8B8888F7DE803ECDE7D96FFFABFBE41C96B52DCDCB66DACAA98065BC4B6D87C054AE5CBD47AB9F68AA56A6575E66C91FBBFB58543BB9EE543B7ACE2B39FBA874A7184D0CDD17BBACA57FE7E0BAFEF3F4DCDF1D50756C6EA7DE1484555AC0E8B5B365FCE954BBBB8FBAA55ACEC6924768DE8ACA42F4692765A7B2691E730B9D24C93F02D23F4CF5E80369969CA1830013A5065B7829F51AEA60469690A3AC1498A2FFC19A3BB1EA239EAC70EA5F495DDDB8405A1E7290CA12E2B46DF4EDA71C6F5DB4D106E095CD20F74A95A4D38F3AEA2F1BAFF0BBB6D03B1DDAC9082E12748363082531B00002000494441549E78675966AC5CFE29CE1BE66B5AD7FA6277E3821B311558051717BF148BAAE57270B8C67FF8BB1F50A987FCF34FDD43502F29063852B375A860B01252777DD5139187431A9DF2502AB09066F7933E8D46FED19CF7F9DE8DA64E9F3A74730653A08679C53C58E968B7F94ECADA98AE8E77FE07A570900C2D983CDBECABD24BF2A4C987C1DC4543421A7CE5E30739F0CA8B9C38D3479829D0DCB388853D3D34DB116175823814B823543E71B516AA30935F1D67DD82D9DC72D515F80D2DEC39768A675FDFC3DC8E263EB07115859676AA9946F6F75578E2E57DEC3C7A9C288868B71DDE7FFD3A7EE1BA55B4153C1DA73F59AC72F0F03196B7E6D8B466896E3A65CBA66F22E6ECF030E5D8A277A4C2F79FD9CB93AF9C24AA55688C2BFCBBCFDCCE476E58A61A30670726749271765B236D7E84EDC8FDB15463B95E0B2996CBE41BF2F8850CC3B6CD17FEFA251EFDC1F7B964E522FECBEF7E96F9AD1651197CD167118357EA548918A499BFFAE6AB7CEB912771E332CD411F7FF49F7F9F53A7ABFC3FFFE32B54FD3623102699AC70C46D8B9A65E3591E4EBD4EA17E9CEB372EE1FA9B36F3E0C34FB3FFF0286EE534F7DEBA824FFDD207A8944609629FBEC190AFFDE3333CFFDA616A4E413729D145716C8FAA5DA573652B776EBE94EB167472C765CB69CFB93292A87569CA919F5479BC605DCD04E8B74EA02FDE4E4A76BBE43AEA9C442DA45A4D89096FF379EFE1256B68ACF65E73CBC958A74155A6019300ED895852C637CA590A4B08A43C4138B095D1AD5F84DE9F908BCBFA7049096AC6A725DB342142ACAE84B6645B55039DC4125A9360AED7C360A715B79BEABC5B9875E527B03B2E25B60B096D2852DA97AAE24970D4006D444C27BFDE4E24635A80D62452036B4A9993211B6944390CC5F0ED177BF9D237EEE7DFFFCBDFC073C58D5C1C476C15D7393430C6B0249F4A3F74951D201AC8E2B42D1E7A12A325784FE9364B969B8AF65ED860BC30D85E1874D534CA98EFBE871B2F6F95CB2E7F541236310116A35F2FAAE9F7AACA46114A644876BC9FC1A3FB3872F000474E0F10B4CC61E99CD92C2CF804F531A34C270E29625F25A553699486608CCFDD7317B39A724C786DBCBAFF18834367B9F6B2752C6C1439D966BEF3C23E5E3D32C091C132E36A4A6BE3070E0B0B2197CC0AF9F82D9770DDBA0594DD1CDB5EDAC1C4403F77DC7C15AD4D0DA64F91DC33A9967A4BF0B51FEDE66B0FBFAA06B9F9DA10BFF1D1EBF9ECDD1BB5CA92B7CA008AD0E9F4FC059C95BD370CB1F54627D58EEB31107BFCED0FF6F0A5BFFD2A1D2D4DAC5DD5434F7B8E79EDDD2CE96A67E3EA85F899804A5466D49AC3038FBFC1FFFCCAC364DC9855B35C3EF7C97B98356B167FF1F78FF093970EE07A397D266C31A8705C4A91A8CAD8F8D5120B9B8B7CFEB31FA07BF132BEF7D81B3CF993D761EC10BFF3D99BB8E6CAB5D4AB45758B2FD51C0E9D1EE5F448CC8BBB8EB37BF7614A6531BBB0287417B8F2F6F5AC9CDBC0DDEB16B271E11C7C394DCFD63EA0D1B7313D41BD64172E96990CFAAD9F9E9FB50C3AB5CC919BEC86AE19E1B6EAF8BE4D2EE31B6D671967B5641E5046ACCE5239F820235BFF924CAD8F4C54575B2B51AD0B1C195031AB47981C3A866A49FE26EC4ED1DD9010215C693376ADAC69B78162D4893DFF66BAEFFC1D626F0E1192B9273E875AC7990864CC7EA6497FBE3DC2705ED26A72D17456DA302524E312F9A763E598FFF4DFBFCAF537DCC6BC4573A80B0E1E1B2DE893C58823FD139422997634830532BC239EE5260C18332A5501D44335E3EE69363C35C09EAE99748598833F1F5336B9F0DB31AD2F1C339FFEA9C62232A93F1472929C5F60266177C84627E53164AAC3D487FBE83B72889776ECA398EB66617B2B2B5AB2946BA39A4BCA1878AD52272ED7B1C6FAD9B4B48B0FDD72036E546724338B2DAFEC251E3FC71DEFBB8E06CF657F39CB17FEE1C70CD52C828C50C7E4381C1DF5CF95CFD1563BC947AF58C0EFFDCA07A9DA2E83136576ECDACDA56B97B0746E8F8931168C4470E85CC00FB6ECE7074F6D674C8C5FC3228BDB3CFEC527EEE09205CDBADB0A355346B16D2FAB23DE325C23F87B6B531385AC8F1D56553B44B8D165BB407F35E48FFFFB9759B0780507CF0DB275FB0E7C7C96B4FBFCDE3FFB202B167712C555C6EC1E1E7F693FFFE1CFBE8FE73974B9E208B3825FF9C43D9C1828F3C7FFFB7B1C393980086D485355138D081A182353E9E373F7DECEBDF7BE9FEF6E3DC07D0F6E65A86F944CF1307FFD07BF4653A3DC03B9322E4120CF8A47396C64A098E5B1A777F0F08F9FC7CA5BACBA6C19D7DDBC8E567B820F6F5ACE8A599DFA3CE8D2731278232D9B2EF60CCC04E89F9F002DF083881E192F4223C62FB655223493936915C12EB571E818BEB3E8088FBEC4D8CB5FA47C6C0B0DC13099D004D310334528016A3257D4C02A99A4341C258C099D4BA58735E80A64E05A5906DD25345EFB7FD3BAE1C3C474AAB3F1D4A08AA4F7D342D19B32868BDC8FA46A49A10353F827D389A9BBB5E85B5B50041E786A2FCFECECE5831FB9CD1CBBBA8FC368E4F3C6B121866A12EA1C6CD19F8CABB88900AF08EA981A22E54B27CDD604E6982C51260F716A0B4F83924981CCF7CDC0C95BDB65BD356B241D0C4AFB09E97D08353BB544994F86376C1BA73E415C1C66A4F728DB5E7A9D61AB9185AD4DAC6AC933511FA312D7949F1357EBB8E345DAAD2A1FB87E034BE7772BBC33E076736AA842971BD0D3D182EBD93C73B2C21F3DF22A457C42E1B50B8E25138AD8348463E4C77AB96B49137FF62F3E4D20C608BEC796175E61F1DC59AC5D344F7D042B56C4379E3CC0571EDECAD9C11A19C7E683B76C62C3E22E3AFDBAFEDFAD8D18BA261E35B7C091DE331C3A76428D095CCF53FBAFEEB6162E59319FD6425669A09A1C88BB8A8CA97B1E2F9D19E57F7CF91976EF3A4C873DCAEF7DE67DDC7AFDA5F856C870D4C233BB8EF23B7FF25D350BCED607F9F54F7F980FDD7E19D5D066DBAB27F8CF7FFA654A32209975557AD513A3E5CA097EED9737F3C97B3F4CAE39CB9FDFBF8DBFFEBB1F910F035AE3337CE94F7E0B2F63A90942183938966B0C12EC26427F36DFFAC1737CE3BB8FD1BDA08DBB3FBC99395D197A0A11775CB68CD67C065F866E129FCF34839EB6E4669A84EFB6E2FC59CBA04D8036D31B6E9866BDA1EA186433F2A019BA9C6489CAA1A8C920C43906773FC8F8B6BFA3BD7E984C5CD56C398E2493942942611208232456CEA744572F906C5C5EAB118BBA9750F1C23AAE586DC95044761E679C15ACF8F41F12FB2B8934A027043EC111DC0B1B74C91D793BB6441AF792809E5486EAEFA726AA9643DDB2149F3D300E1FFE9DBFE2B39FFC45D6CE6F5178458D742D9B9D470738557128E211382E8E60B962EFA48335924BCBB5496420F5980D269F54DFD360AFE9C1D994F4531C6BF39A64E06F17A0DF6A1DA69A3929D4211B92DC5783535AB8B64BB526C31A023D05D8B512E5BEE3BCB0F50586CA214B3ADA58D490A11855294AB35004B14A25F213135CB77629376C58822FE3D1BEA39ACDA335979E7C4ECD5E23ABCCF37D75FEECD1D719AA6508EC3C9665065F6C274FBE3A4661EC241F5DDBC91FFCDA3D947C97370E1DE2E5ED2FF3A13B6E64517727353FC36814F1FB5FDACE3F3EF90A0507AE5C3997DFFEF88D2CEE68C4AD8E29B7DBB12D2A91F0257C9E7D750F6706C7B9FCCA4DE4F30D542A81AEA71387F63276E628D76F5CCFBCEE36BD1FA6E96C13393E677359FEE63B2FF29D079EA4B136C047AE5AC0AF7FF61791E55EF61AD9716C94FFFAB78FB0BF7740250AFED9273E4CE5DC0916CCE9E1CA8D6B787ACB4E9E7FE1054E9C3AA1E252856C8E4D972FE577FED567E93D5B66EF913EDED87F8E87BEFD087E6D8465B32CFEC3BFFE846A9E587E8E52BD815ACD25AC0454438F1239FEF6FEEFB0EBC851DADA6D7EF3D73F4DA13ECAFA855D6C5C398F5C467A1F815603BA46A663CEE9A29EFE1CCC64D03F4F19B4B8589B3BEE89D4610204FA9E455627092598099EA8409F091EA1E8389C6664EBFF24DE791FD95886770533480AFF840B275A1D81F8A6C9C86FDD2CAEC0916110ADD5F0052B8CEA124AA83B8D949D5964567E90A6AB3E0BF9F926482705FF340EFED4C59F5C9417ADF3CEC7E6D220ADD5821179126C364CF0E301E0737FFA23F6EE3FC8BDEFBF85ABD62FC515A8C3B229E172BC08BB4FF653B58D4EB05C13E11B1B9D66D3B094C09F203CC948F8D453631A87E921258DC0A4AC9F6A049AE6A80A35BFC72FBD6DB6919E944A253513354E2CD3704ADB56C6817080193DC7ABDB5FE2EC4891B98D05BA9D887228F0469DB85A251F45DCB46135972F9D4F3E2E917165C382897C3B2FBE7188D3078E70F76D37D1D3956724D7C90FF69CE681275E67342A1089008B5C8F20225F3AC7B50B5BF8B79FFC004B9A1D2AF90CE3B51AC5B37D2C9CD54257739EC1D0E544A5CEE7FFE0515EEF1DA360D7D8B4A49D5FBE7629972D6CA3CDAD51AC476AE47A6A709CDDC7FA685BBC9EC79E7A8E97B76F57F17BF1313C75E60CF36677F1B97B6EA5C50D98D3D148474B83B28A222BC3C044C05F7F770B8F3FFF1A9D4D79EEBDF56A3E74ED1AF26E8863854A772B5B190E0DD97CF98167D9FADA1E1CD9ACCB252EDFB0948FDCBD99037B7673C7EDD792C9BA64B24221F479FCC7DB597FE90ABEFFF86B7CF31F1F56138B063B60F3A615DC73D755E4BCA2D2EB2A718117DF18E0AFBE783F9E02653695D8A29673711BB37CECC337B27E6917572EEA66FDA22E7C6567241B6D0A7E4DAF0E67208EF7F6A4FCEC65D012A0CD13EC8552621B184004FBCDA877A2D826C14C839234EF62AC7098A117FE9C70E7D7C885FDB83ACC226F17B68629710DAF5A1A6A316E60864CA4032F19B504119162745C719F88A88B929E9DA3585846F3A5F7925B7D27716E01911ACCAA6F851ED779F8EC7B0DD006BB309D3D6D4A197B2FF9F688058FEC19E4BFFCF5B7C8B774F18BB75FCBF2D9CD5862A0EA65295A1E47874A1CED2F325E8F885D4FA7290D9163EA29491918FAAB122384A9703CFD699A9A0FD400AFD76E6AAEF32D33E5F3B97A936FD34F9E2600289E919269A5B8B914FA6A46AB1BA985285D5B137DBCFAF22B9C1E2CD19DF3E8C9C6542B1306BBADD798DFD1C60D976FA0AB204E23559A5C5B47B427B20DBC71EC145135567DE676BF4ECDCF32916DE1C937FA78E2F5639C1C1ED381A07C7D826B9777F0993B2F6371CF1C85048E0D57D8B97B2F97CE6BE08A558B34084D7879B61DAAF0DB7FFC00A76A395C27265739CBA5AD657EF3DE5B58DB2DFCE3066A769EC162959363759EDC7592C79E78960FDE7E336DADCDCABED9BE733FAFBFF61A97CF6BE0CA55F358BD641E6B572C26EBC68CC53EA7C602FEE4AFBE4971BCCC67EFB989F76D5C430E19C611F92C51C1AB2ABE3D4603FBCE54F8FBEFBFC02B3B0F532C06B4B57A34E402DC609C5FFDF44738B4FF38995C0B1BAF5EC77FF96F5FC4CF75508F1C4EF51EA7D52973DDFA857C78F3E574B76794BD117A2D14E3161E7EFE180F3CFCAC8A884953BE1A5708B23157DFB4913BAF5DCD82269B1B572FA13D6F7A42625E21F75708A81732812EDA4D9EC9A07FBE3268330422BACE52A69BC93F9938950C5ADD51C2345B34AD2F6954397199F13D0F30F6D2976898D84B361A25B08426E413076E92594A061A68D62D8C0E0D65AAAF98343A1C331823537D2AB169D914A326A2D6D5345FF529328B6E2676BB34F3310DC6845A9766108980FD74EACCD40679311A5E320492DA68A56F96869805FD41C49F3FF822DF79E635AEBFEA52EEBAE94A7C61418856B2ED53751D8EF697D8D33B405594EE9C8C561512A5D34A53E122AD0CD2DF9FF8204A1626E1517E67126453E687B9FA69A69BA2F76F5E63E7C1EAD35E9ECCCDF5D71AD9564FAFB9FCDBB8C2483523908DE1E0393A91E79607D8B37307A7CF8DD3628774FB01954A59191CE22ED2DAD2CAECEE0E9A9C8856ABC62D1B5651082AD433197A87C7D873E494D21E57CCEB60D9D225D8BE4FC92A70F0CC083B0E4AF95FA7B31073EB55AB59DAE9538EB3847E86871E7B991F3FFE08BFF5F15BB8F3862B55F1B0ECFAEC3955E48FBEFE635E3E3A42B1125388C659961BE05F7EFA83ACEE6E52F9D79A95E15C090E0F56F9BBEF3DC3E878919BAFB99C03FBF6A9E8D20DB77F88ADCF6F65F4D0CB6CBE6205EB17F770D5252BC9BA01552FCF50CDE65BDF790A11C6FFD55FBE8BA682674C09EAE26E0EB96802272CAB2441D56D605F5F9DBFFEDA77D97BE49C56164154A5ADC163C19CB90CF48D287B64CEFC1EF6EE39C8C4B8407D210D7EC455EBE672EF2F5CC7EC069BB85ED25B1E50602428F0DDE78FF1D0E3DBB5698B1B520E4659BF690577DC751DF373356E5CBD8085AD8D78CA704D8C9C4536DA68934EF59D0D39FFCD0B652640FFFC04E82471D31372924112B9EDAE6F200E615D68AE27138209BFD62C8B0AD6F801C6F63F42F0DA37C9958E28BE2CA22D76E826496AAAA1A1F8C8B48C320942968C528B51AD3020D2C0ED11D044A9EB6A5AAEF92CF93957128B2CA98E8F4F7D2554FC0B2C0B2FE03F4CC3EA8C095782454E6A87A49425C3BAA85B317B07AADCFFECEBEC3E33CED2E54B58B7680ECD1957F17219649808638EF64F70AE64A98B76DD3265AAEE3F2215A923EEC634577B7D89A894685BA844B652FECCDF27AB133DADF48DE980CA7BABDCCCBD31EE2BBAD9A619B46A6D9BD752268B64F64E1490AD0D7174DF5ECE9CEAA721AAD0625518ABD629C62E135681BA9727F27C724189D6608CDFBC7B334B33A6B750C6E6C0C028BB0F1E229BF559BF7C29B35A9AE86E6FD4E65E35741516CB66A1493270C762DFE961761F3FC9F844404326E6962B96B0B0AB0B3B96C9439BD08B79EDF8302FEC39C6DEA3E3CA2059DD51E1EA754B6816757C616EE07272C2E2E0609D2F7FF729F1C165D5A239BCFEFA6BD8AECFC73FF339B66E7D89DE1DCF71E7D56BB864413B57AE5F46C18BA84953D8CE72A4B7C8E1DE012A71557B249550A628ABD48A159674F9EAAA32AB45A60BA162E77965CF09F69D1866B81431305EE1D8F1A38C8D4E10D524D18870DD98B6960616CD9D455BCEA6250BCB9776B1A0A715576605641D84D233752947395E3D1972DF8FB6D27B7688D0AEB3E9EA356CBA7239B33B1CD6763470F5F2F96495C72E7D12D3DC1698F03CEC59D7D8C586A7660655DEF6C9F9598338CCC9A4A5F594C19374E6552C6972F0624A9FD93CEC015654845A2FD5E7FF8689BD0F938B07B0027137F6948B2AE43A09C08AD326015E54ED4CE96FB8BEA9C8BF69AD196FC328F628DADD788B6EA475D367705AD682DD649801C231368204D316A864A6491331BD3BE7A309934E2466B349329129E245027D541563EE2D07FCF9F75FE0F1ED87D87CDD555CB97E290D9E452442F7CAFCF019AAC089FE0A27068A542C97D0158D11C1EA4315FB51FA5D5A9AE8608E18D69AD521015A925913A3A70E54DD651218E262D0E2DB2F3CAD6D0CF6AD1C5D732F534EB452D3B44A31025719E13614FB193FD7C7F16327606294C6B8CA6025608C2CA55C07B56C33A19B25139669A80E73CBBC66EEBD7419793756682AC8E419A804EC3B7D8E17B6BDC4829EB97CFC176EA6D1A9ABF07FB6A181B22DA4FF1A3DB3DAF8E1A3CF72FC442FB7DD7815EB56CCA7909114DFC171C59BD2125D7F6DD80A0EBC63CF5946FBCB2CEC8855EBC289CD24AA04E8FEBACFA1C180FB9F7C8513A7CE70E7CDD7A98940B15C5178EAF9E7B6922D9EE47DEB1771C9A22E2E59B5481DC2C58BD1CB3452B65BD8B2F3305FFADE939C9BA8AB59AC27D563B5445766847B6EDEC02FDE7E03765D6CCF5C6D4A064E8E722832A9558E9FE963746C82D2D884928B0A199FD6963CF3E77492B7C017736526D42A2CB6B232A54EBD1290CFC89C80CB996A81E7769DE0E127B6D0D456E0539F783F4D7E91E53D79362D5B448BEF29A427CF990C8809C0A71568BA28B4F92BBD1D13A0A5369B71F57E9709CDCF5A8036AE1CC9515BF574B25B39A042B333D042DA614B32BD44F3D9A466E330F61AA77FF0C7340FBF88178C63CBE8AADA204B804E14E1645045C71525406BBE6EC64E1477354D31C32556615F15A3A9DA5D788BEFA4E9CA5FC2C92F0227AFC69D3AC69C967769D9974A30A6813BBD5F6FBA21A953F8B4EA508F47FE53258AA53670B8FFC543FCD1379EC2CDE6F9B5CF7D88F6C66695ACCC8A568718887A59C6438B5DC78654F7A1EAB8843AFC627489C5E859BCE554E254B62A0DCA8EA14AC9004EC2819E8E61EB7EA10FDC4FF1953692922AC864D449E6AC015B082762142BE2FB35B2718D5C6594FAC4087BF7EDA53A3A4A368C18ACDB4C788D5473EDD4334D0AED384191D6689CB9C553DCBB61219BD62E570717C775293B3986DD069EDCF202A74F9FE3DA4B57E3872582E2289BAEBB9603E70678E5B51DCCEEEA242A4D70EBF557B2A4A70DDB0AA9B83E4ED6E3E89980A79E7996AB366D605677878AFCBFF8E22175E25934A719BB5AC40FEA46AD0F8BB3C598DE8998DD67AB3CFAE4B3B4371558B27821E54A95DDFB8F52298E73FDEAD9AC9BDBC28A396D2C9A3BDB0CAFD8592A81C750DCC013AF1DE2EB8F6E653CF23468BAF5807C58A3A176941BD775F16F7EF59754B94FE445E51ED642C1F00D42548DCC8A950D5B4C0E4463CC76C5115D14FF6C63C2EB8454ED3C23B51CBB761DA4F7D809562F9FC3FC05B3A9B88D6C797937FB0EF7B269D306962D6CD1516E312168CE66123551C99E6526416B52A33B963245270D954DD5954EEF4EAE9A1988E3AD1FA09FCD006D52C9D812EEAFC930354067BD0B76665921C6F9DBC87E5AC441152B2E11165F66E86BBF428B354CA06C8E40C572D24C2ED0409594F849C0571DE3484A37471B4AF2FB45DB567E83EB78D4A30C65A78B626E396D2BEEA46DE3DD6089C0BF6FB05F8510CCA4E179B4E3E9B7473185692C06D3BD4BE00503B5887A987C984CA689CD92644DC3D580BD0315FEFEF1D779E98D835C7EE9E5DC79E37A1A0871C3B26E402532942D8FB205E7C62C4E0F15393E384ADDCD26929012148CA6B44C271ACB2DC9040D8E9FE4D309EB621A9A78D145F44E41DBE0EBA6144E5DC01309D9490D14C310C951A5109659D2D1CCD953C7D8B6FD058A62925B7318B30B04F976EA6E9ED0C928F49409C6698FC7B86D410377AFEAA6392B10491DC771955F5CB67C05C204461246830C8C44E5127E36A33A13F97C56E978D938A42D674C52AB991C7B4B19EEFFF18B3CFFFA510DBCA26FA1AC059137AD0A793122E7862CF0CBFC9B8F6CC617EA5E546722CEB0B77780932375662D58CA91E327E8EB3BABFAD5EBD6AC62C1AC0E464F1E6056A3CB8AB99D789EA7D202434E07FFF0D88B3CBBF30413E419AF06C4225FE8C4B8B5906C50638EDDC7C76FDDC01DD75FA66606A1536078AC482E97A32913105746A8D54C55580B8D3FA15867C96625EE3422DD2A8DD9E1D0E3C9ED87786CEB61EAE24758AED0D868518B4699DDD3CDE69B6EA0ABB591A66CC4D5EBE7D299CFD3EA27309E168892D868DB32811EA707E8C450597B3217E959CC04E89FB7006DA2586C9BA93379C0458B4307552E0C7648B75B02A297465BF38EE018A7BFF24BE4CB077165A4431A8022C328A57D6CE908AB52BEA409A9C2FE221D29A59B9127D514C1AAEA48B7E082A2C4E63AAE4EC095AC0ECE05F359F76BFF15322BC06E98DC2404F15079CD8B98B64ECEC1BEC958D3089DEBEF95FC3D25518863B53C68327423E6020E1C2CC36FFCBF5FE6E84095F52B16F1B1BB6EA4332792EB35222F4F39F2A9850E6E4EB0CC98570F8F7062B4C2784DCA5C9369598EA70FAD6C2AC2FC90586D8A9694129710ED2633F9770AC66F7E7D6A22D198F50A5422015BC691CDDDB5353313ECB92118675E93CFDA05B3D8B5E3359E7CF659C62A3113359F6AA69DB8A153843D4D5F8088C66882FCF829BEF0CBB7B390614281717C0FC7F5955E297A7FAE86923A76A1013B9357B7491512727CE5268BA29EFCEEE67C8E9AED319C69E08F1FDBC5035B0E52B31AA9267D014714F2C57E4A0739EAC46199F9E5E3FCD5E76E21EB0408FD53608E2A1E077BCFE9A8FA9C25AB54E0DF756C864E1F63F0F4515AB3361B562DA529E711EAD45E9603A506FEE4BE27383C6251F79BD5E547EE501807F8514CA65E636D5B95DFFAE49DCCE96AC0C91638D65FE32BDFF816ED1D1DAC9F93E7F2255D3467E48C456CCB25F6F2C44E96308898181BA3C1A952AFD718753A78FAF5D33CF8D45E4A65B9362175C6B0BD0AB7DD7805776FBE06B73CC8DCB60C97AD984F932FBADC2A3693CC3C2526C7D3F289F4AEC762CE6C0CE512B82EAD809377CC04E89FA7006D68629A6B696669C673B39E3478D2B1EA69295D2A71A812A5690351B2D97384BBBECEA917BE4173FDB8283E1BB19E304EBC0E45CB2269A8D9C6F5C391C94509D2320E9EC2218243DBAE12F3951AE6D8D4C5FDD869259E7B0B4D37FC166ED33CB3926D51DB4B33E8B772D14C46645305B0245B36C1DB78210A63C1178532C5168C68875C0FC9E48BD87CE947AFF2BF1F799DD16A9DE58B7BF8FCC76FA7D989A9D5451A526435054208B14405CE6B60A00E47072B9C1A9E60AC54D132592C8C02C96C6D69DAA5A0512A529506E864047DCA8BF65D476A83E08B60956D9AAE92494B55209C660BD549F16D1B3BA832CBAE72F9A276DA0B595E7CF1659EDEF21C4315915FCDE234F7507304EF37B254715CA7291AA7B574962F7CE61E0A637D94F34DEC3BDD4FEFC9B3AC5A3887353DAD747A214DD4A83A11A21890B16C5CDBC3F67C5C378BA755451DD71361239F41A7C07FFCC12E1E7EE1389ED7425D849A62913A3574409D6A0D4543BC4EF7D02EFEF673EF23572850956948D90C1452F2192E87EC3A7C8A52A9A2EBADA3E0A88468775B23B17AFB09B466868646DC6E1E79F918FFB865AF9EAB24040239C9E8B51B85D895712EEDF1F8D58FDC4ACFEC76761E38C1B79F78950327FA182F1559E48E73CDC2167EF3331F250C03CE0539B6ED3EC681D383548B326E12F28BB75DAA92A8459AD8B677807F78EC75758971AC2A4DED19AEBE7603375EB68A462A2CEE6860D982761AB36087D2B5704D7B440AAFB4EA3BBF336EA0C024409B0D5EAAD064EDA7EF9D09D03F4F013AED3C48804E071DAC2440273CE8E9FA17E922D02C504258A2015D1B25E62C83CF7D15BBF7C7D8138771E312AE8E6C9B86992A7629F753325889D1325A2EC9AF28DE099BC30CB0C82A15BEB562D8AABBE011D42CC6338B097AAEA763FD4D381D4BC8342D044C309974C49ABEA0130C560661E417AACA85893A93AC8934B99E74EBD2C59D4C422A7DCE611887EFBE729AEF3FBD8DA16AC8ECEE59AC5C369FC6C606DA9A1A69F12D3271055784E69D3C25274BD5B31929470C0C8D3351AC50AA1A7538E17BEBF3A4E76A1A3DDAA24D0E4985E9D38C5E31568CF3EE00002000494441544F43E19B54124A655D936F690F41AE6D327529D5806934CA54A8D02165F333EED52A881506CC6BF05935AF5BDD399E7E6E1B8F3DBB8DA11A54BD46326D732847421F4CA6D6EC987C58225BECE743D76DA22BE3706CB4C8CEA327E9EF1FA6AD9061794F2B372D9FC5BA66686CC92AE127721A1829878CD5E5D664F4DECBC4E9B2B94D34B82EA58CCBFFF7F87E1E7CFE14512C729B725D04CC15B98A08B7162BBE2BBEDE6BFD21FED3FBD761E71B29D663727189BC634015D1EB26D3A0F8B37C35F9522588196EACD9ED68DD65AC22EBCBC66AEC6157EF080F3DB39313831342753178BFD8B249C516D56808475835BF93458B17F0D2CEBD1C1BA850C7C7757C5A8A2758DF0E5FF8E79FA25E0FD976749C6FFC700BC7FB27C8B8365E54E1FDD7AEE68A358BB1724DEC3C7486275FDC8D63C52C9ED7CEA64D6B59BA78168D5685851D4D2CE86A262FC72BAD51D5741676BA599A9A2C4CA7D49D57C91A5D1AF9D2C1B2C91ED24C06FD8E19CDCF1A069DAC07B333278D2B090B9904839E7C213DF314D3D500614C62B5D49234512240ED30E5DDF731F2E2D76888FBB4FB6E181CB1AABFC908B5490E0CD3C1C8CC4996274D11491F8CB79AA1F7C90620714C865F7C7D186B6418F5679159B199D91B3F8E9D5F0656C1947A9226491A95F6346DC928253C8B6EAF519936FE7D17DCC68BE2D4661C5CBA7D226A53B16D864378EDD4287FF4E54739D8374C365F60F3F557B071C53C3AF30E39026AB1AB7C5DA5BCC509075C610D5739B3220E67361DA3BB61360CC3DED06EBC69951A7537D12A111F3EE58D4B5355D82AC948B966C5E667EDBA1171371B51FABC4E6BEC26AA7B86AE25D99A70A40D0EFEE0A34FF2C8D65D94AC1C7E730756B699AA060AE90B18884339D3823987A2012EC764A01A09BACA9E8942DA47F6F3CFDFB79C6B2F5BAB6A73474A3E0FBFF0067BCF8C3251B5182FD5E808CFF1AF3F7517D7AC580805F86F4FECE75B5B8E2BE758400083D15BD861881BE877A8C5115DE5D3FCF6AD6BC9347772E4541FCDC120972DEEA6C191C01612B91933C821C7A3B8B0D0E30A0CD47D76F48EA9F29EE537D0DA39876DAFEE64BC66AB79AB6C86DA9ED6C4C474E12448CB28BC910240A5001CB258759BC6F02C4B9A03BEF0EB9F54A5BEAF3CBE93275FDA4F449ED8AA624725B24199D99D4DCC5B3C8720AAD1DDD9A5D0D8AC962C0D6E484F5B9E799D8DB43766B44D3E2910AB104F224FF74E149E8B64D5E7ADE8990CFAE7278336673295169B9EB068714893D0372FBFC58249B9B5B292350B14E2683C44B9F729867EF2A73454DE50794B1114F224168722C96F7E5FA22D97743E8C029CE1428B238BB047CC71489036C1CB0839099450715BA9342C24BBF466F2ABEEC46DBD04EC4673983A1092344E3403958D23E5475F4C272E3DB90BB756D33834BB96D11A9E88602C8A79E9C8902A9EBDB8FB28D508E6CF9BCBF285735932B7939ECE46354315FC544182C4D44082990A44E967992D4AB2363D4FAD46049A301E90C6CEC8541AA10093718C6F65D4C5C368114B5809A92B7345A000D3CC154DE3F46625717F6AF04C8291300E5477D838D74880FEFA433FE2C7AF1E262AB4E337B412D859025B02B409184697DB1CA72AE9697A3FB55E0CF3C665D6D8213EBF690ED76FBC4C45A51E3B3AC2B79EDBC9B99A8DE5E6F477B631CCE2E6888FDD7C1DB3E674F2E5E70FF193D77B55533946FA1D72EF257336D65672B7EAB1A3BA146B9A22F01B39D73FC8DCF82C775E329F0D8BBAF43D812BEE2B963ACA78A1406B316376232F1E1DE1C1978F7376BC62AA16DB343363F13894DE85E8A8A474E2747C5FCE35BD07DAA8934D56CC75659A7294AE5C8DF75F7B89E2EF4FEDEE63F7D173D8B60F7199281CA140487B5386F56B1673C5A5ABE8E96CC58FABCC6EC9B3A0334F47639E9C97E89A9F37157A9166DF3BA6836FF18699003D13A027AF802CF024C6E9631B96884AC7187FED6B54F63F84571B226B093E6B8C4875196AE637A578A74F6F22FAAF0FAA0C2EE883641A8792A9A7832E32E91845B68112B2DD443D57D179FDE7710B0B8855A7573AE1468CE94DA5DF85B72D4DA5A78916E9394C36EB4C4D21196CDA2C9710588AA06FACCAF6C3E7B8FFB1EDEC3A760E3F9BA7A7BB83DB6EB8849EB6661A73596D6819D90FC3B0086468417728393E034198BC59A2C5541335ED0AD89664ACE314A2320D4199A2D5C2B8DB9EF8CD887E891C9BA3558A5CDB644C50CF322D81D3409D9E960459391F09D46118F2A5FB1EE485FDA7701B3BB1FD82EA5EABCD973435B541959A101898283D621D7AB12385AEE2C8A36BE224BFB8AE9B5B37DFCCD989325FDDB687178E0F1048134D2A8028226B15F1C23116343793CF3772683462AC261582F4243CE2C031FC70AD3CEA1A3CEB764E35ADFDCAA8B277C4817C41748A1B96B4F2BE4B57E17859FA4B0E478E1E5771A605ED5916CCED5236CA4FF69EE53BAF9D6242B371D3DC9673976A463716A5443AA623AC8139363206B29169E8176A644818CA7BB32643A64CB35DD36C7D30F49990E30F420AB99839DD05D62C9AC3CA05DDCCEF6EA6B5E09371A0BD29C79239AD34666D9DD6F59CD4CC627A72308DC7FF4E19F43B05EE99003D13A02733EB0427D3C7571FAE1022A1DD1DA27EEC698AAF3D80377650FDDA5C897EA29226D8B590472331A595ACD194EED24A93D25A82B41121920C464A5679784C1B4C0347249C580942792A760774AF236A5F43C725B743EB52A5E2C59A85273E409AF525637DD345FE13C53DF33C4C5901985CC664B94A254C02B63CB822F42F5998CA948670FCEC107DA345062A31BB8F0CB3EDD51D5462072FD78CEBE7686F6BA1B3B395B6D606BABA5A71C51057F7A3445B3A755357B68B997794C024479B8BC6E9AC1DA3BBB89BF6A1EDEC772FE7F4FC7BA90A773716A94A73CCAE15100412E493694FF91CC5CFCD99A9F48864F2A95092EB69062D23EC4F3DFB0C63C5228E5FD0D175C95BEB8287EA670B9DC560BD72D0FA39938E2F729055858E8832F8C573CCCF0734B4B6321EC1D1B198F164A254AFA68C2A8B225B54C3B5A5FD1B5389655C46A089645235F24D634F297C81EA72D7E38C327AB4BD2C0135A8D2581BA2C30B98D5D248BEA185A162C899BE73BAFE648AAFB3BD49ADB2849F7EB26C539173903523ACA07A224790DE5E6D8A48159364CE1AA0536AA69CB7307B32D4A49742A09A1EDD8D59DA9AF2CC5E308F593DB3556DCEB76B3465E5B50C3D2D0566356769C9BB4ADD14E38BAC2B4DD3444E762A0B48AA91E91C9CB7AE58DF292E4FBE3E13A06702F4B427DF0C63A438AE49A38D9E72ED0CF5D7BECAF8AE6F13977BC958813A434829AED9B150F524486BBE6202B496F63A5167862C14E650B7106181C82362A9B1AB27C1B52A5DFE2C229F3F91ED61A2E5121A576CA673DD2DE0B44A88335D7CF90DB22924138C939B4BD22A4FA568CEC3A627B9D2698493A82A412B71EE48B05E850A1C8B3270AE1CB0EDC008AF1E3ACDEB074E73E4543F956A45F592C5BD5A047D148797E0A99975AA39A73E2A38EA1D6802ABD82DB5944F707DD3293677F5B3CEDDCF735CCBFF3AB28A73712B55274FA01C725546569E7524FCF0C99333C76DC027D3F8F43D8F58F0678159346B84EBAFB9820D2BE669C0D6C6A058389984DE084125E5BE0449D3E04DA49FF4DED4938C5374D96A1096A93B2288251C765122144959B9A706DEB142D38CABCA4094A01972FCBA89460475813684F1617A1BA1AA1C4AB62F2C0C87BAF42E821A9E1DE3C9845EBD9A003036A56AA44A76EA3E1E0B354F9A82D27F1039D9742394BDC65C77B58DA80549A35660EC848D24554852889873371095BC5AACD7705D8B96E6020B449F24EB50F0E59A9AE9568F3A3DED8DB4E73CDAF22E59C7C2B34D50D6F440EDAC8CE38B6C945350D1547036473613A0DFF546F4D3BCF167B149F8D362D0E9139C860123C41312BB3206EE405D64490F70F87B7F4061780B0DD12876553226DF3C0769AAA22EE066CC5BE9183A1E6EC2A666B35292EBC3AC73AFD4C340E951221E13C8649CEF52893D4A512361CB4AE65DFF4BD0731DB13F4FD5F0A4D9A5FE81170ACBA4A5E4C59A866F7A5ACC9DD5ECD73C712ADB6939428D92A69379B685432D23DF83C598ED7B4FB2ED8DFD1C3AD5CFD9E1716AD550F9B2521E1B1A8B49E38C5AA90458A3E7E151A1B17282D5CE613E36F72CABF3FD3447431CCB5DC18FC756F2E3BE067AEDD9D88E8727CC0CF94CCFD7EC579A767ACD92B16E6D8D5A31BE23EED301BE64CF6140C6CF1005011FB8FD26D62CE8D2CC553620A13826C9A599229D34034EE77D0CE4A3024CDAC495CC56208050EFBD402E3231E948A33110CA5C48206A85B20139191CC723B46A3AD421B43281A284AED890CF49424EA52ED4B7983819274FFAC4849A824BE5603259E9458848BFE871ABAAA06EC2E24958C355268C0C20C9FD3012B8A92BBC49060C7346362999304C7551746BD4359C346CA358AB3E1DD956790113FCA5C9EA47759A9C2A39DF239B6FA0B990A3B3D1D504448A4303E12BD86F168D40298A3D49533CBDFFA623935EEF9900FDD344DCF7F833FFA402749A6E240328EAA0218A4BF2544940D587BE9FBED7BFCDC48187C88F1EA2A93EAE9C535D94B650C00CE55E522AE3F82D11306D7619F6422A1493668232982299A6B233D40D39D4A19658865A68A1E4CFA5B0F8065AD6DE0C4DDD386E13F86D60E515EB34C3EBC99D4AB2440367244D308557A6206C99FC93075E9E2D794E0D2E9B02EF261098C0280FB80C59484090610A8B09602C84FE71284E481033F86FCA99918C5A6858E2DD68DB55DC6018AFD2476EEC00D5FD8F326B702B0DF5733A4C31E6CE6730B79ADAF2DBF156DE46352B565105FC64363C951891259BAEC3645E053182319B5D32299F906E9A7290133F04418EA67AA2931E8E467D6F6A0E286DAAE9069BEC79A9D1B8C4A0244E9B4C50664E9201CA40C59B8C80944C8B2A2345AE45B2A10435F56430D75D7C21928C5DC39AA8298AE7A5E518B9DA046F97630B4281C1E4DE987B94744027A103F19654D7EDA4F12ACA8C3AC5999C98E0F092DD1AD64D122CD57CD794104245D454C1C6F4140868C835A8CD57AB13ABB185343965D97AB236D2A5EBC81592F59F365D121BA15447665A237B7AD27C1EFAF11E63CF0CC4F12E2ED83FA900AD4E2B929F980C46C2AE665DB226356591055A026B04EAE738F5E817C91E7F8A6CD0A7C47D1DA6B05DEA711D9920D3874C1A34899F9E795A25A026C60149B34DB34E09D09AAA48A26282AE8E503B596A5146C5D1859247B693E6851B8997DF4CA675094EBE9B98BCBEAEBC6FFD7403A324CEB49A112766E6536B3EF9DBE4FD4D980D6926ACE1795A962EE766E01A237873A104BF5A8B292B3032BA16F57304C543948E6DA5EFC5EF938D47C946E3E4A371851264AA91A8401C3732E2B612CFD948C735BF8EDFB90E3B34A5F42423616AEF99EC77A64A7AD34FC864926FAA2BF42D93DFBFA0BA489B8E06FA480095291AF724762F9BAE500A4D3229938641D26FB0547F3CE90898F562482BC94E90A20C534D33C59E553AD5FCD1775EF0A05DA43EBA389DF222CFF054AD6602F4855A28E925480411CC8A8FD16C590E43E98EC9791A5E72B2134E7168DEE22A4F5B54FFA78DC1E9E7358341BF75A4FE2715A0D3E22C998C134ADB6409A9E988E08FF2880AFE1B108FEC62E2B9BFA47EF4697C19FFD06937295B6B584E92554D3207D2713A19AB15FC3999B6D3A7539E0C2D5C93469EA1840935CC96EC5A9C9D55DB43446EB254FD4EC6FCD9B42EDC48CBDA1B705A9711FB9D44564EBDFA4CDC4F44A364245D82A750BF042698D4CC4842C864966DD680C97892D453FF9D3CAD09862BA316BA89A9DB89E9A49ACD40AE4915E251281D63E2C0B3548E6F2738B393A6701051FD334A0C468EB526823E1288438BD0F519F0E690BBF65FD1B9F6C35871A3895CE9E0E785CBF34D69590AAFA46FBCE8AA4DAE6D9ADF4DE6E4D310B134853617C204CD8495926CDA6613943B234D613384945A43EAF59B8C88DA019CBAA8CA9D4F7E679AAECBBD4930DDC90A265D0FE79D731AEE1337FA0BC3E3F460981E80FE88D996A6D547E9B6910C1419FB37990A95AACE4D761913A0E5BCE51505D1DF1C902F7689CF0BCAE93FDEEA5EBC75CC79D32B33017A26404FAE5C59579381C13CB0CA39D55AB7960C3298715AC2D3D47A9FA0EFB1BF241F9D24135694272D429D9A6B4DEB9098093B33D0A28FB73EE826733142F7268B36A232267717F687F988C4BC36814E624B5A380E15A7955CCF3A987D29D959EBC8762E874CBBD2B7E250B279C35ED0869923831A4E5209240F6FFA10278A739318799A085DF8E0CB7109561A491B53CE31E58B4B40AF42F924D5FED7A99FDAC6C89E2D14C2513241093F168EB3345E43DCD46457862544C7594B7D8B31BF8BDA8A8FD27DC52F93292C13AFEE4486F582E030994D1B96828979E6CAA6308B424C69B03C6F699F77426F5AF486079F6C383A669E86B7A422D12A626AC39A1C209A16832603B464D5C97D3459F5B49F9BB60F4B562ED7C038EC5C7807D2CDC47CDF70CB4D9594A0BEE61CDE141813BCE7CDEFBC20194E02B4C22312A04D73DC68B9C8662A3C7F336CA5D7F46D62EDF97B667A40E73D4CEF21225FF0D699003D13A0A7AFF3A97568169A6174248A5B6A262B89A3809C25C2F231268E3E47786A1BF5135BC806E7C80435E5B7CA03256C07D1549652D1A8B219D9C5C036743C6101185BAEC40F5002B46813A88A9B642F622C6AA2BB301B4CD22A58674C35F2099C16AA4E2B5E730F99B6B9047E13816850645A695FBC015AE78260D6B6082488DD966FE86B9343053AF130B9114D7FD8D3FD450771D56C57E4282B108D43A59FF8D43E26068E1354C6F5FB4E6D88DAC061E2E249BCFA185911EF114D08F13EB7A5729081868A6E3D6688C552E1A14A6451F31A2966E6E0CCBD9AC6059B292CBB1ABC4EA529A65F536339E6BE4C86EE0BE2EE241E7F5EDEF71619DDB49F9D9A304EEEFBB4C7C2E86E4F01F9E95FD310745E804A24BA13D3343D4EB1839ADA5092B89AC87DEAD54FEF87FEEAE99170EA075583636A6C69EABABC094E78D30531EF4D2F58BA9725959BF1F014468AD944A618E2E9394BA1F056DA3069D575610C99C9A07FFA1DE93DFCE44537CD64A34F6E812498959A282AAAD4D97BF8F0B77FAB3534567BD3D27B779F9E1E44CA727D779384A90ADC248638094A4E8588C9A4CD881EC8F02ED40709477633BEEB9B84277E823F314046B8AE8E4FB55E51369B04617D0E2C99248C35A3D4B16351528B245889425CEA2C6578248E8C540BADCBA8F59AEEBC63F498E5A7C5AC56C6C6CDF49BE0CC1248457B2F4BDD6EC16E594ADCB490BCE87CB4CE26D3D6038DDDAAF5A0399892760D24A2C127319C4D08E04A79535847BAFD92314F0C513B7B8C68F83895B37B61603F71E9A46A94D891C8B4CA079A6B2E8D42849192C0458164F58AEE4BABD18C1D9B6C33229060ED7ACA512ED91D149B37D073C3AFE22DBA436640CD2699342ED33B3199415E6C855CB8069386DA4517E7853FAF90AB193A9ADC9D27C544A6B255BD64CA5034D200931AE4E6878C1142F238C8B14A8F6DF233271D61CC77DE34AAFF768BFC1DA1858BFCF0F45839BDD848DEAAAEF57A1CD33C02D3E53DFD825FECB8D2CF9BFEDAC5BEF7EE1EDC8BBF6B26837EEBABF74F29402B9759C2880083FA009ACCC27C3B5191132C572163993C138A5C0D4F9EBE6884686C27E77EF2B77827B7E2D707C8FAAEE1BB26D8AF794825904A062D942DC99E93A106C5288D6CA8C9C66494D9568D62853D62F1E650F29536FD15A215FA97D0C834A59709B6BA360463D1DAA80BBCD14C20C23E5E0396278D469FD86F26D3329B4CEB1CF22DDDD0D4656810CA2448E80DF2EFA0021383D4FA7B290D9FA1561AC6AE15718271E2EA38BEC8930665CDF085B1219395AACA9694CBA2F427722632D8203B8130524C88321C5DE39861A9BA9F9C6B1018BDEDC0C9528C9B18EDB88D651FFB0BB0F39338AA5E97B74B00DE32304C6EAB6FBDD0F578CC3D1618C164B5D3E08314F64A7DBF260F246DC125D9B5463A9383CA999AC0F7E6CF124D15554B4EBB84C9B94DFF95E9BE703E7C901E679ABB9F7F4A6F97D1984B37CDE0E1BCC03DEDFB9384D0F4F0E47EBDCBCCEBA7D940DE2978CF04E899006D521993A96AE746026112A0A794B88C76840C2908CB40034F9A6F0914110E32F2CAF719DDF96DF2F563F8E1B00E1A28EA2C19B54E78893C674CE808CBD72C7CC9C192D0ABA5AEE9AEEBA8876193A8ED941167B20323BD19BB66B4D98C384BD32ED6C66420729C5252BB19C29AF0622500CA3047127C646ACF6B568FBE4A940509DEC2341159CC04079572D651CD862A99A8841716F1E30A8E6E128196BB41281B8DABC24BB65CA038D009404345B4A9D6C1CB37A9ABB60C6BE830CB34B70CB16452A14DE119CBDF444829D1BA93ACBB375ECD92CFFC0D64E7832B94C28B68645F100CB408F8296B2EC34933C72E660CBA0226A180691317FA1EB9F7C986A3B17F1A2F505F9BCE9B989695A6C7A67B925C6F69324E7BF612C2443A31395D6965EA6353EA64BA7998CD47CF7D1ACB626AEE32FDFC641C3BC5B9CF9B409DFEFCA7D7C19DD4153795DE7436C7D467BE23307DD1FB91EC5893C7F00EC17F2640CF046813A093D574A1DCE1050FD19B739624AB1638201A85A88FF88D47E97BED3B78C5E3E4E3091D44D0115C1938880235B1D5C938A5121B4F36E5142B1462F4956583108EADFC5F6183487485A5E30EA1E0D4895A9E391E616A2470887E9616D693142983239B0D42E5E825B8A6365D099D3015354A1E79C3565071249977943FD3B34513A04C83D33050265F4FC7D8354794801610D902EDC8618A6636EAD22D23D5C459A2C46CD738C984F84ECC388D8C387329ACF9241D57FE0A96D7442C9AC991814DB41C4FB48665833189A1617E988DC6F40D626D908AE1EB54734D191A89E894305C648B3065914C844AFB53BF83A35585094C6609C8F54B2609718D95645A79C8CBA28A279B659A7A2BD15CB07733EEAECA7D6916ABBA2C327492C477BDE8295F5D3675D3809596B37EB4566D893183347ED5B74F7E48920AB9A7B2B612D2B2B04B54CC4A289E9AC327D899BC6772EA443F57644C65A250C7F1A561299F2CA6838E388E5BBA3E85CF3D997D27709B3911CFC8EE2695475A21998DCE53CD12BD7C09B17CCAC52D315FD693970A716A9D9ACB7301DE3D13A06702F43B55596FF7FA6475AC014882C38406E9E8EC768EFDF08B146ABDE4E371D5D7553538A5BE0923246D0EA6943C23589E96938229EB1FA3BCAFD387D269D75F23C12461E44EB218920AC094C4498036A13BB1BB371A2017D3C07BA7F337014D7731A36F9D6C62530F6EB2C9A4E5B1BE6E8E55BE420DD09ADBAB4E8484412B9400ED6B5334928C5D54E764AA32AE2B150FBFC08077396D977F8686D5771067DA35C018112045E1938A2709C8CA5A4932C01463D78B25415ABC1F6514DF3CFCB249DA8E4CDD25965A49262C415E8C0864B28EA86C02702A26A2A5800DA28FED38268796189C6C5C72CC93088754243226AE55438CABCD55F963B432F473E5CD320DE3366AB0D31E84543BB609B4B6B2AD93A9C264A8482610D361181D5594E3B473C412B475A3946AC8D4607A9E3A58E34C72B3353B5791AF44EE55D7A2D97C6CB1888B45F0BA0E6E3315CBD6A1A1B4B9691AA54905A1FF4FE475E56774A826BD27F25A5ECD1C84A522975F5DD975F948735DAE4D0AA9987562B64059E7A69A3C2FA79E09D03301FA9D02D4DBBE9EEA3CA458B57A399789A361FA773C4AD4FF0AB9C15DD84307F1243049D00DCB3ADA2CB952CAEB4B9D8CCD645F92596B704D9F121378150631A9B766C353656682236BD34A326DA35B6D449A8CA4E7A474E97B3CE1A922C264641736C58C7ADF8560AB313190AC5982735A2988E4A5BAA147AE916E15B8467490932CD2B88288F851CC84D54DBDF5725AAFF90D0A4B6E30AE37519D33878F60D7CBD8C29851CD93507B069A454BF0096C3C91349520665B549D020DEDB3696EEB566EF964045023D324C38DA15A1C6764B01F6BEC2C3E6358B29196C5EDBD46546821F05B08326D8CB9393A3BBB686D1488C8041FA94A9282C24C2EDA31FD83831487CFD1543F8D5B1FD5E38A2A751D1B77A48DD890A79E9B4BE83653C5A5A1A585B68E46ED2DA8C646A2FB212C10F96C11B5AA0C0D52EA3F81532FAA5E74E016085C63BDA552A95D732814723A0DA3AE3FB23F256B4AADC3922F75AC0902868606288D9E25138CE0085D9288AAD3C184D348DE2F30AB6716B667A46305A61338EBCCA17D589A7048EFA16AEE7DE2746F36E4266A4E8EAAEBE0657274B7B593CDC84632B502B5759226CF2A2026F7D168694FF60034A86B7D90EE39532B378689127CF92B07F997FFE2EFF1DDC37CF52BBFC93D1FD9849B8A86BCC775FE33F7F68BA243C962491EDA9F1B16C74F7B7394FEA462F58229A717C7704C6114EABD04BDDB187BED61ACB36F9089C720AC9A0C2B89144AC37BD3012420A806D7B4C84E9C41A63C2892009D02A6F221C938B904C734331171A5A479F5539DA7664753476882F179CFCAB44ED814786BD4FD4420C86C1066C3309BCF64E19CCAB62A3E61049C64C45C12E231AB8BB1EC2AF2977E9E39977F486DC3ECDA20CFFFCD1FE216C7F0C4D854AA09857C448C48CEDE250C2C7C27AB0A7575CBE64C660EFEFC4B58B4E11AE62F984BCE77CC88B47A4B4A221A307CF238E7F6BFC6E0E1D7B1C74ED12CD05458C591AC5D4C55F1283A7926FC7686DC0E66AFB88C6B6EFB85C4255E02BD0986F2C78B630EBCB295E1A3BB99E8DD4347D0473E2AA9307EA87D074703B8542665E907B8CD2ABFEACF5DC125777E8066F1244C60079DD04C1AC362E8BBF7C70F51DFF103FC7A15378A28391E55D9ECED2C634E17CDAB6EE4C69BAF53512B6340606A2DE3986D829D161558944787D9F9D83F50ECDD45BE3E4E46583676C498DD463F9D54BA37B0FCAA9B59B9B89BBCF8D14A03A63EC8737FF19F702D494284E72E558F28B618084BFED4EC0C153B4B29D384D53C9B96F96B98BB6C355D3DB3D46BD1309ACC1F53F1199D6E1592128BB0B4073013A0DFFE719D09D0EF1CCE4C692A4D3CC1EF64E5250D2D95F39472B20C611FE5034F31FEEA0358C3FBF1296BE661534B04E453A0C2ACDA94CB9B62BB290F5732667DC012F1A564759B87637AB32A09D2062E3183EB6608E69DCFE7CDEF98066B24165A9AAD4E6E1BC99336F98309BD51190F26B08B01ABE135C8B512FC5B200703BD44822BABF0BEB0495C6CCB579D8AAAED30915B46E38ABBC8AFFC08D9B61504768CD3B783935FFD026E6542F71F191B0F957E684069D512142B2ED1C4F72C4AB1CBB1FC4A8EDB7389DA9771DB6D37B2B0ABA01B80413622068F1FE2E0B33FC43EBB974DF0DC380000200049444154964A2F46AA49365D61A6887C86D1B796EB57B5F394FD168EF94B5879C7AFB062F9020DF62A1A95A017F1E0099EF8EAFF60767886E670C094ED225624E25B09461F2AE326261B96F41A4D58EDF4E616535F7F2B576CBC96CE9646830F28722044478B91C0E28DFBFE882527BE8FA7BC50979A48BE26CE3427334BD899DDC8473EFD695A5A0BFA3B8DFC6972B7E47FA9B85114533C7D8CBDDFF802EDB5D38ABC3B5105971255B78D7E67362F35DEC470FB6AEEDA389F0D4B7BF4F338F32AE7BEFA1FA986E388D3A60849999E89AC310F2BCA68735C36E48ADBC0B0D3C699CC22ECD9CBD878D366BABABB1529490B1913A0CDCEA6425D8A85274DDA99003D13A07F9A9035FD674CB014EC2FE974DBA2416CB03A91C21446AC0C72C4A5B3D407F652DCF32413C7B75108CF900B87148F4DA70965BC7C6AA2CD388B1802461A10251B5500608A039634A50C94717E232F1D904945204D809EDEF57C37672FE7659A93EAAB98FE9EC9D233C511CFC7A68DED523A25997055B4E126A8AD313FD5CCDA16317B2565635905C27A9E31BF9B62FB32E65EFE2172B3376165E782952594FED789ED8C7CFDDFE3D4C614221AF4DB18759BA95939633D26413071E0964CBC66799CCB2FE154D4C1B8DBCAFBAEB994EBD6CED55948C962B3A57ECE6C7B84BEED8FD31C0C910F47A9B8A211D24E2D16B53A39564184433261916C5CC10F4AEC6C7E1F473A6EE0EA4B1772E9EAF9BA31B8618DD2A9C31CDFF2109CD84E637D108F90B3DE1C8A76A3D9AED4045706936450A9C2ECCA710AE13855B791B35E0F87BD85342D58C3C6CD77D1D2D232D9629090D7371673ECA13F61E5896FE34ADFD9CA30E61474913405239CC92C6047C355E4662FE7B6BBDF4F2663B4C9255BD6DE712AAC245047B548E9E41E0EDFF707344772CEAD78518942388058C68EE416F0747E33C7BC85DCB9B68DDBAFBDC42C9D234F31FECD2F50AB97A9B939465C311468506956B9A95E04B9B044212A92894BDAAC1CF53A39E9CFC35B772B9B6EB8917C2E97341F93B5A8FB47D2543CAF569B8138DE095E7DF3EB3310C705D764BA8646E2BDA7E59AC924D52F36EDB18565A2924CDFEDC37AE37146F63C4B86716CCDA82B09934016AB8073BE323752B53933866B3AFD064A99F695083DE998F8B4206D94F34CE05464F73C72EFBB09CE9AC218EC5B25550D7463208B041B4CC681277F574288D16D24DDB3341B35C310AAD6A67086690CC5764D098B75BB914AD48295994FEB863B60D52D640A8BC16E494C480D06EB1E9700FD7B38B561F5563C9C5941AFB7506DA10466900D4FF8E7919B55D6076E8651AB95B25D003FC7E66B3670EDEAD97A1C13A3831C7FE4CB34F5BD4666FCA4B6E5EAB14B5F7601C7DD854C441902276306EFA31AB97082598CD0553BCDCB4DB7F04AEE2AE6168ADC76D552562D9EC781E71FA7F8C653348E1CA4A372D2588B39CDECC95D429F338B509BC046504AADD8A212CB6BFBE909FBF47797EC02436E17673273A974ADE1031FF9185E567EBF39F7D3C321271EFAEFAC38F1104E18125819FAFC1EDD407A6AC719F63AD893BF847E6F3E4ED7723EF6D11B54945F687266344A7A74B11A2D84C5B3ECB8EF2F6938FB2A4E5CE78CDD43362E32273E49297219C9CEE3E986DB38EA2CE017563573C7F59718D5BC233F66F49BBF0FF580A2D5C8C1DC6A4EBA3D4C38E20014918DAA14C20ACDE1080B6B07680FFB09EC0CA7724BD9DD7005B5A6392C5EB9961B36AED271F27440EAFCBEC6F4B53D8341BFE5933A0371BC8B20A6BBBF31784DE9A22AA8A445A93C16AE611D4C72AA64C0631C6A4304A7F733BCFD3EA2A1EDE4A3B3F862F26915A80532C421596BA00D41B57612C562499BE2980C2E513DC215FD60FD5C697449674A82A2046909A4866E270D43310830A3E6D3B1EA77716E936F31D4BF542BC40CD598E0AD0D490DD2A68169D88A6673922941E50C084E2CE6A94E4179E4A125A5B19936940C2BF41A198EE7E3CCDE44F7B5F7E2B52F03BFC36872086D2C618A49F9EB1D7F99C1AFFF2E6EE90C91EFF36AEE0676653630E0362934220C0CCDD0ED1C81588A89ACA764CB56A0C6ACBF7CF70D2C9BD54C1C84ECDCBA8D78FBD79955DCA70DB2A2D7C269A7874399951CF05728EE2CB5B868098A96BDB04C5AEA43CCB786389059C3416B11B3BC416EBFBC87B90D31A79F7D90EED35B68090668884B9CB3DA389D5BC28B85EB39E6CC27B47D726199A67814D7F570C2324B6AFB995F3EC09CEA09DCB8462DD3C2517B1EBDB915B42D5AC12D1F78BF5E6E3987BED188630F4A06FDA0E2EF91DBC0217FA95EE745E57DD4DC3C4772CBD963AFA1BFF5523EBA79296BE637282EAF0C95243B158C3738BE83ADDFFC9FCCAD9DC07232EC7557A87ECA8ADA3E02DB61D09BCD138DEFE7A8B794BB5617B8EBFAF5BA02AC634F3170FFEFE3944A94ED165E6EBA8E3DEE4A069D763CDF254F89B05A27571DE1DAF24F585EDFA71B48BFD7C389C2060ED1C3687E0EFFF69FDD8D9770CFCD986C9A7424BB7ABAF6669A846FFDA0CE04E87711C4A6AFAB49A94A094B52949A003D2D7227CD11E9FA04502F416917633BEF67F4C03364EB2338D5808C948B5195382AABE38AA30D4579484D06AB432F42BD12FC4F13F8A48927BE7E6A4C9B04692DF94D9056EEF0A49ACFBB38AF696F494F31854826C533D31D49F7A7442C5EA98666343D16635311A0D7F3106C5898153196E80EC73E6194A7EEE519A799960DF7D0BAFE2E282C2424AF6C0BB39F24034289DCA777E22506BEFE7B642AE7A8B91E5B7377F27AF60AC6F2CD2C5BBE84F9AD8D448164E6190219A1D7BB50C78B4B2CEA6A60E1AC1CE28F12178B3CFBD53FA767F0456645A714633E935DC8DEC215EC633E67728BB1E31A73BB5A58BEB087F6D606CA9588E37B76503D73883E770E67AD7666B9A3DC71490F6D630718DEF6004BAAFBC98465DDA2F6E7D7B337B3867DFE7246BC4EF2B90C0B3A1AB8E5F2C5C6453C0A281DD941DFB6EFB0B2B883D6704885FBCF145670B2712D67DC4E36DC700B97AD9EAFC6B092419FF9FE9FB2F2C403E4B0188FB2EC2C6C642272B822D8A523F703D91E5ECE5CCD0EEF32AE5EE2F04B775C31D99E10AD67A56703077FF8252ABB1EA5239A602CCEB33BB39A96709835955D3AAB35E875F193C60F70D85BCA9D6B0ADC71FD7A0DA1CEB1A7E9BFEFDFE3942628BA1D3CDF740BBB331B1876BB98D7D3C9D56B7B18192B290CD4FAC29F317F609B326DC6AC66CEF84BD8E7AFE07876095FF8FC5D64D3A6BAC25D069ED376F97983343319F44C06FDDEE2D505F042F2CFB40F731EB1DF2C392374930C1C24BACA9A93EAA0C318D1C411860F6F61ECE4CB64C68FE38F9F21531DC38DCA582230A4F88034D27C1DEDB6DCBA0AB36B375C0658AC8C52EE94059566D1DAB43142F229FCF0D307E8A4C1A8D9724AB53363172658CB38BA0015C2F3161AA049881479D6A112636A20624DC2ED954CAE6ACD216A59C784DF41F3C2F574ADBA11BB711E1139A55BE96F49B271F98B6C7942AAF37B5FA0FF6BFF0EBF3E46C9CEB1ADE94E76F91B54C2F49E3B2F67CDBC2E755DD7B6A8B2154C8057B849BF675AA6FD5B7EC8D073F7D1119E252F1438CBE1487E1D5B0AB7722AC8D3D0DECDF22E972BD7CC67DEDC363D9F5433E8DCB971B6EC39C9C17345DADC3AEF5B3B8B96238F537AE58734D50609A4D5E635F36CC32DECF0D7D19AB799D396E1C6CB5730BFA725696482E7C4DA803CF9C64B0C3DF145DAC78FD0169438E1CFE160762947332B695C7C091FBD69258DF90CA7462C4E7CE70F597DFC7ED53A1CB33B78AEE556C6C872F5F85374468394638F575B6F618BB78925ED161FBDED4ABA5A0AAA9C98E6A9A383A3ECFAF2EFB2A0B4970A0D0C676673C49F4F6BD0CF9AEA1B6A1E31E477F26CC35D1C751772FBEA266EBBF1326DF37A479F61F8BE7F47542933E275B1B5F136F679AB28D2C0FA25B3F9F0F58BC8173CA27A88D3FB2C27BFF69FC958456A6E0367BDF9ECCDAD63AFBB94DFFAC4EDCC6D14ED73F36514168CFFBA99424A5E98C9A06732E8FF93F89C50340D4FF362FDB7698C8794843F5999E84323E1A2020C433C00830719DBBF9D5AEF5EDCD249A89CC48DC60D873AF4347855308EDA52768B8BB3422893C249060757BC3811FE495D5CCE179878F7676D2611E5FC041B379086C10C93E03CDDDA2B9D5E53E682199E885DD966847ED542CD69C5699C83D37609DD577F1C722DE04AA34B0636324A4153064502A198A3344D5209D0DE891718FCFBDFC5AB8F336E6579A1E956F6662FD56CF9C3775DC6BA85DDFAB3411CABD492193F4F40171131123D6AE0E93FF91DD6955E271B95B4041F77DAD89B59C773B99BC8647D3EBAF912562F6C541B2E8558D47C21092658546D28CBFD0BA0B1D6CFC4A37F4169C7938A2F8F66667336338F9F64AEE750660577AECEF2A16B979311094FA19289FEB282FA21A1C054B512C79EFD1EE3DBBFCFFC89C38CE667712C339F573257D29759C02F6C68E5BA8DAB383DE672F23B7FC89A13DFC48E1C46DCD93CDAFA410669E0BAB1C758189C2017D7D8D178252F17AED280BA7CE97C3E78EB95538A7A419DC7BFFD8FB41FF921F383E39AD59E72E7D0471373A233ACABEED01539E077F15CC31D1C711770FBEA166EBFF17203571D799AB1FBFE2DF56A85616F16CF37DFCE016F15D528C3654BBBF9C0B54B686C1068AA4AF5E8739CFAFA1F53604C79D167BCB9ECCC5DCA4E6F05F75CB79A1BD72F3C2F104FF5B0A7D5EEFF7F7B5F025F5575ADFF9D73CF3D77CA9C90810021090984799019A4CE828A885A6BDFEB7B9D5E47B5752C4FFDB77DB5AD5A87DAC1AAAD1650A1D679061C502C606592790A53022401322737C99DFFBFB5F63E37272108416825ECFC4ACD70EEBD677F7B9F6FAFBD866F298256047DE254758C2B2DB7999DA4E326A095C72CF25F39EDAC3391F3514F28C7B1425EB801A8D98DB683ABE0DFFD01C2F53B6086EB61844977C38920059BC8D5411A19F4D0B3AC27E5F692BD28322488A0D9F2A6EA336B1739A92C0E7A8664468695632DA529454BAFF6CC0E91E34BA980641951F35511210DE8142C4B849935025AD62824E58E85B7D730C0CC92692A22658C83A32C7F2A937F6D72A384100709CB3F41E3337723D6528B56C38375C953B1591F84B02319179F7F0E8AFB66F03D91B60769E8999A06978BE4561DEC090A6B3A6F872B1EB809A3FD6BB9F0C5EF484699A7185B8C12F6670FCEF1E1862B86DB72C1DA952E44959FD83028684B1679ACAA14A1250F21B86F1D0702CBDD03B1D3330C9F3A4A50EDCAC1AC215E5C36A15868A2E822E990F29CB9138DEC68BB65FDA7A85DFE0206552F479BC38D4366B608D27906E1C242072E9C3404879B9DA878F5210C2E5B48C5E6A87164E3ADB4EB50E5C8C058FF8718182C4566A00A7B3D05D8E11B860A2D1BD9454370CDA5E708822653A0720F56BEF414721B372129588B9D89E350EEE88396700C85913D181958C325E6D5662E96254CC71E673E5BD0D3CF1DCDAE078DB238FE3607A14010756636962793053D106D1113E7146763E6A40148F4B981B01FC1FD2B50F5F46FE08B36A1C5E1C37E5701367A47639B7B30CE1B9C8E2BA70C8B4BA8F289D296CD117FD214412B82FE5C041D0FBC49DF99B4B8E2590AF1E2552A10B0DC0232B068CB88E1A28238C107596F9A5A6B856B4AD156BD1DC1CA2D68A92C45ACAD810B149C68851E6D80CBD1CA0515A2C250A6B0C5A57364F9AF5CFCA2D2AEFB5F82A0E9CBEAA948FE66FA9DF07553F091E5963493FDC7B19817D1981B219808E86E44137AC1DDBB04E983CE85993D18706673977222F1F6325F994FCD9848EB9CFB214A226382D66094AD42C3DC3B60845BD0E2F0A0D433107B1D7DD0E648404E4E1FA42578A0932E89164690F2F29C3E64E51521BF301FA641F74AD6B586950FFE10839BD7C38885D060A661937714B61BC538E82EC4972F1C89497909C2AD441B862C8996721F888643D0C9F2956E17FF9EF5082FBA1FFAA1EDDC7E6CAB67343EF54CC041672EDA9C09B86268322E1E37902D53EEF7C8BA28C2DFCA3A4D5480B2AB0C55EF2FC4F08AC5BC89549B1958927805767A8763424E08174F2C4620968803AF3C8C92032FC21109A2D1C8C0DBA95F45B92B1F03829B31A875338AFD5B51AF7970D8DB175BCDA1700F188BEB674C1204AD033BDF7B0ECDAB5E426AB4116198F867E234EC77F44562B801C5A14D18EEFF982B126BCC5CBC9B7825F6380B71D9602FA69F4B697644D0EFA365C19D680D8651EBCAC13F932EC07667119A35174615E762D6C401F0B94C38A92BFACE3750FDC2EF60C642A875656187672893F97E231733C7E6E3823185B2B3BA585DA282D03206E45A5504AD08BAFB94657B85D5CB90F574A52E253F7D22FD4E783EC925600F544B139AE269965F84B539ACCA2AE18F634F2A25FD879B106E398840FD2EC4427570045BA0556C47E3FE8D88062A61B20B848A5E447300CB2D204A5E0449F3FFE2EE87EE8DD84ED0A2EA51E47E5360877B146A06C2BA1BC1981761A4C29B940B5F4E112219FD11F164427367C293920747420E6B4788A601ED9B45FBC6219D409D02AFC2C921CE17CEB2D5689C77077422E818A58365A2D691C4644D8141129BA26D2A160DA2C5484393B3179A13FB61C4F8F118599401A7234C9D79F1F18337A2A86D279CB1206A9DE958933001BB9C05A87164E2966F5C82DE2E19789512B3B65B127A16D4EB31164340D37064EBC7D0963C046FDD6E440C0FD6FB266185670A1A351F12929270D5B83C8C2ACE16DA18D1288C78299DC88E21E2DE7FB8110716CFC7C05D2FF232AA35D3B024691636B98661505233A64F19089F3703FB5F7D0403F7BFCA297A4D7A1296A4FD27B61B4518DBDF85ECAA15C82B5B0297164293666253D26434F41A810B278D465EDF5C3EA56D7CF65EA4EC7D8733400E3BFB6099F74BA832B29117ADC4D0E07A9434FD83D76CAD998BC589B351EA1C8099833D98317558DC82F62FB81B2D547D696662936F224A8DFEA8D35D18D43F1BD34A72A1075B71A87413B2AA9621F1E06AAEA02CF30CC0DAC489A8D07BA339EAC60D5F3E0FF91974B211325BF48FCF97AC9A48DFC9660DA792A0A52899DD3AEF1890B43F177609D6639F9CEDC927F1ABBA7275D21FEDC92AD6C5F1C402B9C8651C495CDE39A3A58B328663D95CB60349201841DB992ED8DF3DCAB213B42D3A68AF7F8E3BA42582C79A349E894E8BC1B2C22D66E247987AFEF985887E380A046A11F61F44F4D056040F6E40CBE1522E8671469AE1D4029CDB2A8AC9492B9AB22A68BA3B89B29FE0A0ADCA46CAD4A0D2613EE03B2873D78980E6419B968036473A8CD402A4F51D056FC168387C3980D3C3162C15994073713BAE0E35E2B645DA6171C7D52DAD0A482A1311696266F93A543F3D07465B1D5BDA41DD4440331174989C52470698499585D1089AF474541939D8EC1E815E8346E2F2097948F7117E4DF8F4A15B9017D88B685443B599834F93A7A254EB832647126EFFF625C8A4D6E0923C44AC526CB57CD261DF3F55BEC5D0AAE9A8DAB402C6A20790D2548E90C383D58953B0D4338DADEF9C5E699835A50405D9E463172E27A10047298862EAE9BF871A43D8BB681EFA6D5900A7A1A14E4BC07BE9B3F1A973287ABB9A307D7231B2533370F0F547505CF61ACC68000D8E342C4ABB9E53022F1EDD1729152BE0D9F4327AE9CD08B7FAB13D7902CA3D03306CF8304C9C300A08D562D7C2FB915CBE1215EE7CECF50CC61A730C1AB42494180751E25F8B92867FB2555BE3CAC192C499D8E52CC415250998317584E8FCB2E703D43DF73304836D687524A2DC55C439DE0D70C1E77220C70DB8DB6A61345620335C85A4483DA7016EF18EC0074997A0494B803BD28ABBBE3F133EF98CB019214F4A1AEB8150ACE56409FA1C18DCF65D3C77E251125A30D4F498534E39622F356E58AB5CA6FBCBEBB90519CF954DE2C02257EB39962266965126129AA462617B018074DBC8060F2CB828275CD6B95B8D42E8ED2D69E3A823C26B9D9C84718506BBE26B076BC1B2EA3A32B5BD494F20180591F46751D0095241FBDEF6AFEEA8D2DD1BFCD75FDF0E2F6F0961D26CF6B3DE472C7818B1EA52A0621B5AAB7723D45889B6862A44432D2CDF2972A9651FBF2E543F8E37165E9B96ECA6C3443846812E13315732CCE43E48CE1B0E67FF91D092F2A0E969D0CC3461295B2BBFC37F8FF769C2B816161595CB85417D18593888166DF9A7A87A760EDC813A3E0EB7908E8523097EDDC3963C05F2A2D40040D3E1D793516366638B391829FD07E1EA8979C84A8A00913A7CFAE08F50103EC0A5E7871D39589330097B8C7E68369270DBB72E462F937CE9526785FDC4F2E192EE23FA15E5A6FB351D8737AF84F1D603486D2A435837B13A692A96FAA6211A73A05FEF2C5C39A5047D332831CE326B84BFC1EA8D4B963859D0FBDF5B80FCBDAF02E110FCCE54BCE5BB049B7DA3916134E1D2C9C5E89F9589832F3D80E2B25738D5B2D19589B792BF8C525731668CE98B22AD12B5CB1722B9A11449E1266CF38EC41E5701D20A4A3065F268A4D76F47F9A2A79070780B76FA86F2DFB7600022CE0494380FA2B8710D4AEAD7F07DD5B832F15ED2E52835C8C591841954A84280ECFD00D5CFFD0CD1363F220E13F58E742EC60939BCD0A35178A2ADF084FD70475B39504B4A7BE47EDA953C061FB827231C89205B6BC06DDF9D05CA3DE2FC7C918C249A1A939A1E8945C5FB3F9E689ADD2ECC9B4762496360907AA1244041D0A2CA56B481A6F446291E2E6B0598C83BA4C85A046D13236B3F98CA652D0D33D9F957F45E90BA2756DD834D4955744CA2AA4EAB56409CB62D2E678296E1AA882108DAB4085A66D2D2271E15BFEACAC8E9646853BBABB6206D4FA7EEEB5FDEF2EAD4DDFA697EA7782EB30537B941E89FD559BB1508D60147CA11AA2E83BFF6209A6A2BD0D2548728C95376F34B1822423C21A6BBE1F0A621BD7711D20B8601990522FB42A32A32EA77480F06599EF48051CEADA549DCDD0FB52C1FB933480B8BAD8AF275A85AF013B85A6B118A39B0837DC703508174C09BC26E1EF2119B86136D310757DB45740706E5E760E684626450C7AF4823563D7803F2837BE04614754606D6F8C67399759D91869BBE7505325D244F2A02AD421A56EE1A6C6D897C627A0E299BA37AEB2AC4DE7E1829F5BB79FBDB903401CB7DE7A2414B466E5E01AE9A988F3EA924092A3C5FFC68B26F23CACD17E8DBAACA2AEC593C0FFD0FBEC31B4CA3918E77D3AEC216CF08F47136E3D289F9C84A49C7A1371E41F1BE1779C7AC77656351F2B5D86D1661C698DE38B73011EB5F7C020995ABD03B76049B9DC3B1CB3318D5097998366924322B56A079F5CBC80A1CC0EE8411D8680C42996710829A0B25AE4328A85D8581F56B78CC756606DE49BA023B9D859831381997B20F1AD0F72E43EDC29F221668E6DE9C018787CBE9A9838EC981D930429A07CD7A021A5CBD38FF9B0A76A83AB24CCB42821E443F4F1BBEFBB5CB4964954D4BA2432A42E2C0294BB11250DDF541EFC2DCF937E1AAAB47C3246959210E2E1566AD188A2D0664A925C8A99546B40CD6B3EF51C648C4DA6D2770BB1B52FA662CB555AB0B7CD429E697D455DB6D7869615BB95C528ED7EE72E79D4AC4CAD940B1BB45A5F7B4DDDD28C76267DD78128075041718B605C3ECE2B014C9BBF9347679B922E863A1C8AA6DA4C12B349FE581593C3C32EF97BDB531AA586C01A2E416A132F27655BCEE4D90CC2563EA31A565EC03406E0B2F629A8B33192CC39C8D4D2221EB193B45DB3697BAD3F8F6AFC1910573E068A961A9CD3509E762BD3912B59EDE48CDCC448A4717ADB6A41A1C1DCB5D91668C1D948B923EBD58B088326556FEE67B286EDBC225DCA4D1B135710C4A1DFD506564E286FFB916E92ED242A1EC189B39C21E0AE1DEE12C3992B400D0B47B03428B1E81E7F0564EB3DBE61B85B5BE8938A0E5C09399872F4FEE8FA2DE3E44484E5A147CCAA7DEEA6D1843E9864F7178F9DF915FBD1241231147CCDEF8D07701072E07240470D9946224FB5251F1CA431872F04544A311D41A5958927E1DF6B806E0F211BD3065580EC27B3F45F96B7F4056D34EEC4F18869DAE126C750F418657C3D0BA65E8EDDFC99A23EB132662A37B140E3B3250589087017A259C9B5E4351C35AF67D927F7949F24CEC20821E9288E9534748825E8AC6857721D21660774EB53313757A0ADA742FE3AE474268D13C68D212516B66A246A3134E32029A81D4B4245C3E6D0C06F5F6B2042A0939116948656FE179EEBC5EBAE183FEEBFC1B71D5D563E0229D6DA9D42D96A6A42616BD12D0B3B56A59A672F90A8F8B4D045BF669B4424BED4B41B601B308D48A6F73A71C6ADC41042D26DB124468DF0FA45C2F1F4BE5A6CFE6B3F4AAC4770A2A46B3B92DF83358AD475AC2D265199756906BAA43319A70D19005DD4A047D9249025DF18522E86312B4AD29B71557B075426AF7BC49AB5A8660D8C541A4DEED49B2C258D224606AA2209FD8202C91758E6758FA48D66E2F89BA7B1B423B79F17736173EBB0ECB57E1D0B37360061BD01233B12EF93C6C3687A1C548C4AC19E330342F5376F110962E95C953CE316F5ED20CA2FF7C78DFF7303CB8018E68107E3D0107DC456C41EF71F6C5F7BF733D5298A02DB56EE13BE64D4E37441E333F1831902A5DA8B294F3A063FBD6B06F789FBB18DB3D23B1C3284238BD10578FCFC188C20CF6EDB29FD1F6E0910F32166DC3B68F16A37ED56B280A94729975997B10569BA3B0DFEC8BC129315C3C6900BCDE3454BCFA304ACAFFC6BECC1A3D1D6F675C8F3DCEFEB87A5406260DCB8523588D6D4FDC85BCC6EDECDEA134B9B59EF130C37E4CF62F4376F4089FB896A75C8155AEB17018514C1D9987BCD86134FD63210A1BD7F1FCD698BDB1287916769805B86C8807974D192E5C107B96C0BFF02E048361343833B1D97B0E4ACD621C3132451FCA681B57815241929F4E56861B6E3D8ADC240D974D2C417EEF7491BFCF588AD453BB1179D411BE3B043D8F2CE871300D11738977A4B18A9EA45B99ADD338638AD42926525AD3A2B58CF859CE93D503818501AD66C15C7B600BA9B0E6B928D6A240359BC1B666042CE0A5E972FE6D556B717FB2D426E757516AAC654A5BBB87A8B6945119B9E90892665BDC3A245856B474DFD0DB070331B4928B23AED373524F6487172982FE2C0CE564705A9E24436B7717012819D1B02E205FA0D40BE1205737E6271EEBB4CA7265AA494C7605E1F5606587F01BCB0E06D20778122E6F61D9580681ED27B24F48CDEEF0823970B6D521E8F0E293C4F3B0D1390421C38BABA68FC7F0BC2CD92FC44A14A1078FFCEF74A70ECEA4083B80958FFE027DAB572029D6C48B9D3490CB5C85D8E41E86E9332F47515EB66819151F376D7851847583DB41D121DAB02455FD55A859F2185A377FC8CA74247854E1CCC33ACF441C9019AD5300002000494441544A1A84CB466760CA88FEEDE757699259FA18F5E53B50F9C133302B36203D780407CD7CECF60C6317C411770E26F5F7E1C24903D11A7461FFCB0FA0A4EC796EB9556BF4C2A2D4EBB0CB9987D9E76463E2F0FE7038C258FFFBDB5058B30A2DBA178DCE5E2833FAC18806901FDCCD1A288DCE34ACF49D8FCDAEE128EC15C3E59307A3AD6C1B1A962FC080C6D588C2856AB31F1627CF44A9D91F570C1604CD5A2B7BDE857FE19D0805435CA8F271E285D8EC1A8A1A3D0D19A98928CA3185EB82C85737782349766A18D03B15F9998930B8E7A368BA2C8891BCB25645AAD445EF706C3F511FF41ECC9D4B16F4043849528F5AADF12CC926C032558478935AC919719F855433E34547CC2C5AA75995BF6C53DB2D6CCEDA22F296C145EB59621131B16E453F4B6956CBE0A1B88C8AB7E2CD633AC6CBADCD43122CA3C2811F19A894BF675FB6C48B3F410A9975786078A39095BC6441539030103F6B77E3E93FF6A58AA08F858D65D05AA71F3E1AC948AE95CB67113413B95C48F16BECF477227325F3BBED660E5B7D640189335EBC4F86B53079750B1FE0C910B4FDE427F285C57994AC32C7FEB538F4CC1D7005EBD10A139F245F848D54EA6D7870D5F473303C2FD36AE9CA2E11FA7C22523628B84B0910D480BDEFBD89FAD52FA377A81CC9A11ACE1A38E82AC07AEF38764B5C7DDDB5B2E3872833178F97C8F76E0B86B07DC72E64676723B7572AF45023CADE9F07FFDA45C8081FE67C703F92B02AE97CCEFB9D3CB22F2E9C3C52A8B751493E9112737F0CCD75D5D8F9E1CBF06D7F03E9C16AEE85B8DF3B04DBDD23B045CB458B2F1B33466661EA39C5A8AA8FA0FCC50730A4FC157E6DBD998545C95763AFAB10D3C7E460FCC802E8868E0D4FFE0AB9FBDFE5221DEE65489D4CB8ED54845D27FBDC45D86C0C41754201A60D4EC6F48925D8B6FA130E30165316073C3862E6E1DDE4194CFE579478398B83F5B6F77C80A6857722126843BD330B2B922FC51667099AE0C1E8E2DE9839310F493EEAEE220D4C56EF13A737CAEFA63D8D4F340CA9F0410B706D26E0496971ECC1DCBFDE88D9574F80C1BDBA48C65774A6B10C76663683FCDD744FBAC86F642A138D24C40C6BEC8A62A2155C6D5BC6B6EC0EBB535A3E46B4B6E447C45B8575F062481FB31C799C7B2DC54B2BABCE7A0D6F64BC6E05989657846575A45D7494FE9994F1A56D44740A7520108A2018A0C2B61379DE4FEC1A45D09F8593FD682517587BA275877397D435B0FBB2BA3B4B9D7231AD9522F768B139B4FB21444A5EFB3FDB279FD8CCCBAB44D71661C15ACD5A439A0346D95A542DB81D66C80F3FBC589B380D9B9D43D0EA4CC24CD2E2C8CB8867D15A046DB27B43183524D644FD08FD872BF1C182C730C0BF11D9C172F68492457AC03D1007F5DEC89B7419C64D1A6965A3F35DD156B77FCB36D4ED5A8F8DD56178FA0FC7A5138723CD15C2A6656FA061F5EBC86BD90A2F69828775EC4918C62E86DEA32662C279E7C9EE2B0211E6864808812DCBB0EF9DB9486F2987271A4034A26347D244ACF68C47B59182848C4C5C33310F05B9A928AB8BA2EAF5473064CF0BAC04D8E0CCC2A2D46BB0CB55C8591CE347E6738A5EC5476FA2FAA3E791836AF882B58280B817A08652CF50ACF58EC321470E90D00BD75F320C45D93E6C59F531EA563E8FC2865520BDC43A672E96265D823DCE3C4C1F9C808B278FE623BA63DF47685C783722A4C5E1C8C027291761AB73101AB5048C1E9089D9930AE0F350AF494BBB445882E2B4A0094D109E5A8BADAC34378BFCECAE34CBCA6E27A8F822EAA2E5D55FC9C5317B3C28BECB8173DA08659B2D3E3AD10230840F57A3A86408D8BCB10A8F3EF6111A02D4F1862C7B07825A0CA637821FDC3803E34664C3E0E6C2F2F5347D64C6524C3E063404A378E3F59578FFED771074F810D4753CFADB9B9099E212CB5716717135048BE5687C6BAD0E60D7FE0ABCF0C24BF8EE37BE8CDCB44C6801A108F6D25BFBF1F7D73E801E16C60F278A506F479D7A66B600861FDE8426DC75D7F7D0BF6F865857D4503A7E6AB5DC2DE2D41808C4441E74975A14DD7A2CE3172B823E166EF2C864051FC4BEDF95556C375FBBBEA27B532388BDDD41228FFF36061622A3EDEE89788BDAEEEE09FC30502054967EB3BE36D99F5449B81A8716DC0167A8152D7A22B69BC3B0D799CF043D78702172333C421A34148646476CC36441A2ACDC5CF8D253C542275DC070149F2C7D07DAFA97D137B0172EF811881A68317B71F795C34925484CF621353D15BDB2FBA0A1BE014DB50D8856ED42464B19D6E8037020E31C1467B8316D74211A0F97E1C0CAD7915BBF1E29816A2444FC68A0CE2466162A5386C2D5B704D959D9C8C9CA463414424D7D132ACBF620BB6229926A36B0B07F2BDC68766661933912EBDDA3D9D21B589089FFB870384C43C3BEDA180EBCF2008695BF045289AED7D3F156DA35D8690EC08CD1FD3079543EDC0665111EC6E2B97F4251CB4664B651EA9F9BF1230ADCE01D8B7F265F047F484356660ABE7DCD04243962D8B66A25AA97FF1D054D6BE1D05C5CB0F361D225D8C55A1C89B8642A69713860501EF4DF7FCA7AD0355A1A56279D876D6609EAB5448C2AEC856BA61422511234BB44A4651ACFA3605E8E77A2902E311924B08EF571BBB57B043D77DE4D9875D558B84C725548C7099BC2D24097A7403AC7B4D607F03FFFFD07EC296DC4AE323F9AA254804F454ED476CB40CC15C0E40BB3F187DFDF84217D3C3068B7E788A3A8FE0C3407F1B3BB1FC786B2FD987EC9798CFDAE4A076EFFF96F31E3C27CFCF1E13B58B48BA582B97E401809968BE3577F5A8197DF7C0DE74EEB839FCFF92E7C0E171C0160DEEF97E0A127D760DB7E52AFA18E4394764827204A1B0A028E565C75ED97F0A35BC6A0A4A43F123C54044729B754A4D59ED36D4FA00EB6491F340765BBFD307649138AA08F49D0B6731253B348D33AEEE6D8D910EE063B5BF4DEDE8AEBE88A26CBFD6CDF2AE25B44B7D784A54B42B9C8949E268EC1BCC8CB3FC6910577406F6D421026DA3C59A88FFA107138E17639A0479AE1A094C0A88E58248A88E1C37EA3376ABC7D9056320EE3C70E45BAC760E1FA582888EA2D2B50BEE41964B5ED83470B70697AB3918CDAA8073E230617A53C694EA114188EC0156B83116CC4EAD44BB1D21C87443D887347E561DA980244EAAAB1F495E7D0FBC82A0C0D6E833F14439BD38B7A23151167129C4E83CFC014440B8648E40AF0B41D40A2A3852DFB327711D679A7E090DE0B7E331543F39231F3FC1148320DAE4DAA6A88A1ECD50750B4EF79D652A646044B32FF0B3B5D0371C9A81C4C199107939207A8747CFD0604DEBE0F03DA7622A43B4597183D1D9B93A76029C620D11945612F135F9F3D0EDE68045B57AD40CD8AE751E4DF80584443B5230BEFA55C8152D7005C3AD887E95346889349D907A85B70B7D8641CBD98ECB73A07A259F3605C7116AE1A9F87440F159AD0A2940E8278968F5590258B7D6CEBD6F21858F673BB4FF5447DD0BB319F9AC6CE1ECFCDD23963815C159214A9693959BDCBFEB917DFBAF5E7189A3F187F7CF007209916B2B223E4AE8B6AA04253B26257AD6CC5AC1FDF89824169B8EB860BF0DFB32F16C95131E0A6392F63E58AA7B1F4FD67D116897087189FDB442006D43437C3E5882123991A0AB777899172EDB8E68A6FE1EA59DFC0DADDAD58BCF42DBCBBF83E64A6BBF9F92DDDB40F69C929EC9AD9B0A305DFB9690EEEBDF7664C1D9F2FB289C867AF031EAF0B098954F445731D1601453A038663D075433456B0A506920FBAADCDD67CBA1BCFFE31694815AA1C031ACB776777F0DA08B083F7A3F35B9CACBFA1331FCBCFEBEAED3AB80FBB32EC4F687170662C5BD0F6283F3995F58A35A85C407AC40D701A0622113ABA894D8ACABB4D3D82B6500486D3C7DD4B5A626EEC4B1D8D9D463E0E9A7D70DE97A6627C111D0BA991400C5A2880F235CB50F9E18B488DD5410BD6C2ED8CC2454F4C6B1313212D7AD2B56E23253C33098DF0624DD2C558E71A075FB419E78ECCC545E38BD8E3595317C2DAA77F85A206CAE8F0C3A5B5C149565084EC7FBA551DA170084EC30B4D73C1AF3BD14C9B823309BB1246E1236312B7004BD2FDB8F9BF6720C31D030D91B49CABEA22287BEDB71870F0656854C9E7CEC11B89D762AFBB18978FC9C28461F9F03875F6B1B7B6B562F3EF7E8C01AD5BB85B4B839ECCEE9B4F5DE76093771CBCAD9518579080EB2E1F0B570CD8B6FA63547FB410039BD72114D1D1E0ED8777932FC736477FCC189280CBA60C8383DC24651FA272DEFF428F86D1ECEE8D8F122EC03622E898817145D9B87A5221127D2E993346046545B185CB8AE2009DC21996B35AFA4CAD926FB950BA91C5F1F45F45576FDD9496AE159EA18F0E01ABDFDB8E1FDCFA4B2C7CFB71F89B745C7AD17770F1851978FA9987D90860D78BD42B0B8480BB9F3A88A7E73E8E5FFC642ABE7BDDC5083545F0D56F3D8AB797AFC65F9EF80EAEFFF26491F921F71DD1B838C49A38E15004A66E4A5F1615FF46F1DC734B317EE8681416A5E19AAFFD1907AB77E2E37F3C285C21923F69D326A9F89FFF7A099A429BF19BFB6E8583BC35B4B7B3433ACAADF4C4466F595D84A8506D14FF2774622C538EAA08E9DF31BBD69CD033D9F12265417717B47637B07445B4BB1AE26E906E5BB2E2262CEB26FE3E965BA5F3FB75211D7052272A196C69F75252DEA9DC25EA7763E35F7F0AB3B501CE4850746661B7A0E8BC428130EAA412811354F1DB0637F69A85D86BE6A3CC918B31238660D6A47C6E8A100983ADADD26DA558FDC10AF8FCFB911B29456AE4303CC11AB81C746CD4A08503DCA9BACE9DC60248075D79D8E518880A473FF47136E2E2D17D3069E400F62D92D1D45A538757E63D8E5CFD30D2DB0E20357404495A10313283A9DD143D8511222A37AA5CD9A874F7C35E671ECA1D7D71D89D8F94681D466569B8EECA29ACC8470F1BF146452DB0E7D5DFA1E0E0ABD0221A1A1CBDF08FF459D81BCBC6ECB13998306A0074A703C1A886482488AD2F3C01E7BEE5480D57A3C948C14EDF486CD20661AFB318FD5C8DB86A4A3106176531B65BD7AE42DDCA175058B7068198816A4F1F2CF39DCF42543386A6620607396340D93F70E0B95FC3156E456DCC874FD2A66387B3888B82461566E1CA890385DC282F1C2BB225C8998EFA96AB43E83A8AA0A9B82CEE04E9C404276E41CF230B9A2A09857109C4C8192DB234826D0EDCFFCB8528C8ED83EBBE3205F7FCA10CF73DF810BEFED5BE78E24F7338A06CF5004538C21BF2732B2A71FB8D8FE29EDBA7E1EB5FB908DFFDC18B7871F15BF8D11D3331E7E6AB58CE56BC468C93525923B4A13B4CDE54399D3004341E69C1D3CFBD838F56AFC66F7EFA43B85BB23066FA4DC82E4EC2C72BEE15FD19E936A595FFCE478DF8CA377E88154B7F8B9262526724FDF428DAB4283C3A694552F8CFE4C566F503A66EEC82B5A56B87674B182E816018810061DD29F3A4BB1C63BB5E117477C18B9BB3EDAC69B9243E3741DB99F9588919C732DD4F6653E04EE9C27F470F3647B3AD6D27D4844FDF5C8823070EA0AD95F449C2D0751D016AEDA5536F6A6A1A60A02D4C168586A8D38B5A2303B55A0AFC4632268C1C844BCFC983E910957DC499F459A5DB0FA072C70678FD7BD15A7B0091D64644756A446BC0156D434477A2C148C1A158321A5C595C629E96D30FC5191AC60DCA45769A57EA6A88BCDE37DE7A0FA6BF128EA60A688D35D04341C4A254D91803C8C263E52413471CA9A836D2516DF442C44C465A463AFA26C4307DDC20A4249AAC1AC84DAF751DF52DC0DE8F17C338B01AD5357ED4867D2C6BEAA71CF03139183BBC10BACBC9D660341245E3DE9DD8BA6209FCD507D1A4F970C0CCC3612D037E3D15A3FAB870ED0523E1F5187CDF15E57B51B17125C2E5DB501BD470584FE60A456A083B7D683AA64F1A299ACE365760CB6BF3505975184D8E642E8439ACA5B3C8D184C179B874FC400E12C6D3EDE5FC7366822D5D4DA8218A9C07C16FD68572B159EBB91B163413F4ECB1305CD2D32A7DB2D15818AD7E1D358780EC341DAB57EEC3753FFA33060CEB8BBB6E3A17174F1BCABA2AC240A572730AF2024FBCB5157F7FF61DDC7FDB2C242699B8F3BED791D3D7837B7FF15524BACDB884ABB5B91021D2B4F2DE2012495077288465EFAEC3AA4DDBF19FFF730186E5F5C182C7F6E2FBBFFC19BE74F970BCFCB7DBE0A4A51A0636AC2B4355951FBF79FC03ACDEB006CFCFBD816313F4C7DEF939C8EE9F0D9F69F0F221FDF70E82639C464B4B5E6C74E236042173A9B72A54E92EA39E86EB3B93B4DDDF701A3ECEE2CC0E567267BFC7C910B4B5C28939395DCFDEEF5188E77FF4C9A7D87B28885030C8D177F2B3C662A4B31C6672A0DF450D933B7F53A523E97A2499C005E34A909FE16312B70A1038B94ACA64F8FDAD58B67A1B0E348471A0B6192DC108DC24E0138D211C73C1E7F120332D0599A906268C29417A12BD373566A520937C70886E740DADA130F61DACC4A61D15D857E147736B048168186147944BD1A9EB08694A27A724212B3D09593E07A68CC8479A5758EE7C7A666952E114A0F2053AEDD635F9B1F0957FA0396C220013E9496E5C36B61F06F4EBC5562A9F28F8080C541CAAC392959B51D918E4D6C4A6AEA16F5A322E9F3A185909E4E327670F05F3A809AD8E2D7B2AB162F36194D53673897C82338A8B866461D2F001A28A929AEDFAFD78F5C38D286FD4D014612572E424C43069587F0CE99F0597B39332A3CCD464EA15BE28AB5DBD3C8E8BC579541C4500DA21CD2CBE8CE3591CBB70CBCD4FC3347663FE5F6FE42C0E879BCE51EDCA88EC0927E0A8C82F0C140CBC1FE1E4723CF3C2FF61D2900CB8B84E80CAFA35C44231684103F547DAF0BDFBFF8CE9575C80F3F30B70F7AF9E40E2C00CCCB96936B212BCE021D230AC5253D640D2D016069E7B6629C2410DC10050BAB309D0FC18382C83E32966C08305CF6EC1AAF2F771DFEF7E88EF5F3705CE2050B5AF010FFC6E39FEF2DC6A34C70EE12B5F1E83649366979A73B462D65517E0DC69E3E22507E299134756DEC0293B891E152EE1B5ED8A4CD031B406A80D9C754AF9FC64A02CE893C5D04E90274B8E27FBD9F6D7F12EFF39DEC83ABBC9D421AB4C95BD6DE41E8E0187EAA3089165CA8D6885B5C0DE37EE8012159624556F51C942348424534356326579D093257291F936C93294ADB1285BB8A605A86E89A2B2A61E8DAD6D8885C21C81771A0E24794CE4A425232BD584576AFA58B2AE8219ADBC5EEADE224AC1EB5BA23870D8CFBDFA88B45B4324871A83DB74C06502E9495E64A726A05782133ECE38104F3EC3C72956F2C1D248EC5FF4DFD9BEB7162D012A458FA257B217FD3312E03234715497B7C0BD7AC2C081FA20AA1B9A118984E14204FDB3D291996C726770D258B17281A9634D8BA6E1602D5071A4164E3D8A04238AC2CC24A49208BF4C0FA4937855730C076B5A106C6B854B8F2233D1859CB404789D0E21A5D185FB8BDF807F6F0B627033E3CF26688B8C2C4E12BC1D4373B38627E7EEC2ADB73C03B77317E63D75235BD0BA5B64FC58416A7643C8E05F4D335030E2FFE1865BA6E28E9B2F8657A7EA472A3C914740F651014F3DFE3116BCFD045E7C791EDE7F6D3B7EFAEBDFE3EE07AEC33533CFA556C6EDA9A51C9FA37C6E4A657460F53FF763F6E5BF4673B30B0167332206C92D046525AB17E15036A0FB60646DC7DF5EFA052E1D5B0433081CD8598BC75FD88D47E7BF8B81834DBCF1C26DF07944E607B94AE23157C9CB56A36A26E8CEA75A8B03E4DF384848047DDC4C82137F5E15419F385667DD95963BDACE01D6F7C7DA9F44BECBF1EB66ACF7B66C0D7A6EC354C34C1DC59D44F6ED4D608E17738DBF97ED09A2F7A30C8E48240AA7A1F37BC68924EEDBB7E596779ADDAEC66EBDBECBA0AD7424D8F139160E748DCC468E7F6A67DCACF7B15F67FFFCE361D29DC52A0885B25DC42750A054EE594CF22D7E0D4FCDDD851FFFF869988E5D983FEF265C3DFB1CE82E51312ADC63104136DA5542C0E3CFAFC4A3CF7F8037FE763B7AA73860905B8CAEA56BA496D85FFEFA211EF9DD4BB8E11B6371EDF55FC3BDF77D8C3F3FF3189EF9FBF770E5E593DBC95CBAD9A3BC03508051C3FB6F55A2E97025E6DCF53E6219D5B8E9275722C51D8119011C6127566DF0E00F4FBC0733670396AF781403331399A049EBECBAEF3F8EA5EB7660FE633762FAD402E195677D1D2BFE272A8259B2C122EAA300958B4D4E14EBC59CD57AD0DD5971EADA2F2E029DCD10FBCFD6F75D5D73CC07C53654EBC4C98510ED14261E365B74F754B2DB1717E913BE332668AE02156EAEB8D0111FE9A368F1EB786A5E296EBD653E9C8E3D2C377AF5D5E361182278460D7588E00C22E700F0F2C26DB8E74F8FE0E1F97760E2C842B8C8AD41E67B58541536B70037DFF90B5CFB1FFF8504570043FBE5E2509586DBE77C883797BF8127177E13D7CF1C071759E332784E27A417DF5C8CAADA5A7CED9A59D0DBDCF8E637EFC6E4A93370D125791832B82FA73E52931FB2CCEF7970377EF987375134F2003E78FF374873027A40C3C72BAAF1ABDF3D85EBBEF925CC9E311609E443A1A033ED1D524287B271D8EFD54D826EA32C8EB356B0FF84979BBAF08C42A093492EDC20EDAA7DC2F7D79170BB1A1F079DF8CCDFFE57F6E572CA5D178C7CD479F58C42ED94DE2C8BFB7025E9D1044D1FD4DA02FCF9C99DB8EDD679308D7DA020E195578E8349DD7064493F19B7461BB07D5D1437DFF622FEB9EDEFD8513E1F690909F14EE7C47B8FFDF145FC69EE7378F0F1FFC5C489A3E1A63841C8818A3D21FCF4A71F62DE1B6F2031BB0D2F2FF87F9836BA2F22A108FE327719EEFFC39F70E995E7E3B63BFE0B69C93EBCF4FC36BCFCDAD358F0CC3D48753BA538121DC3E88680DBEE5A8BDFCF5B8AE193EAB1F88D7B90AA47116836F0AB7BDEC3A277DFC313736FC4B051B9BC5C9C01A0AAA60ECFBCB408C386E5E1D2F3C6710A9F25E1655F53B6D515F74DD3EF685353047D4A97A57AB32F0C02761FCA89126CE79B3F1EE11EEFEF5F1830FE0D37222D684BB4426AE30B778416426BAB134F3E598ADB6E9D0BA7B113F39FBC05B3AF9904DD1543281A86C3E1844E6E8B26E0DEFBDFC7BD8FAD42AFBC303E5C7633D23C6E762BBCFAEE5A7CFBBBBF42C9C02C3CF2F0AD983076106B7050829EE5F0FF707129EEB8FB75ACDBDB88683400B7D18C58A4029E443FC64E29C6A38FFC0C03FA6660F39E18AEBAEE163CF2C00D987E7E21FB26D83943D6B374B1DCF58B7578F04F6FC2CCD984F7173F8C71FDFB62D7E630E6FC6431DE7E7F05A2AE20029A1F305BE172D6A377A68E39B77F0DDFFEFA6C0E1147C351E8DC90E038E95436178722E87FC3DA551F791A103811B2ECECEC3E91D7F079581E8BA55B83DA90517A6087AF137DAFD330F42FD45B5A185BC9EFFCB3C8A316E259F415417393034FCFDF891FFFF82998C62E3C33FF56B6A075972C86A1E29330D074288C071E7A1D2FBCB71111D4C0348EC049625F70A264CC14DCF97F3F40DFBE0069B65000906685B5C0E81BD96D6EF9F223F8E5438B70B0F21022E106A4A4B66119159938848F9B0A5CDE7C6F23EEFDFD3CBCF0EC2FD1BB97974BF5E98B34FD38E53B042C5BDE8C1FDDFD08728B02B8ED47D7E0BC5123D8FDF2DA6B7BF1C7C7DEC1C12387107147E1F685F1F853F7605889C6F7448162A1FECEAA1E8AA0BF500B56DDCCBF0681CF22C863FCAD831FB9ABBB3C86157ED4A59D89FF5F33E22FE6A7D8B1602B5A801F179CE7986D0C7EBF8685CF96E2CE3BE7C369ECC7A38FDD802BAE3C872B48A9EB7A5C2439AA73DAA15446108D072CCD72760388FE92AC1D1321B795F823FD5E0410455E3565F8D0ED50293D678970EE3455F6C9962AD4AF53A6B9F1BD5AA72E5B5621A7C44999609667A7EC0FDA7CA43824BF4427FD0ED21AA76B75BE5741CBA24558FCABCB98C5D1414265417F3197B9BAABCF8BC0B108BBBB646ABFBEABE063E7FB5496B43C7258015459266E719E4CC16C69013E5A5E8937DF580943AFC557FFF3028C1A9D0F27A50E32E6C47AF45FF17307E845AE9E203CD672A680A114DA67F17D2ADB96455224D6C5E99B36917E8D32EB45AD9E28B4D199DC39984954EEA0D27171FF16A7F2E75B27009953CE7E76A9A7CE06374B400BB150FA9EDA8A716E3B352DA6AA563B292B82FEBC4FB87ABD424021D02D049874AC2A4322C476521479EBD204D5496F248C83871A50DFD0C89D71FAE466223D2D998B90E84BC8A24BEB5B12A5CDA8E56BA40C97D01C8F0BF6536B29EA8C427D296D25EB5C3824DEC12A6CE28E38F27DE2A5E2FCA652EB5AEE0A567358EB333BD592C886C2A29E92E289F4E5A41FA4667F07DD676B108AA0BBB5B4D4C50A0185C0E745804947F6CFB408931951BA1CACD2392AAB8E46D0D8EA4720188423A22129C107978BB4A845B97D5C6CDFF2FF33CB0937050B0FC93657A20B91D52856882FB35383BA95C884782E55B784FC656D0AD3B0F53BA9A06AB1BE90CB8FB70A67E2B5FE716EB9BD9D962DDEC7B72AEFD72A529425AAB65385646645D09F77B5A9D72B041402DD4240BA1EF835B6AE25E25BA985C76E69917A174698D31D1D51D262112E002A9F1772FD92A42DD6E37A6FD9D6CAA2CB787B92388BC73F9ADDD6524489F8942A43E9F6B84F0B8BC5C8B62B16A95AAE2C59A26F31AD7474C8B275B16D08E21762FC72FF8937986D6F166B1390625788B4F25590B05B4B4A5DAC1050089C2A04EC56A1C54F52CB83F9D0F22DD3DF48F04AFA80454360E1CFA5E09AA062D249B12C524970A2B6306EA4C7CB38ADCF65239BD23222A0D277BAD6191365F72474257EA3B5AB2BB21BC5266BC07975E25F845337A85CDBF2894BBB9E7D3541D9FB50A4CCB12F9BC385B271ADDDDC66939BEFC0D6AC59A5D99DAA25A7DE4721A010E80E029D1DC547892DB59320D7FC50008D0369C2E4156DA6884885C6B3F8927E6DD638A1809E2455AB8EBA03C99216798885B6C85E3658154FB49122B785A4FD8E5A335D047FA3D23F22BA7CDB495C0A4FF338654E336F35CCC4EDDDEBEC98B1A54D16B4B8266E761F85ABBC11396E55A8D29D85A7AE550828048E8F4017041D77E712F1C89439E62049829C81C15FC227211AAD0A7FB395EE66D73517C26E22BD4E58E6F65D4058D144E4F1F7603F35B1BA4878B3979DF32D49D70CA7EA59422596E52FAD6C7AA5B8077A6FB2C385CE92BC81B85EB6A5DA4CA14ADA0EF8DE78AC3692B77E3E1309DAEEF3A1A41797D301B7DBD971C73BFE32515728041402FF4E042CEBD79EB570943B41FA82E3F9C1328FCDB2A83B11B4351C6159537A9DE4BECE046D25E5C52D70EB834519F96712B4B5894812B5B9D2E30148227FCEFAB0B9993B5CC78976425EE09804DD99B43BA58658EFC71D5502D4E5BC5361D4E798DBCFA76647471E4A188F521239603A75B85CE7815CC6000004E94944415422F5467D290414026738027677827D28C7FAFDA9186E9CA86DBEDFAE2C5AEBBACE9B4B7C679056BE752438D6755D59CC9F398E8E37284E17A2282614A69E8444D05DA67D9C143A274DD022995CEAFB46A370E85A4782EE0A68EB16ED7F3BA9DB562F520828041402A711013BC71E65DDCBE8A42DA84A69E0C19050B3FB421034A7B05851510E1E1CC782B6476F4F23AEEAAD15020A0185C0E745C0EE8EB6F2A53BFA6E452EA0D57FC022686A79757C35F413BFBB93B6A02D8226CB391AA1A86B0C4EF241BBA81D79A71B903F9FCE93D1890F595DA910500828048E8D40E7037E9CCE6C6E122E9C24EFBAD4FBA01FA941045BD0A7D04370D2044D2E0E2B48188B524B200DA6A933411FF5D5A90BB55A1C0A01858042E08B8C40572E6B994062EF21CB43B0C29A44D0E483FE4259D0D6ED517E24B51632AD5E6936F4ED22265FE44951F7A610500828043E0B017BBC526A2B0957475404098341EA0E7FEA4CE893B6A0594E85357785949F50FD13FFEDCA9571EA6E592D208580424021703A11E83242D8E103AD9E85C27A165CD8CE895F802C0EFBDD5A55971DCB788E05E0A9BBF9D33945EABD15020A81B317817683B2A369D935758B7EF3A7E3EB7358D0EDB763CF6F3F7E95CAE919C8E90047BDA742402170F621D031C5BA9DA03BD7F158FEE753E973EE8CF62925E8139B4A45D0278693BA4A21A010F8F721204AD33B7B0A3ADFCFE976DD9E1282FEF781A83E5921A0105008F45C041441F7DCB95523530828044E33025DF9034EA5557D1A085AB49339B623C3CA1A3CCDC8A9B7570828041402278DC089B9623BFAA56526C7497FE6D12F3CE5046D453315419FC259526FA5105008FC8B11E83E418B5E34C2403D555FA79CA04FD58DA9F75108280414025F7404CE4017C7171D52757F0A01858042E0CC404059D067C63CA9BB54082804CE420414419F8593AE86AC1050089C190828823E33E649DDA5424021701622A008FA2C9C743564858042E0CC404011F499314FEA2E15020A81B3100145D067E1A4AB212B0414026706028AA0CF8C795277A91050089C850828823E0B275D0D5921A01038331050047D66CC93BA4B858042E02C444011F45938E96AC80A0185C099818022E833639ED45D2A0414026721028AA0CFC249574356082804CE0C0414419F19F3A4EE5221A010380B1150047D164EBA1AB24240217066207062AAD467C658D45D2A0414020A811E858022E81E359D6A300A0185404F424011744F9A4D3516858042A04721A008BA474DA71A8C424021D093105004DD9366538D4521A010E851082882EE51D3A906A3105008F424041441F7A4D95463510828047A14028AA07BD474AAC1280414023D090145D03D6936D55814020A811E858022E81E359D6A300A0185404F424011744F9A4D3516858042A04721A008BA474DA71A8C424021D093105004DD9366538D4521A010E851082882EE51D3A906A3105008F424041441F7A4D95463510828047A14028AA07BD474AAC1280414023D090145D03D6936D55814020A811E858022E81E359D6A300A0185404F424011744F9A4D3516858042A04721A008BA474DA71A8C424021D093105004DD9366538D4521A010E851082882EE51D3A906A3105008F424041441F7A4D95463510828047A14028AA07BD474AAC1280414023D090145D03D6936D55814020A811E858022E81E359D6A300A0185404F424011744F9A4D3516858042A04721A008BA474DA71A8C424021D09310F8FF23866F9D43DF71C80000000049454E44AE426082 , 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1), - (4, 'SDC', 'images/cache/portal956868231_53879.png', NULL, NULL, 'http://sdc.api.simpledemo.openecomp.org:8181/sdc1/portal', NULL, 'http://sdc.api.simpledemo.openecomp.org:8080/api/', '', '', NULL, '78ot0W94rpB0o4FYzVoIOg==', 'N', 'Y', 0x89504E470D0A1A0A0000000D49484452000001680000012C0806000000EE2C29AF0000200049444154785EEC9D079C5D55B5FFBFA7DD3A3D99F44602015208044209BD77E945050151442C806097A20802A222584014B120A2285800A54887480D2D011292903E997EFBE9FFCFDA6726441F0804E6CF7DCF7D78F326CE9C7BEE9EDFDEF777D659FBB77ECB88E338461F1A018D80464023507708189AA0EB6E4EF48034021A018D80424013B45E081A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013B45E031A018D8046A04E11D0045DA713A387A511D00868043441EB35A011D0086804EA14014DD0753A317A581A018D80464013F4FBBE06A20D4660FECFD1C40118F2639358FD43FD0F75A87FC56FE30F30E43DE4F5C9B1E13BCA35E45DE3FFF1D37F7B9FB7F136FA148D8046E0BD454013F47B8BE7465CCDDF806E07E8327E9D1C893D3084A44D4245B296A2544BCE89C0D890A03778D9FA81987252A4C83DC420C654542C2F932F07B090DF878AA4E5F7C939F23EC9EFDFE0B6B1117FA77E89464023F04E11D004FD4E117BCFCF1F2468A1C1C108D950ECA948348650FD3826C6C526C014CA0C5210D844A998C04C5E997075C2D249BC9CD0B93148F87231F91AA467F9A7BC6D1242FFDB110FB0BFA6E8F77CCAF50535026F13014DD06F13A8A13B2D1C60C7C164C34018AC083326364A8A74E3389F30B5F0A69C62493C5CC0359AF0B114C70E5E61300696785945C2B1A17E67C93507C3E7E4F260F903046D4134C8D421982E18F29507D243F7E7EB2B6B0434026F8A8026E8F77D710C46B46F947F96DF952192EF199570888C84A755542D3F897DCC2850C90BE2086221FC60E07B04769AC84CA26023B655428338495FA87B80E4A785F1075326837858C2E4150C52A0BEF4A111D008FCFF464013F4FF6FC4DFE2FDC230C43024624EB6F26223C6340C8C38C68806C8D7A8425C82B08ADFF13251B99B5AB98857EAC7F0AAC45E8D38F0B05316A1E360A673D80D6D58B9E1E4868DC7CC8D80541361EC8093C63052C4511A0C87C1783E1888D4D386A449DE28B95D67C0E9E16804FE0F22A009FAFD9ED4C1DCEF00074651A4C8D954398B98CAC0D65E9600A3DC47D4F52ADE9A2788D63D49A9EB4508FAB08C88280C88A31033949C768429D700EC305039E89034AE91A718A60953C3C80F1B4BC3A8091863B7263F7C3266F348A23847480396D344484ABDB363A8985B1F1A018DC0FB808026E8F701F47F79CB7F536108410B39477140148658710D7A16515EF5288557EFC2292DC22C76908B2C9C284564F783E9134531711CAB2C87642C549E3A825400E6A038C4B2F14911192601167E240994765CBB914C5B3B4D5366929FB80D66CBE6608E05B30DCCD4C005DE6FA0F4FB6B04FEFB10D0043DD4733E40C02AD32CC49904C6AF6F0C0EFE3ED9FF4BD2C16105D308A8F6AE227EE667C48BEFA75A5E453E55250A4A18664C6CDAC4710AD337B125312DAC2EA9118C2465ADDECC10A107A130752C11B64FDA36318D10A20849A7D87E889D76F04C937ED294EC916447CDA169D29E348CDF1EA3653258D904A58154B51AE7C097FAB7DA5C1CC8670F9E2451BD21A391FFDE42A8F7065A6E197EF2E324476FC6E6FF549A6C280B4F06B2C16C2658C88B547E7E700CEBDF6B30F76F10ABBBD9EB874EE80CF587425FFFED22A009FAED22B5B1E70521B169E18B6CD9904D3DB08441D5669E45ECBAC48E8167191886956CFA155E2658F02B4AAFDC82535C8B2991B168998DC172924400AD78391095859DB0BEE4A985C836D074F8664C688A82DAC78C256911624542991646646318BEFA992444E47A5E6060A6F294AB21F98661A4A79E416AD37D30478E22B22C3C2B456040DA343055114D0AD3CD61C8DF942E13C7390CDF04A74CC5AA60D344EA3FAA40A24459226F3E28073421345198F9788212D9C8C2F0ECE4DC813F5171F6C0BD49FD42C613F9C9CDCBB408B1B1E2443D1ECBC6A810B1826E40CE2273605B4486BCC3EB47723B893620764DD91BBBFCF5EBDE1D029AA0DF1D7E6FFDEAA8426CA694144E6239474583E180CED9C2934D40F9792882E72EFC1577D333FF3784AB9FA4990AA6DA1814821E8825D7970F862A627442135322D881E8D11C609A44586728B54764083127A42E3C6E44F25B47A93984C015A70F1C9226B12C4BA54B8230A46435A8A8BA75CA7EB46C731C66EB568451161C53DD342202525E4A91999FEA23A0898C2FDB8A1E35CBC6B24C55ECF2464712C32651AF7AAA182468A55289098849FB6172EFB12D5C536E3349546CA9248D60E760ABD74518B19F44F918723B528AF1C1187E50286E1960C7A0EA77E4BD15C927CF04C9B9EB9118F8F78661FA5B4FB73E4323F05E22A009FABD44F30DAE1531A0634ECA4B92A819A90A148A31A889882DF4C9D556E1CDBF89D2333F2113AFC0C6C40B9A126DB3906F2C119D0A3531141927F4266A381521FECB7B0F3EBE273F3554914B42F2721591EBC5A2E0886D22D31BB85E720151900C2A494CD32488AA985983AE6A0E37338D615B1E42CB564761E436C30F53205C2DAA3EBB4A9FD107713B2D151B5345EE860843920DCF37386474892E6540B1B2BE983D926782E4161324791FD7B27007107088C8C9266818E2AB9B5F924491BF3308020C47FE3EA87A016B4A21BDE5805AAD86191BB4346618D19CA22D6F2BEC3286E029A3183C124579825C32701D3F0FF187445FFE4D11D0043DC48BA38A8F88D7A4025018323652B8A2671E785F3BF4716AAFD0FDC89504AFFC8936AF1B2B8808E5113D9D21886D4C15F186D8B150FA40443D10F18586857C25A492149A484428D1ADD0B114A74854AD32088AE0E40661131B52CE6D928EAAC8D6E1E0219B941241CB77216BC74C13D64A908AF1EC345D4116373F9D71DB1F4FC366BB833345E9A45DBB9B5EB9EDC42318563531C24EE228C66C1AAECAD4DF8CA0E5E7FE40917938A058B125BE97E29A50523F3276033B32A53627C964482125E08A4ADC046FA040D232C136A1BF1AB1724D3F5D5D3D148D0C5E6C2BE28E7C9FB0562663864C1AD5C68CA963189D91187C4047BEFE363758EA93DC5435410FF187445F5E13F4FBB506CAAA0E2FC68E3C1591858643F22F79D4F6B0FA1FA7F79EABA8753F4226584B4E541C4136F1CEB05C0243E82AC9F73A22A393348563E38742D5268619128631860A55D34ACD11A90D3A79860F317D1FDBB6310D4BA52C06B622550AC3B6240FFDAF65DEF27321E6A4D45C883E49A1382A4362E21B2615DBA1D78496899368D9E51CAC86B94456037D56338E67D1E02EA1E7D95F12B56E41FBB4C3C018D864FCF749184C052337A48850A2D95852400656682B828E14410B491A547CE8F43D9E5DEBF37C671F4B7A3B71BA3AB16A1E516C60DA0E2DAD6D4C9A3899D832F13D8FC84E13C406BEEF13043E665003AF825FEEA3ADC1E1C85D67322CE39092E8DBAB924E0F96B6DBEA7631589DF97EAD1FFDBEFFDD08E8087A88E7BF22358012C586C9EE96EC9F49CAD809CB98D545C4777D8EEAD2C7309C066A918F617B2AF1614716569023B064D3CBC58E23953B15EEAC4AAA3593C38B6C2CAF44CA9434888369E7F1FD8144886C2A9A81EC81110501B1283654EC1CE208C94BEE59D20BB14160BC7929B72B7B6B31A4A2885418A9A219F9538C6C867EDFA533DBC6C4D99F2233F563E08C240ED7E23D750EAF2CF8339BEDF753329B1CA16E1C6F1A42AB1B4472334912E426516CABF7905F952DE870031E78751D0F2D5ECAF26295AA6F92326C9AD30D8C965CB4EF83E560D859369BBA05B6ED100601EA2271401884F841A06E50815FC3AB14C85A21C5EEB58CCF5B1C7DC05C5A7319B26A3F2048248A0369284DD043FC01D197FF8F0868821EE205228FE1A928C6904D40C3A46A49CA4136BF5EA072DFD5444B6F24E5D788A26178418CE954C1ACA868D5089B084D5F292DAC38C08A45C9E110DA794A519AC06A50A9904CA6192BD58A69B7916F1A496C3989EAC30CE82FF711861E51B988DFB38E7454C2F27AC8DA3572764820AA87FF804110A7898D00CBA860A9AA46E15283D0CB63D24235D745251E8D39F24086EFF6417A1FFF13E6B2AB89323E8D737E4E7AC68960BF7992201AD8AC3394AA25268A4CB5B958366079C1E78E97D7F1F49A0E3ABD2A664396967C9E49D906C60606A9EE7EAA664477A58C936F61C4E8499896A433845E2395D2303C97300AF18210370C89E208BF5626F22A44418DA8D0C3D471ED1CB3FF76349A92AC499E5234410FF107435FFE6D21A009FA6DC1B4F127092F5BA22E101DB291A16A88AB4699EA73D750B9FF0A22CB25322372618546212B5F741E0E9E15E1DB2E719C563968118D492ED98F1C7CBB9954DB7872E337C398BA1F8C98464C33C42DC080EC4E4E3622BCB08869C5D8923E08CAE0F7102F9D4FD7922759BDF4794646AFD064F4AFFF0313099A1C09A9CA76A6DC2C42234520D5889E472E97C688AA385640548E882D9F6A9BC1921E8BB14C6444AE9352A544E680DFE06C7E9492B2BD590EDA55B78788B44800256A361D7A31B8F7D55EFEF6E4F314CCB1F4167CB6DE6C13A64F4C93F563CAAB17535EFB0AD54227DD7186D4B0B14CDC743A8693A3E28610C6C4810F61007E481446548318378A28552A388E855B2B53AB1494CB48B5671DC71DB43B3B6D3E5CF63CD50D31917724E3FE3799F4C62F06FD4A8DC03B444013F43B04EC1D9F2E398EB48BAB76B87238D51A66E71DACFDFBD768AD2CA6266A07CBC20E51795E4947D896ADF2AEC20C69D756F9D56A36458FD380356A3A23A71F8A3D722E38139562212140295C193041DA206095775DEF72A7A254B959C8974BECD7F04BCFD2FDC25D94163DC6B0D26B34FA3DD84A6F9DC6B7724471486CD4880C0FCBC9409855496171D933AD2A66E8E0C421554BF2E152729EC78C7D1CCBC6DBF532F25B9FFAA66E7842CDC518B246881DF4AA829897AA297E316F2DCB4A065E18323263307DD26886A54D1AE22AB5EE7574AC5C467F4F37C54A9995AEC30EBBEF8B9DCE12C6065128517844E07B891A2584208CA8F91EBE2F698E80AA5755F968CFAF91AD54E82D75AB315CFDD913C949597CCAC5352CB2A2134FEE52FAD008BC2F0868821E6AD86B31B11D50B3A508C5C02E2FA3FBAF5F22DDFD0F32411FAE292233494C67955CCEB1255FEA4AA11F969927E540C173885A67D1BCCDD1D89BEE83911E0D664EE568456026052E1B7BC4A10B511F466D25E12BF7D0F7C29DF83D0BC9DA45D27688E5054AEA66D98D2AAF1B9A3515F12B15482CF1664026F4F18D3CA9B88C6B99B8A64D5E32E9BB7F8BC6AD3EF11FED4A950E3AF6F1629305FD01373CF8321DC670A2D864CAC856B61C97A641D2426E09A3D24FC7F2A574AC598B17982C5AB6921DF63F8A86E1A3A856ABEB25824AC32D635539E798308CF03C57917210FA54DD2ABE10B45BC3ECEFA7DF2FE396FBF8C169273179440341AA42D548D1103803D6AE1B8BAE7E9D46E0DD21A009FADDE1F796AF8EE3226E90C7364C6C7A293FFB537AFFF913F2B5D534671C2A7E11C310299DA572CC86E9A9220DCC0C419467B5A825A6CCA57DD6C7309AF7062347E018848E743FE9C4A1118BDC5B8EE34D4F9024B9A4046CB923B8102E23E87898CE7FFE1277D5938C355CE5F911BBB2D127E61E153C3B4E0A41E2760CA346362AE19327139555C9B86FD8E462F076B984FCEC33FE835DA9E8FF8A046686793D26D73FB20C3FDB465C2BB3D5F836A60CCF10F852961ED2608554FBBA58B6F8253A3ABAE8EC2B91CA37337BF783084D07D775955A45D41A42CC8A9C6563D04FC8DA97083A10920E70DD1ABEEFE2BA1ED4427AAA45ECB8C429BB6CCB11BBCD2430AB44A4C878A9C4296AE3EF7F1B3F2FFA951A0155C025E1863E860C81026B71E21164AA0646F50956DC713A4D95974949E01A9818B6E8A363EC50F2CCBE08CE88D336453F03A9D118D38FA275FB23309CF110B5135AB6D2FF4AD189657A3858EABF8D3E0211FD5954A48C5BAE19C764C36E2C6F19FEE247E87BEC368CE232325681B459C3080342C32690221649D39A01E92089A0F36119DF92021C9B4C18E1EF7C31B9399F4455B3BCE12125D81516F6C4FC685E273D8DE3092A7DECBA493313F2914A9D7891A3A477A9D865DD9A15BCB66431ABD675B3BCA39B7D0F3E8C6CF36855D62D690DCF4BD21AEA2B0893CD41D757A90D3FF054DA43A477AE572390EF6E0DD7B5E8AF54C0ED65FF6D26F1E963F7C531A4443D85E53A09394BD58C3E3402EF03029AA08718F47588B67904F96A48E703E7C1CAABC9FB15EC3043208FD0D219258E71A4A8431CEC6CA8D8397A83E18C9CBE37E99D2EC0488D549D4F446E97E494C5BC3FADD4145203F26E36B1C2B89434012083D4EF49F09E51AAB70844375D5D4E75D91D2C7CE0C78CB6BB690C639C5072D03522A7A8226609BEC37880A0C5772436C90511A51DBF4ECBCE9F8178406627B1804AEA26E5DA52C8B2DC35F9F9032FB136339E322673C6659894AA62472155439E0E0CCCC8C50A5DD6AE5CC6AB4B97B1AEAF48AAA99DAD77DA45798728EDB7E49DA518258AD647D12A820E937CB490B7EFB94AD9512A16943DAB44D18532940B559CD8E3A07DB6E1848366D31887E4440FEEDB0939BF8BFBDF102F2F7DF9FFE30868821EE209EEA0C8B0D8C1EA5F46FF5FCFC1E8BF8B9454048ACD5C9C2332C5AF593C3512D7359198F53923C94DDA93D65D4E84DCDC01CB4F614D958F48084E0CF6A58A43746FEF6213ABA61AC5425AD22B322E55E29852558912210B91DA6107E1DA27E879E4E758EB1EA521EEC18A42E2D8A6E648955FA022E85C5826104B53C32255F528CFFD068D73CF5111B52A7E5187E8A8436CD3A4EAC7FC74DE7216971D4CC7617CABC316C30C1AC2329ED140C16A221549297905337459B17C294B972DE7B5B53D6CBDD3EE348F184B184544D1EB298DD7095A0838C00F035CC93FBB1EBE5BC3AB5655AEBF522AE2B92EA55209AB6AF1DC530BD86CBBA95CFCF59398D694A159CC9F020F33258D0C742DE1107F4CF4E5DF04014DD043BC34BAC388B6682DD1E23FD27DDF0FC806CBB00C571916394146953227A64786F2692E1839DCE1B318BBF799307C17B01A3054A9B4549C0C729C2A3101439C3C32AA13CAC61E7285A410458C9406FA104ACA404AA4B12805D0660698DE2AE275F752F8EBD7C8066B958F4518B6E1D91E4E5C2518CC414B8AC34E61D75CBA677F95BE9967D2EDA5A8945D82813444536303B94C8A75DD7D3CB046CAB9338CCA54983E26472A92DC8F94AFA7094562A8B4772E86EFB262E91256AC5CCBAAAE02FB1E7A0C454FAC557DC26883D44618AE4F75483E3A21E824A511BA3545D441AD4AB95854117558EAE4F13B1EC5AD343276EE0EECB8D7565CFEF1BD688F6322AB8469669421933E3402EF07029AA08718752F10F25BC4DABF9D85B9EC09B212999915ECB8423A100F0B2166E97C22CE730EFDF63086EF7A32CEF493A8991395D19068A00D894213433A75C44A49213F5749808DFE2BA47023B966E24E9774A54D5C3BD4FF8F1CACB086D1FB086BEEB88C5CDF7CB2D26E4BDCEBE4C660888AC3C31B54713892233749F901CF8C3C99A7C77D9A6E63C440377149C9C835937CB16CEA15EC56ECB0CCACD1166D398B7228CE1819B2A14FB3DF4FD5492B8587197AAC5EF61ACB57AC21951FC6265B6E4BC937949953147BEB551B927F1ECC450B41BB818FEB5609A5D4BB56C5AF56085D0FB752A1A921CFC78FD89160653F1FFAF01574B78C60D20E53B9FAACA3D877462B8155C02483AD9BE66EF4FAD22F7C770868827E77F8BDE5ABDD2826E53D48CF0D1FA1A1DC8B6B270E72E9302215F9D46C715513E3E31A51630BBD4DFB31F6039FC3CF8CC6609C4A0D0CAAE806C97920539018FCBF6B331FB11D5296F889DC6FE0500EC9A29BAE1588BB9EE2B5BB2F2157594873EC4A2B44224965381E8D7191C88DA9645AF1A59CDC949B06447623CBDAF664C1265FA0373F15DB7112F37E4374C989C2A252A9502C5598D0DECCE89694DAC00BADBC327FCA4401B92091ED05525549CCAA956B78E9A557D974F3193839A99E94C29432612C3E1BC1FA1CB4283A06893A705DBCD0A51454A8887AA3E8920B628C9E6E8ED86B670E993B8BAE5A3F071E740E1DCB9A69D9762BB6D9A5811F7DF9305A6D298D076B30C53190E99022F9243124B735D14A6FFC0DF22D17903EE1BF1A014DD0433CFD4AB0B5F80704B79D473A86422A20B242D27E06CB2852336C52A18D6D54286647D3B4EFB5589BEC8167964979ED28767EDF9EB06328AD61C93DD763F90B68307AB084DC8C2642CBC1B3C50BBA82D9329E970A79DC3843CE2F92C6A3600DC31B3193EAD83DA8DA6D894F7352D74D245DC82D33C91D7B9248917F27136198B2513978DB313085F0E5B5A6C5BACE1E9E7CEA59B6DB6127622996C1A216D692F26D65869490F486042D567725B74839AEA8681AD780B5BD2C7FF8212E39F774F6DF691BEE58F414279F7C3EED85D9AC34B36C7AEC78BEF6D97D3878D30949EC6C2637B1D7B3E8898B75520024392A4DD043FC31FAAFBDBC26E8219EFA302EB2E68EB3697FE9B7A48D1405BBAAEC40337E86D8AC20042E5239276550C86D43FB51371264C712DA651CBF09D3B4DF5715414D52DD619954AA8CE1F5822992B90C912939DA8020CEB1B0A3C693AF1509429356CB6544631A2FDD4A97D14ACA3054235BE9B128472E9DC2F5AA84515248E285265557ACF50DD219B9B6A9D41D83E2CF284A4CF8E5E7A5729567E63FC7EC393B10063141244D053CC268809C072A0507095ABE7BAE45AD5A268C2A78E5327625A467F16B742F7A818BBEF469F6DB7D0BE2E63C3FBAEE41BE75DE2F08D2CD6466B6B1CFA15B72D5A78F2563BEDE306B60272069E8B27E3FE05D3FC20CF10AD497FFDF8C8026E8219EBDD87B9595B79EC9A8D5F711D5C06D9037F4497B3942DB25B084010D6A51134D333E4666C7F3F033F2985F2225D5851241BF8F2202B14B95E856542669897EC57CD936A98A0FB315F3FCF21E5E5C5924C80D57C31C9D8B69B47C8A52F3926BC5502E7A5280237914D127BBC9E65CE4E3D66A74556332F95672D92CB69552865242CE83D23931D3576E1D618C1F84546B1ED95C23B59A545BC6F89E90AF689D139216D2176256C5299E47B12AFBA93E71B11BBB5265C1A34FD1101B4C1AD3CCD147EEC32E7B4CA16B89C78597FE91BB1F7F062B34E9B52CB63E72677EFAF50F33A525B53E461E68B49E78440FF644D086D143FC09FAEFBEBC26E8219EFFA8FC289DB77E9EB6EE67708B31518BA93A753B5E5E55E489BD686046F4C41318BBEF95A4C61D4C352D1B8635B2EAE15F246AEFDF23B41B56B10D034B3C520351929804B6C8014D5E59D3C173AB622A66BBEAABD8D66C62577DF266A848DDB3C4093BE983225D606AB5AAEA6C1204892EB9BFD04FC3E84DC8340E53F969E5452D0D051441CBBE62B2112AA991409A184411E9548652A9ACFEB7747CF1DD324198E49C85A4E5BA42D083FFAEB8013923A2B0FC15B69B3089C6D0815A8DB11386B1ED4ED3C8B5D95CF4F1ABF9D3DF5EA1D00C1937C6B3463172CF599C78DC367CFE90E9A454383FA8E14E3C5F550E5AF60706FE1BE265A42FFF5F8A8026E8219EF868D5AF597DDB5719E5AEC48F5B70D32EA9A84CCA6FA06C5BD8D4706D9FDEDC6C261DFA4BACE62DA9490F5823549D3E84A0DFBF1C87E45A25041525604A75EF96EE263513D6563D1E79612985D4487C334B3E6F93B2A5E046CA5D7C0CC9338BD9536411F921AEEF532C970922E82DF4D35F28326DC60C2AA2B9B612937C395F5A300A1FAEFF92CACA810EE4A2FE50D61DAA1825F1790E4321DE55BD080000200049444154E39A3241FA778216A2762B2582FE0E76983A815DB7D8927CE89016EFE85444BE2D85D3DAC2DFAE798C6F5EFC0BFA1A62CC8A4F1CB4616F3191D9074EE5C6730EA04D3485D2AA4534E8030D0D03A5479799492B858D3E340243818026E8A14075836B46CF7F83BEFBAFA4D9EBA3660CC34B55C945652C2F4F299D22E57954532E85117BB2C9076E2448B7ABEE2292937DBDA7C7FB57CAE60EC8ED44CC278794CA14E2987B5F5C41D56C57A4D8D2E09092CDBCD057A90CE9112EFED58E1161F91695924F7FA9422D86FE728D8EDE025B6F3B87AA747B71C46F3AD98293FF249511C762C4A45ABA246E7AB1A83EC49323528D072229E556041D10E02B0BD44172FEF7083A5DAB61D77AF1BA5772FC2187B0C98809105A34B6E6F9F39DB7F1C39FDC42D06B31AE7D1316AE598DE742C64FE135E798FAA1FDB9E673BB336D586EA0196DD21F328EDD449F6DC836A56C23BE6FBBB843BC7AF5E5DF6F0434410FF10CC40F9C4AED859B49552B54ACE178A9320D6105DBCBD39FCED1E48944AD4834FD585AE65E8DE734131B2EA938A52A0C131DDDFB47D0E267AD2AB495877D8C6B782C2AF632EFA502E437C5F60D866563A59596EEE19EE1109942E711A657866A91427F91AA1FD15BF559B064057B1D7C206EE410DB268ED2610F74391FC83DC7D2BB3116A296AAC34011B444CB12398BCF731C84049E38D305F87144D57B3DA521043DF8251174BB6BB2D9A856AAA5B5EC3C67362B5E5DC315DFFA3E975DFE4D7EF7BBDF73D743CF1278FD3CF5E0EFB8E0BC9BB8FDC127C9BB25CCB441C3078FE198C3B763BB4D1A19D390A3BD2145168346D1ADCBE6A5EA0A2E8F3BEFDFFC0CF1F2D5977F9F11D0043DC41310FD6137AA2BE661CB0696DD8C6FD5C84435CC304BD1C99097CEDA76157BE77371B6389B309527107F641CA5145012DCA12C35DEC02A2B89643738067F27DDA8445961C5D4CC80BB9E5F40D91E456F254F6B730627AE25852D86494D34CB8E18FA07F8A55EE2BE6E2AC532A19DE585A5CBD9FD80BDE92D394AEB9CCE1818D245469A19AC4F6B88478704CB89902D88C45F235051B318EF47814F24042D8A0D71AE8B436A9277F6036A92D27003DC9A47E805940B450E9BBD3DF7DD761B15AF9B5D76DD96BBEF7880452F74B2D30EDB73F229FB73CE17CF63D6F65B72D1E7CFE2E9792F71DEB7AFE46B679FC1CC19DB70F2B57F2437A91DAFDAADBCB3278F1DC65EDBCE60C7A923D87C7833B6480E6D0F4BFA460696F2F70F4D497E0438327F52262AD98FF76F0B618857B7BEFC5023A0097A88118E7F369CAAF83D88A7853426150F0B439217524E6DE39921D9D0247DF08F31A61CAFFC306A460AD330A591F6EBDE424335CE0DBD0C935EB1EA585FB128FF436E14428C8EC3B26AC47D2FAC21CC657132160DB1386D48DF154735B89511AB32F05A894A7F2F6EB11B29D659DE5DA079DC44468CDF3469E725267142FA7279152DBF3E102167F9928D3F4971885E7A50A1B1A16B9D1074E4B9CAEBB926796ECFC7972792BE0A513564C133CFF38DCF1CCF9F6EFA0B857289033F30975B6FB983054FF533766433D75C7F2AB1EF93B61B696EC850ADF531624C3B76B6911FFCF82EBE77F5ED58ADA3A8A52D72EDAD984D368DAD29724695E9E3DB39F9C8BD9939B99946D5934195E7E0A53C3C33201BA7B12B29B135D11990A15ABBFF05D7D5043DC4935CFB512BA1E7629BB1EAE9A7A2C158BC2684A0A5896C444611F4B598538E53ADB15C23A5941BFFDF09FADFB148D2C04AC120BDFD827486FB5F5CCD0AD722C8E6B09D889C9485ABBD3B91039AEAC61249245BECA1DCDF8BE74397E897172EE2C80F9F841B1BCA8744352710125679E68177D9E0FBA0339D48E8FE8785E880ADA8A43284A445572D92BAA0E6614411B5DE121DCB5E63DEFD0F72E01E5B70EEA7BFC4D225FD4CD93CC3C9277D894257C0F8B12D5CFD834FA972F3AE354516BDFC0A63C78D64CE0E5B139936D7DF702BDFBFEA665A83566CF125C9655953ABD23A7238C5BCCDC87123C935E5D869F6243E7BC26E8C4CC50CB3930EE8A24591C839305C641BD854372E7D6804DE39029AA0DF3966EFE81585AB5A245656DDA22DF5D83EF0E8AEF29626AE255E1616A983AFC19CF24188C5D722A388CE198C2A8730C5A1A871BD822CE90F9884D0C97755EC2C79E228A06238FCE9D105782D63F01D090D4332B6C8E212273E6983E898E0578A14BBBBA895FA2984799E7C6131071E7918919D52EDBBAC7843828E09C59F44DE6B20921E8C9E93CE2852889244D0834E75838528CA6B43CC90DC9A4A4184529052E8A7D93229AC5EC5734F3EC175D79DCFD2970BFCF9B657B8FFA17F72F229473263FA445A1A0C5A9A436EFFDBDFC86787B3E76E07D0B16625B7FEE1377CFF47DFC049A579F6D9153493E2FC2F7C8D934EFD149F3DE7AB5C7AF5B59C7FC57759532A936A6A62ECA6DBD0D21EF295730F65C7F16DB47806D2D230CEC414EC1ED2E4C459E41DAD197DB2466010014DD043BC160A570FC712B20BC5C14ED201C9111A426992E290C7610BFBE06BB0A61C9FB47F32322A82960D3495E4186A825E5F78A1C4C76A335015331B067E9CE83764B4EB2A2177CD5F8C317C3C9EDC60421FC7B155946DC621761CA9AAC15AB18F425727AE5B664DA5818E52C8DEFBCFA5588E483989E9937436970E3242CE83C4FC3A414B9BAAA4E824A9381C685FA53AA3245AE7A44B8A4F59957657A056C1AE9508FBBB39E9880F302C6D33BAB51133DFCBEAD53E07EFFB151A1B263179B3164E3E651F86B75AF475F7F2CC8BCFB3EBAE0770EFDFFFC9E1871C4426E3F2D4530FF1E1138EE495975FA2C7ACB064D93226B68CA53DD54AA9ABC2AAD55D94FD98C52B56F29D9F3DC4F0995B307C6623271DB907A7EEBE15CD527B640694CC126933AFF2D1FAD0086C0C029AA03706B577F09AE0FAC994CB05CCC0252D41B37430117296AA3C89A08D80BCA4340EF801C6E4E314998BAE5808DA56E5D1923A18BA52C2F539E7C1D26531E9B74DD5DB45DE5D5A5B497C2CFF5ED553E4F9D5FD54446962DAA4CD5099F39B86A1BA86DBD2F3AF56A1DCD7435F7727A665F1F7C797B0FB8187337C780B962D291EC5FF6AD3D11CCC418B3A43EC3D37F8BE3EE71C4B014A42C8F225E725C52E89E74625F0A889C7B35B26EAEB66C72D3767E7ADA733AEB5816A7F3FF9F610C76EE513A75DC1A8F6ADB9E3CE5BD8620B87AF7CF9533CFFD44BA41B1BF9E7932F72E75F1E61FC98F1FCE52F5770C9A55770E10567D2BD76152F8B4DAA6973DF1FFE42F7E2251CBEEF41D8864DD3F0761E7FEA69FEF8BBF90423A7F25CE8921F9BE6CC0FEFC1E907CC62982853220BC39466BA43377FEF6029EA53FF1722A0097A88272DFEE31CFA562C53C51B29A9A88BBC817E2289839CA822F262283AF71252DB9EAE36097D33A7521CA225561280219471254D5B8D0183A224CD508DC1B7A018C5ACEAF129F417F0BD12C520A6E234E25A0D4A98908983646350F55B0CB0A5CF5FA5CCAA55AB946ED9F502E62F5ECB11C71EA3521BB69D5404268E49E2B9A11C945409F8E0C6A0BCFF863D054562E70D74E81EEC37385829A80A51028F6AA91FDBF318DBD8C8DCAD66B2F099C7297675B2E71EBBB0DB2ED329572B546B16E5628A334EFB1A1327D99CF0E18358FAF26A52D91C2B56F7F0DB9B6E67CE9C6DF9F6773EC96DB7DDCE2E3B6E4DE4D5F8F54D0FB272450F871F7200B5723F861571EB5F6EE598134E20D7DA4A5BD5E1873FFB33373FB914B3BD992DE64EE0DC53F666FF2D273242B091FBAB4E410FF1A7ECFFEEE535410FF1DCC6F71F40CFFC674899014EEC6346BE4A1724F95DE980EDA992EE759B7F9E31FB7D4DA5380245D0D2EA49F46D434DD072133030C2C454429C2F0A112CEB2BF15A6F0FB5B85911B86DD6A8192655D2F846063B0EC906D2E15B3A8E8865AA8F11B84AB1B262E56A0C3BCDF30B17B3CD0E7319397224966DAAAABF58FA184A45626C27052952711825043D48CE83EDAB948A230A14410FA634E4BB44D02AFF2CB6A241153C0F2A35361F3B9E7FDC71277BEE3297FEEE6E5E7AE515F6DB792E471CB51D815160D99290A71E5BC5EEBB6F45ADBC825A31E437BFF91D677CEAB3445696C99B3573F58FAE67FBEDB660D309E369691CC66B0BD788768ED809C8B7E6E92DF662DA0E37FDFE0FEA61E894A38FE08B675FC0C2650195FC1882116DCCDC6132577DE33866B66769B2920A497D68043606014DD01B83DA3B784DFCE429743DF4371ACC72D273500C2A25571B47CAA8DF97926EC364C5B88F30E5F02B54FFBED01215479438A629B3A477F1011F308D1E4C65AC57650CDC24549188BA59386A7B704D6F8D97D67651304C3CC7A212E6712C87C02F82E3E0463691E1908A4352614D751F17FDB3349335028FFEEE2ECAE52A1D7D551E7DF2394E3BED23A452367D85122D2D0D542A35957B0FD713B42FDD739583DD86F2BA6453302408939CF3A0D786AFB4CE49614A4D9425A502D5DE6E0ED9772FAEBCECBB9CF5E9CFF3D0FD8F512CF671C209C770CBCF7FCBD7BE7C3C86B994575F2971E5F7FEC2F84DC6B3EDAC49ECB0F5D674AE5EC71F6FFB2B63264EA4B7D8CD9C1D66B1CB6EDB532954F8D5F53772E2878F401CF59C6C23C56A05D72B6385214D99567AD7F443D624A886F8FD39CE38F76A9607CDB46FB50973E636F3EDAF1EC1845C9AACAA0B95BCCE7B2B881EB40891F9535D1E076492A249970D5CC348BAAFDB91DC24D4CE873A49D443CA1F45B54C9317CB1A88555B08A98D9453A579B03CDD88DA48CE16D9A5DC5C4571230D24D475A42069A0964AF59834C44346AE23FE2B725E2649676D38C077B194DFC1C7EEFFCCA99AA087782AA38E5FD3FB876FD15A5B4864C714CC16522164C22A8101A9D8C24DC3E2CC66CCFCF0AFC19CA68C8762A32A52006506FF6EF87950D89CE4BC078F444DA2B2CB9272301C4AB1C1D29E2A4BBB0B54CC349E6D2AFDB2944527FECCF201947B454232C9E74C7E1F62588ECA2D4B045D5CB79AEEAE4ED6167C5E5CD9C7891F3C5A59DA27A9147515E54297E49CE51922911E6E98D6D83082F6A46D95E711490E5A0A5324A551A9A8CDC352B54CBACF65E2F01C3BEEB025975F792D3BEF79223FFCF1EF69CC44CC99318CD1E336A1DD89F8C8BE5B53299578F0A52EBEF9E31B69C9DAFCE0C2CF31BCA19954DAA416F4629A0123478F52E5E8E96C036BD6AEA3211392B64772EB1F9FE5A73FFF2D3BED3699CF9E792CA15BE5E17F3C855BE9639B6DE772D6B997522A88F470187D61992D769BC60127EDC7A70E9A46ABDCCCA4DFA33DD03CF73D5A7312C18B8795638AD4519E4EA41FA4A86EE4A6EF43E0D26F6769940638194B7590376B3115DB206D4658F2A8D49803B3A6DAA7B94606978CDAD24CF91E666C52B60CD281811D9AF85903695BDC105631BC102FDD84257BCA86EC8A4A814E96A270B7DDA9DABA398C262B9AF728501E2C9695E4E4F5F1F611D004FDF6B1DAA833E3EEBFD0F5878B18567C8AC88928182DA4C5BA33128236484526153BA2BB7D3A630EF81E4EC32E4AAB26E5DEC48326421BF5D6FFF2A20DEB5112AA566A5DA425576859BCBCA29B1505173F9DA71C0B61259B849661FDC74774B113352C5B79339B7E8DAE95CBE8EFE96675BFCFEA121C73E4C16A4350D1F9808C6E43399DCA3F8B5A63E06B707370705350BEAB085A1AC0FA89539DA43CA41B4B10F8581DCBF8D89147B3AEA39F071E7D9A89336772D9F7AFA3219561EF1DE6926E4A31A9CD64DF591388A390627A34279F7901DBCF9EC5974FFF20EB962F66930993C9E5B2E4F216CFBCF018DB6C339347E73DCDBC47E7F3C9D33F486BE36876D8E144EC741385EA127EF1CBCB18D6DC44B53FA26BDD6A868D18C7E5DFF915CF3EB38A6AD1C268C8100F7398B2EB747E7CD10799D29C262FC657E67BABE6902D8A820569A34A26EC5237749FE154312875C6F42F5988E95718D5388678935184AD262D22018C3D0AF214E440D417910F2DACB80AE24298CE40569E7044C79D6C116484D8A54182A16267AC4872F1D2BDBD819A111019EB543A2EE8CC11ACAC52EE5F43DB84E1348C9F94E4DFD58DDD2008636C5B87D0EFE4D3AC09FA9DA0B531E7961E63CDEFCF6758CF0398A98062DCA83A55A7A31ABE696187E0DA117D8D9318BED3E7C94C3916EC4662533E0A495EF8DD2CE97F2914FC5796567F4D1178656D81D5BD253C2B4B3934A945F2182CDD4C447632687C9CFCF11B56FCA91F44E2F56C2711B45FA5F3B5457476ACA5BB0ABD6196C30ED95FA52FDE8CA06331F35776A2AF47D183E90CF5B3815CB31F0454C567C34D0A572AD59AF2953E785A1BB3274CA129D3CE074FFA1C97FDE43CFE70F7A374ACECE7D8433EC4F537FC80D33F7220E31A22D6ADEDE4BA5BEE61B7438FE59E3BEF62A71913B9FDD65F336AE4142EBFF43BDC7CF3EF39E4B0AD99386524AB96AEA3BFCB66CAA64DA4528D9CFE89AFF3D83F9F66ECF83C37DEFC03DC7285790F3F4357C75AF6DEFF103A3A03CE39EBDB84B51CFD55172F6F307597AD39FA986D38FDC839640397BC74087F0F8F582259B5C79BC693DCBE1FF3F83FEEA56BF1F364FA97329A1EAC7C1F5DC50CE5DC6638338F658FBD6790B65FA537DC8CBB6FBA95CCCA05D88198F405A46217DBB1E891272A274DCB88E14C9BB60D13B6DA92C84C618719B51C02A9963422D25E86FE5AC4F3F39EA6F8FC0334F57591732AD83997FE4244DADA1263EB6DD966FF9DB02C1BCB929E94EF2100FF0597D2043DD493EC2D62D9EFCE63F8BABF92725CCA718E7414A90F836B8ADF863C2342879FA369C671B4ED750E5813558BA7A479AB52196FF42885E6E51AEA4BF1A48445EB1314BCD8EFB2704D0F66A691A21B53F5C573437ABCC8065E442C8FCF1B3443FC57825665808AA0C5ABD9F26BF4AC7C9555AF2DA314A5E80B331C74D001181B44CE09A7BF2EAB53DE1A1B94720F46D212354B9E9940BC365C65575A1583A420A6542C12F8210D992CC76F3F9ECD86359273F23CF0E87CAEBDF9779CF089537869C1329E78783E9B4E68E48B9F3E816ACF3AEEFDC7032CEF0DF8F417CEE6F00F9C88E397B9E27B1771CFBD4F73C4078EE54B5FB9844AED65BEF08593D86EE6F65C72DEB57CF582D3952F75B968B368D112468D69A6B9D5564F162B96AFA3D8DB4FB11A71DE85DF27F41AC1CB91CBB75124C0CD5BEC7CC80CAEBCF82426A42DF2EFE64EFB062BC02B7790B22CBC541BDD86C9E2BB1E24F7F8B54C0856109B06153214320D44568506B3CAC3A55D69DF692F0ED87B1AE57233F32E3F9E1D534F53A285A23146A5DE6CBF4A94CD129A1E4EB08E55CE4CFAC7EFC95EC77D1447FCC009A8A4C5AA0058DDC17DB7DCC288C22236A9BE4CDAEE635593C5BA544C5BE833A650E581CC91D4C6EDC071C71F481498A4DFDB7BD4467F2EFEB7BC5013F450CF94DF85FBCC0D541EB91C3BEE51CD5453518013B9D4A48388FCDBB4107BFEB07D366D879D4F9CDE8EC8CC100415D229A9D8DB789D5642D0492357214A21FB2836D5E36B6F31E29F6B7B293B692A5E8C1BC8D691E430939CB36C144562AFF91F884572C8A2C63064C3A856A47BE5ABAC5BB59CEE52C46B3D2E279E7C8222F14AA54A63630ECF4B8CF5D713759844C4EB9BBE4A7F412FF9999C170F9A20051E65D7558649B2795AECEAE599C79F20DDB7861F5D760E5B4D1F492693E7F1675FE3C63F3E496FDF5A76DB692A7B6DBB3993C78C52B73891D3C5E94632F961F4F616F0AB2E66D6E0873FFE0D8F3EB2889AF872640B7CF90B1FE3E843F6E5739FBA880BBEFE6952D92C5E39C27152144B3D9856CCFC679FE385175EE188838FC28D2C3EF9D92F512AC4185507C7CAB1A6BF8F389F62FA213BF1D1930EE288EDC730ECBD26E8C8559BC9FD4686754B9752BAE92B6C5B7A82523C8AC78CDD78AC6F04A9C060845D60F3D1060FF64C259E309CB33FB13D950E83BE5F7F8871C6632C6E9CCD7D9D9B60D348BEDC4B4326C5844697A9F1227A228FC5B93DE96BD999233E74004EDAA54A96B8EA73E7955F6686F90C2D6E0706395E0B46F38CB719DD8C6462762D33332FF0626E1F9E586D71E1859F259349E1BCC7180CF5C7F7FDBEBE26E8219E019F107BF59DF4DD7A168D6617653722A3AAEE3CCAB62820E45131C2B13374DB6D0C3FF6228CD6C3098D1C50C65666F642D21B77BC4ED0D180FEDAC08B6DA5695EB0A48B0E334D119BB21712881D9BE49C55501FAA6A3FE99FF856872ADF362D2CAF42EFAAC5AC5DB694AE72C0AB9D654E3AE524C240042022AB4B941A83042D242C298E0D095ACE19AC1454B9673791D3557D5775E5F62AD21BD165B76D77C02B14B9E16737F2A32BCF62F26893864C063B358C42458A1C037ABA1662F47562C729666D3F173F3229D6623C57A47A36352FA4BFAF97AE9E3E6EBBE36E76DDF300EEB8E36F1C7FCCBE8C1DDEC294496D5CF1DDAB69696EE0A31F3911229752D1E5F91716D2D1D9C3E8F1E3C91A4D5CFFABDF2A23A9CD266FC194311369CD37B3BAB39B2B7EF8030A63C771D4B107F28D5377A17DE31F84DE700ADC183C5102F970E795E7B3973F8F8C5BE01E675F7ED5B10533E7ECC22E5B1A585D259E796105F3BB5A38F4804D396A778717EF5F4AEEE95B48971F635EE3CEFCB6631AB3666ECBB04A178E14012D9BCFF63CC7A60D4FB32A9ECABCC234B63FEE48B6D876734428FFE0CF7FC2E8E2C38CF75FA1279CC67DA56D9857C8D03661025B8C9B0AE51A85FEB574BB2BA8FA7D5C70E199CA43BB29FDDEE6E1DF6A6DFE6FFFBD26E8219E41D940CFBBF3A9FCF634D2D557A9D43C55E061C63E65274B1007646A11B94C96BE3022B3D36964B6398FC068C6762A18AA4865E39F0B239153A9085A35699226D778A458B0B6C0DA8247D56EA4AFEA2BBF66496D84A6A12480A6A83CC406F42DBA564B418DDA20340DD2A14BAD6B054B5F7A918E7E97A55D658E3CE6785A5A5AD6E799A54D9510AF1C4AE71C78EB497BD06F6330BDA108DA8B948D682DA851734BD85180DBD5C5AA050BB9F4BC2F70D58DF771E807F6606A7B062A7D4C9FBE19BDFD0141B91FBFB0964AA183719B6C46C3C8B1ACEA2CF0AB5FFE99BBEEBC17C7C9D3D036828F1E7D0433678CA310F6B0A6DBE3E28B7F49D7AA125B4D6BE7A69B2E60CDEA353CF9C4732C7BF5795E7AF1058E3CFC38FEF0873BB9E0A28B31530EF3EE7F86CBBF7B159FBFF0CB2C5BBA98E71E9BC761FBED4FEBF026AC5C23277CF3A7CCDE7947AEF9EA616CDAB4F137DA375AA6BEA497AA866A6270FB8F2F619BDAA388F1EB2FDDED58316257BE79C63EC843DA30F12B31AA2C5CEB33A1A989B6BCC3FDD7FF9A293D0FD3DEFF127FF766F1407657CEFFE2518C523D326D2A3D259EBAEE3C66B8F7417A184F9B3B707FB8299FFCEAA984CB16B1F2E66F31D95B41D94EF160EF8EDC5DDE8E5987CDE6C83D724CCC882777131DBEC37D773D854389A38ED84DA94BF2E29FAD8FB78D8026E8B70DD5C69D289B708DFE624A7FFA2CAC7C10A9FA9506ACD26BAF665B2293205B4DAC484B86CFEAD6B94C3DE63784CE584C45D0AADFF51BBCF9DB7B561C30F41C284189F0B1E98F2C1E5CF01A56D3487A2A21C5AA4F64584AA69594AD0839872A8A4EDA6DBD79E8A7FA0286E2D46792C6C328F7B070FE93ACEEEC634DAFCBE469B3D879D79D09FC88C077B1E4FC40521CB2AB2F46FC5ED21965E04B22EC0D2B05FD5A42D055BF8CEF96A8F47672EEA9C7B372C16BA4A398DEA6F15C7AF97534F906516105BFFFDDA52AE2BDFE873FE1B8438FA1A13124C86458DE1773F6972E22F67C769E330727DD44476F95E7EFBD9B934ED89FDD0EDA9A15EBFA38E7ECEB30BDD17CFA8CC3193BB18FE1ADA398B3ED0C7A3A57AAF6590DD976F20DADACECE8E2D2CBAFE643C79CC0CF7FF95B76DE6F67082B6C3E7E0CC3F30DFCF4FA9F70FE2517F2916FFD89747333179CB62773278931E97B7784D29751CCB530B9F97BE7B347F13EDABC753C9CDA9505AD7BF199334EA42B65D25E09B1AD92B2B935C8D3938687AFFC2C3BAF7B86D8C8F0337727966DB2075F3F632F8645FD94CC462A58CCFFCB4DCC9AFF1372B5152C6ADC99DFF907F191738F61C1CFBEC9B6C507185DADF2687A2B6E7B6D34D3F63A81A38E9F4263241D83E46F8CF19C022123707D53750C13AB83D4DB5BB6EF1D48FFCBAFA4097A8827309260D1AA5179F12ADC7BBFCEB0A842C51841D94ED360AC22ED8B57670EDF76A9A642CAF658DA77FF2EA98987534B87A4C4C2532A04FEE590EAC2015BCBF59AE437FE4314E14612074BAE187CD3E0E9251D744459DC6C236BBA45533CF8DAC11AC76463F1F5E3CD3F5586E12AE327F1B696C6B2B15B61D5C21759B5F879FC420F0BAB8D7CE48CCFD09C32A15C566DBC64C34F142CAE48B7020FDFADADCF392B82964AC101AF0DAF641008095965AA95027DAFAD65EB899B71ECE187F0EDEF5EC631271FCF0DBF7C84D5AB237A7A9FE313A7EEC3A66337E3EBE77F97899B8DE6F2B34F20D732828F9C7BB1CA935FF9D58FB3E396A3A9FA16CFAF2C72C7BD8F71C3357771DD3517D0D4BA827FDC3D8FBE8E51FCF5F687E8E8EE65DF5D6670DD759FE69EFB7FCBAE3B1FC4DF6F7F96CEEE356CB7DD4E7CF8F8AFE2C515CEFDE269FCE1E61BF8DCA73EC5A3F7CD63D3299BB2FF413B70F7FD0F538C46F1C7975FE2B493F7E7B4ED27BCA7AB4DBA4566FC02AE95E3E69B7EC3E66B1E6246F1290A768E27AC690493F764E79D0FA075744C688BBFF6301A82802E1B9EBEEAA3EC565C4B2908F852F518C6ED77109FDA6B1223E4DE6942C5A9B178DE0B180F5F417B71111DF11CBEEFCEE60BE77E08EF679FA1A9DC45D658C96F8AC7B230DE820B2F3A94E10D364E281D7294D90AD81EB1915515B37224A65BFA78270868827E27686DC4B9A2550D8D10D37D94EAEF3E49B6EB452A760B552B4353B40E2754A69D0496476805F4BB799C714731E2D00BA96546E39829550CF02F7237A5554AB419830BFFCD861624E67409E1C652681073FBBC1709DAC6E0655AE9E82BAEFF006DC49F8761788ACA43C3C68C6C5502DEB772298B9E7E9472E72A96780DCCDDE750369F3491946912879EAA0E9492725F0A5444DF3CB029385831B861046DD464F3B24A6FB55395CAB7DB3976DC720BB69EB12D9F3DF74CCEFCE2197CE3A25FD1909FC4A1874F65A7399B3365741B7FFEF353DCFAD7DF73D159A7E21A0D9CF2854BB9F8E2AF73C0D6C358F0E03DACEEEE61EB3DF6A310C0F9E7FE9AA99B8CE0C453B7C2AD5A2C5B9AE7E22B7E42D1B31991A972C5B74E65F369A358B9D4E39C33AFE5D565CF71DD0DDFE1F179F3F9F90DB771F24947D3B96621471FB63F77DDF17766CD9A819331E8EEEFE4F1A78BBC9C35F8C021DBF1D5FD676D0CC46FFA9A622C7E2865D59D27AC05FCF97B67B38DB99031D51EC2D861B59562913D93691F388191B3B6A318A41961B8ACF60C965CF73166F72E655534816F15F6E288D38FE6C0CD52495B2450000020004944415438D50CA203ED4D873C72CB1D8C5F742363DD85BC1CEEC3CFC35D38F903FBD27AF7B1B40625AA511357F7EFCBB09DF6E693C76F45DEA8608AB56A6C612A05928BAD9EC074DE7963275E13F4C622F7365F270189E88053FE6BACBDE51C9ABBEE2132CAAA03494E74BE468A50A46C7180159B78D8F464C632F6D84B305B0E2634C51B3A79B30DA38FA49C578EFFBCF3346886AF4A7531E8F37CEE98B790CCD8C9F491A2AB2071D8BBE8A9674A8C2EE5BDB2B92816A92161B18757E63FCEF29717D02916A30DC3F9D827CFA0E69BAA3555E057802A515021F04DB569B7BE947B40F7ACFA0ABA2E41B9821F5429B9FDE4CC88ABBE763A9DAF75D2D3E9B168F96A2A7199052FAEE5B0030E62F1E26748D9DD8C6C19C1ECADA6D35F2810BB21B7DFFF14F73CBD884B2FFD22D5154B68775C868F18CE9FFEF14F8EFCE011DCF8B387F8D5F5D7F1FBDBAEE0C9A79770EDF577538A435E79AD9396B0C2772F3F8B3DF69EC5F5D73EC0F5D7FD85595B4FE6F2EF7C9217172CE7A3275CC2965337E7ECB38EE77BDFFB1A975DFA4D962D5BC6C8D179C64D9ACCF7BF7F37FFE85EC9A107CFE6D2A3777D9BABE6ED9DD623867931E4251555EE63E51A97BFFDFA77EC917E82A9C17CC2AA4547F30816FA3319B9DFC96CBAE3741A039FA79F5B8B79DF5798DAB79027E2A3B8B9773C5FBBF818C635B96AD7314EA5E8B072DCF3E3EFB35BEF1D0C0B5FE576F743DC6BECC5215B3430ADE333B4B95D2CAEECCD8FDD2D39E5F39F64DBF698146542A3119714E958785E34F2B270DFE3DDD1B707CFFF89B334410FF134D6C40D21B671BC1AC66BB7B3F6AEAFD2182FC28A629C20AB22E9C8ACAAEE22693F8BE104F46543CA63F661DCBE3F2776864BB5B53A06930E49563871817B2BB73BD1F00ED27B80C10B4BD7F05A7F48D43A82E57D152A012AFFBC718784E6835E1E49F33DC3F7C81A111DCB17F3F4A30F51EAE9A6BBBFCAAEFB1FC18C39BB52096302AF841915307D71C9133545D2DE6AD0EB59550B0E347F75AB255CDF5515686EE73A2EFBE2695CF8C58B193366138EFAF007B9FC473F62EAA4496C366632DB6E3591C6C68011C35AF12A350CAFC6CA557DFCFD91677968FECB7CE5ABE76214D6322C1D92766C1E7F6E21071D7B30D75FFF0077FFF5CF5C71F9E758BAA89B2D664CC46CCC70C659E73379C4443E7FD68934B6BAA41C8B6A25522649BEEBF3DCFC97F8DC676E60E2844DD8739FE90C1F9562D3299B71CD35D7F389D34FC10FE0631FBF84E17B6DCB41FBCFE2BB1FDA6BE3607E9357F55423D5D731A3AA38238A298B57D7C003BFB89669EE4B6C9AEE245B79896A763A7F286ECAD1E79EC5C4D646EEB8F116A62CBF91B1C525DC6A9DCD93C5980B2FF930CD8D06B6EBAB660CBD91C953979DCD1CEF3EB527F18BEA59AC6ADE9A3999679963FD9811E52E9EF28FE3267712DFFCC627185E91BD458F3863E35B92EA30A47A5CB7FC7A9733AE09FA5D02F8562FAF50C189B3AA5ACBE87F85E57FFB222D7D77908F7C023F8B6BE789CC32E950E476594CA348351FB29CD16CFA815F638D9A4B6CA654659F10ACFC9FD0A9FD76095A92E052A21B9B4AA1F1B7879FC5193599DED861455F593579DD783B53296291CC49926E91540A5148CA8C092B65163CFF0C2F3E74972A2E09D3C339E2C4D34835B4889684D8EDC531AAB85570BD5891B3786EB89EB7DEAD4E5CEB6A5E8DAAEFB3D72EBB317D4213E31BF2B43799146A31E75CF84B56F676F3A1C3F6C6E8ED60FFDD77E65B977F93CDB79ACC991F3F99BFFEFE4F6C337B575E5CB29A6F5F750DE77EE10BCC9E3E857F3E703785420F471C7928855C9A8F7DEC12666F3181CF7DE238C2A2C5A8F60CE9E6027194230A1D8A45172753C2B2FB09FD18B76491B6F3D46A657EF8833BE92DD638FD531FE195258B88A23C6D6DEDCC7F7A35DFBFEA87586686C65DFF5F7BEF01675759ADFF7F773B7D5A2633C9249364D2494FE8810408254020107A1514A509285C2B5C51B0FDB162E17AD12B551451505069222DB450426F0984F46432993EA7EFF6FFAC77CF00FEAE7A31578573EE7BFC8C199253F6FBAC7D9EBDF67AD77A9E891C76C83CAEFC0713F4D67C99918952A495527695864BD9AAA5DF8597EE7D04565EC7BCD21A0A56995F1907326C971339F1D0E9DCF495F339C05C438391E3BBBD6790AB37F9FCA5A7E359267581DC0D853C7BF7DD8C7AFC1A86DBAFB035369D6FBF711CBB1D3E9F86753730CDBD87B6528E67AD45FC26B71B975D762AF552D228E794AB7B28ED8E26986E16439C77A495443F7608014DD03B04DB7B7F513E289030E2846503D32AD2F5C40FE1E96FD21876295122DF88631AAEFA92C57C13DB2A51C62597188E3162090D4BBE04D608354012DAF177B26855571EDCD1F95B197028356269B4B395C6D86D7F7A8AFA8933E923C6C6EE3E8ABE7823EEF8D68D123D7B3B471F6CCA33450D2DA0A7733BAF3F760FAFBFFC3C3937C6E499BB73E4B127D2D3DBAD7420F232F411C62895223951C99A0B8582EAE2901F21683F2CD1DB9DA5D4EFB1D3E8E1A4FD6EBE7AD9795CF28D9F71DF531BA9696AE582D30E266C7F95B6A6D1FCE28E3F306E562B272F3B98D54FAEA679C418B26597AF5FF12D0C27C1A5977F9ABADA46D24983D0F5B9EEF70F72FD0DBFE6A6AB2F67FAB811AC7AF24D9A1A7CA6CE1449D5563AF3A6BAC0AC5BDBCDA68D5B88DB0E93DBC633A2394DCEDD403C59A75A148B9EC78DBFB8931F5FFD7B468E984DFBD67E628E49326E327CFF091CBC7836571CB3F77B3F71DEC3339F6F2F31AD394ED6F748DA01714FBA62E2F4C64D1A0C8FE5577C92D9FDEB20BE959F7A87D357BB3F9F3F6F0F565EF571660DACC5770CBED77B32D3164E64C9D18B9415594D18D2BE761DAB6EF80E0B78938D5E0F4F9BFBF0E0C0122EB8703EEBEEF92E6D5D2B98501E6095D3C8ADBD87F2E9FFEF0C1CA78BB4E1E3969B942052BF1B128B6F236DD6E0907E0FABD14FF94B086882FE279F17223A6385AE92690C2C07B3E739FA6EFC18F5E5172864E204A5003B94DB4203C32860BA3E7133856F66E8370C1A0EFF3ED6E84520BBE1926DCB769F61A82CDA08DF0B418BBC67E4BA9DC3E0DA5FDF4FDBAE7B51882558B3B59B82FFCE66E38E40111A8E924355F295D29E271D1D22A064A0C6BF7BDE7A8E271FBA8F2D9BB7619B090E597224D367CD637B4F3FA16DE1CBF049B1A8C8F96D19D162311A4E291428F76F62FAA4193CFFD88B4C1AD9C0474EDC9F29D3C772D52FEEE2E777BF82E18CE04387CF6444711D53C7CC61F8A4A9C4471BBCFCDCF3EC3C7A26EB3776D1DDDF4DFFC000D7FEE257F4147C16EC7F10239B1BE9D8BC96071E5CCE19A79FC8474EDA8F526F179FFCD897B8F207FF4E53AB855F1CC935B73EC435D7DD4BB61B6276248BEAE713EC397F1A177FF1304C7F1BF17892FE9CC151C7FF1BA1398E7231ADCC6893A9906C7707D34F5CC0818BA673E9A1737704E2BFFA9AE52FF76076BE40C9AF61E61EB349A665332EC492B69C4D1B78E4FA8B99E06EA62E3D8C6F761F44BC6D169F38752E9BAFBE90C9D9B56C89D95CD3B194E33E7A303B4D1F4D6A0036AE7C90179FFD23BBB8EBA0D0C7869ABDB866531323A72FE0B367EECCAB7F7C88F0A91B98126E2517CF73E7F6391C74EE6718BD531386E1922866E85EDBCD6D8F3CC8BC23163273E468A577AE1F3B868026E81DC3ED3DBF4ABA380CD910B33D8AA44996B6C3BD97C3AA1BE98CE5A81103553F4D4114ECEC0112B2E79D1F4EE08251D7CD86BAE319B7E40B5899914A44493269C978A56D2ED27296B2C7DFFA0214557B9D4F9C7E0CBE7FDD1DCCDAEF10BC548C551BBB29FEAF6AD091E940547491E11B29770C0A2389BB77E093087A59FFEA73AC78E041063ABBC8A4EA386CD909A41BC7900B2D827216AF9853043D24C45F2816D4EFE57C8159A36D4E3BE6381CD75166B00D992279BF8F52A6895FDEFF263FFBF9439CB0FF78164D4EB3EAB94D6C0FEAC8D794D875E729AC797C0D4F3DFB227B2DD883B6B6B16CEDCE71E7F2A758BD711BC54296712DC338E7D8C338ECA0D9384E9EC2408EB0D84898F2F0623E5FFDFAFDDC7ACF724A658B45FBEE43C3B02CCF3EFD04935BF7E1D1875752DFD8CBCFFFF3226A1236EDDDF0F14F7E879EFE7A5C2F86E5942996B7E0040E7B9F7924072EDA89F3F6687BCFE7CD7B79E2750F6CA2F9B1EFD26667595D4CC08C0389373431B2FF657A9FFC15A3EB33F8561785DEA9FC3877388B3FBC0BA3682779FB8F18EFBEC9FADA18F7761D43F33813AFEF4D66974A38DE469CBA80E1DDABD9D638953F6D5CC8B32367F3D9F3F763565D407E4BC8CB3FFD1463BC97899BEDF4245A78313B1EB7716F6A5219D8FC388DC902EDE6249ECE4EE5924B8F241DDFF13BB4F78243353F4713F43F39BAAA575526BE905AB008DF17B08B2FD1F1DBCFD0D0F358E4AA62D4E0ABDA7289A457C60A2D3C234ED10E088218995DFF0D6BFED984660DF8F148BAD194AE8F209A34FC5B042D32738107A6435F68F08DEB6F67DEE225E4039BCD5BB6D0EB5BCA20E0DD850A516697B6394983653333D2F0F82B8F77E94C0F493045521E83FFE58484F901D6AF7C8A571E594EB6733B4DE32670E0B127D1175A38857EF2A51C652FC0EA2DD137D04B4F42748B7364D66CE6D28B8EC149268967C6E3F9363535A841979A8C8CC77BD4C4928A408B5E89FB966FA0409A0D3DDD6CE91D60F98A57097B363363EC704E5EB698FA5840DCF049A513340D6F220C02D209838194C34F7FF70C9F3C6E4F9A0A050A81CDAD4FADE3135FFA05BBB68D66C6B4312C3B697F72E52E1A6B62643B4D1EBEFF756EFED51FD9696AC0B7BF7C1EA5EE1E36AEEF6563A7C5EAAD796EBEFD16B0B3F4D3C869679EC6D1FBB471F8ECE1FFD0B3ED0B573FCD813DBF64726925AEDCA9A59A28943DD27681B0DCA39C6FEE491CCE539B32D48F1CC7173EB1989577FC07B56B1F618CDD4E10F4902FEF8C6D94B0ECCDC48D3EA5CBB2C59AC8E6DC789EDEDE4C7761181FFDF449CC9E9A202D13A6A590577EF32B7A5E7B9011897EEA8B5962E28CA394EA4AF4960AF426DB7883793CD73D96CBBE7134095D82DEE1B86B82DE61E8DEDB0B65233B1E8AA07A3442EB192242B48D6DF77D8D86553761F839CA665CB95C883891882809F18AF07AC94C12370DB699C3695DF615CC96C354E3BFA8CB891B4628A2EC6AD2F06F8CCF2A6D7E5F357BE40C8B2B6EB88399FB1D4C4EF4387A7BD89475295991F345A4132DC42A433092A34B79E65DDCFD1796FCB78494E4E9B2A32F62F56937CBAB8F3DCCF32B1EA72F5F60CACEBB3363B7DD31F359FACA0525A294CEFAB8BECB56AB0FAFB793C39BC773F8DEF37063218FBDF43A2BDF5CCBB0E666280EB070D6540E9ABF3389708030339C8BBE71134FAD952DD90C1BB76C2799A9510E3066AE9B0B3E7C3CF16217AF3F711F7BEF3C8DF1E3DB48A4EBC9FBD03AA296AF5D731B773CFC34171CB127979C720879B38EC5677E93ADB91807CD6EE4B0430FE05B57DFC45B6BB78AEE3DFBEEB633E77FFC14BEF8951FF1E48A97B8EEAACB9830A2482256A4CFAD657D579AF3FFED0A42D13989599CF6D1659C73F8747619937C6F27CD7B7CD6795FBB875D272729BCFA47761BD64DA6EB791A53D01136B2D69CC2ABB961BC981B8E93A9E3C2338E60FA883477FCD735C407DA49967AC8181E39B31F6C714649902BC6E9C8D5B2AED0C07AB791D1B3F7E094C3C73069AC436005384680513254C7C8C3B7FC8CEDEB9F674C720BB5564EB9AEE45C9B2DA53AD63196D7CB6319367B5F3E77D2346A7502FD1E23FADF9FA6097A87A17B6F2F2C49A7912268F117B4281A32B89D85EC1374DCF4EFD4945EC1A68827BBDFEA347FB7EF8945214C924C6409D3B3C81CF913BC9AA96A08C0F293944C4326C59563C95F7DA8B78B2C8D8AA6CDD5BF7D90DAC93B9368A8253B90E5F56D39CA9608330DC99146EF34F48EFFF328CCBB9D5AFEFB510849958B39124609BBD4CF9AD75EE6A9C71FA354F299376F1726B48D27E7BBE473399C01A93BF7D3431E6FA087CB4F389D2096E247D75CCDF91F3D85FA38B48C6C0227E0E2AFFD80A9B376E1B3A72C521E81B73EB989B3BF7223E5C428EC641ACBCB92A44CB6B79B96BA04138739CC1C534F2666B2C7827D39FDBCCF901EDECAAFAEFD3A3FBEEED7DC74DDCFB8FDC75F66FF5D67F27287C511675D4EAE2FC76DD77E812F7DED3BACEBAEC3355B280FF451EE7A934B3F730AC386195CFED5DF71FCB20339F6D0D1A493033CB6F24DFEF38627E8E86E249B8D939918E3C4E3E7F3995376656CFA1FAB4371EE976EE64B179FC8630FBCC0630F3DCD404F11279654834081E92A3D9071139B38EE9803A94BC7B17C7073257EF89D9BE9EDECC22DBA94EA8B94A48FB33C023B1C413C55C78419ADCCDD670C6D13628C340D25EC550CB3602508C5C04BAECA9EC743F7DDC77D4F75D23B90C42804CA5ACB2B974836D84CDD6512071C3E97F1B5627CA51F3B8A8026E81D45EE3DBE4E752A4B2962D064AA2884592E9032B7905F791BA567AE221D6C51150119F6289B8EFADD0E7C3539578AC588178A4AC2B238F56852077C95C06EC5347CE5EB27943E34C8F2970E49DAA0A58783D0A36CC578F0E54DBCD09EA36DFA548A258F17D7F7910B93CA1F31AA67876FEB70486943EADDD185232A820C11F7D0EFD1EBFEFA2314CB2CC3C096C985304F501860C3EBAFB0F2A1E524029339BBCDC7CCA4F08B7982813EC27291EEFE0EE6ED348DE3F73D88FFBCFD768E397129E312B5A48B05FABB3B1935651C6EC6E2A6FB1EA1A9DCC9C9471E419F0FCBCEBD922DF9243D2583BA4C12AFD0C391FBEDCA4B2B96B360E638BEF2E95359B1E2259E5BB581867133B8E5EEE594BA3B98BFC72E9C70E85C5A4D97782CC9FD6B03CEB8F0EB5C70EA31ECB7FB144E3AF30B307C278593E1664997B731B1C9E1CA2B3EC3399FBA8A96A6145FBCF068BC621FE75CF815B2DE287AF349E28914B3F79BC281FB4CE5DC23E7D0F08FE5673A722E0D0947D95E6D2F85B4E75CBA7A5C921834C7025A6A6C52A998D2B3B66216253FC0159F411F7A0A45E28E8327E7A6C8C51A36B665A9F6B8540CE2D226477EF0DC8D34CB6588AA1C26294BC79174678621BDB912FD259FDE6E0FC748D0506F924AD8D4A694CC8CD2DE88CE1EFDD811043441EF086A7FC76B444D4ECD518591A69CE8308B2251CC18C0E85B47FBEF3F4566E079CC720FA6635090C942C32216B8247D71CD0E31BD0CA6EF914BD69198FF059C396752B01D92AED4FD061BA3FFCA3129A713F9E4D0C3B5626CC895F8CA8F7FCBE1279CA83C015FDA384077C9A2E485984E4C7D6195D4A81AB0F1552D5A4C6177F461F9B63212756D11FF2F63FA52672FB2F1F91758F9E00334B64E61E2942978F91E4A035D2428D3DFBE8D733FF23172D91CB9ED5B98B9EB2EACEE29F1B33BEF6763470733C68DE2CA4F1D4FC237B9E791873860DF3D495B8EAA636F77037EF8CBA7B9F791959C78CA899CB1FF68AC810146A69398E52C99749A4E69DF4BD6F0F0336FF16F9FFB3ABFBCF91B8CAD6D64443040A96C70DF3A38E77357D06214B8E2B2CFF3F18B7F40A97694723BCF582EF6C05646267D2EFFF7CF70C1C597327DCA08BEFAD933E9DFDECD672EFD019B7BE378AAE3A6C4E9671FC3E2853BB1706A1335A68BA8FFA19C6A06FDA48C40C9BFCA5E853C5222A615F8AA53C753E52BB198120D6C4F8959E54CA14D54569A91EE2075E1B4558B9CDA331EBA729ACA8C5C49091822A06DC899E847FF53FE81D1FC67D2AFC3140D153BC4370A04A194326218651B433646E40D24F5362C7526FBA1741B0DF6BCCB9D617970A3DA3209ECE8FC8E9410C5AED6C330A400AD47BD77F4FBA3097A47917B8FAF0BDFD6878B6ABA6A96C30BD430871196F1DEBC99F5F77E8F5176077EA143E90ABB564289CEA43D710217CFC238040E091FBA62AD0C5BFA4DCCB10763F865E50DF7B70601A411CF1265BAB0846FC6E8F64D4EFFDC959C7AF639D8B114DBF201AFBCD58E53D3486FD1C550060111415BA18CA2DB7F9641BF7BD96F9741FEC21EE2BBB36D2111D7128353A112595791A0A783877E770703258BD9D36761147BC817DA09077AD86FF24CF699BF90BB573EC5019386D3366516675D7D072BFAE28435F524BAD7F2D19D5BF8F64797F085EB6E63FEDEBB71E4CE13A5AF8F6C6873F97FFD89EB6FBB9323971DC1E5A7ED8BD1DF45C271A8AD4D2B82ECECE923595BCBABABD772EEE7BF4BCEAA67FEDC299CB1782E13DB5A5995ABE3944F7E9D45BBCEE1D8C3F6E6F26FFF88CD03B5648B319AEBD2B89D6FF0D94F9CCCD8B67A3E7FF1773878D1CE9C7AD4CE18418EA2D9C4AFEE7E955B6E7F889A9A7ACE3AF3608E5B324FDDEA4B2D5E8D1899E6A0999908B544FB084A163694F6C4245933F2FEAB51B2B4D282E34486DC76648F562647027155977D0871563708C218E550CA6496DA91907AB19A0317053BD5E71E5D64879CC0239543303DF1CA32089D10DF120A8FA460A58C21E79E64D6CA744D8859FD8BAC41DC6AE5962F1E8976C9AF96DC6DB91886A7F4370CD7899E2A29B4A4D2FAB143086882DE21D8FE9E1749CE1291B33C2C75D64A7786B89AC89776033DCB7F42E1F99F31C26CC70D3D4A661A2B30487992D124C8C765D8C4265D36F16D979E86F98CD8FFAB98CD6D6037802935E4BFFC90AF9B081899483FB44DBF11E7FA7B56D253B699357736B91056AFEB64EB4089205D475E6D3ECA71465F36E9E8F89B72A3FF839EBF6C644A99447585843671CBC4280D90A2C4338FDECF9AB7B6B3EBC4A990EFA0A7B0911ABFC8BF1D761CE9783D37AF7C82630F9A85196BE0DCEFFE812DB1C9CA79A691ADCC4A6EE4DACBCE60C34040EFF62EF69F35516DE29D7FD97F504A36F389B38F655A7303996000694A7CF98DF54ABA473A5386A5E2CC9B360ECBCDB17920CEF35D393EFB85EF72FA01D3F8DC1947B32117E3E4CF7C8FADDBB37CE38B67E23809AEFCD1AFD8BAB95F89D9EFB7E74C2EF9C2523E7DE94F58F5C25B7CFEBC539931DE22F0F364CD26B6151BB9E8922B3874E9520E5AD8C2B28593A811C1AC7209C349293C22CAF4445E90D096ADE442446AD4D0EF18B80634C85D8D30B35C24079DCF4243BA810A91C26190023117360C35C12739AB5C0C230571D98C96734D08544858DCB5856807F78207E3163A39027190376284240870D424A1A887CB5362D2D819DAEAB551154C2EF9E2386F83278EE0018168489B1E9ECAD1E55C8F2B971D7903E9B0D33EB17F0F5FFCF9733541EF3876EFF1959243475B7FF285B4C4E8536E37CD2405E594E292EA7B92DEDB2FA6A6EB090CC3276FA6947E47C22F9113271243BA9FA5DC21E3B3218E78CD0DDF9BFAC3BE8E553F77F036F22F1F8E6C52DA52830CF34A0F386BC4D9520CB8F0CBD770DA47CFC0B04D725EC8B36BB6D24F92BC1189F66378481E67292190BF9E01454A797FFDE159059539E3273083B852A18C592E6630C09A375EE2A567563377C438C2EC46FAFCCDEC356D2227EEB4076698E467AF3CCDAE13473271EACE5C72E3FD3CD3279B54719CE216CE5ED8C625272EE0D7B7FF9E1933673267C6246E7DF02DBEFCD3BB39F4B023F8D87E23195F78835E3FC913ABB6B3A6A7ACCA1E3535359C71EC1286079D4C1B912455DFC26D2F77F1EF57FE9C0F1F30850B97CE531BB3373FB999AFFDF0D78C4CC137BE7C31ADE3E36C6FEFA0396331AC7624A79FFB353A73358CCCF4F08D8BCF205E2A73DF1F9FE2AE87573390184E7BA99D8F7FEA14962E1CCF4E0D4952A2DA2C59B0158DED4704ED826B53B0434A46995A378629E251494FB96567DCB8AADFBA8E64CD83D41788DE899C08D26A1995B7A24E1BA9F10FD6382463167DEFC109D1774C71544BCFE09D9C3C57F276C9900325156B88A34E1865C4C2AFAAF5D3C86248894262A72E1272C12D1288ED5528F74362EAE063198E2AB3A86C5C0EC77445111A0B59C33FB8F8FE1EBF79D5F0344DD0FF82284675C2A836278A1AF26512B2140A14C9C85A7AB1DEBA95CE3F5C41A3D54DB198C788C5D5449E6BCB1747BE28A2BB2CF98D85E58514CC3861CB5ED42CFE06566D1B864C8F85B5CA6C56CA09F2E5B7E53B2B99CEA038A9FC291ACC05CBE08B3FBA8354EB4EEC31B70D4C938D399F475EDD8C9B6A2070E284BE87657AEA4B2B9B48437DD2D28027C7FFB65EF4DB3DD2EF2E6ABC03AA6B97D5EDB2E3891C694C8D443B691BCFCFD1DDB185D71F7A9C098D4DF40D7461A661E9A2054C8D25A9F13D7ACBFDCA5C77E4849D58E35A5C79CBEFE8CF0E30BBB5892F7DE80446793ED7DCF15BCE3A6D29E9548A2FDEFA003FFAD3CBA4BD5A6EFCF431CCAE29F2FA86F5BC9A4D71EDEDCB39FE88A574AC7B83975F7A91C316CCE5F47DA78059CBC7BFF69F4CDA634F8E387026CDF492B01274166BB8E287B7F0D8EA2E8635D4326E784C79EAEDB1FF7E7CEFBBD72BCA690807F8F2858793B03CE2C9363E71F18FD95CAC258BC729A7EDC71EF3EA386EC14CD2865C5425F6AAA2ACAA03F29BDABC0D2C655B25B5DB444044E2B68767F8D8414CBD46D40E3D951FCBC5D6896AC35288928DBA77BF979A8A8A646555D62DFDF183175095302B612BC98C878AD562DE1B7565FC3767B3E800413276F9E4C1F348069142847CA31545742FD5694B9D6FEFBC8F64FA92FDCB5D8126E81DA5194DD03B8ADC3FE875B9C11A71DC5B47E9A99F917DE6670CA303CF2B508A67D468F19FB5DEF99EAAA78A13897C397B5B9730E2804F632666133A22BC14E5EAB2C3AE4A142A07932F6A747B1B88C469CCE68DDE02CBCEFF3A9FFDDC45D435D42801FD35ED03BCB1B5879C19C3B593B8382AFB7E878C658368A8A631748FFC4E5BE05F82C495FE595F7446A4C40161DC26EBE689DB0603EDED6C7AEC1132C904DB7205D58298B161DEE8619CB27057EA4A7DFCE2BE3F70F0D1C731BCB6254AE9CC027575352AC52B153D1E7BFA112E3CEA60AC7C8E177D9F73AEBA95DC8612DF39E764C60CEBE7E9D7DEE0F617FAC88C9BC73D37FC9423172F64C573AF72C159A7B0685499443CCDC32FBE8597ACA375FC6836BEF10AB3DB5A48A8E11F9B1FFEFE39963FF512FDEDED943D9B52AC8E58C266C608B8E8B40319D760D0DB5BC08DB5F2CDEBEE62E55BDD4C983C860F1DBB27472F18CBE88C18A5EA1AEC3FE8EBF27FEE6D3441BFCF210FFD3C8111C733039CECEBE4EEFF06E12BB7529B09E8712D1CC752B5C4B769310895CE83E85C88C1AAA885F565F662C4215FC76D9AA3BA3A1C21D5C0509B5192C5444327463479888BE707F41A31EE796E0DD7DFFB1C1F39EB38FCFE3299B8C9AA751B58DB53A6835A72B1464CDF1DAC9B0FAA6DFC37B38041F78CBF82A3BA7308A20D2755028D9B845E8954A988D5DBCF86671F63203740AF91C44DA6E5C699FA5217E71DBA1733EA2CFA4293A79E7D95E19906E6ED328FE67175ACDDB68D37DF7A8BB56BD773E6C74FA4B954A43148D29F88F3D8FA2CD44F7ECE0000200049444154F98E3263E3BD24CC553CBB21E089F67A5EDAE2D232AC9E1199180F3CF420A72C3B80C5936D1CDB25AC9FC065DFBB8D97576D27C8F6B1F7CC662E3AEB086C7A544D785D87CB6B9B3AD8D6D989E3E79937750CADCD0D140A457C5274F7E4A91B3E92555B7AF8C14FAEE3828BCE61EF69C3993326493AEE4823E4FB7C96E98FAF54043441BFDF91F3FA09AD34BD86A5062B129D0F3070D7D749F4BF8C5BCE49F561D01B303A50D3B4F0C2882C0DCBC12EE7F19219B65A33693BE42B18A3F71ED48F967A7792D0940D27B92D954A6208A56CB4B1E3A4D5A8F5C7BFFF3B82581DC71DB680A4ECC2DB266F760CF0C2E62C1DBE6C1A451DDC6ABB4A751BC834A46CB6A9662A5533FF737BAC3F0754363B25E9561B856648D970C95801357D034C88A5787AF99DACEBDA4EB759879F69A226EE606D5BC3998B66B2706C0D8E5987418CCDEDEB79E8B9C798B8EB2C56BFF52687CE5FC0C269B358EFC86698CDD7BEF83DD22D33E80D93CC9AD8C69E637CC6356CA5BD3BCEFAFC08AEFBDD2374F6F4637825962E398046BB8F836635622513DC78F74BFC66F9263C7B3485AE4EA60C2FF1FDCB4E27166C259673C97B31DC749A62394BCA28E2F66EC334124A9CFEA6FBD7B27CC573CC9B37819AFA0433674FA3ADB59145B35AA93307C5ACB451EAFBFD2DABD8CFD704FD7E874EDAAC4C5BDDDE0BD1394137E1C6FBD972D7B71815AEC52BF7ABCD1E65E2AAA6112513B5F014519BD84E19513CB28D3A7A9D49341C741EF6A483088C264CD9DC911E64D1831E1CDB961E5B4217D7F309136936955CCEBAF82AC64F9EC221471CC240292096761828F8BCF1D62636F67BF4953D4C2B8E614B2B97D450A52736FA918199779760DED1F418BCA0C8E693B2C492563BA9A59649FA65C60606BB8F68E6869BAFE3ADFE7E8A99568AF14670CB4CAA35B870E97C86E5B740BA9604068DDE00231B6BD95E2C61D6D4D05C5B839D1B6063A6898BBEFD7356777914E22D947C1BA7D8C9FC8601BE7ADA7E247C9F57D76CA5D78BD3950FB1620E69B3C8C2B96329F76CA0DD1DC985DFFC397EF34E749644FCBEC4D17BCFE0ACA37765DD2B6FF0DCE34FB3FBDC698C19952257EAA55FEAFF6583C64C3D66A1C4C997DF8A97A8A1C6EEE4DC338F62F2A416769B319626C724E5BB18D6FF466FFBFD3E39F5E7BFDF0868827E9F23A04C2764502B28AA8D1D19C7B6C32CC6BADBE9FDC35771BC7602E92D0D5D6246E4B6AD085A48D78811D8596CDFC229A5D50E538F91A466CEC9A4E69F831F1B85299B89A1130D3D8432A138E84F3828B42FFBF11D399F4F7FEB1ACA756338F8D88389C76CAC72C0F054C8FAFE40B5E06DDDDA4D4F7F5699C32A825624ADB6B030DE766D91FDC37709440F66FC6A807D7023AC6C9449042EBBB6B4302595E14B575DC556DF24A86FA5686430DC80E9ADC33968562B6F3D793F9B8C124BE6EFCCC1231BA82F9721D9805F3B8C7C6180965A876DE524C77EE96AB6378DA5148892922C7080C52D369F59381B0A1DA4E33E857C91AD5988D734D0940A4939657201F823E671C1D7FFC0BA7C968229651E9F51318B2316ECC3CDD7DE4A602598501FF0B54F1E43D9CF71E1B7AF615B39C567CF3A83D9C32C4EFFDA2FA81FDDCAD9272F64C2489B39D35AA889992AA699A106455D827E9FBF6595FBF19AA0DFE7D8C926615C0A075E0EC218453BAEFA5053C156FC977E45C793D762BB1D51F9A13CA0485A287688A04D0AAA7420FDD209CF26EEE5C95926F9D10B197EC0A5987593C0C8E01B32D9160D31A87D3E51A153CD192E452FA4DD33B9EC27BFE3B5ADFD2C5DB698496D2D84A51201F16823DE3070E58E7D906C865A6AFFCCFC7B6810E25D98CA7EBFEC5B4AA78064D152B50D5C9726C722ECEAE5C2EFFE9852C368480EA318C470EC04E59E2E6A6352DD2DCBEAA877BBF9FC718B99307624BF59BE92753D2E5D6FADE7E2938F628FF92D2CFECC8DACB26AF18334B6E713789DCC1AE6F0897D16D0D9BE86DDA70C23ECDD4ADEA82388D590A2C0B69E6E9EDA52A6CFD989DB1F788A3E11A04AFA50EC251504585E02CF8B633A718619FD7CE353A7B272E5D3FCFC8F4F32409AF1C393EC33B9810E3FC9BEFBCD67625D99DDA73711B70C3C31B436C5D035B2F58D0645F44323F0F723A009FAEFC7EC1FFA8AB2AAE486D8BEB4DF496D5732636973F508CBDB293C7F25BDCFFF96B89FC529F59130A4AB5AC672258B96B17021000F533C0E7DD15208C8CAA45E7A18F9702C4D8B2E20D6BA0746BA9520CC60A84C5AA5D17852172E9688C5E3644354CBDFADF73FC34F7E7D1F6366CC63FE7E0B993532855114A70E5F3965A82E0ED5DA2599B249A88621A2662BA5D7A112E877A6570A66D4631B97A9379131754C3CCBC32DE509F379CEFFDE2DB80DE308A4275C7AB0A52462C8C6A8110D675831EA8B1D7C6AD9029A86D772C94F7F494F6A2461BEC08C8638D3C68EE2AE575FA73FDE843510A3CE8742AA4029BB85F1758D746F58C34547EFC1AC06D8D6E3E1DAB58C1DD9C01F963FC3F54FB663D5A4D5E7F9761D1282985704BFA014DE4A561CCBED87623FD3DB26B169ED5ADC528954CA64EAA4111CB0680F268E6A60464B9AC90D0E2919891664C4A24CEE2E641250C9C1EA4DC27FE897E6FFD09B69827E9F831D8D824B563BD80AA7BAD654E33342DE8EFF32D995B7907BEEF7D416D761FA7970624A8E3450BA083E31D720A6349F8B146C08620D7805485825D67A696A26EDCFE8DD4EC51CB60718C3D5C6A16785140D9FB410AC2B9B837102D3A60F93B57D1E3FFDDD721E7AE635C68C6864C694494C9E3291444AC82CEAE61592577DDD7E340AAE2E3383757451E3B1D598B2AF26DCE4989076BB42998429C332E25E5E22DBB1991FFF76397EA2498D69DBA6F4474BBDDBC153E576B1E94A5063949992F4189E4EF2F89A4DF4256AF192719166C3C8F763D70DA3EC2748F65924DC806C3A209F0C09B239D515B2DB489BDD5A33DCF7C70730E31976DD6D771E7E7E2DABDD4612563F948BB85E1ADB4AA93ABF119628067935FA1C0B4AAA9D37ED24681D51CFAE9347B3F3F43686350D23D390624E8B43BD09C9D0C310861F720F91DDDDC129C01DF77C7C9F4F4EFDF1EF3B029AA0DFF710FCF503900452C60462EE1678E9267A1EFD31F54E0FB95C3F8129B7DF0E3157C850326297D0F0D5D49EA82188C595D48B0D338BE92468EF1FC58859279199730C467D1B7E22495EC472064B1ED22B2D03E192999765F0CF3068EFC9F2AB879FE7D11737B161F3369C545A5D14E47364E046DAF62C4F067C2D4A6602576AE222F2EFBBD8AE488C7A245C9FDE648CBE9849831FD01008413B148D32138625F9E8874E26EEC41508327028D660A23F11CA549CA4D0A2952D35EC3020085D4231A495963D99620BA5D41365EBB68C45CBE44628B39972F109294BF62EBA278288F48D7B79F596EAA2419C12316CAF88E9CB7B86F8A25DA1EE0CA44DD153C33AA2F857934ED0DC9024637B4A36B5A5B18ED14DB56A8C59ED1F0CCD74BC5D0192F789DCCE23D7759D417F80BF661FE843D304FD810E0F944B3E8E288A051DF8AFFF8E6D0FFE8816731394FA2985B66AD113329571703521269A0FA168F34AFB99E846D7E30AE1D5186CF73DB2F166C6CC3C92F4A4C33113D329261B285A320726536A91EE981A1DF6C46216A5AE5794DAB11F5012229381C5C1CD2F21542B1644ED734856ACE62409428F8C08A189D156FFF3584623E5D444759CBE15952EE4734CD320ADA695A302493412138DC60D8DBF28B303A2717929C944741C196DC98F7CE6A09E9A7A9EAC41DE4F9559E4C2E599F8BE41393055FBA11C9F9ACC547571280CED69CA1D8192DE8C2456FD207ADFB438C2F81EE2BD98AA91C1E5485FC2F20AC40C191672647E3B1AE953BAAF722711AD4875CEFC4D25930FF8C9A70FEF7D474013F4FB1E82BF7100421E5E806FCB5660489A5E8C55B730F0E055C406D6108B998A607CD3C63725FB8DC6879DD0231E9471C4BCB55C47681994CC3EFC544890B4E9E84D520E7662C2B42538BB2DC3AC15BF43E5861869E108E104B6AAC306410111FF15C19D282B1F942F55F9B610734CC9A80A35D9A2181CE4B0826E286F67DB8B2BD8F0CA354C1AB133C3F6FA77C2CC04BAED90786892F02C51E2C142FA58A2894735062D3B97CABC20226A2B28A83585A6B40CCA31C8D88750B964D8F2931C6C3D144A97632A0F66C0836A6EAEBC775C19EE1684BA95C101AA246404458278245E24C6BE8472BF227723F259715C71B909F291116E98A02406BB1E241CB9B8E431C47841843F4379BE307FD41F2E23FC43E3FDEA42F4413EC7F4B17DA011D004FD410ECF601A26596BC996B2B46C046EC1DCBA9CEEE537126E7B895A3A4561034F7A94CD48B3574A0F4EE0295D615386522401570236A2A017533A206E20FDD4263D5E0375A3A653BFD36E58ADB331336DE0B480D9A04A25422E41200E1D426E919980CA73076BD09E68750C119E2793786FE2AF7E84BE67EE2451EAA49CEAC21DC8D138E778EC7D2FA5109FAC24A22C374B188BABF63F718889EADA923A4B7921EA1A512A97EAAE40B253D9649432CC604FB8126092BAAF088FC8C69C64F2D2FF22346F284B30B962291991A1D283BC8F682DCB55668835AD482C88A0AC6ACFEAB3B009CD84EA9429ABF64643B5321A229A216F618934A741D9944B96341146770543C6096AC2F39D02872278FDD008EC08029AA07704B57FD56B064BA2CAF455B248CB410A0F1605ECAEA7C9AEB889D8FA7B70BC2E8AAE48594AA923CA2FA5AD4D39A1885EB01054108350B23D5309E763E6D53DBEE9C94462827E2F49393682A06122B1A669D48F9B8BD93806DB6EC6101523CB21B424F78C8A0C91D04F99A0D44158ECA6B4EE55B6AF7D01A77F1D56DF3AEACD3E1CA3487F902193ECA1AFE853B3FFB770667E32B230F07A3113494A463C1AC4192AADC806A392C75476E894E562A208171C25E216F5880C9520926148B958C649C7C8B945758CB2C928651AE1F081681092B429629A6542257CEFA87AB928FD498D3A65464342434A9C42D20557962C251B116935900E3CB12D1372177C074C033F167D86943C54295CFACC552B8B107E4939942853DFA18DC37FD579A33FA76A10D004FD010FA51AD2F64BEAF63B3493E444F7D780DA3087595C83FBF40DF4BDF22762412FB6D7AD6EC9A3163A07CF8C0D2A9545824BD2BAA7C87550B55DB2605F32615BBA26C41123AE3EA3E01A943D534D0E0E146298B15A12993A9C741A4B74407C9F72214B21D747C6DB8C13F42B764A482924F4702C297EF86A53CF0EC711943690A9F7D8589E43EB513760374E278C95D8FED61A4C291128E257A29714DCB2FAEFD671E3545B9FD4BFD5A6617F0F3DEBDFA4BFB313DF4AD03A6D1E89E175EAB8E3F27257EE163CBA366DA4BD7D1B3DFD79E2E97A9AC78D66644B73E464227716226E1F7874746CC32D9748043E8D4D2309E2B5AA94942BA35CA8950788EB31B0693D461010CF6448363663CA6460083D9D3D1472FDC4247B17BD12C7A1AEA9194B0C0FDE4E98A36ABDAC433F34023B828026E81D41ED5FF61AA167B1278A6EA35509403A1D24A3B64CA5B111F3B6C0D6E7D9FCE8CF31DA57D0686C477A14442FA36CC43143E92916828EF47F238296FF975A2F918591CAF44202A590178948CA3D7B10183876B431174926C91046A89A121CC9BE955E748813ED8DE1FB22A31A792B7A5210B76DC2B2473A99C2CD0F60587136DA539878C2B7E92D3673FF8D3F65B421033A01252B49D64A3360A7959EC67E4B8F61EC9489389ECB0B0FDF49D78B8F901A68C7714B84E9E16C2C25689EB517BB2C3992783C81D7BE9195BFFF25FEF6F5386651757B88ECAA5F76B1EB46B3D3FEC7317CA779AADADDFEFA2BBC78D70D3494DAC91B09DCDA56F63DEA2324468D15856699DD216D14B9E717D7D0B0F649EC5882556613C3763F84DD16EE45D8D9C193377E8F96FC66CAA275E2A4289B31BC781D8D6DD3997BC0129C54ADDA17103391BFE519F92F3B95F4075524029AA03FD0618B085A9C40E4365F5ABA645250E8526AC9FD56526DD4D588C346711585153731F0F25D64BCAD588840FF60378354654307D31F525693F281F44DBB58661CD78DDCEAD44C8565E08B2BB4F8E0D9268E6CDA495B9B6CE50DFE69887555549CC633D41CA4BA084836698A09A2D292B6F0FD003396A5E8264904192CB39B42CC677DDD1246EF71212FFDE1E70CEBDB489F339A6E6B0439AB8E6D41123F5587317C24479F7418AFDF791BC5177FC7C8A449A1A748B2BE8E4DBD2512C3C6D121FEE82DB339F9C88378E07B5F64A2D54F284A7DA14191128EED91CEF7290795D5FE68C61E7B296D931AD9B4E2517A1EF809C3DD6D6C1157927413ED99691CF9D1F328C662D418215EE766EEBAF2B3CC49B804E52C5B1A26F1277B1E071F7B3C63837E3A7FF925C6F5ADE24D7B04F95823AE99A4CE1CA0E859F48FD987034E3881926953636947910FF457EC037E709AA03FE00192C31B9ACB8BEE9CDF99D293BC58BA3B842B6352AA2876521E58C5D67BAF22BEFD0986C7BAC9CAC48A19236D2530CB723B1E1988AA0D35C357A24BEF6C69BD7B0630525F7FB70CFF3B9FFC0E68AA22AB860B25C38F3A3122FFBAC8EB2E6E0D5014D926258F1A27E69528382DBCD97820D6B65708CD466EB63E44BE7177EA9D849242ADF53A18B7D358C64C1C46FB4F2E614EB88255F1793C5A9CCF969A5AC64D18CFB06D9BD996EB649B3D8C93269834AFF809713BC69FEC9D79223E9B516DE319EBB8A4B63CC9DEED3F57032FB70FFF08A79FBA8CE2AB8FD27DEFF7C9A75BE90E6DA6E65E6585B91F079E760EA97175D4E1F2CA138F91FEDD15BCD0B080D1FE1B8CF43BB8AEE15C962C3D9811B1809E9F9E46ADED714D7A19E9917355DD7C9F37AF60467E1DB7D49EC8D4457B3067DE6ED458A2C5A71F1A811D434013F48EE1F6817955A0C63242D5B5A0FCEB4A9D60B4E3AE7B82ADCFDE436DCF93C4CB5D329281694AAD39505649A23F2DFDCB0969C753031A83331A8A60A3EE5DA1FEC86D63C85EE3FFA568D9948C46BD85A5A311F2684063A80CEB9A35E4EC3A0CBF1BDFF4A8A544C9AD656BEDC18CE85EC7DA5203BFAE398EC5C79EC8B451524C8E8B123596EFF3EC430F925C712DB6E1F3FBD49114C72DE2E443272A31A25ACFE3E9F602AF6EEC61FACAEF32B1FF351E482EE6A1D82E1C75E49EEC3E26A188B1DCD7CBC6FF3C9BFAB08FBB33CB98B2F71246995DB8775E4E776234AF596D2CCA2F676B6C26EBA69DC4B147CC5663F7F75FF525DA06B6F0447277A6955632DADFCC350D1FE7F0231633C2F1E9FFE929D4583E37644E61AF638EA0796492FEABAF6052C75D3CDCB894626A24277FE424629625CD8B1F98F3451F486521A009BAB2E2F5DF8F368C6AB8D2252D6D73AE2F8EE1628FD44F50EEC47BE9410AAF3D40D7B62748C7B792B245D2543C3E0D4C3F4360960895B55534FA21AD6CD2B7A0F2F2506AA8B9C83B2F52DA78D79F839C1ED428B53CC9CA230797C8EA28FA5D265D12F8A9E1948C3E7A1D9B7C364F6BDB3E782D47D3FFC7DF50B25AB83BB18896B135C4824DE41B2670C0FE87D060D93C70FD2D4CDC7C2D7DC9366E708EE0C0630E6671ABA38CA20DFAE83732F478063DDF3A8A616E8E9FD59D4DA16D573E7BE4785281B865DB643D8FE77EF06F4C2EBCC4D3E9FDD8D4BC903D674F2075FBF974382DDC1FDF8FC30AF7526F7A5C5FF3613E7BD662DC815ED6FCC799646B66F1A439830585FB68F536726DC3791CB1F4405A9C32D99F9C44C6F1B9327E21C77DF800DAC4DDE63F2EA0D95FC91DC38E635B3089F3CE5F46C6922E0F4DD095FE357BBF8E5F13F4FB85FC3FEA7343A9494B3521A984FC076951C97E4AE669973C0C115DDAFE04DB9EBF05B6AFA4C1EDA1A69CC7F2030A660B45710537CA988AACA50B448C6D85E0243996AC36F294FBF3524BB400531AFFD4349E585A398461D4CE27A3D8466853EBB5E3990E5DBE455FF35C46ED711899B67D59BF7D049B6FFA3273F22FF35A7C3AA659C6747C5E4FCEC618BE134B0F5DCC833FFE0E93BDE56C3666736FC3617CF8C38B98E29862844DDCE8501E8C5BCA0EEBBFB58CDA00EE6A3889C97367B26CE1580AA429173CBC789CA7AFBA8C9DB30FF3AC3D8BE589851C72D02246FCE674B61ACD3C38FC04E6792F32AFEB3E7E9D3C8645A77E849E477F4DDBEB37724FDD09AC8D4F6249EF2D8CF637727DFDB91CB1F42046D945B2FF7522B58EC7D5F6879937A591968E6719BEF129B6D7B4F08BC4329A9B46F1F9A32690144715431739FE51A7FBFFB5F7D1045DF1118F4A0A91ADD53B0F95B3853E9E212D7A268E7802660B94BAD7E0AFBE8BAEB5B763FAAB70C22231DB26663A940A051C3101308DA89F37907CD82190AC5AB274D59E27024DEFFC88CFB61AFE905173CB60A054209192294483925B269F77709AE750376101B1992762D44CC53392BCD1E9B1ED868F511B6EE0F1D442422F895B34D890D9854E1C3EF9E1053CFEDB6B59D07E3BF9603A77D51ECAD91F5BCC58E93691C93FAB1DAF94A23D4CB1E55B4790F15DEE6C388D390B16B078973ADC308563DA6C770D9EB9EA52E6E51FE749732E4FD6EECFBE7BEECAE8DF9F414FA285FB524B993E7114739EB984CD35B35835F163CC5A7B13A3FB9FE3C6968BF0EAC772F0E6AB199E7B836B336772F4514B19E564C9FED7C9343825BCA044A6BF87C049D1DFD8CA23B123B8DBDC8B530E9DC8D231A5C834414D69EA8746E0EF474013F4DF8FD907EA156F67B56FB3B310B68C4047A3CFAAE42059AD742B88BE841B623945C27023F96D2FE2AFFD2DE1FAE718E8969E8800215C51A416CF6602E966162381A8B54EEED47D6F682331BA6DB7C298AA6D4B0B483994917293BC68323B49EAC78EC3987534F191FB62C647E0D1AA3A3EE4B1B5A393ECF5CBC8C652DC913E996953F7666C4D8A7E33454D2264EEE45A1EBCE55BCCDA742F595AB92DBD8C93CF3C9A29A68765B91074937346D11342E715CB1851ECE4B7CD1FC7DE6509A7EE5947527AB37D19854FB0E23BE7D3EAADE5D1DA25AC8E4F67E9C259C46F3D9B7C660CF7B22F4B4E3D92E2D527D09A36B99B8359907F1C3F99E0BACCD12CDC674F46DEF969C6065BF851F20C8E3966192D4E9EEC4F4FA6D67179303E9F2DC134B2B2FE844BDE6D61E7DD7763D91E1986491FB88C7FEB3EE80FD477A6920E4613742545EB2F1DEBDBC43C48C86A4E7AE8213E538396F7868B6F7BB84A7D2DAE6ACE4660621573185E0F617613C5CE5728B7AFC4EB7B8D7CFF5A707B890D1ABE4AF61C480F74A440AFFAA495A6925154433166AC0927338944E33CD2A37725D63403E24D789934BE1323E6E6F0AD8C52A293E9BBF6AD9D94AE3D0E23D6C0CF9D935874CC91EC322E261A4DD4980186EBB2F1F9C7E8BEFF47D4387D3C64EDCD6E277C9A29633338A18BE99579655B8EF4E826567FFB3CF6F456F364389B0DD38FE1F0A3F726E379A40C93979E7A06FFDEAF924CC4F865EA78EADB66B25F9B45F1B79750488EE00E771FCEFEE471ACBEFA7CA6145EA797F1341B259E88CD6065F39E9C7AC4EEF4FEC7C76833B6F393DA7359BA6C29239C22FDD79C4A8DE3737DED39041317D09CF09838DC644A5392498D8EF26F2C63CB188EAA99EB8746604710D004BD23A87D905EF3361FAB5964352822A3D432DCA246BE7D35D3826F0483D6AFD1649E68CB4B2B5C5E1C400C690553E3254A23C3144D0A91342D0E501A584BE8E5F0CB65E584128AAD8A6561C607E54E93233113F558C93A8C5403A19DC137934AD253EAE1490F1C29527B5D84B19822733F88B3656B91AE6BCEA736E8E5CEE4FE34EDBA3B236B3D357597F2F2CCDB6D3F06F2F0F80F2E6786F727F2A9B1ACB576A665CFDDC91909B2ABD6F26677078DF39730A5B485DA877E4083DBCD4B35B371F7388EDA8606C26DED6C7BF931F6E20536FA0DDC103B9E23162F64CCC08BE41EF821FD619A7B634BB9E0DC251456FC02EFE95F3132D747776C22B7C7F6229C3E8763F79FCE86EF7C9496601BBF6EF938FB1DB284D176899E6B3F42261670A3BF94434F3F9979231C9CD0C1B05D6C99E60C6A949892618BA0ABAE417F90BE3295742C9AA02B295A7F33838E9C4EE431A496F1EE1EE677BF34724389FE46EAB943CF1B12E27FFB5DD43F88D3CB5FEA801E7AC741A9CD48EE48E96A0CF5552BE1A2C10B48203DD5439A156E918EB56B78F4B69F31C35F4BDC2F5034630CD835743B2D7418F5CCD97B31B3E6CD65DDCB4FF3CADDFFC5B4642FF19EB5A4E216EBFD7AB6A5A7B1C11EC71A6334179D75142B6FBE9A9AF66768087B09DC1CB6692A2D8C1C356C4F8EE319731AF9D6DD3973D90CF22B1FA6E7E93BC9F576F1C7F852CEBB6019E38BABB9EFFB97D0981849677C279EC8A539E8EC53199F2AF1EC773FC730C3E0F186B9CC39F244E6BABDACBFE9328C649E3F260E679F639631BE31CDF058A40F6D48DBA2C021A518A5C3213FFAA111F8FB11D004FDF763A65FF1F72030C8ED32F9FDB66E73B98497EDE5AE5FFE82FC40BFCADCA5CE5D3293748635F8B5A33012093EF6A1C3F1C29075ABD7F3F01DB7D2147395E594976AA4C76966BB9761544392334FD81723D7CFF2DFFF9ADE8E4D4AC83F70321465E8DDAC654B318EDD34966587CC67E791265D6B5EE7E6DBEEA1583B910D7D26975CB084D6449E477F730BEB37E4E8721B08EAEB38E5A3872B9794BBAEBD8E5CD9E679AF9165271FCAEE768915BFBC9A4E3FE465770CC79C70243BB566488BBB8D8CE5479AAC83043D38BCF3F760A69FAB1118444013B43E15FEB908A8CD4A318C8DD4406450C612FF44C3A06F5B07B7AD5CA736D862E26A2EAE298E38B3D88C6EAE63BF5D26911814EFDFDAE5F2E4F36BD8DAD183EBBA241C8B19D3C6B3DBA466EA5322431A2ABDE695AFBCC99B9BFBD8DA935765969853C3A449A3D879DA30C6254352851E6519F6D49A3CF7BC51A629E8E5C483A7918C99E48A2EF73CFC1AC592C58431B5EC337734861FB2B9BFC0EF9F594B4F21C3D18BC6322963D0BE653377AF580B569A0316CE644C5302CB2F624BD78612F0575279837DE33A83FEE79E64D5FBEE9AA0AB37B61F8C95FD3F045D7403A57627CE27B259D82D2E2706CA7A4BB633956EB5E87A4825DD1BC076032C2B413E8C1338A66AE513BA93E947D1FD10F53CA9B78B30D340C9209150F6869126B698E94A352794DE695BBD2E16E4307D4F65D859ACC8F144244B3D17331653F60192F4CBF1A4C33C6631A4944830605A24F21E19E98B31B2E46D9B946C7AAA1ABFA8E4B984BEF492BF23E02F0340D110BC26E80FC6C9587947A109BAF2625661471C15A145687F50274FFDB712C01B2C7F2835105F261065543C7236174128823CA1299428C3D243E2D842A051AD5BDED912B356A437DA8E9CB4D5DFC96B65C2521CBA65373449E8D4AACC3CB2C512A17FA90F836B0915A35C689444AA725517F54013476AEF9E8167CB3B55FA749C000007AF49444154E7B14A6508121492298A86419D2BAEDDE2A420C75D882E2FA2B91D88E58A0C0F6982AEB093F50377B89AA03F7021A9AE038A3838EA2019DABC7CDBCE44BC018736D58454853E2D5B49782ABF43D1F21B1C938EC9E8B610AED85C89C8BF19A76498C4431743FD9DB4B649A923CAC2232511E17C19418FF450A50E3ED4F4A206DB4331973510DF435B44A510130349896384922B078ECAEE45933A213AD7DE00A15143BB6DAB0E9551A2031D0A41CBE74BEE2DED87493518A47E55FE6142F63A83AEAEB3FA5FB71A4DD0FF3AACFF4F7E524488831E826FCF3A8A2053E4851D65C1832E2486D84819CAE944FE557907863E86F20B5482A7831D25B20937F80CC96095B6B5D84E49AD3BDA8C145383A10AB088EFC71561470EE4DE9FB90486C494C6935C29CA8496B8A3CB9125305C87C00EC847CDDF2455A51B06067DBCEBE4E22047A904B6E5A8E57971A5E217592A2ACF96B747E5FF4F9E007AD1FF2B043441FFAFE0D32FFE9F1010B294DC7950EE7FF0E9925E469B69CAE8D6083155061DE21B31650C20D9B318CA462D6B31559E10BA9347A47927DE85457C23A9E85F6ADACA7966889695F16B64121B6D4F8A216C48682A47440CC9C8835234E517A6D4DF09A91795F989484F85982571ADDD0A463305351128997427862F658C14D839558291CF97924CD45E281A24D10526B21B5315F3FF0926FDEF1A81BF888026687D62FC531178A7833AA2B1B715F106254CD51FCA84367AE6501FF5DB156BF5D742E4EF54A123DD3D495CFDC8DF50B441947CB564D9EF9EA48C4A0DD11B4B9A3C3805A99C5F877CB785C1230D6B3F72B3520FA155757150DB8631553E512EE3E2FCAD0E5ADE5B7ABB8784A4A26E956853307A44F7074352ADFF5498F59B5729029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D0085429029AA0AB34B07A591A018D40E523A009BAF263A857A011D008542902FF3F264F063D9ED894270000000049454E44AE426082 , 'asdc', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1), - (5, 'Policy', 'images/cache/portal1470452815_67021.png', NULL, NULL, 'http://policy.api.simpledemo.openecomp.org:8443/ecomp/policy#/Editor', NULL, 'http://policy.api.simpledemo.openecomp.org:8443/ecomp/api', '', '', NULL, 'okYTaDrhzibcbGVq5mjkVQ==', 'N', 'Y', 0x89504E470D0A1A0A0000000D49484452000001680000012C0806000000EE2C29AF0000200049444154785EEC9D077814451BC7FF77B94BEF8D143A842EBD188A056CA8F40E52444405C52E62C5F2D995265644451114456C6001A4F7DE413A2421BDE7FADDF7BC7399CBE648729BDC5DB82433CF1325D9D9D9D9FFCCFEF6DD77DE99514024A1805040282014F04805141E592B5129A18050402820148000B4E8044201A18050C043151080F6D08611D5120A0805840202D0A20F0805840242010F554000DA431B46544B282014100A08408B3E2014100A08053C540101680F6D18512DA18050402820002DFA805040282014F0500504A03DB46144B584024201A18000B4E8034201A18050C043151080F6D08611D5120A0805840202D0A20F0805840242010F554000DA431B46544B282014100A08408B3E2014100A08053C540101680F6D18512DA18050402820002DFA805040282014F0500504A03DB46144B584024201A18000B4E8034201A18050C043151080F6D08611D5120A0805840202D0A20F0805840242010F554000DA431B46544B282014100A08408B3E2014100A08053C540101680F6D18512DA18050402820002DFA805040282014F0500504A03DB46144B584024201A18000B4E8034201A18050C043151080F6D08611D5120A0805840202D0A20F0805840242010F554000DA431B46544B282014100A08408B3E2014100A08053C540101680F6D18512DA18050402820002DFA805040282014F0500504A03DB46144B584024201A18000B4E8034201A18050C043151080F6D08611D5120A0805840202D0A20F0805840242010F554000DA431B46544B282014100A08408B3E2014100A08053C540101680F6D18512DA18050402820002DFA805040282014F0500504A03DB46144B584024201A18000B4E8034201A18050C043151080F6D08611D5120A0805840202D0A20F0805840242010F554000DA431B46544B282014100A08408B3E2014100A08053C540185C562B17868DD44B584024201A1409D56C00668C1E93ADD0FC4CD0B058402D7580185E26A8786C26C36330B3A3D3D1D7BF7EE8556ABBDC6D51497170A0805840275470102735C5C1CBA75EBC66E5A0A6A0668B3D98C356BD6E0EDB7DF46DBB66DEB8E32E24E85024201A1C03556C06030E0C2850B8CC12A95EA6A40EB743AFCF8E38FD8BC7933FEF7BFFF5DE3EA8ACB0B0584024281BAA3406E6E2E060F1E8CAD5BB7222020004AA5D2066985C964B2141515E1871F7EC0CE9D3B05A0EB4EBF10772A14100A78800204E881030762C3860D080D0D2D65453340171414E0FBEFBFC79E3D7BF0FAEBAF7B4095451584024201A140DD5080003D68D020AC5DBB1611111150ABD5A52DE8FCFC7C01E8BAD117C45D0A0584021EA68014D09191911503FAB5D75EF3B0EA8BEA080584024281DAAB00F7419305ED10D0AFBEFA6AED5542DC995040282014F03005F2F2F2D820A14340EFDEBD1B02D01ED67AA23A4201A140AD5680003D64C81001E85ADDCAE2E6840242811AA900B938860E1D2A0FD0AFBCF24A8DBC495169A18050402850131520400F1B364C00BA26369EA8B350402850BB15900DE85DBB764158D0B5BB3388BB130A08053C4B0102F4F0E1C31D5BD004E8975F7ED9B36A2F6A2314100A08056AB10234483862C408C780A6A9DEB367CFAEC552885B130A080584029EA50059D023478E940768B916F4C90B19389394E559777A8D6A131CE083B64DA31116E4E7B006B4BAEBD1B369B89496EB306F5DC81011E28F4E2D63E1ADF2AAF0760D46338E9E4B45727A7E5D9045D63DC6460431ED1CA582223D8E9D4F43464E91A3ACE2B80B15080FF6C375CDEA21C0CFBBC252C982960DE8975E7A4956159FFFE41F9C49CA9695B7B6670AF6F7C1FD83BBA25BEB7887B7AAD519F1C2676B71392DCF61DEBA902122C40FAF4DBD05D4992B4AD9F91ABCB67803923304A0B94E31118198FBD89D0EBBC9B173E958F8D34E64E60A403B14CB8519C8607B6A5C2F348B0F7708E851A34639B6A077ECD801B9801EF3D20A84852831F016C756A30BEFD9E38A3A7DDE88AD7B7578704837DCD8A9B1C3FA156AF598F2C62F68D64885DE5D7D1CE6AFCD19761DD4E3F86903E63F7127A242032ABCD5F49C42CCF860B5D0AD58A53F376A909A61C6B2574738EC227B8E27E1FD65DBD0AB8B0F9A375639CC2F3238AFC081637A1C3C6EC08BF7DE88364DA21D027AF4E8D1AE07745CB4171EBF2FD8F9BBA9C125EC3EA4C30F7F14C907B4468F296FFE82AED77963D4DD1543A906CB22ABEABFFC53842D7B7498FFF89D880A7300E8EC42CC98B35AE856ACECC74BF371F6A25116A0771F4FC207CBB661E45DFEE8D6BE6E1B05B23AA60B32FDBD59837FB6685D0FE8175F7C5156F5C6BEFC2304A0010EE80706779567416BF4B8FFAD5F0568007040CF7BACBF2C403F3A778DD0CD0ED0DFBD32DCE1F34A16F407CBB70B403B54CA751938A05F9844167494430B7ACC98318E2DE8EDDBB7E385175E9055CB7B5E5929000D09A00775419F8E8D1C6A57A43560EADBBF551A34B42D596A4A167C7DBD111651FAABA5A2631555283FAF083326BD872F57963DEEF0DFF18B58BCF037BCF9E1F40AEF6BFE9BCBD1A75F2774EADED2E1FD4B337040CF7DF40E4486FA57782E0D703D36EFCF4AEB4685EA7406688AB4080D0B2A758DB42BD9888E094351A11626931941C1D63AF4EF3103F562C3F1D5AAB2239AE8F89A9DF32B75AFAECECC2DE86F5F1EEAB0E8BD279231E7FB1D02D00E95725D060EE8E727DE80D68D232B2C98967B1E3B76AC3C403FFFFCF3B26A39FED59F05A025809E4A80EED0D0A17604E807DEF9BDD2A02198DE79FDA3E8DDB7E355C0ACE898BB014D909BFFD6720C1BDBB7CA809E33E37659807E7CFE5F95D68DEE7FFFAE9358B36A1B9E7BE3DE52728CB8E559AC58FB1656FFBC155792333179FA401BA02B02B02701FA9B978638EC737B4FA660AE00B4439D5C998103FAB9897DD0BA9163408F1B37CE31A0B76DDB26DB821680B636277771DC3FB0336E906141D320E183EFFC5169D0108447DD3E0B770DE98DDB06F44042EB9297C16F3F6EC6D67F0FB25D18B8B5BB73F31164665843F982430218D8291DDAFB1F2E5F4C63FF26AB975BD0E74F27E3D8E173B63E7AE7905EB0B7A0A565D2714A3F2C598BB57FECC4F36F4E46A3A68E43BEA40F01B7A03F98719BAC41C227E6FF5D69DD2A0BE82DEB0F302D67BE369155F5F285341CDAF71FFB77EF9B3B62E7962338B4EF349E7C691CFB1B69F4DF894BA574B37FD0A5BAD1B1FA0DA3D1BE4B82533CE016B42C409F48C6DC1F760A0BDA29C52B77B20DD0137AA37563C72E8E7BEEB9471EA0E55AD0135E5B252C683B40CBB5A01F7CB76A8026984E9E3E8001815B7BD46DC8A29BFFD5533677C43FBFEFC4C7EFFF883B87F6868F8F1ADF7FFD0F1E7C6218EA378CC27BAF2E45971EAD10DF301A17CF5DC1D18367F1C25B9331E7F56588AA178AD6D735613DF14A5206FA0FEE692B73D3DA7DB8782E15DE3E6A767CE4845B6C8096FE5E996E6C03F423B7C9B2A09F58E07E40FFFDDB0EDC747B17787BAB199CC9F20E090B64B775DBDD3D30A6FFF336F7C6B143E730EF8D65886B1065D32D3B330F0F3C5EE276A0B620D714E9A6D3EAB1F2BB7F31EB7F93D0BD57DBCA4875555E0EE8252F0E76580E59D0F304A01DEAE4CA0C1CD0B308D00E2C688A831E3F7EBC3C403FF7DC73B2EA39F1F55F04A025809E32A0936C17C743EF553E1A81FB8BDFFD74067EFD61133A7469812ED7B7C23B2F2F61D6715474A80DA66F3CF725E21B4661D4C45BA15279E1A7EFFEC581DDA7980B22F9523A264DBB9BF9630946CBBEFC9B41FFF79FB6E08917C6A25E5C046BFF3E6DEEC7E29F5EB49559969FF9D8A1B3D8BCEE00EE1ED69B01BFB28903FAFD876F9505E8273FFCC7ED16B4F41ECA728D48DD1BE41AD9B5E5281E7A72984D377BF707B505BDE8487B473EFFCAE8C701FDF50B831C9E46809EBF6297B0A01D2AE5BA0C1CD0CF8EEF250BD013264C700C68DAF65BAE052D006D6D4CEEE2900BE842AD01D39C00340DE82D5EF82B62E222406E06EE4795BA23A450A03AF2630489C0203F761E250E0C02F4DB2F2D4154BD305B0F3D7DE2522940A7A76663E13B2B70E1DC15DBA0E2E675FB997F77C6ACD155EAD91CD0EF3D7C2BA21C0C12A6E714E1A96A06340D1E92054D2FAFFB1E1EC85E84F680FE74CE4A844786D8EE9FBE3CA4FE6B01E82A758D1A7F92DB002DD7829EF4BF5F85052D05F4DD1DD15BE620E1B4F72B1F2E26B5BE08D0DF7DF117D46A2F141668B1E9E867A5FCC55501F4CE2D474B7D9AD31342B0914671F0688791B73ECB20E432404FBF459605FDD4C2B5D56A41930606BD115AAD1E1FBDBB02C3C7F7C3C3E3DFB101982C6872138D9BD2DF06148502080C2A8948A1B6D8F0F75E787929E11FE8876F7E7D05FE01BE4E03885BD05F3D6F1DD8AC28ED230BFAC7DDC2827624940B8FDB007D4F4FB492E1E2983871A23C0B7AD6AC59B2AA79EF1BBF09404B007D1F01BA7D0387DA15E98C98EE24A0E922F4E09375F7C33F6F22363EB214A0C9D25DF9DD7ACCF9E2090685FB47BECE3EB3DB76688A796F2CC733AF4E60FF7E78C2BB6C00913ED1673FF519C64FBD1337DDD6C5760F0579453640E7E514A2B050C38ECD98F81EE67FFD14E6BFF9BDC310BC8A04E116F4BB04E8908A67A466E46AF07415014D7EF6990F2D6083AB238A7DE79306BF82662DEBE3A36F675E15C5C1EB4CE17959C503AD4B3F5F83E1F7F4C343E3DEB2017AC35F7BF1F64B5F63C28377D974532A14C8CB2DC48A6FD6B1A8116A8BF65D9AA3792B6BDF50AB55888C0E65FFB67F913AEC3C920C1CD05F3E37C0E169FB4E5DC1020F07340F79B4BF9994A40CD6BFAB2365A4E5203C32184AA5D2E9CB7140CF244037B4BA0DCB4B1466270BD05BB66C815C404F7EF377B7039A0669E8D3BA4D87A66CB08B125992F4F9CD53CBB68D9845420FD3C5B329A5A21B9C56594601DCC571DFDD1DD0EB3A398036E0E10F2A1F2E46D6EB82B7BEB745177CFBF91A165130FBBDA988880AB10D68DDFFA875D0887CC63CBA80A2067854023F8FF2BCFDD123B63209363F7DB7BED41DCF7C75227B0950993F2D5DCF2C414A0BBE7E1A6B57EFC2BAD5BB5D02E877A6F59305E8673E5A57250B9AEA4C9114DF2E5A53EAFEE83EF8318A78E1AE1F9E895C43F3DFFA9EFD7ACF94FEE8D1A71D9E796801EE9972872D0A83AC68D288273F7F5FCC787614D3EA9EFBFBE3C2D9142C5DF42708349422224370EFF4012CE285DAA247EFB655EAB31CD08B67DDEDB097EE2740FFB4C7E516344135A938228857A2B2B1F0FC3CEEAAB3BF191A0BD97CEC7387F7E88A0CF70E7D950DB6F3787867CAB4017A5C225ACA00F4A449931C5BD004E8679F7D5656BDEE7BEB0FB7039A20439608B712A962E4F37CFFB5A568531C6D40801E36AE2F7B00C822E10F9DAC9B7041260EE8C97711A0EB3B2CB14867C02373AA168DE0B0F06ACC705BD78731F5B121CCAAAC6AE216F4DB0FF59505E8991FAFAF32A0AB5AC7B2CEAB4C1C7459EE266E5D3B53270EE82F9EBDCB613104E80F57EE7539A0798865E36671B63AF4BCB13D8B82A96CAAAD807E66ECF5B2007DEFBDF7D62C40D36729019A4299468CEF671B88224093EF930F4CD15B8F06CECA02F4AAEF37B24F54F209F2B0B0CA761C47F94B00DD5E9E05AD35E091B9351FD0F4703AAB6909A06F466488839984B94598F9F1BF350ED0D457A571D2D49F125A356031E8CEA4CA009A5C1C0BDD0468BA07693F900E60D331FAD2223F3D256968287DD11C3D74D6F6770234B9CDE86BA447EF76CC0547892CE8D53BE661C5376BD9EFD263F405A2D71BD8DFA59A96F5DC1337C87DB17FF729C604AA0B31837FFDF4E9DB116F3CFF95CB2DE8A7C75EEFD0C541617693274F760CE8CD9B37CBB6A0A7BCBDDAAD163401E0ECA9CBE8757307BCF3F237F86DCB07AC21E402FA9BCF56B306211FAB8FAFB7D371A7E53D4C1CD0F7DE49809661416B0D9831AF6AE162CE3CD09E782E07F45B0F12A01DFBA09FFDC43300BD6DE32190A52837D1E4A0DC9C02963D20D00F9D7BB4927B6AB9F938A017CD74BCDCE8FEFF52AB0DD0524389A25FB41A1D9B364F69FBA6C378E695096C22D0D9FF92D0B899756213BDAC6EE93C1D770CBC9EB991C828EBD3AF23DAB46FCA004DF1E76495EFDD71823DFF335F9BC0DC6B143EFADA9C075859BFAED8CCC652522E67D89EFBA2221D2E9EBDC25C74F4E2D8B1E908068DBA8131A16B621B3C39752E1B68A7AFC0437B4F83267CD1CC5257BA389E1ED34396052D1BD03367CE94D579EE7F678DDB01CDDFCED2CF1F29A0C9274B6FCB75FB3FBACA829EF5F04216DF2B9D7127EBC62A9989037A52FFEB6403FAD1F9558B46A864D53C3E3B07F49B0FDC240BD0B33EDDE01116B42708CB01FDF933251124E5D58B00FDD1CFFBDCE2E2E0CF28BFB614D0347EE4E7EF638B6AE1CF31195FF6E70DBEF1297CB8E419D46F14CDBE9CC9974DE0264053E44BE3E671A081EAB96F2CC3CDB7776183D78F3D3F061DBA24B0B5547EF8FA1F982D16DC31A827222283995126AD0B019A5E8E8347DDC88ED158D6E3F77D80FFCD7B88C5B0A72667E2F12973F0E9F2E75C0AE8A74677770868B2A0A74C99E2D882DEB46913E4027AEABB7FBA0DD06471905834238B3E9FA8610BF28BD8E83901FAC9FBE7C2C7570D8D468F795F3EC91AC9DEC5A129D2E189297370FE4CB25B17B69102BA673BC70BF6D35A1C8F2DA8FA609727C0C15575E0807E63EA8DB200FDDC671B05A08BC5E780FEECE93B1C360701FAE355FBAB1DD054B1579F5984ED1B0FB13A92AB912C54724B7C3AE767AC5EB9051F7EF30C9AB5A86F8BE7A77CF680960E12F2630468E9809E743D95E9F7BCCDAC6ADABDA8459B866C5C8A002D758310A09F7B6461A9312B770C123E398A00ED78C1FEFBEFBF5F1EA09F79E619870D4E191E78EF2FB7015A0A615E99827C0D1BCDB5777194F5E6B6BF81F2062064DDA8834C25806E87C4B68E01ADD1193D0AD0B48A9B5E6760964E75A71240DF8008073BAA64E669F0DC679BAA0DD0641048E3995DA90DC55693B5C72393AA523607F4A74FDDEEF0F403A7D3AA0DD004C64F3E5889773E7EA41468A992653D877C0C497ACC1ED07FEE9ACFAC5FD26DDE9BCB59E40B8FCFA7095B46A309BFADD884ECAC7CFC779C9641B07E39DB5BD0F6809E396D013EF8FC31F8FAF93057CC03A3DF642F0C57BA389E1CD50D2D1A540C680AB3930DE8A79FB6861E394A0FBEFFB75B004DE172BF7CBF914D9290CE50A34F9D4F96CD6230910E12960768EA28B9D956BF1F9537FBFDA98E6EA94AC739A027DE41802E19CD2EAF3002F4E31F961F8D409F6B278F5EB8EA749AE8E0EC023B65D549CE92A2144E458996E67465E280FEDFFD7D6401FAF9CF373B05687A60AF2465DA6E81D6C7E08351F6F745911A3FFCF3161B50A290380A97A39996AE986462BF7A5E5534E580FEE4C9DB1C9E7E9000FDCB01B758D01466278D9D973E6B149AE9A5F242A32631AC8E14D14216B4343C8FE7AF08D0348393BEA429AC94C2179FFBDFBD6C708F7E28D69F0661972E5AC3BEB8932EA6A349421C0B67A4D0492ABF2C0B9A9EB3E9E3DF61FE6A0AA124A690CFFCA7F5EFB814D04F8C244057FCDC10A0A74E9DEAD882DEB87123E402FAA10FFE710BA073B2F3F1D1BB3FA25BCF36B8F5EE1EB6CE478D1B121A88BB87F7C6A963174B1DA34C74DEEF3F6E61B1A7947EFC761DCB47C97E9949873DBA121938A027DCDE5636A09F5858FE6017F9C2BEF8F05756035A458DD6B8A0CE467E33BE825A25AAE730AB1C4097E5337458B08C0C1CD0AF4FE92D0BD02F2CDAE214A0E933F7E09E53A8176B9D3840FD69FA33656F19458026838056AE1B30BC0F830B4513B9624CC39580FEF8895B1D2A4D80FEE4D7832E07F4AEAD47B1F68F5DA5AE6FFFAC499F43AEB7F43C9A424F3E609AD0C3DB8216986AD834062DDB3462BA4F7B7A386302A55BEEEA6E1BF07FFFD5A56C012A4AD7756ECEDA89D2A205BF202DC5BAA175C326318C0904E0E8D87056264F3C469D7EA7F564766D3BC662DCC9A27636F138E8C747749505E8071E78401EA09F7AEA2959759B3667AD5B002DEBE21E94C906E8DBDAE07A9916F4931FC91BECB28FA1CD4CCFC52F3F6CB4DD3DCD0EA45956146E44FFA6639DBAB564032CF610A0CE48D623F9FF78D817851AD9039A9F4717A1E3741E9FAC41D6E688F1B7300B837C783CF489F2F2BAD0BF098494DAB66FCA46E5CB4B1CD0AFDDD74B16A05FFC62ABD3802E2FC48D5C67FB779F6455A5A9DB836F78128B57BEC4264591AB833468DBBE09C2A3426CE162A4DDE6F5076CB7C7A77C93654779E918856F11D4794818ADDB617FAC2ADD995BD01F3D6E5D55B0A274F04C3A3E7503A01D5DB72E1FE7807E6C4417B4A8EFD8827EF0C10705A0DDD16138A0C7DFD64696054D83844F7D2C6FB04B0A68F291CD7EEA73A45FC9C6B07BFAB25B2178D034E321373D8D81236E004DDAA185E709C434B59816463A7EF83CB3BCC982F874EECFB8636022FBAC238BE4E63BBA62E0883E367F1E8519D1E02A9D4729F97206060CEB8D4FE6AC64BFD3570D7DCED267FE0B8F7D8C944B1957D585CAEDD8AD05CB4F1318DAB4B72E5F5A56B2017A722FD0EEDE15A5CC5C0D5E5CEC1E40D3A0F49CFF2D6383CD34A87478DF69F629FDC682E9EC339A2C673ADEBD671B6685D18C437A71D1025364155248187DF5B4EFDC1C4FBC388EADDB4DED41D65BFBCE09AC2C5AB294DC547C6D6EFB78E1CAF6CD4A01FA741A3EFDED90CB2DE8CAD6B92EE5B7017A78175916B42C406FD8B001722DE8E973D7090B5AB216C7F8DB5AE3FA368E7DD03493F0E98FE50D76D9AF84F6C0E837F0DE678F21AEBE756D824726BECBDC371307CDC6A2152F3020D0834FEB418C9C782B03299FF54680FEF7AFBD78ECB931080E0D002DD04FEB4A48D79126F74A504880CDCFCA0770CA0B8BFA68E9B357D565E4ADB3644FCDE5807E75724F5916F44B8BB7396D41FFB96A1B028A1733E25B7DD157C3B18367F1E093C398B57CE6D465B628120734696CEFE2208B9BD6D97E7AF67836D59E26634C19F13AF361523BCD59F4B86D09526A272A4B3AF8E42A402F7CCCF14C4EB2A03F1380AED6F70307F4A3C33BCBB2A01F7AE821C7163401FAC9279F9475230FCF5B2F002D01F43DB712A01DEF2842807EE61379835DF680BEBBE763A506A9C8DA5DF6E7FF3079E8ABB65042FB075F0A68FBA541ED17FAA786A7B5260E17EF2012131FC966699605E81BDA4E454060C9AA6CBC2E6CD6E6ADCF22F1C6F678E99D2915F6250EE857EE4D9405E897BFDCEE34A0695D12AA1B250ECCB27CC2A48D2340DB6FA3C50716EDF779A401A9F1035F8682C646D6BDCDAEED2A407FF8A8F56BAAA24480FEFCF7C3C2827624940B8FDB003DAC131264B838A64D9BE618D0FFFEFB2F9E78E20959D59CB1608300B404D0E36E69851EADADA3D515258DDE88999FCA1BECB2073459753470651F12275D1BA22240D392A28FCE1A0DB5B70A85051A0CEF37B394056DEFF3AEC8821ED66F26BEFDEDD572C3F3E42C45CA013D7BD2F5080FAA7809CEAC7C2D667FB5C3694097E583E6CB864E796410546A158BB9A7A8024780FE75C5263CFBFA24162E47101E7AF3332C4AA1BC8D78ED978CE56B7A3BEA33651DE72E8EF98FDCE4F0F4C36733F0F91F4704A01D2AE5BA0C1CD033867644F378EBEA85E5A58282024C9F3E5D1EA01F7FFC7159B57CF4C38D02D0A500DD12DD5BC903F4B39FC9F3A54A814900A04F685AAAF29199236D6D447EDE817D9E90654193CFF4DE690398AFF4E907E723BE41149B8DC5634A69F49BA6DFDAC2A29EFFCA664167A466B3C819BA1E01FE9E012F213C22F8AABAD0C4204AA78E5F446E4E21C64E2E3F4E9703FAE5893D6401FA95AF773A0D6836D5BA78F7715AFA9366A8D13E84EFCEFE0663EFBB831DFBE0B5EFD804277B40D38067C3C6F5D8A0DF8923E7F1FCA31F23B14F3B0C1A75235E7EF233B69428C5D1DA039A5665A45DC5695DE91FBF5987573E78C06516F4BC876F74F8BC12A017AD3E2A00ED5029D765E0807E64480759807EF8E1871D037AFDFAF5900BE8C7166E128096007A6C3F02743D872D4C71D0B316C9F3A5528812ADDBD034C13A018606ED687ABB343DF3CA782C78FB079B3B8116A7090B0F66DB6151A2995CE46AE0162DED9F476B1A50A20D66A9CC75AB77B1B5A0297D3E6F159B8545897CDD8F3C3B8AAD9D4031A294E87A6111C1A0BDF7688D14FBBAF0BFD1E0202FB33C5138A05F9AD05D16A05F5DB2CB2940F32552797DC22282D8DA1094A4C7482F02368567EDDB7982ADD5406D21D58DCEA1DFE9EF3C7197CEA2F9AB986E3C714DE9CB87F290AFFF8F9FB7DAB62D73D869CAC8C02DE8B9D36F7078FAE17399F84200DAA14EAECCC001FDF0600274C98E3B655D832CE8471E79441EA01F7BEC3159F57CFCA3CD02D012408FE9DB4236A09FFBC2395FAAAC06B2CB24C7E55095729D398703FAC5F1DD6401FAB56F763B056867EAEACA735D19073D679A35F6B7A244805EBCE698B0A01D09E5C2E31CD0D307B59705E81933663806F4BA75EB2017D04F7CBC45005A02E8D13727C806F4F38B9DF3A556A51F7932A05FB8A7AB2C40BFFEED1E01E8E2C6E716F4070FF576D81D08D05FFE795C00DAA152AECBC0013D6DD075681E57B1054D330989BB6BD7AE45646424D46A3514B4771A0085C964B25086EFBFFF1E04E8471F7D54562D9FFC64AB00B41DA0BBB574BCB335B9385EF8D2395FAAAC06B2CB44332D0BF2346CB5304F49DC827E7E5C175980FEDFD2BDB502D034E188260C39B3951307F4FB0F5A3700AE281D2140FF754200DA91502E3CCE01FDD0C076B2004DAE658780A60C7201FDD4A7DBE0A50482839CDFBFCB85BA547B513ABD05451A0B46DDD41C7201FDE257BBE0AD0602FCEBB676451A33747AE0B9B19D6501FA8DEFF609DD8A7B787E81194613F0DE033D1DF67902F4577F9F84BF9F023EDE56CB4C24F72AA0D15AA0D559F0D080B66826C382A6E83959802667B59CF4F9EAE3B8946E5D8CA8AE275FB51706F76A82368D1C2F26A4379AB168F5715CC92EAAEBB2B1FB0FF055B34E1CEC6FDD73B2BC54A03130C8A4E55837AE150908F6F7C653233A3894E2426A017EDA721639053A87794506D729E0EFA3C23DFD5AA07E5440C57DBBA080CD3F7108E87FFEF907E4AC1649282014100A0805AA47017231D30C6E5980966B41574FD5C55584024201A140ED5680C2EC64039A02A645120A080584024281EA5180004DCB3C3BB4A0FFFEFB6F0840574FA388AB0805840242015280004D3B59C90234CD09AF6DC962014C6633BB2D15859E882414100A08053C44010234ED05EB10D07FFDF5175BB4A3B6A5BC223DD6ECBE8CD8707FF46A13CDD6E51549282014A85E05B47A13FE3D988C2317722ABC70937A81B8B9631C22829CDFD9A47AEFB06A5723403FFBECB3E5039A32FCF8E38FA03549F57AEB1632B52529BD5468D5EF3E04D76B06A3AE0817F7AD46FA4C14CCF10000200049444154993DB058AC16B5484201A140F528E0A5F645E36E0311D5AC6B8517CC493E89F3BB7F85362FBD7A2AE60157E9D2A50B7EFBED374444445C3D93B0A8A80857AE5CC1E5CB97919B9B0BA3D1E8015576AE0A168B0539857AACDE978E941C03D4DEFE0CCADE0A3D125B84A06D832078ABBD9CBB48359D7DF6EC59346DDAB49AAE563B2F939797C7FA757878C53B2C7BFADD67656541A552213838D8D3AB7A55FDB40613FE3D928993A96604453580B76F60A93C26830E7919971017A0C7CDED221011E45DE3EEB1B215A629DD7E7E7EA857AF1E1A346880D0D050D6BEB6A9DE66B3D9A2D3E9909393036A7C82B5C964AAEC753C2A3FC139293D0FBFEFB880139772E01B148EC0F03818F51A146426C3D7CB885B3BC723B16D7CB5429A560B94BEFC9A356B06FA71946EB9E516F6F9E3EA643018B067CF1E242626BABA688F2BEF8F3FFE404A4A0ABA76EDCA340F0A0AF2B83ACAA9D0A2458B101B1B8BBBEEBA4B4E768FCA43CB1CFCBCE50CF69DCBAF10D04D239418D2BB19EA85F97B54FDDD55191F1F1F84848430EB392020004AA5B234A009C8E4DA2050D3434B80ABA989EA7EE67206BE5F7B08074E5D81CA2F148111F150AAD4CC82D615E4A030FB0AFCD5660CEFDB1677F66A536D03872D5AB4C0F8F1E36DD2D29BF3EEBBEF46AB56D6A541CB4B74DEA953A7D8E173E7CE21232303DDBA7573BA89C8AA1C3264085B83A536A7A4A424B6D60C7D467EF9E5972CA4A96DDBB615DE323D0B6BD6ACC1E0C1833D4A9AF7DE7B8F595AA3468DC292254B30618275B9D48A12F519D2A0776FC70B2B392ACB99E3851A3D16FDBA1B9B0FA75408E8B6F50370DFC06EA81F5DF12243CED4C553CE254B9980ECEDED0D5F5F5F663DD3EF3C29C882A65F086C66B3B9C6C3F97C722616ADDA8EDD472E42E11BC22C6782334F0CD285B9CC920EF00126DDDD03836E6A0F7535B83BA2A2A2909E5EE2577BEDB5D7D0A85123870F99F43C727710A0BB77EFEE741FA3AF26B2CEC98AAECD69E3C68D0C665F7CF105860F1F8E175F7C111D3A543C459AB4A1BCEEF87271466B699F910BE85F7EF9059B366DC2FBEFBFEFCCA59D3E37BF488705CB3760ED9E0B1502BA6393503C32FA46348AADD9EEA8CA08C6AD660236776FD0F90A4BB1B95C93AD662EC4C5942C2CFC6113761E3E0F957F38FCC3EAC14B75B51F8B20ADD714203FED2282FDBD30F2B6CE18DBBF1BD42AF7FAA4C3C2C2909D9D6D6BB7575E79058D1B37C6C48913D9DF6EBEF966DBB1499326D9FE2E3D6FCB962D3873E68CED98F43CB290E801A644AB6351E84E4C4C0C4E9F3E8DAFBFFEDA768C5F842044D7DCBF7F7F997D495A1F8A8F1F366C98AD9ECB962DC3983163D8EFD263F6F7C10BE6F9695B359E162E5CC840C92DBBF2AE575E999F7FFE399A376F5E4A37FBBAD0D8CAAC59B3D82879CB962DD917C3CB2FBF8C8E1D3BB27197B7DF7E1B77DC7107DE7AEB2D562D5E669F3E7D70E4C811964FDA1603060C6071AB94E83CD298D2FDF7DF8F3973E6808E539D08EE543EFDFCF9E79F6C0088121D979EC7B528AFEDEDDB972C2CDE67487FD295A79F7EFA091F7EF8A1ED77D29ADA9EEE99DA9AEA4575A47BB2D7D45EB7323B84937F2C28D261EED2F5F87BF7B90A01DDA969181E1BD7B74E019AA49582994B6D03B493DA5FF3D3D3B3F3F1C6177F61EFB18B5007109C63A0F42A5957D5BE82F442A2A88E9C943308095063CC1D5D31EAF62EF056ABDC762F3400400F0A4FB367CF660F1B01A07DFBF6F8F5D75F6DC7BEFAEA2BB46BD78E3DE8D2F356AD5A8503070E80CEA54470FBF6DB6FD9BF09DE645DD3DAB237DD7413A80C2A9FE7A773A589EA42F9E8B87DA2F36813619EE8C1A7BA5C7FFDF5AC23F5E8D103CB972F6787A5C7ECCF7BF5D557D93993274F66A3D3524380D793DC08655DEFB6DB6E03FD945726E946EE1FFB7AF2F3A86EE7CF9F67FAF23C742DD28E2045C7C8BD44C709E094A64C9982952B57B26353A74E65F748FAD3CF9D77DE8977DE79078181D6C12D02AF56AB657A5379348643962A7DAED2A42FFA3B819F804CAE2C4ABFFFFE7BA9F3E86F15B5BD7DFB1248E7CE9DCBEA4CBA503D29D1F5EC279A51DB926B8CFAC18E1D3BF0D24B2FB117367D4A57D4BEEE7A00F20BB5950274E3B8087755A5C6945B2B00AD3718F1D8BB2BB0FFC4E552C2FB06472224BAD1558DA1C9CF4241C625984D25D12AC101BE983CB82786F5EB08959B2C697AC8294A8627B2E438682B82774580963EA4654196E05B1E842B02B47D59041B821B954580B6076D45C7E81C3A5ED679FC5859D793739EA332EDF5B107B414DE540702AD14E652F8F363D41E94087C04480E7CCA5BD631CA2B6D43E979F6C7E877E98BDBBEFE151DB3D7906B432F66AA1B819DA78ADAD05DF41280AEBCB2351ED006A3096F2EFE0BFB4F5CB2DDBD4E6F445EA19659D21501DACF5B89A08092DDA4C382FC316DD40DE8DCAA4129477DE5652DFB0C7B084B73791AA0093C04489EC83A240BDF11A02BB2842B826959D7231FAB23EB9ACA243FBE347DF6D967CCF2A6E46A40930ED2411C7A71710BDA194073B0F3FBA0C140FA62910B688ABEFAE8A38F4AB9382E5CB8C05EA4E501DA5E37FA5AA0AF1D772501E8CA2B5BE3015DD62D6F3F74167397FE8BB4426585801E7B47674C1FE57857E4CACB7A6D004D616464A1F3A810FA44A741C0EDDBB733DFA37DAAC88296C2947CDE04215AB3D611A009066421F274DF7DF731BF2BA5B2CAA4E3F6D635BF1E3F26B74CFBFBA3D03A1A202360F3E44A0B5A7ABD8AAC6BCA57190B5A5AAE14D0D4BE34B6402E137B17873D84C9DD71FBEDB75708E8EA1E771280AE3C4904A03D04D0349045C1EA3C113CC9E749D11A15B938C8C7CB272D9015D5B97367F600F35491D54ED7A070330A3B9326F21793BF92E04089C2F17EFEF967067947802690F3F3789904688A3D961EE365929B87A029F7584565DA1F2BEBDEE5029A62536910977CB66455D2CFBBEFBE0B2F2FAF5216343FE60CA0EDDB9EEE83BE00DAB46903FBF6A5AF98071F7CF02A401F3E7C182B56ACB04DC4A1496714B54110961E23ABBC7EFDFAA5F4E6BAF16395C788BC3304A0E5E924CD25005D8D80FEF8E38FD974FAF292D447C81F7CCA2B3D8FAC4B0AD5937E8AF2F30882DC5A9503688AF5A5B2ED13019AA0CFCBEDD4A913CB42E5D3C34D7F976E2E4C616CFC5859804E4B4B63EBDDD22C3EFB32A93C3E59A7BC63E59549EBC6C4C7C797F2AD523D49031AE82398D25642D244D114A41D852ED24B822C4D02134F4B972E65BF13A00972B404827D5B906E3CF163D2F3E8D8B163C758F9BC9DA46D687F8CF24BDB5E0A68E931D289EA4D6D43F05EBC78311B7CE589A271A82D28D1DFE9386F277E4C0A61FB6B0A40571EA0EE3E4300BA1A01EDEEC6B42F9F5C1C83060DAAD65967F67E66AA1359AD04037BCB5AAE1EE595C907E7CA2AC7DEA2957B2D91CF7D0A080BBAF2DA0A40D762405714E151F9AE22EF0CFBC13E3AEBF5D75FC7E8D1A3D92CA9AAA4F2CA1C3972240B692B2B25272733F7847440AF2AD716E7B84E0101E8CA6B29005D8B015DF9EE20CE100AB84F0101E8CA6B2B002D005DF95E23CE100A3850805690A09983455A1DF8D23E851A1DBEF8653BB61CBA5CE14CC236F583D89C84FAD1D678734A34812C34C8AFCEADE52E002D002D60231470B9021A9D01BF6D3C84EFD6EC416A665EA9F2553EFE15025A5F5832998B4EF4F351E3F6C4D6B87F586F848704B8BCAE9E5CA000B400B427F74F51B71AAC8046ABC7AF1B0F63C96F3B909557C4965EF0F60B8297B70F5B0258A52E992446B769361940B37C690906A34EC39607A62DEA06DE781DEE1BD2ABCEC1993411801680AEC1081055F77405B43A03D66C3D8A4F566C46A1DE8280B05806E7B2160662F762B140AF2D4061560A60D4606CFFAE187D47578404FA79FAADBAA57E02D002D0A53AD60B2FBCC05671E3891645A28914220905AAAA804E6FC0BFBB4FB1D9BD053A335B02D82730EC6A485B2C30E88A509099C4E03CE68E2EB8E7AE1E08F4AF1B7B1396A5AF00B40074A97E413305690BF8B8B838F6F77DFBF6213333F3AAD986557D58AFC579B4DE35CDC0A3597972122D35BA79F3665BD64F3EF984E93170E04039A78B3C6528406BE66CD8730AEF2F59C72C6982B477406809A46975498316F9E9976C701E795B973AE9D690CA27002D007D15A0F932A574A0AC85766A1A81681123BA27E91A2115DD83FD14715A5294EF7A51D3EEDD93EA4BAB4E12A4DFFB7A1D8A0C1604473580DA2F9841DA6CD423E7CA39580C1A8CBAAD33C6DDD59D456D94EB0AF1A41B73635D04A005A02B05689AFE2CDD3A89A607D3BA1D34FD98AF64C757C12BEF184D7FA6058CC8A2A5A9D43CD17AD634F59BA648DB1FA3C92A044A822C5F5C9FCE23F8F2EBD2BAD4F46F5E26ADBD4CB0A57D086991FDC8C848765D5AE7E2E2C58BB8E1861B6CD7A6C587E8CB81EA4CEB3C376CD8904DD3A615DEA44B7CD209E402E2EB3BD3EFB496344DADA64933A4034D33A775A5F9312A9BD66016092048FFB1F90816AFDA8EEC023D82A21BB2C1C29C2B67A18601FD7BB5C1D4E17DEAACCFD9BE8FD46A405FC9352120AC6401227EF3FAA23C14E5A6635CFF2ED5BA9A5D4D784009AEB4180FCDC2A374E2C409B6D12D2D144FC97E76225FCF81AF97215D6E54EE31AE0B2F5B7A9E54B3B22C613E0D9C8ED16C45BE79009DC72DE1B2CE23C012C079E2D3C6695A7A454BBF4ACBE5E71280F992A3345B927EA7CD5D29D1BFE947BA746B4DE807EEACA334042F334F0B28550CCE753594AE22AD6B35A0690BAC8AD23D77751780B6138840429626ED1AC2D73E96EEC44210E59B0CD0A9B4D810ADB8C701CD77F8A063F680B63FB66BD72EDBBACD949FCAA53C54261D236B9A438EFE4FA0A5414C6E9DD2DFEEBDF75EB6625B5910AE08D074AED4E541F748207516D0F67017802EFB09E42178DFADD98DACDCC23A1D4A57E7007D29351B3B0E9D436E81A64240B74F8847F776D6253545B22A20DD2A8BF6D3A30132FAD4E74B98F22DBAA47AD131CAE3C8BAB60734B912A4ABF211DCF8EA6B748CB669E289E04D10E63BBB48AFCF8FD9FB992B0234B949C865C293B46C672C680168F94F9246A7C71F9B8FE2F2956C4C1C783DC282FDE59F5C4772D64A0BBA8EB49D5B6E530A68BA80FD20A1A32DB66815396E713BB2A0A97CE9B2A5E5DD90D48D51DE605F652D682948D7AF5F8F69D3A631DFB6B0A0DDD2ADCA2D94763FA2088FBA1C4A57E72CE8EAED62B5EB6AF680A61D5A3EFDF453B6EEF2B871E3D83AC763C78E2D75D3B4E03F1D237873570165A0C1383A466B18DB839DD6B4A605F0C99DC11385B2AD5EBD1AB4B6321DE389A04CE0A7813EFA37F7EFF2E3B4EF624580969E479B0ED00EDAB488FDF8F1E3591134E8497E76FA122040F36334B848D7B21F24DCB66D1B033A4FE472A1DD5FFCFCFCAEF25F0B1747ED7A3EAAFB6E84055DDD8A7BF8F50866FEFEFEA596E9E40BD4D322F694A43B93D3EF04263AC621CC8FD3DFE818258ACCE03BBF7009341A0DA48BDF53281BE5A1BFD1319EA4FBF5E9F57AD0CE31D244C709B0748CEACE13BD5C424242D8AFFCBC808000B6BBB8F43E28FA82AE4D0BFC4B8FD1801FF9E2EDC3ECC8E72DDDFC97AEC9973D955E93AE4175A563555D6AD5C3BB8BA89E9B15B001BABAF72773F37D89E2AF81024D9A34C1B973E7AEC195C5258502355F81B262BE15665A171080B1A00085972EC16234D4FC3B1577704D141833660C962D5B764DAE2D2E2A14A8B90A28A00E09464043EBEEF4525033409BCD6664EEDD834BDF2D857F5454CDBD4F5173A18050402850C314B098CDD0E9F468F7F26CE60ABB0AD0E49FBBB26533F4070F2261E4A81A767BA2BA4201A18050A0E62A60282AC2DEB91FA0EDDBEFDAC67F38A4152693C9420319C99B364271E23812460840D7DCA61635170A08056A9A0204E8DD73DE478BD7DF6083DA522B9A019A46EE2F6FF817EAFF4E2161F8C89A767FA2BE4201A18050A0C62A60D01461D7DC0FD06CF66B080F0F679144A52CE8FCFC7C0668EFFFFE43C2F01135F64645C585024201A1404D53802CE85DF3E6A0C9CBAFB065162A00F429240C1D5ED3EE4FD457282014100AD458050C1A0D76CD9F2B03D0A708D0C36AEC8D8A8A0B05840242819AA60003F4827972007D12094304A06B5A038BFA0A05840235570106E80FE7CB00F4C91302D035B79D45CD850242811AA8001B245CF8A14C400F1E52036F515459282014100AD44C059805FDD14219803E71020902D035B39545AD850242811AA90003F4C7B2007D1C0983E459D05F6C3E89E5BBCED648416A4BA5BB3589C2CCFEED11E2E75DE55BCA2CD062E1FAE3D8FCDF952A97214E745E01959712A3BB37C5C49E09552EEC485236E6AF3D8A7319F9552E439CE8BC0271A101987A634BF46A7EF5767B6595CE00FDC947322CE8E3C791307090AC1A26BEF507140AC0C75B212BBFC8E45A050C060B4C6660E5437D111B625DD2B32AE9545A1E262EDE0C2F2F40AD126D59150D5D718E566741427430964CEE53E5E296EF3987796B8FC15B0D2895A22DAB2CA41327D2AAA03A3D705FEF044CE9DD42564906AD16BB3EFD580EA08F2161804C40BFBD1A71D15E78FCBE60599510995CABC0F7BF1762CF613D563E78B3F380FE720B7A77F5C1A05BC59643AE6D25F9A53DFD663612A283B0E45E2701BDEE381E1C1B88668DAC6B5E8B54BD0A24A51A3177713EEEEB458096F73564D06AB0EBB34F6500FAD85124DC3D50D61D25BEFBA700B42CA5DC93C906E8A9373A09E87C4CFC7AAB00B47B9A4976A936404FEC25FB1CFB8CCBF79EC7BCF52704A0ABACA0F327DA00DDB339A6F46A2EAB4066412FFA4C06A08F12A007C82A34F1BDBF04A06529E59E4C3640DF7F83F3805EB24D00DA3DCD24BB5406E8A8202C99D853F6395703FA02E6FD2B005D65015D706209A09B614A4FB980D660D7178BE400FA0812EE9209E8F7FF168076418356B5081BA0A7F4711ED0DF6C1780AE6A43B8E83C1BA0272456B9C4E57B2F60DE8693C282AEB282CE9F6803742201BA99AC02998B63F11772017DB7AC4213DFFF47005A9652EEC95402E8DE2E00F40E0168F73493EC52AD800EC412A7017D4A005AB6EAAECF5802E8A6F2014D511C5F2E9601E823879170974C407FB05600DAF5ED2BBB441BA0EFEBE53CA0BFDD29002D5B79F764B4017AFCF555BEC0F27D17316F830074950574C189A5009DD85456892CCCEEAB2F6500FAF02124DC7997AC4213E7AE178096A5947B32D9003D3911B1C14E84D9A5E763E2D2DD02D0EE6926D9A5DA003DAEBBEC73EC332EDF7F09F336FE272CE82A2BE8FC8936405FDF0453AE6F22AB4006E8255FCB04F41DFD65159A387F8300B42CA5DC93C906E849D72336D8B7CA173995518089DFED1180AEB282AE3991013A32104BC676AD7281CB0F5CC6BC4DA705A0ABACA0F327DA00DDA331A6F4682CAB4016C5F1CD1219803E7410097201BD60A300B42CF9DD93C906E8893D9C07F4B2BD02D0EE6926D9A55A011D8025639C04F4E63302D0B255777D461BA0BB37AA1CA0BFFD4626A06FBF4356AD133FDC24002D4B29F764B2017A4277E701BD7C5F8D0674618106BBB71EC34DB777718FD8D550AA0DD0A3AB7E0FCB0F26615E0D0674DA956C9C3F938CEEBDDA5683E2EEB9442940776F24EB22CC825EFAAD0C401F3C8004B9805EB8B9D280FEEAA3DF90975B68AB74C76E2D70C32D9D65DD84A765D269F5F8FDA72D1836AE2F766E3E82A09000B4696FF539498FB9ABDE2580EE86D820275D1CDFEF7739A0CF9CBA8C3F7EDA72D5ED07870460D23479A19C72B54B49CAC01BCF7D89055F3F5DEE29C70E9D437E6E217AF46967CB43FDD1D575915B67FB7C36408FAAFAF3C000BDE5ACCB2DE84D6BF7E1C0EE53B62ADBB7213D0737F4EB84E0D080AB6EBFA2633CF3FC379763C6ACD1D8BFEB24D6ACDA86E7DEB857B68CF66D48D7EBD1BB2DA2EA85C92EC395196D80EED610532A03E8EF96CA01F47E24DC7ABBACFA267EBCB5D2801E71CBB3A5C43F7AF02CEA378CAE91968FD168C2B9FF9290D0BA21162FFC15317111B87388751698F4982C31AB90C906E87BBA2236C8A70A25584F39955188892B0EB81CD039D9F938F75F32BBC6E7F35761E8D89B111119026F1F35DA769037BA2DF7A6E4007AF5CF5B7125391393A797CC94A5FEE7EABAC8AD7399808E08C092911DAB5A04961F4AC6BCADE75C0E6802684C7C24125A3560752BC82FC289231770FFA383D9EF67FF4B427CC368F8F85C3DBD7CD6C30B3163D628C4C647967B5F04E64EDD5B5609D0C494156BDFB2954D75A167D13FA0EA464B951B00800DD05D1B604AB786B28A6216F4F26532007D80007D9BAC42133FD95625404BC5A44FD3AF3EFA1DDD7AB5B17DD690E03C4D9A7637EE1ADA9BFDCAFF4E0FD4ECF7A7B2BFBDF3F212F6694B292A260C1F7D3B131BFEDA8BC2420DE8E1A363743DFA749A7ECFDBB8E9B62E98FE8C7553DCA71F98C7CA9934F815F6BBFDB1F36752D8DFCBBBDE57AB5EC6BB2F7FC3CE7BFBA5AFE1E5E5053F7F1FD0DF29D1315ECF85EFACC086BFF7B2BF0704FAE2AB55B3593DD352B3917E259B1DA3F30202E54763D8003DAEB39316742126FE78D0E580967622E9434A6DF1D1BB2B589B53DB3FFDCA78D6F6E5B5EFC8F1B7E0E907E7DBDA97972B6DFBF95F3F55CA82961EA3F6A7BE30F3A10530994C080CF2C7BB9FCC40E3E6719876CFDBACCF50FA61C95AAC58B2D6566D7E1EB513F52D3AC6CF93F580543213B3A023FCB164849380DE76DE2D80EED3AF138328253240D6ADD98D944BE9EC0B84F49EF4D00044C784D99E357EFBD959F9080EF167CF07D774F7D6A3ECF01F2BB7324DA97DE918B7A0E3EA47B26394F8F34B7D46FADC53BF98FDD467A0E794AC65FEFC525DE818B52F7FEE795D785F9B347836167E3B933DFBD2E7BE924D5666F65280EE6A7DA1394A0CD0DF2F9701E8FDFBE403FAD3ED4E039A2A4E6F676A78EA007DDADCCFDE7E1CE2FCD8FC37BF67D6CFE6639FB346DCBC6EBFB5F1BE5987C53FBDC8AC583A975C26FD07F7C49BCF7F8537164CBBAA4CB2A20AF2351839E116DC3BF4559C3E71C956E68C49EFE1DEE903F0DFF14BD8B2FE0056EF98C72C8591B7CE6265C6C447300B82EA49293FAF08CF3DB2907D56DB5BD0F6C7BE5CF85BA97A366FD50023C6F763F59CF5BF49CCF2EEDF6306D6EC9CEFA82D6DC76D801EDBC97940FF74A8DA004DD62E694AF74F9FB594A456106F5F3A4660A7B6A076975AC9D23E43E757748C975D96052D3D26ED33D41694DE58301DBC5F90E54D7D66FE574F2128D8F58B4AD9003DBC83EC3E609F71F9A114CCDBEE7E40D375E919A4B6E2EDC4AD647B8BD6DE8266E74C7A0F8F3C3B8A3D8794E8D9E5CFB6F4187F467FF8E7CD522F602A73F2F401ECB92FEB7AFC1867027F46F97348D7A044CF5B59FDA2CA0D20B5A0BBD4C794CA00FA87EF6502BA9F55344729F1F39D6E013435064F6461F5EEDB010468A9E56D0F76E9434A30E51096363EFDDB1ED0D2878D3714019A37309DC3DFEA04D590B040B4EFDC1CF562C35158A0950D68A9FB83E04D1D840025FDE4AE32A0C774446CA0132E8ECC224C5C79B85A015D96BF98204B89ACDD6307CFDA1E7CDE16520893DF31B641146B0BFA74B677716467E641ABD5B3F2664C7C8FF51D4780B6777F507B10A0A53ED16A01F4D0EB1C3D7AE51E5F7EE40AE66DBFE0760BBA22403F30FA0D66E90604F8319F74598026B8F397B33DA0ED7DD004D9AA02BA3C78D3F3C78D21B701BA733CA674A92FAB2D0D3A1D76ADF84106A0F7ED45825C402FDAE51640F7EE5BFA136FFCD4FE78F989CFAE39A069E0E29BCF5683069B6EBDBB3BBAF56CEB19801EDDC17940FF7CE49A027AD7D6A3F879D906D69973730AD0AA6DA30A014DF9785BDC39A427E8E5C9A14F8393BFADD88CD4942C561E7D25D5184087FB63C9D092414C594FB7241303F48E8BD714D0F4727CE7E56FD0B8592CEE1ED61B1FBEB3A2940F5AFA85C4AB2EB5A06B15A03BC7CB6A4206E81F57C80474DF7EB20A4DFC62B7D3803E75FC2236ADDD8F9B6FEF82662DEAB34F9D675F9F68F33BF38AD09B70C4845BD82711F995922FA5B1F38A0AB578F08961080D0FC2A205BFE0E09E53CC1D21D782EE7B47578C9F7A272BF3E3F77F4483C6F5988BA341A3684C7974300C7A233E9BFB333445BA52839B645DFDF0CF5BB2017DE97C2A1E9D359AD593C0B2FECF3DAEB3A047B6776E90902CE85547AF29A02B72719465414B3BA8BD8565EFFE90EBE2209FEA132F8C65835DAB966FC0A7735656BF054D801E52F510B3E54752316FA7FB014D63472BBFFB178D9AC6B028ACB20602C9A7CFBF40A583848E004DCFE153B3C7A345EB86F8FBB71D786DE617A52CE803BB4F62CEEBCBF0C25B931DBA38EE4C7C14CFCC9EC08210E8CBEC9D9796B0F3AAC582EE1487297201ADD561D7CA1F65007AEF1E24DC2C13D05FEEA912A0FBF42BB190FD03FD70C32D9D586350A246FD62C12FB86B68C99AB8770DEB8D1347CEE3AD17BE6650A32880EB8B43A5A8A19AB5AC8FD0B040FCF9EB76D6184545DA4A019ADEF8345897969285479F1B839CAC7CBCF7CAB7E875730706E8837B4FE18917C7C162B660E79623AC9EE4E2B87368EF52803EB2FF0CB31A1E787C28F47AA3ED18758C796F2C43FD46F5583D7FF9611366BE3A810DB4B8C4C531E23AE72CE8AC224CFCE5D83505F41F2BB7E0CCC9CB4C5B6A8BE87A61155AD0D2B02F8A2EA03EC52D687A80776E39CA421DAD9FE2076C16F42FDF6F6483BE6326DFCE069638BCCF9F4EC682777E804AE585F8065158B57C23B3FA1A358DAD5E1747B81F960C7202D04753316FD725B758D0BC5D48531AF0A3F11E7A462849014D2F484AFCD926BF2F85E5D1E0380FA5ABC8C54180EEDEBB1D8A0A34F8FBF79D98F0C05D8C07F485959591CBCAFAF7AFBD3640DFDEED1176BCF5754D70EBDD3D585DF84B9D8CB6D52BB7B081407A0E9B348F6306DD98FECFBBDFC5D1310E533AC5C932769905FDF34F32017D535F5985267EB5B7D280A64F59FEE0D045E21A4431CB599AF80020FF5BEBF64D1019156A1B180C090D44FB2ED69D0A8E1D3A8BCCF45CF66F1F5F6F160D909A9CC9E0479690F501DD6F1BD8931EE3FE447AA02945C786A3651B6B60F9BE9D27405602257EBD0B675370F19C75DFBEC41BAC7E427277505D2A3A46F94E1EBBC05E00AC73ABBCD0F3C6F6AC9EE427250850DAB6F110FBBBDC641B241CDECE7940FF7ADCAD80A6766A9A100F5F3F1F68353A9C3A76D1D686FC7EA5EDCEFB059DD7B0490C8BBC909E476E8CE44BE9EC541AB4B52FB3BC7E415F6C9468509ACAA4FEC8274548DB90974BA182E42A91F60BF27BABD42AB9CD243B1F1B2424400F6C23FB1CFB8CCB8F11A02FBB1CD052BDA5CF1ABFBEB47D793B4ADB903FA3D456A429FD2E7DEEF933CAF5A617A5B47DE93A74ECF0BED3AC1F911B8CF70B7E3DFEFCDAF799DDDBAC515E94384BA4CF9AFD735865F18B4F319C0DBB0000200049444154B44571748CC5948E7201ADC5AE553FCB00F49EDD48B8E96659754CFC7A7FA5012DABE06ACAE4CE019FEAB8051BA087B5456C60D5378D3D95A5C1C4DF4EB815D0D5A1474DBF0603741801BA55956F65F9B134CCDB9DE4724057B94275F0441BA03BC4604A47ABF1E528310BFA97557200BD0B0937CA04F4920302D08E9477E3711BA087B6711ED0BF9F148076635BC929DA06E801D658E3AAA4E5C7D2316F8F007455B473D539A500DD214656B1069D16BB7EFD5506A077EF44429F1B65159AB8F4708D06B4AC9BF4E04C36400F6E85D880AA6F107A2A5B8B89ABFF1380BEC66D6D05B42F96DC296FA3D1B2AABBFC4406E6ED4D1116F4356C4B1BA0AF8BC694F6F564D5C4A0D761D7EFBFCB00F42E02F40DB20A4DFCEE8800B42CA5DC93C906E8412D101BE0848B8300BDE6B400B47B9A4976A90CD0A1046879FBD8950DE84CCCDB27002D5B7437642C05E8EBACE3608E127371ACFE4306A077EE40426F79DBBE272E3F2600ED4879371EB7017A4082F316F45F6705A0DDD856728AB602DA074BEE90B78F5D99803E998979FB5385052D477037E5B101BA5D14A6B48B92751506E83FD7C800F48EED48E8655DFBC2514AFCE18400B42391DC78DC06E8BB9B21D6DF0917478E0E13FF3E2700EDC6B69253B40DD0B7C9DB85A34C409FCAC2BC036902D0720477531E1BA0DB46624ADBF21788925EDEA0D763D75F7FCA0474CF9218E48AEE2171C54901683735B29C626D80BEB3A97316748E1613FFB920002D477437E661800EF1C192DBE4EDC25136A0B331EFA000B41B9BC961D13640B789900F68B2A0FFF95B06A0B76F43825C40FF784A00DA6173B92F830DD0FD9B3809681D26AE1580765F4BC92BD906E85BE52DF25E26A0FF2340A70B0B5A9EE46EC9550AD06D22645D83B938D6FE2303D0DBB62221B1A7AC4213579E168096A5947B32D9007D7B23E701BDFE92B0A0DDD34CB24BB502DA1B4BFAC95B43B84C409FCEC1BC431902D0B255777D461BA05B87634AEB70591760805EBF4E26A07BC8DBF63D71D559016859F2BB27930DD0B73544AC7FD567B69DCAD563E2BF9705A0DDD34CB24BB501FA66792BA09509E833B998773853005AB6EAAECF680374AB304C69256F5717E683FE77BD0C406FDD8284EE3D64D53AF1D7F388085362447FD7AF8D2BAB02753CD3BF3BB43879D68895B7D4771ED01B93715D4B357A75A9FAB2A575BC399CBEFD4FBE2B4042B03796DC246F7A7099803E9B877947B230F0163F663C8954FD0A64649BF1E39A22DCD73214535A86CAAA0003F4C60D3200BD65B36C40F7FFEB1272F46659151099DCA3808F5281E57DE310E357750BFA4C9E1E0F6CBD8242A3C53D9514A5CA56A05D980F3EEF2D6FF6595985AEBA908F3947B2201E4BD992BB25A39702B8BF6528262684C82A9F017AD3461980DEBC0909DDBACB2A746D721132742659794526F728E0E7A5C0AD7101F05729AA7C817C83199B5335C83388976D954574C189D482B17E2ADC10237FDB33FBCB5E2C34625F86165AB378D9BAA049AA5C845A01D0CBB66588BC09640CD05B36CB01F4462474E956E58A891385024201A18050A0720A30406FDB2A03D09B08D05D2B57BAC82D14100A08058402555680017AFB361980DEB801099DBB54F942E244A140752960B158401FF2791919C84A4F8351AF8752A140786C2C82C2C2A152A90085025577FE54D79D88EBD4750518A077EE281FD0050505B8BC750B52BF5C0CB3D100D6F345120A5C73058A3BA2055058CCB098CD5058E81705A05440A150C26CB1300813AE554A6BE402FD9B76C0A1FC2090B3FC4AEB79F4634B02DFD7BC894505A05028E0DBA4099A3CF50C222222A056ABD9DF28294C2693A5A8A808A9A9A9B87CF93272737361341A856C42816BA7004158AF8745A301B45A78E5E6409D9509EFCC4CA87373A0309B411634C1997A2AC19828AD54ABA1B258A0A4F38B13C1D91814047D44240C1191308584C2E2E707859F2FE05BF501B96B278EB8726D528040ECE7E7877AF5EAA17EFDFA080D0D655F7F36409BCD668B4EA76360CECECE06C1DA6412D119B5A913D4847BB1984D306667C3989303537616909509A4A743919101456161097009C83E3E30F8FA41EBED0DEFCC0C98743A1428BDA08B8F4390AF1F7C755AA8345AA8B41A28B5DA52B74F70B6444402111140743D788585C12B2404AA901028BD451C784DE82BB5AD8E3E3E3E08090941585818020202A0542A4B03DA6C3643AFD783404DD6335927220905DCA500EF5FC68202685392A14949863E351586D45418333260CCCC80456FDDF49525A512E6E060988343D88F29240486C040688C4644FCBB0E3ABD1E3941C1D0F4EA8DC0C828F8984D50E7E7C3AB201FCAEC1C78E5E7C12B2F0F8AFC3C40FA75A8544215150D556424D4D1D1F08989856F5C1C7C6362A00EB6C6B0724BC65D5A8872850204646F6F6F10A8A5EE0DD6FFC882A67FB04F46F2D915FF5BC826147087024529C9283C7F1E0567CF409392027D7A3AF4599930E65A37FFB525B274C3C3618E8884392A1A0808802228088AA06078F9FA322BC370603F14EBFE8141A984AE556BF8F7BD0521A1A10CAA068381191D0672931414C0929F0FE4E742999909655626149999405151C9F5140AA80283A08E88807778387CEBD54360B3E60868D4187EB1B1F0F29617D3EA0ECD4499B55B01EAAFF4437DDADE2850588ACD196135D7EE4E70ADEECE505888FCD3FF21F7E851E41C390C436E0E4C4545301615C1623094AE5678382C71F130C5C533382B7DFDA0F4F385CA3F805918F4E3EBEBCBFE6F361991B6E833E84F9D623E65EF21C350AF5367F6A9C8014D5F845AAD967D19D20F8D961B8A8A60D66860D669A1C8CA84322505CAA42480DC2AC5060A7B48BCBCE0E51F0095BF1FBCC32310D8AC1942AF6B8F90D6ADA10E0CBA56728AEBD66205CAFA5AB301BA16DFB7B8B56A5280BFE43569A9C8DAB717D9FBF7A1E0CC19180B0B61319960B11F7CF6F1016262616EDC18A6F8FA4040A075A08F60ECE3C33EF9E887A04CFFE790A68E9C7BFA342E7DB21006F253C7C42062DA2388898B431059D90A05FB1AA4B114B2A4B9354DB02E056C72E9E9F5301A0CCCCFADBC7C09CACB17A138778E457F481301DBFAA34250CB1608EBD819611D3B22A041C3127F61A908916A125D5CA6562B20005DAB9BD73D37C7414CD0351B8D6C902EEFD449E41C3C809CC3875074F162E90B2B14B0D0E71BFD040642D1A4294CF51BC01C5D0F0A5F5F366A4DBE377B20739F1C81D98B2C5A0264B1FBE2C2CA1F91FEC7EFCC1A56F5ED87F80183101919097F7F7FF6A9C8E2A48B7F08D6F443E32B1CD6E4FE90029B8FC110D429AF3239095E17CE4371F9122C3939CCBAA6E8117B70FB444723B463478477EC8CD0B6EDD80B4649A3F05E5EB6903EE1C7764F3FAC0BA50A40D7855676F21E39902946DEA4D1C2585800437E01728F1F43CE9143C83F791246F2F14A93B7372CE4B7F5F165111396F87858E2EBC3121AC6804C3F7C60845BC8DC4A2658D3710232C1563AAA4D7529C8CEC2E90FE723FFC001C0CB0B010F3C8406ED3BB010252A530A44DBCBC40ED8046229B0B91B845BD8DCF236190C0CD0CAD4142BACC962D7E9A0A0414C72D1482C6DA58F0F825AB44448BB760869D90A3E915150F9FB434523F36AEBB66402D64E76C63A76BA00741D6B70B9B7CBAD4F02AF36231DFACC4C14255D46C1850B283C77169AA424E6B6B02502504020CC0101B0909B8106F6222381A8682809522A95CD4DC12DE5B280CCAD643E7022851AD589A09ABA67172E7DB304FA9414A07113D47BE021C4C4C4203030D0666597779FE5019BCAE5C026384BFDD7645DB30147830126AD06484B8322231DA081C6BC5C280A0AA0A01794C48543163459D734C818D8B429FCE3EBC327228241DB9BFCE464610B60CBED8E75369F00749D6DFAD237CEC165D2EBA04B4B83E6CA15145DBA88A2E414689293A0B9920203455A4806D228B2822C624B6808FBBF223C1CA0FF878543EDEDCDDC16DC4AE6BE64FA5D6A2173204BADE4F2C04575D469B5B8F0E30AA4FEF13B2C14EF3C78281ADCDC97CDC0A2807F3E122EA759A503E33C8A89FF5F0A6CEEFEE056361B70341860D4E960C9CB85252B0B168ADBCECD8532271B0AD2C9EE8B42151808DF9858F8C7C7C32F3E1EFE71F12C3AC42F2E1E5EE48B17B096D364752E8F00749D6BF2921B6680B25860282C40C1B97328387B1645172F409B9E067D5616741919304BE391C9EA8B8880393C0216FA090B83323818CAE01078050430284B812CB59009CA04633E4B4A0E90A54DC32DFABC94149CFBF20BE4EDDDC3FCD9C1D36720BE6953E6DEB08F21AD6CD396056CEEBF960E3812A0B90F9BC39BFE4FD129E6DC1C6B485F4EB635A42F3303C8CA2A6D5DD38B2B2C0C3EE164514722A0491304346CC4AC6D5FFAEA10B0AE6CD3D5DAFC02D0B5B669AFBE31E9E73D4D0EC9397A1479278E337785213F1FC6FC3C16FE56CA4AA678E47AF560AE17C306F594814150F8FBC3CBDF1F6A0A6F2B0E7DE36E0B1E69C1FDCCDC8F2C8DF3E435AB8C3F96EA4E904CDBBF0FE7177D06435A1AD0A60D6226DC6B736FD843DF99A6B587B574C091EAC181CDDD1F521F36738768B5301516C24CE184458550A6A6C22B3D0DB89202486646521DD9CB2D3010AAA060665507B76A8DE0962D11D0A00194EAD23E7567EE499C5BF3141080AE796D56A91ADB66ED151522F7C40964EFDF8FEC03FB98854C11182CF4CD7EE66854141BD033366A0C0BF99069504FAD869A42DD24A16F3C26D9DE6D611F785F1520DBDF249BEDAAD1E0D29A3F90BC74295B12C967F418D4EFD587B937E8055119F7466544B49F23207DD1F170BEF2FCD734E8C880ADD382061CD917495626BC2E5D82F2D24520230390FAF269D20245AB50644B501042DA5D87B04E9D11D6A103BC838285755D9986AB057905A06B41239602088594198D309B4CD0A6A723FBE00164EFDB8BFCFF4EB14FF0526E031EFAE6E303456C1CCC8D1AC3D4B021E01FC0DC11F63E64F2F1961769C1A12C1DDC73A5B464B1E6255DC6D9AFBF42C1BEBD40541442C64D408376ED58ECB3B3EE8DAAD6D51ED6F6C0E62E101E1D6203360D389A4C50141640917419CACB97818B17009DAE24A44F522902764093A608EFD205611D3BC13F2E8E59D74AB50A8AE255FC846BA4AAADE8B9E709407B6EDB5458331B94E9D35FA301CDD8A309218517CE23F7D851F64353A94BB92BBC54B0F878036A6F202418888D87393E9EC18E66ED1194A533F6ECDD16DC8F2C0D7DB3ADBAE5C6491A2C7AC36040FA91C338BB601E4C14F6D6AD3BEA0D1884D8C68D59EC33D5DD13922D24B138F6BAAC093357CD70A401478A27D7EBA1484F63E17C484981222F97019B85F4D94DF2A10891E096AD10DCA60D0BE9A3D996E476A2B03E451953863D411B5187CA2B20A67A575EB36B7E06455AE8737260C8C9812E3313F967CF300BB9E8C2056BA445894F814D83869F3F2C01FE405838101BCBDC168A9050781547599435B027755BD803B932BE63578845D0D31616E2D29AD5B8B26C29E0E303BFC14311DBB317A2A2A3AF8A7D76C5355D558674C20CF7A34BDD217CB091FBB0B94F9BAC6B364126ED0A14A9A9B0646640595404057D05D10A7D92681AA5B737029B37476093A6086A9E00DFA8683608A9A6A52BA9FD45AA110A9439D59B2F9674A5508BAD4959D018C552A31ED59AC5338EFDB50508CFCD42784116FC32D3A04DA655E052A0A54127C9C3AAF55221D3DB0FE9F4E31B087368280B81A3F037F8F9C14BA5663F349D9AA22E54DED615B4C8C76C3D669D1CE2A5F482822D8A4F0B87172F1E5E5DEBDB5B006F830E26A5174C5E2A982D66B65646E35FBE05CE9E4672783492FADC0ABFE6AD1010140C259B61E851AD765565AC6E7E9ADDC856232B5ECFDA0CB389A6A45B63B0E92B81A69E1BF4D675438C06EB34749A2064214B3A3B0BCAEC6CB63E76A8B610D1BA2244E98BE06B92ACDF4EF1D7E1E12C7C8F061C8D91F590191C8EECE070E4FB07C1AC28FED2F070BD3CBB355D5B3B6A8A06417EE8533F823D6F5250B3D5ECE86DBD33390BBF5FC842C7D870D75E5D94566905582C2EC5DAA6A6407FFE2C74E7CFC13B3B0321857908D2E4C35FA729B5959339300886C828E8C322A0090D439E8F1FF2BCFD51E0EBCFAC6495DA9B0DF0B1D8646F1F2B8CD5DEF02A9E92AC2C863114927568D9035CFD4F31DDBB3EE932749BD681D656F4EF3F90458EE84E1D47836F3E829A1649EAD403598937C32F3A063EF449AFB0AE0256B39275CB2EF61FDB2C4702B6894D003291CB83AD23A287516F5D3384AC6B82362DC5EAA7D3205857C47EFCF36843832CA833D3A1CCCFB3EE3A539C742A6FE4F907B11F6D781454F10DE0DDB829BC1B3606CD7C64ADECE96FB79AD5B095AEADDE64C6FEA434BCD5BB150B43950E76B31D55A8E1379E4FC5A1423346B76B52E90B88139C53C03649A4B000DA93C7A0FBEF14F417CEB2B591CD05F930D9AD636C51AB610C8B80AE5E0CF451F5D82E2134B00716FE56128F6C8DB8F02D8E4F2640ABA1F252318B53E9A58492C0267963973CA7D50F66AB82144A6746C1F62DC85EFA250B4F0B9BF6187CAEEB84CCEFBF81FEAF3F60F20F80B9FF4084F4EC83B0F00878FBFAD602C0145BD67CA9DFE2DD6208D6F4C35C224603B3AAF5E4DED2E9A1B7ADD0A7835943A17C45405121BC7273E19D7E05DEE9A950A7A5D29649259D931E7EF2550705B1979E4FB304F8346F019FE62DA18E8A622F646B1FB856EDEFDC735453CF2E3218F1FEE68378B76773361BB6D482FD04E8C2C2426C387705C70D2A01E86A6865DBC83FADB6967C19DA13475174601F0C17CEB14F598B5E675D8A536209997D7CA06BD018BAD838E8A26360F60F601690978F2F543EBEF0A14922B4146771289CD587EC0D959AD6B4A091FE92352D6C037BFC5E3DC482620B1A190CC8DDBE05053F7CCBC2D17C060C855FFF01C879F16920330386FA0DA11C320A11AD5A233028987D0DD42A0BB0B8CDB90D2C8DBFA63D16AD6B8810ACADD6359B3443A17CF47FB6A4AA0E26AD967D81C1A0876FF225F8255F86F79564280B0A4AF76E5AD889D62E2137575C3C7CAEEB08BF36EDE09BD04A58D6D5C0017E0902F47B1BF7E38D6E8DD8AE2AA5B6BC2240D3A6B1EBCF26E3A4C9072385055DD234C533ED6C0ECECA828C03963E614D14736C6271B0BA9347A1D9BF17DA83FB61CECAB05D8F3D94C52BBF59542A18C323A18B6F004DC3C6D0474431CB97ADFC563C63CF9BC05CBC14A7756A3501D93A638FBD858BA15CFCB4556397ABDAA5084034953BE7E07E687F5AC696FEB45CD7115EBD6E84F993796C453C43C72EF01E3402016929306EDD04FF9E3720B0F78D564857B67DAA56CD6B731607377787144789306017478130EB9AD6BF2E5E039B7E67BE6C8A773719A1CECC60B0F649BA0475F1D88575853E73699BD9CF0FBEED3AC0AF4B37F8B668C3B605A3303F5A6AB5CACF02FB40A299AB66902BADA6F4C9EA686C0D59D01BF7E3F5CEF5CBDE34363F3F1FFF12A0CDBE18D156B838986390A640275D8621F9125471F150C735280E5F72F4F967B57DC84F489F9E3493CC989106DDF163CC8FAA3F79AC54C81441875C1666B537CC3EBE30C4C4401B5B1FBA9838906FD91A8F6C1DD0F3F6F6818F6FB1DBC2A704C8CC6F45502E8654C94083A3BA5647F7937F0D8BC50AE8ACD3A7A0FB693954278FC1141E01D07A15470EC144BEE8DE37C18FEE75F3BF6C1D0C655434EABDFF91D59F5E237DD1F2F5299DB3B89F4997542D7687988CB49B0C59D9D68D0AB8754DFF27EBDB4481009A42F8A624C1273909EA8C3478513CB6410F2585FA49D75BA1094AF51BC2A74D3BF8B4B90EEA7A3150F8F9B3D98F647997BC142BEA6BD6BA1AD252A13F730AEA060DA18E8967D017EE148000FDC1C67D78AD737DB664EE55BB7A73409F30F962445DB7A0A9C39B4DD09E3C8EDCC51FC3989C04DFEE890899FC109B8A6B75D1493A23B76CC8A2217F714E16CC140277E922F4E7CF407FEE344CA9A940F1483B1B13527BC3E4EF0F939F3F4CC121304446431F6DF527B305EB556A2B907D3894ADAE0BA9852CB5924B8DFCD6602B922C68B2F8B25253A0FD6939BC766F8785E29B556A28755A1849AB464DE17BE6141445855637CF4DFD103E78147C8BD781AED55674792C97B8454843BEE093D57F6D80D140EB6097F65B5BDD21D615FAC898506567C23BED0AD4A92950D11E8E5A0DBC0A0BA1D0EB4A59D74A5A08AB49337893DFBA7E43A8C223A0A490CDB0705BFCB57D1B509DC87D95BDF8136837FC0375424B040D1D0DDFD66DD9649B3AD96692B62440CF910BE8E17519D034384333F00EEF47FEF225305EBCC0769056F5E98BE0C123E01B1A566A8495DC15C6B42B30A5A7C2987A0546B2B82F5F80293909661AD82B4E168582597FC6A06018E9FFA1E130444432178685F6D82B5EE18D222C4A7CC8C551172CFC4DC57E4AAD8D4C837B1EE643AEAA2D582294850123373B0B85BFAD8472D33A2825DB6259945EEC6B83606D080E81B66357F8F6BD0DE131B108A0DD588A17F477BA1E35BD003B7748C9824F46161D422E11F261EBF556DFB56D3BB06277084582786565B2A810554E1603B63A2F976DC22B8D1051F8FA41151307557C7DA81B3686574C2CBC22A3D946BC5E926DC1D8347D9D0E39BFAC8071F5AF5090BBA5452B040E1A09DFB6D7313F785D4E04E8B972007DDCE48BE175D6C5618573D1AE6D285CB502A6CB1761F6F282F6BACEF0EE773B429B25C0DF3F0096DC6C182F5D80E1FC59182F5F84293303A6AC0C9873B26DAE0B66257B7B431F1E69FD098B609116E6A0600664859F1F0B7763B3F6D8564E3ED6752E282E9962948B07F628D2823EDB4B5C173622D7D2FE6C5DEFB9202F0FB91BD741F9D76FF0A2D9749244DA6AEBC5A2B04317285BB743786C3C42C3C3E1439FDD5EE4DBAC596E1DF7376419112236FF7549FCB57D848841AF6510A7F5AF09D84A722715E4C12733033ED95950676740491BF24A1259D7F4E3151109755C7DA81A35818AC2F922A3A1D5E99075EE2CF46BD7C0F7C06E284D2678356A82C0E163E1DFA96B1D734F956E7502F4BC4D325C1C04E8617511D0DC723EB817052BBE8589A6DA9ACDC86DD711BA6E8908F5F5454056069417CEC194960A4B411ECCF9F9B0684AAF6D419FE0BAA87AD090BB22321A165F3F16FEA6A0D0265B7445692B9906F5D80F597F3CD28206F88A5D15B5CE4AAE8848346DDD6C4651413EB2F7EF8162D5F750A5A596FA12D1D48B456EF7DEEC333B242A0AA1E111F0A3CD5DC9075D3CC5D9FDD0ABA157B08F10217708A8AB9BADB1D7B65D6668B20CB9447874089F3CA38399DC1E9A22280B0BA0CEC9826FDA15F8A45D812A37A794750D6F1F288BC3F994E11150346A8A82D070E499CD50EFDD89C09347A1341AA18CAB8FA029D3E1DBA2B5DB16BBF2F4D62240CF9703E863265F0CAD6B80263853F4C0D1832858F635CC17CF5B07088382A08D89876F7616545A0D144603406B224806502C5E2AE8A3A2A1896B80C2D878188343016F6F2829F4CDB738FEB838D282BB2EAC16329FB157126D61756DD742B745659E8EE2B6D06A34C83CFB1F14CBBE82FAC2395602B9890AE2EA233BF146F8356C8CD0C828048784C22FA018CEB53D8AA3323ACACD2B05368DBD14C761B3BD268BF770249788BED87F6D28768710B8597488566B0B0B5515E4C32FE512FCAF24C33B2589C1D796A86D680B342F154CDEDE30F8F94395970B75A135EC4F41BBA64F7F12BE2DDBD4494813A03F940BE821750CD066B309FAD3A790FFF90258922E3BECDAA6804006E482468DA189AD0FB38F759121DBBA16148BCCA22D7C6D6E0B1ADCB3F9908BFDA4D5B1C890C39BF1C00CD65D5334C8A6493A5F7F0AD5B1C3CC6991DBA00932FBDE8EA0E87A088F8C42504828DBED9B74AF5571D01ED226D23544C8F5C736D3B5C560170F38DAE2AFAD96365BF0C968648B3BF9A52621E0E279F85F3A072FDA12CCC17D31483FFC147CEAA0254D805E2807D0478DBE182C13D045855A68B43A0FE94E55AB067542BFF42468BFFA1896CB763B5153589005285478411B1C0A4D7C431451F85B58048B2AA019792A6F8AB690FA90A5037BC5F1C8CC8F4C33B468D69E6BA7D5AAD52A0405FAFDBFBDF3008FA2DAE2F83F7D534880449A020A22F60E4840408AA4808A58F0292A3E8C140141A58874E9080822D828FA0011450445514A22A0204BB161C702811084501292EC6E92F79DBBDC65B26C92BBB39BD9C97BE77E5F3ED89DB97377FE77E63767CE3DE75E9F5EEDC952CACBA3398BEDFA44F4732DEA13B2CE4E934F7FDD2A847F63C591FA8D70AA5922626A26208E6EE4D8589121E94CC0A9E8D6F7F30F0460890847748CF92621A2688DDCBC7C918DE9CFA28535BD5DCA19FACE0D389E7587882CC773F388D01C2334D748C4F1A388CA3A8CC8CCBF6039FE0FA2838A11EEA1DB82292AE4FE47E1A8DF182567EF177F9E8751C70A090E465434196ACE85822B2A04E8F95B147CD0DF7B01E8F90B5663F7DE5F2B6ADBBCDB4B4A105662478FFC9FD0B8F8142CCE99114A95ACA2106CB35BB0BF3802A783C2702A380245C10485B0B3E9D261622E5EE79F73404F264C0867C5390772A5E8D0A07E2D0C7AF21EC4C645EB3EFEB17F4EE2B537D762FF1F87751FC3AF15455C6F311CB6025C6ACB46883D1FDF144522343C122111D10809A389F94344B243A0D292AFBBB6319EEC77B75F4FDB1F07FBF6DBDFB1EC9D0D3876FC5C04913F8E5BFA189423E09C42C439F993336780FA4C84F8151789BFE2624A8EB10BAB3BB8D88ED8E242C4C2817A4185681B968F8B424A4FCA46C7B321083F86D4C0A7E117232784E658A1368C7F00FBAA595C6C34BA776B83962DAF563A14017A812AA0EFBC522D5125ADEF74444706E186ABAA66880C5D5821B602D4CF3B826A79271173261FE1793658F21D08B39DCBAC729400C7118AC325E13858AD06F29BD4454854C4D9013D9A45CD99C156FA35BBF22FAA5FFEB023FB583126BF9086F8F838A50BC1D34E070E6663C2C425A8573B048DEA53E240E08B00344D689F9F87429B4DACE8425993A194DA7E16CE81FA955FED29142EAC97660E0CD44F28B3DD0D9BAC7877E5665CD3340C71D58C9A40EA9C61730ED6CE5C0211DE576043C48F99B830EF24EAA21009410E846A6E0F7B6810F2A3C2608B0E437E4C148E45554776543C0A23AAE6245879F925D8F3830D5D5313D1B54B2BA56B8400FDEA56450BFA0E45403FD1773AEAD50AC1E07F3B97E1A94AC519C85F8282FC429C3A91879339A75178E20C824F1620F474212CB93644E6D91193E780E58C1D4167AFC1E2F82814F5B809A1B5AA39012DE07CEECC8DF485AEF8280FD6EF6C98E42BA00F64E385494BD0FAE608DCD9292AE0DDE87C9DA68845070A0B9C596F1476181E118AD050E703D1489DDD051935F3048282C331DB8480DEB8D18A77DFDB8C86E9E67E00001894494441543EFF8A41E3866AAFD7FEECF052EB38163B23721C874F2274F92E716F099B3B0828B484222F260C6762C2504070AE168E92B84884D78C415C8D18C4C5452322325C844D06B2AFF5689379C481D90B4FA38B97807E4D05D0DF392CE8AA08E8BEFF0380B6DB1CC8CF2F407E5E210AF269E219FAA3D84F3B82CFD81156E84044810331A76C88CE73A0A44E2C42DA5C0A4B02A56007F6E291807EC147401F3C908D892602B4B889CF3E4045F85709101C1C24FE020D67FA6D12D0334D08E84D1BAD581940406B812616277014A3202717451B7F4648E649E4C685233736028591A1B05B425014158E104B1822C2C3106E0983253202515116444653D62C256605F661EC0BA0535313D145D1822EB03BF0BA0AA0BFF502D0FDAA38A0497CB2A2C50ACD8E22D8ED34E94C110A690E8342BBB0DE68E0ACC85E04388A10161484A8B868C4D58A4374B5489735A7A713FD5147027A828F803E70201B934D0868A911DDE8668A7891807ED1A4807ECF4480A6FB8906A04F669D405E4E2EECF4B619162CDE88222268D2AF3084478489C1B4F070E71B122D18E15C34422E1251F9EE427FDC8FF218D2822640A72A029A5C1C6F2A01DA6E4117450BBA7FBFAAEBE2D07608419ACCB44F567F89C399FFE0A1B414016CBAB808D0B6429AC7C019D369B1842326360A9648CAF80BEC1A7812D0E327F8E683260B7AF264F3B838CABA59A86F263DB70873973CEBCFFBC9EB634940CF78D17C3EE84D9BAC78DF4480A6689282021B724F9E41C1D9882FB110B18073A8B09245886AA8762A5C67975435D7863BA05308D0A9EA3EE885DB147CD0DFD82D485504F4804A06F4BB6F6DC0E2F96B111DED0C679AB3E419D4BD30017BBEFE19C3FBBF5C2A72416EA3FDD67DB00D2F4F7BF7BC7A15DD89542F2BF3181EEDD75500BB5864173AE7DFA50B8D404E6E0DBAB008CEDA550F2A3A76656C97801E37210D357D1824CC3C908D293A004DC0ECD9750C6AD4AC264E6FE088FBD1B2EDB5429B76D73C810B6AD7709D76EF4177A1437233B14D3C045347A16682736053BBAD3C9DCC06E869260474BAC9002DDD1CE44A74D00AE6414102C602CAAEF0D3B3095A5578922FED752B2DE8E4D444A428029A5C1C8B54019D72855A14C7C0FE956B4113A0A9DCF77047F1EFAD573E8E2DFB5E1780DEB2710F068EE8E1D265C023D3D16748775C755D2301E8DCD3F9E7D52BEFE63F7DEA8CB0A063AA4522A59BF3A9F7CDAE5FE0B0533C69096AC4C7A2C125755C3E50BA9608DADFEDFEADD4619B5ED550C43F1A5124A0C712A06BEA8FE2C83C988DA93A013D67F20A4C7EB9BF385DEA83E726F5120FD17B3B0EC7CA0D535C32BCFED26A5C7E7543DCDAE1060168AD253CE2C97902EE54AFBC427D4E7D2FFB7DFFAF993899E3CC44A3D764EA7BF7F2EDAE5F4BC504D7B930BEC2762AEA3B69414F9D613E0B3A7DB315AB4C6241938E72C057C651D377EEF3CA54554BB9ACEBC405E8944424AB02DAE1C0621540EFB55BA00AE8412602348925A1A007D074E313A00930543E5BBB1D5347BF853BEF6B233E47464508EB9020202FA8158B3FC391C3C7C5F61FBED92F1217464C7CB494E558D1CDEECB7609E831E37DB4A00F66635A25035ADB3F7A01AD85FEDE9D3F63D60BCBD1B8E945A85E23465864D437ED3ADFE49294FAF0E77D7F8BD8DCEC2339F8F3F7C31830F43EB4B8552D36B5ACBE91809E6246406FB2E283F70317C5519666DAE88EFF3520BB9FB30474923780B63BB0E44B0517C71EBB05C98A16F4600301BDF895B578F3E535655AD065017AD9C2F5983FE33D51AFBCE20EE85E778F47FBA49BD1332D455413EE8F43C7F058FF3B5C87496E31109FEC98233E2F9CB70675EAC5BBAC6F5FC0AB5A57027A941F003DC347407FB16137664F5C8E79FF19E6D1822E0BD0546FDEF4F7307BE1900A2D5B2DA0E74C7E0794C94A6F4DD56B563BCF2AA7F6A80FE72C7E06D562A384E5AD7D00AB6AEC693F023482C331D98480CED864C56A1302DA17BDAB5A5D09E8CE29894852B5A0ED0EBCAD0AE82445400F3100D01FBFBF15F5EA5F809D5FEEC398E9BDC52BB22717873BA0572CFE5CD4A37D474EEE25EA51D9B5FD2711FBDCEAB6EB4AF5BB27405F50ABBA184DA6927DF8385AB5BFCE94807EDE0F807E5127A0FB3E3005575C7B09C8DD90D22D11F73FD249844AB9BB38DC01FDF8BD1371CD8D978A7AF4207CA44FAAA847EE0E59BA746F5DAA9FDC01FDFDDEFD88BFC0E9DA292CA089E71DA506102B1BD0934C08E82F18D001E7B916D09DBD00F47F5400BDDB6E41D2E56A3EE8A79FAC7C1FF43F4772D0A94B0B217A932B1A887F5500FDE76F87CEABF7D3F77F62E4A0F90222D2AF2D7BD313A09F1AF900A2A29CCBD253A1412D0904FADCF6EA3434BAEC22B1EDD60ED7E39E073B20B6BAFE946B6FAF2C69418F1CE7BB8B63E614EFA338C8553179E4620C18769FF8E91736A8E5F2BF5704E8514F2DC0B0F10F8B7A752F4A404C356782CCAF3F3AE743F9FCA31D48A85DA3543FB903BA76BD78DCD8BCA94BB6C8280B2E6A58CBF599004D83BC34A776C34BEAA0EFD3DD41757C2DD2829E38DD7C3EE82F365BF1215BD0BE76B14FF525A06F4F4944E714B5280E1A245CFA95828B8300DD5911D0CF18006852CA134CDD0709E50022EDEFEE83D6AA5DD6364F80FEEDA703E7B946C8C27BAC7F57F1B0D0BA38DC7BB4BC6D3EF5BEA6B204F4737E00F42C9D80D60E126ACFCB1DD0DA814095680CF701623AB63BA057BEBD110BDF1FE57A70BBF7BDD68276D7BCBC6D15F58F04F40B2605F41A0674455D58A9DBB580BEDD0B402F5301F42EBB05B73755B3A0870EA85C0BFAE3555B8590A977B72E25280DC88D7DFAB552DF692306D2D7EF425E5EFE79F5CA83371DF3930FB6E18921DD85CF92CAA3778D455EAE333D5500E2E18EF8F3F743B8AF67475C7C693DF17A3EACEF5CD7F6071F4F466AB756220C8FEA2E5E3DB6522F0409E811E3D250C387288E4399D998AD03D0D95939220C72E838A725EC0E68EDE767C7F544F3565789AFA8DE2BD35762EC8B69E7D573388AF055C6B7F8FDE783CE70474D79A2C7244C9ADBDFF516336DCC5BD8B96D9F6B0F314878FB4DAEBEFF27FB0486F49E85FC33CE19175BB4BECAD5BFCF3EF192685FCF8C7412D0E3A799CF82DE9A6E4520009D73EC94087D3DFECF29D44C882DD54F957A1398F0E012D09D9213D14911D0850E07962B01DA664127450B7A582503DADFDA5328DDD2373E11376CAFFE5D51BD86337E57164F0381E5FD06772B9942C7EEEDD9A19445E7EF73D01E4F027AF8D834D4F0210EFAD0C16CBC34D57B1747659CDB86755F63E91B9F62E0F0FB85CBA4569D73B1D42A96B7F637B95BC9DEF66F59E727013DCE8C80DE6CC5DA55C646711CFC2B1BEF2C5A8F5EFDEF100FCF63474F8AFB8CC22169DBD123392E296F68DE14741FCAF048DA264353698A857DDFEC2F25BBDC46061485B9D25BADBC2EC865291FBE141E2B5DA0DAF04BD91ED5A37249937AE7DDF7FEBE8E25A03B7A0368BB03EF6C57707158BD00F4F02A06E8BFF61F16373F95EE0FB547D32B1BFA04E8A9A39688812E59FEFE230BDD7AB4F38B9F53E5A291801EE623A00F9B08D0F49093A5636A7397D54DDF790BE837E67E88DA756B9E5DA710C2BA6BD8A88E6BC05845634FFB48408F3529A03F3218D0145143209403F152331A079A33658548F4AA5D375E44D14C98D5474C86F4F66BEB70C5359708781384BB3FD81EAB5764B800BDEFBB3F109F108BE726F612F75397C4C178B84FAA00345D1714563969E4225C7BE3A5221B91004D6F4F140EFBD9DA1D3879C2191F4FE3481FBDBF55D42BEBBED77B1D94554F0BE88E8A1634F9A0DF55057447450B7A44150374451D411714CD1BE029E1C1535D4A035FFD4E866B53F3C42B85EBC3A822013DD40F809E63120BBA3CEDF272F3854B431BEB5C91D6ABDF4987CDE64CD3BFB871DD52C0AFA86E59DB25A0C79810D0DB365B611640D338C2DE9DBFA0FFB3F708AB973EAF7C6B83C835A090594A4EBAEC8A06221C72D1AAD1E78D3168A19FD27210868E7DD8D5F734A651BF612D91854AF378C831244A446A72797DD7C3C2DB87BADE6B425B4F02BA437222BC01F44A1540EFB459D051D107FDDCC0CAF541FB43ACFFE56348403F4B80F6C1074D16F4DC69E670715485FE92801E3DD57C3EE86DE9567C6C120BBAAC815E02B476905F05D09E069DE9812DC710C862BEA8412D3CD83B091F2C4F170964A3A7F51613FE7FBA663B766CF91E1D529AA1634AF34ABFC4B480EE90AC1EC5F1DE0E05170701BA8322A04732A02BBDB3CB6B4002FA9931BEF9A009D02F33A095FB52027A944901BDAE8A02FAB6EBFAE0E2C6CE37D04EA9CD71C77D6D5CE1979E004DAE8E0617D776F51BAD2A44EE904307FF41DEE93398396119E62F1B2E129A32FFCEC6964D7B71FDCD97E1C616972BF7B59E1D25A0DB2727C21B40BFAF02E8AFBD00F4F30C683DFDE7B73A12D04FFB01D0F318D0CAFD2201FDBC0901FD65BA1546039A9284268E58245C1904C823878EE1C509CB7073CB2BF0EAAC559830BB0F12DB5E2BC25229DEBD2C0BBA7B876158FCC118D10F1116E714A4B27802F4AEED3F62D5E6692E88BB77A0FB203E65FB6ADD1FCA1DEEE58E5A40B7F7C2825EA502E81D8516DCA668418F1914581707AD8442E174B2D0C08176D4DF4B5D3DEEEE29E142EE6844ACB38A053D78741AAAFB10C59175301BF3A7FBD7C541A174B22F643FD1EC76349B1D85D2D1E010CD52E89ED823B7D179934544AFB0142E4759829E2653D26EA32880FC3305E78DD297D7877AAE1109E81153CCE7E2D89E6EC5271F181BC52135ECF7D0541CCDCAC105756AE095FF0C135FD3140D1FAFDAE69299C261292263E7B61F5C619414F238FDD541E27B6DF82CF997DB77BE5984ADD2B1E531E5C1A81ECDAF220B0D1252DBE4E7166DAF1E23C264FB3F34557CA63059F79C0A3DFD5F511D09E8764989B84D11D0857607567FADE0E22040B75304F4D800039A468FAD5FFD284685A9D0D35926915424A2EAF6AA00E8A7FC00E8057E06F49D6D9EC6AC3787A051930B21FB893E5318160DDCDCD769840849D4CE48487D42BE49E9BB6CD1FA6A74B9A73506FF7B961885F7349F0AF92FE5B6B2E6DBA82C400F3729A03F0D10A055EFA9B2F6F36425FBFB7EF6F537AAD4D702BA9D1780FE5005D0DB0B2D68AB08E8F12600B476A4F744CE69BCB5E063116E73ED4D4DC4BC1BF44AB375F35EB18C0E8DFE535CE6B7BBCFAD44DE29B585784253ECE68EADDFBBF46F7DDBF5C2BAD35E349486FCEBD9701DAA3773C252D196AFB3A3A974BAA77DA48B63A01F00FD9A9F01FDFC53F3C572474F3CD54D845A757BA09D6B647DF9A2F57865FA7B689678A5887796912F14A7FCC7AF87D07FE8BDE27429DDBB41A33A98F2FC12D18FF49AAC8DE0A0FEA5C996562DDBEC9A44CBD3844833C6BE2DDAF6573F91055D121C8E612604F48E742BD6575140533F5DA9993296AE857B1E6A6F58D8AADEFBD0BD9E0474DBA444B4F502D06B5500FD9517809E60324093505A2B8A42712896B2E60571C2BAA6F932283599C2E32894EEC3151948BE2B110FF64EC6DC292B047C699F8DEB76E286669761C0881E6262797A2D2338D320832C54C75668C77303E6056C850F09E8017E00F4EB7E063459C9CFA4BD040A7BA242206ED8A8AEF83FB986E875935E69C94A769FEFDBFD82F734CA4FFBC8B4FBC7BA4F2817D0FE0EB592801E6A52407F5645014D092C2BDF76BA27A8D0020FF29AF1173C8D388E04741B2F01FD910AA0BF2CB4A08DA2053DB10A00FAFA669789C99124BC656A32C565EEDEF11386F59B8BB7D68C1329DB23A73C269257F67DEBF485BDF9FE683C76F77801684F596874419901D0FD7D04F49183D978C3CF80A61903972CF858A4C3CBAC407973C8B792B21664280BD0EBD76EC7DFFBB3F0F8A0BB44F201B59174674B24B7181410403F6342407F9D6EC5E75514D046C0D3883624A06F4D4A441B2F2CE875AA80BE5511D093AA00A0B53E2C4F3E4AB2E616AE1A7DDE5A77324D58029A06BADE5BBA115B36EEC5B817D344DAA95900DDCF0F807ED3CF80A6C13B5A458532F7126A55C7ED5D6F11F706E99A4B96D28629C2D7BC7CE17A8C9AFA6F11FAA49DF04A7B23490B5A6B096BB3D7B42BED787271549605FDB44901BD81016D0487CB6C430BE85BBD00F4272A80DE566841EBCBD4264B9AF25460A3383CA598BABB38FC0568EA0D8A1220B7C6D03E7330FDD581B46CA1292CE8BEA3D310E743A2CA91CC6C2CF233A0098AE44EA231026DA815C19456D4888EB1880C3FD273D2DC7EC247AC02E80792468A745E5A717DDCCCB452F5CA1A24AC2C400F9E6CBE288E9D19566C64409B02D0AD9312D13A492D5185A238D6EF5488E2D85A68412B45404F3301A02FBFFA62B11415150ADD5A307315A6CD1F203E6BA706A5CFB43EDD90C7678BC9E1EFEAD10E4FF69C26328E96AC1E839E778C1193C30F19F520260C7D037BADBF8818CB5EDD9C2E0E5AF4925627A6623640F7199D86581F009D9D998DC57E0434BD59C8370FD28B1EA4B29F526E71BA236491DB28E98016E17DF88E316255162A8BE77F849B6EB95C58E2940A2CDD54031F9D8101C3EFF7B856E59A955F883E9485E668A09570FCB91AB8F4410F3221A0AD19566C62409B02D0AD9212D14A11D036BB039FA9007A4BA105898A809E116040D3725634D22F4BC20571229E52161AF8BBF3FEB6C21D21CBD64D7BC53C00B2CC7B7BA898649E66C6A2350865916E0C19A3A9AD27B77DB7E737AC5BB50DC3263C12900B420E12A6F901D06FF911D0E492D0F6857B3F49D8926872DBF40503852B845C23CFF6712E23F640AFDB856B64CC9057316EE613E23BD94F721B7D275D20EE7D48DBA87F694C81067EFDD54F12D0034C08E85D19566C664007E47E948D4A174762522212BD00F4065540DFD244CDC5317370605D1C01ED85B3D108724DC240FC1609E8DEA37CB3A08F6666E3ED19FE4D5409841E65B5591971D02541E1E86F4240EFCEB0227D75601255CCD4E781FC2D12D02D3B27A2A52AA01D0E6C5201F4170516DCA26841CF6240BB168D0DC4052101FDD828DF7CD0E4E258CA8056EE4261410785A39F49019DC18056EECBCAD85102FA162F004D3EE874AB820F3AA3C082168A807E69F074445A827055937339F39571C2663DE6E71FEF0025AC04AAFC71D0816339C5E8E5070B7AD98C25A8151F8C06F54203753A95D66EFA67BB444291BFCA9E1F6C08098F405F13027A4F86155FACDE8CA68D42512D3AD85FA7CCC7F1428133F925D8F79B1D2D3A27E216550BDAEE40860AA0D30B2C68AEE8E2583A6D218E671DF3E2A7F3AEFE562022D2827F3DFB0862AAC7EA3E744EF631AC5EB012B9274EEB3EC6FF5BC5EA0935D0F3B9DEA63BED9FAC3F20E3838DB0E53B97F9E2121805424243D132B9356EB8AD99D20FB0391CD8A20AE8668A80B615DA50525CACF40378A7CA522008E1967011BAA6B7501FDA6D769450DC2017250582828285EE662B458E2238ECB44001F76560FB2608A161212050AB148AE2D8BA4BC1C5B1B9C0829B1401ADD230EFC30AB002AC002B50BE02345BE3972A80DE4480BE542D8A834567055801568015F05D0172716CAF08D0E9FB0F634D4E092EA95BCBF716F908AC002BC00AB0024A0A388A8A91F9D79F187FE345888F8F47585898CB6D1954545454929B9B8B1F0E1CC6C63FB270A6A000C5EC5B561296776205580156C0570508C80D6AC6A16BD3FAA859B3E6F980CECFCFC7D1A3479195958553A74E89A5D279D0C857D9B93E2BC00AB002E52B4003FC91919148484840DDBA75111B1B8BD0D0D073167471717189DD6E475E5E9E8073015BD07C4DB102AC002B6098026441C7C4C408385B2C1601671999154480266BD9E170883F726FB0F56C58DF7043AC002BF07FAC80043159CDF4476BAB6AC366F507D0FE1F8BCAA7CE0AB002AC80110A30A08D5099DB60055801564087020C681DA2711556801560058C5080016D84CADC062BC00AB0023A146040EB108DABB002AC002B6084020C682354E6365801568015D0A100035A87685C851560055801231460401BA132B7C10AB002AC800E0518D03A44E32AAC002BC00A18A10003DA0895B90D56801560057428C080D6211A576105580156C0080518D046A8CC6DB002AC002BA0430106B40ED1B80A2BC00AB0024628C0803642656E8315600558011D0A30A07588C655580156801530420106B4112A731BAC002BC00AE8508001AD4334AEC20AB002AC80110A30A08D5099DB60055801564087020C681DA2711556801560058C5080016D84CADC062BC00AB0023A146040EB108DABB002AC002B6084020C682354E6365801568015D0A100035A87685C851560055801231460401BA132B7C10AB002AC800E0518D03A44E32AAC002BC00A18A10003DA0895B90D56801560057428C080D6211A576105580156C0080518D046A8CC6DB002AC002BA0430106B40ED1B80A2BC00AB0024628C0803642656E8315600558011D0A30A07588C655580156801530420106B4112A731BAC002BC00AE8508001AD4334AEC20AB002AC80110A30A08D5099DB60055801564087020C681DA2711556801560058C5080016D84CADC062BC00AB0023A146040EB108DABB002AC002B6084020C682354E6365801568015D0A100035A87685C851560055801231460401BA132B7C10AB002AC800E0518D03A44E32AAC002BC00A18A10003DA0895B90D56801560057428C080D6211A576105580156C0080518D046A8CC6DB002AC002BA0430106B40ED1B80A2BC00AB0024628C0803642656E8315600558011D0AFC1776FEC638DDA41D8D0000000049454E44AE426082 , 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1), - (6, 'Virtual Infrastructure Deployment', 'images/cache/portal-345993588_92550.png', NULL, NULL, 'http://vid.api.simpledemo.openecomp.org:8080/vid/vidhome.htm', NULL, 'http://vid.api.simpledemo.openecomp.org:8080/vid/api', '?', '?', NULL, 'okYTaDrhzibcbGVq5mjkVQ==', 'N', 'Y', 0x89504E470D0A1A0A0000000D49484452000001680000012C0806000000EE2C29AF0000200049444154785EED9D079855C5F987BFA54957AA882E282088051535D244EC0876A3222A2AC1462C11A3F2370A0AA8281883062504BB066C815829828A801A4540015B0451A42ABDB848F93FBF91B3DE7B97652B7BCFCCBEF33CFBECEEBDE7CC7CF37E737E3367CECC77328C040108400002B12490114BAB300A02108000040C81A61140000210882901043AA68EC12C0840000208346D00021080404C0920D031750C664100021040A0690310800004624A00818EA963300B02108000024D1B8000042010530208744C1D8359108000041068DA0004200081981240A063EA18CC820004208040D30620000108C49400021D53C7601604200001049A360001084020A60410E8983A06B32000010820D0B4010840000231258040C7D43198050108400081A60D40000210882901043AA68EC12C0840000208346D00021080404C0920D031750C664100021040A0690310800004624A00818EA963300B02108000024D1B8000042010530208744C1D8359108000041068DA0004200081981240A063EA18CC820004208040D30620000108C49400021D53C7601604200001049A360001084020A60410E8983A06B32000010820D0B4010840000231258040C7D43198050108400081A60D40000210882901043AA68EC12C0840000208346D00021080404C0920D031750C664100021040A0690310800004624A00818EA963300B02108000024D1B8000042010530208744C1D8359108000041068DA0004200081981240A063EA18CC820004208040D30620000108C49400021D53C7601604200001049A360001084020A60410E8983A06B32000010820D0B4010840000231258040C7D43198050108400081A60D40000210882901043AA68EC12C0840000208346D00021080404C0920D031750C664100021040A0690310800004624A00818EA963300B02108000024D1B8000042010530208744C1D8359108000041068DA0004200081981240A063EA18CC820004208040D30620000108C49400021D53C7601604200001049A360001084020A60410E8983A06B32000010820D0B4010840000231258040C7D43198050108400081A60D40000210882901043AA68EC12C0840000208346D00021080404C0920D031750C6641000210C8D8B871E33630400002108040FC08646CDBB6ADD408F4EAD5ABAD4C9932F1F3021641000210D801815225D04B962CB12A55AAD010200001087841A05409F40F3FFC60D5AB57F7C23118090108400081A60D40000210882901043AA68EC12C084000024902FDD4B41FECE5E94B774AA5FF59FBDBA199D5BC24C71487976EC36808945A024902FDE0846FEDB559CB770AA3EF194DAC7DD31A5E0243A0BD741B4643A0D412608AA3D4BA9E8A43000271279024D0CFBCBFC89EFF68719E531C8737F073250423E8B83747EC83000412092409F490B716D82B3397ED94D05D6736B176FB33C5413382000420B0AB0930C5B1AB09933F0420008142124812E827A7FE602F7EBC64A759DD7966133B6ADFDD0B595C7A4F638A23BDFC291D021028188124817E78E2773666C6CE97D9F53BAB89B56DC21447C1307334042000818213608AA3E0CC3803021080408910C816E8A5ABB7D9C4CFCD14DA2EA420D1671E9E615576FB9525531C25D2A628040210282602D9023DFA13B38F977F61AD1BD6B41E2FCDB46F7B9F6815CBF91F9AF38BC56607EC854017537B211B0840A004092409F46D6FBF6DB37B75B0F7E6AF70E2DCAAC16F73CD0FCD5A6D0BD6FE6255CB97B116B52AD8B94DAA5AB709CBECE993EADAFC35BF58BDCAE5EC9C3796D898CEF56CF20F1BEDB87D2AD947CBB2AC56C5B2A688D3B52A95B1B92B3659FBFA954AB07A66087489E2A6300840A018092409F4F1076EB6BAFDC759A5F2656DD59D1D938A397FEC12CBAC5A2E49A02F1CBBD44676DC3349A05BD4AE60F7B5A965D316FF6C99D5CAD9F8051B6CE2C28DF6E3CF5BAC41B57236E2F8BAC5687EDE5921D07933E2080840209E049204FAEC96664F4DFFDE2E3D223387B50BD76DB6BA95CBDAC08F57DA21B52A58AF293FD9ECAE0DAC4AF90C27D07B552967E7BFB9C4469C50D75ABFB0D06675CDB455595B6DC2771BECED1F7EB6EE0756B36BDF596EB32F6A50A22410E812C54D611080403112C821D0C598772CB242A063E1068C8000040A41205BA0376C321BF34978AF273CEFA80C2B5FF65732ACE228440BE1140840206D0458079D36F4140C01084060E70410685A48A924F0B7BFFDCD264F9E6C071E78A0DD7CF3CDB6FBEEC51FBE60CB962D76DE79E7D9BFFFFDEF9D32D6CB8C7BF6EC99744C6EE75C73CD3576EFBDF7DA1E7BECB1C33C478F1E6D679F7DB6FBEEA1871EB2F6EDDBDB61871D56641F47BC0E3AE820EBDDBB77915FBE7CE9A597DA3FFFF94FAB50A142A16D7BE38D371C87366DDA14288F49932659870E1DAC4C99F82F2346A00BE45A0E0E81409F3E7DAC65CB9676D65967D9BA75EB6CFAF4E976ECB1C7167BD50A22D02FBFFCB2FDF18F7FCCD38665CB96599D3A752C2363C7DBC9CE39E79CEC0E61EDDAB556B162452B5FBE7C9EF9EEEC80FBEFBFDF0E3FFC703BE9A4934C79CE9831C3097F51D2A2458BAC7EFDFA45C9C20A2BD037DD74930D1C38B0C85C8A647C3E4F46A0F3098AC3C22170C71D77B851D7A9A79E9A542909EAC5175FEC8443CF2B9E7BEE392B5BB6AC1BDDEA77B972E56CF3E6CDF6F0C30FDBFAF5EBEDAEBBEE7202DFAA552BEBD6AD9BFDE52F7F7102B66DDB36AB51A386F5EDDBD78DA03552DBBA75AB13CB7FFDEB5F39406A04BD2381D6B923478E74E75F79E5953662C40827E283070F769FA9CC7DF6D9C724DACF3CF38C4978E6CF9F6FFBEDB79FDD77DF7DF6EAABAF5AD3A64D4DA3DECB2EBBCCD925FBAA54A9E28E57521DDF7BEF3D67DB01071C601D3B76B47DF7DD37C946E5D5BA75EB1CA22C5E5DBA74B1CCCC4CFBEEBBEFEC85175E70769D7BEEB956A95225AB5BB7AEF5E8D1C3A64D9BE67E2BA903515D2FB9E4127BEAA9A71CD7E1C387DBCC9933DD685A9DC9A04183ECDB6FBFB5FEFDFB5BF5EAD5DDDDCD9D77DE99835BA2402B5FD5F5ABAFBE72C7457720BD7AF572EC656BDBB66DEDC71F7FB42953A6381FAB8356C7F3873FFCC1715CBD7AB5FDE94F7FB2430E39C4EEB9E71EEBDCB9B3F3B1923AA9264D9AB8BF2FBAE8225737B50171555B12C70F3EF8C0B50F7D76F4D147DBFFFEF73FBBFBEEBB5D5B58BC78B1F3654113025D50621C1F0481010306D8279F7CE244FA8A2BAE7075BAFAEAAB9DF84A2474B10E1B36CC6EBDF5D6A4FA5E78E185EE62DCB871A31364DDFA2B49602444895315A9236809EA934F3E99E3D65A02AD119DC44249827AE491473AE1FDEB5FFF6AFA5E2226018B047ADCB8714E647EF7BBDF25D9973882D6744724D0BFFFFDEFEDC5175F74236FD557222FE1934D4F3FFDB4CBE3EF7FFFBB9D76DA6939045ADF492C35724EE475DD75D7D99021435C7D366DDA6462DAAF5F3F27D012612589A3044DE2A4CE4CE22BD1534728811647899FCE4B4C3A479CA34EA45DBB76D6B061C3A46352055A9D9F3A9A7FFCE31F6E0AA359B366AE43489D2EDAD9085A763DFBECB34EA035FD251157DD24DC8F3CF288ABA33A4EE51D2509F5D0A143ED965B6EC916707580127E7D5EB972E5425F330874A1D171620804341FA90B5BA3535DCCA973BB8F3FFEB89BA3D6A8F3DA6BAF35895224D0121A898B92845DA3494D3F442955A06FB8E1062750A9F3AEB98DA0958FA663F6DA6B2FD3DCB35224D01AA15E70C1056E54DCBD7B7737F255CA4DA0BB76ED9A3D7A57672091AE55AB961B753FF0C003EEDC51A346B9BB81D41174A29F5F7FFD75577F3153F9E2122509B538260AB4BE133795A10E43234B8DF023811E3F7EBCEB104F3CF1C4A4E6A40E45A367A568547AFCF1C7EF54A0D529A8037AE79D77DCB99AC67AEDB5D74C3EDC73CF3D9DC0EAFB4481163FD5435C0F3DF450676B24D09A27DF7BEFBD5D99E2A539F3D4BAE93BDD81A8038DA6927497F2C4134FB8CEE2FCF3CF7777130F3EF8A01B7517342509F48A152B0A7A7EEC8FAF59B366B68D2CB38BBDBB4AC4405D94D11CAEFED645A751D68E2E3E19A4D153345296D0E902D6C82F51A0256E8D1B37B6A38E3AAAD8047AE5CA95EE81E082050B5C99128044818E0A927D9AB691E01654A0AFBAEA2A37E25492A81C77DC7139043A91978E8B38258EBE131D97CA517717CB972F777724D1C83A12E82FBFFCD23EFCF043BBFCF2CB937CAF291189FDCE52EA087A47021D9DAFBB113DDC9458270AB446BAA79C724AB678268EA07724D0EA841F7BECB1A48E4953195F7FFD758E29B344DB773492CF4F6367049D1F4A1C1314014D4348A0759BFAE9A79F5A8B162DECFAEBAF3789C5983163DCADAAA62B340570F0C107BB51902EE4F7DF7FDF4D03E86FDDBA270AB4FED7ADAF4445F3AABAF5BFEDB6DB925671147404AD919D845923F11B6FBCD11E7DF4D16C81D6A84DA3448D4835BAD3E850237309811E786A24F8CA2BAF644F71E43682D67CA9EE10347DA0FAA803481D41EB7B7548E2356BD62C97A718CD9933C79521E19B3A75AABBFB10AF548196C06B6AA8418306D9771C91408B95F86A84A9C194F8AA3CB1D31CB0E67755374D3FE9D8C49497406BCA481DAB58687A46D342EAC8F46C60B7DD76B34E9D3AB9ECD4396B8E5BD31AB367CF767712FA7B4702BD66CD1AD3BCB63A1BCD93FFF4D34FCE07AA836C974F7497A472C4453C357216FFA8732AC8C58440178416C7064340A2118D0C135744E4F6B90458B7F089A3C9E8B34428FA4C295AC29578CC8E8E8FCE8DCE8BFE8F1E2CA6E69398C78E6C8D3E8B6C557EAA5FEA798975D677FAFFF9E79FCF758AA320BC72E3A232A272538F49E526BB732B3362A4EF73AB5FF4799447A24FF4775467D993CA2CFA2C9551E2B2BCC4F3537D987A5C6AD905B9887208B4EA9CCB0A9E82E41BCB6399E288A55B302A8D04BEFFFE7BB70A4349A358CD67EF8A35E169ACA2D74527BFD57BCA3CFB79F3561BF4EE37B6E8F693AC42D9F82FE42E087D04BA20B438B63410D0148FE6A0B50C4C73CA5AB5408A0F812481DEEFBEB76CDEAD27DADC656B6DF9BA4DD6A151AD6C4B35EFA6B58BBA1DF8F9E79FDD7C979EAEEAC185FED71A51CD95699E48437CFDAF792B3DDD3EF3CC33DDFCD5860D1BDC13CDE8964BE72B1F2D458916E9EB182D4BC9CACA72652B1FDD4E285F7DA627A32A4FF9143421D00525C6F11080403A092409F4B275599679EF5B6EE4BCB65FF222FEFFFEF7BF6ECDA5567AE81648B743BA356AD4A8917B70102D44D7F21BED12FAF39FFFEC045A02ABA7B4126309ADD66E6A82FEDD77DF75EB0CA3759C9AFF6ADEBCB95B485EAF5E3DB714470F1E162E5CE8167A6B725E1D8496BAA84CED642AE80E29043A9D4D8DB22100818212C831073D78F2377663BB4656B64CF256D28F3EFAC8B4665473547ADAAADD387AEABDFFFEFBDBAA55ABDCAD919E324BBCAB55AB66679C7186136889A8D6251E73CC316ED1BD9ED06A6792D639EA69B046D37A1A3B77EE5CF7A45A4F40F53B9A84D712966FBEF9C68DC0C78E1DEB9E866A81BBF2296842A00B4A8CE321008174126015473AE95336042000819D1040A0691E10800004624A00818EA963300B021080409240EB619E7611E9815ED5AA55DDAA0B45A8D2CE2B45ABD2C339C50DD04A0AFDE8819EE20468894EB49632CE4813E7A065BB7E14C12BAE49DB47B5C32BBF3173B5253835A04C71D74DCF066457F4FC20357FADB4D143E01DA52FBEF8C27D9C177305A7513E7A9641824069269043A015C54B1787045A1788566868CBA9B6BE2ACA96B636EA619DF6FD2B5A93A27D69F585B66E6AC5469C53A2402B8297D67D6A758A02A2E83BD5574B04B536F484134EB037DF7CD33DEC548018EDC157D272430544D777A79F7EBAE3A3285D8A68250E7A98AACF274C98E0E232A8E3D203506D1356795A8AA82DA75A7AA80032DA22AA73B42A45DCF5E0554161B49450F10B74BEECD183586DADD5F2426DCFD59662F1D7AA16D9A6F2E4336D6955D017C517506C051DA380318A52A687B68A68A6E3B5ED542124D5E1469D5594AF1E048B83DA42547785AE94CDEAC4552F7D2F16DAD6AB108FB25D11D8548602E8285E81F251EC03D910EDCA52E7AFB6A4B815F3E6CD73211915874151DEB41D58E2AE87C962A8F08DF2C3C71F7FEC98C8663DA056601D715084340D22947F648B56FE6820A1BCB5C5560F97359810BFDC82DCC7B9CD625BE926B04381D6084617A72E420984566A684FBB02AB68B99B0446610725D4DAAFAE2577DABB1EF7942AD08A9DA00B5D9F6B59A04687AAAF56986894A7D082123D8D18A3D0870A5EA33B0A45175327A52581BA8B9050EB78E5276E123EDD7D28908D045AE22D6E1268C54A50BE1220899AA25F291E80BED77A6F2D558CB69B6A1DB946C5B251DFC907EA10140B41211915E376E9D2A556BB766D17E74002267193684ABC155652F629C9A75A65235BF5B7444CC2AAF8B75AF2A8E03CB7DF7EBBF3E9C9279FECCE579C07896A62E72B51543D141FE188238E308582D49D978454E2AD7C159F409D85CA57A84A89A692F252A728A6EA84541FD9AFF8063A473131D41189AB96574AB83540500728C1958D8A4FA1A872126889BA56F928EA9B96668AAD6C136FD55BAB8DD4F12AB2596A2C87B8B757EC8340A99D837EFBEDB75DE42E2509A20276FFF2CB2FEE7F858CD4F240ADD5960068599F8443499D9136D548B0156C45AF4D9238456BC1B5D450EBB5D5C9693427B1D4765A8D5C25D61A792B088C924675FA91B84AACD5112A088EEE46D459A82C95AB7325E8DAC0A3602E2A5F1D66B4645122A7202D0AE7A8BC14B94B235B8DD015B92B8A0D106D02529017E529115647A20E401D93469A2A53C165F4B7C4508163947F9487EEA0C44382AA0D462A471D8C6C175309B6045165EB188D86B56C32124789A7363B296F754AB249DFAB23126BD92F5E1AEDAACE9A5A93C8EA0E409D8B3A27F9450CC54A62AF3A8ABBEE7634D2572C604DA768E9A78ED19D8882EE48F44910F08940A915E8743849C2A48D373ECCD7EF4A3E1A592BD29846DAD1C87A579647DE10F0950002EDABE7B01B0210089E00021DBC8BA9200420E02B812481D6DB8D434B9A138D125BBD43F32EF58140D804184187ED5F6A070108784C0081F6D879980E0108844D2087406FD9BA2D4724BB501030C5118A27A907044A07812481EE39E633BBEC884CEB39FA539B78651BDBBDE26F3B03B53C4C6B59A34D0F05C1A3B5BE5A179CDB6BC7B55141AF454F4DDAD4A06DE4DA2451987253F343A00BE2358E850004D24D2049A05B0E996C1F5E7B8C8D9EB3D89AD6AE6A87D5AF9E6D9F3621684BB43674BCF5D65B6E1DAB767069E75C93264DDCAE3AED0C536C676D858E5E63AF0CB4A9429B34B449415B87B5414431A2B57B4DDB8CB541449B0824A0DAC1A7EDCEDAFAACA4E3B56B51C768A79A369068D384DE1E2C9BF45D7E13029D5F521C070108C481409240676DDE6AD5FBBE69D52A94B31FFB9E92649FC4308AB52031D63666C544D0AE31EDECD2E60BC53DE8D7AF9F7B8DBD624F68C79BB6DF2A69E7DAFCF9F3DD2E37ED4CD3CE33E5A11D631264C5F950BC05ED3E53D20EB448A0B56B4C82AF2DC5DA55A6D1B4768C699BF2C08103F3FD6615043A0E4D0E1B200081FC12C831073DEEABE5764AD33A39CED7565C05B2D1765C05C351901B05F151DC0AFDFEECB3CFDCD65AC54E50AC0A1DAF2DC31AED8E1933C68DB425E8C3860D7379286684A63624D08AE9A1EDD2DA82AC91B93A03C583508A5EB5A511B7B6F00E1F3EDC89BB5E95A500398A0791DF8440E79714C74100027120E0C52A0E6D9196786B34AED80C0D1A3428143B04BA50D8380902104813012F04BAB8D820D0C545927C20008192208040970465CA80000420500802087421A0710A0420008192209024D05A8D115A5200F72831C5119A77A90F04C226C0083A6CFF523B0840C0630208B4C7CEC3740840206C023904FAF365EBDC16EFFAD52B065773A638827369A12BA477362686A22D74469C586402DA613C69D2246BD5AA5591F30A2D8324813EFFB9E976EFA9CD6DC0C4AFECDE8ECDAD5EB5DD5C7DB50E596F6B563C0DBD2F4E2F19CD2D45AF338A2328043A8E5E29799BF47670BDC19C142F027AB72529994092401FF3E8549B70456B7BE4FDF9767AF37AB67FED2AD9476B37A0E26668B38876F4DD7DF7DDEEA5A3EAF524E07ABF5CE3C68DDD4E42357E8D50264E9CE8DE7EADB73A77EBD6CDBD9C349D09814E27FDF894ADB795472105E263159620D039DB4092402BD468D53E6F58A39A556C4EAF0E49474B7815284923E9050B16B8DF3D7AF4703137B4055CAB2514752E12E8112346B8A0491A711F76D8616E6BB8822AA53321D0E9A41F9FB211E8F4FA42033D4D6B282546B144A0F310687DFDE5F275D6AC4ED51C476A7A4391E4A2ADD653A74E75C18BF47AFBAD5BB7BAC8744AD3A64D73236AFD2F2197384BC4EBD4A9136B815610A7281CAA22E7A90E152A54C8C1418D28B7F94B71C8C8C870771AAA2F299E0410E8F4FA4561841F78E00177579D18461881CE8740EF0AD729EA9C46D9E94E3B1B417FF2C9272E509342A67EF4D1473674E8501B356A9475E9D2C545E8D38FEE10F4604902AC8EEACA2BAF74C7D4AE5DDBFAF4E9636BD6ACB19B6FBED956AF5EED824029ACEA8409135C1C6DDD3D2C5AB4C83A75EAE442A516477CEB74F3F4B57C043AFD9E9348EB7A4A4C08749A043AFDCDE1570B7626D01A358F1B37CECDAF2BEEB446FE125AFDADBB028535BDE79E7B5C4C6C8DB6155255E2AC39F6D1A347DBE0C1839D40EB2EE3F2CB2FB7962D5BDADCB973DD485A3FB366CD722155DBB66DEBEE3C24DAA4F41040A0D3C33DAF52116804DAAA57FFED25048938D6AD5B6755AB5635FDD6685F3DBC42A4469FAF5FBFDE854ED58FA63F3495A1E334E2D6D446E5CA95DDE74AFA4CC72969AE4DC7EA1889B7460D3A0E81CEEB72DD75DF23D0BB8E6D517246A011E85C05BA280D8B73FD228040C7D35F08741E02FDF9E79FC7D37345B0AA79F3E6D967B38AA30820033A15818EA733116846D08CA0E3796D96A8557A5D5AD7AE5D4BB44C0ACB9B00028D4023D0795F27A5E288993367DAA1871E5A2AEA1AF74AEA398D5651E93576A464023962716CDDB6CDCA646404C989298E20DD4AA520102C812481DEB465AB55EBF3A6952B9361EBFB774AAAF4800103AC7EFDFAD6BD7BF7A4CFB5A350EB86F5C66FAD6448779AB772832D5F97654767D6B08E8F7F6063BBFF168005814EB777281F021028088124815E9BB5D9F61F34C9BAB5CCB4FB3BFDF6704D19EA4DDB999999F6D34F3F3941AE56AD9A7BBBB7DEE67DDE79E7B92D9B5AEF3B64C8103BEDB4D35C5C8E74A5E3864FB30FBF5F651B523A19043A5D1EA15C0840A030049204FADC673EB6D7BE58EAF259D0FBC4EC687691406B67DC871F7E68471F7DB4CD9933C7962C59628D1A35729B37B4A9A366CD9A367EFC78B79EF898638E298C3DBBF41C047A97E225730840A098092409F4D2B559D6E6D129B677F54AF6CE556DAC4CC254B476DA69A345F43BDA8CA10D17FAD1E60B4DF62B66876258A46EE32C66BB0B951D025D286C9C040108A489006F544913788A85000420901701043A2F427C0F010840204D0410E83481A75808400002791140A0F322C4F710800004D2442049A0B5842EB454AB56ADEC2AF1903034EF521F08844D801174D8FEA576108080C70410688F9D87E9108040D80410E8B0FD4BED2000018F092409F4DC656BADDDA3536DFDA62D967577E7A46AE98D20F3E6CDCB7EF16BF4A691E820C5924E8CBD9C2E265FFDB8DE662E5A6D671D54CF0E1BF2AECDED751C73D0E972468CCBCDEDC5BF313679A7A6E9FA9C346992DBE54B0A87409240EFF697D76DD59D1DEDFFC67E6EB316AFB1B7AF6C935DD3912347BAD7405D70C1056E3BB7760F2E5CB8D06DF1AE57AF9E6B18DA45F8EDB7DFDAF1C71FEF5E1795AE74F5E84F6DE4CC1F6CF55DA72699C043C27479245EE5BEFCF2CB76D96597C5CBA862B266D5AA55BC4EAD9858C6219B24819EB374AD1DF9F07BA690A3A923E80F3EF8C045B3D3BBF6147B63ECD8B1AE2128AEEED9679FEDEA2281D68B5157AC58E1E272C42D21D071F3487AEC09F98D2A08747ADAD4AE2A9539E85D45967C634B200481D69258DDD12A068EEE60A38440C7B6D915CA30047A3BB665CB9659DDBA757340D4DC5EF486EEC42F57AE5CE90247EDE89CC48B456F11E72DDE856A9BBBECA44481966F468D1A65CD9A35B3962D5BBA32A74D9B666DDAFC36BD976A885ECD3479F2646BDDBAF50EEF14259CB9050BD3F4E082050BAC478F1EEE6DEF854D0A4C3678F060EBD2A58B356CD810812E2CC8989F87406F77905EB973F8E187DB4D37DD6477DC71875D77DD75F6ECB3CF9A2EE68B2FBED8CD59F6EEDDDB1E7CF0417BFAE9A79DE8CE9A35CB5E7AE92517BD4FF3F11D3B76B42953A658BB76EDEC9C73CEB15EBD7A59DFBE7DDD05F9C4134FD825975C62F7DD779F2B51F9DE7AEBAD2EEFB66DDBC6BC9984655EEA085A7E79ECB1C7AC7FFFFEB6DF7EFBB90EB943870E56A3460D173AF79B6FBE7142AC51AB845CBE97303EFFFCF3EE554DEFBCF38EA983EFD3A78F55AC58D1962E5DEA62A32F5FBEDCBD624D0FD4D5564E3EF9640772F6ECD9A629C3134E38C11DDBA2450B77AC3A7DC55DBFF1C61BF3055C22AD69C6C4C4083A5FE8BC390881DEEE2A8D86C78D1BE72ECADAB56BBBF9F69E3D7BDAD0A143DDC525D11D346890B56FDFDE5AB5FAF52D2DFA5C6F94C9CACA7217982E565D987AD79D1E940E1C38D0162D5AE4E6E875BE8ED7C5AFEFDF7BEF3DF7D203AD7C89C39B68BC69B1C56068EA085A235EBD68425305F2D58B2FBEE844531DB646B9EBD7AF77A176F500BC69D3A6B661C306F7105C3E9460EB6F75C037DC70838D1831C2BA75EB961D9637BA03D36F897724D0071F7CB0EBA40F39E410F7807DC68C19EED98EF292A8173621D0852517CFF310E8ED7E89960DEA628C045331AFA38B4A17A5DE2023418E56A8E8C2D6C3D2CE9D3BDB6BAFBD66A79F7E7A763C6C65AB63A3F3D5014471B3A3DB5F95A9D1B77E482547202E73D01A317FF9E597D91D7E711040A08B83627CF240A0E3E30B2C2921027111E85D515D047A57504D5F9E0874FAD853729A0820D069024FB10526804017181927F84EE0D5575FB5AE5DBBFA5E8D1DDACF083A2CB72609F49AACCDF6F58FEB6DF3D66D7674E61E61D5D4CCD8A8129C4B0B5D216DB0D283C050921E424E9F3E9DADDEA138747B3D92047ACCDC2576EC7EB5ACDE80F1493B09B5AC68F1E2C5A6DE590F35F424FBEBAFBF764FB9B506533B07F5E4398E2F8A4DF417021D58EBA53A10089C40BE045A0C860F1FEE56253468D0C01A376EEC461FC3860DB3ABAFBE3A5BA0759C845B4BCEB4A44CAB21B49E54C22D01D78A06C54190A05F7FFDF5258E16812E71E4140801081481409240BFFAF952B7CCDFC7480000071A4944415408FFBCE7A6E788C53171E24427CE5A642F81D6FACD175E78C1054F8A46D0D10E2A6DF0D0C27EDD76299D71C6192E129ED608FFE73FFF71427FD5555715C1ECC29D8A40178E1B67410002E92190E321E1A62DBF8A6A85B2658A649176D669E386C4392E09818E8B27B0030210C80F015671E48712C740000210480301043A0DD02912021080407E0820D0F9A1C43110800004D24000814E03748A84000420901F0208747E28710C04200081341040A0D3009D2221000108E48700029D1F4A1C03010840200D0410E83440A74808400002F92180406FA7B4CFBD136DE32F5BF2C3AC588E295726C396DE7E52B1E44526108040980410E8ED7EADD56F7C897BF8F5CB8EB2560D6A9478B914080108F8410081CEA740972F9B61B7B46F6CF74F9E67BF6CDF0E5F5417BFD2ED486BBB6FCDA266C3F9108040A00410E87C0A7493DA556C5DD6665BB236CB9DD1B375436BD3A0862D58B5D1AAED56CE9AD4AA62F5AAEE66173D3FC3BA1F9969FBD6A8EC824EED2C21D0815E55540B02C5440081CEA74047BC1BD6A8640B566EB4DE1D1ADB8C456BAC53B3BA56AB72799BB36CAD8D9AB9D8F6D9A3A2CD5AB4C6F4F283BC12029D1721BE8740E9268040E753A035C571418BFA3672D622EBD2A2BE7DBA648DD5AE52C1366CDA6295CA97B5951B7FB1792B3658950A656DF9BA4DD6B1591D7BFD8B658CA04BF7F545ED2150240208743E05BA489473399911F4AEA04A9E10088700029D4681FEA0675BDBBF7695705A13358100048A950002BD1DE7D8AF96DBA52FCC742FCC2D8934E0E466764DAB86255114654000029E1240A03D751C66430002E11340A0C3F731358400043C2580407BEA38CC860004C227804087EF636A080108784A0081F6D471980D0108844F00810EDFC7D4100210F0940002EDA9E3301B0210089F00021DBE8FA9210420E0290104DA53C761360420103E01043A7C1F53430840C0530208B4A78EC36C0840207C020874F83EA686108080A70410684F1D87D9108040F80410E8F07D4C0D2100014F0920D09E3A0EB3210081F00920D0E1FB981A4200029E1240A03D751C66430002E11340A0C3F731358400043C2580407BEA38CC860004C227804087EF636A080108784A0081F6D471980D0108844F00810EDFC7D4100210F0940002EDA9E3301B0210089F00021DBE8FA9210420E0290104DA53C761360420103E01043A7C1F53430840C0530208B4A78EC36C0840207C020874F83EA686108080A70410684F1D87D9108040F80410E8F07D4C0D2100014F0920D09E3A0EB3210081F00920D0E1FB981A4200029E1240A03D751C66430002E11340A0C3F731358400043C2580407BEA38CC860004C227804087EF636A080108784A0081F6D471980D0108844F00810EDFC7D4100210F0940002EDA9E3301B0210089F00021DBE8FA9210420E0290104DA53C761360420103E01043A7C1F53430840C05302199EDA8DD9108000048227804007EF622A080108F84A0081F6D573D80D0108044F00810EDEC554100210F0950002EDABE7B01B0210089E00021DBC8BA9200420E02B0104DA57CF61370420103C01043A781753410840C0570208B4AF9EC36E08402078020874F02EA682108080AF0410685F3D87DD108040F00410E8E05D4C052100015F0920D0BE7A0EBB210081E00920D0C1BB980A420002BE1240A07DF51C76430002C11340A0837731158400047C258040FBEA39EC8600048227804007EF622A080108F84A0081F6D573D80D0108044F00810EDEC554100210F0950002EDABE7B01B0210089E00021DBC8BA9200420E02B0104DA57CF61370420103C01043A781753410840C0570208B4AF9EC36E08402078020874F02EA682108080AF0410685F3D87DD108040F00410E8E05D4C052100015F0920D0BE7A0EBB210081E00920D0C1BB980A420002BE1240A07DF51C76430002C11340A0837731158400047C258040FBEA39EC8600048227804007EF622A080108F84A0081F6D573D80D0108044F00810EDEC554100210F0950002EDABE7B01B0210089E00021DBC8BA9200420E02B0104DA57CF61370420103C01043A781753410840C0570208B4AF9EC36E08402078020874F02EA682108080AF0410685F3D87DD108040F00410E8E05D4C052100015F0920D0BE7A0EBB210081E00920D0C1BB980A420002BE1240A07DF51C76430002C11340A0837731158400047C258040FBEA39EC8600048227804007EF622A080108F84A0081F6D573D80D0108044F00810EDEC554100210F0950002EDABE7B01B0210089E00021DBC8BA9200420E02B0104DA57CF61370420103C01043A781753410840C0570208B4AF9EC36E08402078020874F02EA682108080AF0410685F3D87DD108040F00410E8E05D4C052100015F0920D0BE7A0EBB210081E00920D0C1BB980A420002BE1240A07DF51C76430002C11340A0837731158400047C258040FBEA39EC8600048227804007EF622A080108F84A0081F6D573D80D0108044F00810EDEC554100210F0950002EDABE7B01B0210089EC0FF036DA3CE30CB0602C40000000049454E44AE426082 , 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1); +-- insert apps id 2 to 7 --- ASDC users +SET FOREIGN_KEY_CHECKS=1; + + +INSERT INTO `fn_app` (`app_id`, `app_name`, `app_image_url`, `app_description`, `app_notes`, `app_url`, `app_alternate_url`, `app_rest_endpoint`, `ml_app_name`, `ml_app_admin_id`, `mots_id`, `app_password`, `open`, `enabled`, `thumbnail`, `app_username`, `ueb_key`, `ueb_secret`, `ueb_topic_name`, `app_type`) VALUES +(2, 'xDemo App', 'images/cache/portal-222865671_37476.png', NULL, NULL, 'http://portal.api.simpledemo.openecomp.org:8989/ECOMPSDKAPP/welcome.htm', NULL, 'http://portal.api.simpledemo.openecomp.org:8989/ECOMPSDKAPP/api', '', '', NULL, 'okYTaDrhzibcbGVq5mjkVQ==', 'N', 'Y', NULL, 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1), +(3, 'DMaaP Bus Ctrl', 'images/cache/portal944583064_80711.png', NULL, NULL, 'http://portal.api.simpledemo.openecomp.org:8989/ECOMPDBCAPP/dbc#/dmaap', NULL, 'http://portal.api.simpledemo.openecomp.org:8989/ECOMPDBCAPP/api', '', '', NULL, 'okYTaDrhzibcbGVq5mjkVQ==', 'N', 'Y', NULL, 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1), +(4, 'SDC', 'images/cache/portal956868231_53879.png', NULL, NULL, 'http://sdc.api.simpledemo.openecomp.org:8181/sdc1/portal', NULL, 'http://sdc.api.simpledemo.openecomp.org:8080/api/', '', '', NULL, '78ot0W94rpB0o4FYzVoIOg==', 'N', 'Y', NULL, 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1), +(5, 'Policy', 'images/cache/portal1470452815_67021.png', NULL, NULL, 'http://policy.api.simpledemo.openecomp.org:8443/ecomp/policy#/Editor', NULL, 'http://policy.api.simpledemo.openecomp.org:8443/ecomp/api', '', '', NULL, 'okYTaDrhzibcbGVq5mjkVQ==', 'N', 'Y', NULL, 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1), +(6, 'Virtual Infrastructure Deployment', 'images/cache/portal-345993588_92550.png', NULL, NULL, 'http://vid.api.simpledemo.openecomp.org:8080/vid/welcome.htm', NULL, 'http://vid.api.simpledemo.openecomp.org:8080/vid/api/v2', '', '', NULL, 'okYTaDrhzibcbGVq5mjkVQ==', 'N', 'Y', NULL, 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1), +(7, 'A&AI UI', 'images/cache/portal-345993588_92550.png', NULL, NULL, 'http://aai.ui.simpledemo.openecomp.org:9517/services/aai/webapp/index.html#/viewInspect', NULL, 'http://aai.ui.simpledemo.openecomp.org:9517/api/v2', '', '', NULL, 'okYTaDrhzibcbGVq5mjkVQ==', 'N', 'Y', NULL, 'Default', 'ueb_key', 'ueb_secret', 'ECOMP-PORTAL-OUTBOX', 1); + +-- insert ASDC users user id2-8 Insert into fn_user (USER_ID, ORG_ID, MANAGER_ID,FIRST_NAME,MIDDLE_NAME,LAST_NAME,PHONE,FAX,CELLULAR,EMAIL,ADDRESS_ID,ALERT_METHOD_CD,HRID,ORG_USER_ID,ORG_CODE,LOGIN_ID,LOGIN_PWD,LAST_LOGIN_DATE,ACTIVE_YN,CREATED_ID,CREATED_DATE,MODIFIED_ID,MODIFIED_DATE,IS_INTERNAL_YN,ADDRESS_LINE_1,ADDRESS_LINE_2,CITY,STATE_CD,ZIP_CODE,COUNTRY_CD,LOCATION_CLLI,ORG_MANAGER_USERID,COMPANY,DEPARTMENT_NAME,JOB_TITLE,TIMEZONE,DEPARTMENT,BUSINESS_UNIT,BUSINESS_UNIT_NAME,COST_CENTER,FIN_LOC_CODE,SILO_STATUS) values (2,NULL,NULL,'Jimmy',NULL,'Hendrix',NULL,NULL,NULL,'admin@openecomp.org',NULL,NULL,NULL,'jh0003',NULL,'jh0003','95LidzVz7nSpsTsRUrDNVA==','2016-10-20 15:11:16','Y',NULL,'2016-10-14 21:00:00',1,'2016-10-20 15:11:16','N',NULL,NULL,NULL,'NJ',NULL,'US',NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL); Insert into fn_user (USER_ID, ORG_ID, MANAGER_ID,FIRST_NAME,MIDDLE_NAME,LAST_NAME,PHONE,FAX,CELLULAR,EMAIL,ADDRESS_ID,ALERT_METHOD_CD,HRID,ORG_USER_ID,ORG_CODE,LOGIN_ID,LOGIN_PWD,LAST_LOGIN_DATE,ACTIVE_YN,CREATED_ID,CREATED_DATE,MODIFIED_ID,MODIFIED_DATE,IS_INTERNAL_YN,ADDRESS_LINE_1,ADDRESS_LINE_2,CITY,STATE_CD,ZIP_CODE,COUNTRY_CD,LOCATION_CLLI,ORG_MANAGER_USERID,COMPANY,DEPARTMENT_NAME,JOB_TITLE,TIMEZONE,DEPARTMENT,BUSINESS_UNIT,BUSINESS_UNIT_NAME,COST_CENTER,FIN_LOC_CODE,SILO_STATUS) values (3,NULL,NULL,'Carlos',NULL,'Santana',NULL,NULL,NULL,'designer@openecomp.org',NULL,NULL,NULL,'cs0008',NULL,'cs0008','95LidzVz7nSpsTsRUrDNVA==','2016-10-20 15:11:16','Y',NULL,'2016-10-14 21:00:00',1,'2016-10-20 15:11:16','N',NULL,NULL,NULL,'NJ',NULL,'US',NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL); @@ -17,10 +22,17 @@ Insert into fn_user (USER_ID, ORG_ID, MANAGER_ID,FIRST_NAME,MIDDLE_NAME,LAST_NAM Insert into fn_user (USER_ID, ORG_ID, MANAGER_ID,FIRST_NAME,MIDDLE_NAME,LAST_NAME,PHONE,FAX,CELLULAR,EMAIL,ADDRESS_ID,ALERT_METHOD_CD,HRID,ORG_USER_ID,ORG_CODE,LOGIN_ID,LOGIN_PWD,LAST_LOGIN_DATE,ACTIVE_YN,CREATED_ID,CREATED_DATE,MODIFIED_ID,MODIFIED_DATE,IS_INTERNAL_YN,ADDRESS_LINE_1,ADDRESS_LINE_2,CITY,STATE_CD,ZIP_CODE,COUNTRY_CD,LOCATION_CLLI,ORG_MANAGER_USERID,COMPANY,DEPARTMENT_NAME,JOB_TITLE,TIMEZONE,DEPARTMENT,BUSINESS_UNIT,BUSINESS_UNIT_NAME,COST_CENTER,FIN_LOC_CODE,SILO_STATUS) values (7,NULL,NULL,'Teddy',NULL,'Isashar',NULL,NULL,NULL,'pm1@openecomp.org',NULL,NULL,NULL,'pm0001',NULL,'pm0001','95LidzVz7nSpsTsRUrDNVA==','2016-10-20 15:11:16','Y',NULL,'2016-10-14 21:00:00',1,'2016-10-20 15:11:16','N',NULL,NULL,NULL,'NJ',NULL,'US',NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL); Insert into fn_user (USER_ID, ORG_ID, MANAGER_ID,FIRST_NAME,MIDDLE_NAME,LAST_NAME,PHONE,FAX,CELLULAR,EMAIL,ADDRESS_ID,ALERT_METHOD_CD,HRID,ORG_USER_ID,ORG_CODE,LOGIN_ID,LOGIN_PWD,LAST_LOGIN_DATE,ACTIVE_YN,CREATED_ID,CREATED_DATE,MODIFIED_ID,MODIFIED_DATE,IS_INTERNAL_YN,ADDRESS_LINE_1,ADDRESS_LINE_2,CITY,STATE_CD,ZIP_CODE,COUNTRY_CD,LOCATION_CLLI,ORG_MANAGER_USERID,COMPANY,DEPARTMENT_NAME,JOB_TITLE,TIMEZONE,DEPARTMENT,BUSINESS_UNIT,BUSINESS_UNIT_NAME,COST_CENTER,FIN_LOC_CODE,SILO_STATUS) values (8,NULL,NULL,'Eden',NULL,'Rozin',NULL,NULL,NULL,'ps1@openecomp.org',NULL,NULL,NULL,'ps0001',NULL,'ps0001','95LidzVz7nSpsTsRUrDNVA==','2016-10-20 15:11:16','Y',NULL,'2016-10-14 21:00:00',1,'2016-10-20 15:11:16','N',NULL,NULL,NULL,'NJ',NULL,'US',NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL); +-- insert demo user to account admin role for all apps id2-7 + Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (1,999,null,2); Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (1,999,null,3); Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (1,999,null,4); Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (1,999,null,5); +Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (1,999,null,6); +Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (1,999,null,7); + +-- insert users id2-8 roles to SDC app + Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (2,999,null,4); Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (3,16,null,4); Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (4,16,null,4); @@ -30,18 +42,27 @@ Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (7,16,null,4); Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (8,16,null,4); --- VID users +-- insert VID users id9-11 Insert into fn_user (USER_ID, ORG_ID, MANAGER_ID,FIRST_NAME,MIDDLE_NAME,LAST_NAME,PHONE,FAX,CELLULAR,EMAIL,ADDRESS_ID,ALERT_METHOD_CD,HRID,ORG_USER_ID,ORG_CODE,LOGIN_ID,LOGIN_PWD,LAST_LOGIN_DATE,ACTIVE_YN,CREATED_ID,CREATED_DATE,MODIFIED_ID,MODIFIED_DATE,IS_INTERNAL_YN,ADDRESS_LINE_1,ADDRESS_LINE_2,CITY,STATE_CD,ZIP_CODE,COUNTRY_CD,LOCATION_CLLI,ORG_MANAGER_USERID,COMPANY,DEPARTMENT_NAME,JOB_TITLE,TIMEZONE,DEPARTMENT,BUSINESS_UNIT,BUSINESS_UNIT_NAME,COST_CENTER,FIN_LOC_CODE,SILO_STATUS) values (9,NULL,NULL,'vid1',NULL,'user',NULL,NULL,NULL,'vid1@openecomp.org',NULL,NULL,NULL,'vid1',NULL,'vid1','95LidzVz7nSpsTsRUrDNVA==','2016-10-20 15:11:16','Y',NULL,'2016-10-14 21:00:00',1,'2016-10-20 15:11:16','N',NULL,NULL,NULL,'NJ',NULL,'US',NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL); Insert into fn_user (USER_ID, ORG_ID, MANAGER_ID,FIRST_NAME,MIDDLE_NAME,LAST_NAME,PHONE,FAX,CELLULAR,EMAIL,ADDRESS_ID,ALERT_METHOD_CD,HRID,ORG_USER_ID,ORG_CODE,LOGIN_ID,LOGIN_PWD,LAST_LOGIN_DATE,ACTIVE_YN,CREATED_ID,CREATED_DATE,MODIFIED_ID,MODIFIED_DATE,IS_INTERNAL_YN,ADDRESS_LINE_1,ADDRESS_LINE_2,CITY,STATE_CD,ZIP_CODE,COUNTRY_CD,LOCATION_CLLI,ORG_MANAGER_USERID,COMPANY,DEPARTMENT_NAME,JOB_TITLE,TIMEZONE,DEPARTMENT,BUSINESS_UNIT,BUSINESS_UNIT_NAME,COST_CENTER,FIN_LOC_CODE,SILO_STATUS) values (10,NULL,NULL,'vid2',NULL,'user',NULL,NULL,NULL,'vid2@openecomp.org',NULL,NULL,NULL,'vid2',NULL,'vid2','95LidzVz7nSpsTsRUrDNVA==','2016-10-20 15:11:16','Y',NULL,'2016-10-14 21:00:00',1,'2016-10-20 15:11:16','N',NULL,NULL,NULL,'NJ',NULL,'US',NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL); Insert into fn_user (USER_ID, ORG_ID, MANAGER_ID,FIRST_NAME,MIDDLE_NAME,LAST_NAME,PHONE,FAX,CELLULAR,EMAIL,ADDRESS_ID,ALERT_METHOD_CD,HRID,ORG_USER_ID,ORG_CODE,LOGIN_ID,LOGIN_PWD,LAST_LOGIN_DATE,ACTIVE_YN,CREATED_ID,CREATED_DATE,MODIFIED_ID,MODIFIED_DATE,IS_INTERNAL_YN,ADDRESS_LINE_1,ADDRESS_LINE_2,CITY,STATE_CD,ZIP_CODE,COUNTRY_CD,LOCATION_CLLI,ORG_MANAGER_USERID,COMPANY,DEPARTMENT_NAME,JOB_TITLE,TIMEZONE,DEPARTMENT,BUSINESS_UNIT,BUSINESS_UNIT_NAME,COST_CENTER,FIN_LOC_CODE,SILO_STATUS) values (11,NULL,NULL,'vid3',NULL,'user',NULL,NULL,NULL,'vid3@openecomp.org',NULL,NULL,NULL,'vid3',NULL,'vid3','95LidzVz7nSpsTsRUrDNVA==','2016-10-20 15:11:16','Y',NULL,'2016-10-14 21:00:00',1,'2016-10-20 15:11:16','N',NULL,NULL,NULL,'NJ',NULL,'US',NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL); -Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (1,999,null,6); +-- insert users id9-11 roles to VID app + Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (9,16,null,6); Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (10,16,null,6); Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (11,16,null,6); --- fn_roles for the on boarded apps +-- insert AAI UI users id12 + +Insert into fn_user (USER_ID, ORG_ID, MANAGER_ID,FIRST_NAME,MIDDLE_NAME,LAST_NAME,PHONE,FAX,CELLULAR,EMAIL,ADDRESS_ID,ALERT_METHOD_CD,HRID,ORG_USER_ID,ORG_CODE,LOGIN_ID,LOGIN_PWD,LAST_LOGIN_DATE,ACTIVE_YN,CREATED_ID,CREATED_DATE,MODIFIED_ID,MODIFIED_DATE,IS_INTERNAL_YN,ADDRESS_LINE_1,ADDRESS_LINE_2,CITY,STATE_CD,ZIP_CODE,COUNTRY_CD,LOCATION_CLLI,ORG_MANAGER_USERID,COMPANY,DEPARTMENT_NAME,JOB_TITLE,TIMEZONE,DEPARTMENT,BUSINESS_UNIT,BUSINESS_UNIT_NAME,COST_CENTER,FIN_LOC_CODE,SILO_STATUS) values (12,NULL,NULL,'steve',NULL,'user',NULL,NULL,NULL,'steve@openecomp.org',NULL,NULL,NULL,'steve',NULL,'steve','95LidzVz7nSpsTsRUrDNVA==','2017-05-19 15:11:16','Y',NULL,'2017-05-19 21:00:00',1,'2017-05-19 15:11:16','N',NULL,NULL,NULL,'NJ',NULL,'US',NULL,NULL,NULL,NULL,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL); + +-- insert users id9-11 roles to AAI UI app + +Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (12,16,null,7); + +-- insert fn_roles for the on boarded apps insert into fn_role values(1000,'System Administrator','Y',1,2,999); -- SDK insert into fn_role values(1001,'Standard User','Y',1,2,16); -- SDK insert into fn_role values(1002,'System Administrator','Y',1,3,999); -- DMaap @@ -53,21 +74,30 @@ insert into fn_role values(1007,'Standard User','Y',1,5,16); -- Policy insert into fn_role values(1008,'System Administrator','Y',1,6,999); -- VID insert into fn_role values(1009,'Standard User','Y',1,6,16); -- VID +insert into fn_role values(1011,'System Administrator','Y',1,7,999); -- AAI UI +insert into fn_role values(1012,'Standard User','Y',1,7,16); -- AAI UI -Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (1,1000,NULL,2); -Insert into fn_user_role (USER_ID,ROLE_ID,PRIORITY,APP_ID) values (1,1001,NULL,2); +INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (1,1000,NULL,2); +INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (1,1001,NULL,2); INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (1,1002,NULL,3); INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (1,1004,NULL,4); INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (1,1006,NULL,5); INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (1,1008,NULL,6); + INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (3,1004,NULL,4); + INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (4,1004,NULL,4); + INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (9,999,NULL,1); INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (9,1008,NULL,6); + INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (10,1008,NULL,6); INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (10,1009,NULL,6); +INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (12,1011,NULL,7); +INSERT INTO `fn_user_role` (`user_id`,`role_id`,`priority`,`app_id`) VALUES (12,1012,NULL,7); + -- new 1610.2 -- Ignore errors if the application is not onboarded in this environment @@ -75,7 +105,7 @@ INSERT IGNORE INTO `fn_app_contact_us` (app_id, contact_name, contact_email, url (select min(app_id) from fn_app where app_name like "%SDC%" and enabled = "Y"), "SDC Team","sdc@lists.openecomp.org","",NULL, "Service Design and Creation (SDC)."); - INSERT IGNORE INTO `fn_app_contact_us` (app_id, contact_name, contact_email, url, active_yn, description) VALUES ( +INSERT IGNORE INTO `fn_app_contact_us` (app_id, contact_name, contact_email, url, active_yn, description) VALUES ( (select min(app_id) from fn_app where app_name like "%Policy%"), "Policy Team","policy@lists.openecomp.org","",NULL, "Policy."); @@ -91,6 +121,14 @@ INSERT IGNORE INTO `fn_app_contact_us` (app_id, contact_name, contact_email, url (select min(app_id) from fn_app where app_name like "%Demo%"), "Portal Team","portal@lists.openecomp.org","",NULL, "Demo Application"); +INSERT IGNORE INTO `fn_app_contact_us` (app_id, contact_name, contact_email, url, active_yn, description) VALUES ( + (select min(app_id) from fn_app where app_name like "%VID%"), + "Portal Team","portal@lists.openecomp.org","",NULL, + "VID Application"); +INSERT IGNORE INTO `fn_app_contact_us` (app_id, contact_name, contact_email, url, active_yn, description) VALUES ( + (select min(app_id) from fn_app where app_name like "%AI UI%"), + "Portal Team","portal@lists.openecomp.org","",NULL, + "AAI UI Application"); -- end new 1610.2 -- @@ -281,7 +319,7 @@ select a.menu_id, b.app_id, b.role_id from select a.menu_id from fn_menu_functional a where url like '%vid%' ) a, ( -select * from fn_role where app_id = (select app_id from fn_app where app_name = 'Virtual Infrastructure Deployment') +select * from fn_role where app_id = (select app_id from fn_app where app_name like 'Virtual%') ) b ); @@ -307,14 +345,4 @@ select * from fn_role where app_id = (select app_id from fn_app where app_name = ) b ); -- end new - -INSERT INTO `fn_common_widget_data` (`id`,`CATEGORY`,`HREF`,`TITLE`,`content`,`event_date`,`SORT_ORDER`) VALUES (6,'NEWS','http://about.att.com/innovationblog/next_att_labs','What\s Next at AT&T Labs? AI Set to Revolutionize the Network',NULL,NULL,10); -INSERT INTO `fn_common_widget_data` (`id`,`CATEGORY`,`HREF`,`TITLE`,`content`,`event_date`,`SORT_ORDER`) VALUES (7,'NEWS','http://about.att.com/innovationblog/ecomp_code','Code, Community and Commitment – the 3 Cs of Open Source',NULL,NULL,20); -INSERT INTO `fn_common_widget_data` (`id`,`CATEGORY`,`HREF`,`TITLE`,`content`,`event_date`,`SORT_ORDER`) VALUES (8,'NEWS','http://about.att.com/story/orange_testing_att_open_source_ecomp_platform.html','Orange Testing AT&Ts Open Source ECOMP Platform for Building Software-Defined Network Capabilities',NULL,NULL,30); -INSERT INTO `fn_common_widget_data` (`id`,`CATEGORY`,`HREF`,`TITLE`,`content`,`event_date`,`SORT_ORDER`) VALUES (9,'NEWS', 'http://about.att.com/innovationblog/linux_foundation','Opening up ECOMP: Our Network Operating System for SDN',NULL,NULL,40); -INSERT INTO `fn_common_widget_data` (`id`,`CATEGORY`,`HREF`,`TITLE`,`content`,`event_date`,`SORT_ORDER`) VALUES (10,'EVENTS',NULL,'OpenECOMP Launches into Open Source',NULL,'2017-02-14',1); -INSERT INTO `fn_common_widget_data` (`id`,`CATEGORY`,`HREF`,`TITLE`,`content`,`event_date`,`SORT_ORDER`) VALUES (11,'IMPORTANTRESOURCES','http://about.att.com/content/dam/snrdocs/ecomp.pdf','ECOMP White Paper',NULL,NULL,1); -INSERT INTO `fn_common_widget_data` (`id`,`CATEGORY`,`HREF`,`TITLE`,`content`,`event_date`,`SORT_ORDER`) VALUES (12,'IMPORTANTRESOURCES','https://openecomp.atlassian.net/wiki/display/DW/Developer+Wiki+for+OpenECOMP','OpenECOMP Wiki',NULL,NULL,2); -INSERT INTO `fn_common_widget_data` (`id`,`CATEGORY`,`HREF`,`TITLE`,`content`,`event_date`,`SORT_ORDER`) VALUES (13,'IMPORTANTRESOURCES','https://openecomp.atlassian.net/wiki/display/DW/Portal+and+Dashboard','OpenECOMP Wiki, Portal',NULL,NULL,3); -INSERT INTO `fn_common_widget_data` (`id`,`CATEGORY`,`HREF`,`TITLE`,`content`,`event_date`,`SORT_ORDER`) VALUES (14,'IMPORTANTRESOURCES','https://openecomp.atlassian.net/wiki/display/DW/Portal+and+Dashboard','OpenECOMP User Guide',NULL,NULL,4); - +commit; diff --git a/deliveries/Dockerfile.mariadb b/deliveries/Dockerfile.mariadb index f6fb5c47..871637f5 100644 --- a/deliveries/Dockerfile.mariadb +++ b/deliveries/Dockerfile.mariadb @@ -24,5 +24,5 @@ ADD ${SDK_SCRIPT_DIR}/EcompSdkDDLMySql_1707_OS.sql docker-entrypoint-initdb.d/Ec ADD ${SDK_COMMON_SCRIPT_DIR}/EcompSdkDMLMySql_1707_Common.sql docker-entrypoint-initdb.d/EcompSdkDMLMySql_1707_Common.sql ADD ${SDK_SCRIPT_DIR}/EcompSdkDMLMySql_1707_OS.sql docker-entrypoint-initdb.d/EcompSdkDMLMySql_1707_OS.sql -#ADD ${DBC_COMMON_SCRIPT_DIR}/dbca-ddl-mysql-1707-common.sql docker-entrypoint-initdb.d/dbca-ddl-mysql-1707-common.sql -#ADD ${DBC_SCRIPT_DIR}/dbca-dml-mysql-1707-os.sql docker-entrypoint-initdb.d/dbca-dml-mysql-1707-os.sql +# This file was built by os_build_febe.sh +ADD ${DBC_SCRIPT_DIR}/dbca-complete-mysql-1707-os.sql docker-entrypoint-initdb.d/dbca-complete-mysql-1707-os.sql diff --git a/deliveries/os_build_febe.sh b/deliveries/os_build_febe.sh index 7f6fc4c8..a87831af 100644 --- a/deliveries/os_build_febe.sh +++ b/deliveries/os_build_febe.sh @@ -76,6 +76,10 @@ cd dbca-os/target mv dmaap-bc-app-os-1.1.0-SNAPSHOT ep-dbc-app +# Build complete database script in the "OS" script area +cd ../db-scripts +cat dbca-create-mysql-1707-os.sql ../../dbca-common/db-scripts/dbca-ddl-mysql-1707-common.sql dbca-dml-mysql-1707-os.sql > dbca-complete-mysql-1707-os.sql + # install into docker cd $CURRENTDIR diff --git a/deliveries/widget_ms_start.sh b/deliveries/widget_ms_start.sh new file mode 100755 index 00000000..8405fe99 --- /dev/null +++ b/deliveries/widget_ms_start.sh @@ -0,0 +1,4 @@ +APP_PROPERTY_LOCATION=/tmp/application.properties +echo "Starting ecomp-portal-widget-ms image in a new container !!!" +docker run -d --name "ecomp-portal-widget-ms" -p 8083:8082 -v $APP_PROPERTY_LOCATION:/application.properties ecompportal-widget-ms + diff --git a/deliveries/widget_ms_stop.sh b/deliveries/widget_ms_stop.sh new file mode 100755 index 00000000..8c9abf56 --- /dev/null +++ b/deliveries/widget_ms_stop.sh @@ -0,0 +1,5 @@ +echo "Stopping ecomp-portal-widget-ms container !!!" +docker stop ecomp-portal-widget-ms +echo "Removing docker image portal-widget-ms !!!" +docker rm ecomp-portal-widget-ms + diff --git a/ecomp-portal-BE-common-test/.classpath b/ecomp-portal-BE-common-test/.classpath deleted file mode 100644 index 3553992a..00000000 --- a/ecomp-portal-BE-common-test/.classpath +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ecomp-portal-BE-common-test/.gitignore b/ecomp-portal-BE-common-test/.gitignore index 95194cea..6b3b3ef1 100644 --- a/ecomp-portal-BE-common-test/.gitignore +++ b/ecomp-portal-BE-common-test/.gitignore @@ -1,3 +1,7 @@ +/.classpath +/.project +/.settings/ +/bin/ /java/ /debug/ /debug/logs/ diff --git a/ecomp-portal-BE-common-test/.project b/ecomp-portal-BE-common-test/.project deleted file mode 100644 index 5805bbfb..00000000 --- a/ecomp-portal-BE-common-test/.project +++ /dev/null @@ -1,23 +0,0 @@ - - - ecomp-portal-BE-common-test - - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.m2e.core.maven2Builder - - - - - - org.eclipse.jdt.core.javanature - org.eclipse.m2e.core.maven2Nature - - diff --git a/ecomp-portal-BE-common-test/.settings/org.eclipse.core.resources.prefs b/ecomp-portal-BE-common-test/.settings/org.eclipse.core.resources.prefs deleted file mode 100644 index cf6931b9..00000000 --- a/ecomp-portal-BE-common-test/.settings/org.eclipse.core.resources.prefs +++ /dev/null @@ -1,4 +0,0 @@ -eclipse.preferences.version=1 -encoding//src/main/java=UTF-8 -encoding//src/main/resources=UTF-8 -encoding/=UTF-8 diff --git a/ecomp-portal-BE-common-test/.settings/org.eclipse.jdt.core.prefs b/ecomp-portal-BE-common-test/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index d59e09c9..00000000 --- a/ecomp-portal-BE-common-test/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,5 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8 -org.eclipse.jdt.core.compiler.compliance=1.8 -org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning -org.eclipse.jdt.core.compiler.source=1.8 diff --git a/ecomp-portal-BE-common-test/README.md b/ecomp-portal-BE-common-test/README.md index 30308e7b..fb0ed2e8 100644 --- a/ecomp-portal-BE-common-test/README.md +++ b/ecomp-portal-BE-common-test/README.md @@ -1,28 +1,10 @@ -# ECOMP Portal Web Application Back End for AT&T Internal Use - ## Overview This is a Maven project with the ECOMP Portal web application back-end test files -for internal use, containing test cases for controllers, interceptors and other Java classes -for the AT&T version. This project uses the Maven war plugin to copy in ("overlay") -the contents of the ECOMP Portal web application back-end common distribution at -package time. - -Use Apache Maven to build. - -For more information please visit: - - https://wiki.web.att.com/display/EcompPortal/ECOMP+Portal+Home +containing test cases for controllers, interceptors and other Java +classes. Use Apache Maven to build. ## Release Notes -This file tracks all changes to AT&T-specific versions, including back-end *and* -All of the release notes in the ecomp-portal-BE-common-test area apply. - - --US874768 Created a new project to have common junit test cases which can be run from ecomp-portal-BE-att - -Created PopulateTestData.sql and RemoveTestData.sql to populate and rollback the test data - -Created Coomon configuration files ApplicationCommonContextTestSuite and MockitoTestSuite - which can be extended from respective test classes. - -Added Test cases for AppCatalogController - +Version 1.1.0, July 2017 +- Initial release diff --git a/ecomp-portal-BE-common-test/pom.xml b/ecomp-portal-BE-common-test/pom.xml index 8d38f3b4..a2090cf1 100644 --- a/ecomp-portal-BE-common-test/pom.xml +++ b/ecomp-portal-BE-common-test/pom.xml @@ -1,151 +1,149 @@ - - 4.0.0 - - org.openecomp.portal - ecomp-portal-BE-common-test - 1.1.0-SNAPSHOT - jar - - ecomp-portal-BE-common-test - http://maven.apache.org - - - UTF-8 - - **.js - - - - src/main/java - - ${project.artifactId} - - - maven-compiler-plugin - 3.1 - - 1.8 - 1.8 - - - - maven-war-plugin - 2.6 - - true - false - - - true - - - ${project.version}.${build.number} - ${maven.build.timestamp} - - - - - - org.openecomp.portal - ecompportal-be-common - - - - - - - - - - src/test/java - - **/*Test*.* - - - - src/main/resources - - **/** - - - - - - - - junit - junit - 4.11 - - - org.powermock - powermock-api-mockito - 1.6.1 - - - org.powermock - powermock-core - 1.6.1 - - - org.powermock - powermock-module-junit4 - 1.6.1 - - - org.mockito - mockito-core - 1.8.5 - - - org.openecomp.portal - ecompportal-be-common - ${project.version} - jar - classes - - - - + + 4.0.0 + + org.openecomp.portal + ecomp-portal-BE-common-test + 1.1.0-SNAPSHOT + jar + ecompportal-be-common-test + + + UTF-8 + + **.js + + + + src/main/java + + ${project.artifactId} + + + maven-compiler-plugin + 3.1 + + 1.8 + 1.8 + + + + maven-war-plugin + 2.6 + + true + false + + + true + + + ${project.version}.${build.number} + ${maven.build.timestamp} + + + + + + org.openecomp.portal + ecompportal-be-common + + + + + + + + + + src/test/java + + **/*Test*.* + + + + src/main/resources + + **/** + + + + + + + + junit + junit + 4.11 + + + org.powermock + powermock-api-mockito + 1.6.1 + + + org.powermock + powermock-core + 1.6.1 + + + org.powermock + powermock-module-junit4 + 1.6.1 + + + org.mockito + mockito-core + 1.8.5 + + + org.openecomp.portal + ecompportal-be-common + ${project.version} + jar + classes + + + + diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppCatalogControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppCatalogControllerTest.java index 4e2b842d..23cb7a45 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppCatalogControllerTest.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppCatalogControllerTest.java @@ -1,264 +1,263 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.controller; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; - -import java.io.IOException; -import java.util.ArrayList; -import java.util.Date; -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import javax.servlet.http.HttpSession; - -import org.junit.Before; -import org.junit.Test; -import org.mockito.InjectMocks; -import org.mockito.Mock; -import org.mockito.Mockito; -import org.mockito.MockitoAnnotations; -import org.openecomp.portalapp.portal.controller.AppCatalogController; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.ecomp.model.AppCatalogItem; -import org.openecomp.portalapp.portal.service.AdminRolesService; -import org.openecomp.portalapp.portal.service.AdminRolesServiceImpl; -import org.openecomp.portalapp.portal.service.EPAppCommonServiceImpl; -import org.openecomp.portalapp.portal.service.EPAppService; -import org.openecomp.portalapp.portal.service.PersUserAppService; -import org.openecomp.portalapp.portal.service.PersUserAppServiceImpl; -import org.openecomp.portalapp.portal.test.core.MockEPUser; -import org.openecomp.portalapp.portal.test.framework.MockitoTestSuite; -import org.openecomp.portalapp.portal.transport.AppCatalogPersonalization; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.FieldsValidator.FieldName; -import org.openecomp.portalapp.util.EPUserUtils; -import org.openecomp.portalsdk.core.util.SystemProperties; - -public class AppCatalogControllerTest extends MockitoTestSuite { - - @Mock - AdminRolesService adminRolesService = new AdminRolesServiceImpl(); - - @Mock - EPAppService appService = new EPAppCommonServiceImpl(); - - @InjectMocks - AppCatalogController appCatalogController = new AppCatalogController(); - - PersUserAppService persUserAppService = Mockito.spy(new PersUserAppServiceImpl()); - - @Before - public void setup() { - MockitoAnnotations.initMocks(this); - } - - MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); - - HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); - HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); - - @Mock - EPUserUtils ePUserUtils = new EPUserUtils(); - - @Mock - EPUser epuser; - - NullPointerException nullPointerException = new NullPointerException(); - - MockEPUser mockUser = new MockEPUser(); - - public AppCatalogItem mockAppCatalogItem() { - AppCatalogItem appCatalogItem = new AppCatalogItem(); - appCatalogItem.setId((long) 1); - appCatalogItem.setName("Ecomp Portal"); - appCatalogItem.setImageUrl("Test_URL"); - appCatalogItem.setDescription("Testing"); - appCatalogItem.setNotes("Test"); - appCatalogItem.setUrl("test"); - appCatalogItem.setAlternateUrl("test"); - appCatalogItem.setRestricted(false); - appCatalogItem.setOpen(false); - appCatalogItem.setAccess(true); - appCatalogItem.setSelect(true); - appCatalogItem.setPending(false); - - return appCatalogItem; - } - - @Test - public void getAppCatalogTestIfUserNotAdmin() throws IOException { - EPUser user = mockUser.mockEPUser(); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - List actualAppCatalogList = null; - - List expectedAppCatalog = new ArrayList<>(); - - AppCatalogItem appCatalogItem = mockAppCatalogItem(); - expectedAppCatalog.add(appCatalogItem); - Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); - Mockito.when(appService.getUserAppCatalog(user)).thenReturn(expectedAppCatalog); - actualAppCatalogList = appCatalogController.getAppCatalog(mockedRequest, mockedResponse); - - assertTrue(actualAppCatalogList.contains(appCatalogItem)); - - } - - @Test - public void getAppCatalogTestIfUserIsAdmin() throws IOException { - EPUser user = mockUser.mockEPUser(); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - List actualAppCatalogList = null; - - List expectedAppCatalog = new ArrayList<>(); - - AppCatalogItem appCatalogItem = mockAppCatalogItem(); - - expectedAppCatalog.add(appCatalogItem); - Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); - Mockito.when(appService.getAdminAppCatalog(user)).thenReturn(expectedAppCatalog); - actualAppCatalogList = appCatalogController.getAppCatalog(mockedRequest, mockedResponse); - - assertTrue(actualAppCatalogList.contains(appCatalogItem)); - - } - - @Test - public void getAppCatalogTestIfUserisNull() throws IOException { - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(null); - List actualAppCatalogList = new ArrayList<>(); - ; - actualAppCatalogList = appCatalogController.getAppCatalog(mockedRequest, mockedResponse); - assertNull(actualAppCatalogList); - - } - - @Test - public void getAppCatalogTestIfUserThrowsExceptionTest() throws IOException { - EPUser user = new EPUser(); - user.setFirstName("test"); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - List actualAppCatalogList = new ArrayList<>(); - ; - - Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); - - Mockito.when(appCatalogController.getAppCatalog(mockedRequest, mockedResponse)).thenThrow(nullPointerException); - - actualAppCatalogList = appCatalogController.getAppCatalog(mockedRequest, mockedResponse); - assertNull(actualAppCatalogList); - - } - - @Test - public void putAppCatalogSelectionTestWhenAppIsNull() throws IOException { - - AppCatalogPersonalization persRequest = new AppCatalogPersonalization(); - persRequest.setAppId((long) 1); - persRequest.setPending(false); - persRequest.setSelect(false); - - EPUser user = mockUser.mockEPUser(); - - FieldsValidator expectedFieldValidator = new FieldsValidator(); - - FieldsValidator actualFieldValidator = new FieldsValidator(); - List fields = new ArrayList<>(); - ; - - expectedFieldValidator.setHttpStatusCode((long) 200); - expectedFieldValidator.setFields(fields); - expectedFieldValidator.setErrorCode(null); - - EPApp app = null; - - Mockito.when(appService.getApp(persRequest.getAppId())).thenReturn(app); - - HttpSession session = mockedRequest.getSession(); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - actualFieldValidator = appCatalogController.putAppCatalogSelection(mockedRequest, persRequest, mockedResponse); - assertEquals(expectedFieldValidator, actualFieldValidator); - - } - - @Test - public void putAppCatalogSelectionTest() throws IOException { - - AppCatalogPersonalization persRequest = new AppCatalogPersonalization(); - persRequest.setAppId((long) 1); - persRequest.setPending(false); - persRequest.setSelect(false); - - EPUser user = mockUser.mockEPUser(); - - FieldsValidator expectedFieldValidator = new FieldsValidator(); - - FieldsValidator actualFieldValidator = new FieldsValidator(); - List fields = new ArrayList<>(); - ; - - expectedFieldValidator.setHttpStatusCode((long) 200); - expectedFieldValidator.setFields(fields); - expectedFieldValidator.setErrorCode(null); - - EPApp app = new EPApp(); - - app.setName("Test"); - app.setImageUrl("test"); - app.setDescription("test"); - app.setNotes("test"); - app.setUrl("test"); - app.setId((long) 1); - app.setAppRestEndpoint("test"); - app.setAlternateUrl("test"); - app.setName("test"); - app.setMlAppName("test"); - app.setMlAppAdminId("test"); - app.setUsername("test"); - app.setAppPassword("test"); - app.setOpen(false); - app.setEnabled(false); - app.setUebKey("test"); - app.setUebSecret("test"); - app.setUebTopicName("test"); - app.setAppType(1); - - Mockito.when(appService.getApp(persRequest.getAppId())).thenReturn(app); - - HttpSession session = mockedRequest.getSession(); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - Mockito.doNothing().when(persUserAppService).setPersUserAppValue(user, app, persRequest.getSelect(), - persRequest.getPending()); - - actualFieldValidator = appCatalogController.putAppCatalogSelection(mockedRequest, persRequest, mockedResponse); - - assertEquals(expectedFieldValidator, actualFieldValidator); - - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.AppCatalogController; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.AppCatalogItem; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.AdminRolesServiceImpl; +import org.openecomp.portalapp.portal.service.EPAppCommonServiceImpl; +import org.openecomp.portalapp.portal.service.EPAppService; +import org.openecomp.portalapp.portal.service.PersUserAppService; +import org.openecomp.portalapp.portal.service.PersUserAppServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.transport.AppCatalogPersonalization; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.FieldsValidator.FieldName; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.util.SystemProperties; + +public class AppCatalogControllerTest extends MockitoTestSuite { + + @Mock + AdminRolesService adminRolesService = new AdminRolesServiceImpl(); + + @Mock + EPAppService appService = new EPAppCommonServiceImpl(); + + @InjectMocks + AppCatalogController appCatalogController = new AppCatalogController(); + + PersUserAppService persUserAppService = Mockito.spy(new PersUserAppServiceImpl()); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + + @Mock + EPUser epuser; + + NullPointerException nullPointerException = new NullPointerException(); + + MockEPUser mockUser = new MockEPUser(); + + public AppCatalogItem mockAppCatalogItem() { + AppCatalogItem appCatalogItem = new AppCatalogItem(); + appCatalogItem.setId((long) 1); + appCatalogItem.setName("Ecomp Portal"); + appCatalogItem.setImageUrl("Test_URL"); + appCatalogItem.setDescription("Testing"); + appCatalogItem.setNotes("Test"); + appCatalogItem.setUrl("test"); + appCatalogItem.setAlternateUrl("test"); + appCatalogItem.setRestricted(false); + appCatalogItem.setOpen(false); + appCatalogItem.setAccess(true); + appCatalogItem.setSelect(true); + appCatalogItem.setPending(false); + + return appCatalogItem; + } + + @Test + public void getAppCatalogTestIfUserNotAdmin() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List actualAppCatalogList = null; + + List expectedAppCatalog = new ArrayList<>(); + + AppCatalogItem appCatalogItem = mockAppCatalogItem(); + expectedAppCatalog.add(appCatalogItem); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + Mockito.when(appService.getUserAppCatalog(user)).thenReturn(expectedAppCatalog); + actualAppCatalogList = appCatalogController.getAppCatalog(mockedRequest, mockedResponse); + + assertTrue(actualAppCatalogList.contains(appCatalogItem)); + + } + + @Test + public void getAppCatalogTestIfUserIsAdmin() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List actualAppCatalogList = null; + + List expectedAppCatalog = new ArrayList<>(); + + AppCatalogItem appCatalogItem = mockAppCatalogItem(); + + expectedAppCatalog.add(appCatalogItem); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getAdminAppCatalog(user)).thenReturn(expectedAppCatalog); + actualAppCatalogList = appCatalogController.getAppCatalog(mockedRequest, mockedResponse); + + assertTrue(actualAppCatalogList.contains(appCatalogItem)); + + } + + @Test + public void getAppCatalogTestIfUserisNull() throws IOException { + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(null); + List actualAppCatalogList = new ArrayList<>(); + ; + actualAppCatalogList = appCatalogController.getAppCatalog(mockedRequest, mockedResponse); + assertNull(actualAppCatalogList); + + } + + @Test + public void getAppCatalogTestIfUserThrowsExceptionTest() throws IOException { + EPUser user = new EPUser(); + user.setFirstName("test"); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List actualAppCatalogList = new ArrayList<>(); + ; + + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + + Mockito.when(appCatalogController.getAppCatalog(mockedRequest, mockedResponse)).thenThrow(nullPointerException); + + actualAppCatalogList = appCatalogController.getAppCatalog(mockedRequest, mockedResponse); + assertNull(actualAppCatalogList); + + } + + @Test + public void putAppCatalogSelectionTestWhenAppIsNull() throws IOException { + + AppCatalogPersonalization persRequest = new AppCatalogPersonalization(); + persRequest.setAppId((long) 1); + persRequest.setPending(false); + persRequest.setSelect(false); + + EPUser user = mockUser.mockEPUser(); + + FieldsValidator expectedFieldValidator = new FieldsValidator(); + + FieldsValidator actualFieldValidator = new FieldsValidator(); + List fields = new ArrayList<>(); + ; + + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(fields); + expectedFieldValidator.setErrorCode(null); + + EPApp app = null; + + Mockito.when(appService.getApp(persRequest.getAppId())).thenReturn(app); + + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + actualFieldValidator = appCatalogController.putAppCatalogSelection(mockedRequest, persRequest, mockedResponse); + assertEquals(expectedFieldValidator, actualFieldValidator); + + } + + @Test + public void putAppCatalogSelectionTest() throws IOException { + + AppCatalogPersonalization persRequest = new AppCatalogPersonalization(); + persRequest.setAppId((long) 1); + persRequest.setPending(false); + persRequest.setSelect(false); + + EPUser user = mockUser.mockEPUser(); + + FieldsValidator expectedFieldValidator = new FieldsValidator(); + + FieldsValidator actualFieldValidator = new FieldsValidator(); + List fields = new ArrayList<>(); + ; + + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(fields); + expectedFieldValidator.setErrorCode(null); + + EPApp app = new EPApp(); + + app.setName("Test"); + app.setImageUrl("test"); + app.setDescription("test"); + app.setNotes("test"); + app.setUrl("test"); + app.setId((long) 1); + app.setAppRestEndpoint("test"); + app.setAlternateUrl("test"); + app.setName("test"); + app.setMlAppName("test"); + app.setMlAppAdminId("test"); + app.setUsername("test"); + app.setAppPassword("test"); + app.setOpen(false); + app.setEnabled(false); + app.setUebKey("test"); + app.setUebSecret("test"); + app.setUebTopicName("test"); + app.setAppType(1); + + Mockito.when(appService.getApp(persRequest.getAppId())).thenReturn(app); + + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.doNothing().when(persUserAppService).setPersUserAppValue(user, app, persRequest.getSelect(), + persRequest.getPending()); + + actualFieldValidator = appCatalogController.putAppCatalogSelection(mockedRequest, persRequest, mockedResponse); + + assertEquals(expectedFieldValidator, actualFieldValidator); + + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppContactUsControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppContactUsControllerTest.java index 9b2add8e..12334d87 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppContactUsControllerTest.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppContactUsControllerTest.java @@ -1,281 +1,274 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.controller; - -import static org.junit.Assert.assertEquals; - -import java.util.ArrayList; -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.junit.Before; -import org.junit.Test; -import org.mockito.InjectMocks; -import org.mockito.Mock; -import org.mockito.Mockito; -import org.mockito.MockitoAnnotations; -import org.openecomp.portalapp.portal.controller.AppContactUsController; -import org.openecomp.portalapp.portal.ecomp.model.AppCategoryFunctionsItem; -import org.openecomp.portalapp.portal.ecomp.model.AppContactUsItem; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.service.AppContactUsService; -import org.openecomp.portalapp.portal.service.AppContactUsServiceImpl; -import org.openecomp.portalapp.portal.test.framework.MockitoTestSuite; -import org.openecomp.portalapp.util.EPUserUtils; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; - -public class AppContactUsControllerTest { - - @Mock - AppContactUsService contactUsService = new AppContactUsServiceImpl(); - - @InjectMocks - AppContactUsController appContactUsController = new AppContactUsController(); - - @Before - public void setup() { - MockitoAnnotations.initMocks(this); - } - - MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); - - HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); - HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); - NullPointerException nullPointerException = new NullPointerException(); - - @Mock - EPUserUtils ePUserUtils = new EPUserUtils(); - - public List mockResponse() { - List appContactUsItemList = new ArrayList(); - AppContactUsItem appContactUsItem = new AppContactUsItem(); - appContactUsItem.setAppId((long) 1); - appContactUsItem.setAppName("Ecmop Portal"); - appContactUsItem.setDescription("Test"); - appContactUsItem.setContactName("Test"); - appContactUsItem.setContactEmail("Test@att.com"); - appContactUsItem.setUrl("Test_URL"); - appContactUsItem.setActiveYN("Y"); - appContactUsItemList.add(appContactUsItem); - - return appContactUsItemList; - - } - - public PortalRestResponse> successPortalRestResponse() { - PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); - List appContactUsItemList = mockResponse(); - expectedportalRestResponse.setMessage("success"); - expectedportalRestResponse.setResponse(appContactUsItemList); - PortalRestStatusEnum portalRestStatusEnum = null; - expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); - return expectedportalRestResponse; - - } - - public PortalRestResponse> exceptionPortalRestResponse() { - PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); - expectedportalRestResponse.setMessage(null); - expectedportalRestResponse.setResponse(null); - PortalRestStatusEnum portalRestStatusEnum = null; - expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); - return expectedportalRestResponse; - - } - - @Test - public void getAppContactUsList() throws Exception { - PortalRestResponse> expectedportalRestResponse = successPortalRestResponse(); - List appContactUsItemList = mockResponse(); - PortalRestResponse> actualPortalRestResponse = new PortalRestResponse>(); - Mockito.when(contactUsService.getAppContactUs()).thenReturn(appContactUsItemList); - actualPortalRestResponse = appContactUsController.getAppContactUsList(mockedRequest); - assertEquals(actualPortalRestResponse, expectedportalRestResponse); - } - - @Test - public void getAppContactUsListCatchesExeptionTest() throws Exception { - - PortalRestResponse> expectedportalRestResponse = exceptionPortalRestResponse(); - PortalRestResponse> actualPortalRestResponse = new PortalRestResponse>(); - Mockito.when(contactUsService.getAppContactUs()).thenThrow(nullPointerException); - actualPortalRestResponse = appContactUsController.getAppContactUsList(mockedRequest); - assertEquals(actualPortalRestResponse, expectedportalRestResponse); - } - - @Test - public void getAppsAndContactsTest() throws Exception { - PortalRestResponse> expectedportalRestResponse = successPortalRestResponse(); - List appContactUsItemList = mockResponse(); - PortalRestResponse> actualPortalRestResponse = new PortalRestResponse>(); - Mockito.when(contactUsService.getAppsAndContacts()).thenReturn(appContactUsItemList); - actualPortalRestResponse = appContactUsController.getAppsAndContacts(mockedRequest); - assertEquals(actualPortalRestResponse, expectedportalRestResponse); - - } - - @Test - public void getAppsAndContactsCatchesExceptionTest() throws Exception { - PortalRestResponse> expectedportalRestResponse = exceptionPortalRestResponse(); - PortalRestResponse> actualPortalRestResponse = new PortalRestResponse>(); - Mockito.when(contactUsService.getAppsAndContacts()).thenThrow(nullPointerException); - actualPortalRestResponse = appContactUsController.getAppsAndContacts(mockedRequest); - assertEquals(actualPortalRestResponse, expectedportalRestResponse); - - } - - @Test - public void getAppCategoryFunctionsTest() throws Exception { - PortalRestResponse> actualportalRestResponse = null; - - List contents = new ArrayList(); - - AppCategoryFunctionsItem appCategoryFunctionsItem = new AppCategoryFunctionsItem(); - AppCategoryFunctionsItem appCategoryFunctionsItem1 = new AppCategoryFunctionsItem(); - - appCategoryFunctionsItem.setRowId("1"); - appCategoryFunctionsItem.setAppId("1"); - appCategoryFunctionsItem.setApplication("Ecomp-portal"); - appCategoryFunctionsItem.setCategory("test"); - appCategoryFunctionsItem.setFunctions("test"); - - appCategoryFunctionsItem1.setRowId("2"); - appCategoryFunctionsItem1.setAppId("2"); - appCategoryFunctionsItem1.setApplication("Ecomp-portal-test"); - appCategoryFunctionsItem1.setCategory("test"); - appCategoryFunctionsItem1.setFunctions("test"); - contents.add(appCategoryFunctionsItem); - contents.add(appCategoryFunctionsItem1); - - PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); - expectedportalRestResponse.setMessage("success"); - expectedportalRestResponse.setResponse(contents); - PortalRestStatusEnum portalRestStatusEnum = null; - expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); - - Mockito.when(contactUsService.getAppCategoryFunctions()).thenReturn(contents); - actualportalRestResponse = appContactUsController.getAppCategoryFunctions(mockedRequest); - assertEquals(actualportalRestResponse, expectedportalRestResponse); - - } - - @Test - public void getAppCategoryFunctionsCatchesExceptionTest() throws Exception { - PortalRestResponse> actualportalRestResponse = null; - PortalRestResponse> expectedportalRestResponse = exceptionPortalRestResponse(); - Mockito.when(contactUsService.getAppCategoryFunctions()).thenThrow(nullPointerException); - actualportalRestResponse = appContactUsController.getAppCategoryFunctions(mockedRequest); - assertEquals(actualportalRestResponse, expectedportalRestResponse); - - } - - @Test - public void saveTest() throws Exception { - PortalRestResponse actualSaveAppContactUS = null; - - AppContactUsItem contactUs = new AppContactUsItem(); - contactUs.setAppId((long) 1); - contactUs.setAppName("Ecmop Portal"); - contactUs.setDescription("Test"); - contactUs.setContactName("Test"); - contactUs.setContactEmail("Test@att.com"); - contactUs.setUrl("Test_URL"); - contactUs.setActiveYN("Y"); - - Mockito.when(contactUsService.saveAppContactUs(contactUs)).thenReturn("SUCCESS"); - actualSaveAppContactUS = appContactUsController.save(contactUs); - assertEquals(actualSaveAppContactUS.getMessage(), "SUCCESS"); - } - - @Test - public void saveExceptionTest() throws Exception { - PortalRestResponse actualSaveAppContactUS = null; - - AppContactUsItem contactUs = new AppContactUsItem(); - contactUs.setAppId((long) 1); - contactUs.setAppName("Ecmop Portal"); - contactUs.setDescription("Test"); - contactUs.setContactName("Test"); - contactUs.setContactEmail("Test@att.com"); - contactUs.setUrl("Test_URL"); - contactUs.setActiveYN("Y"); - - Mockito.when(contactUsService.saveAppContactUs(contactUs)).thenThrow(new Exception()); - actualSaveAppContactUS = appContactUsController.save(contactUs); - assertEquals(actualSaveAppContactUS.getMessage(), "failure"); - } - - @Test - public void saveWhenAppContactUsItemNullTest() throws Exception { - PortalRestResponse actualSaveAppContactUS = null; - AppContactUsItem contactUs = null; - actualSaveAppContactUS = appContactUsController.save(contactUs); - assertEquals(actualSaveAppContactUS.getMessage(), "failure"); - - } - - @Test - public void saveAllTest() throws Exception { - - List contactUs = mockResponse(); - PortalRestResponse actualSaveAppContactUS = null; - Mockito.when(contactUsService.saveAppContactUs(contactUs)).thenReturn("SUCCESS"); - actualSaveAppContactUS = appContactUsController.save(contactUs); - assertEquals(actualSaveAppContactUS.getMessage(), "SUCCESS"); - } - - @Test - public void saveAllExceptionTest() throws Exception { - - List contactUs = mockResponse(); - PortalRestResponse actualSaveAppContactUS = null; - Mockito.when(contactUsService.saveAppContactUs(contactUs)).thenThrow(new Exception()); - actualSaveAppContactUS = appContactUsController.save(contactUs); - assertEquals(actualSaveAppContactUS.getMessage(), "failure"); - } - - @Test - public void deleteTest() throws Exception { - - PortalRestResponse actualSaveAppContactUS = null; - Long id = (long) 1; - String saveAppContactUs = "SUCCESS"; - Mockito.when(contactUsService.deleteContactUs(id)).thenReturn(saveAppContactUs); - actualSaveAppContactUS = appContactUsController.delete(id); - assertEquals(actualSaveAppContactUS.getMessage(), "SUCCESS"); - } - - @Test - public void deleteExceptionTest() throws Exception { - - PortalRestResponse actualSaveAppContactUS = null; - Long id = (long) 1; - Mockito.when(contactUsService.deleteContactUs(id)).thenThrow(new Exception()); - actualSaveAppContactUS = appContactUsController.delete(id); - assertEquals(actualSaveAppContactUS.getMessage(), "failure"); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.AppContactUsController; +import org.openecomp.portalapp.portal.ecomp.model.AppCategoryFunctionsItem; +import org.openecomp.portalapp.portal.ecomp.model.AppContactUsItem; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.AppContactUsService; +import org.openecomp.portalapp.portal.service.AppContactUsServiceImpl; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; + +public class AppContactUsControllerTest extends MockitoTestSuite{ + + @Mock + AppContactUsService contactUsService = new AppContactUsServiceImpl(); + + @InjectMocks + AppContactUsController appContactUsController = new AppContactUsController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + + public List mockResponse() { + List appContactUsItemList = new ArrayList(); + AppContactUsItem appContactUsItem = new AppContactUsItem(); + appContactUsItem.setAppId((long) 1); + appContactUsItem.setAppName("ECOMP Portal"); + appContactUsItem.setDescription("Test"); + appContactUsItem.setContactName("Test"); + appContactUsItem.setContactEmail("person@onap.org"); + appContactUsItem.setUrl("Test_URL"); + appContactUsItem.setActiveYN("Y"); + appContactUsItemList.add(appContactUsItem); + + return appContactUsItemList; + + } + + public PortalRestResponse> successPortalRestResponse() { + PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); + List appContactUsItemList = mockResponse(); + expectedportalRestResponse.setMessage("success"); + expectedportalRestResponse.setResponse(appContactUsItemList); + expectedportalRestResponse.setStatus(PortalRestStatusEnum.OK); + return expectedportalRestResponse; + + } + + public PortalRestResponse> exceptionPortalRestResponse() { + PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse(null); + expectedportalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + return expectedportalRestResponse; + + } + + @Test + public void getAppContactUsList() throws Exception { + PortalRestResponse> expectedportalRestResponse = successPortalRestResponse(); + List appContactUsItemList = mockResponse(); + PortalRestResponse> actualPortalRestResponse = new PortalRestResponse>(); + Mockito.when(contactUsService.getAppContactUs()).thenReturn(appContactUsItemList); + actualPortalRestResponse = appContactUsController.getAppContactUsList(mockedRequest); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void getAppContactUsListCatchesExeptionTest() throws Exception { + + PortalRestResponse> expectedportalRestResponse = exceptionPortalRestResponse(); + PortalRestResponse> actualPortalRestResponse = new PortalRestResponse>(); + Mockito.when(contactUsService.getAppContactUs()).thenThrow(nullPointerException); + actualPortalRestResponse = appContactUsController.getAppContactUsList(mockedRequest); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void getAppsAndContactsTest() throws Exception { + PortalRestResponse> expectedportalRestResponse = successPortalRestResponse(); + List appContactUsItemList = mockResponse(); + PortalRestResponse> actualPortalRestResponse = new PortalRestResponse>(); + Mockito.when(contactUsService.getAppsAndContacts()).thenReturn(appContactUsItemList); + actualPortalRestResponse = appContactUsController.getAppsAndContacts(mockedRequest); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + + } + + @Test + public void getAppsAndContactsCatchesExceptionTest() throws Exception { + PortalRestResponse> expectedportalRestResponse = exceptionPortalRestResponse(); + PortalRestResponse> actualPortalRestResponse = new PortalRestResponse>(); + Mockito.when(contactUsService.getAppsAndContacts()).thenThrow(nullPointerException); + actualPortalRestResponse = appContactUsController.getAppsAndContacts(mockedRequest); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + + } + + @Test + public void getAppCategoryFunctionsTest() throws Exception { + PortalRestResponse> actualportalRestResponse = null; + + List contents = new ArrayList(); + + AppCategoryFunctionsItem appCategoryFunctionsItem = new AppCategoryFunctionsItem(); + AppCategoryFunctionsItem appCategoryFunctionsItem1 = new AppCategoryFunctionsItem(); + + appCategoryFunctionsItem.setRowId("1"); + appCategoryFunctionsItem.setAppId("1"); + appCategoryFunctionsItem.setApplication("Ecomp-portal"); + appCategoryFunctionsItem.setCategory("test"); + appCategoryFunctionsItem.setFunctions("test"); + + appCategoryFunctionsItem1.setRowId("2"); + appCategoryFunctionsItem1.setAppId("2"); + appCategoryFunctionsItem1.setApplication("Ecomp-portal-test"); + appCategoryFunctionsItem1.setCategory("test"); + appCategoryFunctionsItem1.setFunctions("test"); + contents.add(appCategoryFunctionsItem); + contents.add(appCategoryFunctionsItem1); + + PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); + expectedportalRestResponse.setMessage("success"); + expectedportalRestResponse.setResponse(contents); + expectedportalRestResponse.setStatus(PortalRestStatusEnum.OK); + + Mockito.when(contactUsService.getAppCategoryFunctions()).thenReturn(contents); + actualportalRestResponse = appContactUsController.getAppCategoryFunctions(mockedRequest); + assertEquals(actualportalRestResponse, expectedportalRestResponse); + + } + + @Test + public void getAppCategoryFunctionsCatchesExceptionTest() throws Exception { + PortalRestResponse> actualportalRestResponse = null; + PortalRestResponse> expectedportalRestResponse = exceptionPortalRestResponse(); + Mockito.when(contactUsService.getAppCategoryFunctions()).thenThrow(nullPointerException); + actualportalRestResponse = appContactUsController.getAppCategoryFunctions(mockedRequest); + assertEquals(actualportalRestResponse, expectedportalRestResponse); + + } + + @Test + public void saveTest() throws Exception { + PortalRestResponse actualSaveAppContactUS = null; + + AppContactUsItem contactUs = new AppContactUsItem(); + contactUs.setAppId((long) 1); + contactUs.setAppName("Ecomp Portal"); + contactUs.setDescription("Test"); + contactUs.setContactName("Test"); + contactUs.setContactEmail("person@onap.org"); + contactUs.setUrl("Test_URL"); + contactUs.setActiveYN("Y"); + + Mockito.when(contactUsService.saveAppContactUs(contactUs)).thenReturn("SUCCESS"); + actualSaveAppContactUS = appContactUsController.save(contactUs); + assertEquals(actualSaveAppContactUS.getMessage(), "SUCCESS"); + } + + @Test + public void saveExceptionTest() throws Exception { + PortalRestResponse actualSaveAppContactUS = null; + + AppContactUsItem contactUs = new AppContactUsItem(); + contactUs.setAppId((long) 1); + contactUs.setAppName("Ecomp Portal"); + contactUs.setDescription("Test"); + contactUs.setContactName("Test"); + contactUs.setContactEmail("person@onap.org"); + contactUs.setUrl("Test_URL"); + contactUs.setActiveYN("Y"); + + Mockito.when(contactUsService.saveAppContactUs(contactUs)).thenThrow(new Exception()); + actualSaveAppContactUS = appContactUsController.save(contactUs); + assertEquals(actualSaveAppContactUS.getMessage(), "failure"); + } + + @Test + public void saveWhenAppContactUsItemNullTest() throws Exception { + PortalRestResponse actualSaveAppContactUS = null; + AppContactUsItem contactUs = null; + actualSaveAppContactUS = appContactUsController.save(contactUs); + assertEquals(actualSaveAppContactUS.getMessage(), "failure"); + + } + + @Test + public void saveAllTest() throws Exception { + + List contactUs = mockResponse(); + PortalRestResponse actualSaveAppContactUS = null; + Mockito.when(contactUsService.saveAppContactUs(contactUs)).thenReturn("SUCCESS"); + actualSaveAppContactUS = appContactUsController.save(contactUs); + assertEquals(actualSaveAppContactUS.getMessage(), "SUCCESS"); + } + + @Test + public void saveAllExceptionTest() throws Exception { + + List contactUs = mockResponse(); + PortalRestResponse actualSaveAppContactUS = null; + Mockito.when(contactUsService.saveAppContactUs(contactUs)).thenThrow(new Exception()); + actualSaveAppContactUS = appContactUsController.save(contactUs); + assertEquals(actualSaveAppContactUS.getMessage(), "failure"); + } + + @Test + public void deleteTest() throws Exception { + + PortalRestResponse actualSaveAppContactUS = null; + Long id = (long) 1; + String saveAppContactUs = "SUCCESS"; + Mockito.when(contactUsService.deleteContactUs(id)).thenReturn(saveAppContactUs); + actualSaveAppContactUS = appContactUsController.delete(id); + assertEquals(actualSaveAppContactUS.getMessage(), "SUCCESS"); + } + + @Test + public void deleteExceptionTest() throws Exception { + + PortalRestResponse actualSaveAppContactUS = null; + Long id = (long) 1; + Mockito.when(contactUsService.deleteContactUs(id)).thenThrow(new Exception()); + actualSaveAppContactUS = appContactUsController.delete(id); + assertEquals(actualSaveAppContactUS.getMessage(), "failure"); + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppsControllerExternalRequestTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppsControllerExternalRequestTest.java new file mode 100644 index 00000000..ae761a14 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppsControllerExternalRequestTest.java @@ -0,0 +1,503 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.AppsControllerExternalRequest; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.EPAppService; +import org.openecomp.portalapp.portal.service.PortalAdminService; +import org.openecomp.portalapp.portal.service.UserService; +import org.openecomp.portalapp.portal.service.UserServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.OnboardingApp; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; + +public class AppsControllerExternalRequestTest extends MockitoTestSuite { + + @Mock + AdminRolesService adminRolesService; + + @Mock + EPAppService appService; + + @Mock + PortalAdminService portalAdminService; + + @Mock + UserService userService = new UserServiceImpl(); + + @InjectMocks + AppsControllerExternalRequest appsControllerExternalRequest = new AppsControllerExternalRequest(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + MockEPUser mockUser = new MockEPUser(); + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + + @Test + public void postPortalAdminIfUSerNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Missing required field: email, loginId, or loginPwd"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + EPUser user = mockUser.mockEPUser(); + user.setEmail("guestT@Research.att.com"); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postPortalAdmin(mockedRequest, mockedResponse, user); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void postPortalAdminTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("java.lang.NullPointerException"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + EPUser user = mockUser.mockEPUser(); + user.setEmail("guestT@Research.att.com"); + user.setLoginPwd("pwd"); + user.setLoginId("Test"); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(userService.getUserByUserId(user.getOrgUserId())).thenThrow(nullPointerException); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postPortalAdmin(mockedRequest, mockedResponse, user); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void postPortalAdminCreateUserIfNotFoundTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + EPUser user = mockUser.mockEPUser(); + user.setEmail("guestT@Research.att.com"); + user.setLoginPwd("pwd"); + user.setLoginId("Test"); + List expectedList = null; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(userService.getUserByUserId(user.getOrgUserId())).thenReturn(expectedList); + Mockito.when(userService.saveNewUser(user, "Yes")).thenReturn(null); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postPortalAdmin(mockedRequest, mockedResponse, user); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void postPortalAdminCreateUserIfFoundTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + EPUser user = mockUser.mockEPUser(); + user.setEmail("guestT@Research.att.com"); + user.setLoginPwd("pwd"); + user.setLoginId("Test"); + List expectedList = new ArrayList(); + expectedList.add(user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(userService.getUserByUserId(user.getOrgUserId())).thenReturn(expectedList); + Mockito.when(userService.saveNewUser(user, "Yes")).thenReturn(null); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postPortalAdmin(mockedRequest, mockedResponse, user); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void postPortalAdminCreateUserIfNotSuperAdminTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + EPUser user = mockUser.mockEPUser(); + user.setEmail("guestT@Research.att.com"); + user.setLoginPwd("pwd"); + user.setLoginId("Test"); + List expectedList = new ArrayList(); + expectedList.add(user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(userService.getUserByUserId(user.getOrgUserId())).thenReturn(expectedList); + Mockito.when(userService.saveNewUser(user, "Yes")).thenReturn(null); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + Mockito.when(portalAdminService.createPortalAdmin(user.getOrgUserId())).thenReturn(expectedFieldValidator); + + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postPortalAdmin(mockedRequest, mockedResponse, user); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void postPortalAdminCreateUserIfFieldValidatorErrorTest() throws Exception { + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 500); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("FieldsValidator [httpStatusCode=500, errorCode=null, fields=null]"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + EPUser user = mockUser.mockEPUser(); + user.setEmail("guestT@Research.att.com"); + user.setLoginPwd("pwd"); + user.setLoginId("Test"); + List expectedList = new ArrayList(); + expectedList.add(user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(userService.getUserByUserId(user.getOrgUserId())).thenReturn(expectedList); + Mockito.when(userService.saveNewUser(user, "Yes")).thenReturn(null); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + Mockito.when(portalAdminService.createPortalAdmin(user.getOrgUserId())).thenReturn(expectedFieldValidator); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postPortalAdmin(mockedRequest, mockedResponse, user); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void getOnboardAppExternalTest() { + EPApp epApp = new EPApp(); + Long appId = (long) 1; + Mockito.when(appService.getApp(appId)).thenReturn(epApp); + OnboardingApp expectedApp = new OnboardingApp(); + Mockito.doNothing().when(appService).createOnboardingFromApp(epApp, expectedApp); + OnboardingApp actualApp = appsControllerExternalRequest.getOnboardAppExternal(mockedRequest, mockedResponse, + appId); + assertEquals(expectedApp.getClass(), actualApp.getClass()); + } + + @Test + public void postOnboardAppExternalExceptionTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Unexpected field: id"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = (long) 1; + + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postOnboardAppExternal(mockedRequest, mockedResponse, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void postOnboardAppExternalTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage( + "Missing required field: name, url, restUrl, restrictedApp, isOpen, isEnabled, myLoginsAppOwner"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = null; + + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postOnboardAppExternal(mockedRequest, mockedResponse, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + + } + + @Test + public void postOnboardAppExternalNotNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Failed to find user: Test_Owener"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = null; + expectedOnboardingApp.name = "Test"; + expectedOnboardingApp.url = "Test"; + expectedOnboardingApp.restUrl = "Test"; + expectedOnboardingApp.myLoginsAppOwner = "Test_Owener"; + expectedOnboardingApp.restrictedApp = false; + expectedOnboardingApp.isOpen = false; + expectedOnboardingApp.isEnabled = false; + Mockito.when(userService.getUserByUserId(expectedOnboardingApp.myLoginsAppOwner)).thenReturn(null); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postOnboardAppExternal(mockedRequest, mockedResponse, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + + } + + @Test + public void postOnboardAppExternalIfUSerListNotNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("User lacks Portal admin role: null"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = null; + expectedOnboardingApp.name = "Test"; + expectedOnboardingApp.url = "Test"; + expectedOnboardingApp.restUrl = "Test"; + expectedOnboardingApp.myLoginsAppOwner = "Test_Owener"; + expectedOnboardingApp.restrictedApp = false; + expectedOnboardingApp.isOpen = false; + expectedOnboardingApp.isEnabled = false; + List userList = new ArrayList(); + EPUser user = mockUser.mockEPUser(); + userList.add(user); + Mockito.when(userService.getUserByUserId(expectedOnboardingApp.myLoginsAppOwner)).thenReturn(userList); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postOnboardAppExternal(mockedRequest, mockedResponse, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + + } + + @Test + public void postOnboardAppExternalIfSuperAdminTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = null; + expectedOnboardingApp.name = "Test"; + expectedOnboardingApp.url = "Test"; + expectedOnboardingApp.restUrl = "Test"; + expectedOnboardingApp.myLoginsAppOwner = "Test_Owener"; + expectedOnboardingApp.restrictedApp = false; + expectedOnboardingApp.isOpen = false; + expectedOnboardingApp.isEnabled = false; + List userList = new ArrayList(); + EPUser user = mockUser.mockEPUser(); + userList.add(user); + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(userService.getUserByUserId(expectedOnboardingApp.myLoginsAppOwner)).thenReturn(userList); + Mockito.when(appService.addOnboardingApp(expectedOnboardingApp, user)).thenReturn(expectedFieldValidator); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postOnboardAppExternal(mockedRequest, mockedResponse, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + + } + + @Test + public void postOnboardAppExternalFieldValidatorTestTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("FieldsValidator [httpStatusCode=500, errorCode=null, fields=null]"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = null; + expectedOnboardingApp.name = "Test"; + expectedOnboardingApp.url = "Test"; + expectedOnboardingApp.restUrl = "Test"; + expectedOnboardingApp.myLoginsAppOwner = "Test_Owener"; + expectedOnboardingApp.restrictedApp = false; + expectedOnboardingApp.isOpen = false; + expectedOnboardingApp.isEnabled = false; + List userList = new ArrayList(); + EPUser user = mockUser.mockEPUser(); + userList.add(user); + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 500); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(userService.getUserByUserId(expectedOnboardingApp.myLoginsAppOwner)).thenReturn(userList); + Mockito.when(appService.addOnboardingApp(expectedOnboardingApp, user)).thenReturn(expectedFieldValidator); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .postOnboardAppExternal(mockedRequest, mockedResponse, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + + } + + @Test + public void putOnboardAppExternalifAppNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Unexpected value for field: id"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + Long appId = null; + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = null; + + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .putOnboardAppExternal(mockedRequest, mockedResponse, appId, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void putOnboardAppExternalIfOnboardingAppDetailsNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage( + "Missing required field: name, url, restUrl, restrictedApp, isOpen, isEnabled, myLoginsAppOwner"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + Long appId = (long) 1; + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = (long) 1; + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .putOnboardAppExternal(mockedRequest, mockedResponse, appId, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void putOnboardAppExternalIfOnboardingIfUserListNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Failed to find user: Test_Owener"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + Long appId = (long) 1; + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = (long) 1; + expectedOnboardingApp.name = "Test"; + expectedOnboardingApp.url = "Test"; + expectedOnboardingApp.restUrl = "Test"; + expectedOnboardingApp.myLoginsAppOwner = "Test_Owener"; + expectedOnboardingApp.restrictedApp = false; + expectedOnboardingApp.isOpen = false; + expectedOnboardingApp.isEnabled = false; + Mockito.when(userService.getUserByUserId(expectedOnboardingApp.myLoginsAppOwner)).thenReturn(null); + + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .putOnboardAppExternal(mockedRequest, mockedResponse, appId, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void putOnboardAppExternalIfOnboardingIfUserListNotNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("User lacks Portal admin role: null"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + Long appId = (long) 1; + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = (long) 1; + expectedOnboardingApp.name = "Test"; + expectedOnboardingApp.url = "Test"; + expectedOnboardingApp.restUrl = "Test"; + expectedOnboardingApp.myLoginsAppOwner = "Test_Owener"; + expectedOnboardingApp.restrictedApp = false; + expectedOnboardingApp.isOpen = false; + expectedOnboardingApp.isEnabled = false; + List userList = new ArrayList(); + EPUser user = mockUser.mockEPUser(); + userList.add(user); + Mockito.when(userService.getUserByUserId(expectedOnboardingApp.myLoginsAppOwner)).thenReturn(userList); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .putOnboardAppExternal(mockedRequest, mockedResponse, appId, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void putOnboardAppExternalIfOnboardingIfSuperAdminTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + Long appId = (long) 1; + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = (long) 1; + expectedOnboardingApp.name = "Test"; + expectedOnboardingApp.url = "Test"; + expectedOnboardingApp.restUrl = "Test"; + expectedOnboardingApp.myLoginsAppOwner = "Test_Owener"; + expectedOnboardingApp.restrictedApp = false; + expectedOnboardingApp.isOpen = false; + expectedOnboardingApp.isEnabled = false; + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + List userList = new ArrayList(); + EPUser user = mockUser.mockEPUser(); + userList.add(user); + Mockito.when(appService.modifyOnboardingApp(expectedOnboardingApp, user)).thenReturn(expectedFieldValidator); + Mockito.when(userService.getUserByUserId(expectedOnboardingApp.myLoginsAppOwner)).thenReturn(userList); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .putOnboardAppExternal(mockedRequest, mockedResponse, appId, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } + + @Test + public void putOnboardAppExternalIfOnboardingIfStatusNotSuccessTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("FieldsValidator [httpStatusCode=500, errorCode=null, fields=null]"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + Long appId = (long) 1; + OnboardingApp expectedOnboardingApp = new OnboardingApp(); + expectedOnboardingApp.id = (long) 1; + expectedOnboardingApp.name = "Test"; + expectedOnboardingApp.url = "Test"; + expectedOnboardingApp.restUrl = "Test"; + expectedOnboardingApp.myLoginsAppOwner = "Test_Owener"; + expectedOnboardingApp.restrictedApp = false; + expectedOnboardingApp.isOpen = false; + expectedOnboardingApp.isEnabled = false; + + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 500); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + + List userList = new ArrayList(); + EPUser user = mockUser.mockEPUser(); + userList.add(user); + Mockito.when(appService.modifyOnboardingApp(expectedOnboardingApp, user)).thenReturn(expectedFieldValidator); + Mockito.when(userService.getUserByUserId(expectedOnboardingApp.myLoginsAppOwner)).thenReturn(userList); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + PortalRestResponse actualPortalRestResponse = appsControllerExternalRequest + .putOnboardAppExternal(mockedRequest, mockedResponse, appId, expectedOnboardingApp); + assertEquals(actualPortalRestResponse, expectedportalRestResponse); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppsControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppsControllerTest.java new file mode 100644 index 00000000..4b6849a6 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/AppsControllerTest.java @@ -0,0 +1,914 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.*; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.AppsController; +import org.openecomp.portalapp.portal.domain.AdminUserApplications; +import org.openecomp.portalapp.portal.domain.AppIdAndNameTransportModel; +import org.openecomp.portalapp.portal.domain.AppsResponse; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EcompApp; +import org.openecomp.portalapp.portal.domain.UserRole; +import org.openecomp.portalapp.portal.domain.UserRoles; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.AdminRolesServiceImpl; +import org.openecomp.portalapp.portal.service.EPAppCommonServiceImpl; +import org.openecomp.portalapp.portal.service.EPAppService; +import org.openecomp.portalapp.portal.service.EPLeftMenuService; +import org.openecomp.portalapp.portal.service.EPLeftMenuServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.transport.EPAppsManualPreference; +import org.openecomp.portalapp.portal.transport.EPAppsSortPreference; +import org.openecomp.portalapp.portal.transport.EPDeleteAppsManualSortPref; +import org.openecomp.portalapp.portal.transport.EPWidgetsSortPreference; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.LocalRole; +import org.openecomp.portalapp.portal.transport.OnboardingApp; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalsdk.core.web.support.AppUtils; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import org.springframework.http.HttpEntity; +import org.springframework.http.MediaType; + +@RunWith(PowerMockRunner.class) +@PrepareForTest({SystemProperties.class,AppUtils.class, EPUserUtils.class, MediaType.class}) +public class AppsControllerTest extends MockitoTestSuite{ + + @InjectMocks + AppsController appsController = new AppsController(); + + @Mock + AdminRolesService adminRolesService = new AdminRolesServiceImpl(); + + @Mock + EPAppService appService = new EPAppCommonServiceImpl(); + + @Mock + EPLeftMenuService leftMenuService = new EPLeftMenuServiceImpl(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + + @Mock + AppUtils appUtils = new AppUtils(); + + MockEPUser mockUser = new MockEPUser(); + + @Test + public void getUserAppsTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedEcompApps = new ArrayList(); + + EcompApp ecompApp = new EcompApp(); + ecompApp.setId((long) 1); + ecompApp.setName("Test_app"); + ecompApp.setUrl("Test_URL"); + ecompApp.setUebKey("Test_key"); + ecompApp.setAlternateUrl("Test_alt_URL"); + expectedEcompApps.add(ecompApp); + List actualEcompApps = new ArrayList(); + Mockito.when(appService.transformAppsToEcompApps(appService.getUserApps(user))).thenReturn(expectedEcompApps); + actualEcompApps = appsController.getUserApps(mockedRequest, mockedResponse); + assertEquals(expectedEcompApps, actualEcompApps); + } + + @Test + public void getUserAppsNoUserTest() { + EPUser user = null; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(appService.transformAppsToEcompApps(appService.getUserApps(user))).thenReturn(null); + assertNull(appsController.getUserApps(mockedRequest, mockedResponse)); + + } + + @Test + public void getUserAppsExceptionTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(appService.transformAppsToEcompApps(appService.getUserApps(user))).thenThrow(nullPointerException); + assertNull(appsController.getUserApps(mockedRequest, mockedResponse)); + + } + + @Test + public void getPersUserAppsIfUserIsAdminTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedEcompApps = new ArrayList(); + + EcompApp ecompApp = new EcompApp(); + ecompApp.setId((long) 1); + ecompApp.setName("Test_app"); + ecompApp.setUrl("Test_URL"); + ecompApp.setUebKey("Test_key"); + ecompApp.setAlternateUrl("Test_alt_URL"); + expectedEcompApps.add(ecompApp); + List actualEcompApps = new ArrayList(); + + List expectedApps = new ArrayList(); + + EPApp app = new EPApp(); + + app.setName("Test"); + app.setImageUrl("test"); + app.setDescription("test"); + app.setNotes("test"); + app.setUrl("test"); + app.setId((long) 1); + app.setAppRestEndpoint("test"); + app.setAlternateUrl("test"); + app.setName("test"); + app.setMlAppName("test"); + app.setMlAppAdminId("test"); + app.setUsername("test"); + app.setAppPassword("test"); + app.setOpen(false); + app.setEnabled(false); + app.setUebKey("test"); + app.setUebSecret("test"); + app.setUebTopicName("test"); + app.setAppType(1); + + expectedApps.add(app); + + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getPersAdminApps(user)).thenReturn(expectedApps); + + Mockito.when(appService.transformAppsToEcompApps(expectedApps)).thenReturn(expectedEcompApps); + actualEcompApps = appsController.getPersUserApps(mockedRequest, mockedResponse); + assertEquals(expectedEcompApps, actualEcompApps); + } + + @Test + public void getPersUserAppsIfUserNotAdminTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedEcompApps = new ArrayList(); + + EcompApp ecompApp = new EcompApp(); + ecompApp.setId((long) 1); + ecompApp.setName("Test_app"); + ecompApp.setUrl("Test_URL"); + ecompApp.setUebKey("Test_key"); + ecompApp.setAlternateUrl("Test_alt_URL"); + expectedEcompApps.add(ecompApp); + List actualEcompApps = new ArrayList(); + + List expectedApps = new ArrayList(); + + EPApp app = new EPApp(); + + app.setName("Test"); + app.setImageUrl("test"); + app.setDescription("test"); + app.setNotes("test"); + app.setUrl("test"); + app.setId((long) 1); + app.setAppRestEndpoint("test"); + app.setAlternateUrl("test"); + app.setName("test"); + app.setMlAppName("test"); + app.setMlAppAdminId("test"); + app.setUsername("test"); + app.setAppPassword("test"); + app.setOpen(false); + app.setEnabled(false); + app.setUebKey("test"); + app.setUebSecret("test"); + app.setUebTopicName("test"); + app.setAppType(1); + + expectedApps.add(app); + + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + Mockito.when(appService.getPersUserApps(user)).thenReturn(expectedApps); + Mockito.when(appService.transformAppsToEcompApps(expectedApps)).thenReturn(expectedEcompApps); + actualEcompApps = appsController.getPersUserApps(mockedRequest, mockedResponse); + assertEquals(expectedEcompApps, actualEcompApps); + } + + @Test + public void getPersUserAppsIfUserNullTest() throws IOException { + EPUser user = null; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + assertNull(appsController.getPersUserApps(mockedRequest, mockedResponse)); + } + + @Test + public void getPersUserAppsExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getPersAdminApps(user)).thenThrow(nullPointerException); + assertNull(appsController.getPersUserApps(mockedRequest, mockedResponse)); + } + + @Test + public void getAdminAppsIfNotAdminTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isAccountAdmin(user)).thenReturn(false); + assertNull(appsController.getAdminApps(mockedRequest, mockedResponse)); + } + + @Test + public void getAdminAppsTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedAdminApps = new ArrayList(); + AppIdAndNameTransportModel appIdAndNameTransportModel = new AppIdAndNameTransportModel(); + appIdAndNameTransportModel.setId((long) 1); + appIdAndNameTransportModel.setName("Test_app"); + expectedAdminApps.add(appIdAndNameTransportModel); + List actualAdminApps = new ArrayList(); + Mockito.when(adminRolesService.isAccountAdmin(user)).thenReturn(true); + Mockito.when(appService.getAdminApps(user)).thenReturn(expectedAdminApps); + actualAdminApps = appsController.getAdminApps(mockedRequest, mockedResponse); + assertEquals(actualAdminApps, expectedAdminApps); + + } + + @Test + public void getAdminAppsExceptionTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isAccountAdmin(user)).thenReturn(true); + Mockito.when(appService.getAdminApps(user)).thenThrow(nullPointerException); + assertNull(appsController.getAdminApps(mockedRequest, mockedResponse)); + } + + @Test + public void getAppsForSuperAdminAndAccountAdminifOnlyAccountAdminTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + Mockito.when(adminRolesService.isAccountAdmin(user)).thenReturn(false); + assertNull(appsController.getAppsForSuperAdminAndAccountAdmin(mockedRequest, mockedResponse)); + } + + @Test + public void getAppsForSuperAdminAndAccountAdminTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedAdminApps = new ArrayList(); + AppIdAndNameTransportModel appIdAndNameTransportModel = new AppIdAndNameTransportModel(); + appIdAndNameTransportModel.setId((long) 1); + appIdAndNameTransportModel.setName("Test_app"); + expectedAdminApps.add(appIdAndNameTransportModel); + List actualAdminApps = new ArrayList(); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(adminRolesService.isAccountAdmin(user)).thenReturn(true); + Mockito.when(appService.getAppsForSuperAdminAndAccountAdmin(user)).thenReturn(expectedAdminApps); + actualAdminApps = appsController.getAppsForSuperAdminAndAccountAdmin(mockedRequest, mockedResponse); + assertEquals(actualAdminApps, expectedAdminApps); + + } + + @Test + public void getAppsForSuperAdminExceptionTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(adminRolesService.isAccountAdmin(user)).thenReturn(false); + Mockito.when(appService.getAppsForSuperAdminAndAccountAdmin(user)).thenThrow(nullPointerException); + assertNull(appsController.getAppsForSuperAdminAndAccountAdmin(mockedRequest, mockedResponse)); + } + + @Test + public void putUserAppsSortingManualTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List ePAppsManualPreference = new ArrayList(); + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + FieldsValidator actualFieldValidator = new FieldsValidator(); + Mockito.when(appService.saveAppsSortManual(ePAppsManualPreference, user)).thenReturn(expectedFieldValidator); + actualFieldValidator = appsController.putUserAppsSortingManual(mockedRequest, ePAppsManualPreference, + mockedResponse); + assertEquals(actualFieldValidator, expectedFieldValidator); + } + + @Test + public void putUserAppsSortingManualExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List ePAppsManualPreference = new ArrayList(); + Mockito.when(appService.saveAppsSortManual(ePAppsManualPreference, user)).thenThrow(nullPointerException); + assertNull(appsController.putUserAppsSortingManual(mockedRequest, ePAppsManualPreference, mockedResponse)); + } + + @Test + public void putUserWidgetsSortManualTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List ePWidgetsSortPreference = new ArrayList(); + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + FieldsValidator actualFieldValidator = new FieldsValidator(); + Mockito.when(appService.saveWidgetsSortManual(ePWidgetsSortPreference, user)) + .thenReturn(expectedFieldValidator); + actualFieldValidator = appsController.putUserWidgetsSortManual(mockedRequest, ePWidgetsSortPreference, + mockedResponse); + assertEquals(actualFieldValidator, expectedFieldValidator); + } + + @Test + public void putUserWidgetsSortManualExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List ePAppsManualPreference = new ArrayList(); + Mockito.when(appService.saveAppsSortManual(ePAppsManualPreference, user)).thenThrow(nullPointerException); + assertNull(appsController.putUserAppsSortingManual(mockedRequest, ePAppsManualPreference, mockedResponse)); + } + + @Test + public void putUserWidgetsSortPrefTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List ePWidgetsSortPreference = new ArrayList(); + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + FieldsValidator actualFieldValidator = new FieldsValidator(); + Mockito.when(appService.deleteUserWidgetSortPref(ePWidgetsSortPreference, user)) + .thenReturn(expectedFieldValidator); + actualFieldValidator = appsController.putUserWidgetsSortPref(mockedRequest, ePWidgetsSortPreference, + mockedResponse); + assertEquals(actualFieldValidator, expectedFieldValidator); + } + + @Test + public void putUserWidgetsSortPrefExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List ePWidgetsSortPreference = new ArrayList(); + Mockito.when(appService.deleteUserWidgetSortPref(ePWidgetsSortPreference, user)) + .thenThrow(nullPointerException); + assertNull(appsController.putUserWidgetsSortPref(mockedRequest, ePWidgetsSortPreference, mockedResponse)); + } + + @Test + public void deleteUserAppSortManualTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + EPDeleteAppsManualSortPref epDeleteAppsManualSortPref = new EPDeleteAppsManualSortPref(); + + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + FieldsValidator actualFieldValidator = new FieldsValidator(); + Mockito.when(appService.deleteUserAppSortManual(epDeleteAppsManualSortPref, user)) + .thenReturn(expectedFieldValidator); + actualFieldValidator = appsController.deleteUserAppSortManual(mockedRequest, epDeleteAppsManualSortPref, + mockedResponse); + assertEquals(actualFieldValidator, expectedFieldValidator); + } + + @Test + public void deleteUserAppSortManualExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + EPDeleteAppsManualSortPref epDeleteAppsManualSortPref = new EPDeleteAppsManualSortPref(); + Mockito.when(appService.deleteUserAppSortManual(epDeleteAppsManualSortPref, user)) + .thenThrow(nullPointerException); + assertNull(appsController.deleteUserAppSortManual(mockedRequest, epDeleteAppsManualSortPref, mockedResponse)); + } + + @Test + public void putUserAppsSortingPreferenceTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + EPAppsSortPreference userAppsValue = new EPAppsSortPreference(); + + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + FieldsValidator actualFieldValidator = new FieldsValidator(); + Mockito.when(appService.saveAppsSortPreference(userAppsValue, user)).thenReturn(expectedFieldValidator); + actualFieldValidator = appsController.putUserAppsSortingPreference(mockedRequest, userAppsValue, + mockedResponse); + assertEquals(actualFieldValidator, expectedFieldValidator); + } + + @Test + public void putUserAppsSortingPreferenceExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + EPAppsSortPreference userAppsValue = new EPAppsSortPreference(); + Mockito.when(appService.saveAppsSortPreference(userAppsValue, user)).thenThrow(nullPointerException); + assertNull(appsController.putUserAppsSortingPreference(mockedRequest, userAppsValue, mockedResponse)); + } + + @Test + public void getUserAppsSortTypePreferenceTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + String expectedUserSortPreference = "TEST_DECE"; + String actualUserSortPreference = new String(); + Mockito.when(appService.getUserAppsSortTypePreference(user)).thenReturn(expectedUserSortPreference); + actualUserSortPreference = appsController.getUserAppsSortTypePreference(mockedRequest, mockedResponse); + assertEquals(actualUserSortPreference, expectedUserSortPreference); + } + + @Test + public void getUserAppsSortTypePreferenceExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(appService.getUserAppsSortTypePreference(user)).thenThrow(nullPointerException); + assertNull(appsController.getUserAppsSortTypePreference(mockedRequest, mockedResponse)); + } + + @Test + public void getUserAppsSortTypePreferenceIfUserNullTest() throws IOException { + EPUser user = null; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(appService.getUserAppsSortTypePreference(user)).thenThrow(nullPointerException); + assertNull(appsController.getUserAppsSortTypePreference(mockedRequest, mockedResponse)); + } + + @Test + public void getAppsAdministratorsTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expecteAdminUserApplications = new ArrayList(); + List actualAdminUserApplications = new ArrayList(); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getAppsAdmins()).thenReturn(expecteAdminUserApplications); + actualAdminUserApplications = appsController.getAppsAdministrators(mockedRequest, mockedResponse); + assertEquals(expecteAdminUserApplications, actualAdminUserApplications); + } + + @Test + public void getAppsAdministratorsIfUserNotSuperAdminTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + assertNull(appsController.getUserAppsSortTypePreference(mockedRequest, mockedResponse)); + } + + @Test + public void getAppsAdministratorsExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getAppsAdmins()).thenThrow(nullPointerException); + assertNull(appsController.getUserAppsSortTypePreference(mockedRequest, mockedResponse)); + } + + @Test + public void getAppsTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedApps = new ArrayList(); + AppsResponse apps = new AppsResponse((long) 1, "test", true, true); + expectedApps.add(apps); + + List atualApps = new ArrayList(); + + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getAllApps(false)).thenReturn(expectedApps); + atualApps = appsController.getApps(mockedRequest, mockedResponse); + assertEquals(expectedApps, atualApps); + } + + @Test + public void getAppsExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + assertNull(appsController.getApps(mockedRequest, mockedResponse)); + } + + @Test + public void getAppsIfUserNotSuperAdminTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getAllApps(false)).thenThrow(nullPointerException); + assertNull(appsController.getApps(mockedRequest, mockedResponse)); + } + + @Test + public void getAllAppsTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedApps = new ArrayList(); + AppsResponse apps = new AppsResponse((long) 1, "test", true, true); + expectedApps.add(apps); + List atualApps = new ArrayList(); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getAllApps(true)).thenReturn(expectedApps); + atualApps = appsController.getAllApps(mockedRequest, mockedResponse); + assertEquals(expectedApps, atualApps); + } + + @Test + public void getAllAppsExceptionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + assertNull(appsController.getAllApps(mockedRequest, mockedResponse)); + } + + @Test + public void getAllAppsIfUserNotSuperAdminTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getAllApps(true)).thenThrow(nullPointerException); + assertNull(appsController.getAllApps(mockedRequest, mockedResponse)); + } + + @Test + public void getAppsFullListTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedEcompApps = new ArrayList(); + + EcompApp ecompApp = new EcompApp(); + ecompApp.setId((long) 1); + ecompApp.setName("Test_app"); + ecompApp.setUrl("Test_URL"); + ecompApp.setUebKey("Test_key"); + ecompApp.setAlternateUrl("Test_alt_URL"); + expectedEcompApps.add(ecompApp); + List actualEcompApps = new ArrayList(); + Mockito.when(appService.getEcompAppAppsFullList()).thenReturn(expectedEcompApps); + actualEcompApps = appsController.getAppsFullList(mockedRequest, mockedResponse); + assertEquals(expectedEcompApps, actualEcompApps); + } + +// @Test +// public void getAppsFullListNoUserTest() { +// EPUser user = null; +// Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); +// Mockito.when(appService.getEcompAppAppsFullList()).thenReturn(null); +// assertNull(appsController.getAppsFullList(mockedRequest, mockedResponse)); +// +// } + + @Test + public void getUserProfileTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + + UserRole userRole = new UserRole(); + userRole.setUser_Id((long) 1); + userRole.setOrgUserId("guest"); + userRole.setFirstName("Test_User_FirstName"); + userRole.setLastName("Test_User_LastName"); + userRole.setRoleId((long) 1); + userRole.setRoleName("test"); + + UserRoles unexpectedserAndRoles = new UserRoles(userRole); + unexpectedserAndRoles.setFirstName("Test_User_FirstName"); + unexpectedserAndRoles.setLastName("Test_User_LastName"); + unexpectedserAndRoles.setGuestSession(false); + unexpectedserAndRoles.setOrgUserId("guest"); + List roles = new ArrayList(); + roles.add("Test"); + unexpectedserAndRoles.setRoles(roles); + Mockito.when(appService.getUserProfileNormalized(user)).thenReturn(unexpectedserAndRoles); + UserRoles actualUserAndRoles = appsController.getUserProfile(mockedRequest, mockedResponse); + assertEquals(unexpectedserAndRoles, actualUserAndRoles); + } + + @Test + public void getUserProfileIfUserNullTest() throws IOException { + EPUser user = null; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(appService.getUserProfileNormalized(user)).thenReturn(null); + assertNull(appsController.getUserAppsSortTypePreference(mockedRequest, mockedResponse)); + } + + @Test + public void getUserProfileExcpetionTest() throws IOException { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(appService.getUserProfileNormalized(user)).thenThrow(nullPointerException); + assertNull(appsController.getUserAppsSortTypePreference(mockedRequest, mockedResponse)); + } + + @Test + public void getAppRolesTest() { + List expectedRoleList = new ArrayList(); + LocalRole localRole = new LocalRole(); + localRole.setRoleId(1); + localRole.setRolename("test"); + expectedRoleList.add(localRole); + long appId = 1; + Mockito.when(appService.getAppRoles(appId)).thenReturn(expectedRoleList); + List actualRoleList = appsController.getAppRoles(mockedRequest, appId); + assertEquals(actualRoleList, expectedRoleList); + } + + @Test + public void getAppRolesExceptionTest() { + long appId = 1; + Mockito.when(appService.getAppRoles(appId)).thenThrow(nullPointerException); + assertNull(appsController.getAppRoles(mockedRequest, appId)); + } + + @Test + public void getOnboardingAppsTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedOnboardingApps = new ArrayList(); + OnboardingApp onboardingApp = new OnboardingApp(); + onboardingApp.setUebKey("test"); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getOnboardingApps()).thenReturn(expectedOnboardingApps); + List actualOnboardingApps = appsController.getOnboardingApps(mockedRequest, mockedResponse); + assertEquals(expectedOnboardingApps, actualOnboardingApps); + } + + @Test + public void getOnboardingAppsifSuperAdiminTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + assertNull(appsController.getOnboardingApps(mockedRequest, mockedResponse)); + } + + @Test + public void getOnboardingAppsExceptionTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(!adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.getOnboardingApps()).thenThrow(nullPointerException); + assertNull(appsController.getOnboardingApps(mockedRequest, mockedResponse)); + } + + @Test + public void putOnboardingAppTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + OnboardingApp OnboardingApp = new OnboardingApp(); + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.modifyOnboardingApp(OnboardingApp, user)).thenReturn(expectedFieldValidator); + FieldsValidator actualFieldValidator = appsController.putOnboardingApp(mockedRequest, OnboardingApp, + mockedResponse); + assertEquals(expectedFieldValidator, actualFieldValidator); + } + + @Test + public void putOnboardingAppIfSuperAdminTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + FieldsValidator expectedFieldValidator = null; + OnboardingApp OnboardingApp = new OnboardingApp(); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + Mockito.when(appService.modifyOnboardingApp(OnboardingApp, user)).thenReturn(expectedFieldValidator); + assertNull(appsController.putOnboardingApp(mockedRequest, OnboardingApp, mockedResponse)); + } + + @Test + public void putOnboardingAppExceptionTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + OnboardingApp OnboardingApp = new OnboardingApp(); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.modifyOnboardingApp(OnboardingApp, user)).thenThrow(nullPointerException); + assertNull(appsController.putOnboardingApp(mockedRequest, OnboardingApp, mockedResponse)); + } + + @Test + public void postOnboardingAppTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + OnboardingApp OnboardingApp = new OnboardingApp(); + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.addOnboardingApp(OnboardingApp, user)).thenReturn(expectedFieldValidator); + FieldsValidator actualFieldValidator = appsController.postOnboardingApp(mockedRequest, OnboardingApp, + mockedResponse); + assertEquals(expectedFieldValidator, actualFieldValidator); + } + + @Test + public void postOnboardingAppIfSuperAdminTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + FieldsValidator expectedFieldValidator = null; + OnboardingApp OnboardingApp = new OnboardingApp(); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + Mockito.when(appService.addOnboardingApp(OnboardingApp, user)).thenReturn(expectedFieldValidator); + assertNull(appsController.postOnboardingApp(mockedRequest, OnboardingApp, mockedResponse)); + } + + @Test + public void postOnboardingAppExceptionTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + OnboardingApp OnboardingApp = new OnboardingApp(); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(appService.addOnboardingApp(OnboardingApp, user)).thenThrow(nullPointerException); + assertNull(appsController.postOnboardingApp(mockedRequest, OnboardingApp, mockedResponse)); + } + + @Test + public void deleteOnboardingAppTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + long appId = 1; + Mockito.when(appService.deleteOnboardingApp(user,appId )).thenReturn(expectedFieldValidator); + FieldsValidator actualFieldValidator = appsController.deleteOnboardingApp(mockedRequest,appId, + mockedResponse); + assertEquals(expectedFieldValidator, actualFieldValidator); + } + + @Test + public void deleteOnboardingAppIfSuperAdminTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + FieldsValidator expectedFieldValidator = null; + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + long appId = 1; + Mockito.when(appService.deleteOnboardingApp(user,appId)).thenReturn(expectedFieldValidator); + assertNull(appsController.deleteOnboardingApp(mockedRequest,appId,mockedResponse)); + } + + @Test + public void deleteOnboardingAppExceptionTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + long appId = 1; + Mockito.when(appService.deleteOnboardingApp(user,appId)).thenThrow(nullPointerException); + assertNull(appsController.deleteOnboardingApp(mockedRequest,appId,mockedResponse)); + } + + @Test + public void getLeftMenuItemsTest() + { + EPUser user = mockUser.mockEPUser(); + String menuList = "Test"; + PowerMockito.mockStatic(EPUserUtils.class); + PowerMockito.mockStatic(SystemProperties.class); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Set menuSet = new HashSet<>(); + menuSet.add(1); + Mockito.when(AppUtils.getSession(mockedRequest) + .getAttribute(SystemProperties.getProperty(SystemProperties.APPLICATION_MENU_ATTRIBUTE_NAME))).thenReturn(menuSet); + Mockito.when(AppUtils.getSession(mockedRequest) + .getAttribute(SystemProperties.getProperty(SystemProperties.ROLE_FUNCTIONS_ATTRIBUTE_NAME))).thenReturn(menuSet); + Mockito.when(leftMenuService.getLeftMenuItems(user, menuSet, menuSet)).thenReturn(menuList); + String response = appsController.getLeftMenuItems(mockedRequest, mockedResponse); + assertTrue(response.equals("Test")); + } + + @Test + public void getLeftMenuItemsExceptionTest() + { + EPUser user = mockUser.mockEPUser(); + String menuList = "Test"; + PowerMockito.mockStatic(EPUserUtils.class); + PowerMockito.mockStatic(SystemProperties.class); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Set menuSet = new HashSet<>(); + menuSet.add(1); + Mockito.when(AppUtils.getSession(mockedRequest) + .getAttribute(SystemProperties.getProperty(SystemProperties.APPLICATION_MENU_ATTRIBUTE_NAME))).thenReturn(menuSet); + Mockito.when(AppUtils.getSession(mockedRequest) + .getAttribute(SystemProperties.getProperty(SystemProperties.ROLE_FUNCTIONS_ATTRIBUTE_NAME))).thenReturn(menuSet); + Mockito.when(leftMenuService.getLeftMenuItems(user, menuSet, menuSet)).thenThrow(nullPointerException); + assertNull(appsController.getLeftMenuItems(mockedRequest, mockedResponse)); + } + + @Test + public void getAppThumbnailExceptionTest() + { + EPApp app = null; + assertNull(appsController.getAppThumbnail(mockedRequest, (long) 1, mockedResponse)); + } + + @Test + public void getAppThumbnailTest() + { + EPApp app = new EPApp(); + app.setName("Test"); + app.setImageUrl("test"); + app.setDescription("test"); + app.setNotes("test"); + app.setUrl("test"); + app.setId((long) 1); + app.setAppType(1); + app.setImageUrl("www.ecomp.com"); + app.setThumbnail(new byte[] {1, 6, 3}); + Mockito.when(appService.getApp((long) 1)).thenReturn(app); + HttpEntity response = appsController.getAppThumbnail(mockedRequest, (long) 1, mockedResponse); + assertEquals(response.getHeaders().getContentLength(), 3); + } + + @Test + public void getAppThumbnailForMediaTypePngTest() + { + + EPApp app = new EPApp(); + app.setName("Test"); + app.setImageUrl("test"); + app.setDescription("test"); + app.setNotes("test"); + app.setUrl("test"); + app.setId((long) 1); + app.setAppType(1); + app.setImageUrl("www.ecomp.png"); + app.setThumbnail(new byte[] {1, 6, 3}); + Mockito.when(appService.getApp((long) 1)).thenReturn(app); + PowerMockito.mockStatic(MediaType.class); + HttpEntity response = appsController.getAppThumbnail(mockedRequest, (long) 1, mockedResponse); + assertEquals(response.getHeaders().getContentLength(), 3); + } + + @Test + public void getUserAppsOrderBySortPrefIfUSerNullTest(){ + List listOfApps = new ArrayList(); + + EcompApp app = new EcompApp(); + listOfApps.add(app); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(null); + assertNull(appsController.getUserAppsOrderBySortPref(mockedRequest, mockedResponse)); + } + + @Test + public void getUserAppsOrderBySortPrefTest(){ + List listOfApps = new ArrayList(); + + EcompApp app = new EcompApp(); + listOfApps.add(app); + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(mockedRequest.getParameter("mparams")).thenReturn(""); + Mockito.when(appService.transformAppsToEcompApps(appService.getAppsOrderByName(user))).thenReturn(listOfApps); + List listOfActualApps = appsController.getUserAppsOrderBySortPref(mockedRequest, mockedResponse); + assertEquals(listOfActualApps.size(), 1); + } + + @Test + public void getUserAppsOrderBySortPrefIfusrSortPrefIsMTest(){ + List listOfApps = new ArrayList(); + + EcompApp app = new EcompApp(); + listOfApps.add(app); + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(mockedRequest.getParameter("mparams")).thenReturn("M"); + Mockito.when(appService.transformAppsToEcompApps(appService.getAppsOrderByName(user))).thenReturn(listOfApps); + List listOfActualApps = appsController.getUserAppsOrderBySortPref(mockedRequest, mockedResponse); + assertEquals(listOfActualApps.size(), 1); + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/BEPropertyReaderControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/BEPropertyReaderControllerTest.java new file mode 100644 index 00000000..b621d9ad --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/BEPropertyReaderControllerTest.java @@ -0,0 +1,73 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import javax.servlet.http.HttpServletRequest; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.BEPropertyReaderController; +import org.openecomp.portalapp.portal.domain.BEProperty; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; + +@RunWith(PowerMockRunner.class) +@PrepareForTest(SystemProperties.class) +public class BEPropertyReaderControllerTest extends MockitoTestSuite { + + @InjectMocks + BEPropertyReaderController bEPropertyReaderController = new BEPropertyReaderController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + + NullPointerException nullPointerException = new NullPointerException(); + + @Test + public void readPropertyTest() { + String key = "DOMAIN_CLASS_LOCATION"; + BEProperty beProperty = new BEProperty("DOMAIN_CLASS_LOCATION", "domain_class_location"); + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("success"); + ecpectedPortalRestResponse.setResponse(beProperty); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK); + PortalRestResponse actualPortalRestResponse = null; + PowerMockito.mockStatic(SystemProperties.class); + Mockito.when(SystemProperties.getProperty("DOMAIN_CLASS_LOCATION")).thenReturn("domain_class_location"); + actualPortalRestResponse = bEPropertyReaderController.readProperty(mockedRequest, key); + assertTrue(actualPortalRestResponse.equals(ecpectedPortalRestResponse)); + + } + + @Test + public void readPropertyExceptionTest() { + String key =null; + //BEProperty beProperty = new BEProperty("DOMAIN_CLASS_LOCATION", "domain_class_location"); + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("java.lang.NullPointerException"); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + PortalRestResponse actualPortalRestResponse = null; + PowerMockito.mockStatic(SystemProperties.class); + Mockito.when(new BEProperty(key, SystemProperties.getProperty(key))).thenThrow(nullPointerException); + actualPortalRestResponse = bEPropertyReaderController.readProperty(mockedRequest, key); + System.out.println(actualPortalRestResponse); + assertTrue(actualPortalRestResponse.equals(ecpectedPortalRestResponse)); + + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/BasicAuthAccountControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/BasicAuthAccountControllerTest.java new file mode 100644 index 00000000..70505274 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/BasicAuthAccountControllerTest.java @@ -0,0 +1,264 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.BasicAuthAccountController; +import org.openecomp.portalapp.portal.domain.BasicAuthCredentials; +import org.openecomp.portalapp.portal.domain.EPEndpoint; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.AdminRolesServiceImpl; +import org.openecomp.portalapp.portal.service.BasicAuthAccountService; +import org.openecomp.portalapp.portal.service.BasicAuthAccountServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; + +public class BasicAuthAccountControllerTest extends MockitoTestSuite { + + @Mock + BasicAuthAccountService basicAuthAccountService = new BasicAuthAccountServiceImpl(); + + @Mock + AdminRolesService adminRolesService = new AdminRolesServiceImpl(); + + @InjectMocks + BasicAuthAccountController basicAuthAccountController = new BasicAuthAccountController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + + MockEPUser mockUser = new MockEPUser(); + + public BasicAuthCredentials basicAuthCredentials() { + BasicAuthCredentials basicAuthCredentials = new BasicAuthCredentials(); + + basicAuthCredentials.setId((long) 1); + basicAuthCredentials.setApplicationName("test"); + basicAuthCredentials.setUsername("Test"); + basicAuthCredentials.setPassword("Password"); + basicAuthCredentials.setIsActive("YES"); + + List endpoints = new ArrayList(); + + EPEndpoint ePEndpoint = new EPEndpoint(); + ePEndpoint.setId((long) 1); + ePEndpoint.setName("Test"); + endpoints.add(ePEndpoint); + basicAuthCredentials.setEndpoints(endpoints); + + return basicAuthCredentials; + + } + + @Test + public void createBasicAuthAccountTest() throws Exception { + BasicAuthCredentials basicAuthCredentials = basicAuthCredentials(); + + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("SUCCESS"); + expectedResponse.setResponse(""); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedResponse.setStatus(portalRestStatusEnum.OK); + long accountd = 1; + + Mockito.when(basicAuthAccountService.saveBasicAuthAccount(basicAuthCredentials)).thenReturn(accountd); + + PortalRestResponse actualResponse = basicAuthAccountController.createBasicAuthAccount(mockedRequest, + mockedResponse, basicAuthCredentials); + assertEquals(actualResponse, expectedResponse); + } + + @Test + public void createBasicAuthAccountAdminTest() throws Exception { + BasicAuthCredentials basicAuthCredentials = basicAuthCredentials(); + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("Authorization Required"); + expectedResponse.setResponse("Admin Only Operation! "); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedResponse.setStatus(portalRestStatusEnum.ERROR); + + PortalRestResponse actualResponse = basicAuthAccountController.createBasicAuthAccount(mockedRequest, + mockedResponse, basicAuthCredentials); + assertEquals(actualResponse, expectedResponse); + } + + @Test + public void createBasicAuthAccountIfInputNullTest() throws Exception { + BasicAuthCredentials basicAuthCredentials = null; + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("FAILURE"); + expectedResponse.setResponse("newBasicAuthAccount cannot be null or empty"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedResponse.setStatus(portalRestStatusEnum.ERROR); + PortalRestResponse actualResponse = basicAuthAccountController.createBasicAuthAccount(mockedRequest, + mockedResponse, basicAuthCredentials); + assertEquals(actualResponse, expectedResponse); + } + + @Test + public void getBasicAuthAccountTest() throws Exception { + PortalRestResponse> expectedPortalResponse = new PortalRestResponse>(); + List basicAuthCredentialsList = new ArrayList(); + BasicAuthCredentials basicAuthCredentials = basicAuthCredentials(); + basicAuthCredentialsList.add(basicAuthCredentials); + + expectedPortalResponse.setMessage("Success"); + expectedPortalResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedPortalResponse.setStatus(portalRestStatusEnum.OK); + + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(basicAuthAccountService.getAccountData()).thenReturn(null); + PortalRestResponse> actualResponse = basicAuthAccountController + .getBasicAuthAccount(mockedRequest, mockedResponse); + assertEquals(expectedPortalResponse, actualResponse); + } + + @Test + public void getBasicAuthAccountIfSuperAdminTest() throws Exception { + PortalRestResponse> expectedPortalResponse = new PortalRestResponse>(); + List basicAuthCredentialsList = new ArrayList(); + BasicAuthCredentials basicAuthCredentials = basicAuthCredentials(); + basicAuthCredentialsList.add(basicAuthCredentials); + + expectedPortalResponse.setMessage("UnAuthorized! Admin Only Operation"); + expectedPortalResponse.setResponse(new ArrayList<>()); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedPortalResponse.setStatus(portalRestStatusEnum.ERROR); + + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + Mockito.when(basicAuthAccountService.getAccountData()).thenReturn(null); + PortalRestResponse> actualResponse = basicAuthAccountController + .getBasicAuthAccount(mockedRequest, mockedResponse); + assertEquals(expectedPortalResponse, actualResponse); + } + + @Test + public void updateAccountTest() throws Exception { + BasicAuthCredentials basicAuthCredentials = basicAuthCredentials(); + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("SUCCESS"); + expectedResponse.setResponse(""); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedResponse.setStatus(portalRestStatusEnum.OK); + long accountd = 1; + PortalRestResponse actualResponse = basicAuthAccountController.updateAccount(mockedRequest, + mockedResponse, accountd, basicAuthCredentials); + assertEquals(actualResponse, expectedResponse); + } + + @Test + public void updateAccountIfSuperAdminTest() throws Exception { + BasicAuthCredentials basicAuthCredentials = basicAuthCredentials(); + + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("Authorization Required"); + expectedResponse.setResponse("Admin Only Operation! "); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedResponse.setStatus(portalRestStatusEnum.ERROR); + long accountd = 1; + PortalRestResponse actualResponse = basicAuthAccountController.updateAccount(mockedRequest, + mockedResponse, accountd, basicAuthCredentials); + assertEquals(actualResponse, expectedResponse); + } + + @Test + public void updateAccountIfInputNullTest() throws Exception { + BasicAuthCredentials basicAuthCredentials = null; + + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("FAILURE"); + expectedResponse.setResponse("BasicAuthCredentials cannot be null or empty"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedResponse.setStatus(portalRestStatusEnum.ERROR); + long accountd = 1; + PortalRestResponse actualResponse = basicAuthAccountController.updateAccount(mockedRequest, + mockedResponse, accountd, basicAuthCredentials); + assertEquals(actualResponse, expectedResponse); + } + + @Test + public void deleteAccountTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("SUCCESS"); + expectedResponse.setResponse(""); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedResponse.setStatus(portalRestStatusEnum.OK); + long accountd = 1; + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + PortalRestResponse actualResponse = basicAuthAccountController.deleteAccount(mockedRequest, + mockedResponse, accountd); + assertEquals(actualResponse, expectedResponse); + } + + @Test + public void deleteAccountIfNotSuperAdminTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("Authorization Required"); + expectedResponse.setResponse("Admin Only Operation! "); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedResponse.setStatus(portalRestStatusEnum.ERROR); + long accountd = 1; + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + PortalRestResponse actualResponse = basicAuthAccountController.deleteAccount(mockedRequest, + mockedResponse, accountd); + System.out.println(actualResponse); + assertEquals(actualResponse, expectedResponse); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/CommonWidgetControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/CommonWidgetControllerTest.java new file mode 100644 index 00000000..eae8ec07 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/CommonWidgetControllerTest.java @@ -0,0 +1,84 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.CommonWidgetController; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.DashboardSearchService; +import org.openecomp.portalapp.portal.service.DashboardSearchServiceImpl; +import org.openecomp.portalapp.portal.transport.CommonWidgetMeta; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; + +public class CommonWidgetControllerTest { + + @Mock + DashboardSearchService dashboardSearchService = new DashboardSearchServiceImpl(); + + @InjectMocks + CommonWidgetController commonWidgetController = new CommonWidgetController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @SuppressWarnings("unchecked") + @Test + public void getWidgetDataTest() { + String resourceType = "Test"; + PortalRestResponse acutualPoratlRestResponse = null; + @SuppressWarnings("rawtypes") + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("Unexpected resource type Test"); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + acutualPoratlRestResponse = commonWidgetController.getWidgetData(mockedRequest, resourceType); + assertTrue(acutualPoratlRestResponse.equals(ecpectedPortalRestResponse)); + + } + + @SuppressWarnings("unchecked") + @Test + public void getWidgetDataTestNew() { + String resourceType = "EVENTS"; + PortalRestResponse acutualPoratlRestResponse = null; + @SuppressWarnings("rawtypes") + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("success"); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK); + acutualPoratlRestResponse = commonWidgetController.getWidgetData(mockedRequest, resourceType); + assertTrue(acutualPoratlRestResponse.equals(ecpectedPortalRestResponse)); + + } + + @SuppressWarnings("unchecked") + @Test + public void getWidgetDataExceptionTest() { + String resourceType = "null"; + PortalRestResponse acutualPoratlRestResponse = null; + @SuppressWarnings("rawtypes") + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("Unexpected resource type null"); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + acutualPoratlRestResponse = commonWidgetController.getWidgetData(mockedRequest, resourceType); + assertTrue(acutualPoratlRestResponse.equals(ecpectedPortalRestResponse)); + + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ConsulClientControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ConsulClientControllerTest.java new file mode 100644 index 00000000..eda17409 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ConsulClientControllerTest.java @@ -0,0 +1,142 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.ConsulClientController; +import org.openecomp.portalapp.portal.domain.BEProperty; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.ConsulHealthService; +import org.openecomp.portalapp.portal.service.ConsulHealthServiceImpl; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; + +import com.orbitz.consul.ConsulException; +import com.orbitz.consul.model.health.ServiceHealth; + +import io.searchbox.client.config.exception.NoServerConfiguredException; + +public class ConsulClientControllerTest { + + @Mock + ConsulHealthService consulHealthService = new ConsulHealthServiceImpl(); + + @InjectMocks + ConsulClientController consulClientController = new ConsulClientController(); + + NoServerConfiguredException noServerConfiguredException = new NoServerConfiguredException(null); + + String service = "Test"; + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + ConsulException consulException = new ConsulException(nullPointerException); + + @Test + public void getServiceLocationTest() { + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("Success!"); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK); + PortalRestResponse actualPortalRestRespone = new PortalRestResponse(); + actualPortalRestRespone = consulClientController.getServiceLocation(mockedRequest, mockedResponse, service); + assertTrue(actualPortalRestRespone.equals(ecpectedPortalRestResponse)); + } + + @Test + public void getServiceLocationExceptionTest() { + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("Warning!"); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.WARN); + PortalRestResponse actualPortalRestRespone = new PortalRestResponse(); + Mockito.when(consulHealthService.getServiceLocation(service, null)).thenThrow(noServerConfiguredException); + actualPortalRestRespone = consulClientController.getServiceLocation(mockedRequest, mockedResponse, service); + assertTrue(actualPortalRestRespone.getMessage().equals(ecpectedPortalRestResponse.getMessage())); + assertTrue(actualPortalRestRespone.getStatus().equals(ecpectedPortalRestResponse.getStatus())); + + } + + @Test + public void getServiceLocationExceptionConsulExceptionTest() { + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("Error!"); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + PortalRestResponse actualPortalRestRespone = new PortalRestResponse(); + Mockito.when(consulHealthService.getServiceLocation(service, null)).thenThrow(consulException); + actualPortalRestRespone = consulClientController.getServiceLocation(mockedRequest, mockedResponse, service); + assertTrue(actualPortalRestRespone.getMessage().equals(ecpectedPortalRestResponse.getMessage())); + assertTrue(actualPortalRestRespone.getStatus().equals(ecpectedPortalRestResponse.getStatus())); + } + + public PortalRestResponse> successResponse() { + PortalRestResponse> ecpectedPortalRestResponse = new PortalRestResponse>(); + List healths = new ArrayList(); + ecpectedPortalRestResponse.setMessage("Success!"); + ecpectedPortalRestResponse.setResponse(healths); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK); + return ecpectedPortalRestResponse; + } + + public PortalRestResponse> errorResponse() { + PortalRestResponse> ecpectedPortalRestResponse = new PortalRestResponse>(); + List healths = new ArrayList(); + ecpectedPortalRestResponse.setMessage("Error!"); + ecpectedPortalRestResponse.setResponse(healths); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + return ecpectedPortalRestResponse; + } + + @Test + public void getAllHealthyNodesTest() { + PortalRestResponse> ecpectedPortalRestResponse = successResponse(); + PortalRestResponse> actualPortalRestRespone = new PortalRestResponse>(); + actualPortalRestRespone = consulClientController.getAllHealthyNodes(mockedRequest, mockedResponse, service); + assertTrue(actualPortalRestRespone.equals(ecpectedPortalRestResponse)); + + } + + @Test + public void getAllHealthyNodesExceptionTest() { + PortalRestResponse> ecpectedPortalRestResponse = errorResponse(); + PortalRestResponse> actualPortalRestRespone = new PortalRestResponse>(); + Mockito.when(consulHealthService.getAllHealthyNodes(service)).thenThrow(consulException); + actualPortalRestRespone = consulClientController.getAllHealthyNodes(mockedRequest, mockedResponse, service); + assertTrue(actualPortalRestRespone.equals(ecpectedPortalRestResponse)); + } + + @Test + public void getAllNodesTest() { + PortalRestResponse> ecpectedPortalRestResponse = successResponse(); + PortalRestResponse> actualPortalRestRespone = new PortalRestResponse>(); + actualPortalRestRespone = consulClientController.getAllNodes(mockedRequest, mockedResponse, service); + assertTrue(actualPortalRestRespone.equals(ecpectedPortalRestResponse)); + } + + @Test + public void getAllNodesExceptionTest() { + PortalRestResponse> ecpectedPortalRestResponse = errorResponse(); + PortalRestResponse> actualPortalRestRespone = new PortalRestResponse>(); + Mockito.when(consulHealthService.getAllNodes(service)).thenThrow(consulException); + actualPortalRestRespone = consulClientController.getAllNodes(mockedRequest, mockedResponse, service); + assertTrue(actualPortalRestRespone.equals(ecpectedPortalRestResponse)); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/DashboardSearchResultControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/DashboardSearchResultControllerTest.java new file mode 100644 index 00000000..6da95415 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/DashboardSearchResultControllerTest.java @@ -0,0 +1,366 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.DashboardSearchResultController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.ecomp.model.SearchResultItem; +import org.openecomp.portalapp.portal.service.DashboardSearchService; +import org.openecomp.portalapp.portal.service.DashboardSearchServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.transport.CommonWidget; +import org.openecomp.portalapp.portal.transport.CommonWidgetMeta; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; + +public class DashboardSearchResultControllerTest { + + @Mock + DashboardSearchService searchService = new DashboardSearchServiceImpl(); + + @InjectMocks + DashboardSearchResultController dashboardSearchResultController = new DashboardSearchResultController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + + MockEPUser mockUser = new MockEPUser(); + + @Test + public void getWidgetDataTest() { + String resourceType = "test"; + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("success"); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK); + Mockito.when(searchService.getWidgetData(resourceType)).thenReturn(null); + PortalRestResponse acutualPoratlRestResponse = dashboardSearchResultController + .getWidgetData(mockedRequest, resourceType); + assertEquals(acutualPoratlRestResponse, ecpectedPortalRestResponse); + + } + + @Test + public void saveWidgetDataBulkTest() { + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("success"); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK); + + CommonWidgetMeta commonWidgetMeta = new CommonWidgetMeta(); + commonWidgetMeta.setCategory("test"); + + List commonWidgetList = new ArrayList(); + CommonWidget commonWidget = new CommonWidget(); + commonWidget.setId((long) 1); + commonWidget.setCategory("test"); + commonWidget.setHref("test_href"); + commonWidget.setTitle("test_title"); + commonWidget.setContent("test_content"); + commonWidget.setEventDate(null); + commonWidget.setSortOrder(1); + + commonWidgetList.add(commonWidget); + + commonWidgetMeta.setItems(commonWidgetList); + + Mockito.when(searchService.saveWidgetDataBulk(commonWidgetMeta)).thenReturn(null); + + PortalRestResponse actualPortalRestResponse = dashboardSearchResultController + .saveWidgetDataBulk(commonWidgetMeta); + assertEquals(actualPortalRestResponse, ecpectedPortalRestResponse); + } + + @Test + public void saveWidgetDataBulkIfCategoryNullTest() { + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("java.text.ParseException: Unparseable date: \"1\""); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + + CommonWidgetMeta commonWidgetMeta = new CommonWidgetMeta(); + commonWidgetMeta.setCategory("test"); + + List commonWidgetList = new ArrayList(); + CommonWidget commonWidget = new CommonWidget(); + commonWidget.setId(null); + commonWidget.setCategory(null); + commonWidget.setHref(null); + commonWidget.setTitle(null); + commonWidget.setContent("test_content"); + commonWidget.setEventDate("1"); + commonWidget.setSortOrder(1); + commonWidgetList.add(commonWidget); + commonWidgetMeta.setItems(commonWidgetList); + + Mockito.when(searchService.saveWidgetDataBulk(commonWidgetMeta)).thenReturn(null); + + PortalRestResponse actualPortalRestResponse = dashboardSearchResultController + .saveWidgetDataBulk(commonWidgetMeta); + assertEquals(actualPortalRestResponse, ecpectedPortalRestResponse); + } + + @Test + public void saveWidgetDataTest() { + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("success"); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK); + CommonWidget commonWidget = new CommonWidget(); + commonWidget.setId((long) 1); + commonWidget.setCategory("test"); + commonWidget.setHref("test_href"); + commonWidget.setTitle("test_title"); + commonWidget.setContent("test_content"); + commonWidget.setEventDate(null); + commonWidget.setSortOrder(1); + + Mockito.when(searchService.saveWidgetData(commonWidget)).thenReturn(null); + + PortalRestResponse actualPortalRestResponse = dashboardSearchResultController + .saveWidgetData(commonWidget); + assertEquals(actualPortalRestResponse, ecpectedPortalRestResponse); + + } + + @Test + public void saveWidgetDataExceptionTest() { + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("ERROR"); + ecpectedPortalRestResponse.setResponse("Cateogry cannot be null or empty"); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + CommonWidget commonWidget = new CommonWidget(); + commonWidget.setId((long) 1); + commonWidget.setCategory(""); + commonWidget.setHref("test_href"); + commonWidget.setTitle("test_title"); + commonWidget.setContent("test_content"); + commonWidget.setEventDate(null); + commonWidget.setSortOrder(1); + + Mockito.when(searchService.saveWidgetData(commonWidget)).thenReturn(null); + + PortalRestResponse actualPortalRestResponse = dashboardSearchResultController + .saveWidgetData(commonWidget); + assertEquals(actualPortalRestResponse, ecpectedPortalRestResponse); + + } + + @Test + public void saveWidgetDataDateErrorTest() { + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("java.text.ParseException: Unparseable date: \"1\""); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + CommonWidget commonWidget = new CommonWidget(); + commonWidget.setId((long) 1); + commonWidget.setCategory("test"); + commonWidget.setHref("test_href"); + commonWidget.setTitle("test_title"); + commonWidget.setContent("test_content"); + commonWidget.setEventDate("1"); + commonWidget.setSortOrder(1); + + Mockito.when(searchService.saveWidgetData(commonWidget)).thenReturn(null); + + PortalRestResponse actualPortalRestResponse = dashboardSearchResultController + .saveWidgetData(commonWidget); + assertEquals(actualPortalRestResponse, ecpectedPortalRestResponse); + + } + + public void deleteWidgetDataTest() { + PortalRestResponse ecpectedPortalRestResponse = new PortalRestResponse(); + ecpectedPortalRestResponse.setMessage("success"); + ecpectedPortalRestResponse.setResponse(null); + ecpectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK); + CommonWidget commonWidget = new CommonWidget(); + commonWidget.setId((long) 1); + commonWidget.setCategory("test"); + commonWidget.setHref("test_href"); + commonWidget.setTitle("test_title"); + commonWidget.setContent("test_content"); + commonWidget.setEventDate(null); + commonWidget.setSortOrder(1); + Mockito.when(searchService.deleteWidgetData(commonWidget)).thenReturn(null); + + PortalRestResponse actualPortalRestResponse = dashboardSearchResultController + .deleteWidgetData(commonWidget); + System.out.println(actualPortalRestResponse); + assertEquals(actualPortalRestResponse, ecpectedPortalRestResponse); + } + + @Test + public void searchPortalIfUserIsNull() { + EPUser user = null; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + String searchString = "test"; + + PortalRestResponse>> expectedResult = new PortalRestResponse>>(); + expectedResult.setMessage("searchPortal: User object is null? - check logs"); + expectedResult.setResponse(new HashMap>()); + expectedResult.setStatus(PortalRestStatusEnum.ERROR); + PortalRestResponse>> actualResult = dashboardSearchResultController + .searchPortal(mockedRequest, searchString); + assertEquals(expectedResult, actualResult); + } + + @Test + public void searchPortalIfSearchStringNullTest() { + EPUser user = mockUser.mockEPUser(); + ; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + String searchString = null; + + PortalRestResponse>> expectedResult = new PortalRestResponse>>(); + expectedResult.setMessage("searchPortal: String string is null"); + expectedResult.setResponse(new HashMap>()); + expectedResult.setStatus(PortalRestStatusEnum.ERROR); + + PortalRestResponse>> actualResult = dashboardSearchResultController + .searchPortal(mockedRequest, searchString); + assertEquals(expectedResult, actualResult); + } + + @Test + public void searchPortalIfSearchTest() { + EPUser user = mockUser.mockEPUser(); + ; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + String searchString = "test"; + List searchResultItemList = new ArrayList(); + SearchResultItem searchResultItem = new SearchResultItem(); + + searchResultItem.setId((long) 1); + searchResultItem.setCategory("test"); + searchResultItem.setName("test_name"); + searchResultItem.setTarget("test_target"); + searchResultItem.setUuid("test_UUId"); + searchResultItemList.add(searchResultItem); + Map> expectedResultMap = new HashMap>(); + expectedResultMap.put(searchString, searchResultItemList); + + PortalRestResponse>> expectedResult = new PortalRestResponse>>(); + expectedResult.setMessage("success"); + expectedResult.setResponse(expectedResultMap); + expectedResult.setStatus(PortalRestStatusEnum.OK); + + Mockito.when(searchService.searchResults(user.getLoginId(), searchString)).thenReturn(expectedResultMap); + PortalRestResponse>> actualResult = dashboardSearchResultController + .searchPortal(mockedRequest, searchString); + assertEquals(expectedResult, actualResult); + + } + + @Test + public void searchPortalIfSearchExcptionTest() { + EPUser user = mockUser.mockEPUser(); + ; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + String searchString = "test"; + + PortalRestResponse>> expectedResult = new PortalRestResponse>>(); + expectedResult.setMessage("null - check logs."); + expectedResult.setResponse(new HashMap>()); + expectedResult.setStatus(PortalRestStatusEnum.ERROR); + + Mockito.when(searchService.searchResults(user.getLoginId(), searchString)).thenThrow(nullPointerException); + PortalRestResponse>> actualResult = dashboardSearchResultController + .searchPortal(mockedRequest, searchString); + assertEquals(expectedResult, actualResult); + } + + @Test + public void getActiveUsersTest() { + List expectedActiveUsers = new ArrayList(); + EPUser user = mockUser.mockEPUser(); + ; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + String userId = user.getOrgUserId(); + Mockito.when(searchService.getRelatedUsers(userId)).thenReturn(expectedActiveUsers); + List actualOnlineUsers = dashboardSearchResultController.getActiveUsers(mockedRequest); + assertEquals(expectedActiveUsers, actualOnlineUsers); + + } + + @Test + public void getActiveUsersExceptionTest() { + List expectedActiveUsers = new ArrayList(); + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + String userId = user.getOrgUserId(); + Mockito.when(searchService.getRelatedUsers(userId)).thenThrow(nullPointerException); + List actualOnlineUsers = dashboardSearchResultController.getActiveUsers(mockedRequest); + assertEquals(expectedActiveUsers, actualOnlineUsers); + + } + + @Test + public void activeUsersTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + PortalRestResponse> expectedResult = new PortalRestResponse>(); + expectedResult.setMessage("success"); + expectedResult.setResponse(new ArrayList<>()); + expectedResult.setStatus(PortalRestStatusEnum.OK); + PortalRestResponse> actualResult = dashboardSearchResultController.activeUsers(mockedRequest); + + assertEquals(actualResult, expectedResult); + + } + + @Test + public void activeUsersIfUserNullTest() { + EPUser user = null; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + PortalRestResponse> expectedResult = new PortalRestResponse>(); + expectedResult.setMessage("User object is null? - check logs"); + expectedResult.setResponse(new ArrayList<>()); + expectedResult.setStatus(PortalRestStatusEnum.ERROR); + PortalRestResponse> actualResult = dashboardSearchResultController.activeUsers(mockedRequest); + assertEquals(actualResult, expectedResult); + + } + + @Test + public void activeUsersExceptionTest() { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + PortalRestResponse> expectedResult = new PortalRestResponse>(); + expectedResult.setMessage("null - check logs."); + expectedResult.setResponse(new ArrayList<>()); + expectedResult.setStatus(PortalRestStatusEnum.ERROR); + Mockito.when(searchService.getRelatedUsers(user.getLoginId())).thenThrow(nullPointerException); + PortalRestResponse> actualResult = dashboardSearchResultController.activeUsers(mockedRequest); + assertEquals(actualResult, expectedResult); + + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ExternalAppsRestfulControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ExternalAppsRestfulControllerTest.java new file mode 100644 index 00000000..43860d45 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ExternalAppsRestfulControllerTest.java @@ -0,0 +1,174 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.ExternalAppsRestfulController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.AdminRolesServiceImpl; +import org.openecomp.portalapp.portal.service.EPLoginService; +import org.openecomp.portalapp.portal.service.EPLoginServiceImpl; +import org.openecomp.portalapp.portal.service.EPRoleService; +import org.openecomp.portalapp.portal.service.EPRoleServiceImpl; +import org.openecomp.portalapp.portal.service.FunctionalMenuService; +import org.openecomp.portalapp.portal.service.FunctionalMenuServiceImpl; +import org.openecomp.portalapp.portal.service.UserNotificationService; +import org.openecomp.portalapp.portal.service.UserNotificationServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItemJson; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.service.DataAccessServiceImpl; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import org.slf4j.MDC; + +@RunWith(PowerMockRunner.class) +@PrepareForTest({ MDC.class, EPCommonSystemProperties.class }) +public class ExternalAppsRestfulControllerTest { + + @InjectMocks + ExternalAppsRestfulController externalAppsRestfulController = new ExternalAppsRestfulController(); + @Mock + FunctionalMenuService functionalMenuService = new FunctionalMenuServiceImpl(); + + @Mock + EPLoginService epLoginService = new EPLoginServiceImpl(); + + @Mock + AdminRolesService adminRolesService = new AdminRolesServiceImpl(); + + @Mock + UserNotificationService userNotificationService = new UserNotificationServiceImpl(); + + @Mock + EPRoleService epRoleService = new EPRoleServiceImpl(); + + @Mock + EcompPortalUtils EcompPortalUtils = new EcompPortalUtils(); + + @Mock + DataAccessService DataAccessService = new DataAccessServiceImpl(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + MockEPUser mockUser = new MockEPUser(); + + @Test(expected = Exception.class) + public void getFunctionalMenuItemsForUserIfUSerNullTest() throws + Exception + { + PowerMockito.mockStatic(EPCommonSystemProperties.class); + PowerMockito.mockStatic(MDC.class); + EPUser epUser = null; + String loginId = "guestT"; + Mockito.when(MDC.get(EPCommonSystemProperties.PARTNER_NAME)).thenReturn("Test"); + Mockito.when(epLoginService.findUserWithoutPwd(loginId)).thenReturn(epUser); + externalAppsRestfulController.getFunctionalMenuItemsForUser(mockedRequest, + mockedResponse); + } + + @Test + public void getFunctionalMenuItemsForUserIfSuperAdminTest() throws Exception { + PowerMockito.mockStatic(EPCommonSystemProperties.class); + PowerMockito.mockStatic(MDC.class); + EPUser epUser = mockUser.mockEPUser(); + epUser.setId((long) 1); + epUser.setLoginId("guestT"); + String loginId = "guestT"; + Mockito.when(MDC.get(EPCommonSystemProperties.PARTNER_NAME)).thenReturn("Test"); + Mockito.when(epLoginService.findUserWithoutPwd(loginId)).thenReturn(epUser); + List expectedList = new ArrayList(); + FunctionalMenuItem functionalMenuItem = new FunctionalMenuItem(); + expectedList.add(functionalMenuItem); + Mockito.when(mockedRequest.getHeader("LoginId")).thenReturn("guestT"); + Mockito.when(adminRolesService.isSuperAdmin(epUser)).thenReturn(true); + Mockito.when(functionalMenuService.getFunctionalMenuItems()).thenReturn(expectedList); + List actualList = externalAppsRestfulController.getFunctionalMenuItemsForUser(mockedRequest, + mockedResponse); + assertNull(actualList.get(0).menuId); + } + + @Test + public void getFunctionalMenuItemsForUserTest() throws Exception { + PowerMockito.mockStatic(EPCommonSystemProperties.class); + PowerMockito.mockStatic(MDC.class); + EPUser epUser = mockUser.mockEPUser(); + epUser.setId((long) 1); + epUser.setLoginId("guestT"); + String loginId = "guestT"; + Mockito.when(MDC.get(EPCommonSystemProperties.PARTNER_NAME)).thenReturn("Test"); + Mockito.when(epLoginService.findUserWithoutPwd(loginId)).thenReturn(epUser); + List expectedList = new ArrayList(); + FunctionalMenuItem functionalMenuItem = new FunctionalMenuItem(); + expectedList.add(functionalMenuItem); + Mockito.when(mockedRequest.getHeader("LoginId")).thenReturn("guestT"); + Mockito.when(adminRolesService.isSuperAdmin(epUser)).thenReturn(false); + Mockito.when(functionalMenuService.getFunctionalMenuItemsForUser(epUser.getOrgUserId())) + .thenReturn(expectedList); + List actualList = externalAppsRestfulController.getFunctionalMenuItemsForUser(mockedRequest, + mockedResponse); + assertNull(actualList.get(0).menuId); + } + + @Test(expected = Exception.class) + public void getFavoritesForUserIfUserNullTest() throws Exception { + List favorites = new ArrayList(); + FavoritesFunctionalMenuItemJson favoritesFunctionalMenuItemJson = new FavoritesFunctionalMenuItemJson(); + favorites.add(favoritesFunctionalMenuItemJson); + PowerMockito.mockStatic(EPCommonSystemProperties.class); + PowerMockito.mockStatic(MDC.class); + Mockito.when(mockedRequest.getHeader(EPCommonSystemProperties.MDC_LOGIN_ID)).thenReturn("Login_URL"); + Mockito.when(MDC.get(EPCommonSystemProperties.PARTNER_NAME)).thenReturn("Test"); + EPUser epUser = null; + externalAppsRestfulController.getFavoritesForUser(mockedRequest, mockedResponse); + } + + @Test + public void getFavoritesForUserTest() throws Exception { + PowerMockito.mockStatic(EPCommonSystemProperties.class); + PowerMockito.mockStatic(MDC.class); + EPUser epUser = mockUser.mockEPUser(); + epUser.setId((long) 1); + epUser.setLoginId("guestT"); + String loginId = "guestT"; + Mockito.when(MDC.get(EPCommonSystemProperties.PARTNER_NAME)).thenReturn("Test"); + List favorites = new ArrayList(); + FavoritesFunctionalMenuItemJson favoritesFunctionalMenuItemJson = new FavoritesFunctionalMenuItemJson(); + favorites.add(favoritesFunctionalMenuItemJson); + Mockito.when(mockedRequest.getHeader(EPCommonSystemProperties.MDC_LOGIN_ID)).thenReturn("Login_URL"); + Mockito.when(MDC.get(EPCommonSystemProperties.PARTNER_NAME)).thenReturn("Test"); + Mockito.when(epLoginService.findUserWithoutPwd("Login_URL")).thenReturn(epUser); + Mockito.when(functionalMenuService.getFavoriteItems(epUser.getId())).thenReturn(favorites); + List actaulFavorites = externalAppsRestfulController + .getFavoritesForUser(mockedRequest, mockedResponse); + assertEquals(actaulFavorites.size(), 1); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/FunctionalMenuControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/FunctionalMenuControllerTest.java index b9f11eeb..6e1b5d1c 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/FunctionalMenuControllerTest.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/FunctionalMenuControllerTest.java @@ -1,190 +1,188 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.controller; - -import static org.junit.Assert.*; - -import java.io.IOException; -import java.util.ArrayList; -import java.util.Date; -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import javax.servlet.http.HttpSession; -import javax.validation.constraints.AssertTrue; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.InjectMocks; -import org.mockito.Mock; -import org.mockito.Mockito; -import org.mockito.MockitoAnnotations; -import org.mockito.runners.MockitoJUnitRunner; -import org.openecomp.portalapp.portal.controller.FunctionalMenuController; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.service.AdminRolesService; -import org.openecomp.portalapp.portal.service.AdminRolesServiceImpl; -import org.openecomp.portalapp.portal.service.FunctionalMenuService; -import org.openecomp.portalapp.portal.service.FunctionalMenuServiceImpl; -import org.openecomp.portalapp.portal.test.core.MockEPUser; -import org.openecomp.portalapp.portal.test.framework.MockitoTestSuite; -import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; -import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRolesList; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.FieldsValidator.FieldName; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import org.openecomp.portalapp.util.EPUserUtils; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.util.SystemProperties; - -@RunWith(MockitoJUnitRunner.class) -public class FunctionalMenuControllerTest extends MockitoTestSuite { - - String userid = "sk434m"; - - @Mock - FunctionalMenuService functionalMenuService = new FunctionalMenuServiceImpl(); - - @InjectMocks - FunctionalMenuController functionalMenuController = new FunctionalMenuController(); - - @Mock - private DataAccessService dataAccessService; - - @Mock - AdminRolesService adminRolesService = new AdminRolesServiceImpl(); - - @Before - public void setup() { - MockitoAnnotations.initMocks(this); - } - - MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); - - HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); - HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); - - @InjectMocks - EPUserUtils ePUserUtils = new EPUserUtils(); - - @Mock - EPUser epuser; - - MockEPUser mockUser = new MockEPUser(); - - List appRoles = new ArrayList(); - List appRolesActual = new ArrayList(); - - List userAppRoleList = new ArrayList(); - - public List mockBusinessCardApplicationRole() { - List userAppRoleList = new ArrayList(); - - BusinessCardApplicationRole businessCardApplicationRole = new BusinessCardApplicationRole(); - businessCardApplicationRole.setRoleName("ADMIN"); - businessCardApplicationRole.setAppName("ASDC"); - - BusinessCardApplicationRole businessCardApplicationRole1 = new BusinessCardApplicationRole(); - businessCardApplicationRole1.setAppName("ASDC"); - businessCardApplicationRole1.setRoleName("Tester"); - - userAppRoleList.add(businessCardApplicationRole); - userAppRoleList.add(businessCardApplicationRole1); - return userAppRoleList; - } - - public List mockBusinessCardApplicationRolesList() { - List appRolesActual = new ArrayList(); - - BusinessCardApplicationRolesList businessCardApplicationRolesList = new BusinessCardApplicationRolesList(); - businessCardApplicationRolesList.setAppName("ASDC"); - - List roleNames = new ArrayList(); - roleNames.add("ADMIN"); - roleNames.add("Tester"); - businessCardApplicationRolesList.setRoleNames(roleNames); - - appRolesActual.add(businessCardApplicationRolesList); - return appRolesActual; - } - - @Test - public void getAppListTestIfAppAlredyExistsBusinessCardApplicationRolesList() throws IOException { - - userAppRoleList = mockBusinessCardApplicationRole(); - appRolesActual = mockBusinessCardApplicationRolesList(); - - Mockito.when(functionalMenuService.getUserAppRolesList(userid)).thenReturn(userAppRoleList); - - appRoles = functionalMenuController.getAppList(mockedRequest, userid); - - assertEquals(appRolesActual.size(), appRoles.size()); - assertEquals(appRolesActual.get(0).getAppName(), appRoles.get(0).getAppName()); - assertEquals(appRolesActual.get(0).getRoleNames(), appRoles.get(0).getRoleNames()); - - } - - @Test - public void getAppListTestIfAppDoesnotExistsInBusinessCardApplicationRolesList() throws IOException { - - userAppRoleList = mockBusinessCardApplicationRole(); - BusinessCardApplicationRole businessCardApplicationRole = new BusinessCardApplicationRole(); - businessCardApplicationRole.setAppName("CCD"); - businessCardApplicationRole.setRoleName("ADMIN"); - userAppRoleList.add(businessCardApplicationRole); - appRolesActual = mockBusinessCardApplicationRolesList(); - BusinessCardApplicationRolesList businessCardApplicationRolesList = new BusinessCardApplicationRolesList(); - businessCardApplicationRolesList.setAppName("CCD"); - List roleNames1 = new ArrayList(); - roleNames1.add("ADMIN"); - businessCardApplicationRolesList.setRoleNames(roleNames1); - appRolesActual.add(businessCardApplicationRolesList); - Mockito.when(functionalMenuService.getUserAppRolesList(userid)).thenReturn(userAppRoleList); - appRoles = functionalMenuController.getAppList(mockedRequest, userid); - assertEquals(appRolesActual.size(), appRoles.size()); - assertEquals(appRolesActual.get(0).getAppName(), appRoles.get(0).getAppName()); - assertEquals(appRolesActual.get(0).getRoleNames(), appRoles.get(0).getRoleNames()); - assertEquals(appRolesActual.get(1).getAppName(), appRoles.get(1).getAppName()); - assertEquals(appRolesActual.get(1).getRoleNames(), appRoles.get(1).getRoleNames()); - - } - - @Test - public void regenerateAncestorTableTest() { - EPUser user = mockUser.mockEPUser(); - - HttpSession session = mockedRequest.getSession(); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - FieldsValidator acutualFieldValidator = null; - FieldsValidator expectedFieldValidator = new FieldsValidator(); - List fields = new ArrayList<>(); - expectedFieldValidator.setHttpStatusCode((long) 200); - expectedFieldValidator.setFields(fields); - expectedFieldValidator.setErrorCode(null); - Mockito.when(!adminRolesService.isSuperAdmin(user)).thenReturn(true); - Mockito.when(functionalMenuService.regenerateAncestorTable()).thenReturn(expectedFieldValidator); - acutualFieldValidator = functionalMenuController.regenerateAncestorTable(mockedRequest, mockedResponse); - assertTrue(acutualFieldValidator.equals(expectedFieldValidator)); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.mockito.runners.MockitoJUnitRunner; +import org.openecomp.portalapp.portal.controller.FunctionalMenuController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.AdminRolesServiceImpl; +import org.openecomp.portalapp.portal.service.FunctionalMenuService; +import org.openecomp.portalapp.portal.service.FunctionalMenuServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; +import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRolesList; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.FieldsValidator.FieldName; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.util.SystemProperties; + +@RunWith(MockitoJUnitRunner.class) +public class FunctionalMenuControllerTest extends MockitoTestSuite { + + String userid = "ab1234"; + + @Mock + FunctionalMenuService functionalMenuService = new FunctionalMenuServiceImpl(); + + @InjectMocks + FunctionalMenuController functionalMenuController = new FunctionalMenuController(); + + @Mock + private DataAccessService dataAccessService; + + @Mock + AdminRolesService adminRolesService = new AdminRolesServiceImpl(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + + @InjectMocks + EPUserUtils ePUserUtils = new EPUserUtils(); + + @Mock + EPUser epuser; + + MockEPUser mockUser = new MockEPUser(); + + List appRoles = new ArrayList(); + List appRolesActual = new ArrayList(); + + List userAppRoleList = new ArrayList(); + + public List mockBusinessCardApplicationRole() { + List userAppRoleList = new ArrayList(); + + BusinessCardApplicationRole businessCardApplicationRole = new BusinessCardApplicationRole(); + businessCardApplicationRole.setRoleName("ADMIN"); + businessCardApplicationRole.setAppName("ASDC"); + + BusinessCardApplicationRole businessCardApplicationRole1 = new BusinessCardApplicationRole(); + businessCardApplicationRole1.setAppName("ASDC"); + businessCardApplicationRole1.setRoleName("Tester"); + + userAppRoleList.add(businessCardApplicationRole); + userAppRoleList.add(businessCardApplicationRole1); + return userAppRoleList; + } + + public List mockBusinessCardApplicationRolesList() { + List appRolesActual = new ArrayList(); + + BusinessCardApplicationRolesList businessCardApplicationRolesList = new BusinessCardApplicationRolesList(); + businessCardApplicationRolesList.setAppName("ASDC"); + + List roleNames = new ArrayList(); + roleNames.add("ADMIN"); + roleNames.add("Tester"); + businessCardApplicationRolesList.setRoleNames(roleNames); + + appRolesActual.add(businessCardApplicationRolesList); + return appRolesActual; + } + + @Test + public void getAppListTestIfAppAlredyExistsBusinessCardApplicationRolesList() throws IOException { + + userAppRoleList = mockBusinessCardApplicationRole(); + appRolesActual = mockBusinessCardApplicationRolesList(); + + Mockito.when(functionalMenuService.getUserAppRolesList(userid)).thenReturn(userAppRoleList); + + appRoles = functionalMenuController.getAppList(mockedRequest, userid); + + assertEquals(appRolesActual.size(), appRoles.size()); + assertEquals(appRolesActual.get(0).getAppName(), appRoles.get(0).getAppName()); + assertEquals(appRolesActual.get(0).getRoleNames(), appRoles.get(0).getRoleNames()); + + } + + @Test + public void getAppListTestIfAppDoesnotExistsInBusinessCardApplicationRolesList() throws IOException { + + userAppRoleList = mockBusinessCardApplicationRole(); + BusinessCardApplicationRole businessCardApplicationRole = new BusinessCardApplicationRole(); + businessCardApplicationRole.setAppName("CCD"); + businessCardApplicationRole.setRoleName("ADMIN"); + userAppRoleList.add(businessCardApplicationRole); + appRolesActual = mockBusinessCardApplicationRolesList(); + BusinessCardApplicationRolesList businessCardApplicationRolesList = new BusinessCardApplicationRolesList(); + businessCardApplicationRolesList.setAppName("CCD"); + List roleNames1 = new ArrayList(); + roleNames1.add("ADMIN"); + businessCardApplicationRolesList.setRoleNames(roleNames1); + appRolesActual.add(businessCardApplicationRolesList); + Mockito.when(functionalMenuService.getUserAppRolesList(userid)).thenReturn(userAppRoleList); + appRoles = functionalMenuController.getAppList(mockedRequest, userid); + assertEquals(appRolesActual.size(), appRoles.size()); + assertEquals(appRolesActual.get(0).getAppName(), appRoles.get(0).getAppName()); + assertEquals(appRolesActual.get(0).getRoleNames(), appRoles.get(0).getRoleNames()); + assertEquals(appRolesActual.get(1).getAppName(), appRoles.get(1).getAppName()); + assertEquals(appRolesActual.get(1).getRoleNames(), appRoles.get(1).getRoleNames()); + + } + + @Test + public void regenerateAncestorTableTest() { + EPUser user = mockUser.mockEPUser(); + + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + FieldsValidator acutualFieldValidator = null; + FieldsValidator expectedFieldValidator = new FieldsValidator(); + List fields = new ArrayList<>(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(fields); + expectedFieldValidator.setErrorCode(null); + Mockito.when(!adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(functionalMenuService.regenerateAncestorTable()).thenReturn(expectedFieldValidator); + acutualFieldValidator = functionalMenuController.regenerateAncestorTable(mockedRequest, mockedResponse); + assertTrue(acutualFieldValidator.equals(expectedFieldValidator)); + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/GetAccessControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/GetAccessControllerTest.java new file mode 100644 index 00000000..b9ab249e --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/GetAccessControllerTest.java @@ -0,0 +1,71 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.GetAccessController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.GetAccessResult; +import org.openecomp.portalapp.portal.service.GetAccessService; +import org.openecomp.portalapp.portal.service.GetAccessServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; + +public class GetAccessControllerTest { + + @Mock + GetAccessService getAccessService = new GetAccessServiceImpl(); + + @InjectMocks + GetAccessController getAccessController = new GetAccessController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + MockEPUser mockUser = new MockEPUser(); + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + + @Test + public void getAppList() throws IOException + { + List expectedAppsList = new ArrayList(); + EPUser user = mockUser.mockEPUser(); + GetAccessResult getAccessResult = new GetAccessResult(); + getAccessResult.setRowId("1"); + getAccessResult.setRoleId((long) 1); + getAccessResult.setEcompFunction("test"); + getAccessResult.setAppName("Test_App"); + getAccessResult.setAppMotsId(1); + getAccessResult.setRoleName("Test_role"); + getAccessResult.setRoleActive("N"); + getAccessResult.setReqType("test"); + + expectedAppsList.add(getAccessResult); + + List actualAppsList = null; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(getAccessService.getAppAccessList(user)).thenReturn(expectedAppsList); + actualAppsList = getAccessController.getAppList(mockedRequest); + assertTrue(actualAppsList.contains(getAccessResult)); + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ManifestControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ManifestControllerTest.java new file mode 100644 index 00000000..ceaceaac --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/ManifestControllerTest.java @@ -0,0 +1,56 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import java.io.IOException; +import java.util.HashMap; +import java.util.Map; +import java.util.jar.Attributes; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.ManifestController; +import org.openecomp.portalapp.portal.service.ManifestService; +import org.openecomp.portalapp.portal.service.ManifestServiceImpl; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; + +public class ManifestControllerTest extends MockitoTestSuite{ + + + @Mock + ManifestService manifestService = new ManifestServiceImpl(); + + @InjectMocks + ManifestController manifestController = new ManifestController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + NullPointerException nullPointerException = new NullPointerException(); + + @Test + public void getManifestTest() throws IOException + { + Map expectedResponse = new HashMap(); + Attributes attributes = new Attributes(); + expectedResponse.put("test", attributes); + Mockito.when(manifestService.getWebappManifest()).thenReturn(attributes); + Map actualResponse = manifestController.getManifest(mockedRequest); + assertTrue((actualResponse.keySet().toArray().length) == 1); + + } + + @Test + public void getManifestExceptionTest() throws IOException + { + Mockito.when(manifestService.getWebappManifest()).thenThrow(nullPointerException); + Map actualResponse = manifestController.getManifest(mockedRequest); + assertTrue((actualResponse.keySet().toArray().length) == 1); + assertTrue(actualResponse.get("error").equals("failed to get manifest: java.lang.NullPointerException")); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/MicroserviceControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/MicroserviceControllerTest.java new file mode 100644 index 00000000..4c14d8a0 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/MicroserviceControllerTest.java @@ -0,0 +1,233 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.MicroserviceController; +import org.openecomp.portalapp.portal.domain.MicroserviceData; +import org.openecomp.portalapp.portal.domain.WidgetCatalog; +import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.ConsulHealthService; +import org.openecomp.portalapp.portal.service.ConsulHealthServiceImpl; +import org.openecomp.portalapp.portal.service.MicroserviceService; +import org.openecomp.portalapp.portal.service.MicroserviceServiceImpl; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import org.springframework.core.ParameterizedTypeReference; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpMethod; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.web.client.RestTemplate; + +@RunWith(PowerMockRunner.class) +@PrepareForTest(WidgetServiceHeaders.class) +public class MicroserviceControllerTest extends MockitoTestSuite{ + + @InjectMocks + MicroserviceController microserviceController = new MicroserviceController(); + + @Mock + ConsulHealthService consulHealthService = new ConsulHealthServiceImpl(); + + @Mock + MicroserviceService microserviceService = new MicroserviceServiceImpl(); + + @Mock + RestTemplate template = new RestTemplate(); + + @Mock + MicroserviceData microserviceData = new MicroserviceData(); + + @SuppressWarnings("rawtypes") + @Mock + ResponseEntity> ans = new ResponseEntity>(HttpStatus.OK); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + @Mock + EcompPortalUtils EcompPortalUtils = new EcompPortalUtils(); + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Test + public void createMicroserviceIfServiceDataNullTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("FAILURE"); + expectedportalRestResponse.setResponse("MicroserviceData cannot be null or empty"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + MicroserviceData microserviceData = null; + PortalRestResponse actualportalRestResponse = microserviceController.createMicroservice(mockedRequest, + mockedResponse, microserviceData); + assertEquals(actualportalRestResponse, expectedportalRestResponse); + } + + @Test + public void createMicroserviceTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("SUCCESS"); + expectedportalRestResponse.setResponse(""); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + PortalRestResponse actualportalRestResponse = microserviceController.createMicroservice(mockedRequest, + mockedResponse, microserviceData); + assertEquals(actualportalRestResponse, expectedportalRestResponse); + } + + @Test + public void createMicroserviceExceptionTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("FAILURE"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + Mockito.when(microserviceService.saveMicroservice(microserviceData)).thenReturn((long) 1); + Mockito.when(microserviceData.getParameterList()).thenThrow(nullPointerException); + PortalRestResponse actualportalRestResponse = microserviceController.createMicroservice(mockedRequest, + mockedResponse, microserviceData); + assertEquals(actualportalRestResponse, expectedportalRestResponse); + } + + @Test + public void getMicroserviceTest() throws Exception { + Mockito.when(microserviceService.getMicroserviceData()).thenReturn(null); + List list = microserviceController.getMicroservice(mockedRequest, mockedResponse); + assertEquals(list, null); + } + + @Test + public void updateMicroserviceIfServiceISNullTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("FAILURE"); + expectedportalRestResponse.setResponse("MicroserviceData cannot be null or empty"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + MicroserviceData microserviceData = null; + PortalRestResponse actualportalRestResponse = microserviceController.updateMicroservice(mockedRequest, + mockedResponse, 1, microserviceData); + assertEquals(actualportalRestResponse, expectedportalRestResponse); + } + + @Test + public void updateMicroserviceTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("SUCCESS"); + expectedportalRestResponse.setResponse(""); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + PortalRestResponse actualportalRestResponse = microserviceController.updateMicroservice(mockedRequest, + mockedResponse, 1, microserviceData); + assertEquals(actualportalRestResponse, expectedportalRestResponse); + } + + @Test + public void updateMicroserviceExceptionTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("FAILURE"); + expectedportalRestResponse.setResponse(null); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + Mockito.when(microserviceController.updateMicroservice(mockedRequest, mockedResponse, 1, microserviceData)) + .thenThrow(nullPointerException); + PortalRestResponse actualportalRestResponse = microserviceController.updateMicroservice(mockedRequest, + mockedResponse, 1, microserviceData); + assertEquals(actualportalRestResponse, expectedportalRestResponse); + } + + @Test + public void deleteMicroserviceExceptionTest() throws Exception { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("FAILURE"); + expectedportalRestResponse.setResponse( + "I/O error on GET request for \"https://null/widget/microservices/widgetCatalog/service/1\":null; nested exception is java.net.UnknownHostException: null"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + PowerMockito.mockStatic(WidgetServiceHeaders.class); + PortalRestResponse actuaPportalRestResponse = microserviceController.deleteMicroservice(mockedRequest, + mockedResponse, 1); + assertEquals(actuaPportalRestResponse.getStatus(), expectedportalRestResponse.getStatus()); + } + + @SuppressWarnings("unchecked") + @Test + public void deleteMicroserviceTest() throws Exception { + String HTTPS = "https://"; + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("SOME WIDGETS ASSOICATE WITH THIS SERVICE"); + expectedportalRestResponse.setResponse("'null' ,'null' "); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.WARN); + List List = new ArrayList(); + WidgetCatalog widgetCatalog = new WidgetCatalog(); + widgetCatalog.setId(1); + WidgetCatalog widgetCatalog1 = new WidgetCatalog(); + widgetCatalog.setId(2); + List.add(widgetCatalog); + List.add(widgetCatalog1); + PowerMockito.mockStatic(WidgetServiceHeaders.class); + String whatService = "widgets-service"; + Mockito.when(consulHealthService.getServiceLocation(whatService, SystemProperties.getProperty("microservices.widget.local.port"))).thenReturn("Test"); + Mockito.when(ans.getBody()).thenReturn(List); + ParameterizedTypeReference> typeRef = new ParameterizedTypeReference>() { + }; + Mockito.when(template.exchange( + HTTPS + consulHealthService.getServiceLocation(whatService, SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog/service/" + 1, + HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), typeRef)).thenReturn(ans); + + PortalRestResponse actuaPportalRestResponse = microserviceController.deleteMicroservice(mockedRequest, + mockedResponse, 1); + assertEquals(actuaPportalRestResponse, expectedportalRestResponse); + } + + @SuppressWarnings("unchecked") + @Test + public void deleteMicroserviceWhenNoWidgetsAssociatedTest() throws Exception { + String HTTPS = "https://"; + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("SUCCESS"); + expectedportalRestResponse.setResponse(""); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + List List = new ArrayList(); + PowerMockito.mockStatic(WidgetServiceHeaders.class); + String whatService = "widgets-service"; + Mockito.when(consulHealthService.getServiceLocation(whatService, SystemProperties.getProperty("microservices.widget.local.port"))).thenReturn("Test"); + Mockito.when(ans.getBody()).thenReturn(List); + ParameterizedTypeReference> typeRef = new ParameterizedTypeReference>() { + }; + Mockito.when(template.exchange( + HTTPS + consulHealthService.getServiceLocation(whatService, SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog/service/" + 1, + HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), typeRef)).thenReturn(ans); + PortalRestResponse actuaPportalRestResponse = microserviceController.deleteMicroservice(mockedRequest, + mockedResponse, 1); + assertEquals(actuaPportalRestResponse, expectedportalRestResponse); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/MicroserviceProxyControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/MicroserviceProxyControllerTest.java new file mode 100644 index 00000000..0d5aee15 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/MicroserviceProxyControllerTest.java @@ -0,0 +1,106 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.openecomp.portalapp.portal.controller.MicroserviceProxyController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.service.MicroserviceProxyService; +import org.openecomp.portalapp.portal.service.MicroserviceProxyServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; +import org.springframework.http.HttpStatus; +import org.springframework.web.client.HttpClientErrorException; + +import com.fasterxml.jackson.databind.ObjectMapper; + + + +public class MicroserviceProxyControllerTest extends MockitoTestSuite { + + @Mock + MicroserviceProxyService microserviceProxyService = new MicroserviceProxyServiceImpl(); + + @InjectMocks + MicroserviceProxyController microserviceProxyController = new MicroserviceProxyController(); + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + @Mock + ObjectMapper objectMapper = new ObjectMapper(); + MockEPUser mockUser = new MockEPUser(); + + @Test + public void getMicroserviceProxyTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(microserviceProxyService.proxyToDestination(1, user, mockedRequest)).thenReturn("Success"); + String acutualString = microserviceProxyController.getMicroserviceProxy(mockedRequest, getMockedResponse(), 1); + assertTrue(acutualString.equals("Success")); + } + + @Test(expected = NullPointerException.class) + public void getMicroserviceProxyNullPoniterExceptionTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(microserviceProxyService.proxyToDestination(1, user, mockedRequest)) + .thenThrow(nullPointerException); + microserviceProxyController.getMicroserviceProxy(mockedRequest, getMockedResponse(), 1); + } + + @Test + public void getMicroserviceProxyExceptionTest() throws Exception { + HttpClientErrorException httpClientErrorException = new HttpClientErrorException(HttpStatus.OK, "Success"); + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(microserviceProxyService.proxyToDestination(1, user, mockedRequest)) + .thenThrow(httpClientErrorException); + String acutualString = microserviceProxyController.getMicroserviceProxy(mockedRequest, getMockedResponse(), 1); + assertTrue(acutualString.equals("{\"error\":\"\"}")); + } + + @Test + public void getMicroserviceProxyByWidgetIdTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(microserviceProxyService.proxyToDestinationByWidgetId(1, user, mockedRequest)) + .thenReturn("Success"); + String acutualString = microserviceProxyController.getMicroserviceProxyByWidgetId(mockedRequest, + getMockedResponse(), 1); + assertTrue(acutualString.equals("Success")); + } + + @Test(expected = NullPointerException.class) + public void getMicroserviceProxyByWidgetIdNullPointerExceptionTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(microserviceProxyService.proxyToDestinationByWidgetId(1, user, mockedRequest)) + .thenThrow(nullPointerException); + microserviceProxyController.getMicroserviceProxyByWidgetId(mockedRequest, getMockedResponse(), 1); + } + + @Test + public void getMicroserviceProxyByWidgetIdExceptionTest() throws Exception { + HttpClientErrorException httpClientErrorException = new HttpClientErrorException(HttpStatus.OK, "Success"); + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(microserviceProxyService.proxyToDestinationByWidgetId(1, user, mockedRequest)) + .thenThrow(httpClientErrorException); + String acutualString = microserviceProxyController.getMicroserviceProxyByWidgetId(mockedRequest, + getMockedResponse(), 1); + assertTrue(acutualString.equals("{\"error\":\"\"}")); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/PortalAdminControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/PortalAdminControllerTest.java new file mode 100644 index 00000000..20542729 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/PortalAdminControllerTest.java @@ -0,0 +1,231 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.PortalAdminController; +import org.openecomp.portalapp.portal.domain.EPRole; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.exceptions.NoHealthyServiceException; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.AdminRolesServiceImpl; +import org.openecomp.portalapp.portal.service.PortalAdminService; +import org.openecomp.portalapp.portal.service.PortalAdminServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.PortalAdmin; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.service.AuditService; +import org.openecomp.portalsdk.core.service.AuditServiceImpl; + +public class PortalAdminControllerTest extends MockitoTestSuite{ + + @InjectMocks + PortalAdminController portalAdminController = new PortalAdminController(); + + @Mock + AdminRolesService adminRolesService = new AdminRolesServiceImpl(); + + @Mock + PortalAdminService portalAdminService = new PortalAdminServiceImpl(); + + @Mock + AuditService auditService = new AuditServiceImpl(); + + + @Mock + EcompPortalUtils ecompPortalUtils = new EcompPortalUtils(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + + MockEPUser mockUser = new MockEPUser(); + + + @Test + public void getPortalAdminsTest() + { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedPortalAdminsList = new ArrayList(); + PortalAdmin portalAdmin= new PortalAdmin(); + + portalAdmin.setUserId((long) 1); + portalAdmin.setLoginId("guestT"); + portalAdmin.setFirstName("Test_FirstName"); + portalAdmin.setLastName("Test_LastName"); + + expectedPortalAdminsList.add(portalAdmin); + + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + + Mockito.when(portalAdminService.getPortalAdmins()).thenReturn(expectedPortalAdminsList); + List actualPortalAdminsList = portalAdminController.getPortalAdmins(mockedRequest, mockedResponse); + assertEquals(actualPortalAdminsList,expectedPortalAdminsList); + + } +// @Test +// public void getPortalAdminsIfUserIsNullTest() +// { +// EPUser user = null; +// Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); +// +// assertNull(portalAdminController.getPortalAdmins(mockedRequest, mockedResponse)); +// +// } + + @Test + public void getPortalAdminsIfUserIsSuperAdminTest() + { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + assertNull(portalAdminController.getPortalAdmins(mockedRequest, mockedResponse)); + + } + + + + @Test + public void createPortalAdminTest() + { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + FieldsValidator actualFieldValidator = new FieldsValidator(); + String sbcid = "Test"; + + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(portalAdminService.createPortalAdmin(sbcid)).thenReturn(expectedFieldValidator); + actualFieldValidator = portalAdminController.createPortalAdmin(mockedRequest, sbcid, mockedResponse); + assertEquals(actualFieldValidator,expectedFieldValidator); + + } + +// @Test +// public void createPortalAdminIfUserIsNullTest() +// { +// //EPUser user = null; +// Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(null); +// String sbcid = "null"; +// assertNull(portalAdminController.createPortalAdmin(mockedRequest, sbcid, mockedResponse)); +// +// } + + @Test + public void createPortalAdminIfUserIsSuperAdminTest() + { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + String sbcid = "Test"; + assertNull(portalAdminController.createPortalAdmin(mockedRequest, sbcid, mockedResponse)); + + } + + @Test + public void deletePortalAdminTest() + { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + + FieldsValidator expectedFieldValidator = new FieldsValidator(); + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(null); + expectedFieldValidator.setErrorCode(null); + FieldsValidator actualFieldValidator = new FieldsValidator(); + String userInfo = "1-test"; + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(true); + Mockito.when(portalAdminService.deletePortalAdmin((long) 1)).thenReturn(expectedFieldValidator); + actualFieldValidator = portalAdminController.deletePortalAdmin(mockedRequest, userInfo, mockedResponse); + assertEquals(actualFieldValidator,expectedFieldValidator); + + } + + @Test + public void deletePortalAdminIfUserIsSuperAdminTest() + { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + String userInfo = "1-test"; + assertNull(portalAdminController.deletePortalAdmin(mockedRequest, userInfo, mockedResponse)); + + } + + @Test + public void deletePortalAdminWithNoUserInfoTest() + { + EPUser user = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(adminRolesService.isSuperAdmin(user)).thenReturn(false); + String userInfo = ""; + assertNull(portalAdminController.deletePortalAdmin(mockedRequest, userInfo, mockedResponse)); + } + + @Test + public void getRolesByAppIfUserNullTest() + { + EPUser user = null; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Long appId = (long) 1; + assertNull(portalAdminController.getRolesByApp(mockedRequest, appId, mockedResponse)); + } + + @Test + public void getRolesByAppTest() + { + EPUser user = mockUser.mockEPUser();; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedRoleList = new ArrayList(); + EPRole ePRole = new EPRole(); + expectedRoleList.add(ePRole); + Long appId = (long) 1; + Mockito.when(adminRolesService.getRolesByApp(user, appId)).thenReturn(expectedRoleList); + List actualRoleList = portalAdminController.getRolesByApp(mockedRequest, appId, mockedResponse); + assertEquals(actualRoleList,expectedRoleList); + } + + @Test + public void getRolesByAppExceptionTest() + { + EPUser user = mockUser.mockEPUser();; + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedRoleList = new ArrayList(); + EPRole ePRole = new EPRole(); + expectedRoleList.add(ePRole); + Long appId = (long) 1; + Mockito.when(adminRolesService.getRolesByApp(user, appId)).thenThrow(nullPointerException); + assertNull(portalAdminController.getRolesByApp(mockedRequest, appId, mockedResponse)); + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/RolesApprovalSystemControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/RolesApprovalSystemControllerTest.java new file mode 100644 index 00000000..6286245f --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/RolesApprovalSystemControllerTest.java @@ -0,0 +1,336 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemRoleApproval; +import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemUser; +import org.openecomp.portalapp.portal.controller.RolesApprovalSystemController; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.UserRolesService; +import org.openecomp.portalapp.portal.transport.ExternalRequestFieldsValidator; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; + +public class RolesApprovalSystemControllerTest extends MockitoTestSuite { + + @Mock + UserRolesService userRolesService; + + @InjectMocks + RolesApprovalSystemController rolesApprovalSystemController = new RolesApprovalSystemController(); + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + @Test + public void postUserProfileIfRolesNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Request has no roles"); + expectedportalRestResponse.setResponse("save user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = null; + extSysUser.setRoles(externalSystemRoleApprovalList); + + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .postUserProfile(mockedRequest, extSysUser, mockedResponse); + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void postUserProfileTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Saved Successfully"); + expectedportalRestResponse.setResponse("Success"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + ExternalSystemRoleApproval externalSystemRoleApproval = new ExternalSystemRoleApproval(); + externalSystemRoleApprovalList.add(externalSystemRoleApproval); + extSysUser.setRoles(externalSystemRoleApprovalList); + ExternalRequestFieldsValidator externalRequestFieldsValidator = new ExternalRequestFieldsValidator(true, + "Saved Successfully"); + + Mockito.when(userRolesService.setExternalRequestUserAppRole(extSysUser, "POST")) + .thenReturn(externalRequestFieldsValidator); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .postUserProfile(mockedRequest, extSysUser, mockedResponse); + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void postUserProfileFailureTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Received Bad String"); + expectedportalRestResponse.setResponse("save user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + ExternalSystemRoleApproval externalSystemRoleApproval = new ExternalSystemRoleApproval(); + externalSystemRoleApprovalList.add(externalSystemRoleApproval); + extSysUser.setRoles(externalSystemRoleApprovalList); + ExternalRequestFieldsValidator externalRequestFieldsValidator = new ExternalRequestFieldsValidator(false, + "Received Bad String"); + Mockito.when(userRolesService.setExternalRequestUserAppRole(extSysUser, "POST")) + .thenReturn(externalRequestFieldsValidator); + + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .postUserProfile(mockedRequest, extSysUser, mockedResponse); + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void postUserProfileExceptionTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse("save user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + ExternalSystemRoleApproval externalSystemRoleApproval = new ExternalSystemRoleApproval(); + externalSystemRoleApprovalList.add(externalSystemRoleApproval); + extSysUser.setRoles(externalSystemRoleApprovalList); + Mockito.when(userRolesService.setExternalRequestUserAppRole(extSysUser, "POST")).thenThrow(nullPointerException); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .postUserProfile(mockedRequest, extSysUser, mockedResponse); + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void putUserProfileIfLoginIdNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Request has no login ID"); + expectedportalRestResponse.setResponse("save user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId(null); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + extSysUser.setRoles(externalSystemRoleApprovalList); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .putUserProfile(mockedRequest, extSysUser, mockedResponse); + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void putUserProfileTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Updated Successfully"); + expectedportalRestResponse.setResponse("Success"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + ExternalSystemRoleApproval externalSystemRoleApproval = new ExternalSystemRoleApproval(); + externalSystemRoleApprovalList.add(externalSystemRoleApproval); + extSysUser.setRoles(externalSystemRoleApprovalList); + ExternalRequestFieldsValidator externalRequestFieldsValidator = new ExternalRequestFieldsValidator(true, + "Updated Successfully"); + + Mockito.when(userRolesService.setExternalRequestUserAppRole(extSysUser, "PUT")) + .thenReturn(externalRequestFieldsValidator); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .putUserProfile(mockedRequest, extSysUser, mockedResponse); + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void putUserProfileFailureTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Received Bad String"); + expectedportalRestResponse.setResponse("save user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + ExternalSystemRoleApproval externalSystemRoleApproval = new ExternalSystemRoleApproval(); + externalSystemRoleApprovalList.add(externalSystemRoleApproval); + extSysUser.setRoles(externalSystemRoleApprovalList); + ExternalRequestFieldsValidator externalRequestFieldsValidator = new ExternalRequestFieldsValidator(false, + "Received Bad String"); + + Mockito.when(userRolesService.setExternalRequestUserAppRole(extSysUser, "PUT")) + .thenReturn(externalRequestFieldsValidator); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .putUserProfile(mockedRequest, extSysUser, mockedResponse); + + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void putUserProfileExceptionTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse("save user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + ExternalSystemRoleApproval externalSystemRoleApproval = new ExternalSystemRoleApproval(); + externalSystemRoleApprovalList.add(externalSystemRoleApproval); + extSysUser.setRoles(externalSystemRoleApprovalList); + Mockito.when(userRolesService.setExternalRequestUserAppRole(extSysUser, "PUT")).thenThrow(nullPointerException); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .putUserProfile(mockedRequest, extSysUser, mockedResponse); + + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void deleteUserProfileIfApplicationNameNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Request has no application name"); + expectedportalRestResponse.setResponse("delete user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName(null); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + extSysUser.setRoles(externalSystemRoleApprovalList); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .deleteUserProfile(mockedRequest, extSysUser, mockedResponse); + + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void deleteUserProfileIfMyloginrequestIdNullTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Request has no request ID"); + expectedportalRestResponse.setResponse("delete user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId(null); + List externalSystemRoleApprovalList = new ArrayList(); + extSysUser.setRoles(externalSystemRoleApprovalList); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .deleteUserProfile(mockedRequest, extSysUser, mockedResponse); + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void deleteUserProfileTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("Deleted Successfully"); + expectedportalRestResponse.setResponse("Success"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + ExternalSystemRoleApproval externalSystemRoleApproval = new ExternalSystemRoleApproval(); + externalSystemRoleApprovalList.add(externalSystemRoleApproval); + extSysUser.setRoles(externalSystemRoleApprovalList); + ExternalRequestFieldsValidator externalRequestFieldsValidator = new ExternalRequestFieldsValidator(true, + "Success"); + + Mockito.when(userRolesService.setExternalRequestUserAppRole(extSysUser, "DELETE")) + .thenReturn(externalRequestFieldsValidator); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .deleteUserProfile(mockedRequest, extSysUser, mockedResponse); + + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void deleteUserProfileFailureTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage("failed"); + expectedportalRestResponse.setResponse("delete user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + ExternalSystemRoleApproval externalSystemRoleApproval = new ExternalSystemRoleApproval(); + externalSystemRoleApprovalList.add(externalSystemRoleApproval); + extSysUser.setRoles(externalSystemRoleApprovalList); + ExternalRequestFieldsValidator externalRequestFieldsValidator = new ExternalRequestFieldsValidator(false, + "failed"); + + Mockito.when(userRolesService.setExternalRequestUserAppRole(extSysUser, "DELETE")) + .thenReturn(externalRequestFieldsValidator); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .deleteUserProfile(mockedRequest, extSysUser, mockedResponse); + + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } + + @Test + public void deleteUserProfileExceptionTest() { + PortalRestResponse expectedportalRestResponse = new PortalRestResponse(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse("delete user profile failed"); + PortalRestStatusEnum portalRestStatusEnum = null; + expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); + ExternalSystemUser extSysUser = new ExternalSystemUser(); + extSysUser.setApplicationName("Test_App"); + extSysUser.setLoginId("1"); + extSysUser.setMyloginrequestId("Test"); + List externalSystemRoleApprovalList = new ArrayList(); + ExternalSystemRoleApproval externalSystemRoleApproval = new ExternalSystemRoleApproval(); + externalSystemRoleApprovalList.add(externalSystemRoleApproval); + extSysUser.setRoles(externalSystemRoleApprovalList); + Mockito.when(userRolesService.setExternalRequestUserAppRole(extSysUser, "DELETE")).thenThrow(nullPointerException); + PortalRestResponse actualportalRestResponse = rolesApprovalSystemController + .deleteUserProfile(mockedRequest, extSysUser, mockedResponse); + + assertEquals(expectedportalRestResponse, actualportalRestResponse); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/TicketEventControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/TicketEventControllerTest.java new file mode 100644 index 00000000..1eda356a --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/TicketEventControllerTest.java @@ -0,0 +1,99 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.TicketEventController; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.UserNotificationService; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalsdk.core.web.support.UserUtils; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; + +@RunWith(PowerMockRunner.class) +@PrepareForTest(UserUtils.class) +public class TicketEventControllerTest { + + @Mock + UserNotificationService userNotificationService; + + @InjectMocks + TicketEventController ticketEventController = new TicketEventController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockEPUser mockUser = new MockEPUser(); + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Test + public void saveTest() throws Exception { + String ticketEventJson = "{\"application\": \"cbus\",\"event\": {\"body\": {\"ticketStatePhrase\": \"We recently detected a problem with the equipment at your site. The event is in queue for immediate work.\", \"ivrNotificationFlag\": \"1\",\"expectedRestoreDate\": 0,\"bridgeTransport\": \"AOTS\", \"reptRequestType\": 0,\"ticketNum\": \"000002000857405\",\"assetID\": \"CISCO_1921C1_ISR_G2\", \"eventDate\": 1490545134601,\"eventAbstract\": \"ospfIfConfigError trap received from Cisco_1921c1_ISR_G2 with arguments: ospfRouterId=Cisco_1921c1_ISR_G2; ospfIfIpAddress=1921c1_288266; ospfAddressLessIf=0; ospfPacketSrc=172.17.0.11; ospfConfigErrorType=2; ospfPacketType=1\",\"severity\": \"2 - Major\",\"ticketPriority\": \"3\",\"reportedCustomerImpact\": 0,\"testAutoIndicator\": 0,\"supportGroupName\": \"US-TEST-ORT\",\"lastModifiedDate\": \"1487687703\",\"messageGroup\": \"SNMP\",\"csi\": 0,\"mfabRestoredTime\": 0},\"header\": {\"timestamp\": \"2017-02-21T14:35:05.219+0000\",\"eventSource\": \"aotstm\",\"entityId\": \"000002000857405\", \"sequenceNumber\": 2 },\"blinkMsgId\": \"f38c071e-1a47-4b55-9e72-1db830100a61\",\"sourceIP\": \"130.4.165.158\"},\"SubscriberInfo\": {\"UserList\": [\"hk8777\"] }}"; + PortalRestResponse actualPortalRestResponse = ticketEventController.handleRequest(mockedRequest, + mockedResponse, ticketEventJson); + assertTrue(actualPortalRestResponse.getStatus().compareTo(PortalRestStatusEnum.OK) == 0); + } + + @Test + public void saveTestForException() throws Exception { + String ticketEventJson = "\"event\": {\"body\": {\"ticketStatePhrase\": \"We recently detected a problem with the equipment at your site. The event is in queue for immediate work.\", \"ivrNotificationFlag\": \"1\",\"expectedRestoreDate\": 0,\"bridgeTransport\": \"AOTS\", \"reptRequestType\": 0,\"ticketNum\": \"000002000857405\",\"assetID\": \"CISCO_1921C1_ISR_G2\", \"eventDate\": 1490545134601,\"eventAbstract\": \"ospfIfConfigError trap received from Cisco_1921c1_ISR_G2 with arguments: ospfRouterId=Cisco_1921c1_ISR_G2; ospfIfIpAddress=1921c1_288266; ospfAddressLessIf=0; ospfPacketSrc=172.17.0.11; ospfConfigErrorType=2; ospfPacketType=1\",\"severity\": \"2 - Major\",\"ticketPriority\": \"3\",\"reportedCustomerImpact\": 0,\"testAutoIndicator\": 0,\"supportGroupName\": \"US-TEST-ORT\",\"lastModifiedDate\": \"1487687703\",\"messageGroup\": \"SNMP\",\"csi\": 0,\"mfabRestoredTime\": 0},\"header\": {\"timestamp\": \"2017-02-21T14:35:05.219+0000\",\"eventSource\": \"aotstm\",\"entityId\": \"000002000857405\", \"sequenceNumber\": 2 },\"blinkMsgId\": \"f38c071e-1a47-4b55-9e72-1db830100a61\",\"sourceIP\": \"130.4.165.158\"},\"SubscriberInfo\": {\"UserList\": [\"hk8777\"] }}"; + PortalRestResponse actualPortalRestResponse = ticketEventController.handleRequest(mockedRequest, + mockedResponse, ticketEventJson); + assertTrue(actualPortalRestResponse.getStatus().compareTo(PortalRestStatusEnum.ERROR) == 0); + } + + @Test + public void saveTestForApplicationValid() throws Exception { + String ticketEventJson = "{\"event\": {\"body\": {\"ticketStatePhrase\": \"We recently detected a problem with the equipment at your site. The event is in queue for immediate work.\", \"ivrNotificationFlag\": \"1\",\"expectedRestoreDate\": 0,\"bridgeTransport\": \"AOTS\", \"reptRequestType\": 0,\"ticketNum\": \"000002000857405\",\"assetID\": \"CISCO_1921C1_ISR_G2\", \"eventDate\": 1490545134601,\"eventAbstract\": \"ospfIfConfigError trap received from Cisco_1921c1_ISR_G2 with arguments: ospfRouterId=Cisco_1921c1_ISR_G2; ospfIfIpAddress=1921c1_288266; ospfAddressLessIf=0; ospfPacketSrc=172.17.0.11; ospfConfigErrorType=2; ospfPacketType=1\",\"severity\": \"2 - Major\",\"ticketPriority\": \"3\",\"reportedCustomerImpact\": 0,\"testAutoIndicator\": 0,\"supportGroupName\": \"US-TEST-ORT\",\"lastModifiedDate\": \"1487687703\",\"messageGroup\": \"SNMP\",\"csi\": 0,\"mfabRestoredTime\": 0},\"header\": {\"timestamp\": \"2017-02-21T14:35:05.219+0000\",\"eventSource\": \"aotstm\",\"entityId\": \"000002000857405\", \"sequenceNumber\": 2 },\"blinkMsgId\": \"f38c071e-1a47-4b55-9e72-1db830100a61\",\"sourceIP\": \"130.4.165.158\"},\"SubscriberInfo\": {\"UserList\": [\"hk8777\"] }}"; + PortalRestResponse actualPortalRestResponse = ticketEventController.handleRequest(mockedRequest, + mockedResponse, ticketEventJson); + assertTrue(actualPortalRestResponse.getStatus().compareTo(PortalRestStatusEnum.ERROR) == 0); + assertEquals(actualPortalRestResponse.getMessage(), "application is mandatory"); + + } + + @Test + public void saveTestForBodyValid() throws Exception { + String ticketEventJson = "{\"application\": \"cbus\",\"event\": {\"header\": {\"timestamp\": \"2017-02-21T14:35:05.219+0000\",\"eventSource\": \"aotstm\",\"entityId\": \"000002000857405\",\"sequenceNumber\": 2 },\"blinkMsgId\": \"f38c071e-1a47-4b55-9e72-1db830100a61\",\"sourceIP\": \"130.4.165.158\"},\"SubscriberInfo\": {\"UserList\": [\"hk8777\"] }}"; + PortalRestResponse actualPortalRestResponse = ticketEventController.handleRequest(mockedRequest, + mockedResponse, ticketEventJson); + assertTrue(actualPortalRestResponse.getStatus().compareTo(PortalRestStatusEnum.ERROR) == 0); + assertEquals(actualPortalRestResponse.getMessage(), "body is mandatory"); + } + + @Test + public void saveTestForEventSourceValid() throws Exception { + String ticketEventJson = "{\"application\": \"cbus\",\"event\": {\"body\": {\"ticketStatePhrase\": \"We recently detected a problem with the equipment at your site. The event is in queue for immediate work.\", \"ivrNotificationFlag\": \"1\",\"expectedRestoreDate\": 0,\"bridgeTransport\": \"AOTS\", \"reptRequestType\": 0,\"ticketNum\": \"000002000857405\",\"assetID\": \"CISCO_1921C1_ISR_G2\", \"eventDate\": 1490545134601,\"eventAbstract\": \"ospfIfConfigError trap received from Cisco_1921c1_ISR_G2 with arguments: ospfRouterId=Cisco_1921c1_ISR_G2; ospfIfIpAddress=1921c1_288266; ospfAddressLessIf=0; ospfPacketSrc=172.17.0.11; ospfConfigErrorType=2; ospfPacketType=1\",\"severity\": \"2 - Major\",\"ticketPriority\": \"3\",\"reportedCustomerImpact\": 0,\"testAutoIndicator\": 0,\"supportGroupName\": \"US-TEST-ORT\",\"lastModifiedDate\": \"1487687703\",\"messageGroup\": \"SNMP\",\"csi\": 0,\"mfabRestoredTime\": 0},\"header\": {\"timestamp\": \"2017-02-21T14:35:05.219+0000\",\"entityId\": \"000002000857405\", \"sequenceNumber\": 2 },\"blinkMsgId\": \"f38c071e-1a47-4b55-9e72-1db830100a61\",\"sourceIP\": \"130.4.165.158\"},\"SubscriberInfo\": {\"UserList\": [\"hk8777\"] }}"; + PortalRestResponse actualPortalRestResponse = ticketEventController.handleRequest(mockedRequest, + mockedResponse, ticketEventJson); + assertTrue(actualPortalRestResponse.getStatus().compareTo(PortalRestStatusEnum.ERROR) == 0); + assertEquals(actualPortalRestResponse.getMessage(), "Message Source is mandatory"); + } + + @Test + public void saveTestForUserListValid() throws Exception { + String ticketEventJson = "{\"application\": \"cbus\",\"event\": {\"body\": {\"ticketStatePhrase\": \"We recently detected a problem with the equipment at your site. The event is in queue for immediate work.\", \"ivrNotificationFlag\": \"1\",\"expectedRestoreDate\": 0,\"bridgeTransport\": \"AOTS\", \"reptRequestType\": 0,\"ticketNum\": \"000002000857405\",\"assetID\": \"CISCO_1921C1_ISR_G2\", \"eventDate\": 1490545134601,\"eventAbstract\": \"ospfIfConfigError trap received from Cisco_1921c1_ISR_G2 with arguments: ospfRouterId=Cisco_1921c1_ISR_G2; ospfIfIpAddress=1921c1_288266; ospfAddressLessIf=0; ospfPacketSrc=172.17.0.11; ospfConfigErrorType=2; ospfPacketType=1\",\"severity\": \"2 - Major\",\"ticketPriority\": \"3\",\"reportedCustomerImpact\": 0,\"testAutoIndicator\": 0,\"supportGroupName\": \"US-TEST-ORT\",\"lastModifiedDate\": \"1487687703\",\"messageGroup\": \"SNMP\",\"csi\": 0,\"mfabRestoredTime\": 0},\"header\": {\"timestamp\": \"2017-02-21T14:35:05.219+0000\",\"eventSource\": \"aotstm\",\"entityId\": \"000002000857405\", \"sequenceNumber\": 2 },\"blinkMsgId\": \"f38c071e-1a47-4b55-9e72-1db830100a61\",\"sourceIP\": \"130.4.165.158\"},\"SubscriberInfo\": {}}"; + PortalRestResponse actualPortalRestResponse = ticketEventController.handleRequest(mockedRequest, + mockedResponse, ticketEventJson); + assertTrue(actualPortalRestResponse.getStatus().compareTo(PortalRestStatusEnum.ERROR) == 0); + assertEquals(actualPortalRestResponse.getMessage(), "At least one user Id is mandatory"); + } +} \ No newline at end of file diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserControllerTest.java new file mode 100644 index 00000000..9e4d635d --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserControllerTest.java @@ -0,0 +1,141 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.UserController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.UserService; +import org.openecomp.portalapp.portal.service.UserServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.transport.ProfileDetail; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; + +@RunWith(PowerMockRunner.class) +@PrepareForTest(CipherUtil.class) +public class UserControllerTest extends MockitoTestSuite { + + @InjectMocks + UserController userController = new UserController(); + + @Mock + UserService userService = new UserServiceImpl(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + MockEPUser mockUser = new MockEPUser(); + + @Test + public void getLoggedinUserExceptionTest() { + EPUser epUser = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(epUser); + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage(null); + expectedResponse.setResponse(null); + PortalRestStatusEnum enu = null; + expectedResponse.setStatus(enu.ERROR); + PortalRestResponse response = userController.getLoggedinUser(mockedRequest); + assertEquals(response, expectedResponse); + } + + @Test + public void getLoggedinUserTest() throws Exception { + EPUser epUser = mockUser.mockEPUser(); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(epUser); + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("success"); + ProfileDetail profileDetail = new ProfileDetail(); + expectedResponse.setResponse(profileDetail); + PortalRestStatusEnum enu = null; + expectedResponse.setStatus(enu.OK); + PowerMockito.mockStatic(CipherUtil.class); + Mockito.when(CipherUtil.decrypt(epUser.getLoginPwd())).thenReturn("Password"); + PortalRestResponse response = userController.getLoggedinUser(mockedRequest); + assertEquals(response.getMessage(), expectedResponse.getMessage()); + assertEquals(response.getStatus(), expectedResponse.getStatus()); + } + + @Test + public void modifyLoggedinUserIfProfileNullTest() { + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("java.lang.NullPointerException"); + expectedResponse.setResponse(null); + PortalRestStatusEnum enu = null; + expectedResponse.setStatus(enu.ERROR); + ProfileDetail profileDetail = null; + PortalRestResponse actualResponse = userController.modifyLoggedinUser(mockedRequest, profileDetail); + assertEquals(actualResponse, expectedResponse); + assertEquals(actualResponse.getStatus(), expectedResponse.getStatus()); + } + + @Test + public void modifyLoggedinUserExceptionTest() { + EPUser epUser = mockUser.mockEPUser(); + + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage( + "java.lang.ClassCastException: com.sun.crypto.provider.AESCipher$General cannot be cast to javax.crypto.CipherSpi"); + expectedResponse.setResponse(null); + PortalRestStatusEnum enu = null; + expectedResponse.setStatus(enu.ERROR); + ProfileDetail profileDetail = new ProfileDetail(); + profileDetail.setFirstName("Test_FirstName"); + profileDetail.setLastName("Test_LastName"); + profileDetail.setEmail("Test_Email"); + profileDetail.setLoginId("Test_LoginId"); + profileDetail.setLoginPassword("Test_LoginPassword"); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(epUser); + PortalRestResponse actualResponse = userController.modifyLoggedinUser(mockedRequest, profileDetail); + assertEquals(actualResponse, expectedResponse); + + } + + @Test + public void modifyLoggedinUserTest() throws Exception { + EPUser epUser = mockUser.mockEPUser(); + PortalRestResponse expectedResponse = new PortalRestResponse(); + expectedResponse.setMessage("success"); + expectedResponse.setResponse(null); + PortalRestStatusEnum enu = null; + expectedResponse.setStatus(enu.OK); + ProfileDetail profileDetail = new ProfileDetail(); + profileDetail.setFirstName("Test_FirstName"); + profileDetail.setLastName("Test_LastName"); + profileDetail.setEmail("Test_Email"); + profileDetail.setLoginId("Test_LoginId"); + profileDetail.setLoginPassword("Test_LoginPassword"); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(epUser); + PowerMockito.mockStatic(CipherUtil.class); + Mockito.when(CipherUtil.decrypt(epUser.getLoginPwd())).thenReturn("Password"); + PortalRestResponse actualResponse = userController.modifyLoggedinUser(mockedRequest, profileDetail); + System.out.println(actualResponse); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserNotificationControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserNotificationControllerTest.java index 628f52a1..2bc6977d 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserNotificationControllerTest.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserNotificationControllerTest.java @@ -1,265 +1,263 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.controller; - -import static org.junit.Assert.assertTrue; - -import java.util.ArrayList; -import java.util.Calendar; -import java.util.Date; -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import javax.servlet.http.HttpSession; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.mockito.InjectMocks; -import org.mockito.Mock; -import org.mockito.Mockito; -import org.mockito.MockitoAnnotations; -import org.openecomp.portalapp.portal.controller.UserNotificationController; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.service.FunctionalMenuService; -import org.openecomp.portalapp.portal.service.FunctionalMenuServiceImpl; -import org.openecomp.portalapp.portal.service.UserNotificationService; -import org.openecomp.portalapp.portal.service.UserNotificationServiceImpl; -import org.openecomp.portalapp.portal.test.core.MockEPUser; -import org.openecomp.portalapp.portal.test.framework.MockitoTestSuite; -import org.openecomp.portalapp.portal.transport.EpNotificationItem; -import org.openecomp.portalapp.portal.transport.EpNotificationItemVO; -import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; -import org.openecomp.portalapp.util.EPUserUtils; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalsdk.core.web.support.UserUtils; -import org.powermock.api.mockito.PowerMockito; -import org.powermock.core.classloader.annotations.PrepareForTest; -import org.powermock.modules.junit4.PowerMockRunner; - -@RunWith(PowerMockRunner.class) -@PrepareForTest(UserUtils.class) -public class UserNotificationControllerTest { - - @Mock - FunctionalMenuService functionalMenuService = new FunctionalMenuServiceImpl(); - - @Mock - UserNotificationService userNotificationService = new UserNotificationServiceImpl(); - - @InjectMocks - UserNotificationController userNotificationController = new UserNotificationController(); - - @Before - public void setup() { - MockitoAnnotations.initMocks(this); - } - - MockEPUser mockUser = new MockEPUser(); - MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); - - HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); - HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); - NullPointerException nullPointerException = new NullPointerException(); - - @Test - public void getMenuIdRoleIdTest() { - List expectedMenuRoleList = new ArrayList(); - FunctionalMenuRole functionalMenuRole = new FunctionalMenuRole(); - functionalMenuRole.setId(new Integer(99999999)); - functionalMenuRole.setMenuId((long) 137); - functionalMenuRole.setAppId(new Integer(456)); - functionalMenuRole.setRoleId(new Integer(6214)); - expectedMenuRoleList.add(functionalMenuRole); - List actualFunctionalMenuRoleList = null; - Mockito.when(functionalMenuService.getFunctionalMenuRole()).thenReturn(expectedMenuRoleList); - actualFunctionalMenuRoleList = userNotificationController.getMenuIdRoleId(mockedRequest, mockedResponse); - assertTrue(actualFunctionalMenuRoleList.equals(expectedMenuRoleList)); - - } - - @Test - public void getNotificationsTest() { - EPUser user = mockUser.mockEPUser(); - HttpSession session = mockedRequest.getSession(); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - List expectedEpNotificationList = new ArrayList(); - EpNotificationItem epNotificationItem = new EpNotificationItem(); - epNotificationItem.setNotificationId((long) 200); - expectedEpNotificationList.add(epNotificationItem); - PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); - expectedportalRestResponse.setMessage("success"); - expectedportalRestResponse.setResponse(expectedEpNotificationList); - PortalRestStatusEnum portalRestStatusEnum = null; - expectedportalRestResponse.setStatus(portalRestStatusEnum.OK); - PortalRestResponse> actualPortalRestResponse = null; - Mockito.when(userNotificationService.getNotifications(user.getId())).thenReturn(expectedEpNotificationList); - actualPortalRestResponse = userNotificationController.getNotifications(mockedRequest, mockedResponse); - assertTrue(expectedportalRestResponse.equals(actualPortalRestResponse)); - - } - - @Test - public void getNotificationsCatchesExceptionTest() { - EPUser user = mockUser.mockEPUser(); - HttpSession session = mockedRequest.getSession(); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - List expectedEpNotificationList = null; - PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); - expectedportalRestResponse.setMessage(null); - expectedportalRestResponse.setResponse(expectedEpNotificationList); - PortalRestStatusEnum portalRestStatusEnum = null; - expectedportalRestResponse.setStatus(portalRestStatusEnum.ERROR); - PortalRestResponse> actualPortalRestResponse = null; - Mockito.when(userNotificationService.getNotifications(user.getId())).thenThrow(new NullPointerException()); - actualPortalRestResponse = userNotificationController.getNotifications(mockedRequest, mockedResponse); - assertTrue(expectedportalRestResponse.equals(actualPortalRestResponse)); - - } - - @Test - public void getAdminNotificationsTest() { - List actualEpNotificationsList = new ArrayList(); - List expectedEpNotificationsList = new ArrayList(); - EpNotificationItemVO epNotificationItemVO = new EpNotificationItemVO(); - epNotificationItemVO.setId((long) 1); - expectedEpNotificationsList.add(epNotificationItemVO); - Mockito.when(userNotificationService.getAdminNotificationVOS()).thenReturn(expectedEpNotificationsList); - actualEpNotificationsList = userNotificationController.getAdminNotifications(mockedRequest, mockedResponse); - assertTrue(actualEpNotificationsList.equals(expectedEpNotificationsList)); - } - - @Test - public void saveTestWhenNotificationIsNull() throws Exception { - EPUser user = mockUser.mockEPUser(); - HttpSession session = mockedRequest.getSession(); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - - PortalRestResponse actualPortalRestResponse = new PortalRestResponse(); - PortalRestResponse expectedPortalRestResponse = new PortalRestResponse(); - expectedPortalRestResponse.setMessage("FAILURE"); - expectedPortalRestResponse.setResponse("Notification Header cannot be null or empty"); - PortalRestStatusEnum portalRestStatusEnum = null; - expectedPortalRestResponse.setStatus(portalRestStatusEnum.ERROR); - - EpNotificationItem notificationItem = null; - actualPortalRestResponse = userNotificationController.save(mockedRequest, mockedResponse, notificationItem); - assertTrue(actualPortalRestResponse.equals(expectedPortalRestResponse)); - } - - @Test - public void saveTestWhenEndTimeIsGreater() throws Exception { - EPUser user = mockUser.mockEPUser(); - HttpSession session = mockedRequest.getSession(); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - PortalRestResponse actualPortalRestResponse = new PortalRestResponse(); - PortalRestResponse expectedPortalRestResponse = new PortalRestResponse(); - expectedPortalRestResponse.setMessage("FAILURE"); - expectedPortalRestResponse.setResponse("End Time should be greater than start time"); - PortalRestStatusEnum portalRestStatusEnum = null; - expectedPortalRestResponse.setStatus(portalRestStatusEnum.ERROR); - EpNotificationItem notificationItem = new EpNotificationItem(); - notificationItem.setNotificationId((long) 1); - notificationItem.setMsgHeader("Test"); - Date currentDate = new Date(); - Calendar c = Calendar.getInstance(); - c.setTime(currentDate); - c.add(Calendar.DATE, 1); - Date currentDatePlusOne = c.getTime(); - notificationItem.setStartTime(currentDatePlusOne); - notificationItem.setEndTime(currentDate); - - actualPortalRestResponse = userNotificationController.save(mockedRequest, mockedResponse, notificationItem); - assertTrue(actualPortalRestResponse.equals(expectedPortalRestResponse)); - - } - - @Test - public void saveTestWhenNoRoleIDExists() throws Exception { - EPUser user = mockUser.mockEPUser(); - HttpSession session = mockedRequest.getSession(); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - PortalRestResponse actualPortalRestResponse = new PortalRestResponse(); - PortalRestResponse expectedPortalRestResponse = new PortalRestResponse(); - expectedPortalRestResponse.setMessage("FAILURE"); - expectedPortalRestResponse.setResponse("No Roles Ids Exist for the selected Roles"); - PortalRestStatusEnum portalRestStatusEnum = null; - expectedPortalRestResponse.setStatus(portalRestStatusEnum.ERROR); - EpNotificationItem notificationItem = new EpNotificationItem(); - notificationItem.setNotificationId((long) 1); - notificationItem.setMsgHeader("Test"); - notificationItem.setIsForAllRoles("N"); - Date currentDate = new Date(); - Calendar c = Calendar.getInstance(); - c.setTime(currentDate); - c.add(Calendar.DATE, 1); - Date currentDatePlusOne = c.getTime(); - notificationItem.setStartTime(currentDate); - notificationItem.setEndTime(currentDatePlusOne); - List roleList = new ArrayList(); - notificationItem.setRoleIds(roleList); - actualPortalRestResponse = userNotificationController.save(mockedRequest, mockedResponse, notificationItem); - assertTrue(actualPortalRestResponse.equals(expectedPortalRestResponse)); - } - - @Test - public void saveTest() throws Exception { - EPUser user = mockUser.mockEPUser(); - HttpSession session = mockedRequest.getSession(); - session.setAttribute("user", user); - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - PortalRestResponse actualPortalRestResponse = new PortalRestResponse(); - PortalRestResponse expectedPortalRestResponse = new PortalRestResponse(); - expectedPortalRestResponse.setMessage("SUCCESS"); - expectedPortalRestResponse.setResponse(""); - PortalRestStatusEnum portalRestStatusEnum = null; - expectedPortalRestResponse.setStatus(portalRestStatusEnum.OK); - EpNotificationItem notificationItem = new EpNotificationItem(); - notificationItem.setNotificationId((long) 1); - notificationItem.setMsgHeader("Test"); - notificationItem.setIsForAllRoles("Y"); - Date currentDate = new Date(); - Calendar c = Calendar.getInstance(); - c.setTime(currentDate); - c.add(Calendar.DATE, 1); - Date currentDatePlusOne = c.getTime(); - notificationItem.setStartTime(currentDate); - notificationItem.setEndTime(currentDatePlusOne); - List roleList = new ArrayList(); - Long role1 = (long) 1; - roleList.add(role1); - notificationItem.setRoleIds(roleList); - HttpServletRequest request = mockitoTestSuite.getMockedRequest(); - PowerMockito.mockStatic(UserUtils.class); - Mockito.when(UserUtils.getUserIdAsLong(request)).thenReturn((long) 1); - Mockito.when(userNotificationService.saveNotification(notificationItem)).thenReturn("Test"); - actualPortalRestResponse = userNotificationController.save(mockedRequest, mockedResponse, notificationItem); - assertTrue(actualPortalRestResponse.equals(expectedPortalRestResponse)); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import java.util.ArrayList; +import java.util.Calendar; +import java.util.Date; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Matchers; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.UserNotificationController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.FunctionalMenuService; +import org.openecomp.portalapp.portal.service.FunctionalMenuServiceImpl; +import org.openecomp.portalapp.portal.service.UserNotificationService; +import org.openecomp.portalapp.portal.service.UserNotificationServiceImpl; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.transport.EpNotificationItem; +import org.openecomp.portalapp.portal.transport.EpNotificationItemVO; +import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalsdk.core.web.support.UserUtils; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; + +@RunWith(PowerMockRunner.class) +@PrepareForTest(UserUtils.class) +public class UserNotificationControllerTest { + + @Mock + FunctionalMenuService functionalMenuService = new FunctionalMenuServiceImpl(); + + @Mock + UserNotificationService userNotificationService = new UserNotificationServiceImpl(); + + @InjectMocks + UserNotificationController userNotificationController = new UserNotificationController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockEPUser mockUser = new MockEPUser(); + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Test + public void getMenuIdRoleIdTest() { + List expectedMenuRoleList = new ArrayList(); + FunctionalMenuRole functionalMenuRole = new FunctionalMenuRole(); + functionalMenuRole.setId(new Integer(99999999)); + functionalMenuRole.setMenuId((long) 137); + functionalMenuRole.setAppId(new Integer(456)); + functionalMenuRole.setRoleId(new Integer(6214)); + expectedMenuRoleList.add(functionalMenuRole); + List actualFunctionalMenuRoleList = null; + Mockito.when(functionalMenuService.getFunctionalMenuRole()).thenReturn(expectedMenuRoleList); + actualFunctionalMenuRoleList = userNotificationController.getMenuIdRoleId(mockedRequest, mockedResponse); + assertTrue(actualFunctionalMenuRoleList.equals(expectedMenuRoleList)); + + } + + @Test + public void getNotificationsTest() { + EPUser user = mockUser.mockEPUser(); + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedEpNotificationList = new ArrayList(); + EpNotificationItem epNotificationItem = new EpNotificationItem(); + epNotificationItem.setNotificationId((long) 200); + expectedEpNotificationList.add(epNotificationItem); + PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); + expectedportalRestResponse.setMessage("success"); + expectedportalRestResponse.setResponse(expectedEpNotificationList); + expectedportalRestResponse.setStatus(PortalRestStatusEnum.OK); + PortalRestResponse> actualPortalRestResponse = null; + Mockito.when(userNotificationService.getNotifications(user.getId())).thenReturn(expectedEpNotificationList); + actualPortalRestResponse = userNotificationController.getNotifications(mockedRequest, mockedResponse); + assertTrue(expectedportalRestResponse.equals(actualPortalRestResponse)); + + } + + @Test + public void getNotificationsCatchesExceptionTest() { + EPUser user = mockUser.mockEPUser(); + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List expectedEpNotificationList = null; + PortalRestResponse> expectedportalRestResponse = new PortalRestResponse>(); + expectedportalRestResponse.setMessage(null); + expectedportalRestResponse.setResponse(expectedEpNotificationList); + expectedportalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + PortalRestResponse> actualPortalRestResponse = null; + Mockito.when(userNotificationService.getNotifications(user.getId())).thenThrow(new NullPointerException()); + actualPortalRestResponse = userNotificationController.getNotifications(mockedRequest, mockedResponse); + assertTrue(expectedportalRestResponse.equals(actualPortalRestResponse)); + } + + @Test + public void getAdminNotificationsTest() { + EPUser user = mockUser.mockEPUser(); + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + List actualEpNotificationsList = new ArrayList(); + List expectedEpNotificationsList = new ArrayList(); + EpNotificationItemVO epNotificationItemVO = new EpNotificationItemVO(); + epNotificationItemVO.setId((long) 1); + expectedEpNotificationsList.add(epNotificationItemVO); + Mockito.when(userNotificationService.getAdminNotificationVOS(Matchers.anyLong())).thenReturn(expectedEpNotificationsList); + actualEpNotificationsList = userNotificationController.getAdminNotifications(mockedRequest, mockedResponse); + assertTrue(actualEpNotificationsList.equals(expectedEpNotificationsList)); + } + + @Test + public void saveTestWhenNotificationIsNull() throws Exception { + EPUser user = mockUser.mockEPUser(); + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + + PortalRestResponse actualPortalRestResponse = new PortalRestResponse(); + PortalRestResponse expectedPortalRestResponse = new PortalRestResponse(); + expectedPortalRestResponse.setMessage("FAILURE"); + expectedPortalRestResponse.setResponse("Notification Header cannot be null or empty"); + expectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + + EpNotificationItem notificationItem = null; + actualPortalRestResponse = userNotificationController.save(mockedRequest, mockedResponse, notificationItem); + assertTrue(actualPortalRestResponse.equals(expectedPortalRestResponse)); + } + + @Test + public void saveTestWhenEndTimeIsGreater() throws Exception { + EPUser user = mockUser.mockEPUser(); + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + PortalRestResponse actualPortalRestResponse = new PortalRestResponse(); + PortalRestResponse expectedPortalRestResponse = new PortalRestResponse(); + expectedPortalRestResponse.setMessage("FAILURE"); + expectedPortalRestResponse.setResponse("End Time should be greater than start time"); + expectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + EpNotificationItem notificationItem = new EpNotificationItem(); + notificationItem.setNotificationId((long) 1); + notificationItem.setMsgHeader("Test"); + Date currentDate = new Date(); + Calendar c = Calendar.getInstance(); + c.setTime(currentDate); + c.add(Calendar.DATE, 1); + Date currentDatePlusOne = c.getTime(); + notificationItem.setStartTime(currentDatePlusOne); + notificationItem.setEndTime(currentDate); + + actualPortalRestResponse = userNotificationController.save(mockedRequest, mockedResponse, notificationItem); + assertTrue(actualPortalRestResponse.equals(expectedPortalRestResponse)); + + } + + @Test + public void saveTestWhenNoRoleIDExists() throws Exception { + EPUser user = mockUser.mockEPUser(); + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + PortalRestResponse actualPortalRestResponse = new PortalRestResponse(); + PortalRestResponse expectedPortalRestResponse = new PortalRestResponse(); + expectedPortalRestResponse.setMessage("FAILURE"); + expectedPortalRestResponse.setResponse("No Roles Ids Exist for the selected Roles"); + expectedPortalRestResponse.setStatus(PortalRestStatusEnum.ERROR); + EpNotificationItem notificationItem = new EpNotificationItem(); + notificationItem.setNotificationId((long) 1); + notificationItem.setMsgHeader("Test"); + notificationItem.setIsForAllRoles("N"); + Date currentDate = new Date(); + Calendar c = Calendar.getInstance(); + c.setTime(currentDate); + c.add(Calendar.DATE, 1); + Date currentDatePlusOne = c.getTime(); + notificationItem.setStartTime(currentDate); + notificationItem.setEndTime(currentDatePlusOne); + List roleList = new ArrayList(); + notificationItem.setRoleIds(roleList); + actualPortalRestResponse = userNotificationController.save(mockedRequest, mockedResponse, notificationItem); + assertTrue(actualPortalRestResponse.equals(expectedPortalRestResponse)); + } + + @Test + public void saveTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + HttpSession session = mockedRequest.getSession(); + session.setAttribute("user", user); + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + PortalRestResponse actualPortalRestResponse = new PortalRestResponse(); + PortalRestResponse expectedPortalRestResponse = new PortalRestResponse(); + expectedPortalRestResponse.setMessage("SUCCESS"); + expectedPortalRestResponse.setResponse(""); + expectedPortalRestResponse.setStatus(PortalRestStatusEnum.OK); + EpNotificationItem notificationItem = new EpNotificationItem(); + notificationItem.setNotificationId((long) 1); + notificationItem.setMsgHeader("Test"); + notificationItem.setIsForAllRoles("Y"); + Date currentDate = new Date(); + Calendar c = Calendar.getInstance(); + c.setTime(currentDate); + c.add(Calendar.DATE, 1); + Date currentDatePlusOne = c.getTime(); + notificationItem.setStartTime(currentDate); + notificationItem.setEndTime(currentDatePlusOne); + List roleList = new ArrayList(); + Long role1 = (long) 1; + roleList.add(role1); + notificationItem.setRoleIds(roleList); + HttpServletRequest request = mockitoTestSuite.getMockedRequest(); + PowerMockito.mockStatic(UserUtils.class); + Mockito.when(UserUtils.getUserIdAsLong(request)).thenReturn((long) 1); + Mockito.when(userNotificationService.saveNotification(notificationItem)).thenReturn("Test"); + actualPortalRestResponse = userNotificationController.save(mockedRequest, mockedResponse, notificationItem); + assertTrue(actualPortalRestResponse.equals(expectedPortalRestResponse)); + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserRecommendationControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserRecommendationControllerTest.java new file mode 100644 index 00000000..8c0a5cd3 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserRecommendationControllerTest.java @@ -0,0 +1,69 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.UserRecommendationController; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalsdk.core.web.support.UserUtils; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; + +@RunWith(PowerMockRunner.class) +@PrepareForTest(UserUtils.class) +public class UserRecommendationControllerTest { + + /* + * @Mock FunctionalMenuService functionalMenuService = new + * FunctionalMenuServiceImpl(); + * + * @Mock UserNotificationService userNotificationService = new + * UserNotificationServiceImpl(); + */ + + @InjectMocks + UserRecommendationController userRecommendationController = new UserRecommendationController(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockEPUser mockUser = new MockEPUser(); + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + + @Test + public void getRecommendationsTest() throws Exception { + String recommendations = "{\"id\": \"USERID\", \"timestamp\": \"TIMESTAMP\", \"count\": \"count of recommendations returned\",\"recommendations\": [\"recommended action 1\",\"recommended action 2\"] }"; + // String actualPortalRestResponse = null; + String actualPortalRestResponse = recommendations; + actualPortalRestResponse = userRecommendationController.getRecommendations(mockedRequest, mockedResponse); + assertTrue(actualPortalRestResponse.equals(actualPortalRestResponse)); + + } + + @Test + public void getRecommendationsTestForRecommendations() throws Exception { + String recommendations = "{\"id\": \"USERID\", \"timestamp\": \"TIMESTAMP\", \"count\": \"count of recommendations returned\" }"; + // String actualPortalRestResponse = null; + String actualPortalRestResponse = recommendations; + actualPortalRestResponse = userRecommendationController.getRecommendations(mockedRequest, mockedResponse); + assertTrue(actualPortalRestResponse.equals(actualPortalRestResponse)); + + } + + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserRolesControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserRolesControllerTest.java index 093ca585..1459caa4 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserRolesControllerTest.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/UserRolesControllerTest.java @@ -1,131 +1,130 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.controller; - -import static org.junit.Assert.assertEquals; - -import java.util.ArrayList; -import java.util.Date; -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; -import javax.servlet.http.HttpSession; - -import org.junit.Before; -import org.junit.Test; -import org.mockito.InjectMocks; -import org.mockito.Mock; -import org.mockito.Mockito; -import org.mockito.MockitoAnnotations; -import org.openecomp.portalapp.portal.controller.UserRolesController; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.service.UserRolesService; -import org.openecomp.portalapp.portal.test.core.MockEPUser; -import org.openecomp.portalapp.portal.test.framework.MockitoTestSuite; -import org.openecomp.portalapp.portal.transport.AppWithRolesForUser; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.FieldsValidator.FieldName; -import org.openecomp.portalapp.portal.transport.RoleInAppForUser; -import org.openecomp.portalapp.util.EPUserUtils; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.util.SystemProperties; - -public class UserRolesControllerTest extends MockitoTestSuite { - - String userid = "sk434m"; - - @Mock - UserRolesService userRolesService; - - @Mock - FieldsValidator fieldsValidator; - - @InjectMocks - UserRolesController userRolesController = new UserRolesController(); - - @Mock - private DataAccessService dataAccessService; - - @Before - public void setup() { - MockitoAnnotations.initMocks(this); - } - - MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); - - HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); - HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); - - @Mock - EPUserUtils ePUserUtils = new EPUserUtils(); - - @Mock - EPUser epuser; - - MockEPUser mockUser = new MockEPUser(); - - @Test - public void putAppWithUserRoleRequestTest() { - - FieldsValidator actualFieldsValidator = null; - - AppWithRolesForUser appWithRolesForUser = new AppWithRolesForUser(); - List listofRoles = new ArrayList(); - - appWithRolesForUser.setOrgUserId("guest"); - appWithRolesForUser.setAppId((long) 550); - appWithRolesForUser.setAppName("D2 Services Analytics Dashboard"); - appWithRolesForUser.setAppRoles(listofRoles); - - RoleInAppForUser roleInAppForUser = new RoleInAppForUser(); - roleInAppForUser.setIsApplied(false); - roleInAppForUser.setRoleId((long) 1); - roleInAppForUser.setRoleName("System Administrator"); - - RoleInAppForUser roleInAppForUser1 = new RoleInAppForUser(); - roleInAppForUser1.setIsApplied(true); - roleInAppForUser1.setRoleId((long) 16); - roleInAppForUser1.setRoleName("Standard User"); - - listofRoles.add(roleInAppForUser); - listofRoles.add(roleInAppForUser1); - EPUser user = mockUser.mockEPUser(); - FieldsValidator expectedFieldValidator = new FieldsValidator(); - List fields = new ArrayList<>(); - - expectedFieldValidator.setHttpStatusCode((long) 200); - expectedFieldValidator.setFields(fields); - expectedFieldValidator.setErrorCode(null); - HttpSession session = mockedRequest.getSession(); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - - Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); - Mockito.when(userRolesService.putUserAppRolesRequest(appWithRolesForUser, user)) - .thenReturn(expectedFieldValidator); - - actualFieldsValidator = userRolesController.putAppWithUserRoleRequest(mockedRequest, appWithRolesForUser, - mockedResponse); - assertEquals(expectedFieldValidator.getHttpStatusCode(), actualFieldsValidator.getHttpStatusCode()); - assertEquals(expectedFieldValidator.getErrorCode(), actualFieldsValidator.getErrorCode()); - assertEquals(expectedFieldValidator.getFields(), actualFieldsValidator.getFields()); - - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertEquals; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.junit.Before; +import org.junit.Test; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.UserRolesController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.service.UserRolesService; +import org.openecomp.portalapp.portal.test.core.MockEPUser; +import org.openecomp.portalapp.portal.transport.AppWithRolesForUser; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.FieldsValidator.FieldName; +import org.openecomp.portalapp.portal.transport.RoleInAppForUser; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.util.SystemProperties; + +public class UserRolesControllerTest extends MockitoTestSuite { + + String userid = "ab1234"; + + @Mock + UserRolesService userRolesService; + + @Mock + FieldsValidator fieldsValidator; + + @InjectMocks + UserRolesController userRolesController = new UserRolesController(); + + @Mock + private DataAccessService dataAccessService; + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + + @Mock + EPUserUtils ePUserUtils = new EPUserUtils(); + + @Mock + EPUser epuser; + + MockEPUser mockUser = new MockEPUser(); + + @Test + public void putAppWithUserRoleRequestTest() { + + FieldsValidator actualFieldsValidator = null; + + AppWithRolesForUser appWithRolesForUser = new AppWithRolesForUser(); + List listofRoles = new ArrayList(); + + appWithRolesForUser.setOrgUserId("guest"); + appWithRolesForUser.setAppId((long) 550); + appWithRolesForUser.setAppName("D2 Services Analytics Dashboard"); + appWithRolesForUser.setAppRoles(listofRoles); + + RoleInAppForUser roleInAppForUser = new RoleInAppForUser(); + roleInAppForUser.setIsApplied(false); + roleInAppForUser.setRoleId((long) 1); + roleInAppForUser.setRoleName("System Administrator"); + + RoleInAppForUser roleInAppForUser1 = new RoleInAppForUser(); + roleInAppForUser1.setIsApplied(true); + roleInAppForUser1.setRoleId((long) 16); + roleInAppForUser1.setRoleName("Standard User"); + + listofRoles.add(roleInAppForUser); + listofRoles.add(roleInAppForUser1); + EPUser user = mockUser.mockEPUser(); + FieldsValidator expectedFieldValidator = new FieldsValidator(); + List fields = new ArrayList<>(); + + expectedFieldValidator.setHttpStatusCode((long) 200); + expectedFieldValidator.setFields(fields); + expectedFieldValidator.setErrorCode(null); + HttpSession session = mockedRequest.getSession(); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + + Mockito.when(EPUserUtils.getUserSession(mockedRequest)).thenReturn(user); + Mockito.when(userRolesService.putUserAppRolesRequest(appWithRolesForUser, user)) + .thenReturn(expectedFieldValidator); + + actualFieldsValidator = userRolesController.putAppWithUserRoleRequest(mockedRequest, appWithRolesForUser, + mockedResponse); + assertEquals(expectedFieldValidator.getHttpStatusCode(), actualFieldsValidator.getHttpStatusCode()); + assertEquals(expectedFieldValidator.getErrorCode(), actualFieldsValidator.getErrorCode()); + assertEquals(expectedFieldValidator.getFields(), actualFieldsValidator.getFields()); + + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/WebAnalyticsExtAppControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/WebAnalyticsExtAppControllerTest.java new file mode 100644 index 00000000..84ee4b10 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/WebAnalyticsExtAppControllerTest.java @@ -0,0 +1,131 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import java.io.InputStream; +import java.nio.charset.StandardCharsets; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.apache.commons.io.IOUtils; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.WebAnalyticsExtAppController; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.AdminRolesServiceImpl; +import org.openecomp.portalapp.portal.service.AppsCacheService; +import org.openecomp.portalapp.portal.service.AppsCacheServiceImple; +import org.openecomp.portalapp.portal.transport.Analytics; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalsdk.core.onboarding.crossapi.PortalAPIResponse; +import org.openecomp.portalsdk.core.service.AuditService; +import org.openecomp.portalsdk.core.service.AuditServiceImpl; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; + + +@RunWith(PowerMockRunner.class) +@PrepareForTest({SystemProperties.class,IOUtils.class,Object.class}) +public class WebAnalyticsExtAppControllerTest { + + + + @InjectMocks + WebAnalyticsExtAppController webAnalyticsExtAppController = new WebAnalyticsExtAppController(); + + @Mock + AdminRolesService adminRolesService = new AdminRolesServiceImpl(); + + @Mock + AppsCacheService appCacheService = new AppsCacheServiceImple(); + + @Mock + AuditService auditService = new AuditServiceImpl(); + +// @Mock +// InputStream analyticsFileStream; + + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + NullPointerException nullPointerException = new NullPointerException(); + + @Test(expected= NullPointerException.class) + public void getAnalyticsScriptTest() throws Exception + { + String expectedResponse = "http://www.ecomp.com"; + + InputStream analyticsFileStream = null; + PowerMockito.mockStatic(SystemProperties.class); + PowerMockito.mockStatic(IOUtils.class); + Mockito.when(IOUtils.toString(analyticsFileStream, StandardCharsets.UTF_8.name())).thenReturn("PORTAL_ENV_URL"); + Mockito.when(SystemProperties.getProperty("frontend_url")).thenReturn("http://www.ecomp.com/test"); + //String actualResponse = webAnalyticsExtAppController.getAnalyticsScript(mockedRequest); + webAnalyticsExtAppController.getAnalyticsScript(mockedRequest); + //assertTrue(actualResponse.equals(expectedResponse)); + } + + @Test(expected= NullPointerException.class) + public void getAnalyticsScriptExceptionTest() throws Exception + { + String expectedResponse = ""; + InputStream analyticsFileStream = null; + PowerMockito.mockStatic(SystemProperties.class); + PowerMockito.mockStatic(IOUtils.class); + Mockito.when(IOUtils.toString(analyticsFileStream, StandardCharsets.UTF_8.name())).thenThrow(nullPointerException); + Mockito.when(SystemProperties.getProperty("frontend_url")).thenReturn("http://www.ecomp.com/test"); + webAnalyticsExtAppController.getAnalyticsScript(mockedRequest); + + } + + @Test + public void storeAnalyticsScriptIfAnalyticsNullTest() throws Exception + { + PortalAPIResponse expectedPortalAPIResponse = new PortalAPIResponse(true, "error"); + Analytics analytics= null; + Mockito.when(mockedRequest.getHeader("uebkey")).thenReturn(null); + PortalAPIResponse actualPortalAPIResponse = webAnalyticsExtAppController.storeAnalyticsScript(mockedRequest, analytics); + assertTrue(expectedPortalAPIResponse.getMessage().equals(actualPortalAPIResponse.getMessage())); + assertTrue(expectedPortalAPIResponse.getStatus().equals(actualPortalAPIResponse.getStatus())); + } + + @Test + public void storeAnalyticsScriptTest() throws Exception + { + PortalAPIResponse expectedPortalAPIResponse = new PortalAPIResponse(true, "success"); + Analytics analytics= new Analytics(); + Mockito.when(mockedRequest.getHeader("uebkey")).thenReturn("Test_Key"); + EPApp app = new EPApp(); + Mockito.when(appCacheService.getAppForAnalytics("Test_Key")).thenReturn(app); + PortalAPIResponse actualPortalAPIResponse = webAnalyticsExtAppController.storeAnalyticsScript(mockedRequest, analytics); + assertTrue(expectedPortalAPIResponse.getMessage().equals(actualPortalAPIResponse.getMessage())); + assertTrue(expectedPortalAPIResponse.getStatus().equals(actualPortalAPIResponse.getStatus())); + } + @Test + public void storeAnalyticsScriptIfAppNullTest() throws Exception + { + PortalAPIResponse expectedPortalAPIResponse = new PortalAPIResponse(true, "success"); + Analytics analytics= new Analytics(); + Mockito.when(mockedRequest.getHeader("uebkey")).thenReturn("Test_Key"); + Mockito.when(appCacheService.getAppForAnalytics("Test_Key")).thenReturn(null); + PortalAPIResponse actualPortalAPIResponse = webAnalyticsExtAppController.storeAnalyticsScript(mockedRequest, analytics); + assertTrue(expectedPortalAPIResponse.getMessage().equals(actualPortalAPIResponse.getMessage())); + assertTrue(expectedPortalAPIResponse.getStatus().equals(actualPortalAPIResponse.getStatus())); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/WidgetsCatalogMarkupControllerTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/WidgetsCatalogMarkupControllerTest.java new file mode 100644 index 00000000..1ba4c784 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/controller/WidgetsCatalogMarkupControllerTest.java @@ -0,0 +1,71 @@ +package org.openecomp.portalapp.portal.test.controller; + +import static org.junit.Assert.assertTrue; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.InjectMocks; +import org.mockito.Mock; +import org.mockito.Mockito; +import org.mockito.MockitoAnnotations; +import org.openecomp.portalapp.portal.controller.WidgetsCatalogMarkupController; +import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; +import org.openecomp.portalapp.portal.service.ConsulHealthService; +import org.openecomp.portalapp.portal.service.ConsulHealthServiceImpl; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.test.framework.MockitoTestSuite; +import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import org.springframework.web.client.RestClientException; +import org.springframework.web.client.RestTemplate; + +@RunWith(PowerMockRunner.class) +@PrepareForTest(WidgetServiceHeaders.class) +public class WidgetsCatalogMarkupControllerTest extends MockitoTestSuite { + + @InjectMocks + WidgetsCatalogMarkupController widgetsCatalogMarkupController = new WidgetsCatalogMarkupController(); + + @Mock + ConsulHealthService consulHealthService = new ConsulHealthServiceImpl(); + + @Mock + RestTemplate template = new RestTemplate(); + + @Before + public void setup() { + MockitoAnnotations.initMocks(this); + } + @Mock + CipherUtil cipherUtil= new CipherUtil(); + + @Mock + EcompPortalUtils EcompPortalUtils =new EcompPortalUtils(); + + @Mock + WidgetServiceHeaders WidgetServiceHeaders ; + + MockitoTestSuite mockitoTestSuite = new MockitoTestSuite(); + + HttpServletRequest mockedRequest = mockitoTestSuite.getMockedRequest(); + HttpServletResponse mockedResponse = mockitoTestSuite.getMockedResponse(); + + @SuppressWarnings("static-access") + @Test + public void getWidgetMarkupTest() throws RestClientException, Exception + { + String whatService = "widgets-service"; + PowerMockito.mockStatic(WidgetServiceHeaders.class); + Mockito.when(template.getForObject("https://" + consulHealthService.getServiceLocation(whatService, null) + "/widget/microservices/markup/" + 1, String.class, + WidgetServiceHeaders.getInstance())).thenReturn("Success"); + String response = widgetsCatalogMarkupController.getWidgetMarkup(mockedRequest, mockedResponse, 1); + assertTrue(response.equals("Success")); + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/MockEPUser.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/MockEPUser.java index aa3c00d2..344350e0 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/MockEPUser.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/MockEPUser.java @@ -1,86 +1,84 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.core; - -import java.util.Date; - -import org.openecomp.portalapp.portal.domain.EPUser; - -public class MockEPUser { - - public EPUser mockEPUser() { - - EPUser ePUser = new EPUser(); - ePUser.setOrgId(null); - ePUser.setManagerId(null); - ePUser.setFirstName("test"); - ePUser.setLastName("test"); - ePUser.setMiddleInitial(null); - ePUser.setPhone(null); - ePUser.setFax(null); - ePUser.setCellular(null); - ePUser.setEmail(null); - ePUser.setAddressId(null); - ePUser.setAlertMethodCd(null); - ePUser.setHrid(null); - ePUser.setOrgUserId("guest"); - ePUser.setOrgCode(null); - ePUser.setAddress1(null); - ePUser.setAddress2(null); - ePUser.setCity(null); - ePUser.setState(null); - ePUser.setZipCode(null); - ePUser.setCountry(null); - ePUser.setOrgManagerUserId(null); - ePUser.setLocationClli(null); - ePUser.setBusinessCountryCode(null); - ePUser.setBusinessCountryName(null); - ePUser.setBusinessUnit(null); - ePUser.setBusinessUnitName(null); - ePUser.setDepartment(null); - ePUser.setDepartmentName(null); - ePUser.setCompanyCode(null); - ePUser.setCompany(null); - ePUser.setZipCodeSuffix(null); - ePUser.setJobTitle(null); - ePUser.setCommandChain(null); - ePUser.setSiloStatus(null); - ePUser.setCostCenter(null); - ePUser.setFinancialLocCode(null); - - ePUser.setLoginId(null); - ePUser.setLoginPwd(null); - Date date = new Date(); - ePUser.setLastLoginDate(date); - ePUser.setActive(true); - ePUser.setInternal(false); - ePUser.setSelectedProfileId(null); - ePUser.setTimeZoneId(null); - ePUser.setOnline(true); - ePUser.setChatId(null); - ePUser.setUserApps(null); - ePUser.setPseudoRoles(null); - - ePUser.setId((long) 99999999); - - return ePUser; - - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.core; + +import java.util.Date; + +import org.openecomp.portalapp.portal.domain.EPUser; + +public class MockEPUser { + + public EPUser mockEPUser() { + + EPUser ePUser = new EPUser(); + ePUser.setOrgId(null); + ePUser.setManagerId(null); + ePUser.setFirstName("test"); + ePUser.setLastName("test"); + ePUser.setMiddleInitial(null); + ePUser.setPhone(null); + ePUser.setFax(null); + ePUser.setCellular(null); + ePUser.setEmail(null); + ePUser.setAddressId(null); + ePUser.setAlertMethodCd(null); + ePUser.setHrid(null); + ePUser.setOrgUserId("guestT"); + ePUser.setOrgCode(null); + ePUser.setAddress1(null); + ePUser.setAddress2(null); + ePUser.setCity(null); + ePUser.setState(null); + ePUser.setZipCode(null); + ePUser.setCountry(null); + ePUser.setOrgManagerUserId(null); + ePUser.setLocationClli(null); + ePUser.setBusinessCountryCode(null); + ePUser.setBusinessCountryName(null); + ePUser.setBusinessUnit(null); + ePUser.setBusinessUnitName(null); + ePUser.setDepartment(null); + ePUser.setDepartmentName(null); + ePUser.setCompanyCode(null); + ePUser.setCompany(null); + ePUser.setZipCodeSuffix(null); + ePUser.setJobTitle(null); + ePUser.setCommandChain(null); + ePUser.setSiloStatus(null); + ePUser.setCostCenter(null); + ePUser.setFinancialLocCode(null); + + ePUser.setLoginId(null); + ePUser.setLoginPwd(null); + Date date = new Date(); + ePUser.setLastLoginDate(date); + ePUser.setActive(true); + ePUser.setInternal(false); + ePUser.setSelectedProfileId(null); + ePUser.setTimeZoneId(null); + ePUser.setOnline(true); + ePUser.setChatId(null); + ePUser.setUserApps(null); + ePUser.setPseudoRoles(null); + + ePUser.setId((long) -1); + return ePUser; + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/PopulateSampleTestData.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/PopulateSampleTestData.java index b04d200e..8f99f442 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/PopulateSampleTestData.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/PopulateSampleTestData.java @@ -1,66 +1,66 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.core; - -import java.sql.Connection; -import java.sql.SQLException; - -import javax.sql.DataSource; - -import org.junit.Before; -import org.junit.Test; -import org.openecomp.portalapp.portal.test.framework.ApplicationCommonContextTestSuite; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.core.io.ClassPathResource; -import org.springframework.jdbc.datasource.DataSourceUtils; -import org.springframework.jdbc.datasource.init.ResourceDatabasePopulator; - -public class PopulateSampleTestData extends ApplicationCommonContextTestSuite { - - @Autowired - DataSource dataSource; - - @Before - public void populateTestData() throws SQLException { - - String sql = "PopulateTestData.sql"; - createConnection(sql); - } - - public void createConnection(String sql) { - Connection connection = null; - ResourceDatabasePopulator populator = new ResourceDatabasePopulator(); - populator.addScript(new ClassPathResource(sql)); - try { - connection = DataSourceUtils.getConnection(dataSource); - populator.populate(connection); - } finally { - if (connection != null) { - DataSourceUtils.releaseConnection(connection, dataSource); - } - } - } - - @Test - public void populateTest() { - assert (true); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.core; + +import java.sql.Connection; +import java.sql.SQLException; + +import javax.sql.DataSource; + +import org.junit.Before; +import org.junit.Test; +import org.openecomp.portalapp.test.framework.ApplicationCommonContextTestSuite; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.io.ClassPathResource; +import org.springframework.jdbc.datasource.DataSourceUtils; +import org.springframework.jdbc.datasource.init.ResourceDatabasePopulator; + +public class PopulateSampleTestData extends ApplicationCommonContextTestSuite { + + @Autowired + DataSource dataSource; + + @Before + public void populateTestData() throws SQLException { + + String sql = "PopulateTestData.sql"; + createConnection(sql); + } + + public void createConnection(String sql) { + Connection connection = null; + ResourceDatabasePopulator populator = new ResourceDatabasePopulator(); + populator.addScript(new ClassPathResource(sql)); + try { + connection = DataSourceUtils.getConnection(dataSource); + populator.populate(connection); + } finally { + if (connection != null) { + DataSourceUtils.releaseConnection(connection, dataSource); + } + } + } + + @Test + public void populateTest() { + assert (true); + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/RemoveSampleTestData.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/RemoveSampleTestData.java index db9663fd..c9954a69 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/RemoveSampleTestData.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/RemoveSampleTestData.java @@ -1,66 +1,65 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.core; - -import java.sql.Connection; -import java.sql.SQLException; - -import javax.sql.DataSource; - -import org.junit.After; -import org.junit.Before; -import org.junit.Test; -import org.openecomp.portalapp.portal.test.framework.ApplicationCommonContextTestSuite; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.core.io.ClassPathResource; -import org.springframework.jdbc.datasource.DataSourceUtils; -import org.springframework.jdbc.datasource.init.ResourceDatabasePopulator; - -public class RemoveSampleTestData extends ApplicationCommonContextTestSuite { - @Autowired - DataSource dataSource; - - public static int count = 0; - - @After - public void removeTestData() throws SQLException { - String sql = "RemoveTestData.sql"; - createConnection(sql); - } - - public void createConnection(String sql) { - Connection connection = null; - ResourceDatabasePopulator populator = new ResourceDatabasePopulator(); - populator.addScript(new ClassPathResource(sql)); - try { - connection = DataSourceUtils.getConnection(dataSource); - populator.populate(connection); - } finally { - if (connection != null) { - DataSourceUtils.releaseConnection(connection, dataSource); - } - } - } - - @Test - public void removeTest() { - assert (true); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.core; + +import java.sql.Connection; +import java.sql.SQLException; + +import javax.sql.DataSource; + +import org.junit.After; +import org.junit.Test; +import org.openecomp.portalapp.test.framework.ApplicationCommonContextTestSuite; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.io.ClassPathResource; +import org.springframework.jdbc.datasource.DataSourceUtils; +import org.springframework.jdbc.datasource.init.ResourceDatabasePopulator; + +public class RemoveSampleTestData extends ApplicationCommonContextTestSuite { + @Autowired + DataSource dataSource; + + public static int count = 0; + + @After + public void removeTestData() throws SQLException { + String sql = "RemoveTestData.sql"; + createConnection(sql); + } + + public void createConnection(String sql) { + Connection connection = null; + ResourceDatabasePopulator populator = new ResourceDatabasePopulator(); + populator.addScript(new ClassPathResource(sql)); + try { + connection = DataSourceUtils.getConnection(dataSource); + populator.populate(connection); + } finally { + if (connection != null) { + DataSourceUtils.releaseConnection(connection, dataSource); + } + } + } + + @Test + public void removeTest() { + assert (true); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/RestURLsTestSuite.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/RestURLsTestSuite.java index f90b27e5..10108cde 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/RestURLsTestSuite.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/core/RestURLsTestSuite.java @@ -1,329 +1,333 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.core; - -import static org.junit.Assert.assertEquals; - -import java.io.IOException; -import java.nio.charset.Charset; -import java.util.ArrayList; - -import org.junit.Assert; -import org.junit.Test; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.test.core.MockEPUser; -import org.openecomp.portalapp.portal.test.framework.ApplicationCommonContextTestSuite; -import org.openecomp.portalapp.portal.transport.AppNameIdIsAdmin; -import org.openecomp.portalapp.portal.transport.AppsListWithAdminRole; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.springframework.http.MediaType; -import org.springframework.test.web.servlet.ResultActions; -import org.springframework.test.web.servlet.request.MockHttpServletRequestBuilder; -import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; - -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.databind.ObjectMapper; - -/** - * - * @author sk434m Use RestURLsTestSuite to test Rest API URL's - */ -public class RestURLsTestSuite extends ApplicationCommonContextTestSuite { - - public static final MediaType APPLICATION_JSON_UTF8 = new MediaType(MediaType.APPLICATION_JSON.getType(), - MediaType.APPLICATION_JSON.getSubtype(), Charset.forName("utf8")); - - String url = null; - - MockEPUser mockUser = new MockEPUser(); - - public byte[] convertObjectToJsonBytes(Object object) throws IOException { - ObjectMapper mapper = new ObjectMapper(); - mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); - return mapper.writeValueAsBytes(object); - } - - public void requestBuilder(String url) throws Exception { - EPUser user = mockUser.mockEPUser(); - - MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.get(url); - requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - ResultActions ra = getMockMvc().perform(requestBuilder); - assertData(ra); - } - - public void assertData(ResultActions ra) { - Assert.assertEquals("application/json", ra.andReturn().getResponse().getContentType()); - Assert.assertEquals(200, ra.andReturn().getResponse().getStatus()); - - } - - @Test - public void getMenuItemsTest() throws Exception { - - url = "/portalApi/functionalMenu"; - requestBuilder(url); - } - - @Test - public void getMenuItemsForNotificationsTest() throws Exception { - url = "/portalApi/functionalMenuForNotificationTree"; - requestBuilder(url); - } - - @Test - public void getUserAppsTestnew() throws Exception { - - url = "/portalApi/userApps"; - requestBuilder(url); - } - - @Test - public void getPersUserAppsTest() throws Exception { - - url = "/portalApi/persUserApps"; - requestBuilder(url); - } - - @Test - public void getAppCatalogTest() throws Exception { - - url = "/portalApi/appCatalog"; - requestBuilder(url); - } - - @Test - public void getAppListNewTest() throws Exception { - ResultActions ra = getMockMvc() - .perform(MockMvcRequestBuilders.get("/portalApi/userApplicationRoles").param("userId", "guest")); - assertData(ra); - } - - @Test - public void getAvailableAppListTest() throws Exception { - url = "/portalApi/availableApps"; - requestBuilder(url); - } - - @Test - public void getAllAppsTest() throws Exception { - url = "/portalApi/allAvailableApps"; - requestBuilder(url); - } - - @Test - public void getUserProfileTest() throws Exception { - url = "/portalApi/userProfile"; - requestBuilder(url); - } - - @Test - public void getRolesByAppTest() throws Exception { - EPUser user = mockUser.mockEPUser(); - MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.get("/portalApi/adminAppsRoles/550"); - requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - ResultActions ra = getMockMvc().perform(requestBuilder); - assertData(ra); - } - - @Test - public void getAppsWithAdminRoleStateForUserTest() throws Exception { - url = "/portalApi/adminAppsRoles?user=guest"; - requestBuilder(url); - - } - - @Test - public void getUsersFromAppEndpointTest() throws Exception { - url = "/portalApi/app/550/users"; - requestBuilder(url); - } - - @Test - public void getOnboardingAppsTest() throws Exception { - url = "/portalApi/onboardingApps"; - requestBuilder(url); - } - - @Test - public void getMenuItemsForAuthUserTest() throws Exception { - url = "/portalApi/functionalMenuForAuthUser"; - requestBuilder(url); - } - - @Test - public void getMenuItemsForEditingTest() throws Exception { - url = "/portalApi/functionalMenuForEditing"; - requestBuilder(url); - } - - @Test - public void getAppRolesTest() throws Exception { - url = "/portalApi/appRoles/455"; - requestBuilder(url); - } - - @Test - public void regenerateAncestorTableTest() throws Exception { - - EPUser user = mockUser.mockEPUser(); - - MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders - .get("/portalApi/regenerateFunctionalMenuAncestors"); - requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - ResultActions ra = getMockMvc().perform(requestBuilder); - assertEquals("application/json;charset=UTF-8", ra.andReturn().getResponse().getContentType()); - Assert.assertEquals(200, ra.andReturn().getResponse().getStatus()); - - } - - @Test - public void getAppListTest() throws Exception { - url = "/portalApi/getAppList"; - requestBuilder(url); - } - - @Test - public void getFavoritesForUserTest() throws Exception { - url = "/portalApi/getFavoriteItems"; - requestBuilder(url); - } - - @Test - public void getManifestTest() throws Exception { - url = "/portalApi/manifest"; - requestBuilder(url); - } - - @Test - public void getActiveUsersTest() throws Exception { - url = "/portalApi/dashboard/activeUsers"; - requestBuilder(url); - } - - @Test - public void searchPortalTest() throws Exception { - EPUser user = mockUser.mockEPUser(); - MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.get("/portalApi/dashboard/search") - .param("searchString", "guest"); - requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - ResultActions ra = getMockMvc().perform(requestBuilder); - assertData(ra); - } - - @Test - public void getWidgetDataTest() throws Exception { - EPUser user = mockUser.mockEPUser(); - MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.get("/portalApi/dashboard/widgetData") - .param("resourceType", "guest"); - requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - ResultActions ra = getMockMvc().perform(requestBuilder); - assertData(ra); - } - - @Test - public void getAppsAndContactsTest() throws Exception { - url = "/portalApi/contactus/allapps"; - requestBuilder(url); - } - - @Test - public void getPortalDetailsTest() throws Exception { - url = "/portalApi/contactus/feedback"; - requestBuilder(url); - } - - @Test - public void getAppCategoryFunctionsTest() throws Exception { - url = "/portalApi/contactus/functions"; - requestBuilder(url); - } - - @Test - public void getOnlineUserUpdateRateTest() throws Exception { - url = "/portalApi/dashboard/onlineUserUpdateRate"; - requestBuilder(url); - } - - @Test - public void getMenuIdRoleIdTest() throws Exception { - url = "/portalApi/getFunctionalMenuRole"; - requestBuilder(url); - } - - @Test - public void getNotificationsTest() throws Exception { - url = "/portalApi/getNotifications"; - requestBuilder(url); - } - - @Test - public void getAdminNotificationsTest() throws Exception { - url = "/portalApi/getAdminNotifications"; - requestBuilder(url); - } - - @Test - public void getNotificationAppRolesTest() throws Exception { - url = "/portalApi/getNotificationAppRoles"; - requestBuilder(url); - } - - @Test - public void getNotificationUpdateRateTest() throws Exception { - url = "/portalApi/notificationUpdateRate"; - requestBuilder(url); - } - - @Test - public void notificationReadTest() throws Exception { - url = "/portalApi/notificationRead?notificationId=262"; - requestBuilder(url); - } - - @Test - public void testGetRolesTest() throws Exception { - url = "/portalApi/notificationRole/248/roles"; - requestBuilder(url); - } - - @Test - public void putAppsWithAdminRoleStateForUserTest() throws Exception { - - AppsListWithAdminRole appsListWithAdminRole = new AppsListWithAdminRole(); - appsListWithAdminRole.setOrgUserId("guest"); - ArrayList appsRoles = new ArrayList(); - AppNameIdIsAdmin appNameIdIsAdmin = new AppNameIdIsAdmin(); - appNameIdIsAdmin.setId((long) 455); - appNameIdIsAdmin.setAppName("CCD"); - appNameIdIsAdmin.setIsAdmin(true); - appNameIdIsAdmin.setRestrictedApp(false); - appsRoles.add(appNameIdIsAdmin); - appsListWithAdminRole.setAppsRoles(appsRoles); - EPUser user = mockUser.mockEPUser(); - MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.put("/portalApi/adminAppsRoles") - .contentType(APPLICATION_JSON_UTF8).content(convertObjectToJsonBytes(appsListWithAdminRole)); - - requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - ResultActions ra = getMockMvc().perform(requestBuilder); - assertData(ra); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.core; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +import java.io.IOException; +import java.nio.charset.Charset; +import java.util.ArrayList; + +import org.junit.Assert; +import org.junit.Test; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.transport.AppNameIdIsAdmin; +import org.openecomp.portalapp.portal.transport.AppsListWithAdminRole; +import org.openecomp.portalapp.test.framework.ApplicationCommonContextTestSuite; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.http.MediaType; +import org.springframework.test.web.servlet.ResultActions; +import org.springframework.test.web.servlet.request.MockHttpServletRequestBuilder; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; + +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.databind.ObjectMapper; + +/** + * + * Use RestURLsTestSuite to test Rest API URL's + */ +public class RestURLsTestSuite extends ApplicationCommonContextTestSuite { + + public static final MediaType APPLICATION_JSON_UTF8 = new MediaType(MediaType.APPLICATION_JSON.getType(), + MediaType.APPLICATION_JSON.getSubtype(), Charset.forName("utf8")); + + String url = null; + + MockEPUser mockUser = new MockEPUser(); + + public byte[] convertObjectToJsonBytes(Object object) throws IOException { + ObjectMapper mapper = new ObjectMapper(); + mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL); + return mapper.writeValueAsBytes(object); + } + + public void requestBuilder(String url) throws Exception { + EPUser user = mockUser.mockEPUser(); + + MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.get(url); + requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + ResultActions ra = getMockMvc().perform(requestBuilder); + assertData(ra); + } + + public void assertData(ResultActions ra) { + Assert.assertEquals("application/json", ra.andReturn().getResponse().getContentType()); + Assert.assertEquals(200, ra.andReturn().getResponse().getStatus()); + + } + + @Test + public void getMenuItemsTest() throws Exception { + url = "/portalApi/functionalMenu"; + requestBuilder(url); + } + + @Test + public void getMenuItemsForNotificationsTest() throws Exception { + url = "/portalApi/functionalMenuForNotificationTree"; + requestBuilder(url); + } + + @Test + public void getUserAppsTestnew() throws Exception { + url = "/portalApi/userApps"; + requestBuilder(url); + } + + @Test + public void getPersUserAppsTest() throws Exception { + url = "/portalApi/persUserApps"; + requestBuilder(url); + } + + @Test + public void getAppCatalogTest() throws Exception { + url = "/portalApi/appCatalog"; + requestBuilder(url); + } + + @Test + public void getAppListNewTest() throws Exception { + ResultActions ra = getMockMvc() + .perform(MockMvcRequestBuilders.get("/portalApi/userApplicationRoles").param("userId", "guest")); + assertData(ra); + } + + @Test + public void getAvailableAppListTest() throws Exception { + url = "/portalApi/availableApps"; + requestBuilder(url); + } + + @Test + public void getAllAppsTest() throws Exception { + url = "/portalApi/allAvailableApps"; + requestBuilder(url); + } + + @Test + public void getUserProfileTest() throws Exception { + url = "/portalApi/userProfile"; + requestBuilder(url); + } + + @Test + public void getRolesByAppTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.get("/portalApi/adminAppsRoles/550"); + requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + ResultActions ra = getMockMvc().perform(requestBuilder); + assertData(ra); + } + + @Test + public void getAppsWithAdminRoleStateForUserTest() throws Exception { + url = "/portalApi/adminAppsRoles?user=guest"; + requestBuilder(url); + + } + + @Test + public void getUsersFromAppEndpointTest() throws Exception { + url = "/portalApi/app/550/users"; + requestBuilder(url); + } + + @Test + public void getOnboardingAppsTest() throws Exception { + url = "/portalApi/onboardingApps"; + requestBuilder(url); + } + + @Test + public void getMenuItemsForAuthUserTest() throws Exception { + url = "/portalApi/functionalMenuForAuthUser"; + requestBuilder(url); + } + + @Test + public void getMenuItemsForEditingTest() throws Exception { + url = "/portalApi/functionalMenuForEditing"; + requestBuilder(url); + } + + @Test + public void getAppRolesTest() throws Exception { + url = "/portalApi/appRoles/455"; + requestBuilder(url); + } + + @Test + public void regenerateAncestorTableTest() throws Exception { + + EPUser user = mockUser.mockEPUser(); + + MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders + .get("/portalApi/regenerateFunctionalMenuAncestors"); + requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + ResultActions ra = getMockMvc().perform(requestBuilder); + assertEquals("application/json;charset=UTF-8", ra.andReturn().getResponse().getContentType()); + Assert.assertEquals(200, ra.andReturn().getResponse().getStatus()); + + } + + @Test + public void getAppListTest() throws Exception { + url = "/portalApi/getAppList"; + requestBuilder(url); + } + + @Test + public void getFavoritesForUserTest() throws Exception { + url = "/portalApi/getFavoriteItems"; + requestBuilder(url); + } + + @Test + public void getManifestTest() throws Exception { + url = "/portalApi/manifest"; + requestBuilder(url); + } + + @Test + public void getActiveUsersTest() throws Exception { + url = "/portalApi/dashboard/activeUsers"; + requestBuilder(url); + } + + @Test + public void searchPortalTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.get("/portalApi/dashboard/search") + .param("searchString", "guest"); + requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + ResultActions ra = getMockMvc().perform(requestBuilder); + assertData(ra); + } + + @Test + public void getWidgetDataTest() throws Exception { + EPUser user = mockUser.mockEPUser(); + MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.get("/portalApi/dashboard/widgetData") + .param("resourceType", "guest"); + requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + ResultActions ra = getMockMvc().perform(requestBuilder); + assertData(ra); + } + + @Test + public void getAppsAndContactsTest() throws Exception { + url = "/portalApi/contactus/allapps"; + requestBuilder(url); + } + + @Test + public void getPortalDetailsTest() throws Exception { + url = "/portalApi/contactus/feedback"; + requestBuilder(url); + } + + @Test + public void getAppCategoryFunctionsTest() throws Exception { + url = "/portalApi/contactus/functions"; + requestBuilder(url); + } + + @Test + public void getOnlineUserUpdateRateTest() throws Exception { + url = "/portalApi/dashboard/onlineUserUpdateRate"; + requestBuilder(url); + } + + @Test + public void getMenuIdRoleIdTest() throws Exception { + url = "/portalApi/getFunctionalMenuRole"; + requestBuilder(url); + } + + @Test + public void getNotificationsTest() throws Exception { + url = "/portalApi/getNotifications"; + requestBuilder(url); + } + + @Test + public void getAdminNotificationsTest() throws Exception { + url = "/portalApi/getAdminNotifications"; + requestBuilder(url); + } + + @Test + public void getNotificationAppRolesTest() throws Exception { + url = "/portalApi/getNotificationAppRoles"; + requestBuilder(url); + } + + @Test + public void getNotificationUpdateRateTest() throws Exception { + url = "/portalApi/notificationUpdateRate"; + requestBuilder(url); + } + + @Test + public void notificationReadTest() throws Exception { + url = "/portalApi/notificationRead?notificationId=262"; + requestBuilder(url); + } + + @Test + public void testGetRolesTest() throws Exception { + url = "/portalApi/notificationRole/248/roles"; + requestBuilder(url); + } + + @Test + public void putAppsWithAdminRoleStateForUserTest() throws Exception { + + AppsListWithAdminRole appsListWithAdminRole = new AppsListWithAdminRole(); + appsListWithAdminRole.setOrgUserId("guest"); + ArrayList appsRoles = new ArrayList(); + AppNameIdIsAdmin appNameIdIsAdmin = new AppNameIdIsAdmin(); + appNameIdIsAdmin.setId((long) 455); + appNameIdIsAdmin.setAppName("CCD"); + appNameIdIsAdmin.setIsAdmin(true); + appNameIdIsAdmin.setRestrictedApp(false); + appsRoles.add(appNameIdIsAdmin); + appsListWithAdminRole.setAppsRoles(appsRoles); + EPUser user = mockUser.mockEPUser(); + MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.put("/portalApi/adminAppsRoles") + .contentType(APPLICATION_JSON_UTF8).content(convertObjectToJsonBytes(appsListWithAdminRole)); + + requestBuilder.sessionAttr(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + ResultActions ra = getMockMvc().perform(requestBuilder); + assertData(ra); + } + + @Test + public void ticketEventControllerForExternalSystem() throws Exception { + String ticketEventJson = "{\"application\": \"cbus\",\"event\": {\"body\": {\"ticketStatePhrase\": \"We recently detected a problem with the equipment at your site. The event is in queue for immediate work.\", \"ivrNotificationFlag\": \"1\",\"expectedRestoreDate\": 0,\"bridgeTransport\": \"AOTS\", \"reptRequestType\": 0,\"ticketNum\": \"000002000857405\",\"assetID\": \"CISCO_1921C1_ISR_G2\", \"eventDate\": 1490545134601,\"eventAbstract\": \"ospfIfConfigError trap received from Cisco_1921c1_ISR_G2 with arguments: ospfRouterId=Cisco_1921c1_ISR_G2; ospfIfIpAddress=1921c1_288266; ospfAddressLessIf=0; ospfPacketSrc=172.17.0.11; ospfConfigErrorType=2; ospfPacketType=1\",\"severity\": \"2 - Major\",\"ticketPriority\": \"3\",\"reportedCustomerImpact\": 0,\"testAutoIndicator\": 0,\"supportGroupName\": \"US-TEST-ORT\",\"lastModifiedDate\": \"1487687703\",\"messageGroup\": \"SNMP\",\"csi\": 0,\"mfabRestoredTime\": 0},\"header\": {\"timestamp\": \"2017-02-21T14:35:05.219+0000\",\"eventSource\": \"aotstm\",\"entityId\": \"000002000857405\", \"sequenceNumber\": 2 },\"blinkMsgId\": \"f38c071e-1a47-4b55-9e72-1db830100a61\",\"sourceIP\": \"130.4.165.158\"},\"SubscriberInfo\": {\"UserList\": [\"hk8777\"] }}"; + MockHttpServletRequestBuilder requestBuilder = MockMvcRequestBuilders.post("/auxapi/ticketevent") + .contentType(APPLICATION_JSON_UTF8).content(ticketEventJson); + ResultActions ra = getMockMvc().perform(requestBuilder); + assertTrue(ra.andReturn().getResponse().getContentType().contains("application/json")); + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/framework/ApplicationCommonContextTestSuite.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/framework/ApplicationCommonContextTestSuite.java index 8030dcad..d7930c14 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/framework/ApplicationCommonContextTestSuite.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/framework/ApplicationCommonContextTestSuite.java @@ -1,175 +1,175 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.framework; - -import java.io.IOException; - -import org.junit.Before; -import org.junit.Test; -import org.junit.runner.RunWith; -import org.openecomp.portalsdk.core.conf.AppConfig; -//import org.openecomp.portalapp.conf.ExternalAppConfig; -//import org.openecomp.portalapp.conf.HibernateMappingLocations; -import org.openecomp.portalsdk.core.conf.HibernateConfiguration; -import org.openecomp.portalsdk.core.conf.HibernateMappingLocatable; -import org.openecomp.portalsdk.core.objectcache.AbstractCacheManager; -import org.openecomp.portalsdk.core.util.CacheManager; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.ComponentScan; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.FilterType; -import org.springframework.context.annotation.Profile; -import org.springframework.core.io.ClassPathResource; -import org.springframework.core.io.Resource; -import org.springframework.test.context.ActiveProfiles; -import org.springframework.test.context.ContextConfiguration; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.transaction.TransactionConfiguration; -import org.springframework.test.context.web.AnnotationConfigWebContextLoader; -import org.springframework.test.context.web.WebAppConfiguration; -import org.springframework.test.web.servlet.MockMvc; -import org.springframework.test.web.servlet.setup.MockMvcBuilders; -import org.springframework.transaction.annotation.Transactional; -import org.springframework.web.context.WebApplicationContext; -import org.springframework.web.servlet.config.annotation.InterceptorRegistry; - -/** - * - * In order to write a unit test, 1. inherit this class 2. place the "war" - * folder on your test class's classpath 3. run the test with the following VM - * argument; This is important because when starting the application from - * Container, the System Properties file (SystemProperties.java) can have the - * direct path but, when running from the Mock Junit container, the path should - * be prefixed with "classpath" to enable the mock container to search for the - * file in the classpath -Dcontainer.classpath="classpath:" - */ - -@SuppressWarnings("deprecation") -@RunWith(SpringJUnit4ClassRunner.class) -@WebAppConfiguration -@ContextConfiguration(loader = AnnotationConfigWebContextLoader.class, classes = { MockAppConfig.class }) -@ActiveProfiles(value = "test") -public class ApplicationCommonContextTestSuite { - - @Autowired - public WebApplicationContext wac; - - private MockMvc mockMvc; - - @Before - public void setup() { - if (mockMvc == null) { - this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).build(); - - } - } - - public Object getBean(String name) { - return this.wac.getBean(name); - } - - public MockMvc getMockMvc() { - return mockMvc; - } - - public void setMockMvc(MockMvc mockMvc) { - this.mockMvc = mockMvc; - } - - public WebApplicationContext getWebApplicationContext() { - return wac; - } - -} - -@Configuration -@ComponentScan(basePackages = "org.openecomp", excludeFilters = { - // the following source configurations should not be scanned; instead of - // using Exclusion filter, we can use the @Profile annotation to exclude - // them - @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.portalsdk.core.controller.LogoutController*"), - @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.portalsdk.core.controller.SDKLoginController*"), - @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.portalapp.conf.ExternalAppConfig*"), - @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.*.*InitUebHandler*") }) -@Profile("test") -class MockAppConfig extends AppConfig { - - @Bean - HibernateMappingLocatable locatable() { - return new MockHibernateMappingLocations(); - } - - @Bean - HibernateConfiguration hibConfiguration() { - return new HibernateConfiguration(); - } - - @Bean - public SystemProperties systemProperties() { - return new MockSystemProperties(); - } - - @Bean - public AbstractCacheManager cacheManager() { - return new CacheManager() { - - public void configure() throws IOException { - - } - }; - } - - public String[] tileDefinitions() { - return new String[] { "classpath:/WEB-INF/fusion/defs/definitions.xml", - "classpath:/WEB-INF/defs/definitions.xml" }; - } - - public void addInterceptors(InterceptorRegistry registry) { - // registry.addInterceptor(new - // SessionTimeoutInterceptor()).excludePathPatterns(getExcludeUrlPathsForSessionTimeout()); - // registry.addInterceptor(resourceInterceptor()); - } - - public static class MockSystemProperties extends SystemProperties { - - public MockSystemProperties() { - } - - } - -} - -@Profile("test") -class MockHibernateMappingLocations implements HibernateMappingLocatable { - - public Resource[] getMappingLocations() { - return new Resource[] { new ClassPathResource("WEB-INF/fusion/orm/Fusion.hbm.xml"), - new ClassPathResource("WEB-INF/fusion/orm/EP.hbm.xml"), - new ClassPathResource("WEB-INF/fusion/orm/Workflow.hbm.xml") }; - - } - - public String[] getPackagesToScan() { - return new String[] { "org.openecomp", "src" }; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.framework; + +import java.io.IOException; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.openecomp.portalsdk.core.conf.AppConfig; +//import org.openecomp.portalapp.conf.ExternalAppConfig; +//import org.openecomp.portalapp.conf.HibernateMappingLocations; +import org.openecomp.portalsdk.core.conf.HibernateConfiguration; +import org.openecomp.portalsdk.core.conf.HibernateMappingLocatable; +import org.openecomp.portalsdk.core.objectcache.AbstractCacheManager; +import org.openecomp.portalsdk.core.util.CacheManager; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.ComponentScan; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.FilterType; +import org.springframework.context.annotation.Profile; +import org.springframework.core.io.ClassPathResource; +import org.springframework.core.io.Resource; +import org.springframework.test.context.ActiveProfiles; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.context.transaction.TransactionConfiguration; +import org.springframework.test.context.web.AnnotationConfigWebContextLoader; +import org.springframework.test.context.web.WebAppConfiguration; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.setup.MockMvcBuilders; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.web.context.WebApplicationContext; +import org.springframework.web.servlet.config.annotation.InterceptorRegistry; + +/** + * + * In order to write a unit test, 1. inherit this class 2. place the "war" + * folder on your test class's classpath 3. run the test with the following VM + * argument; This is important because when starting the application from + * Container, the System Properties file (SystemProperties.java) can have the + * direct path but, when running from the Mock Junit container, the path should + * be prefixed with "classpath" to enable the mock container to search for the + * file in the classpath -Dcontainer.classpath="classpath:" + */ + +@SuppressWarnings("deprecation") +@RunWith(SpringJUnit4ClassRunner.class) +@WebAppConfiguration +@ContextConfiguration(loader = AnnotationConfigWebContextLoader.class, classes = { MockAppConfig.class }) +@ActiveProfiles(value = "test") +public class ApplicationCommonContextTestSuite { + + @Autowired + public WebApplicationContext wac; + + private MockMvc mockMvc; + + @Before + public void setup() { + if (mockMvc == null) { + this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).build(); + + } + } + + public Object getBean(String name) { + return this.wac.getBean(name); + } + + public MockMvc getMockMvc() { + return mockMvc; + } + + public void setMockMvc(MockMvc mockMvc) { + this.mockMvc = mockMvc; + } + + public WebApplicationContext getWebApplicationContext() { + return wac; + } + +} + +@Configuration +@ComponentScan(basePackages = "org.openecomp", excludeFilters = { + // the following source configurations should not be scanned; instead of + // using Exclusion filter, we can use the @Profile annotation to exclude + // them + @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.portalsdk.core.controller.LogoutController*"), + @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.portalsdk.core.controller.SDKLoginController*"), + @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.portalapp.conf.ExternalAppConfig*"), + @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.*.*InitUebHandler*") }) +@Profile("test") +class MockAppConfig extends AppConfig { + + @Bean + HibernateMappingLocatable locatable() { + return new MockHibernateMappingLocations(); + } + + @Bean + HibernateConfiguration hibConfiguration() { + return new HibernateConfiguration(); + } + + @Bean + public SystemProperties systemProperties() { + return new MockSystemProperties(); + } + + @Bean + public AbstractCacheManager cacheManager() { + return new CacheManager() { + + public void configure() throws IOException { + + } + }; + } + + public String[] tileDefinitions() { + return new String[] { "classpath:/WEB-INF/fusion/defs/definitions.xml", + "classpath:/WEB-INF/defs/definitions.xml" }; + } + + public void addInterceptors(InterceptorRegistry registry) { + // registry.addInterceptor(new + // SessionTimeoutInterceptor()).excludePathPatterns(getExcludeUrlPathsForSessionTimeout()); + // registry.addInterceptor(resourceInterceptor()); + } + + public static class MockSystemProperties extends SystemProperties { + + public MockSystemProperties() { + } + + } + +} + +@Profile("test") +class MockHibernateMappingLocations implements HibernateMappingLocatable { + + public Resource[] getMappingLocations() { + return new Resource[] { new ClassPathResource("WEB-INF/fusion/orm/Fusion.hbm.xml"), + new ClassPathResource("WEB-INF/fusion/orm/EP.hbm.xml"), + new ClassPathResource("WEB-INF/fusion/orm/Workflow.hbm.xml") }; + + } + + public String[] getPackagesToScan() { + return new String[] { "org.openecomp", "src" }; + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/framework/MockitoTestSuite.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/framework/MockitoTestSuite.java index 614e2ac3..44019aa6 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/framework/MockitoTestSuite.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/framework/MockitoTestSuite.java @@ -1,70 +1,70 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.framework; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletRequestWrapper; -import javax.servlet.http.HttpServletResponse; -import javax.servlet.http.HttpSession; - -import org.junit.runner.RunWith; -import org.mockito.Mockito; -import org.mockito.runners.MockitoJUnitRunner; - -@RunWith(MockitoJUnitRunner.class) -public class MockitoTestSuite { - - - public MockHttpServletRequestWrapper mockedRequest = new MockHttpServletRequestWrapper( - Mockito.mock(HttpServletRequest.class)); - public HttpServletResponse mockedResponse = Mockito.mock(HttpServletResponse.class); - - public MockHttpServletRequestWrapper getMockedRequest() { - return mockedRequest; - } - - public HttpServletResponse getMockedResponse() { - return mockedResponse; - } - - public class MockHttpServletRequestWrapper extends HttpServletRequestWrapper { - - HttpSession session = Mockito.mock(HttpSession.class); - - public MockHttpServletRequestWrapper(HttpServletRequest request) { - super(request); - - } - - @Override - public HttpSession getSession() { - - return session; - } - - @Override - public HttpSession getSession(boolean create) { - - return session; - } - - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.framework; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletRequestWrapper; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.mockito.runners.MockitoJUnitRunner; + +@RunWith(MockitoJUnitRunner.class) +public class MockitoTestSuite { + + + public MockHttpServletRequestWrapper mockedRequest = new MockHttpServletRequestWrapper( + Mockito.mock(HttpServletRequest.class)); + public HttpServletResponse mockedResponse = Mockito.mock(HttpServletResponse.class); + + public MockHttpServletRequestWrapper getMockedRequest() { + return mockedRequest; + } + + public HttpServletResponse getMockedResponse() { + return mockedResponse; + } + + public class MockHttpServletRequestWrapper extends HttpServletRequestWrapper { + + HttpSession session = Mockito.mock(HttpSession.class); + + public MockHttpServletRequestWrapper(HttpServletRequest request) { + super(request); + + } + + @Override + public HttpSession getSession() { + + return session; + } + + @Override + public HttpSession getSession(boolean create) { + + return session; + } + + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/service/FunctionalMenuServiceImplTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/service/FunctionalMenuServiceImplTest.java index 7aa2029c..2ca02ba6 100644 --- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/service/FunctionalMenuServiceImplTest.java +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/test/service/FunctionalMenuServiceImplTest.java @@ -1,88 +1,73 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.test.service; - -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import org.junit.Test; -import org.openecomp.portalapp.portal.service.FunctionalMenuService; -import org.openecomp.portalapp.portal.test.framework.ApplicationCommonContextTestSuite; -import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; -import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; -import org.springframework.beans.factory.annotation.Autowired; - - - - -public class FunctionalMenuServiceImplTest extends ApplicationCommonContextTestSuite{ - - - @Autowired - FunctionalMenuService functionalMenuService; - - - - @Test - public void getAppListTestService() throws Exception { - - String userId ="guest"; - List userAppRolesActualResult = null; - - List userAppRolesExpectedResult = new ArrayList(); - BusinessCardApplicationRole businessCardApplicationRole= new BusinessCardApplicationRole(); - businessCardApplicationRole.setAppName("ECOMP Portal"); - businessCardApplicationRole.setRoleName("System Administrator"); - userAppRolesExpectedResult.add(businessCardApplicationRole); - Map params = new HashMap(); - params.put("userId", userId); - userAppRolesActualResult =functionalMenuService.getUserAppRolesList(userId); - assertTrue(userAppRolesActualResult.contains(businessCardApplicationRole)); - - - } - - - @Test - public void getFunctionalMenuRoleTest() throws Exception { - - FunctionalMenuRole expectedFunctionalMenuRole = new FunctionalMenuRole(); - - expectedFunctionalMenuRole.setId(new Integer(99999999)) ; - expectedFunctionalMenuRole.setMenuId((long) 137); - expectedFunctionalMenuRole.setAppId(new Integer(456)); - expectedFunctionalMenuRole.setRoleId(new Integer(6214)); - List actualFunctionalMenuRoleList = null; - actualFunctionalMenuRoleList = functionalMenuService.getFunctionalMenuRole(); - assertEquals(expectedFunctionalMenuRole.getAppId(),actualFunctionalMenuRoleList.get(actualFunctionalMenuRoleList.size()-1).getAppId()); - assertEquals(expectedFunctionalMenuRole.getMenuId(),actualFunctionalMenuRoleList.get(actualFunctionalMenuRoleList.size()-1).getMenuId()); - assertEquals(expectedFunctionalMenuRole.getId(),actualFunctionalMenuRoleList.get(actualFunctionalMenuRoleList.size()-1).getId()); - assertEquals(expectedFunctionalMenuRole.getRoleId(),actualFunctionalMenuRoleList.get(actualFunctionalMenuRoleList.size()-1).getRoleId()); - - } - -} - - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.test.service; + +import static org.junit.Assert.assertTrue; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.junit.Test; +import org.openecomp.portalapp.portal.service.FunctionalMenuService; +import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; +import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; +import org.openecomp.portalapp.test.framework.ApplicationCommonContextTestSuite; +import org.springframework.beans.factory.annotation.Autowired; + +public class FunctionalMenuServiceImplTest extends ApplicationCommonContextTestSuite { + + @Autowired + FunctionalMenuService functionalMenuService; + + @Test + public void getAppListTestService() throws Exception { + + String userId = "guestT"; + List userAppRolesActualResult = null; + + List userAppRolesExpectedResult = new ArrayList(); + BusinessCardApplicationRole businessCardApplicationRole = new BusinessCardApplicationRole(); + businessCardApplicationRole.setAppName("ECOMP Portal"); + businessCardApplicationRole.setRoleName("System Administrator"); + userAppRolesExpectedResult.add(businessCardApplicationRole); + Map params = new HashMap(); + params.put("userId", userId); + userAppRolesActualResult = functionalMenuService.getUserAppRolesList(userId); + assertTrue(userAppRolesActualResult.contains(businessCardApplicationRole)); + + } + + @Test + public void getFunctionalMenuRoleTest() throws Exception { + + FunctionalMenuRole expectedFunctionalMenuRole = new FunctionalMenuRole(); + expectedFunctionalMenuRole.setId(new Integer(-1)); + + expectedFunctionalMenuRole.setMenuId((long) 137); + expectedFunctionalMenuRole.setAppId(new Integer(456)); + expectedFunctionalMenuRole.setRoleId(new Integer(6214)); + List actualFunctionalMenuRoleList = null; + actualFunctionalMenuRoleList = functionalMenuService.getFunctionalMenuRole(); + assertTrue(actualFunctionalMenuRoleList.contains(expectedFunctionalMenuRole)); + + } +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/framework/ApplicationCommonContextTestSuite.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/framework/ApplicationCommonContextTestSuite.java new file mode 100644 index 00000000..cba7c57b --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/framework/ApplicationCommonContextTestSuite.java @@ -0,0 +1,175 @@ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.test.framework; + +import java.io.IOException; + +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.openecomp.portalsdk.core.conf.AppConfig; +//import org.openecomp.portalapp.conf.ExternalAppConfig; +//import org.openecomp.portalapp.conf.HibernateMappingLocations; +import org.openecomp.portalsdk.core.conf.HibernateConfiguration; +import org.openecomp.portalsdk.core.conf.HibernateMappingLocatable; +import org.openecomp.portalsdk.core.objectcache.AbstractCacheManager; +import org.openecomp.portalsdk.core.util.CacheManager; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.ComponentScan; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.FilterType; +import org.springframework.context.annotation.Profile; +import org.springframework.core.io.ClassPathResource; +import org.springframework.core.io.Resource; +import org.springframework.test.context.ActiveProfiles; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.context.transaction.TransactionConfiguration; +import org.springframework.test.context.web.AnnotationConfigWebContextLoader; +import org.springframework.test.context.web.WebAppConfiguration; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.setup.MockMvcBuilders; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.web.context.WebApplicationContext; +import org.springframework.web.servlet.config.annotation.InterceptorRegistry; + +/** + * + * In order to write a unit test, 1. inherit this class 2. place the "war" + * folder on your test class's classpath 3. run the test with the following VM + * argument; This is important because when starting the application from + * Container, the System Properties file (SystemProperties.java) can have the + * direct path but, when running from the Mock Junit container, the path should + * be prefixed with "classpath" to enable the mock container to search for the + * file in the classpath -Dcontainer.classpath="classpath:" + */ + +@SuppressWarnings("deprecation") +@RunWith(SpringJUnit4ClassRunner.class) +@WebAppConfiguration +@ContextConfiguration(loader = AnnotationConfigWebContextLoader.class, classes = { MockAppConfig.class }) +@ActiveProfiles(value = "test") +public class ApplicationCommonContextTestSuite { + + @Autowired + public WebApplicationContext wac; + + private MockMvc mockMvc; + + @Before + public void setup() { + if (mockMvc == null) { + this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).build(); + + } + } + + public Object getBean(String name) { + return this.wac.getBean(name); + } + + public MockMvc getMockMvc() { + return mockMvc; + } + + public void setMockMvc(MockMvc mockMvc) { + this.mockMvc = mockMvc; + } + + public WebApplicationContext getWebApplicationContext() { + return wac; + } + +} + +@Configuration +@ComponentScan(basePackages = "org.openecomp", excludeFilters = { + // the following source configurations should not be scanned; instead of + // using Exclusion filter, we can use the @Profile annotation to exclude + // them + @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.portalsdk.core.controller.LogoutController*"), + @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.portalsdk.core.controller.SDKLoginController*"), + @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.portalapp.conf.ExternalAppConfig*"), + @ComponentScan.Filter(type = FilterType.REGEX, pattern = "org.openecomp.*.*InitUebHandler*") }) +@Profile("test") +class MockAppConfig extends AppConfig { + + @Bean + HibernateMappingLocatable locatable() { + return new MockHibernateMappingLocations(); + } + + @Bean + HibernateConfiguration hibConfiguration() { + return new HibernateConfiguration(); + } + + @Bean + public SystemProperties systemProperties() { + return new MockSystemProperties(); + } + + @Bean + public AbstractCacheManager cacheManager() { + return new CacheManager() { + + public void configure() throws IOException { + + } + }; + } + + public String[] tileDefinitions() { + return new String[] { "classpath:/WEB-INF/fusion/defs/definitions.xml", + "classpath:/WEB-INF/defs/definitions.xml" }; + } + + public void addInterceptors(InterceptorRegistry registry) { + // registry.addInterceptor(new + // SessionTimeoutInterceptor()).excludePathPatterns(getExcludeUrlPathsForSessionTimeout()); + // registry.addInterceptor(resourceInterceptor()); + } + + public static class MockSystemProperties extends SystemProperties { + + public MockSystemProperties() { + } + + } + +} + +@Profile("test") +class MockHibernateMappingLocations implements HibernateMappingLocatable { + + public Resource[] getMappingLocations() { + return new Resource[] { new ClassPathResource("WEB-INF/fusion/orm/Fusion.hbm.xml"), + new ClassPathResource("WEB-INF/fusion/orm/EP.hbm.xml"), + new ClassPathResource("WEB-INF/fusion/orm/Workflow.hbm.xml") }; + + } + + public String[] getPackagesToScan() { + return new String[] { "org.openecomp", "src" }; + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/framework/MockitoTestSuite.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/framework/MockitoTestSuite.java new file mode 100644 index 00000000..8c5d3d21 --- /dev/null +++ b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/framework/MockitoTestSuite.java @@ -0,0 +1,70 @@ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.test.framework; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletRequestWrapper; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.junit.runner.RunWith; +import org.mockito.Mockito; +import org.mockito.runners.MockitoJUnitRunner; + +@RunWith(MockitoJUnitRunner.class) +public class MockitoTestSuite { + + + public MockHttpServletRequestWrapper mockedRequest = new MockHttpServletRequestWrapper( + Mockito.mock(HttpServletRequest.class)); + public HttpServletResponse mockedResponse = Mockito.mock(HttpServletResponse.class); + + public MockHttpServletRequestWrapper getMockedRequest() { + return mockedRequest; + } + + public HttpServletResponse getMockedResponse() { + return mockedResponse; + } + + public class MockHttpServletRequestWrapper extends HttpServletRequestWrapper { + + HttpSession session = Mockito.mock(HttpSession.class); + + public MockHttpServletRequestWrapper(HttpServletRequest request) { + super(request); + + } + + @Override + public HttpSession getSession() { + + return session; + } + + @Override + public HttpSession getSession(boolean create) { + + return session; + } + + } + +} diff --git a/ecomp-portal-BE-common-test/src/main/resources/PopulateTestData.sql b/ecomp-portal-BE-common-test/src/main/resources/PopulateTestData.sql index 6972ec95..116ba757 100644 --- a/ecomp-portal-BE-common-test/src/main/resources/PopulateTestData.sql +++ b/ecomp-portal-BE-common-test/src/main/resources/PopulateTestData.sql @@ -1,28 +1,32 @@ ---- --- ================================================================================ --- ECOMP Portal --- ================================================================================ --- Copyright (C) 2017 AT&T Intellectual Property --- ================================================================================ --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- http://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- ================================================================================ ---- -insert into fn_user values(99999999,null,null,'test',null,'test',null,null,null,null,null,null,null,'guest',null,null,null,null,true,null,null,null,null,false,null,null,null, -null,null,null,null,null,null,null,null,null,null,null,null,null,null,null); -insert into fn_user_role values(99999999,1, null,1); -insert into fn_user_role values(99999999,16, null,1); -insert into fn_user_role values(99999999,999, null,1); -insert into fn_user_role values(99999999,1010, null,1); -insert into fn_menu_functional values(99999999,3,'Network Analytics',5,'http://vm-d2novasdn3.client.research.att.com:8080/d2novasdn-1/welcome.htm','Y',null); -insert into fn_menu_functional_roles values(99999999, 137,456, 6214); -insert into fn_menu_favorites values(3, 141); +--- +-- ================================================================================ +-- ECOMP Portal +-- ================================================================================ +-- Copyright (C) 2017 AT&T Intellectual Property +-- ================================================================================ +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- ================================================================================ +--- +insert into fn_user values(-1,null,null,'test',null,'test',null,null,null,null,null,null,null,'guestT',null,null,null,null,true,null,null,null,null,false,null,null,null, +null,null,null,null,null,null,null,null,null,null,null,null,null,null,null); +insert into fn_user_role values(-1,1, null,1); +insert into fn_user_role values(-1,16, null,1); +insert into fn_user_role values(-1,999, null,1); +insert into fn_user_role values(-1,1010, null,1); +insert into fn_menu_functional values(-1,3,'Network Analytics',5,'http://vm-d2novasdn3.client.research.att.com:8080/d2novasdn-1/welcome.htm','Y',null); +insert into fn_menu_functional_roles values(-1, 137,456, 6214); +insert into fn_menu_favorites values(-1, 141); +insert into ep_web_analytics_source values(-1,1,'test_url','test'); +INSERT INTO ep_notification (notification_ID, is_for_online_users, is_for_all_roles, active_YN, msg_header, msg_description,msg_source,start_time,end_time,priority,creator_ID,created_date) +VALUES ('-1', 'Y', 'N', 'Y', 'CISCO_1921C1_ISR_G2', '{}','aotstm','2017-03-26 12:18:55.0','2017-04-25 12:18:55.0','2',NULL,'2017-04-25 21:18:11.0'); +INSERT INTO ep_role_notification (ID,notification_ID,role_ID,recv_user_id ) VALUES (0,-1,NULL,10) diff --git a/ecomp-portal-BE-common-test/src/main/resources/RemoveTestData.sql b/ecomp-portal-BE-common-test/src/main/resources/RemoveTestData.sql index 158508f7..5a3000a4 100644 --- a/ecomp-portal-BE-common-test/src/main/resources/RemoveTestData.sql +++ b/ecomp-portal-BE-common-test/src/main/resources/RemoveTestData.sql @@ -1,27 +1,31 @@ ---- --- ================================================================================ --- ECOMP Portal --- ================================================================================ --- Copyright (C) 2017 AT&T Intellectual Property --- ================================================================================ --- Licensed under the Apache License, Version 2.0 (the "License"); --- you may not use this file except in compliance with the License. --- You may obtain a copy of the License at --- --- http://www.apache.org/licenses/LICENSE-2.0 --- --- Unless required by applicable law or agreed to in writing, software --- distributed under the License is distributed on an "AS IS" BASIS, --- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --- See the License for the specific language governing permissions and --- limitations under the License. --- ================================================================================ ---- -delete from fn_user_role where user_id ='99999999'; -delete from ep_user_notification where user_id='99999999'; -delete from fn_audit_log where user_id='99999999'; -delete from fn_user where user_id='99999999'; -delete from fn_menu_functional_roles where id='99999999'; -delete from fn_menu_functional_ancestors where menu_id=99999999; -delete from fn_menu_functional where menu_id='99999999'; -delete from fn_menu_favorites where user_id=3 and menu_id=141; +--- +-- ================================================================================ +-- ECOMP Portal +-- ================================================================================ +-- Copyright (C) 2017 AT&T Intellectual Property +-- ================================================================================ +-- Licensed under the Apache License, Version 2.0 (the "License"); +-- you may not use this file except in compliance with the License. +-- You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software +-- distributed under the License is distributed on an "AS IS" BASIS, +-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +-- See the License for the specific language governing permissions and +-- limitations under the License. +-- ================================================================================ +--- +delete from fn_user_role where user_id =-1; +delete from ep_user_notification where user_id=-1; +delete from fn_audit_log where user_id=-1; +delete from fn_menu_favorites where user_id=-1 and menu_id=141; +delete from fn_user where user_id=-1; +delete from fn_menu_functional_roles where id=-1; +delete from fn_menu_functional_ancestors where menu_id=-1; +delete from fn_menu_functional where menu_id=-1; +delete from fn_menu_favorites where user_id=-1 and menu_id=141; +delete from ep_web_analytics_source where resource_id=-1; +delete from ep_role_notification where notification_ID='-1'; +delete from ep_notification where notification_ID='-1'; diff --git a/ecomp-portal-BE-common/README.md b/ecomp-portal-BE-common/README.md new file mode 100644 index 00000000..70d4ef22 --- /dev/null +++ b/ecomp-portal-BE-common/README.md @@ -0,0 +1,10 @@ +# ECOMP Portal Web Application Back End Common Files + +## Overview + +This is a Maven overlay project with the ECOMP Portal back-end common files. +This is not a stand-alone web application. This project has common Java classes +that are used in the internal and ONAP versions of the ECOMP Portal web application. +Those specific versions are built using separate Maven projects that copy in +("overlay") the contents of this project at package time and that use the jar +built by this project. \ No newline at end of file diff --git a/ecomp-portal-BE-common/pom.xml b/ecomp-portal-BE-common/pom.xml index 9fb41d31..bff7ed21 100644 --- a/ecomp-portal-BE-common/pom.xml +++ b/ecomp-portal-BE-common/pom.xml @@ -19,7 +19,6 @@ https://nexus.onap.org /content/repositories/snapshots/ /content/repositories/releases/ - /content/repositories/staging/ @@ -35,12 +34,6 @@ OpenECOMP - Snapshot Repository ${nexusproxy}/${snapshotNexusPath} - - - ecomp-staging - OpenECOMP - Staging Repository - ${nexusproxy}/${stagingNexusPath} - diff --git a/ecomp-portal-BE-common/src/main/java/jarutil/ExtractJar.java b/ecomp-portal-BE-common/src/main/java/jarutil/ExtractJar.java index 76d4b181..e8f828f0 100644 --- a/ecomp-portal-BE-common/src/main/java/jarutil/ExtractJar.java +++ b/ecomp-portal-BE-common/src/main/java/jarutil/ExtractJar.java @@ -1,204 +1,204 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package jarutil; - -import java.io.File; -import java.io.FileInputStream; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.InputStream; -import java.io.OutputStream; -import java.io.Reader; -import java.io.Writer; -import java.net.URL; -import java.util.ArrayList; -import java.util.jar.JarEntry; -import java.util.jar.JarInputStream; - -public class ExtractJar { - - /** - * @param args - */ - - public static int bufferSize = 8192; - public static String JARFILE = "raptor_upgrade.jar"; - - public static void main(String[] args) throws Exception { - if(args.length > 0 && args[0]!=null && args[0].length()>0) - extractFilesFromJar(args[0]); - else { - System.out.println("Current Directory is taken as webapp path"); - String currentDir = new File(".").getAbsolutePath(); - extractFilesFromJar(currentDir); - } - } - - public static void readJar(File jarFile) throws Exception{ - JarInputStream in = new JarInputStream(new FileInputStream(jarFile)); - ArrayList entries = new ArrayList( ); - JarEntry je; - while((je=in.getNextJarEntry( ))!=null){ - if( je.isDirectory() == false ) { - if(je.getName().startsWith("att/raptor/config/")) { - //while((je=in.getNextJarEntry( ))!=null) { - System.out.println(je.getName() + " " + je.getTime()); - //} - - } - } - } - in.close( ); - } - - public static void extractFilesFromJar(String directory) throws IOException{ - //JarFile jar = new JarFile(jarFile); - Class clazz = ExtractJar.class; - String classContainer = clazz.getProtectionDomain().getCodeSource().getLocation().toString(); - //System.out.println("classContainer ---------> " + classContainer); - URL jarUrl = clazz.getProtectionDomain().getCodeSource().getLocation(); - - JarInputStream entryStream = new JarInputStream(jarUrl.openStream()); - JarEntry entry; - while(true) { - entry = entryStream.getNextJarEntry(); - if(entry == null) - break; - if(entry.getName().indexOf("jarutil") < 0) { - System.out.println(entry.getName()); - File file=new File(directory,entry.getName()); - if(entry.isDirectory()) { - if (!file.exists()) - file.mkdirs(); - } else { - // make directory (some jars don't list dirs) - File dir = new File(file.getParent()); - if (!dir.exists()) - dir.mkdirs(); - if(file.exists()) file.delete(); - // Make file - FileOutputStream fout = new FileOutputStream(file); - copy(entryStream,fout); - fout.close(); - - // touch the file. - if (entry.getTime()>=0) - file.setLastModified(entry.getTime()); - } - - } - entryStream.closeEntry(); - } - entryStream.close(); - System.out.println("************************************************"); - System.out.println("* *"); - System.out.println("* *"); - System.out.println("* RAPTOR SETUP COMPLETE. *"); - System.out.println("* *"); - System.out.println("* Thank you for upgrading. *"); - System.out.println("* *"); - System.out.println("************************************************"); - } - - - public static void copy(InputStream in, OutputStream out, long byteCount) - throws IOException { - byte buffer[] = new byte[bufferSize]; - int len=bufferSize; - if (byteCount>=0) { - while (byteCount>0) { - if (byteCount=0) { - while (byteCount>0) { - if (byteCount 0 && args[0]!=null && args[0].length()>0) + extractFilesFromJar(args[0]); + else { + System.out.println("Current Directory is taken as webapp path"); + String currentDir = new File(".").getAbsolutePath(); + extractFilesFromJar(currentDir); + } + } + + public static void readJar(File jarFile) throws Exception{ + JarInputStream in = new JarInputStream(new FileInputStream(jarFile)); + ArrayList entries = new ArrayList( ); + JarEntry je; + while((je=in.getNextJarEntry( ))!=null){ + if( je.isDirectory() == false ) { + if(je.getName().startsWith("att/raptor/config/")) { + //while((je=in.getNextJarEntry( ))!=null) { + System.out.println(je.getName() + " " + je.getTime()); + //} + + } + } + } + in.close( ); + } + + public static void extractFilesFromJar(String directory) throws IOException{ + //JarFile jar = new JarFile(jarFile); + Class clazz = ExtractJar.class; + String classContainer = clazz.getProtectionDomain().getCodeSource().getLocation().toString(); + //System.out.println("classContainer ---------> " + classContainer); + URL jarUrl = clazz.getProtectionDomain().getCodeSource().getLocation(); + + JarInputStream entryStream = new JarInputStream(jarUrl.openStream()); + JarEntry entry; + while(true) { + entry = entryStream.getNextJarEntry(); + if(entry == null) + break; + if(entry.getName().indexOf("jarutil") < 0) { + System.out.println(entry.getName()); + File file=new File(directory,entry.getName()); + if(entry.isDirectory()) { + if (!file.exists()) + file.mkdirs(); + } else { + // make directory (some jars don't list dirs) + File dir = new File(file.getParent()); + if (!dir.exists()) + dir.mkdirs(); + if(file.exists()) file.delete(); + // Make file + FileOutputStream fout = new FileOutputStream(file); + copy(entryStream,fout); + fout.close(); + + // touch the file. + if (entry.getTime()>=0) + file.setLastModified(entry.getTime()); + } + + } + entryStream.closeEntry(); + } + entryStream.close(); + System.out.println("************************************************"); + System.out.println("* *"); + System.out.println("* *"); + System.out.println("* RAPTOR SETUP COMPLETE. *"); + System.out.println("* *"); + System.out.println("* Thank you for upgrading. *"); + System.out.println("* *"); + System.out.println("************************************************"); + } + + + public static void copy(InputStream in, OutputStream out, long byteCount) + throws IOException { + byte buffer[] = new byte[bufferSize]; + int len=bufferSize; + if (byteCount>=0) { + while (byteCount>0) { + if (byteCount=0) { + while (byteCount>0) { + if (byteCount roles; - - public ExternalSystemUser() { - roles = new ArrayList(); - } - - public String getApplicationName() { - return applicationName; - } - - public void setApplicationName(String applicationName) { - this.applicationName = applicationName; - } - - public String getLoginId() { - return loginId; - } - - public void setLoginId(String loginId) { - this.loginId = loginId; - } - - public List getRoles() { - return roles; - } - - public void setRoles(List roles) { - this.roles = roles; - } - - public String getMyloginrequestId() { - return myloginrequestId; - } - - public void setMyloginrequestId(String myloginrequestId) { - this.myloginrequestId = myloginrequestId; - } - - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.externalsystemapproval.model; + + +import java.util.ArrayList; +import java.util.List; + +public class ExternalSystemUser { + + private String loginId; + + private String applicationName; + + private String myloginrequestId; + + private List roles; + + public ExternalSystemUser() { + roles = new ArrayList(); + } + + public String getApplicationName() { + return applicationName; + } + + public void setApplicationName(String applicationName) { + this.applicationName = applicationName; + } + + public String getLoginId() { + return loginId; + } + + public void setLoginId(String loginId) { + this.loginId = loginId; + } + + public List getRoles() { + return roles; + } + + public void setRoles(List roles) { + this.roles = roles; + } + + public String getMyloginrequestId() { + return myloginrequestId; + } + + public void setMyloginrequestId(String myloginrequestId) { + this.myloginrequestId = myloginrequestId; + } + + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/lm/FusionLicenseManagerImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/lm/FusionLicenseManagerImpl.java index e932995f..8979b3f1 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/lm/FusionLicenseManagerImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/lm/FusionLicenseManagerImpl.java @@ -1,88 +1,88 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.lm; - -import java.util.Date; -import java.util.List; -import java.util.Map; - -import javax.servlet.ServletContext; - -import org.openecomp.portalsdk.core.lm.FusionLicenseManager; -import org.springframework.stereotype.Component; - -/* - * Please note that this class is not being used; its a dummy stub to have a qualifying bean for the interface. - */ - -@Component -public class FusionLicenseManagerImpl implements FusionLicenseManager { - - @Override - public void initKeyStoreParam() { - - } - - @Override - public void initCipherParam() { - - } - - @Override - public void initLicenseParam() { - - } - - @Override - public void doInitWork() { - - } - - @Override - public int installLicense() { - return 0; - } - - @Override - public synchronized int verifyLicense(ServletContext context) { - return 0; - } - - @Override - public void generateLicense(Map clientInfoMap, List ipAddressList) throws Exception { - - } - - @Override - public String nvl(String s) { - return null; - } - - @Override - public Date getExpiredDate() { - return null; - } - - @Override - public void setExpiredDate(Date expiredDate) { - - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.lm; + +import java.util.Date; +import java.util.List; +import java.util.Map; + +import javax.servlet.ServletContext; + +import org.openecomp.portalsdk.core.lm.FusionLicenseManager; +import org.springframework.stereotype.Component; + +/* + * Please note that this class is not being used; its a dummy stub to have a qualifying bean for the interface. + */ + +@Component +public class FusionLicenseManagerImpl implements FusionLicenseManager { + + @Override + public void initKeyStoreParam() { + + } + + @Override + public void initCipherParam() { + + } + + @Override + public void initLicenseParam() { + + } + + @Override + public void doInitWork() { + + } + + @Override + public int installLicense() { + return 0; + } + + @Override + public synchronized int verifyLicense(ServletContext context) { + return 0; + } + + @Override + public void generateLicense(Map clientInfoMap, List ipAddressList) throws Exception { + + } + + @Override + public String nvl(String s) { + return null; + } + + @Override + public Date getExpiredDate() { + return null; + } + + @Override + public void setExpiredDate(Date expiredDate) { + + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppCatalogController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppCatalogController.java index a799f496..5260a47d 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppCatalogController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppCatalogController.java @@ -25,18 +25,10 @@ import java.util.List; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; - import org.openecomp.portalapp.controller.EPRestrictedBaseController; import org.openecomp.portalapp.portal.domain.EPApp; import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.AppCatalogItem; import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; import org.openecomp.portalapp.portal.service.AdminRolesService; import org.openecomp.portalapp.portal.service.EPAppService; @@ -44,28 +36,40 @@ import org.openecomp.portalapp.portal.service.PersUserAppService; import org.openecomp.portalapp.portal.transport.AppCatalogPersonalization; import org.openecomp.portalapp.portal.transport.FieldsValidator; import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import org.openecomp.portalapp.portal.ecomp.model.AppCatalogItem; import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; @RestController @org.springframework.context.annotation.Configuration @EnableAspectJAutoProxy @EPAuditLog public class AppCatalogController extends EPRestrictedBaseController { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppCatalogController.class); + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppCatalogController.class); @Autowired - AdminRolesService adminRolesService; + private AdminRolesService adminRolesService; @Autowired - EPAppService appService; + private EPAppService appService; @Autowired - PersUserAppService persUserAppService; + private PersUserAppService persUserAppService; /** * RESTful service method to fetch all enabled applications, with details * about which are accessible to the current user, selected by the current * user. * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @throws IOException If sendError fails * @return List of items suitable for display */ @RequestMapping(value = { "/portalApi/appCatalog" }, method = RequestMethod.GET, produces = "application/json") @@ -81,10 +85,10 @@ public class AppCatalogController extends EPRestrictedBaseController { appCatalog = appService.getAdminAppCatalog(user); else appCatalog = appService.getUserAppCatalog(user); - EcompPortalUtils.logAndSerializeObject(logger,"/portalApi/getAppCatalog", "GET result =", appCatalog); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/getAppCatalog", "GET result =", appCatalog); } } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Failed in getAppCatalog", e); + logger.error(EELFLoggerDelegate.errorLogger, "getAppCatalog failed", e); response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e.toString()); } return appCatalog; @@ -95,11 +99,13 @@ public class AppCatalogController extends EPRestrictedBaseController { * catalog. * * @param request - * @param selectRequest + * HttpServletRequest + * @param persRequest * JSON with data including application ID * @param response + * HttpServletResponse * @return FieldsValidator - * @throws IOException + * @throws IOException If sendError fails */ @RequestMapping(value = { "/portalApi/appCatalog" }, method = RequestMethod.PUT, produces = "application/json") public FieldsValidator putAppCatalogSelection(HttpServletRequest request, @@ -114,7 +120,7 @@ public class AppCatalogController extends EPRestrictedBaseController { persUserAppService.setPersUserAppValue(user, app, persRequest.getSelect(), persRequest.getPending()); } } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Failed in putAppCatalogSelection", e); + logger.error(EELFLoggerDelegate.errorLogger, "putAppCatalogSelection failed", e); response.sendError(HttpServletResponse.SC_INTERNAL_SERVER_ERROR, e.toString()); } result.httpStatusCode = new Long(HttpServletResponse.SC_OK); diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppContactUsController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppContactUsController.java index 9b476e05..7e781049 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppContactUsController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppContactUsController.java @@ -63,8 +63,8 @@ public class AppContactUsController extends EPRestrictedBaseController { * Answers a JSON object with three items from the system.properties file: * user self-help ticket URL, email for feedback, and Portal info link. * - * @param request - * @return + * @param request HttpServletRequest + * @return PortalRestResponse */ @RequestMapping(value = "/feedback", method = RequestMethod.GET, produces = "application/json") public PortalRestResponse getPortalDetails(HttpServletRequest request) { @@ -91,8 +91,8 @@ public class AppContactUsController extends EPRestrictedBaseController { * Answers the contents of the contact-us table, extended with the * application name. * - * @param request - * @return + * @param request HttpServletRequest + * @return PortalRestResponse> */ @RequestMapping(value = "/list", method = RequestMethod.GET, produces = "application/json") public PortalRestResponse> getAppContactUsList(HttpServletRequest request) { @@ -113,8 +113,8 @@ public class AppContactUsController extends EPRestrictedBaseController { * Answers a list of objects, one per application, extended with available * data on how to contact that app's organization (possibly none). * - * @param request - * @return + * @param request HttpServletRequest + * @return PortalRestResponse> */ @RequestMapping(value = "/allapps", method = RequestMethod.GET, produces = "application/json") public PortalRestResponse> getAppsAndContacts(HttpServletRequest request) { @@ -145,8 +145,8 @@ public class AppContactUsController extends EPRestrictedBaseController { * Answers a list of objects with category-application-function details. Not * all applications participate in the functional menu. * - * @param request - * @return + * @param request HttpServletRequest + * @return PortalRestResponse> */ @RequestMapping(value = "/functions", method = RequestMethod.GET, produces = "application/json") public PortalRestResponse> getAppCategoryFunctions(HttpServletRequest request) { @@ -171,8 +171,8 @@ public class AppContactUsController extends EPRestrictedBaseController { /** * Accepts a new application's contact us details. * - * @param contactUs - * @return + * @param contactUs AppContactUsItem + * @return PortalRestResponse */ @RequestMapping(value = "/save", method = RequestMethod.POST, produces = "application/json") public PortalRestResponse save(@RequestBody AppContactUsItem contactUs) { @@ -206,8 +206,8 @@ public class AppContactUsController extends EPRestrictedBaseController { * Deletes the specified application's contact-us details entry from the * table. * - * @param id - * @return + * @param id app ID + * @return PortalRestResponse */ @RequestMapping(value = "/delete/{appid}", method = RequestMethod.POST, produces = "application/json") public PortalRestResponse delete(@PathVariable("appid") Long id) { diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppsController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppsController.java index 7a05d676..2c1da820 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppsController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppsController.java @@ -80,7 +80,11 @@ public class AppsController extends EPRestrictedBaseController { * RESTful service method to fetch all Applications available to current * user * - * @return + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return List */ @RequestMapping(value = { "/portalApi/userApps" }, method = RequestMethod.GET, produces = "application/json") public List getUserApps(HttpServletRequest request, HttpServletResponse response) { @@ -105,7 +109,13 @@ public class AppsController extends EPRestrictedBaseController { * RESTful service method to fetch all applications accessible to the * current user, with personalizations. * - * @return + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return List + * @throws IOException + * if sendError fails */ @RequestMapping(value = { "/portalApi/persUserApps" }, method = RequestMethod.GET, produces = "application/json") public List getPersUserApps(HttpServletRequest request, HttpServletResponse response) throws IOException { @@ -134,7 +144,11 @@ public class AppsController extends EPRestrictedBaseController { * RESTful service method to fetch applications for which the current user * is an Administrator * - * @return + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return List */ @RequestMapping(value = { "/portalApi/adminApps" }, method = RequestMethod.GET, produces = "application/json") public List getAdminApps(HttpServletRequest request, HttpServletResponse response) { @@ -159,7 +173,11 @@ public class AppsController extends EPRestrictedBaseController { * RESTful service method to fetch Applications for user who is super admin * and/or app admin. * - * @return + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return List */ @RequestMapping(value = { "/portalApi/appsForSuperAdminAndAccountAdmin" }, method = RequestMethod.GET, produces = "application/json") @@ -186,6 +204,10 @@ public class AppsController extends EPRestrictedBaseController { /** * RESTful service method to fetch left menu items from the user's session. * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse * @return JSON with left menu */ @SuppressWarnings({ "rawtypes", "unchecked" }) @@ -254,18 +276,21 @@ public class AppsController extends EPRestrictedBaseController { return ecompApps; } - /* - * This method sends the user apps manual sort preference Data to service - * - * @request: HTTP servlet request + /** + * Sets the user apps manual sort preference * - * @response: HTTP servlet response + * @param request + * HTTP servlet request + * @param response + * HTTP servlet response + * @param epAppsManualPref + * sort pref + * @return FieldsValidator */ @RequestMapping(value = { "/portalApi/saveUserAppsSortingManual" }, method = RequestMethod.PUT, produces = "application/json") public FieldsValidator putUserAppsSortingManual(HttpServletRequest request, - @RequestBody List epAppsManualPref, HttpServletResponse response) - throws IOException { + @RequestBody List epAppsManualPref, HttpServletResponse response) { FieldsValidator fieldsValidator = null; try { EPUser user = EPUserUtils.getUserSession(request); @@ -316,13 +341,16 @@ public class AppsController extends EPRestrictedBaseController { return fieldsValidator; } - /* - * This method is being called to delete the user app manual sort preference - * record - * - * @request: HTTP servlet request + /** + * Deletes the user app manual sort preference record * - * @response: HTTP servlet response + * @param request + * HTTP servlet request + * @param response + * HTTP servlet response + * @param delManualAppData + * data to delete + * @return FieldsValidator */ @RequestMapping(value = { "/portalApi/UpdateUserAppsSortManual" }, method = RequestMethod.PUT, produces = "application/json") @@ -389,7 +417,11 @@ public class AppsController extends EPRestrictedBaseController { * Administrator user. Attention: Users which have Super Administrator roles * only are not included! * - * @return + * @param request + * HTTP servlet request + * @param response + * HTTP servlet response + * @return List */ @RequestMapping(value = { "/portalApi/accountAdmins" }, method = RequestMethod.GET, produces = "application/json") public List getAppsAdministrators(HttpServletRequest request, HttpServletResponse response) { @@ -432,10 +464,11 @@ public class AppsController extends EPRestrictedBaseController { * regardless of enabled status. * * @param request + * HTTP servlet request * @param response + * HTTP servlet response * @return List of applications */ - // This API returns @RequestMapping(value = { "/portalApi/allAvailableApps" }, method = RequestMethod.GET, produces = "application/json") public List getAllApps(HttpServletRequest request, HttpServletResponse response) { @@ -458,8 +491,10 @@ public class AppsController extends EPRestrictedBaseController { /** * * @param request + * HTTP servlet request * @param response - * @return + * HTTP servlet response + * @return List of applications */ @RequestMapping(value = { "/portalApi/appsFullList" }, method = RequestMethod.GET, produces = "application/json") public List getAppsFullList(HttpServletRequest request, HttpServletResponse response) { @@ -477,8 +512,10 @@ public class AppsController extends EPRestrictedBaseController { /** * * @param request + * HTTP servlet request * @param response - * @return + * HTTP servlet response + * @return UserRoles */ @RequestMapping(value = { "/portalApi/userProfile" }, method = RequestMethod.GET, produces = "application/json") public UserRoles getUserProfile(HttpServletRequest request, HttpServletResponse response) { @@ -502,8 +539,10 @@ public class AppsController extends EPRestrictedBaseController { /** * * @param request + * HTTP servlet request * @param appId - * @return + * application ID + * @return List */ @RequestMapping(value = { "/portalApi/appRoles/{appId}" }, method = { RequestMethod.GET }, produces = "application/json") @@ -522,8 +561,10 @@ public class AppsController extends EPRestrictedBaseController { /** * * @param request + * HTTP servlet request * @param response - * @return + * HTTP servlet response + * @return List */ @RequestMapping(value = { "/portalApi/onboardingApps" }, method = RequestMethod.GET, produces = "application/json") public List getOnboardingApps(HttpServletRequest request, HttpServletResponse response) { @@ -547,9 +588,12 @@ public class AppsController extends EPRestrictedBaseController { /** * * @param request - * @param modifiedOnboardingApp + * HTTP servlet request * @param response - * @return + * HTTP servlet response + * @param modifiedOnboardingApp + * app to update + * @return FieldsValidator */ @RequestMapping(value = { "/portalApi/onboardingApps" }, method = RequestMethod.PUT, produces = "application/json") public FieldsValidator putOnboardingApp(HttpServletRequest request, @@ -576,9 +620,12 @@ public class AppsController extends EPRestrictedBaseController { /** * * @param request - * @param newOnboardingApp + * HTTP servlet request * @param response - * @return + * HTTP servlet response + * @param newOnboardingApp + * app to add + * @return FieldsValidator */ @RequestMapping(value = { "/portalApi/onboardingApps" }, method = RequestMethod.POST, produces = "application/json") public FieldsValidator postOnboardingApp(HttpServletRequest request, @RequestBody OnboardingApp newOnboardingApp, @@ -606,9 +653,12 @@ public class AppsController extends EPRestrictedBaseController { * REST endpoint to process a request to delete an on-boarded application. * * @param request - * @param appId + * HTTP servlet request * @param response - * @return + * HTTP servlet response + * @param appId + * ID of app to delete + * @return FieldsValidator */ @RequestMapping(value = { "/portalApi/onboardingApps/{appId}" }, method = { RequestMethod.DELETE }, produces = "application/json") @@ -637,7 +687,9 @@ public class AppsController extends EPRestrictedBaseController { * Gets the application thumbnail image; sets status 404 if none exists. * * @param request - * HttpServletRequest + * HTTP servlet request + * @param response + * HTTP servlet response * @param appId * Application ID * @return Bytes with the app thumbnail image; null if not available. diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppsControllerExternalRequest.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppsControllerExternalRequest.java index fa49d5b2..774eb3ee 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppsControllerExternalRequest.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AppsControllerExternalRequest.java @@ -1,374 +1,374 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.AdminRolesService; -import org.openecomp.portalapp.portal.service.EPAppService; -import org.openecomp.portalapp.portal.service.PortalAdminService; -import org.openecomp.portalapp.portal.service.UserService; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.OnboardingApp; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import org.openecomp.portalapp.portal.utils.PortalConstants; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.ResponseBody; -import org.springframework.web.bind.annotation.RestController; - -import io.swagger.annotations.ApiOperation; - -/** - * Processes requests from external systems (i.e., not the front-end web UI). - * First use case is ECOMP Controller, which has to create an admin and onboard - * itself upon launch of a fresh Portal. - * - * Listens on the "auxapi" path prefix. Provides alternate implementations of - * methods in several existing controllers because an EPUser object is not - * available in the session for these requests. - * - * Checks credentials sent via HTTP Basic Authentication. The Portal's basic - * HTTP authentication system requires that the user names and endpoints are - * registered together. - */ -@RestController -@RequestMapping(PortalConstants.REST_AUX_API) -@Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class AppsControllerExternalRequest implements BasicAuthenticationController { - - private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppsControllerExternalRequest.class); - - private static final String ONBOARD_APP = "/onboardApp"; - - // Where is this used? - public boolean isAuxRESTfulCall() { - return true; - } - - /** - * For testing whether a user is a superadmin. - */ - @Autowired - private AdminRolesService adminRolesService; - - /** - * For onboarding or updating an app - */ - @Autowired - private EPAppService appService; - - /** - * For promoting a user to Portal admin - */ - @Autowired - private PortalAdminService portalAdminService; - - /** - * For creating a new user - */ - @Autowired - private UserService userService; - - /** - * Creates a new user as a Portal administrator. - * - *
-	 { 
-		"loginId" : "abc123",
-		"loginPwd": "",
-		"email":"ecomp@controller" 
-	 }
-	 * 
- * - * @param request - * HttpServletRequest - * @param epUser - * User details; the email and orgUserId fields are mandatory - * @param response - * HttpServletResponse - * @return PortalRestResponse with success or failure - */ - @ApiOperation(value = "Creates a new user as a Portal administrator.", response = PortalRestResponse.class) - @RequestMapping(value = "/portalAdmin", method = RequestMethod.POST, produces = "application/json") - @ResponseBody - public PortalRestResponse postPortalAdmin(HttpServletRequest request, HttpServletResponse response, - @RequestBody EPUser epUser) { - EcompPortalUtils.logAndSerializeObject(logger, "postPortalAdmin", "request", epUser); - PortalRestResponse portalResponse = new PortalRestResponse<>(); - - // Check mandatory fields. - if (epUser.getEmail() == null || epUser.getEmail().trim().length() == 0 // - || epUser.getLoginId() == null || epUser.getLoginId().trim().length() == 0 // - || epUser.getLoginPwd() == null) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage("Missing required field: email, loginId, or loginPwd"); - return portalResponse; - } - - try { - // Check for existing user; create if not found. - List userList = userService.getUserByUserId(epUser.getOrgUserId()); - if (userList == null || userList.size() == 0) { - // Create user with first, last names etc.; do check for - // duplicates. - String userCreateResult = userService.saveNewUser(epUser, "Yes"); - if (!"success".equals(userCreateResult)) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage(userCreateResult); - return portalResponse; - } - } - - // Check for Portal admin status; promote if not. - if (adminRolesService.isSuperAdmin(epUser)) { - portalResponse.setStatus(PortalRestStatusEnum.OK); - } else { - FieldsValidator fv = portalAdminService.createPortalAdmin(epUser.getOrgUserId()); - if (fv.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - portalResponse.setStatus(PortalRestStatusEnum.OK); - } else { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage(fv.toString()); - } - } - } catch (Exception ex) { - // Uncaught exceptions yield 404 and an empty error page - response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage(ex.toString()); - } - - EcompPortalUtils.logAndSerializeObject(logger, "postPortalAdmin", "response", portalResponse); - return portalResponse; - } - - /** - * Gets the specified application that is on-boarded in Portal. - * - * @param request - * HttpServletRequest - * @param appId - * Application ID to get - * @param response - * httpServletResponse - * @return OnboardingApp objects - */ - @ApiOperation(value = "Gets the specified application that is on-boarded in Portal.", response = OnboardingApp.class) - @RequestMapping(value = { ONBOARD_APP + "/{appId}" }, method = RequestMethod.GET, produces = "application/json") - @ResponseBody - public OnboardingApp getOnboardAppExternal(HttpServletRequest request, HttpServletResponse response, - @PathVariable("appId") Long appId) { - EPApp epApp = appService.getApp(appId); - OnboardingApp obApp = new OnboardingApp(); - appService.createOnboardingFromApp(epApp, obApp); - EcompPortalUtils.logAndSerializeObject(logger, "getOnboardAppExternal", "response", obApp); - return obApp; - } - - /** - * Adds a new application to Portal. The My Logins App Owner in the request - * must be the organization user ID of a person who is a Portal - * administrator. - * - *
-	 * { 
-		"myLoginsAppOwner" : "abc123",
-		"name": "dashboard",
-		"url": "http://k8s/something",
-		"restUrl" : "http://aic.att.com",
-		"restrictedApp" : true,
-		"isOpen" : true,
-		"isEnabled": false
-		}
-	 * 
- * - * @param request - * HttpServletRequest - * @param response - * httpServletResponse - * @param newOnboardApp - * Message with details about the app to add - * @return PortalRestResponse - */ - @ApiOperation(value = "Adds a new application to Portal.", response = PortalRestResponse.class) - @RequestMapping(value = { ONBOARD_APP }, method = RequestMethod.POST, produces = "application/json") - @ResponseBody - public PortalRestResponse postOnboardAppExternal(HttpServletRequest request, HttpServletResponse response, - @RequestBody OnboardingApp newOnboardApp) { - EcompPortalUtils.logAndSerializeObject(logger, "postOnboardAppExternal", "request", newOnboardApp); - PortalRestResponse portalResponse = new PortalRestResponse<>(); - - // Validate fields - if (newOnboardApp.id != null) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage("Unexpected field: id"); - return portalResponse; - } - if (newOnboardApp.name == null || newOnboardApp.name.trim().length() == 0 // - || newOnboardApp.url == null || newOnboardApp.url.trim().length() == 0 // - || newOnboardApp.restUrl == null || newOnboardApp.restUrl.trim().length() == 0 - || newOnboardApp.myLoginsAppOwner == null || newOnboardApp.myLoginsAppOwner.trim().length() == 0 - || newOnboardApp.restrictedApp == null // - || newOnboardApp.isOpen == null // - || newOnboardApp.isEnabled == null) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage( - "Missing required field: name, url, restUrl, restrictedApp, isOpen, isEnabled, myLoginsAppOwner"); - return portalResponse; - } - - try { - List userList = userService.getUserByUserId(newOnboardApp.myLoginsAppOwner); - if (userList == null || userList.size() != 1) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage("Failed to find user: " + newOnboardApp.myLoginsAppOwner); - return portalResponse; - } - - EPUser epUser = userList.get(0); - // Check for Portal admin status - if (! adminRolesService.isSuperAdmin(epUser)) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage("User lacks Portal admin role: " + epUser.getLoginId()); - return portalResponse; - } - - newOnboardApp.normalize(); - FieldsValidator fv = appService.addOnboardingApp(newOnboardApp, epUser); - if (fv.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - portalResponse.setStatus(PortalRestStatusEnum.OK); - } else { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage(fv.toString()); - } - } catch (Exception ex) { - // Uncaught exceptions yield 404 and an empty error page - response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage(ex.toString()); - } - EcompPortalUtils.logAndSerializeObject(logger, "postOnboardAppExternal", "response", portalResponse); - return portalResponse; - } - - /** - * Updates information about an on-boarded application in Portal. The My - * Logins App Owner in the request must be the organization user ID of a - * person who is a Portal administrator. - *
-	   { 
-		"id" : 123,
-		"myLoginsAppOwner" : "abc123",
-		"name": "dashboard",
-		"url": "http://k8s/something",
-		"restUrl" : "http://aic.att.com",
-		"restrictedApp" : true,
-		"isOpen" : true,
-		"isEnabled": false
-		}
-		
- * @param request - * HttpServletRequest - * @param response - * httpServletResponse - * @param appId - * application id - * @param oldOnboardApp - * Message with details about the app to add - * @return PortalRestResponse - */ - @ApiOperation(value = "Updates information about an on-boarded application in Portal.", response = PortalRestResponse.class) - @RequestMapping(value = { ONBOARD_APP + "/{appId}" }, method = RequestMethod.PUT, produces = "application/json") - @ResponseBody - public PortalRestResponse putOnboardAppExternal(HttpServletRequest request, HttpServletResponse response, - @PathVariable("appId") Long appId, @RequestBody OnboardingApp oldOnboardApp) { - EcompPortalUtils.logAndSerializeObject(logger, "putOnboardAppExternal", "request", oldOnboardApp); - PortalRestResponse portalResponse = new PortalRestResponse<>(); - // Validate fields. - if (oldOnboardApp.id == null || !appId.equals(oldOnboardApp.id)) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage("Unexpected value for field: id"); - return portalResponse; - } - if (oldOnboardApp.name == null || oldOnboardApp.name.trim().length() == 0 // - || oldOnboardApp.url == null || oldOnboardApp.url.trim().length() == 0 // - || oldOnboardApp.restUrl == null || oldOnboardApp.restUrl.trim().length() == 0 - || oldOnboardApp.myLoginsAppOwner == null || oldOnboardApp.myLoginsAppOwner.trim().length() == 0 - || oldOnboardApp.restrictedApp == null // - || oldOnboardApp.isOpen == null // - || oldOnboardApp.isEnabled == null) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage( - "Missing required field: name, url, restUrl, restrictedApp, isOpen, isEnabled, myLoginsAppOwner"); - return portalResponse; - } - - try { - List userList = userService.getUserByUserId(oldOnboardApp.myLoginsAppOwner); - if (userList == null || userList.size() != 1) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage("Failed to find user: " + oldOnboardApp.myLoginsAppOwner); - return portalResponse; - } - - EPUser epUser = userList.get(0); - // Check for Portal admin status - if (! adminRolesService.isSuperAdmin(epUser)) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage("User lacks Portal admin role: " + epUser.getLoginId()); - return portalResponse; - } - - oldOnboardApp.normalize(); - FieldsValidator fv = appService.modifyOnboardingApp(oldOnboardApp, epUser); - if (fv.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - portalResponse.setStatus(PortalRestStatusEnum.OK); - } else { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage(fv.toString()); - } - } catch (Exception ex) { - // Uncaught exceptions yield 404 and an empty error page - response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage(ex.toString()); - } - EcompPortalUtils.logAndSerializeObject(logger, "putOnboardAppExternal", "response", portalResponse); - return portalResponse; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.EPAppService; +import org.openecomp.portalapp.portal.service.PortalAdminService; +import org.openecomp.portalapp.portal.service.UserService; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.OnboardingApp; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.portal.utils.PortalConstants; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.ResponseBody; +import org.springframework.web.bind.annotation.RestController; + +import io.swagger.annotations.ApiOperation; + +/** + * Processes requests from external systems (i.e., not the front-end web UI). + * First use case is ECOMP Controller, which has to create an admin and onboard + * itself upon launch of a fresh Portal. + * + * Listens on the "auxapi" path prefix. Provides alternate implementations of + * methods in several existing controllers because an EPUser object is not + * available in the session for these requests. + * + * Checks credentials sent via HTTP Basic Authentication. The Portal's basic + * HTTP authentication system requires that the user names and endpoints are + * registered together. + */ +@RestController +@RequestMapping(PortalConstants.REST_AUX_API) +@Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class AppsControllerExternalRequest implements BasicAuthenticationController { + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppsControllerExternalRequest.class); + + private static final String ONBOARD_APP = "/onboardApp"; + + // Where is this used? + public boolean isAuxRESTfulCall() { + return true; + } + + /** + * For testing whether a user is a superadmin. + */ + @Autowired + private AdminRolesService adminRolesService; + + /** + * For onboarding or updating an app + */ + @Autowired + private EPAppService appService; + + /** + * For promoting a user to Portal admin + */ + @Autowired + private PortalAdminService portalAdminService; + + /** + * For creating a new user + */ + @Autowired + private UserService userService; + + /** + * Creates a new user as a Portal administrator. + * + *
+	 { 
+		"loginId" : "abc123",
+		"loginPwd": "",
+		"email":"ecomp@controller" 
+	 }
+	 * 
+ * + * @param request + * HttpServletRequest + * @param epUser + * User details; the email and orgUserId fields are mandatory + * @param response + * HttpServletResponse + * @return PortalRestResponse with success or failure + */ + @ApiOperation(value = "Creates a new user as a Portal administrator.", response = PortalRestResponse.class) + @RequestMapping(value = "/portalAdmin", method = RequestMethod.POST, produces = "application/json") + @ResponseBody + public PortalRestResponse postPortalAdmin(HttpServletRequest request, HttpServletResponse response, + @RequestBody EPUser epUser) { + EcompPortalUtils.logAndSerializeObject(logger, "postPortalAdmin", "request", epUser); + PortalRestResponse portalResponse = new PortalRestResponse<>(); + + // Check mandatory fields. + if (epUser.getEmail() == null || epUser.getEmail().trim().length() == 0 // + || epUser.getLoginId() == null || epUser.getLoginId().trim().length() == 0 // + || epUser.getLoginPwd() == null) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage("Missing required field: email, loginId, or loginPwd"); + return portalResponse; + } + + try { + // Check for existing user; create if not found. + List userList = userService.getUserByUserId(epUser.getOrgUserId()); + if (userList == null || userList.size() == 0) { + // Create user with first, last names etc.; do check for + // duplicates. + String userCreateResult = userService.saveNewUser(epUser, "Yes"); + if (!"success".equals(userCreateResult)) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage(userCreateResult); + return portalResponse; + } + } + + // Check for Portal admin status; promote if not. + if (adminRolesService.isSuperAdmin(epUser)) { + portalResponse.setStatus(PortalRestStatusEnum.OK); + } else { + FieldsValidator fv = portalAdminService.createPortalAdmin(epUser.getOrgUserId()); + if (fv.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + portalResponse.setStatus(PortalRestStatusEnum.OK); + } else { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage(fv.toString()); + } + } + } catch (Exception ex) { + // Uncaught exceptions yield 404 and an empty error page + response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage(ex.toString()); + } + + EcompPortalUtils.logAndSerializeObject(logger, "postPortalAdmin", "response", portalResponse); + return portalResponse; + } + + /** + * Gets the specified application that is on-boarded in Portal. + * + * @param request + * HttpServletRequest + * @param appId + * Application ID to get + * @param response + * httpServletResponse + * @return OnboardingApp objects + */ + @ApiOperation(value = "Gets the specified application that is on-boarded in Portal.", response = OnboardingApp.class) + @RequestMapping(value = { ONBOARD_APP + "/{appId}" }, method = RequestMethod.GET, produces = "application/json") + @ResponseBody + public OnboardingApp getOnboardAppExternal(HttpServletRequest request, HttpServletResponse response, + @PathVariable("appId") Long appId) { + EPApp epApp = appService.getApp(appId); + OnboardingApp obApp = new OnboardingApp(); + appService.createOnboardingFromApp(epApp, obApp); + EcompPortalUtils.logAndSerializeObject(logger, "getOnboardAppExternal", "response", obApp); + return obApp; + } + + /** + * Adds a new application to Portal. The My Logins App Owner in the request + * must be the organization user ID of a person who is a Portal + * administrator. + * + *
+	 * { 
+		"myLoginsAppOwner" : "abc123",
+		"name": "dashboard",
+		"url": "http://k8s/something",
+		"restUrl" : "http://aic.att.com",
+		"restrictedApp" : true,
+		"isOpen" : true,
+		"isEnabled": false
+		}
+	 * 
+ * + * @param request + * HttpServletRequest + * @param response + * httpServletResponse + * @param newOnboardApp + * Message with details about the app to add + * @return PortalRestResponse + */ + @ApiOperation(value = "Adds a new application to Portal.", response = PortalRestResponse.class) + @RequestMapping(value = { ONBOARD_APP }, method = RequestMethod.POST, produces = "application/json") + @ResponseBody + public PortalRestResponse postOnboardAppExternal(HttpServletRequest request, HttpServletResponse response, + @RequestBody OnboardingApp newOnboardApp) { + EcompPortalUtils.logAndSerializeObject(logger, "postOnboardAppExternal", "request", newOnboardApp); + PortalRestResponse portalResponse = new PortalRestResponse<>(); + + // Validate fields + if (newOnboardApp.id != null) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage("Unexpected field: id"); + return portalResponse; + } + if (newOnboardApp.name == null || newOnboardApp.name.trim().length() == 0 // + || newOnboardApp.url == null || newOnboardApp.url.trim().length() == 0 // + || newOnboardApp.restUrl == null || newOnboardApp.restUrl.trim().length() == 0 + || newOnboardApp.myLoginsAppOwner == null || newOnboardApp.myLoginsAppOwner.trim().length() == 0 + || newOnboardApp.restrictedApp == null // + || newOnboardApp.isOpen == null // + || newOnboardApp.isEnabled == null) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage( + "Missing required field: name, url, restUrl, restrictedApp, isOpen, isEnabled, myLoginsAppOwner"); + return portalResponse; + } + + try { + List userList = userService.getUserByUserId(newOnboardApp.myLoginsAppOwner); + if (userList == null || userList.size() != 1) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage("Failed to find user: " + newOnboardApp.myLoginsAppOwner); + return portalResponse; + } + + EPUser epUser = userList.get(0); + // Check for Portal admin status + if (! adminRolesService.isSuperAdmin(epUser)) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage("User lacks Portal admin role: " + epUser.getLoginId()); + return portalResponse; + } + + newOnboardApp.normalize(); + FieldsValidator fv = appService.addOnboardingApp(newOnboardApp, epUser); + if (fv.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + portalResponse.setStatus(PortalRestStatusEnum.OK); + } else { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage(fv.toString()); + } + } catch (Exception ex) { + // Uncaught exceptions yield 404 and an empty error page + response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage(ex.toString()); + } + EcompPortalUtils.logAndSerializeObject(logger, "postOnboardAppExternal", "response", portalResponse); + return portalResponse; + } + + /** + * Updates information about an on-boarded application in Portal. The My + * Logins App Owner in the request must be the organization user ID of a + * person who is a Portal administrator. + *
+	   { 
+		"id" : 123,
+		"myLoginsAppOwner" : "abc123",
+		"name": "dashboard",
+		"url": "http://k8s/something",
+		"restUrl" : "http://aic.att.com",
+		"restrictedApp" : true,
+		"isOpen" : true,
+		"isEnabled": false
+		}
+		
+ * @param request + * HttpServletRequest + * @param response + * httpServletResponse + * @param appId + * application id + * @param oldOnboardApp + * Message with details about the app to add + * @return PortalRestResponse + */ + @ApiOperation(value = "Updates information about an on-boarded application in Portal.", response = PortalRestResponse.class) + @RequestMapping(value = { ONBOARD_APP + "/{appId}" }, method = RequestMethod.PUT, produces = "application/json") + @ResponseBody + public PortalRestResponse putOnboardAppExternal(HttpServletRequest request, HttpServletResponse response, + @PathVariable("appId") Long appId, @RequestBody OnboardingApp oldOnboardApp) { + EcompPortalUtils.logAndSerializeObject(logger, "putOnboardAppExternal", "request", oldOnboardApp); + PortalRestResponse portalResponse = new PortalRestResponse<>(); + // Validate fields. + if (oldOnboardApp.id == null || !appId.equals(oldOnboardApp.id)) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage("Unexpected value for field: id"); + return portalResponse; + } + if (oldOnboardApp.name == null || oldOnboardApp.name.trim().length() == 0 // + || oldOnboardApp.url == null || oldOnboardApp.url.trim().length() == 0 // + || oldOnboardApp.restUrl == null || oldOnboardApp.restUrl.trim().length() == 0 + || oldOnboardApp.myLoginsAppOwner == null || oldOnboardApp.myLoginsAppOwner.trim().length() == 0 + || oldOnboardApp.restrictedApp == null // + || oldOnboardApp.isOpen == null // + || oldOnboardApp.isEnabled == null) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage( + "Missing required field: name, url, restUrl, restrictedApp, isOpen, isEnabled, myLoginsAppOwner"); + return portalResponse; + } + + try { + List userList = userService.getUserByUserId(oldOnboardApp.myLoginsAppOwner); + if (userList == null || userList.size() != 1) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage("Failed to find user: " + oldOnboardApp.myLoginsAppOwner); + return portalResponse; + } + + EPUser epUser = userList.get(0); + // Check for Portal admin status + if (! adminRolesService.isSuperAdmin(epUser)) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage("User lacks Portal admin role: " + epUser.getLoginId()); + return portalResponse; + } + + oldOnboardApp.normalize(); + FieldsValidator fv = appService.modifyOnboardingApp(oldOnboardApp, epUser); + if (fv.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + portalResponse.setStatus(PortalRestStatusEnum.OK); + } else { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage(fv.toString()); + } + } catch (Exception ex) { + // Uncaught exceptions yield 404 and an empty error page + response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage(ex.toString()); + } + EcompPortalUtils.logAndSerializeObject(logger, "putOnboardAppExternal", "response", portalResponse); + return portalResponse; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AuditLogController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AuditLogController.java index 705c9008..8d6b8e63 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AuditLogController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/AuditLogController.java @@ -1,106 +1,106 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import javax.servlet.http.HttpServletRequest; - -import org.slf4j.MDC; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import org.openecomp.portalsdk.core.domain.AuditLog; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.AuditService; -import org.openecomp.portalapp.controller.EPRestrictedBaseController; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.logging.aop.EPEELFLoggerAdvice; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.util.EPUserUtils; - -@RestController -@RequestMapping("/portalApi/auditLog") -public class AuditLogController extends EPRestrictedBaseController { - private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(DashboardController.class); - - @Autowired - private AuditService auditService; - - /** - * Store audit log of the specified access type. - * - * @param request - * @param affectedAppId - * @param type - * @param comment - */ - @RequestMapping(value = "/store", method = RequestMethod.GET, produces = "application/json") - public void auditLog(HttpServletRequest request, @RequestParam String affectedAppId, @RequestParam String type, - @RequestParam String comment) { - logger.debug(EELFLoggerDelegate.debugLogger, "auditLog: appId {}, type {], comment {}", - affectedAppId, type, comment); - String cd_type = null; - try { - EPUser user = EPUserUtils.getUserSession(request); - /* Check type of Activity CD */ - if (type.equals("app")) { - cd_type = AuditLog.CD_ACTIVITY_APP_ACCESS; - } else if (type.equals("tab")) { - cd_type = AuditLog.CD_ACTIVITY_TAB_ACCESS; - } else if (type.equals("functional")) { - cd_type = AuditLog.CD_ACTIVITY_FUNCTIONAL_ACCESS; - } else if (type.equals("leftMenu")) { - cd_type = AuditLog.CD_ACTIVITY_LEFT_MENU_ACCESS; - } else { - logger.error(EELFLoggerDelegate.errorLogger, "Storing auditLog failed! Activity CD type is not correct."); - } - /* Store the audit log only if it contains valid Activity CD */ - if (cd_type != null) { - AuditLog auditLog = new AuditLog(); - auditLog.setActivityCode(cd_type); - /* - * Check affectedAppId and comment and see if these two values are - * valid - */ - if (comment != null && !comment.equals("") && !comment.equals("undefined")) - auditLog.setComments(comment); - if (affectedAppId != null && !affectedAppId.equals("") && !affectedAppId.equals("undefined")) - auditLog.setAffectedRecordId(affectedAppId); - long userId = EPUserUtils.getUserId(request); - auditLog.setUserId(userId); - auditService.logActivity(auditLog, null); - - // Log file - MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - logger.info(EELFLoggerDelegate.auditLogger, EPLogUtil.formatAuditLogMessage("AuditLogController.auditLog", - cd_type, user.getOrgUserId(), affectedAppId, comment)); - MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); - MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "auditLog failed", e); - } - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import javax.servlet.http.HttpServletRequest; + +import org.slf4j.MDC; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import org.openecomp.portalsdk.core.domain.AuditLog; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.AuditService; +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.aop.EPEELFLoggerAdvice; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.util.EPUserUtils; + +@RestController +@RequestMapping("/portalApi/auditLog") +public class AuditLogController extends EPRestrictedBaseController { + private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(DashboardController.class); + + @Autowired + private AuditService auditService; + + /** + * Store audit log of the specified access type. + * + * @param request + * @param affectedAppId + * @param type + * @param comment + */ + @RequestMapping(value = "/store", method = RequestMethod.GET, produces = "application/json") + public void auditLog(HttpServletRequest request, @RequestParam String affectedAppId, @RequestParam String type, + @RequestParam String comment) { + logger.debug(EELFLoggerDelegate.debugLogger, "auditLog: appId {}, type {], comment {}", + affectedAppId, type, comment); + String cd_type = null; + try { + EPUser user = EPUserUtils.getUserSession(request); + /* Check type of Activity CD */ + if (type.equals("app")) { + cd_type = AuditLog.CD_ACTIVITY_APP_ACCESS; + } else if (type.equals("tab")) { + cd_type = AuditLog.CD_ACTIVITY_TAB_ACCESS; + } else if (type.equals("functional")) { + cd_type = AuditLog.CD_ACTIVITY_FUNCTIONAL_ACCESS; + } else if (type.equals("leftMenu")) { + cd_type = AuditLog.CD_ACTIVITY_LEFT_MENU_ACCESS; + } else { + logger.error(EELFLoggerDelegate.errorLogger, "Storing auditLog failed! Activity CD type is not correct."); + } + /* Store the audit log only if it contains valid Activity CD */ + if (cd_type != null) { + AuditLog auditLog = new AuditLog(); + auditLog.setActivityCode(cd_type); + /* + * Check affectedAppId and comment and see if these two values are + * valid + */ + if (comment != null && !comment.equals("") && !comment.equals("undefined")) + auditLog.setComments(comment); + if (affectedAppId != null && !affectedAppId.equals("") && !affectedAppId.equals("undefined")) + auditLog.setAffectedRecordId(affectedAppId); + long userId = EPUserUtils.getUserId(request); + auditLog.setUserId(userId); + auditService.logActivity(auditLog, null); + + // Log file + MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + logger.info(EELFLoggerDelegate.auditLogger, EPLogUtil.formatAuditLogMessage("AuditLogController.auditLog", + cd_type, user.getOrgUserId(), affectedAppId, comment)); + MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); + MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "auditLog failed", e); + } + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BEPropertyReaderController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BEPropertyReaderController.java index a7b3f1a1..5be6614c 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BEPropertyReaderController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BEPropertyReaderController.java @@ -1,46 +1,46 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import javax.servlet.http.HttpServletRequest; - -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import org.openecomp.portalsdk.core.controller.FusionBaseController; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalapp.portal.domain.BEProperty; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; - -@RestController -@RequestMapping("/portalApi/properties") -public class BEPropertyReaderController extends FusionBaseController{ - @RequestMapping(value = "/readProperty", method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse readProperty(HttpServletRequest request, @RequestParam String key) { - try { - return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", new BEProperty(key, SystemProperties.getProperty(key))); - } catch (Exception e) { - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); - } - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import javax.servlet.http.HttpServletRequest; + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import org.openecomp.portalsdk.core.controller.FusionBaseController; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalapp.portal.domain.BEProperty; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; + +@RestController +@RequestMapping("/portalApi/properties") +public class BEPropertyReaderController extends FusionBaseController{ + @RequestMapping(value = "/readProperty", method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse readProperty(HttpServletRequest request, @RequestParam String key) { + try { + return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", new BEProperty(key, SystemProperties.getProperty(key))); + } catch (Exception e) { + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); + } + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BasicAuthAccountController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BasicAuthAccountController.java index f23054bd..c16fa78f 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BasicAuthAccountController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BasicAuthAccountController.java @@ -24,13 +24,12 @@ import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; -@SuppressWarnings("unchecked") @RestController @org.springframework.context.annotation.Configuration @EnableAspectJAutoProxy @EPAuditLog -public class BasicAuthAccountController extends EPRestrictedBaseController{ - +public class BasicAuthAccountController extends EPRestrictedBaseController { + @Autowired private BasicAuthAccountService basicAuthAccountService; @@ -38,69 +37,99 @@ public class BasicAuthAccountController extends EPRestrictedBaseController{ private AdminRolesService adminRolesService; /** - * Saves Basic Authentication account for external systems - * @param BasicAuthCredentials + * Saves Basic Authentication account for external systems + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param newBasicAuthAccount + * BasicAuthCredentials * @return Id of the newly created account - */ - + * @throws Exception + * on failure + */ @RequestMapping(value = { "/portalApi/basicAuthAccount" }, method = RequestMethod.POST) public PortalRestResponse createBasicAuthAccount(HttpServletRequest request, HttpServletResponse response, @RequestBody BasicAuthCredentials newBasicAuthAccount) throws Exception { - + EPUser user = EPUserUtils.getUserSession(request); - if (!adminRolesService.isSuperAdmin(user)){ - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "Authorization Required", "Admin Only Operation! "); + if (!adminRolesService.isSuperAdmin(user)) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "Authorization Required", + "Admin Only Operation! "); } - - if(newBasicAuthAccount == null){ + + if (newBasicAuthAccount == null) { return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", "newBasicAuthAccount cannot be null or empty"); } long accountId = basicAuthAccountService.saveBasicAuthAccount(newBasicAuthAccount); - + List endpointIdList = new ArrayList<>(); try { - for(EPEndpoint ep: newBasicAuthAccount.getEndpoints()){ + for (EPEndpoint ep : newBasicAuthAccount.getEndpoints()) { endpointIdList.add(basicAuthAccountService.saveEndpoints(ep)); } - for(Long endpointId: endpointIdList){ + for (Long endpointId : endpointIdList) { basicAuthAccountService.saveEndpointAccount(accountId, endpointId); } } catch (Exception e) { return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); } - + return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); } - + /** - * Returns list of all BasicAuthCredentials in the system + * Returns list of all BasicAuthCredentials in the system + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse * @return List + * @throws Exception + * on failure */ - + @RequestMapping(value = { "/portalApi/basicAuthAccount" }, method = RequestMethod.GET) - public PortalRestResponse> getBasicAuthAccount(HttpServletRequest request, HttpServletResponse response) - throws Exception { - + public PortalRestResponse> getBasicAuthAccount(HttpServletRequest request, + HttpServletResponse response) throws Exception { + EPUser user = EPUserUtils.getUserSession(request); - if (!adminRolesService.isSuperAdmin(user)){ - return new PortalRestResponse>(PortalRestStatusEnum.ERROR, "UnAuthorized! Admin Only Operation", new ArrayList<>()); + if (!adminRolesService.isSuperAdmin(user)) { + return new PortalRestResponse>(PortalRestStatusEnum.ERROR, + "UnAuthorized! Admin Only Operation", new ArrayList<>()); } - return new PortalRestResponse>(PortalRestStatusEnum.OK, "Success", basicAuthAccountService.getAccountData()); + return new PortalRestResponse>(PortalRestStatusEnum.OK, "Success", + basicAuthAccountService.getAccountData()); } - + /** * Updates an existing BasicAuthCredentials account + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param accountId + * account ID + * @param newBasicAuthAccount + * BasicAuthCredentials + * @return PortalRestResponse + * @throws Exception + * on failure */ - @RequestMapping(value = { "/portalApi/basicAuthAccount/{accountId}" }, method = RequestMethod.PUT) public PortalRestResponse updateAccount(HttpServletRequest request, HttpServletResponse response, - @PathVariable("accountId") long accountId, @RequestBody BasicAuthCredentials newBasicAuthAccount) throws Exception { - + @PathVariable("accountId") long accountId, @RequestBody BasicAuthCredentials newBasicAuthAccount) + throws Exception { + EPUser user = EPUserUtils.getUserSession(request); - if (!adminRolesService.isSuperAdmin(user)){ - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "Authorization Required", "Admin Only Operation! "); + if (!adminRolesService.isSuperAdmin(user)) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "Authorization Required", + "Admin Only Operation! "); } if (newBasicAuthAccount == null) { @@ -114,21 +143,30 @@ public class BasicAuthAccountController extends EPRestrictedBaseController{ } return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); } - + /** * deletes an existing BasicAuthCredentials account + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param accountId + * account ID + * @return PortalRestResponse + * @throws Exception + * on failure */ - @RequestMapping(value = { "/portalApi/basicAuthAccount/{accountId}" }, method = RequestMethod.DELETE) public PortalRestResponse deleteAccount(HttpServletRequest request, HttpServletResponse response, @PathVariable("accountId") long accountId) throws Exception { - + EPUser user = EPUserUtils.getUserSession(request); - if (!adminRolesService.isSuperAdmin(user)){ - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "Authorization Required", "Admin Only Operation! "); + if (!adminRolesService.isSuperAdmin(user)) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "Authorization Required", + "Admin Only Operation! "); } - try { basicAuthAccountService.deleteEndpointAccout(accountId); } catch (Exception e) { @@ -136,6 +174,5 @@ public class BasicAuthAccountController extends EPRestrictedBaseController{ } return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); } - - + } diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BasicAuthenticationController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BasicAuthenticationController.java index d9bdf3dc..874edad0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BasicAuthenticationController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/BasicAuthenticationController.java @@ -1,28 +1,28 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -/** - * Marker interface to indicate that requests to this controller present HTTP - * Basic Authentication credentials. - */ -public interface BasicAuthenticationController { - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +/** + * Marker interface to indicate that requests to this controller present HTTP + * Basic Authentication credentials. + */ +public interface BasicAuthenticationController { + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/ConsulClientController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/ConsulClientController.java index 8db94849..808220c5 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/ConsulClientController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/ConsulClientController.java @@ -1,90 +1,95 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.util.ArrayList; -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalapp.controller.EPRestrictedBaseController; -import org.openecomp.portalapp.portal.service.ConsulHealthService; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import com.orbitz.consul.ConsulException; -import com.orbitz.consul.model.health.ServiceHealth; - -import io.searchbox.client.config.exception.NoServerConfiguredException; - -@RestController -@RequestMapping("/portalApi/consul") -public class ConsulClientController extends EPRestrictedBaseController { - private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ConsulClientController.class); - - @Autowired - private ConsulHealthService consulHealthService; - //Get location of a healthy node running our service - @RequestMapping(value = { "/service/{service}" }, method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse getServiceLocation(HttpServletRequest request, HttpServletResponse response, @PathVariable("service") String service) { - - try{ - return new PortalRestResponse(PortalRestStatusEnum.OK, "Success!", consulHealthService.getServiceLocation(service)); - } - catch(NoServerConfiguredException e){ - logger.error(logger.errorLogger, "No healthy service exception!"); - return new PortalRestResponse(PortalRestStatusEnum.WARN, "Warning!", "No healthy service exception!"); - } - catch(ConsulException e){ - logger.error(logger.errorLogger, "Couldn't connect ot consul - Is consul running?"); - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "Error!", "Couldn't connect ot consul - Is consul running?"); - } - } - - @RequestMapping(value = { "/service/healthy/{service}" }, method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse> getAllHealthyNodes(HttpServletRequest request, HttpServletResponse response, @PathVariable("service") String service) { - try{ - return new PortalRestResponse>(PortalRestStatusEnum.OK, "Success!", consulHealthService.getAllHealthyNodes(service)); - } - catch(ConsulException e){ - logger.error(logger.errorLogger, "Couldn't connect to consul - shouldn't break anything."); - return new PortalRestResponse>(PortalRestStatusEnum.ERROR,"Error!", new ArrayList<>()); - } - } - - @RequestMapping(value = { "/service/all/{service}" }, method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse> getAllNodes(HttpServletRequest request, HttpServletResponse response, @PathVariable("service") String service) { - try{ - return new PortalRestResponse>(PortalRestStatusEnum.OK, "Success!", consulHealthService.getAllNodes(service)); - } - catch(ConsulException e){ - logger.error(logger.errorLogger, "Couldn't connect to consul - shouldn't break anything."); - return new PortalRestResponse>(PortalRestStatusEnum.ERROR,"Error!", new ArrayList<>()); - } - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.service.ConsulHealthService; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import com.orbitz.consul.ConsulException; +import com.orbitz.consul.model.health.ServiceHealth; + +import io.searchbox.client.config.exception.NoServerConfiguredException; + +@RestController +@RequestMapping("/portalApi/consul") +public class ConsulClientController extends EPRestrictedBaseController { + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ConsulClientController.class); + + @Autowired + private ConsulHealthService consulHealthService; + + // Get location of a healthy node running our service + @RequestMapping(value = { "/service/{service}" }, method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse getServiceLocation(HttpServletRequest request, HttpServletResponse response, + @PathVariable("service") String service) { + + try { + return new PortalRestResponse(PortalRestStatusEnum.OK, "Success!", + consulHealthService.getServiceLocation(service, null)); + } catch (NoServerConfiguredException e) { + logger.error(logger.errorLogger, "No healthy service exception!"); + return new PortalRestResponse(PortalRestStatusEnum.WARN, "Warning!", + "No healthy service exception!"); + } catch (ConsulException e) { + logger.error(logger.errorLogger, "Couldn't connect ot consul - Is consul running?"); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "Error!", + "Couldn't connect ot consul - Is consul running?"); + } + } + + @RequestMapping(value = { "/service/healthy/{service}" }, method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse> getAllHealthyNodes(HttpServletRequest request, + HttpServletResponse response, @PathVariable("service") String service) { + try { + return new PortalRestResponse>(PortalRestStatusEnum.OK, "Success!", + consulHealthService.getAllHealthyNodes(service)); + } catch (ConsulException e) { + logger.error(logger.errorLogger, "Couldn't connect to consul - shouldn't break anything."); + return new PortalRestResponse>(PortalRestStatusEnum.ERROR, "Error!", new ArrayList<>()); + } + } + + @RequestMapping(value = { "/service/all/{service}" }, method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse> getAllNodes(HttpServletRequest request, HttpServletResponse response, + @PathVariable("service") String service) { + try { + return new PortalRestResponse>(PortalRestStatusEnum.OK, "Success!", + consulHealthService.getAllNodes(service)); + } catch (ConsulException e) { + logger.error(logger.errorLogger, "Couldn't connect to consul - shouldn't break anything."); + return new PortalRestResponse>(PortalRestStatusEnum.ERROR, "Error!", new ArrayList<>()); + } + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/DashboardController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/DashboardController.java index 290a5ffc..81a61d57 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/DashboardController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/DashboardController.java @@ -1,385 +1,385 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.text.ParseException; -import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Date; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; - -import javax.servlet.http.HttpServletRequest; - -import org.openecomp.portalapp.controller.EPRestrictedBaseController; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EcompAuditLog; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.ecomp.model.SearchResultItem; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.logging.aop.EPEELFLoggerAdvice; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.service.DashboardSearchService; -import org.openecomp.portalapp.portal.transport.CommonWidget; -import org.openecomp.portalapp.portal.transport.CommonWidgetMeta; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import org.openecomp.portalapp.util.EPUserUtils; -import org.openecomp.portalsdk.core.domain.AuditLog; -import org.openecomp.portalsdk.core.domain.support.CollaborateList; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.AuditService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.slf4j.MDC; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -/** - * Controller supplies data to Angular services on the dashboard page. - */ -@Configuration -@RestController -@RequestMapping("/portalApi/dashboard") -public class DashboardController extends EPRestrictedBaseController { - - private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(DashboardController.class); - - @Autowired - private DashboardSearchService searchService; - @Autowired - private AuditService auditService; - - public enum WidgetCategory { - EVENTS, NEWS, IMPORTANTRESOURCES; - } - - /** - * Validates the resource type parameter. - * - * @param resourceType - * @return True if known in the enum WidgetCategory, else false. - */ - private boolean isValidResourceType(String resourceType) { - if (resourceType == null) - return false; - for (WidgetCategory wc : WidgetCategory.values()) - if (wc.name().equals(resourceType)) - return true; - return false; - } - - /** - * Gets all widgets of the specified resource type. - * In iteration 41 (when widget will utilized service onboarding), this method can be removed, instead we will use CommonWidgetController.java (basic auth based) - * - * @param request - * @param resourceType - * Request parameter. - * @return Rest response wrapped around a CommonWidgetMeta object. - */ - @RequestMapping(value = "/widgetData", method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse getWidgetData(HttpServletRequest request, - @RequestParam String resourceType) { - if (!isValidResourceType(resourceType)) - return new PortalRestResponse(PortalRestStatusEnum.ERROR, - "Unexpected resource type " + resourceType, null); - return new PortalRestResponse(PortalRestStatusEnum.OK, "success", - searchService.getWidgetData(resourceType)); - } - - - /** - * Saves a batch of events, news or resources. - * - * @param commonWidgetMeta - * read from POST body. - * @return Rest response wrapped around a String; e.g., "success" or "ERROR" - */ - @RequestMapping(value = "/widgetDataBulk", method = RequestMethod.POST, produces = "application/json") - public PortalRestResponse saveWidgetDataBulk(@RequestBody CommonWidgetMeta commonWidgetMeta) { - logger.debug(EELFLoggerDelegate.debugLogger, "saveWidgetDataBulk: argument is {}", commonWidgetMeta); - if (commonWidgetMeta.getCategory() == null || commonWidgetMeta.getCategory().trim().equals("")) - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "ERROR", - "Category cannot be null or empty"); - if (!isValidResourceType(commonWidgetMeta.getCategory())) - return new PortalRestResponse(PortalRestStatusEnum.ERROR, - "Unexpected resource type " + commonWidgetMeta.getCategory(), null); - // validate dates - for (CommonWidget cw : commonWidgetMeta.getItems()) { - String err = validateCommonWidget(cw); - if (err != null) - return new PortalRestResponse(PortalRestStatusEnum.ERROR, err, null); - } - return new PortalRestResponse(PortalRestStatusEnum.OK, "success", - searchService.saveWidgetDataBulk(commonWidgetMeta)); - } - - /** - * Saves one: event, news or resource - * - * @param commonWidget - * read from POST body - * @return Rest response wrapped around a String; e.g., "success" or "ERROR" - */ - @RequestMapping(value = "/widgetData", method = RequestMethod.POST, produces = "application/json") - public PortalRestResponse saveWidgetData(@RequestBody CommonWidget commonWidget) { - logger.debug(EELFLoggerDelegate.debugLogger, "saveWidgetData: argument is {}", commonWidget); - if (commonWidget.getCategory() == null || commonWidget.getCategory().trim().equals("")) - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "ERROR", - "Category cannot be null or empty"); - String err = validateCommonWidget(commonWidget); - if (err != null) - return new PortalRestResponse(PortalRestStatusEnum.ERROR, err, null); - return new PortalRestResponse(PortalRestStatusEnum.OK, "success", - searchService.saveWidgetData(commonWidget)); - } - - /** - * Used by the validate function - */ - private final SimpleDateFormat yearMonthDayFormat = new SimpleDateFormat("yyyy-MM-dd"); - - /** - * Validates the content of a common widget. - * - * @param cw - * @return null on success; an error message if validation fails. - * @throws Exception - */ - private String validateCommonWidget(CommonWidget cw) { - if (!isValidResourceType(cw.getCategory())) - return "Invalid category: " + cw.getCategory(); - if (cw.getTitle() == null || cw.getTitle().trim().length() == 0) - return "Title is missing"; - if (cw.getHref() == null || cw.getHref().trim().length() == 0) - return "HREF is missing"; - if (!cw.getHref().toLowerCase().startsWith("http")) - return "HREF does not start with http"; - if (cw.getSortOrder() == null) - return "Sort order is null"; - if (WidgetCategory.EVENTS.name().equals(cw.getCategory())) { - if (cw.getEventDate() == null || cw.getEventDate().trim().length() == 0) - return "Date is missing"; - try { - yearMonthDayFormat.setLenient(false); - Date date = yearMonthDayFormat.parse(cw.getEventDate()); - if (date == null) - return "Failed to parse date " + cw.getEventDate(); - } catch (ParseException ex) { - return ex.toString(); - } - } - return null; - } - - /** - * Deletes one: event, news or resource - * - * @param commonWidget - * read from POST body - * @return Rest response wrapped around a String; e.g., "success" or "ERROR" - */ - @RequestMapping(value = "/deleteData", method = RequestMethod.POST, produces = "application/json") - public PortalRestResponse deleteWidgetData(@RequestBody CommonWidget commonWidget) { - logger.debug(EELFLoggerDelegate.debugLogger, "deleteWidgetData: argument is {}", commonWidget); - return new PortalRestResponse(PortalRestStatusEnum.OK, "success", - searchService.deleteWidgetData(commonWidget)); - } - - /** - * Searches all portal for the input string. - * - * @param request - * @param searchString - * @return Rest response wrapped around a Map of String to List of Search - * Result Item. - */ - @EPAuditLog - @RequestMapping(value = "/search", method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse>> searchPortal(HttpServletRequest request, - @RequestParam String searchString) { - - if (searchString != null) - searchString = searchString.trim(); - EPUser user = EPUserUtils.getUserSession(request); - try { - if (user == null) { - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, - "searchPortal: User object is null? - check logs", - new HashMap>()); - } else if (searchString == null || searchString.length() == 0) { - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, "searchPortal: String string is null", - new HashMap>()); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "searchPortal: user {}, search string '{}'", - user.getLoginId(), searchString); - Map> results = searchService.searchResults(user.getLoginId(), - searchString); - /*Audit log the search*/ - AuditLog auditLog = new AuditLog(); - auditLog.setUserId(user.getId()); - auditLog.setActivityCode(EcompAuditLog.CD_ACTIVITY_SEARCH); - auditLog.setComments(searchString); - MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - auditService.logActivity(auditLog, null); - MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - EcompPortalUtils.calculateDateTimeDifferenceForLog(MDC.get(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP),MDC.get(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP)); - logger.info(EELFLoggerDelegate.auditLogger, EPLogUtil.formatAuditLogMessage("DashboardController.PortalRestResponse", - EcompAuditLog.CD_ACTIVITY_SEARCH, user.getOrgUserId(), null, searchString)); - MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); - MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); - MDC.remove(SystemProperties.MDC_TIMER); - return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "searchPortal failed", e); - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.getMessage() + " - check logs.", - new HashMap>()); - } - } - - /** - * Gets all active users. - * - * TODO: should only the superuser be allowed to use this API? - * - * @param request - * @return Rest response wrapped around a list of String - */ - @RequestMapping(value = "/activeUsers", method = RequestMethod.GET, produces = "application/json") - public List getActiveUsers(HttpServletRequest request) { - List activeUsers = null; - List onlineUsers = new ArrayList<>(); - try { - EPUser user = EPUserUtils.getUserSession(request); - String userId = user.getOrgUserId(); - - activeUsers = searchService.getRelatedUsers(userId); - HashSet usersSet = CollaborateList.getInstance().getAllUserName(); - for (String users : activeUsers) { - if (usersSet.contains(users)) { - onlineUsers.add(users); - } - } - - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getActiveUsers failed", e); - } - return onlineUsers; - } - - /** - * Gets the refresh interval and duration of a cycle of continuous refreshing for the online users side panel, both in milliseconds. - * - * @param request - * @return Rest response wrapped around a number that is the number of milliseconds. - */ - @RequestMapping(value = "/onlineUserUpdateRate", method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse> getOnlineUserUpdateRate(HttpServletRequest request) { - try { - String updateRate = SystemProperties.getProperty(EPCommonSystemProperties.ONLINE_USER_UPDATE_RATE); - String updateDuration = SystemProperties.getProperty(EPCommonSystemProperties.ONLINE_USER_UPDATE_DURATION); - Integer rateInMiliSec = Integer.valueOf(updateRate)*1000; - Integer durationInMiliSec = Integer.valueOf(updateDuration)*1000; - Map results = new HashMap(); - results.put("onlineUserUpdateRate", String.valueOf(rateInMiliSec)); - results.put("onlineUserUpdateDuration", String.valueOf(durationInMiliSec)); - return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getOnlineUserUpdateRate failed", e); - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); - } - } - - /** - * Gets the window width threshold for collapsing right menu from system.properties. - * - * @param request - * @return Rest response wrapped around a number that is the window width threshold to collapse right menu. - */ - @RequestMapping(value = "/windowWidthThresholdRightMenu", method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse> getWindowWidthThresholdForRightMenu(HttpServletRequest request) { - try { - String windowWidthString = SystemProperties.getProperty(EPCommonSystemProperties.WINDOW_WIDTH_THRESHOLD_RIGHT_MENU); - Integer windowWidth = Integer.valueOf(windowWidthString); - Map results = new HashMap(); - results.put("windowWidth", String.valueOf(windowWidth)); - return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getWindowWidthThresholdForRightMenu failed", e); - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); - } - } - - - /** - * Gets the window width threshold for collapsing left menu from system.properties. - * - * @param request - * @return Rest response wrapped around a number that is the window width threshold to collapse the left menu. - */ - @RequestMapping(value = "/windowWidthThresholdLeftMenu", method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse> getWindowWidthThresholdForLeftMenu(HttpServletRequest request) { - try { - String windowWidthString = SystemProperties.getProperty(EPCommonSystemProperties.WINDOW_WIDTH_THRESHOLD_LEFT_MENU); - Integer windowWidth = Integer.valueOf(windowWidthString); - Map results = new HashMap(); - results.put("windowWidth", String.valueOf(windowWidth)); - return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getWindowWidthThresholdForLeftMenu failed", e); - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); - } - } - - /** - * Gets only those users that are 'related' to the currently logged-in user. - * - * @param request - * @return Rest response wrapped around a List of String - */ - @RequestMapping(value = "/relatedUsers", method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse> activeUsers(HttpServletRequest request) { - EPUser user = EPUserUtils.getUserSession(request); - try { - if (user == null) { - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, "User object is null? - check logs", - new ArrayList<>()); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "activeUsers: searching for user {}", user.getLoginId()); - return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", - searchService.getRelatedUsers(user.getLoginId())); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "activeUsers failed", e); - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.getMessage() + " - check logs.", - new ArrayList<>()); - } - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; + +import javax.servlet.http.HttpServletRequest; + +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EcompAuditLog; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.ecomp.model.SearchResultItem; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.logging.aop.EPEELFLoggerAdvice; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.service.DashboardSearchService; +import org.openecomp.portalapp.portal.transport.CommonWidget; +import org.openecomp.portalapp.portal.transport.CommonWidgetMeta; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.domain.AuditLog; +import org.openecomp.portalsdk.core.domain.support.CollaborateList; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.AuditService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.slf4j.MDC; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +/** + * Controller supplies data to Angular services on the dashboard page. + */ +@Configuration +@RestController +@RequestMapping("/portalApi/dashboard") +public class DashboardController extends EPRestrictedBaseController { + + private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(DashboardController.class); + + @Autowired + private DashboardSearchService searchService; + @Autowired + private AuditService auditService; + + public enum WidgetCategory { + EVENTS, NEWS, IMPORTANTRESOURCES; + } + + /** + * Validates the resource type parameter. + * + * @param resourceType + * @return True if known in the enum WidgetCategory, else false. + */ + private boolean isValidResourceType(String resourceType) { + if (resourceType == null) + return false; + for (WidgetCategory wc : WidgetCategory.values()) + if (wc.name().equals(resourceType)) + return true; + return false; + } + + /** + * Gets all widgets of the specified resource type. + * In iteration 41 (when widget will utilized service onboarding), this method can be removed, instead we will use CommonWidgetController.java (basic auth based) + * + * @param request + * @param resourceType + * Request parameter. + * @return Rest response wrapped around a CommonWidgetMeta object. + */ + @RequestMapping(value = "/widgetData", method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse getWidgetData(HttpServletRequest request, + @RequestParam String resourceType) { + if (!isValidResourceType(resourceType)) + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + "Unexpected resource type " + resourceType, null); + return new PortalRestResponse(PortalRestStatusEnum.OK, "success", + searchService.getWidgetData(resourceType)); + } + + + /** + * Saves a batch of events, news or resources. + * + * @param commonWidgetMeta + * read from POST body. + * @return Rest response wrapped around a String; e.g., "success" or "ERROR" + */ + @RequestMapping(value = "/widgetDataBulk", method = RequestMethod.POST, produces = "application/json") + public PortalRestResponse saveWidgetDataBulk(@RequestBody CommonWidgetMeta commonWidgetMeta) { + logger.debug(EELFLoggerDelegate.debugLogger, "saveWidgetDataBulk: argument is {}", commonWidgetMeta); + if (commonWidgetMeta.getCategory() == null || commonWidgetMeta.getCategory().trim().equals("")) + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "ERROR", + "Category cannot be null or empty"); + if (!isValidResourceType(commonWidgetMeta.getCategory())) + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + "Unexpected resource type " + commonWidgetMeta.getCategory(), null); + // validate dates + for (CommonWidget cw : commonWidgetMeta.getItems()) { + String err = validateCommonWidget(cw); + if (err != null) + return new PortalRestResponse(PortalRestStatusEnum.ERROR, err, null); + } + return new PortalRestResponse(PortalRestStatusEnum.OK, "success", + searchService.saveWidgetDataBulk(commonWidgetMeta)); + } + + /** + * Saves one: event, news or resource + * + * @param commonWidget + * read from POST body + * @return Rest response wrapped around a String; e.g., "success" or "ERROR" + */ + @RequestMapping(value = "/widgetData", method = RequestMethod.POST, produces = "application/json") + public PortalRestResponse saveWidgetData(@RequestBody CommonWidget commonWidget) { + logger.debug(EELFLoggerDelegate.debugLogger, "saveWidgetData: argument is {}", commonWidget); + if (commonWidget.getCategory() == null || commonWidget.getCategory().trim().equals("")) + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "ERROR", + "Category cannot be null or empty"); + String err = validateCommonWidget(commonWidget); + if (err != null) + return new PortalRestResponse(PortalRestStatusEnum.ERROR, err, null); + return new PortalRestResponse(PortalRestStatusEnum.OK, "success", + searchService.saveWidgetData(commonWidget)); + } + + /** + * Used by the validate function + */ + private final SimpleDateFormat yearMonthDayFormat = new SimpleDateFormat("yyyy-MM-dd"); + + /** + * Validates the content of a common widget. + * + * @param cw + * @return null on success; an error message if validation fails. + * @throws Exception + */ + private String validateCommonWidget(CommonWidget cw) { + if (!isValidResourceType(cw.getCategory())) + return "Invalid category: " + cw.getCategory(); + if (cw.getTitle() == null || cw.getTitle().trim().length() == 0) + return "Title is missing"; + if (cw.getHref() == null || cw.getHref().trim().length() == 0) + return "HREF is missing"; + if (!cw.getHref().toLowerCase().startsWith("http")) + return "HREF does not start with http"; + if (cw.getSortOrder() == null) + return "Sort order is null"; + if (WidgetCategory.EVENTS.name().equals(cw.getCategory())) { + if (cw.getEventDate() == null || cw.getEventDate().trim().length() == 0) + return "Date is missing"; + try { + yearMonthDayFormat.setLenient(false); + Date date = yearMonthDayFormat.parse(cw.getEventDate()); + if (date == null) + return "Failed to parse date " + cw.getEventDate(); + } catch (ParseException ex) { + return ex.toString(); + } + } + return null; + } + + /** + * Deletes one: event, news or resource + * + * @param commonWidget + * read from POST body + * @return Rest response wrapped around a String; e.g., "success" or "ERROR" + */ + @RequestMapping(value = "/deleteData", method = RequestMethod.POST, produces = "application/json") + public PortalRestResponse deleteWidgetData(@RequestBody CommonWidget commonWidget) { + logger.debug(EELFLoggerDelegate.debugLogger, "deleteWidgetData: argument is {}", commonWidget); + return new PortalRestResponse(PortalRestStatusEnum.OK, "success", + searchService.deleteWidgetData(commonWidget)); + } + + /** + * Searches all portal for the input string. + * + * @param request + * @param searchString + * @return Rest response wrapped around a Map of String to List of Search + * Result Item. + */ + @EPAuditLog + @RequestMapping(value = "/search", method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse>> searchPortal(HttpServletRequest request, + @RequestParam String searchString) { + + if (searchString != null) + searchString = searchString.trim(); + EPUser user = EPUserUtils.getUserSession(request); + try { + if (user == null) { + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, + "searchPortal: User object is null? - check logs", + new HashMap>()); + } else if (searchString == null || searchString.length() == 0) { + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, "searchPortal: String string is null", + new HashMap>()); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "searchPortal: user {}, search string '{}'", + user.getLoginId(), searchString); + Map> results = searchService.searchResults(user.getLoginId(), + searchString); + /*Audit log the search*/ + AuditLog auditLog = new AuditLog(); + auditLog.setUserId(user.getId()); + auditLog.setActivityCode(EcompAuditLog.CD_ACTIVITY_SEARCH); + auditLog.setComments(searchString); + MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + auditService.logActivity(auditLog, null); + MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + EcompPortalUtils.calculateDateTimeDifferenceForLog(MDC.get(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP),MDC.get(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP)); + logger.info(EELFLoggerDelegate.auditLogger, EPLogUtil.formatAuditLogMessage("DashboardController.PortalRestResponse", + EcompAuditLog.CD_ACTIVITY_SEARCH, user.getOrgUserId(), null, searchString)); + MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); + MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); + MDC.remove(SystemProperties.MDC_TIMER); + return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "searchPortal failed", e); + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.getMessage() + " - check logs.", + new HashMap>()); + } + } + + /** + * Gets all active users. + * + * TODO: should only the superuser be allowed to use this API? + * + * @param request + * @return Rest response wrapped around a list of String + */ + @RequestMapping(value = "/activeUsers", method = RequestMethod.GET, produces = "application/json") + public List getActiveUsers(HttpServletRequest request) { + List activeUsers = null; + List onlineUsers = new ArrayList<>(); + try { + EPUser user = EPUserUtils.getUserSession(request); + String userId = user.getOrgUserId(); + + activeUsers = searchService.getRelatedUsers(userId); + HashSet usersSet = CollaborateList.getInstance().getAllUserName(); + for (String users : activeUsers) { + if (usersSet.contains(users)) { + onlineUsers.add(users); + } + } + + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getActiveUsers failed", e); + } + return onlineUsers; + } + + /** + * Gets the refresh interval and duration of a cycle of continuous refreshing for the online users side panel, both in milliseconds. + * + * @param request + * @return Rest response wrapped around a number that is the number of milliseconds. + */ + @RequestMapping(value = "/onlineUserUpdateRate", method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse> getOnlineUserUpdateRate(HttpServletRequest request) { + try { + String updateRate = SystemProperties.getProperty(EPCommonSystemProperties.ONLINE_USER_UPDATE_RATE); + String updateDuration = SystemProperties.getProperty(EPCommonSystemProperties.ONLINE_USER_UPDATE_DURATION); + Integer rateInMiliSec = Integer.valueOf(updateRate)*1000; + Integer durationInMiliSec = Integer.valueOf(updateDuration)*1000; + Map results = new HashMap(); + results.put("onlineUserUpdateRate", String.valueOf(rateInMiliSec)); + results.put("onlineUserUpdateDuration", String.valueOf(durationInMiliSec)); + return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getOnlineUserUpdateRate failed", e); + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); + } + } + + /** + * Gets the window width threshold for collapsing right menu from system.properties. + * + * @param request + * @return Rest response wrapped around a number that is the window width threshold to collapse right menu. + */ + @RequestMapping(value = "/windowWidthThresholdRightMenu", method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse> getWindowWidthThresholdForRightMenu(HttpServletRequest request) { + try { + String windowWidthString = SystemProperties.getProperty(EPCommonSystemProperties.WINDOW_WIDTH_THRESHOLD_RIGHT_MENU); + Integer windowWidth = Integer.valueOf(windowWidthString); + Map results = new HashMap(); + results.put("windowWidth", String.valueOf(windowWidth)); + return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getWindowWidthThresholdForRightMenu failed", e); + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); + } + } + + + /** + * Gets the window width threshold for collapsing left menu from system.properties. + * + * @param request + * @return Rest response wrapped around a number that is the window width threshold to collapse the left menu. + */ + @RequestMapping(value = "/windowWidthThresholdLeftMenu", method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse> getWindowWidthThresholdForLeftMenu(HttpServletRequest request) { + try { + String windowWidthString = SystemProperties.getProperty(EPCommonSystemProperties.WINDOW_WIDTH_THRESHOLD_LEFT_MENU); + Integer windowWidth = Integer.valueOf(windowWidthString); + Map results = new HashMap(); + results.put("windowWidth", String.valueOf(windowWidth)); + return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getWindowWidthThresholdForLeftMenu failed", e); + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); + } + } + + /** + * Gets only those users that are 'related' to the currently logged-in user. + * + * @param request + * @return Rest response wrapped around a List of String + */ + @RequestMapping(value = "/relatedUsers", method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse> activeUsers(HttpServletRequest request) { + EPUser user = EPUserUtils.getUserSession(request); + try { + if (user == null) { + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, "User object is null? - check logs", + new ArrayList<>()); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "activeUsers: searching for user {}", user.getLoginId()); + return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", + searchService.getRelatedUsers(user.getLoginId())); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "activeUsers failed", e); + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.getMessage() + " - check logs.", + new ArrayList<>()); + } + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/ExternalAppsRestfulController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/ExternalAppsRestfulController.java index 41da3357..ac1b9254 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/ExternalAppsRestfulController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/ExternalAppsRestfulController.java @@ -1,206 +1,206 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.io.IOException; -import java.util.ArrayList; -import java.util.Calendar; -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.openecomp.portalapp.controller.EPRestrictedRESTfulBaseController; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EPRole; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.AdminRolesService; -import org.openecomp.portalapp.portal.service.EPLoginService; -import org.openecomp.portalapp.portal.service.EPRoleService; -import org.openecomp.portalapp.portal.service.FunctionalMenuService; -import org.openecomp.portalapp.portal.service.UserNotificationService; -import org.openecomp.portalapp.portal.transport.EpNotificationItem; -import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItemJson; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import org.openecomp.portalapp.portal.utils.PortalConstants; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.onboarding.crossapi.PortalAPIResponse; -import org.slf4j.MDC; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.http.HttpStatus; -import org.springframework.web.bind.annotation.ExceptionHandler; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.ResponseBody; -import org.springframework.web.bind.annotation.RestController; - -import io.swagger.annotations.ApiOperation; - -@RestController -@RequestMapping(PortalConstants.REST_AUX_API) -@Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class ExternalAppsRestfulController extends EPRestrictedRESTfulBaseController { - - private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ExternalAppsRestfulController.class); - - @Autowired - private FunctionalMenuService functionalMenuService; - - @Autowired - private EPLoginService epLoginService; - - @Autowired - private AdminRolesService adminRolesService; - - @Autowired - private UserNotificationService userNotificationService; - - @Autowired - private EPRoleService epRoleService; - - @ApiOperation(value = "Creates a Portal user notification for roles identified in the content from an external application.", response = PortalAPIResponse.class) - @RequestMapping(value = { "/publishNotification" }, method = RequestMethod.POST, produces = "application/json") - @ResponseBody - public PortalAPIResponse publishNotification(HttpServletRequest request, - @RequestBody EpNotificationItem notificationItem) throws Exception { - String appKey = request.getHeader("uebkey"); - EPApp app = findEpApp(appKey); - List postRoleIds = new ArrayList(); - for (Long roleId : notificationItem.getRoleIds()) { - EPRole role = epRoleService.getRole(app.getId(), roleId); - if (role != null) - postRoleIds.add(role.getId()); - } - - // --- recreate the user notification object with the POrtal Role Ids - EpNotificationItem postItem = new EpNotificationItem(); - postItem.setRoleIds(postRoleIds); - postItem.setIsForAllRoles("N"); - postItem.setIsForOnlineUsers("N"); - postItem.setActiveYn("Y"); - postItem.setPriority(notificationItem.getPriority()); - postItem.setMsgHeader(notificationItem.getMsgHeader()); - postItem.setMsgDescription(notificationItem.getMsgDescription()); - postItem.setStartTime(notificationItem.getStartTime()); - postItem.setEndTime(notificationItem.getEndTime()); - postItem.setCreatedDate(Calendar.getInstance().getTime()); - // default creator to 1 for now - postItem.setCreatorId(PortalConstants.DEFAULT_NOTIFICATION_CREATOR); - // ---- - - try { - userNotificationService.saveNotification(postItem); - } catch (Exception e) { - return new PortalAPIResponse(false, e.getMessage()); - } - - PortalAPIResponse response = new PortalAPIResponse(true, "success"); - return response; - } - - private EPApp findEpApp(String uebKey) { - List list = null; - StringBuffer criteria = new StringBuffer(); - criteria.append(" where ueb_key = '" + uebKey + "'"); - list = getDataAccessService().getList(EPApp.class, criteria.toString(), null, null); - return (list == null || list.size() == 0) ? null : (EPApp) list.get(0); - } - - @ApiOperation(value = "Gets favorite items within the functional menu for the current user.", response = FavoritesFunctionalMenuItemJson.class, responseContainer="List") - @RequestMapping(value = { "/getFavorites" }, method = RequestMethod.GET, produces = "application/json") - public List getFavoritesForUser(HttpServletRequest request, - HttpServletResponse response) throws Exception { - String loginId = ""; - String userAgent = ""; - List favorites = null; - - loginId = request.getHeader(EPCommonSystemProperties.MDC_LOGIN_ID); - userAgent = MDC.get(EPCommonSystemProperties.PARTNER_NAME); - - EPUser epUser = epLoginService.findUserWithoutPwd(loginId); - logger.info(EELFLoggerDelegate.errorLogger, - "getFavorites request was received from " + userAgent + " for the user " + loginId + "."); - if (epUser == null || epUser.getId() == null) { - logger.error(EELFLoggerDelegate.errorLogger, - "No User record found for the LoginId '" + loginId + "' in the database."); - throw new Exception("Received null for Login-Id."); - } else { - favorites = functionalMenuService.getFavoriteItems(epUser.getId()); - FieldsValidator fieldsValidator = new FieldsValidator(); - response.setStatus(fieldsValidator.httpStatusCode.intValue()); - - EcompPortalUtils.logAndSerializeObject(logger, "/getFavorites", "result = ", favorites); - } - - return favorites; - } - - @ApiOperation(value = "Gets functional menu items appropriate for the current user.", response = FunctionalMenuItem.class, responseContainer="List") - @RequestMapping(value = { - "/functionalMenuItemsForUser" }, method = RequestMethod.GET, produces = "application/json") - public List getFunctionalMenuItemsForUser(HttpServletRequest request, - HttpServletResponse response) throws Exception { - String loginId = ""; - String userAgent = ""; - List fnMenuItems = null; - - loginId = request.getHeader("LoginId"); - userAgent = MDC.get(EPCommonSystemProperties.PARTNER_NAME); - - EPUser epUser = epLoginService.findUserWithoutPwd(loginId); - logger.info(EELFLoggerDelegate.errorLogger, "getFunctionalMenuItemsForUser request was received from " - + userAgent + " for the user " + loginId + "."); - if (epUser == null || epUser.getId() == null) { - logger.error(EELFLoggerDelegate.errorLogger, - "No User record found for the LoginId '" + loginId + "' in the database."); - throw new Exception("Received null for Login-Id."); - } else if (adminRolesService.isSuperAdmin(epUser)) { - logger.debug(EELFLoggerDelegate.debugLogger, - "FunctionalMenuHandler: SuperUser, about to call getFunctionalMenuItems()"); - fnMenuItems = functionalMenuService.getFunctionalMenuItems(); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, - "getMenuItemsForAuthUser: about to call getFunctionalMenuItemsForUser()"); - fnMenuItems = functionalMenuService.getFunctionalMenuItemsForUser(epUser.getOrgUserId()); - } - - FieldsValidator fieldsValidator = new FieldsValidator(); - response.setStatus(fieldsValidator.httpStatusCode.intValue()); - - EcompPortalUtils.logAndSerializeObject(logger, "/functionalMenuItemsForUser", "result = ", fnMenuItems); - - return fnMenuItems; - } - - @ExceptionHandler(Exception.class) - protected void handleBadRequests(Exception e, HttpServletResponse response) throws IOException { - logger.warn(EELFLoggerDelegate.errorLogger, "Handling bad request", e); - response.sendError(HttpStatus.BAD_REQUEST.value(), e.getMessage()); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.io.IOException; +import java.util.ArrayList; +import java.util.Calendar; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.controller.EPRestrictedRESTfulBaseController; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPRole; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.EPLoginService; +import org.openecomp.portalapp.portal.service.EPRoleService; +import org.openecomp.portalapp.portal.service.FunctionalMenuService; +import org.openecomp.portalapp.portal.service.UserNotificationService; +import org.openecomp.portalapp.portal.transport.EpNotificationItem; +import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItemJson; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.portal.utils.PortalConstants; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.onboarding.crossapi.PortalAPIResponse; +import org.slf4j.MDC; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.http.HttpStatus; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.ResponseBody; +import org.springframework.web.bind.annotation.RestController; + +import io.swagger.annotations.ApiOperation; + +@RestController +@RequestMapping(PortalConstants.REST_AUX_API) +@Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class ExternalAppsRestfulController extends EPRestrictedRESTfulBaseController { + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ExternalAppsRestfulController.class); + + @Autowired + private FunctionalMenuService functionalMenuService; + + @Autowired + private EPLoginService epLoginService; + + @Autowired + private AdminRolesService adminRolesService; + + @Autowired + private UserNotificationService userNotificationService; + + @Autowired + private EPRoleService epRoleService; + + @ApiOperation(value = "Creates a Portal user notification for roles identified in the content from an external application.", response = PortalAPIResponse.class) + @RequestMapping(value = { "/publishNotification" }, method = RequestMethod.POST, produces = "application/json") + @ResponseBody + public PortalAPIResponse publishNotification(HttpServletRequest request, + @RequestBody EpNotificationItem notificationItem) throws Exception { + String appKey = request.getHeader("uebkey"); + EPApp app = findEpApp(appKey); + List postRoleIds = new ArrayList(); + for (Long roleId : notificationItem.getRoleIds()) { + EPRole role = epRoleService.getRole(app.getId(), roleId); + if (role != null) + postRoleIds.add(role.getId()); + } + + // --- recreate the user notification object with the POrtal Role Ids + EpNotificationItem postItem = new EpNotificationItem(); + postItem.setRoleIds(postRoleIds); + postItem.setIsForAllRoles("N"); + postItem.setIsForOnlineUsers("N"); + postItem.setActiveYn("Y"); + postItem.setPriority(notificationItem.getPriority()); + postItem.setMsgHeader(notificationItem.getMsgHeader()); + postItem.setMsgDescription(notificationItem.getMsgDescription()); + postItem.setStartTime(notificationItem.getStartTime()); + postItem.setEndTime(notificationItem.getEndTime()); + postItem.setCreatedDate(Calendar.getInstance().getTime()); + // default creator to 1 for now + postItem.setCreatorId(PortalConstants.DEFAULT_NOTIFICATION_CREATOR); + // ---- + + try { + userNotificationService.saveNotification(postItem); + } catch (Exception e) { + return new PortalAPIResponse(false, e.getMessage()); + } + + PortalAPIResponse response = new PortalAPIResponse(true, "success"); + return response; + } + + private EPApp findEpApp(String uebKey) { + List list = null; + StringBuffer criteria = new StringBuffer(); + criteria.append(" where ueb_key = '" + uebKey + "'"); + list = getDataAccessService().getList(EPApp.class, criteria.toString(), null, null); + return (list == null || list.size() == 0) ? null : (EPApp) list.get(0); + } + + @ApiOperation(value = "Gets favorite items within the functional menu for the current user.", response = FavoritesFunctionalMenuItemJson.class, responseContainer="List") + @RequestMapping(value = { "/getFavorites" }, method = RequestMethod.GET, produces = "application/json") + public List getFavoritesForUser(HttpServletRequest request, + HttpServletResponse response) throws Exception { + String loginId = ""; + String userAgent = ""; + List favorites = null; + + loginId = request.getHeader(EPCommonSystemProperties.MDC_LOGIN_ID); + userAgent = MDC.get(EPCommonSystemProperties.PARTNER_NAME); + + EPUser epUser = epLoginService.findUserWithoutPwd(loginId); + logger.info(EELFLoggerDelegate.errorLogger, + "getFavorites request was received from " + userAgent + " for the user " + loginId + "."); + if (epUser == null || epUser.getId() == null) { + logger.error(EELFLoggerDelegate.errorLogger, + "No User record found for the LoginId '" + loginId + "' in the database."); + throw new Exception("Received null for Login-Id."); + } else { + favorites = functionalMenuService.getFavoriteItems(epUser.getId()); + FieldsValidator fieldsValidator = new FieldsValidator(); + response.setStatus(fieldsValidator.httpStatusCode.intValue()); + + EcompPortalUtils.logAndSerializeObject(logger, "/getFavorites", "result = ", favorites); + } + + return favorites; + } + + @ApiOperation(value = "Gets functional menu items appropriate for the current user.", response = FunctionalMenuItem.class, responseContainer="List") + @RequestMapping(value = { + "/functionalMenuItemsForUser" }, method = RequestMethod.GET, produces = "application/json") + public List getFunctionalMenuItemsForUser(HttpServletRequest request, + HttpServletResponse response) throws Exception { + String loginId = ""; + String userAgent = ""; + List fnMenuItems = null; + + loginId = request.getHeader("LoginId"); + userAgent = MDC.get(EPCommonSystemProperties.PARTNER_NAME); + + EPUser epUser = epLoginService.findUserWithoutPwd(loginId); + logger.info(EELFLoggerDelegate.errorLogger, "getFunctionalMenuItemsForUser request was received from " + + userAgent + " for the user " + loginId + "."); + if (epUser == null || epUser.getId() == null) { + logger.error(EELFLoggerDelegate.errorLogger, + "No User record found for the LoginId '" + loginId + "' in the database."); + throw new Exception("Received null for Login-Id."); + } else if (adminRolesService.isSuperAdmin(epUser)) { + logger.debug(EELFLoggerDelegate.debugLogger, + "FunctionalMenuHandler: SuperUser, about to call getFunctionalMenuItems()"); + fnMenuItems = functionalMenuService.getFunctionalMenuItems(); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, + "getMenuItemsForAuthUser: about to call getFunctionalMenuItemsForUser()"); + fnMenuItems = functionalMenuService.getFunctionalMenuItemsForUser(epUser.getOrgUserId()); + } + + FieldsValidator fieldsValidator = new FieldsValidator(); + response.setStatus(fieldsValidator.httpStatusCode.intValue()); + + EcompPortalUtils.logAndSerializeObject(logger, "/functionalMenuItemsForUser", "result = ", fnMenuItems); + + return fnMenuItems; + } + + @ExceptionHandler(Exception.class) + protected void handleBadRequests(Exception e, HttpServletResponse response) throws IOException { + logger.warn(EELFLoggerDelegate.errorLogger, "Handling bad request", e); + response.sendError(HttpStatus.BAD_REQUEST.value(), e.getMessage()); + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/FunctionalMenuController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/FunctionalMenuController.java index de71766d..490a1829 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/FunctionalMenuController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/FunctionalMenuController.java @@ -1,555 +1,662 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.io.IOException; -import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Collections; -import java.util.Comparator; -import java.util.Date; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.apache.cxf.transport.http.HTTPException; -import org.json.JSONObject; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.UserProfileService; -import org.openecomp.portalapp.controller.EPRestrictedBaseController; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.SharedContext; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.AdminRolesService; -import org.openecomp.portalapp.portal.service.EPAuditService; -import org.openecomp.portalapp.portal.service.FunctionalMenuService; -import org.openecomp.portalapp.portal.service.SearchService; -import org.openecomp.portalapp.portal.service.SharedContextService; -import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; -import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRolesList; -import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItem; -import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItemJson; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; -import org.openecomp.portalapp.portal.transport.FunctionalMenuItemWithRoles; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import org.openecomp.portalapp.util.EPUserUtils; - -/** - * Supports menus at the top of the Portal app landing page. - */ -@RestController -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class FunctionalMenuController extends EPRestrictedBaseController { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FunctionalMenuController.class); - - @Autowired - AdminRolesService adminRolesService; - @Autowired - FunctionalMenuService functionalMenuService; - @Autowired - SharedContextService sharedContextService; - @Autowired - UserProfileService service; - @Autowired - SearchService searchService; - @Autowired - EPAuditService epAuditService; - - /** - * RESTful service method to fetch all the FunctionalMenuItems. - * - * @return List of FunctionalMenuItem objects - */ - @RequestMapping(value = { "/portalApi/functionalMenu" }, method = RequestMethod.GET, produces = "application/json") - public List getMenuItems(HttpServletRequest request, HttpServletResponse response) { - // TODO: should only the superuser be allowed to use this API? - List menuItems = null; - try { - menuItems = functionalMenuService.getFunctionalMenuItems(); - functionalMenuService.assignHelpURLs(menuItems); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenu", "result =", menuItems); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while calling functionalMenu. Details: " + EcompPortalUtils.getStackTrace(e)); - } - return menuItems; - } - - /** - * RESTful service method to fetch all the FunctionalMenuItems, both active - * and inactive, for the EditFunctionalMenu feature. Can only be accessed by - * the portal admin. - * - * @return List of FunctionalMenuItem objects - */ - @RequestMapping(value = { - "/portalApi/functionalMenuForEditing" }, method = RequestMethod.GET, produces = "application/json") - public List getMenuItemsForEditing(HttpServletRequest request, HttpServletResponse response) { - // TODO: should only the superuser be allowed to use this API? - EPUser user = EPUserUtils.getUserSession(request); - List menuItems = null; - try { - if (!adminRolesService.isSuperAdmin(user)) { - EcompPortalUtils.setBadPermissions(user, response, "getFunctionalMenuItemDetails"); - } else { - menuItems = functionalMenuService.getFunctionalMenuItems(true); - } - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForEditing", "result =", menuItems); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while calling functionalMenuForEditing. Details: " - + EcompPortalUtils.getStackTrace(e)); - } - return menuItems; - } - - /** - * RESTful service method to fetch all the FunctionalMenuItems, active - *, for the Functional menu in notification Tree feature. - * - * @return List of FunctionalMenuItem objects - */ - @RequestMapping(value = { - "/portalApi/functionalMenuForNotificationTree" }, method = RequestMethod.GET, produces = "application/json") - public List getMenuItemsForNotifications(HttpServletRequest request, HttpServletResponse response) { - // TODO: should only the superuser be allowed to use this API? - EPUser user = EPUserUtils.getUserSession(request); - List menuItems = null; - try { - menuItems = functionalMenuService.getFunctionalMenuItemsForNotificationTree(true); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForNotificationTree", "result =", menuItems); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while calling functionalMenuForNotifications. Details: " - + EcompPortalUtils.getStackTrace(e)); - } - return menuItems; - } - - /** - * RESTful service method to fetch all FunctionalMenuItems associated with - * an application. - * - * @return List of FunctionalMenuItem objects - */ - @RequestMapping(value = { - "/portalApi/functionalMenuForApp/{appId}" }, method = RequestMethod.GET, produces = "application/json") - public List getMenuItemsForApp(HttpServletRequest request, @PathVariable("appId") Integer appId) - throws HTTPException { - // TODO: should only the superuser be allowed to use this API? - List menuItems = null; - try { - menuItems = functionalMenuService.getFunctionalMenuItemsForApp(appId); - functionalMenuService.assignHelpURLs(menuItems); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForApp/" + appId, "result =", menuItems); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while calling functionalMenuForApp. Details: " - + EcompPortalUtils.getStackTrace(e)); - } - return menuItems; - } - - /** - * RESTful service method to fetch all FunctionalMenuItems associated with - * the applications and roles that a user has access to. - * - * @return List of FunctionalMenuItem objects - */ - @RequestMapping(value = { - "/portalApi/functionalMenuForUser/{orgUserId}" }, method = RequestMethod.GET, produces = "application/json") - public List getMenuItemsForUser(HttpServletRequest request, - @PathVariable("orgUserId") String orgUserId) throws HTTPException { - // TODO: should only the superuser be allowed to use this API? - List menuItems = null; - try { - menuItems = functionalMenuService.getFunctionalMenuItemsForUser(orgUserId); - functionalMenuService.assignHelpURLs(menuItems); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForUser/" + orgUserId, "result =", menuItems); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while calling functionalMenuForUser. Details: " - + EcompPortalUtils.getStackTrace(e)); - } - - return menuItems; - } - - /** - * RESTful service method to fetch all FunctionalMenuItems associated with - * the applications and roles that the authenticated user has access to. - * - * @return List of FunctionalMenuItem objects - */ - @RequestMapping(value = { - "/portalApi/functionalMenuForAuthUser" }, method = RequestMethod.GET, produces = "application/json") - public List getMenuItemsForAuthUser(HttpServletRequest request, HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - List menuItems = null; - try { - if (user == null) { - EcompPortalUtils.setBadPermissions(user, response, "getMenuItemsForAuthUser"); - } else if (adminRolesService.isSuperAdmin(user)) { - menuItems = functionalMenuService.getFunctionalMenuItems(); - } else { - // calculate the menu items - String orgUserId = user.getOrgUserId(); - menuItems = functionalMenuService.getFunctionalMenuItemsForUser(orgUserId); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForUser/" + orgUserId, "result =", - menuItems); - } - functionalMenuService.assignHelpURLs(menuItems); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while calling getMenuItemsForAuthUser. Details: " - + EcompPortalUtils.getStackTrace(e)); - } - return menuItems; - } - - /** - * RESTful service method to fetch the details for a functional menu item. - * Requirement: you must be the Ecomp portal super admin user. - * - * @return FunctionalMenuItem object - */ - @RequestMapping(value = { - "/portalApi/functionalMenuItemDetails/{menuId}" }, method = RequestMethod.GET, produces = "application/json") - public FunctionalMenuItem getFunctionalMenuItemDetails(HttpServletRequest request, - @PathVariable("menuId") Integer menuId, HttpServletResponse response) throws HTTPException { - // TODO: return FunctionalMenuItemJson - // TODO: modify FunctionalMenuItem to not include the transient fields - FunctionalMenuItem menuItem = null; - try { - EPUser user = EPUserUtils.getUserSession(request); - if (!adminRolesService.isSuperAdmin(user)) { - EcompPortalUtils.setBadPermissions(user, response, "getFunctionalMenuItemDetails"); - } else { - menuItem = functionalMenuService.getFunctionalMenuItemDetails(menuId); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuItemDetails/" + menuId, "result =", - menuItem); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while calling functionalMenuItemDetails. Details: " - + EcompPortalUtils.getStackTrace(e)); - } - - return menuItem; - } - - /** - * RESTful service method to create a new menu item. - * - * Requirement: you must be the Ecomp portal super admin user. - */ - @RequestMapping(value = { "/portalApi/functionalMenuItem" }, method = RequestMethod.POST) - public FieldsValidator createFunctionalMenuItem(HttpServletRequest request, - @RequestBody FunctionalMenuItemWithRoles menuItemJson, HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - FieldsValidator fieldsValidator = null; - if (!adminRolesService.isSuperAdmin(user)) { - logger.debug(EELFLoggerDelegate.debugLogger, - "FunctionalMenuController.createFunctionalMenuItem bad permissions"); - EcompPortalUtils.setBadPermissions(user, response, "createFunctionalMenuItem"); - } else { - fieldsValidator = functionalMenuService.createFunctionalMenuItem(menuItemJson); - response.setStatus(fieldsValidator.httpStatusCode.intValue()); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuItem", "POST result =", - response.getStatus()); - } - - return fieldsValidator; - } - - /** - * RESTful service method to update an existing menu item - * - * Requirement: you must be the Ecomp portal super admin user. - * - * @return FieldsValidator - */ - @RequestMapping(value = { "/portalApi/functionalMenuItem" }, method = RequestMethod.PUT) - public FieldsValidator editFunctionalMenuItem(HttpServletRequest request, - @RequestBody FunctionalMenuItemWithRoles menuItemJson, HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - FieldsValidator fieldsValidator = null; - if (!adminRolesService.isSuperAdmin(user)) { - EcompPortalUtils.setBadPermissions(user, response, "editFunctionalMenuItem"); - } else { - fieldsValidator = functionalMenuService.editFunctionalMenuItem(menuItemJson); - response.setStatus(fieldsValidator.httpStatusCode.intValue()); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuItem", "PUT result =", - response.getStatus()); - } - - return fieldsValidator; - } - - /** - * RESTful service method to delete a menu item - * - * @return FieldsValidator - */ - @RequestMapping(value = { "/portalApi/functionalMenuItem/{menuId}" }, method = RequestMethod.DELETE) - public FieldsValidator deleteFunctionalMenuItem(HttpServletRequest request, @PathVariable("menuId") Long menuId, - HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - FieldsValidator fieldsValidator = null; - if (!adminRolesService.isSuperAdmin(user)) { - EcompPortalUtils.setBadPermissions(user, response, "deleteFunctionalMenuItem"); - } else { - fieldsValidator = functionalMenuService.deleteFunctionalMenuItem(menuId); - response.setStatus(fieldsValidator.httpStatusCode.intValue()); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuItem", "DELETE result =", - response.getStatus()); - } - - return fieldsValidator; - } - - /** - * RESTful service to regenerate table - * - * @param request - * @param response - * - * @return FieldsValidator - */ - @RequestMapping(value = { "/portalApi/regenerateFunctionalMenuAncestors" }, method = RequestMethod.GET) - public FieldsValidator regenerateAncestorTable(HttpServletRequest request, HttpServletResponse response) { - // TODO: should only the superuser be allowed to use this API? - EPUser user = EPUserUtils.getUserSession(request); - FieldsValidator fieldsValidator = null; - - if (!adminRolesService.isSuperAdmin(user)) { - EcompPortalUtils.setBadPermissions(user, response, "deleteFunctionalMenuItem"); - } else { - fieldsValidator = functionalMenuService.regenerateAncestorTable(); - response.setStatus(fieldsValidator.httpStatusCode.intValue()); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/regenerateAncestorTable", "GET result =", - response.getStatus()); - } - - return fieldsValidator; - } - - /** - * RESful service to set a favorite item. - * - * @return FieldsValidator - */ - @RequestMapping(value = { "/portalApi/setFavoriteItem" }, method = RequestMethod.POST) - public FieldsValidator addFavoriteItem(HttpServletRequest request, - @RequestBody FavoritesFunctionalMenuItem menuItemJson, HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - FieldsValidator fieldsValidator = null; - menuItemJson.userId = user.getId(); - fieldsValidator = functionalMenuService.setFavoriteItem(menuItemJson); - response.setStatus(fieldsValidator.httpStatusCode.intValue()); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/setFavoriteItem", "Post result =", response.getStatus()); - - return fieldsValidator; - } - - /** - * RESTful service to get favorites for the current user as identified in - * the session - * - * @return List of FavoritesFunctionalMenuItemJson - */ - @RequestMapping(value = { - "/portalApi/getFavoriteItems" }, method = RequestMethod.GET, produces = "application/json") - public List getFavoritesForUser(HttpServletRequest request, - HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - List favorites = functionalMenuService.getFavoriteItems(user.getId()); - FieldsValidator fieldsValidator = new FieldsValidator(); - response.setStatus(fieldsValidator.httpStatusCode.intValue()); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/getFavoriteItems", "GET result =", response.getStatus()); - return favorites; - } - - /** - * RESTful service to delete a favorite menu item for the current user as - * identified in the session. - * - * @return FieldsValidator - */ - @RequestMapping(value = { "/portalApi/removeFavoriteItem/{menuId}" }, method = RequestMethod.DELETE) - public FieldsValidator deleteFavoriteItem(HttpServletRequest request, @PathVariable("menuId") Long menuId, - HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - FieldsValidator fieldsValidator = null; - Long userId = user.getId(); - fieldsValidator = functionalMenuService.removeFavoriteItem(userId, menuId); - response.setStatus(fieldsValidator.httpStatusCode.intValue()); - EcompPortalUtils.logAndSerializeObject(logger, "/deleteFavoriteItem", "DELETE result =", response.getStatus()); - - return fieldsValidator; - } - - /** - * RESTful service to get user information: user's first and last names, ATT - * UID, email and last-login. (Actually has nothing to do with the real - * functional menu.) First attempts to get the information from the Tomcat - * session (i.e., the CSP cookie); if that fails, calls the shared context - * service to read the information from the database. Gives back what it - * found, any of which may be null, as a JSON collection. - * - * @return JSON collection of key-value pairs shown below. - */ - @RequestMapping(value = { - "/portalApi/functionalMenuStaticInfo" }, method = RequestMethod.GET, produces = "application/json") - public String getFunctionalMenuStaticInfo(HttpServletRequest request, HttpServletResponse response) { - - // Get user details from session - logger.debug(EELFLoggerDelegate.debugLogger, "getFunctionalMenuStaticInfo: getting user info"); - String fnMenuStaticResponse = null; - try { - String orgUserIdStr = null, firstNameStr = null, lastNameStr = null, emailStr = null, lastLogin = null; - EPUser user = EPUserUtils.getUserSession(request); - firstNameStr = user.getFirstName(); - lastNameStr = user.getLastName(); - orgUserIdStr = user.getOrgUserId(); - emailStr = user.getEmail(); - if (emailStr == null || emailStr.equals("")) { - EPUser userResult = searchService.searchUserByUserId(orgUserIdStr); - emailStr = userResult.getEmail(); - } - SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy hh:mm:ssZ"); - Date lastLoginDate = user.getLastLoginDate(); - if (lastLoginDate == null) { - // should never happen - logger.error(EELFLoggerDelegate.errorLogger, "getFunctionalMenuStaticInfo: no last login in session"); - lastLogin = "no last login available"; - } - else { - lastLogin = sdf.format(lastLoginDate); - } - - // If any item is missing from session, try the Shared Context - // service. - SharedContext orgUserIdSC = null, firstNameSC = null, lastNameSC = null, emailSC = null; - String sessionId = request.getSession().getId(); - if (firstNameStr == null) - firstNameSC = sharedContextService.getSharedContext(sessionId, EPCommonSystemProperties.USER_FIRST_NAME); - if (lastNameStr == null) - lastNameSC = sharedContextService.getSharedContext(sessionId, EPCommonSystemProperties.USER_LAST_NAME); - if (emailStr == null) - emailSC = sharedContextService.getSharedContext(sessionId, EPCommonSystemProperties.USER_EMAIL); - if (orgUserIdStr == null) - orgUserIdSC = sharedContextService.getSharedContext(sessionId, EPCommonSystemProperties.USER_ORG_USERID); - - // Build the response - Map map = new HashMap(); - map.put("firstName", - firstNameStr != null ? firstNameStr : (firstNameSC != null ? firstNameSC.getCvalue() : null)); - map.put("lastName", - lastNameStr != null ? lastNameStr : (lastNameSC != null ? lastNameSC.getCvalue() : null)); - map.put("email", emailStr != null ? emailStr : (emailSC != null ? emailSC.getCvalue() : null)); - map.put("userId", orgUserIdStr != null ? orgUserIdStr : (orgUserIdSC != null ? orgUserIdSC.getCvalue() : null)); - map.put("last_login", lastLogin); - JSONObject j = new JSONObject(map); - fnMenuStaticResponse = j.toString(); - // Be chatty in the log - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuStaticInfo", "GET result =", - fnMenuStaticResponse); - } catch (Exception e) { - // Should never happen. - logger.error(EELFLoggerDelegate.errorLogger, "getFunctionalMenuStaticInfo failed", e); - // Return a real error? - // fnMenuStaticResponse = "{ \"status\": \"error\", \"message\": \"" - // + e.toString() + "\" }"; - // But the angular controller expects null on error. - } - return fnMenuStaticResponse; - } - - private Comparator getUserAppRolesComparator = new Comparator() { - public int compare(BusinessCardApplicationRole o1, BusinessCardApplicationRole o2) { - return o1.getAppName().compareTo(o2.getAppName()); - } - }; - - @RequestMapping(value = { - "/portalApi/userApplicationRoles" }, method = RequestMethod.GET, produces = "application/json") - public List getAppList(HttpServletRequest request,@RequestParam("userId") String userId) throws IOException { - - - List AppRoles = null; - try { - List userAppRoleList = functionalMenuService.getUserAppRolesList(userId); - - Collections.sort(userAppRoleList, getUserAppRolesComparator); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/userApplicationRoles", "result =", userAppRoleList); - - AppRoles = new ArrayList(); - for(BusinessCardApplicationRole userAppRole: userAppRoleList) - { - boolean found = false; - List roles = null; - - for(BusinessCardApplicationRolesList app :AppRoles) - { - if(app.getAppName().equals(userAppRole.getAppName())) - { - roles= app.getRoleNames(); - roles.add(userAppRole.getRoleName()); - app.setRoleNames(roles); - found = true; - break; - } - } - - if(!found) - { - roles = new ArrayList(); - roles.add(userAppRole.getRoleName()); - AppRoles.add(new BusinessCardApplicationRolesList(userAppRole.getAppName(), roles)); - } - - Collections.sort(roles); - } - } catch (Exception e) { - // TODO Auto-generated catch block - logger.error(EELFLoggerDelegate.errorLogger, "getAppList failed", e); - } - - return AppRoles; - - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.io.IOException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.Date; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.json.JSONObject; +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.SharedContext; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.FunctionalMenuService; +import org.openecomp.portalapp.portal.service.SearchService; +import org.openecomp.portalapp.portal.service.SharedContextService; +import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; +import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRolesList; +import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItem; +import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItemJson; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItemWithRoles; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +/** + * Supports menus at the top of the Portal app landing page. + */ +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class FunctionalMenuController extends EPRestrictedBaseController { + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FunctionalMenuController.class); + + @Autowired + private AdminRolesService adminRolesService; + @Autowired + private FunctionalMenuService functionalMenuService; + @Autowired + private SharedContextService sharedContextService; + @Autowired + private SearchService searchService; + + /** + * RESTful service method to fetch all the FunctionalMenuItems. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return List of FunctionalMenuItem objects + */ + @RequestMapping(value = { "/portalApi/functionalMenu" }, method = RequestMethod.GET, produces = "application/json") + public List getMenuItems(HttpServletRequest request, HttpServletResponse response) { + // TODO: should only the superuser be allowed to use this API? + List menuItems = null; + try { + menuItems = functionalMenuService.getFunctionalMenuItems(); + functionalMenuService.assignHelpURLs(menuItems); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenu", "result =", menuItems); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while calling functionalMenu. Details: " + EcompPortalUtils.getStackTrace(e)); + } + return menuItems; + } + + /** + * RESTful service method to get ECOMP Portal Title. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return PortalRestResponse of ECOMP portal title + */ + @RequestMapping(value = { "/portalApi/ecompTitle" }, method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse getECOMPTitle(HttpServletRequest request, HttpServletResponse response) { + PortalRestResponse portalRestResponse = null; + try { + String ecompTitle = SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME); + portalRestResponse = new PortalRestResponse(PortalRestStatusEnum.OK, "success", ecompTitle); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/ecompTitle", "result =", ecompTitle); + } catch (Exception e) { + portalRestResponse = new PortalRestResponse(PortalRestStatusEnum.ERROR, e.getMessage(), null); + logger.error(EELFLoggerDelegate.errorLogger, "getEcompTitle failed", e); + } + return portalRestResponse; + } + + /** + * RESTful service method to fetch all the FunctionalMenuItems, both active + * and inactive, for the EditFunctionalMenu feature. Can only be accessed by + * the portal admin. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return List of FunctionalMenuItem objects + */ + @RequestMapping(value = { + "/portalApi/functionalMenuForEditing" }, method = RequestMethod.GET, produces = "application/json") + public List getMenuItemsForEditing(HttpServletRequest request, HttpServletResponse response) { + // TODO: should only the superuser be allowed to use this API? + EPUser user = EPUserUtils.getUserSession(request); + List menuItems = null; + try { + if (!adminRolesService.isSuperAdmin(user)) { + EcompPortalUtils.setBadPermissions(user, response, "getFunctionalMenuItemDetails"); + } else { + menuItems = functionalMenuService.getFunctionalMenuItems(true); + } + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForEditing", "result =", + menuItems); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while calling functionalMenuForEditing. Details: " + + EcompPortalUtils.getStackTrace(e)); + } + return menuItems; + } + + /** + * RESTful service method to fetch all the FunctionalMenuItems, active , for + * the Functional menu in notification Tree feature. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return List of FunctionalMenuItem objects + */ + @RequestMapping(value = { + "/portalApi/functionalMenuForNotificationTree" }, method = RequestMethod.GET, produces = "application/json") + public List getMenuItemsForNotifications(HttpServletRequest request, + HttpServletResponse response) { + // TODO: should only the superuser be allowed to use this API? + // EPUser user = EPUserUtils.getUserSession(request); + List menuItems = null; + try { + menuItems = functionalMenuService.getFunctionalMenuItemsForNotificationTree(true); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForNotificationTree", "result =", + menuItems); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while calling functionalMenuForNotifications. Details: " + + EcompPortalUtils.getStackTrace(e)); + } + return menuItems; + } + + /** + * RESTful service method to fetch all FunctionalMenuItems associated with + * an application. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param appId + * application ID + * @return List of FunctionalMenuItem objects + */ + @RequestMapping(value = { + "/portalApi/functionalMenuForApp/{appId}" }, method = RequestMethod.GET, produces = "application/json") + public List getMenuItemsForApp(HttpServletRequest request, + @PathVariable("appId") Integer appId) { + // TODO: should only the superuser be allowed to use this API? + List menuItems = null; + try { + menuItems = functionalMenuService.getFunctionalMenuItemsForApp(appId); + functionalMenuService.assignHelpURLs(menuItems); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForApp/" + appId, "result =", + menuItems); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while calling functionalMenuForApp. Details: " + + EcompPortalUtils.getStackTrace(e)); + } + return menuItems; + } + + /** + * RESTful service method to fetch all FunctionalMenuItems associated with + * the applications and roles that a user has access to. + * + * @param request + * HttpServletRequest + * @param orgUserId + * user ID + * @return List of FunctionalMenuItem objects + */ + @RequestMapping(value = { + "/portalApi/functionalMenuForUser/{orgUserId}" }, method = RequestMethod.GET, produces = "application/json") + public List getMenuItemsForUser(HttpServletRequest request, + @PathVariable("orgUserId") String orgUserId) { + // TODO: should only the superuser be allowed to use this API? + List menuItems = null; + try { + menuItems = functionalMenuService.getFunctionalMenuItemsForUser(orgUserId); + functionalMenuService.assignHelpURLs(menuItems); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForUser/" + orgUserId, "result =", + menuItems); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while calling functionalMenuForUser. Details: " + + EcompPortalUtils.getStackTrace(e)); + } + + return menuItems; + } + + /** + * RESTful service method to fetch all FunctionalMenuItems associated with + * the applications and roles that the authenticated user has access to. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return List of FunctionalMenuItem objects + */ + @RequestMapping(value = { + "/portalApi/functionalMenuForAuthUser" }, method = RequestMethod.GET, produces = "application/json") + public List getMenuItemsForAuthUser(HttpServletRequest request, HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + List menuItems = null; + try { + if (user == null) { + EcompPortalUtils.setBadPermissions(user, response, "getMenuItemsForAuthUser"); + } else if (adminRolesService.isSuperAdmin(user)) { + menuItems = functionalMenuService.getFunctionalMenuItems(); + } else { + // calculate the menu items + String orgUserId = user.getOrgUserId(); + menuItems = functionalMenuService.getFunctionalMenuItemsForUser(orgUserId); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuForUser/" + orgUserId, + "result =", menuItems); + } + functionalMenuService.assignHelpURLs(menuItems); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while calling getMenuItemsForAuthUser. Details: " + + EcompPortalUtils.getStackTrace(e)); + } + return menuItems; + } + + /** + * RESTful service method to fetch the details for a functional menu item. + * Requirement: you must be the Ecomp portal super admin user. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param menuId + * menu ID + * @return FunctionalMenuItem object + */ + @RequestMapping(value = { + "/portalApi/functionalMenuItemDetails/{menuId}" }, method = RequestMethod.GET, produces = "application/json") + public FunctionalMenuItem getFunctionalMenuItemDetails(HttpServletRequest request, + @PathVariable("menuId") Integer menuId, HttpServletResponse response) { + // TODO: return FunctionalMenuItemJson + // TODO: modify FunctionalMenuItem to not include the transient fields + FunctionalMenuItem menuItem = null; + try { + EPUser user = EPUserUtils.getUserSession(request); + if (!adminRolesService.isSuperAdmin(user)) { + EcompPortalUtils.setBadPermissions(user, response, "getFunctionalMenuItemDetails"); + } else { + menuItem = functionalMenuService.getFunctionalMenuItemDetails(menuId); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuItemDetails/" + menuId, + "result =", menuItem); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while calling functionalMenuItemDetails. Details: " + + EcompPortalUtils.getStackTrace(e)); + } + + return menuItem; + } + + /** + * RESTful service method to create a new menu item. + * + * Requirement: you must be the Ecomp portal super admin user. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param menuItemJson + * FunctionalMenuItemWithRoles + * @return FieldsValidator + */ + @RequestMapping(value = { "/portalApi/functionalMenuItem" }, method = RequestMethod.POST) + public FieldsValidator createFunctionalMenuItem(HttpServletRequest request, + @RequestBody FunctionalMenuItemWithRoles menuItemJson, HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + FieldsValidator fieldsValidator = null; + if (!adminRolesService.isSuperAdmin(user)) { + logger.debug(EELFLoggerDelegate.debugLogger, + "FunctionalMenuController.createFunctionalMenuItem bad permissions"); + EcompPortalUtils.setBadPermissions(user, response, "createFunctionalMenuItem"); + } else { + fieldsValidator = functionalMenuService.createFunctionalMenuItem(menuItemJson); + response.setStatus(fieldsValidator.httpStatusCode.intValue()); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuItem", "POST result =", + response.getStatus()); + } + + return fieldsValidator; + } + + /** + * RESTful service method to update an existing menu item + * + * Requirement: you must be the Ecomp portal super admin user. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param menuItemJson + * FunctionalMenuItemWithRoles + * @return FieldsValidator + */ + @RequestMapping(value = { "/portalApi/functionalMenuItem" }, method = RequestMethod.PUT) + public FieldsValidator editFunctionalMenuItem(HttpServletRequest request, + @RequestBody FunctionalMenuItemWithRoles menuItemJson, HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + FieldsValidator fieldsValidator = null; + if (!adminRolesService.isSuperAdmin(user)) { + EcompPortalUtils.setBadPermissions(user, response, "editFunctionalMenuItem"); + } else { + fieldsValidator = functionalMenuService.editFunctionalMenuItem(menuItemJson); + response.setStatus(fieldsValidator.httpStatusCode.intValue()); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuItem", "PUT result =", + response.getStatus()); + } + + return fieldsValidator; + } + + /** + * RESTful service method to delete a menu item + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param menuId + * menu identifier + * @return FieldsValidator + */ + @RequestMapping(value = { "/portalApi/functionalMenuItem/{menuId}" }, method = RequestMethod.DELETE) + public FieldsValidator deleteFunctionalMenuItem(HttpServletRequest request, @PathVariable("menuId") Long menuId, + HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + FieldsValidator fieldsValidator = null; + if (!adminRolesService.isSuperAdmin(user)) { + EcompPortalUtils.setBadPermissions(user, response, "deleteFunctionalMenuItem"); + } else { + fieldsValidator = functionalMenuService.deleteFunctionalMenuItem(menuId); + response.setStatus(fieldsValidator.httpStatusCode.intValue()); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuItem", "DELETE result =", + response.getStatus()); + } + + return fieldsValidator; + } + + /** + * RESTful service to regenerate table + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return FieldsValidator + */ + @RequestMapping(value = { "/portalApi/regenerateFunctionalMenuAncestors" }, method = RequestMethod.GET) + public FieldsValidator regenerateAncestorTable(HttpServletRequest request, HttpServletResponse response) { + // TODO: should only the superuser be allowed to use this API? + EPUser user = EPUserUtils.getUserSession(request); + FieldsValidator fieldsValidator = null; + + if (!adminRolesService.isSuperAdmin(user)) { + EcompPortalUtils.setBadPermissions(user, response, "deleteFunctionalMenuItem"); + } else { + fieldsValidator = functionalMenuService.regenerateAncestorTable(); + response.setStatus(fieldsValidator.httpStatusCode.intValue()); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/regenerateAncestorTable", "GET result =", + response.getStatus()); + } + + return fieldsValidator; + } + + /** + * RESful service to set a favorite item. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param menuItemJson + * FunctionalMenuItemWithRoles + * @return FieldsValidator + */ + @RequestMapping(value = { "/portalApi/setFavoriteItem" }, method = RequestMethod.POST) + public FieldsValidator addFavoriteItem(HttpServletRequest request, + @RequestBody FavoritesFunctionalMenuItem menuItemJson, HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + FieldsValidator fieldsValidator = null; + menuItemJson.userId = user.getId(); + fieldsValidator = functionalMenuService.setFavoriteItem(menuItemJson); + response.setStatus(fieldsValidator.httpStatusCode.intValue()); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/setFavoriteItem", "Post result =", + response.getStatus()); + + return fieldsValidator; + } + + /** + * RESTful service to get favorites for the current user as identified in + * the session + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return List of FavoritesFunctionalMenuItemJson + */ + @RequestMapping(value = { + "/portalApi/getFavoriteItems" }, method = RequestMethod.GET, produces = "application/json") + public List getFavoritesForUser(HttpServletRequest request, + HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + List favorites = functionalMenuService.getFavoriteItems(user.getId()); + FieldsValidator fieldsValidator = new FieldsValidator(); + response.setStatus(fieldsValidator.httpStatusCode.intValue()); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/getFavoriteItems", "GET result =", + response.getStatus()); + return favorites; + } + + /** + * RESTful service to delete a favorite menu item for the current user as + * identified in the session. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param menuId + * menu identifier + * @return FieldsValidator + */ + @RequestMapping(value = { "/portalApi/removeFavoriteItem/{menuId}" }, method = RequestMethod.DELETE) + public FieldsValidator deleteFavoriteItem(HttpServletRequest request, @PathVariable("menuId") Long menuId, + HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + FieldsValidator fieldsValidator = null; + Long userId = user.getId(); + fieldsValidator = functionalMenuService.removeFavoriteItem(userId, menuId); + response.setStatus(fieldsValidator.httpStatusCode.intValue()); + EcompPortalUtils.logAndSerializeObject(logger, "/deleteFavoriteItem", "DELETE result =", response.getStatus()); + + return fieldsValidator; + } + + /** + * RESTful service to get user information: user's first and last names, org + * user ID, email and last-login. (Actually has nothing to do with the real + * functional menu.) First attempts to get the information from the Tomcat + * session (i.e., the CSP cookie); if that fails, calls the shared context + * service to read the information from the database. Gives back what it + * found, any of which may be null, as a JSON collection. + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @return JSON collection of key-value pairs shown below. + */ + @RequestMapping(value = { + "/portalApi/functionalMenuStaticInfo" }, method = RequestMethod.GET, produces = "application/json") + public String getFunctionalMenuStaticInfo(HttpServletRequest request, HttpServletResponse response) { + + // Get user details from session + logger.debug(EELFLoggerDelegate.debugLogger, "getFunctionalMenuStaticInfo: getting user info"); + String fnMenuStaticResponse = null; + try { + String orgUserIdStr = null, firstNameStr = null, lastNameStr = null, emailStr = null, lastLogin = null; + EPUser user = EPUserUtils.getUserSession(request); + firstNameStr = user.getFirstName(); + lastNameStr = user.getLastName(); + orgUserIdStr = user.getOrgUserId(); + emailStr = user.getEmail(); + if (emailStr == null || emailStr.equals("")) { + EPUser userResult = searchService.searchUserByUserId(orgUserIdStr); + emailStr = userResult.getEmail(); + } + SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy hh:mm:ssZ"); + Date lastLoginDate = user.getLastLoginDate(); + if (lastLoginDate == null) { + // should never happen + logger.error(EELFLoggerDelegate.errorLogger, "getFunctionalMenuStaticInfo: no last login in session"); + lastLogin = "no last login available"; + } else { + lastLogin = sdf.format(lastLoginDate); + } + + // If any item is missing from session, try the Shared Context + // service. + SharedContext orgUserIdSC = null, firstNameSC = null, lastNameSC = null, emailSC = null; + String sessionId = request.getSession().getId(); + if (firstNameStr == null) + firstNameSC = sharedContextService.getSharedContext(sessionId, + EPCommonSystemProperties.USER_FIRST_NAME); + if (lastNameStr == null) + lastNameSC = sharedContextService.getSharedContext(sessionId, EPCommonSystemProperties.USER_LAST_NAME); + if (emailStr == null) + emailSC = sharedContextService.getSharedContext(sessionId, EPCommonSystemProperties.USER_EMAIL); + if (orgUserIdStr == null) + orgUserIdSC = sharedContextService.getSharedContext(sessionId, + EPCommonSystemProperties.USER_ORG_USERID); + + // Build the response + Map map = new HashMap(); + map.put("firstName", + firstNameStr != null ? firstNameStr : (firstNameSC != null ? firstNameSC.getCvalue() : null)); + map.put("lastName", + lastNameStr != null ? lastNameStr : (lastNameSC != null ? lastNameSC.getCvalue() : null)); + map.put("email", emailStr != null ? emailStr : (emailSC != null ? emailSC.getCvalue() : null)); + map.put("userId", + orgUserIdStr != null ? orgUserIdStr : (orgUserIdSC != null ? orgUserIdSC.getCvalue() : null)); + map.put("last_login", lastLogin); + JSONObject j = new JSONObject(map); + fnMenuStaticResponse = j.toString(); + // Be chatty in the log + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/functionalMenuStaticInfo", "GET result =", + fnMenuStaticResponse); + } catch (Exception e) { + // Should never happen. + logger.error(EELFLoggerDelegate.errorLogger, "getFunctionalMenuStaticInfo failed", e); + // Return a real error? + // fnMenuStaticResponse = "{ \"status\": \"error\", \"message\": \"" + // + e.toString() + "\" }"; + // But the angular controller expects null on error. + } + return fnMenuStaticResponse; + } + + private Comparator getUserAppRolesComparator = new Comparator() { + public int compare(BusinessCardApplicationRole o1, BusinessCardApplicationRole o2) { + return o1.getAppName().compareTo(o2.getAppName()); + } + }; + + /** + * + * @param request + * HttpServletRequest + * @param userId + * user ID + * @return List + * @throws IOException + * on error + */ + @RequestMapping(value = { + "/portalApi/userApplicationRoles" }, method = RequestMethod.GET, produces = "application/json") + public List getAppList(HttpServletRequest request, + @RequestParam("userId") String userId) throws IOException { + + List AppRoles = null; + try { + List userAppRoleList = functionalMenuService.getUserAppRolesList(userId); + + Collections.sort(userAppRoleList, getUserAppRolesComparator); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/userApplicationRoles", "result =", + userAppRoleList); + + AppRoles = new ArrayList(); + for (BusinessCardApplicationRole userAppRole : userAppRoleList) { + boolean found = false; + List roles = null; + + for (BusinessCardApplicationRolesList app : AppRoles) { + if (app.getAppName().equals(userAppRole.getAppName())) { + roles = app.getRoleNames(); + roles.add(userAppRole.getRoleName()); + app.setRoleNames(roles); + found = true; + break; + } + } + + if (!found) { + roles = new ArrayList(); + roles.add(userAppRole.getRoleName()); + AppRoles.add(new BusinessCardApplicationRolesList(userAppRole.getAppName(), roles)); + } + + Collections.sort(roles); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getAppList failed", e); + } + + return AppRoles; + + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/HealthCheckController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/HealthCheckController.java index 84731af4..ee5e5eea 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/HealthCheckController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/HealthCheckController.java @@ -41,16 +41,17 @@ import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; import org.openecomp.portalapp.portal.utils.EcompPortalUtils; import com.google.gson.Gson; -/* - * This controller checks the health status and returns JSON response. - * It does not require authentication or session. +/** + * This controller processes requests for the health-check feature implemented + * in the HealthMonitor, which runs in its own thread. These requests do not + * require any authentication nor an active user session. */ @RestController @org.springframework.context.annotation.Configuration @EnableAspectJAutoProxy @EPAuditLog public class HealthCheckController extends EPUnRestrictedBaseController { - + private class HealthStatus { public int statusCode; @SuppressWarnings("unused") @@ -96,8 +97,8 @@ public class HealthCheckController extends EPUnRestrictedBaseController { private final String statusDown = "DOWN"; private final String statusOk = "OK"; - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(HealthCheckController.class); - + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(HealthCheckController.class); + @RequestMapping(value = { "/portalApi/healthCheck" }, method = RequestMethod.GET, produces = "application/json") public HealthStatus healthCheck(HttpServletRequest request, HttpServletResponse response) { HealthStatus healthStatus = new HealthStatus(500, ""); @@ -106,7 +107,8 @@ public class HealthCheckController extends EPUnRestrictedBaseController { if (HealthMonitor.isSuspended) { healthStatus.body = "Suspended"; response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - MDC.put(EPCommonSystemProperties.RESPONSE_CODE, Integer.toString(HttpServletResponse.SC_INTERNAL_SERVER_ERROR)); + MDC.put(EPCommonSystemProperties.RESPONSE_CODE, + Integer.toString(HttpServletResponse.SC_INTERNAL_SERVER_ERROR)); return healthStatus; } @@ -142,28 +144,27 @@ public class HealthCheckController extends EPUnRestrictedBaseController { dbInfo.description = "Check the logs for more details"; EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError); } - + if (!HealthMonitor.isClusterStatusOk()) { dbInfo.dbClusterStatus = "Problem, check the logs for more details"; EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError); - } - else { + } else { dbInfo.dbClusterStatus = statusOk; } - + if (!HealthMonitor.isDatabasePermissionsOk()) { dbInfo.dbPermissions = "Problem, check the logs for more details"; EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError); - } - else { + } else { dbInfo.dbPermissions = statusOk; } statusCollection.add(dbInfo); HealthStatusInfo uebInfo = new HealthStatusInfo("UEB"); if (!HealthMonitor.isUebUp()) { - //As per test case review meeting, UEB is considered as critical as DB. Hence commenting - //overallStatus = false; + // As per test case review meeting, UEB is considered as + // critical as DB. Hence commenting + // overallStatus = false; uebInfo.healthCheckStatus = statusDown; uebInfo.description = "Check the logs for more details"; EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebConnectionError); @@ -186,12 +187,13 @@ public class HealthCheckController extends EPUnRestrictedBaseController { } MDC.put(EPCommonSystemProperties.RESPONSE_CODE, Integer.toString(healthStatus.statusCode)); } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing the healthcheck. Details: " - + EcompPortalUtils.getStackTrace(e)); + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while performing the healthcheck. Details: " + + EcompPortalUtils.getStackTrace(e)); } - + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/healthCheck", "GET result =", response.getStatus()); - + return healthStatus; } @@ -202,10 +204,10 @@ public class HealthCheckController extends EPUnRestrictedBaseController { HealthMonitor.isSuspended = true; healthStatus.statusCode = 200; - + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/healthCheckSuspend", "GET result =", - response.getStatus()); - + response.getStatus()); + return healthStatus; } @@ -217,19 +219,15 @@ public class HealthCheckController extends EPUnRestrictedBaseController { HealthMonitor.isSuspended = false; healthStatus.statusCode = 200; EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/healthCheckResume", "GET result =", - response.getStatus()); + response.getStatus()); return healthStatus; } - - - @RequestMapping(value = { - "/portalApi/ping" }, method = RequestMethod.GET, produces = "application/json") + @RequestMapping(value = { "/portalApi/ping" }, method = RequestMethod.GET, produces = "application/json") public HealthStatus ping(HttpServletRequest request, HttpServletResponse response) { - HealthStatus healthStatus = new HealthStatus(200, "OK"); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/ping", "GET result =", - response.getStatus()); - + HealthStatus healthStatus = new HealthStatus(200, "OK"); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/ping", "GET result =", response.getStatus()); + return healthStatus; } } diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/MicroserviceController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/MicroserviceController.java index 82d70ecd..bc21dd98 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/MicroserviceController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/MicroserviceController.java @@ -1,141 +1,139 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.util.ArrayList; -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.openecomp.portalapp.controller.EPRestrictedBaseController; -import org.openecomp.portalapp.portal.domain.MicroserviceData; -import org.openecomp.portalapp.portal.domain.WidgetCatalog; -import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.ConsulHealthService; -import org.openecomp.portalapp.portal.service.MicroserviceService; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.core.ParameterizedTypeReference; -import org.springframework.http.HttpEntity; -import org.springframework.http.HttpMethod; -import org.springframework.http.ResponseEntity; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.web.client.RestClientException; -import org.springframework.web.client.RestTemplate; - -@SuppressWarnings("unchecked") -@RestController -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class MicroserviceController extends EPRestrictedBaseController { - - private static final String HTTPS = "https://"; - - String whatService = "widgets-service"; - RestTemplate template = new RestTemplate(); - - @Autowired - private ConsulHealthService consulHealthService; - - @Autowired - private MicroserviceService microserviceService; - - @RequestMapping(value = { "/portalApi/microservices" }, method = RequestMethod.POST) - public PortalRestResponse createMicroservice(HttpServletRequest request, HttpServletResponse response, - @RequestBody MicroserviceData newServiceData) throws Exception { - if (newServiceData == null) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", - "MicroserviceData cannot be null or empty"); - } - long serviceId = microserviceService.saveMicroservice(newServiceData); - - try { - microserviceService.saveServiceParameters(serviceId, newServiceData.getParameterList()); - } catch (Exception e) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); - } - - return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); - } - - @RequestMapping(value = { "/portalApi/microservices" }, method = RequestMethod.GET) - public List getMicroservice(HttpServletRequest request, HttpServletResponse response) - throws Exception { - List list = microserviceService.getMicroserviceData(); - return list; - } - - @RequestMapping(value = { "/portalApi/microservices/{serviceId}" }, method = RequestMethod.PUT) - public PortalRestResponse updateMicroservice(HttpServletRequest request, HttpServletResponse response, - @PathVariable("serviceId") long serviceId, @RequestBody MicroserviceData newServiceData) throws Exception { - - if (newServiceData == null) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", - "MicroserviceData cannot be null or empty"); - } - try { - microserviceService.updateMicroservice(serviceId, newServiceData); - } catch (Exception e) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); - } - return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); - } - - @RequestMapping(value = { "/portalApi/microservices/{serviceId}" }, method = RequestMethod.DELETE) - public PortalRestResponse deleteMicroservice(HttpServletRequest request, HttpServletResponse response, - @PathVariable("serviceId") long serviceId) throws Exception { - try { - ParameterizedTypeReference> typeRef = new ParameterizedTypeReference>() { - }; - // If this service is assoicated with widgets, cannnot be deleted - ResponseEntity> ans = (ResponseEntity>) template.exchange( - HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/widgetCatalog/service/" + serviceId, - HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), typeRef); - List widgets = ans.getBody(); - if(widgets.size() == 0) - microserviceService.deleteMicroservice(serviceId); - else{ - StringBuilder sb = new StringBuilder(); - for(int i = 0; i < widgets.size(); i++){ - sb.append("'" + widgets.get(i).getName() + "' "); - if(i < (widgets.size()-1)){ - sb.append(","); - } - } - return new PortalRestResponse(PortalRestStatusEnum.WARN, "SOME WIDGETS ASSOICATE WITH THIS SERVICE", sb.toString()); - } - } catch (Exception e) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); - } - return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.MicroserviceData; +import org.openecomp.portalapp.portal.domain.WidgetCatalog; +import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.ConsulHealthService; +import org.openecomp.portalapp.portal.service.MicroserviceService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.core.ParameterizedTypeReference; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpMethod; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.RestTemplate; + +@SuppressWarnings("unchecked") +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class MicroserviceController extends EPRestrictedBaseController { + + private static final String HTTPS = "https://"; + + String whatService = "widgets-service"; + RestTemplate template = new RestTemplate(); + + @Autowired + private ConsulHealthService consulHealthService; + + @Autowired + private MicroserviceService microserviceService; + + @RequestMapping(value = { "/portalApi/microservices" }, method = RequestMethod.POST) + public PortalRestResponse createMicroservice(HttpServletRequest request, HttpServletResponse response, + @RequestBody MicroserviceData newServiceData) throws Exception { + if (newServiceData == null) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", + "MicroserviceData cannot be null or empty"); + } + long serviceId = microserviceService.saveMicroservice(newServiceData); + + try { + microserviceService.saveServiceParameters(serviceId, newServiceData.getParameterList()); + } catch (Exception e) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); + } + + return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); + } + + @RequestMapping(value = { "/portalApi/microservices" }, method = RequestMethod.GET) + public List getMicroservice(HttpServletRequest request, HttpServletResponse response) + throws Exception { + List list = microserviceService.getMicroserviceData(); + return list; + } + + @RequestMapping(value = { "/portalApi/microservices/{serviceId}" }, method = RequestMethod.PUT) + public PortalRestResponse updateMicroservice(HttpServletRequest request, HttpServletResponse response, + @PathVariable("serviceId") long serviceId, @RequestBody MicroserviceData newServiceData) throws Exception { + + if (newServiceData == null) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", + "MicroserviceData cannot be null or empty"); + } + try { + microserviceService.updateMicroservice(serviceId, newServiceData); + } catch (Exception e) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); + } + return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); + } + + @RequestMapping(value = { "/portalApi/microservices/{serviceId}" }, method = RequestMethod.DELETE) + public PortalRestResponse deleteMicroservice(HttpServletRequest request, HttpServletResponse response, + @PathVariable("serviceId") long serviceId) throws Exception { + try { + ParameterizedTypeReference> typeRef = new ParameterizedTypeReference>() { + }; + // If this service is assoicated with widgets, cannnot be deleted + ResponseEntity> ans = (ResponseEntity>) template.exchange( + HTTPS + consulHealthService.getServiceLocation(whatService, SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog/service/" + serviceId, + HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), typeRef); + List widgets = ans.getBody(); + if(widgets.size() == 0) + microserviceService.deleteMicroservice(serviceId); + else{ + StringBuilder sb = new StringBuilder(); + for(int i = 0; i < widgets.size(); i++){ + sb.append("'" + widgets.get(i).getName() + "' "); + if(i < (widgets.size()-1)){ + sb.append(","); + } + } + return new PortalRestResponse(PortalRestStatusEnum.WARN, "SOME WIDGETS ASSOICATE WITH THIS SERVICE", sb.toString()); + } + } catch (Exception e) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); + } + return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/MicroserviceProxyController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/MicroserviceProxyController.java index 6724d4c6..6313822a 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/MicroserviceProxyController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/MicroserviceProxyController.java @@ -1,108 +1,98 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.openecomp.portalapp.controller.EPUnRestrictedBaseController; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.WidgetParameterResult; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.MicroserviceProxyService; -import org.openecomp.portalapp.util.EPUserUtils; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.web.client.HttpClientErrorException; - -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; - -@SuppressWarnings("unchecked") -@RestController -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class MicroserviceProxyController extends EPUnRestrictedBaseController { - - @Autowired - private MicroserviceProxyService microserviceProxyService; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MicroserviceProxyController.class); - - @RequestMapping(value = { "/portalApi/microservice/proxy/{serviceId}" }, method = { - RequestMethod.GET }, produces = "application/json") - public String getMicroserviceProxy(HttpServletRequest request, HttpServletResponse response, - @PathVariable("serviceId") long serviceId) throws Exception { - EPUser user = EPUserUtils.getUserSession(request); - String answer = ""; - try{ - answer = microserviceProxyService.proxyToDestination(serviceId, user, request); - }catch(HttpClientErrorException e){ - //Check whether the error message is valid JSON format - boolean valid = true; - ObjectMapper objectMapper = new ObjectMapper(); - try{ - objectMapper.readTree(e.getResponseBodyAsString()); - } catch(JsonProcessingException exception){ - valid = false; - } - if(valid) - return e.getResponseBodyAsString(); - else - return "{\"error\":\""+ e.getResponseBodyAsString() +"\"}"; - } - return answer; - } - - @RequestMapping(value = { "/portalApi/microservice/proxy/parameter/{widgetId}" }, method = { - RequestMethod.GET }, produces = "application/json") - public String getMicroserviceProxyByWidgetId(HttpServletRequest request, HttpServletResponse response, - @PathVariable("widgetId") long widgetId) throws Exception { - EPUser user = EPUserUtils.getUserSession(request); - String answer = ""; - try{ - answer = microserviceProxyService.proxyToDestinationByWidgetId(widgetId, user, request); - }catch(HttpClientErrorException e){ - //Check whether the error message is valid JSON format - boolean valid = true; - ObjectMapper objectMapper = new ObjectMapper(); - try{ - objectMapper.readTree(e.getResponseBodyAsString()); - } catch(JsonProcessingException exception){ - valid = false; - } - if(valid) - return e.getResponseBodyAsString(); - else - return "{\"error\":\""+ e.getResponseBodyAsString() +"\"}"; - } - return answer; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.io.IOException; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.controller.EPUnRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.MicroserviceProxyService; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.HttpClientErrorException; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; + +@SuppressWarnings("unchecked") +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class MicroserviceProxyController extends EPUnRestrictedBaseController { + + @Autowired + private MicroserviceProxyService microserviceProxyService; + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MicroserviceProxyController.class); + + @RequestMapping(value = { "/portalApi/microservice/proxy/{serviceId}" }, method = { + RequestMethod.GET }, produces = "application/json") + public String getMicroserviceProxy(HttpServletRequest request, HttpServletResponse response, + @PathVariable("serviceId") long serviceId) throws Exception { + EPUser user = EPUserUtils.getUserSession(request); + String answer = ""; + try { + answer = microserviceProxyService.proxyToDestination(serviceId, user, request); + } catch (HttpClientErrorException e) { + answer = e.getResponseBodyAsString(); + } + return isValidJSON(answer) ? answer : "{\"error\":\"" + answer.replace(System.getProperty("line.separator"), "") + "\"}"; + } + + @RequestMapping(value = { "/portalApi/microservice/proxy/parameter/{widgetId}" }, method = { + RequestMethod.GET }, produces = "application/json") + public String getMicroserviceProxyByWidgetId(HttpServletRequest request, HttpServletResponse response, + @PathVariable("widgetId") long widgetId) throws Exception { + EPUser user = EPUserUtils.getUserSession(request); + String answer = ""; + try { + answer = microserviceProxyService.proxyToDestinationByWidgetId(widgetId, user, request); + } catch (HttpClientErrorException e) { + answer = e.getResponseBodyAsString(); + } + return isValidJSON(answer) ? answer : "{\"error\":\"" + answer.replace(System.getProperty("line.separator"), "") + "\"}"; + } + + /** + * Check whether the response is a valid JSON + * @param response + * @return true if the response is valid JSON, otherwise, false + */ + private boolean isValidJSON(String response) { + try { + final ObjectMapper mapper = new ObjectMapper(); + mapper.readTree(response); + return true; + } catch (IOException e) { + return false; + } + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/PortalAdminController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/PortalAdminController.java index 2499ec66..b98a7cb4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/PortalAdminController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/PortalAdminController.java @@ -1,200 +1,209 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.util.List; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.slf4j.MDC; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import org.openecomp.portalsdk.core.domain.AuditLog; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.AuditService; -import org.openecomp.portalapp.controller.EPRestrictedBaseController; -import org.openecomp.portalapp.portal.domain.EPRole; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EcompAuditLog; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.logging.aop.EPEELFLoggerAdvice; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.service.AdminRolesService; -import org.openecomp.portalapp.portal.service.PortalAdminService; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.PortalAdmin; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import org.openecomp.portalapp.util.EPUserUtils; - -@RestController -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class PortalAdminController extends EPRestrictedBaseController { - @Autowired - PortalAdminService portalAdminService; - @Autowired - AdminRolesService adminRolesService; - @Autowired - AuditService auditService; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PortalAdminController.class); - - @RequestMapping(value = { "/portalApi/portalAdmins" }, method = RequestMethod.GET, produces = "application/json") - public List getPortalAdmins(HttpServletRequest request, HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - List portalAdmins = null; - if (user == null) { - logger.debug(EELFLoggerDelegate.debugLogger, "PortalAdminController.getPortalAdmins, null user"); - EcompPortalUtils.setBadPermissions(user, response, "getPortalAdmins"); - } else if (!adminRolesService.isSuperAdmin(user)) { - logger.debug(EELFLoggerDelegate.debugLogger, "PortalAdminController.getPortalAdmins, bad permissions"); - EcompPortalUtils.setBadPermissions(user, response, "createPortalAdmin"); - } else { - // return the list of portal admins - portalAdmins = portalAdminService.getPortalAdmins(); - logger.debug(EELFLoggerDelegate.debugLogger, "portalAdmins: called getPortalAdmins()"); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/getPortalAdmins", "result =", portalAdmins); - } - - return portalAdmins; - } - - /** - * RESTful service method to create a new portal admin. Requirement: you - * must be the Ecomp portal super admin user. - */ - - @RequestMapping(value = { "/portalApi/portalAdmin" }, method = RequestMethod.POST) - public FieldsValidator createPortalAdmin(HttpServletRequest request, @RequestBody String sbcid, - HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - FieldsValidator fieldsValidator = null; - if (user == null) { - logger.debug(EELFLoggerDelegate.debugLogger, "PortalAdminController.createPortalAdmin, null user"); - EcompPortalUtils.setBadPermissions(user, response, "createPortalAdmin"); - } else if (!adminRolesService.isSuperAdmin(user)) { - logger.debug(EELFLoggerDelegate.debugLogger, "PortalAdminController.createPortalAdmin bad permissions"); - EcompPortalUtils.setBadPermissions(user, response, "createPortalAdmin"); - } else { - fieldsValidator = portalAdminService.createPortalAdmin(sbcid); - int statusCode = fieldsValidator.httpStatusCode.intValue(); - response.setStatus(statusCode); - if (statusCode == 200) { - AuditLog auditLog = new AuditLog(); - auditLog.setUserId(user.getId()); - auditLog.setActivityCode(EcompAuditLog.CD_ACTIVITY_ADD_PORTAL_ADMIN); - auditLog.setAffectedRecordId(sbcid); - auditService.logActivity(auditLog, null); - - MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - logger.info(EELFLoggerDelegate.auditLogger, - EPLogUtil.formatAuditLogMessage("PortalAdminController.createPortalAdmin", - EcompAuditLog.CD_ACTIVITY_ADD_PORTAL_ADMIN, user.getOrgUserId(), sbcid, - "A new Portal Admin has been added")); - MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); - MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); - } - } - EcompPortalUtils.logAndSerializeObject(logger, "/portalAdmin", "POST result =", response.getStatus()); - - return fieldsValidator; - } - - @RequestMapping(value = { "/portalApi/portalAdmin/{userInfo}" }, method = RequestMethod.DELETE) - public FieldsValidator deletePortalAdmin(HttpServletRequest request, @PathVariable("userInfo") String userInfo, - HttpServletResponse response) { - int userIdIdx = userInfo.indexOf("-"); - Long userId = null; - String sbcid = null; - FieldsValidator fieldsValidator = null; - try{ - if(userIdIdx==-1){ - logger.error(EELFLoggerDelegate.errorLogger,"deletePortalAdmin missing userId"); - return fieldsValidator; - }else{ - String userIdStr = userInfo.substring(0, userIdIdx); - userId = Long.valueOf(userIdStr); - sbcid = userInfo.substring(userIdIdx+1, userInfo.length()); - } - }catch(Exception e){ - logger.error(EELFLoggerDelegate.errorLogger,"deletePortalAdmin error while parsing the userInfo",e); - } - EPUser user = EPUserUtils.getUserSession(request); - if (!adminRolesService.isSuperAdmin(user)) { - EcompPortalUtils.setBadPermissions(user, response, "deletePortalAdmin"); - } else { - fieldsValidator = portalAdminService.deletePortalAdmin(userId); - int statusCode = fieldsValidator.httpStatusCode.intValue(); - response.setStatus(statusCode); - if (statusCode == 200) { - AuditLog auditLog = new AuditLog(); - auditLog.setUserId(user.getId()); - auditLog.setActivityCode(EcompAuditLog.CD_ACTIVITY_DELETE_PORTAL_ADMIN); - auditLog.setAffectedRecordId(sbcid); - auditService.logActivity(auditLog, null); - - MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - logger.info(EELFLoggerDelegate.auditLogger, - EPLogUtil.formatAuditLogMessage("PortalAdminController.deletePortalAdmin", - EcompAuditLog.CD_ACTIVITY_DELETE_PORTAL_ADMIN, user.getOrgUserId(), sbcid, - "A Portal Admin has been deleted")); - MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); - MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); - } - } - EcompPortalUtils.logAndSerializeObject(logger, "/portalAdmin", "DELETE result =", response.getStatus()); - - return fieldsValidator; - } - - @RequestMapping(value = { - "/portalApi/adminAppsRoles/{appId}" }, method = RequestMethod.GET, produces = "application/json") - public List getRolesByApp(HttpServletRequest request, @PathVariable("appId") Long appId, - HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - List rolesByApp = null; - - try { - if (user == null) { - EcompPortalUtils.setBadPermissions(user, response, "getUserApps"); - } else { - rolesByApp = adminRolesService.getRolesByApp(user, appId); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while performing getRolesByApp operation, Details: " - + EcompPortalUtils.getStackTrace(e)); - } - - return rolesByApp; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.slf4j.MDC; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import org.openecomp.portalsdk.core.domain.AuditLog; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.AuditService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.EPRole; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EcompAuditLog; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.logging.aop.EPEELFLoggerAdvice; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.service.AdminRolesService; +import org.openecomp.portalapp.portal.service.PortalAdminService; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.PortalAdmin; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.util.EPUserUtils; + +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class PortalAdminController extends EPRestrictedBaseController { + @Autowired + PortalAdminService portalAdminService; + @Autowired + AdminRolesService adminRolesService; + @Autowired + AuditService auditService; + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PortalAdminController.class); + + @RequestMapping(value = { "/portalApi/portalAdmins" }, method = RequestMethod.GET, produces = "application/json") + public List getPortalAdmins(HttpServletRequest request, HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + List portalAdmins = null; + if (user == null) { + logger.debug(EELFLoggerDelegate.debugLogger, "PortalAdminController.getPortalAdmins, null user"); + EcompPortalUtils.setBadPermissions(user, response, "getPortalAdmins"); + } else if (!adminRolesService.isSuperAdmin(user)) { + logger.debug(EELFLoggerDelegate.debugLogger, "PortalAdminController.getPortalAdmins, bad permissions"); + EcompPortalUtils.setBadPermissions(user, response, "createPortalAdmin"); + } else { + // return the list of portal admins + portalAdmins = portalAdminService.getPortalAdmins(); + logger.debug(EELFLoggerDelegate.debugLogger, "portalAdmins: called getPortalAdmins()"); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/getPortalAdmins", "result =", portalAdmins); + } + + return portalAdmins; + } + + /** + * RESTful service method to create a new portal admin. Requirement: you + * must be the Ecomp portal super admin user. + */ + + @RequestMapping(value = { "/portalApi/portalAdmin" }, method = RequestMethod.POST) + public FieldsValidator createPortalAdmin(HttpServletRequest request, @RequestBody String userId, + HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + FieldsValidator fieldsValidator = null; + if (user == null) { + logger.debug(EELFLoggerDelegate.debugLogger, "PortalAdminController.createPortalAdmin, null user"); + EcompPortalUtils.setBadPermissions(user, response, "createPortalAdmin"); + } else if (!adminRolesService.isSuperAdmin(user)) { + logger.debug(EELFLoggerDelegate.debugLogger, "PortalAdminController.createPortalAdmin bad permissions"); + EcompPortalUtils.setBadPermissions(user, response, "createPortalAdmin"); + } else { + fieldsValidator = portalAdminService.createPortalAdmin(userId); + int statusCode = fieldsValidator.httpStatusCode.intValue(); + response.setStatus(statusCode); + if (statusCode == 200) { + AuditLog auditLog = new AuditLog(); + auditLog.setUserId(user.getId()); + auditLog.setActivityCode(EcompAuditLog.CD_ACTIVITY_ADD_PORTAL_ADMIN); + auditLog.setAffectedRecordId(userId); + auditService.logActivity(auditLog, null); + + MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + EcompPortalUtils.calculateDateTimeDifferenceForLog( + MDC.get(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP), + MDC.get(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP)); + logger.info(EELFLoggerDelegate.auditLogger, + EPLogUtil.formatAuditLogMessage("PortalAdminController.createPortalAdmin", + EcompAuditLog.CD_ACTIVITY_ADD_PORTAL_ADMIN, user.getOrgUserId(), userId, + "A new Portal Admin has been added")); + MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); + MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); + MDC.remove(SystemProperties.MDC_TIMER); + } + } + EcompPortalUtils.logAndSerializeObject(logger, "/portalAdmin", "POST result =", response.getStatus()); + + return fieldsValidator; + } + + @RequestMapping(value = { "/portalApi/portalAdmin/{userInfo}" }, method = RequestMethod.DELETE) + public FieldsValidator deletePortalAdmin(HttpServletRequest request, @PathVariable("userInfo") String userInfo, + HttpServletResponse response) { + int userIdIdx = userInfo.indexOf("-"); + Long userId = null; + String sbcid = null; + FieldsValidator fieldsValidator = null; + try { + if (userIdIdx == -1) { + logger.error(EELFLoggerDelegate.errorLogger, "deletePortalAdmin missing userId"); + return fieldsValidator; + } else { + String userIdStr = userInfo.substring(0, userIdIdx); + userId = Long.valueOf(userIdStr); + sbcid = userInfo.substring(userIdIdx + 1, userInfo.length()); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "deletePortalAdmin error while parsing the userInfo", e); + } + EPUser user = EPUserUtils.getUserSession(request); + if (!adminRolesService.isSuperAdmin(user)) { + EcompPortalUtils.setBadPermissions(user, response, "deletePortalAdmin"); + } else { + fieldsValidator = portalAdminService.deletePortalAdmin(userId); + int statusCode = fieldsValidator.httpStatusCode.intValue(); + response.setStatus(statusCode); + if (statusCode == 200) { + AuditLog auditLog = new AuditLog(); + auditLog.setUserId(user.getId()); + auditLog.setActivityCode(EcompAuditLog.CD_ACTIVITY_DELETE_PORTAL_ADMIN); + auditLog.setAffectedRecordId(sbcid); + auditService.logActivity(auditLog, null); + + MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + EcompPortalUtils.calculateDateTimeDifferenceForLog( + MDC.get(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP), + MDC.get(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP)); + logger.info(EELFLoggerDelegate.auditLogger, + EPLogUtil.formatAuditLogMessage("PortalAdminController.deletePortalAdmin", + EcompAuditLog.CD_ACTIVITY_DELETE_PORTAL_ADMIN, user.getOrgUserId(), sbcid, + "A Portal Admin has been deleted")); + MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); + MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); + MDC.remove(SystemProperties.MDC_TIMER); + } + } + EcompPortalUtils.logAndSerializeObject(logger, "/portalAdmin", "DELETE result =", response.getStatus()); + + return fieldsValidator; + } + + @RequestMapping(value = { + "/portalApi/adminAppsRoles/{appId}" }, method = RequestMethod.GET, produces = "application/json") + public List getRolesByApp(HttpServletRequest request, @PathVariable("appId") Long appId, + HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + List rolesByApp = null; + + try { + if (user == null) { + EcompPortalUtils.setBadPermissions(user, response, "getUserApps"); + } else { + rolesByApp = adminRolesService.getRolesByApp(user, appId); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while performing getRolesByApp operation, Details: " + + EcompPortalUtils.getStackTrace(e)); + } + + return rolesByApp; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/RoleManageController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/RoleManageController.java index d567269f..2d0fe279 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/RoleManageController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/RoleManageController.java @@ -1,166 +1,166 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.openecomp.portalapp.controller.EPRestrictedBaseController; -import org.openecomp.portalapp.controller.core.RoleController; -import org.openecomp.portalapp.controller.core.RoleFunctionListController; -import org.openecomp.portalapp.controller.core.RoleListController; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.web.servlet.ModelAndView; - -/** - * Proxies REST calls to role-management functions that arrive on paths - * /portalApi/* over to controller methods provided by the SDK-Core library. - * Those controller methods are mounted on paths not exposed by the Portal FE. - */ -@RestController -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class RoleManageController extends EPRestrictedBaseController { - - @Autowired - private RoleController roleController; - - @Autowired - private RoleListController roleListController; - - @Autowired - private RoleFunctionListController roleFunctionListController; - - /** - * Calls an SDK-Core library method that gets the available roles and writes - * them to the request object. Portal specifies a Hibernate mappings from - * the Role class to the fn_role_v view, which ensures that only Portal - * (app_id is null) roles are fetched. - * - * Any method declared void (no return value) or returning null causes the - * audit log aspect method to declare failure. TODO: should return a JSON - * string. - * - * @param request - * @param response - */ - @RequestMapping(value = { "/portalApi/get_roles" }, method = RequestMethod.GET) - public void getRoles(HttpServletRequest request, HttpServletResponse response) { - getRoleListController().getRoles(request, response); - } - - @RequestMapping(value = { "/portalApi/role_list/toggleRole" }, method = RequestMethod.POST) - public PortalRestResponse toggleRole(HttpServletRequest request, HttpServletResponse response) { - PortalRestResponse portalRestResponse = null; - try{ - getRoleListController().toggleRole(request, response); - portalRestResponse = new PortalRestResponse(PortalRestStatusEnum.OK, "success", null); - }catch (Exception e) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "failure", e.getMessage()); - } - return portalRestResponse; - } - - @RequestMapping(value = { "/portalApi/role_list/removeRole" }, method = RequestMethod.POST) - public ModelAndView removeRole(HttpServletRequest request, HttpServletResponse response) throws Exception { - return getRoleListController().removeRole(request, response); - } - - @RequestMapping(value = { "/portalApi/role/saveRole" }, method = RequestMethod.POST) - public ModelAndView saveRole(HttpServletRequest request, HttpServletResponse response) throws Exception { - return getRoleController().saveRole(request, response); - } - - @RequestMapping(value = { "/portalApi/role/removeRoleFunction" }, method = RequestMethod.POST) - public ModelAndView removeRoleRoleFunction(HttpServletRequest request, HttpServletResponse response) - throws Exception { - return getRoleController().removeRoleFunction(request, response); - } - - @RequestMapping(value = { "/portalApi/role/addRoleFunction" }, method = RequestMethod.POST) - public ModelAndView addRoleRoRoleFunction(HttpServletRequest request, HttpServletResponse response) - throws Exception { - return getRoleController().addRoleFunction(request, response); - } - - @RequestMapping(value = { "/portalApi/role/removeChildRole" }, method = RequestMethod.POST) - public ModelAndView removeChildRole(HttpServletRequest request, HttpServletResponse response) throws Exception { - return getRoleController().removeChildRole(request, response); - } - - @RequestMapping(value = { "/portalApi/role/addChildRole" }, method = RequestMethod.POST) - public ModelAndView addChildRole(HttpServletRequest request, HttpServletResponse response) throws Exception { - return getRoleController().addChildRole(request, response); - } - - @RequestMapping(value = { "/portalApi/get_role" }, method = RequestMethod.GET) - public void getRole(HttpServletRequest request, HttpServletResponse response) { - getRoleController().getRole(request, response); - } - - @RequestMapping(value = { "/portalApi/get_role_functions" }, method = RequestMethod.GET) - public void getRoleFunctionList(HttpServletRequest request, HttpServletResponse response) { - getRoleFunctionListController().getRoleFunctionList(request, response); - } - - @RequestMapping(value = { "/portalApi/role_function_list/saveRoleFunction" }, method = RequestMethod.POST) - public void saveRoleFunction(HttpServletRequest request, HttpServletResponse response, @RequestBody String roleFunc) throws Exception { - getRoleFunctionListController().saveRoleFunction(request, response, roleFunc); - } - - @RequestMapping(value = { "/portalApi/role_function_list/removeRoleFunction" }, method = RequestMethod.POST) - public void removeRoleFunction(HttpServletRequest request, HttpServletResponse response, @RequestBody String roleFunc) throws Exception { - getRoleFunctionListController().removeRoleFunction(request, response, roleFunc); - } - - public RoleListController getRoleListController() { - return roleListController; - } - - public void setRoleListController(RoleListController roleListController) { - this.roleListController = roleListController; - } - - public RoleController getRoleController() { - return roleController; - } - - public void setRoleController(RoleController roleController) { - this.roleController = roleController; - } - - public RoleFunctionListController getRoleFunctionListController() { - return roleFunctionListController; - } - - public void setRoleFunctionListController(RoleFunctionListController roleFunctionListController) { - this.roleFunctionListController = roleFunctionListController; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.controller.core.RoleController; +import org.openecomp.portalapp.controller.core.RoleFunctionListController; +import org.openecomp.portalapp.controller.core.RoleListController; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.servlet.ModelAndView; + +/** + * Proxies REST calls to role-management functions that arrive on paths + * /portalApi/* over to controller methods provided by the SDK-Core library. + * Those controller methods are mounted on paths not exposed by the Portal FE. + */ +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class RoleManageController extends EPRestrictedBaseController { + + @Autowired + private RoleController roleController; + + @Autowired + private RoleListController roleListController; + + @Autowired + private RoleFunctionListController roleFunctionListController; + + /** + * Calls an SDK-Core library method that gets the available roles and writes + * them to the request object. Portal specifies a Hibernate mappings from + * the Role class to the fn_role_v view, which ensures that only Portal + * (app_id is null) roles are fetched. + * + * Any method declared void (no return value) or returning null causes the + * audit log aspect method to declare failure. TODO: should return a JSON + * string. + * + * @param request + * @param response + */ + @RequestMapping(value = { "/portalApi/get_roles" }, method = RequestMethod.GET) + public void getRoles(HttpServletRequest request, HttpServletResponse response) { + getRoleListController().getRoles(request, response); + } + + @RequestMapping(value = { "/portalApi/role_list/toggleRole" }, method = RequestMethod.POST) + public PortalRestResponse toggleRole(HttpServletRequest request, HttpServletResponse response) { + PortalRestResponse portalRestResponse = null; + try{ + getRoleListController().toggleRole(request, response); + portalRestResponse = new PortalRestResponse(PortalRestStatusEnum.OK, "success", null); + }catch (Exception e) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "failure", e.getMessage()); + } + return portalRestResponse; + } + + @RequestMapping(value = { "/portalApi/role_list/removeRole" }, method = RequestMethod.POST) + public ModelAndView removeRole(HttpServletRequest request, HttpServletResponse response) throws Exception { + return getRoleListController().removeRole(request, response); + } + + @RequestMapping(value = { "/portalApi/role/saveRole" }, method = RequestMethod.POST) + public ModelAndView saveRole(HttpServletRequest request, HttpServletResponse response) throws Exception { + return getRoleController().saveRole(request, response); + } + + @RequestMapping(value = { "/portalApi/role/removeRoleFunction" }, method = RequestMethod.POST) + public ModelAndView removeRoleRoleFunction(HttpServletRequest request, HttpServletResponse response) + throws Exception { + return getRoleController().removeRoleFunction(request, response); + } + + @RequestMapping(value = { "/portalApi/role/addRoleFunction" }, method = RequestMethod.POST) + public ModelAndView addRoleRoRoleFunction(HttpServletRequest request, HttpServletResponse response) + throws Exception { + return getRoleController().addRoleFunction(request, response); + } + + @RequestMapping(value = { "/portalApi/role/removeChildRole" }, method = RequestMethod.POST) + public ModelAndView removeChildRole(HttpServletRequest request, HttpServletResponse response) throws Exception { + return getRoleController().removeChildRole(request, response); + } + + @RequestMapping(value = { "/portalApi/role/addChildRole" }, method = RequestMethod.POST) + public ModelAndView addChildRole(HttpServletRequest request, HttpServletResponse response) throws Exception { + return getRoleController().addChildRole(request, response); + } + + @RequestMapping(value = { "/portalApi/get_role" }, method = RequestMethod.GET) + public void getRole(HttpServletRequest request, HttpServletResponse response) { + getRoleController().getRole(request, response); + } + + @RequestMapping(value = { "/portalApi/get_role_functions" }, method = RequestMethod.GET) + public void getRoleFunctionList(HttpServletRequest request, HttpServletResponse response) { + getRoleFunctionListController().getRoleFunctionList(request, response); + } + + @RequestMapping(value = { "/portalApi/role_function_list/saveRoleFunction" }, method = RequestMethod.POST) + public void saveRoleFunction(HttpServletRequest request, HttpServletResponse response, @RequestBody String roleFunc) throws Exception { + getRoleFunctionListController().saveRoleFunction(request, response, roleFunc); + } + + @RequestMapping(value = { "/portalApi/role_function_list/removeRoleFunction" }, method = RequestMethod.POST) + public void removeRoleFunction(HttpServletRequest request, HttpServletResponse response, @RequestBody String roleFunc) throws Exception { + getRoleFunctionListController().removeRoleFunction(request, response, roleFunc); + } + + public RoleListController getRoleListController() { + return roleListController; + } + + public void setRoleListController(RoleListController roleListController) { + this.roleListController = roleListController; + } + + public RoleController getRoleController() { + return roleController; + } + + public void setRoleController(RoleController roleController) { + this.roleController = roleController; + } + + public RoleFunctionListController getRoleFunctionListController() { + return roleFunctionListController; + } + + public void setRoleFunctionListController(RoleFunctionListController roleFunctionListController) { + this.roleFunctionListController = roleFunctionListController; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/externalsystemapproval/controller/RolesApprovalSystemController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/RolesApprovalSystemController.java similarity index 52% rename from ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/externalsystemapproval/controller/RolesApprovalSystemController.java rename to ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/RolesApprovalSystemController.java index e0fa523a..c150528e 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/externalsystemapproval/controller/RolesApprovalSystemController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/RolesApprovalSystemController.java @@ -1,143 +1,199 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.externalsystemapproval.controller; - -import java.util.ArrayList; - -import javax.servlet.http.HttpServletRequest; - -import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemRoleApproval; -import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemUser; -import org.openecomp.portalapp.portal.controller.BasicAuthenticationController; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.UserRolesService; -import org.openecomp.portalapp.portal.utils.PortalConstants; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import io.swagger.annotations.ApiOperation; - -@RestController -@RequestMapping(PortalConstants.REST_AUX_API) -@Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class RolesApprovalSystemController implements BasicAuthenticationController { - - private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(RolesApprovalSystemController.class); - - @Autowired - private UserRolesService userRolesService; - - /** - * Creates an application user with the specified roles. - * - * @param request - * @param extSysUser - * @return PortalRestResponse with appropriate status value and message - */ - @ApiOperation(value = "Creates an application user with the specified roles.", response = PortalRestResponse.class) - @RequestMapping(value = { "/userProfile" }, method = RequestMethod.POST, produces = "application/json") - public PortalRestResponse postUserProfile(HttpServletRequest request, - @RequestBody ExternalSystemUser extSysUser) { - try { - validateExtSystemUser(extSysUser, true); - String response = userRolesService.setAppWithUserRoleStateForUser(extSysUser); - return new PortalRestResponse(PortalRestStatusEnum.OK, "Saved Successfully", response); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "postUserProfile failed", e); - return new PortalRestResponse(PortalRestStatusEnum.ERROR, e.toString(), null); - } - } - - /** - * Updates an application user to have only the specified roles. - * - * @param request - * @param extSysUser - * @return PortalRestResponse with appropriate status value and message - */ - @ApiOperation(value = "Updates an application user to have only the specified roles.", response = PortalRestResponse.class) - @RequestMapping(value = { "/userProfile" }, method = RequestMethod.PUT, produces = "application/json") - public PortalRestResponse putUserProfile(HttpServletRequest request, - @RequestBody ExternalSystemUser extSysUser) { - try { - validateExtSystemUser(extSysUser, true); - String response = userRolesService.setAppWithUserRoleStateForUser(extSysUser); - return new PortalRestResponse(PortalRestStatusEnum.OK, "Updated Successfully", response); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "putUserProfile failed", e); - return new PortalRestResponse(PortalRestStatusEnum.ERROR, e.toString(), null); - } - } - - /** - * Deletes an application user by removing all assigned roles. - * - * @param request - * @param extSysUser - * This object must have zero roles. - * @return PortalRestResponse with appropriate status value and message - */ - @ApiOperation(value = "Processes a request to delete one or more application roles for one specified user who has roles.", response = PortalRestResponse.class) - @RequestMapping(value = { "/userProfile" }, method = RequestMethod.DELETE, produces = "application/json") - public PortalRestResponse deleteUserProfile(HttpServletRequest request, - @RequestBody ExternalSystemUser extSysUser) { - try { - validateExtSystemUser(extSysUser, false); - // Ignore any roles that might be mistakenly present in the request - extSysUser.setRoles(new ArrayList()); - String result = userRolesService.setAppWithUserRoleStateForUser(extSysUser); - return new PortalRestResponse(PortalRestStatusEnum.OK, "Deleted Successfully", result); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "deleteUserProfile failed", e); - return new PortalRestResponse(PortalRestStatusEnum.ERROR, e.toString(), null); - } - } - - /** - * Checks for presence of required fields. - * - * @param extSysUser - * @param rolesRequired - * If true, checks whether roles are present - * @throws Exception - * If any field is missing. - */ - private void validateExtSystemUser(ExternalSystemUser extSysUser, boolean rolesRequired) throws Exception { - if (extSysUser.getLoginId() == null) - throw new Exception("Request has no login ID"); - if (extSysUser.getApplicationName() == null) - throw new Exception("Request has no application name"); - if (extSysUser.getMyloginrequestId() == null) - throw new Exception("Request has no request ID"); - if (rolesRequired && (extSysUser.getRoles() == null || extSysUser.getRoles().size() == 0)) - throw new Exception("Request has no roles"); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ + +package org.openecomp.portalapp.portal.controller; + +import java.util.ArrayList; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemRoleApproval; +import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemUser; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.UserRolesService; +import org.openecomp.portalapp.portal.transport.ExternalRequestFieldsValidator; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import io.swagger.annotations.ApiOperation; + +@RestController +@RequestMapping("/auxapi") +@Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class RolesApprovalSystemController implements BasicAuthenticationController { + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(RolesApprovalSystemController.class); + + @Autowired + private UserRolesService userRolesService; + + /** + * Creates an application user with the specified roles. + * + * @param request + * @param extSysUser + * @return PortalRestResponse with appropriate status value and message + */ + @ApiOperation(value = "Creates an application user with the specified roles.", response = PortalRestResponse.class) + @RequestMapping(value = { "/userProfile" }, method = RequestMethod.POST, produces = "application/json") + public PortalRestResponse postUserProfile(HttpServletRequest request, + @RequestBody ExternalSystemUser extSysUser, HttpServletResponse response) { + ExternalRequestFieldsValidator reqResult = null; + try { + logger.info(EELFLoggerDelegate.debugLogger, "postUserProfile: request received for app {}, user {}", + extSysUser.getApplicationName(), extSysUser.getLoginId()); + + validateExtSystemUser(extSysUser, true); + reqResult = userRolesService.setExternalRequestUserAppRole(extSysUser, "POST"); + if (!reqResult.isResult()) + throw new Exception(reqResult.getDetailMessage()); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "postUserProfile: failed for app {}, user {}", + extSysUser.getApplicationName(), extSysUser.getLoginId(), e); + if(reqResult == null || (!reqResult.isResult() && !e.getMessage().contains("404"))){ + response.setStatus(HttpServletResponse.SC_BAD_REQUEST); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + e.getMessage(), "save user profile failed"); + } else if(e.getMessage().contains("404")){ + response.setStatus(HttpServletResponse.SC_NOT_FOUND); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + e.getMessage(), "save user profile failed"); + } else{ + response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + e.getMessage(), "save user profile failed"); + } + } + return new PortalRestResponse(PortalRestStatusEnum.OK, reqResult.getDetailMessage(), "Success"); + } + + /** + * Updates an application user to have only the specified roles. + * + * @param request + * @param extSysUser + * @return PortalRestResponse with appropriate status value and message + */ + @ApiOperation(value = "Updates an application user to have only the specified roles.", response = PortalRestResponse.class) + @RequestMapping(value = { "/userProfile" }, method = RequestMethod.PUT, produces = "application/json") + public PortalRestResponse putUserProfile(HttpServletRequest request, + @RequestBody ExternalSystemUser extSysUser, HttpServletResponse response) { + ExternalRequestFieldsValidator reqResult = null; + try { + logger.info(EELFLoggerDelegate.debugLogger, "putUserProfile: request received for app {}, user {}", + extSysUser.getApplicationName(), extSysUser.getLoginId()); + validateExtSystemUser(extSysUser, true); + reqResult = userRolesService.setExternalRequestUserAppRole(extSysUser, "PUT"); + if (!reqResult.isResult()) + throw new Exception(reqResult.getDetailMessage()); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "putUserProfile: failed for app {}, user {}", + extSysUser.getApplicationName(), extSysUser.getLoginId(), e); + if(reqResult == null || (!reqResult.isResult() && !e.getMessage().contains("404"))){ + response.setStatus(HttpServletResponse.SC_BAD_REQUEST); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + e.getMessage(), "save user profile failed"); + } else if(e.getMessage().contains("404")){ + response.setStatus(HttpServletResponse.SC_NOT_FOUND); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + e.getMessage(), "save user profile failed"); + } else{ + response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + e.getMessage(), "save user profile failed"); + } + } + return new PortalRestResponse(PortalRestStatusEnum.OK, reqResult.getDetailMessage() , "Success"); + } + + /** + * Deletes an application user by removing all assigned roles. + * + * @param request + * @param extSysUser + * This object must have zero roles. + * @return PortalRestResponse with appropriate status value and message + */ + @ApiOperation(value = "Processes a request to delete one or more application roles for one specified user who has roles.", response = PortalRestResponse.class) + @RequestMapping(value = { "/userProfile" }, method = RequestMethod.DELETE, produces = "application/json") + public PortalRestResponse deleteUserProfile(HttpServletRequest request, + @RequestBody ExternalSystemUser extSysUser, HttpServletResponse response) { + ExternalRequestFieldsValidator reqResult = null; + try { + logger.info(EELFLoggerDelegate.debugLogger, "deleteUserProfile: request received for app {}, user {}", + extSysUser.getApplicationName(), extSysUser.getLoginId()); + validateExtSystemUser(extSysUser, false); + // Ignore any roles that might be mistakenly present in the request + extSysUser.setRoles(new ArrayList()); + reqResult = userRolesService.setExternalRequestUserAppRole(extSysUser, "DELETE"); + if (!reqResult.isResult()) + throw new Exception(reqResult.getDetailMessage()); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "deleteUserProfile: failed for app {}, user {}", + extSysUser.getApplicationName(), extSysUser.getLoginId(), e); + if(reqResult == null || (!reqResult.isResult() && !e.getMessage().contains("404"))){ + response.setStatus(HttpServletResponse.SC_BAD_REQUEST); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + e.getMessage(), "delete user profile failed"); + }else if(e.getMessage().contains("404")){ + response.setStatus(HttpServletResponse.SC_NOT_FOUND); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + e.getMessage(), "delete user profile failed"); + } else{ + response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + return new PortalRestResponse(PortalRestStatusEnum.ERROR, + e.getMessage(), "delete user profile failed"); + } + } + return new PortalRestResponse(PortalRestStatusEnum.OK, "Deleted Successfully", "Success"); + } + + /** + * Checks for presence of required fields. + * + * @param extSysUser + * @param rolesRequired + * If true, checks whether roles are present + * @throws Exception + * If any field is missing. + */ + private void validateExtSystemUser(ExternalSystemUser extSysUser, boolean rolesRequired) throws Exception { + if (extSysUser.getLoginId() == null || extSysUser.getLoginId() == "") + throw new Exception("Request has no login ID"); + if (extSysUser.getApplicationName() == null || extSysUser.getApplicationName() == "") + throw new Exception("Request has no application name"); + if (extSysUser.getMyloginrequestId() == null) + throw new Exception("Request has no request ID"); + if (rolesRequired && (extSysUser.getRoles() == null || extSysUser.getRoles().size() == 0)) + throw new Exception("Request has no roles"); + } + +} \ No newline at end of file diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/SharedContextRestController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/SharedContextRestController.java index a59a4579..984bbf75 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/SharedContextRestController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/SharedContextRestController.java @@ -69,12 +69,12 @@ import io.swagger.annotations.ApiOperation; public class SharedContextRestController extends EPRestrictedRESTfulBaseController { /** - * Model for a one-element JSON object returned by many methods. + * Model for a one-element JSON object returned by many methods. */ class SharedContextJsonResponse { String response; } - + /** * Access to the database */ @@ -94,12 +94,16 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll /** * Gets a value for the specified context and key (RESTful service method). * - * @param ctxtId + * @param request + * HTTP servlet request + * @param context_id * ID that identifies the context, usually the ECOMP Portal * session key. * @param ckey * Key for the key-value pair to fetch * @return JSON with shared context object; response=null if not found. + * @throws Exception + * on bad arguments */ @ApiOperation(value = "Gets a value for the specified context and key.", response = SharedContext.class) @RequestMapping(value = { "/get" }, method = RequestMethod.GET, produces = "application/json") @@ -123,12 +127,15 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll /** * Gets user information for the specified context (RESTful service method). * - * @param ctxtId + * @param request + * HTTP servlet request + * @param context_id * ID that identifies the context, usually the ECOMP Portal * session key. - * * @return List of shared-context objects as JSON; should have user's first * name, last name and email address; null if none found + * @throws Exception + * on bad arguments */ @ApiOperation(value = "Gets user information for the specified context.", response = SharedContext.class, responseContainer = "List") @RequestMapping(value = { "/get_user" }, method = RequestMethod.GET, produces = "application/json") @@ -162,6 +169,8 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll * Tests for presence of the specified key in the specified context (RESTful * service method). * + * @param request + * HTTP servlet request * @param context_id * ID that identifies the context, usually the ECOMP Portal * session key. @@ -169,6 +178,8 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll * Key for the key-value pair to test * @return JSON with result indicating whether the context and key were * found. + * @throws Exception + * on bad arguments */ @ApiOperation(value = "Tests for presence of the specified key in the specified context.", response = SharedContextJsonResponse.class) @RequestMapping(value = { "/check" }, method = RequestMethod.GET, produces = "application/json") @@ -192,6 +203,8 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll * Removes the specified key in the specified context (RESTful service * method). * + * @param request + * HTTP servlet request * @param context_id * ID that identifies the context, usually the ECOMP Portal * session key. @@ -199,6 +212,8 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll * Key for the key-value pair to remove * @return JSON with result indicating whether the context and key were * found. + * @throws Exception + * on bad arguments */ @ApiOperation(value = "Removes the specified key in the specified context.", response = SharedContextJsonResponse.class) @RequestMapping(value = { "/remove" }, method = RequestMethod.GET, produces = "application/json") @@ -224,11 +239,15 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll * Clears all key-value pairs in the specified context (RESTful service * method). * + * @param request + * HTTP servlet request * @param context_id * ID that identifies the context, usually the ECOMP Portal * session key. * @return JSON with result indicating the number of key-value pairs * removed. + * @throws Exception + * on bad arguments */ @ApiOperation(value = "Clears all key-value pairs in the specified context.", response = SharedContextJsonResponse.class) @RequestMapping(value = { "/clear" }, method = RequestMethod.GET, produces = "application/json") @@ -248,6 +267,8 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll * method). Creates the context if no context with the specified ID-key pair * exists, overwrites the value if it exists already. * + * @param request + * HTTP servlet request * @param userJson * JSON block with these tag-value pairs: *
    @@ -257,6 +278,8 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll *
* @return JSON with result indicating whether the value was added (key not * previously known) or replaced (key previously known). + * @throws Exception + * on bad arguments */ @ApiOperation(value = "Sets a context value for the specified context and key. Creates the context if no context with the specified ID-key pair exists, overwrites the value if it exists already.", response = SharedContextJsonResponse.class) @RequestMapping(value = { "/set" }, method = RequestMethod.POST, produces = "application/json") @@ -314,7 +337,7 @@ public class SharedContextRestController extends EPRestrictedRESTfulBaseControll /** * Creates a JSON object with the content of the shared context; null is ok. * - * @param responseBody + * @param context * @return tag "response" with collection of context object's fields * @throws JsonProcessingException */ diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/TicketEventController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/TicketEventController.java index 0dd344d7..e0a9e587 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/TicketEventController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/TicketEventController.java @@ -1,179 +1,184 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.util.Arrays; -import java.util.Calendar; -import java.util.Date; -import java.util.HashSet; -import java.util.List; -import java.util.Set; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.UserNotificationService; -import org.openecomp.portalapp.portal.transport.EpNotificationItem; -import org.openecomp.portalapp.portal.transport.EpRoleNotificationItem; -import org.openecomp.portalapp.portal.utils.PortalConstants; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; - -import com.fasterxml.jackson.databind.JsonNode; -import com.fasterxml.jackson.databind.ObjectMapper; - -import io.swagger.annotations.ApiOperation; - -/** - * Receives messages from the Collaboration Bus (C-BUS) notification and event - * brokering tool. Creates notifications for ECOMP Portal users. - */ -@RestController -@RequestMapping(PortalConstants.REST_AUX_API) -@Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class TicketEventController implements BasicAuthenticationController { - - @Autowired - private UserNotificationService userNotificationService; - - private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(TicketEventController.class); - - public boolean isAuxRESTfulCall() { - return true; - } - - private final ObjectMapper mapper = new ObjectMapper(); - - @ApiOperation(value = "Accepts messages from external ticketing systems and creates notifications for Portal users.", response = PortalRestResponse.class) - @RequestMapping(value = { "/ticketevent" }, method = RequestMethod.POST) - public PortalRestResponse handleRequest(HttpServletRequest request, HttpServletResponse response, - @RequestBody String ticketEventJson) throws Exception { - - logger.debug(EELFLoggerDelegate.debugLogger, "Ticket Event notification" + ticketEventJson); - PortalRestResponse portalResponse = new PortalRestResponse<>(); - try { - JsonNode ticketEventNotif = mapper.readTree(ticketEventJson); - - // Reject request if required fields are missing. - String error = validateTicketEventMessage(ticketEventNotif); - if (error != null) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - portalResponse.setMessage(error); - response.setStatus(400); - return portalResponse; - } - - EpNotificationItem epItem = new EpNotificationItem(); - epItem.setCreatedDate(new Date()); - epItem.setIsForOnlineUsers("Y"); - epItem.setIsForAllRoles("N"); - epItem.setActiveYn("Y"); - //JsonNode application = ticketEventNotif.get("application"); - JsonNode event = ticketEventNotif.get("event"); - JsonNode header = event.get("header"); - JsonNode body = event.get("body"); - epItem.setMsgDescription(body.toString()); - Long eventDate = body.get("eventDate").asLong(); - - String assetID = body.get("assetID").asText(); - epItem.setMsgHeader(assetID); - String eventSource = header.get("eventSource").asText(); - epItem.setMsgSource(eventSource); - epItem.setStartTime(new Date(eventDate)); - Calendar calendar = Calendar.getInstance(); - calendar.setTime(epItem.getStartTime()); - int dayOfMonth = calendar.get(Calendar.DAY_OF_MONTH); - calendar.set(Calendar.DAY_OF_MONTH, dayOfMonth + 30); - epItem.setEndTime(calendar.getTime()); - String severityString= (body.get("severity").toString()).substring(1, 2); - Long severity=Long.parseLong(severityString); - epItem.setPriority(severity); - epItem.setCreatorId(null); - Set roles = new HashSet<>(); - JsonNode SubscriberInfo = ticketEventNotif.get("SubscriberInfo"); - JsonNode userList = SubscriberInfo.get("UserList"); - String UserIds[] = userList.toString().replace("[", "").replace("]", "").trim().replace("\"", "") - .split(","); - List users = userNotificationService.getUsersByOrgIds(Arrays.asList(UserIds)); - for (String userId : UserIds) { - EpRoleNotificationItem roleNotifItem = new EpRoleNotificationItem(); - for (EPUser user : users) { - if (user.getOrgUserId().equals(userId)) { - roleNotifItem.setRecvUserId(user.getId().intValue()); - roles.add(roleNotifItem); - break; - } - } - - } - epItem.setRoles(roles); - userNotificationService.saveNotification(epItem); - - portalResponse.setStatus(PortalRestStatusEnum.OK); - portalResponse.setMessage("processEventNotification: notification created"); - portalResponse.setResponse("NotificationId is :" + epItem.notificationId); - } catch (Exception ex) { - portalResponse.setStatus(PortalRestStatusEnum.ERROR); - response.setStatus(400); - portalResponse.setMessage(ex.toString()); - } - return portalResponse; - } - - /** - * Validates that mandatory fields are present. - * - * @param ticketEventNotif - * @return Error message if a problem is found; null if all is well. - */ - private String validateTicketEventMessage(JsonNode ticketEventNotif) { - JsonNode application = ticketEventNotif.get("application"); - JsonNode event = ticketEventNotif.get("event"); - JsonNode header = event.get("header"); - JsonNode body = event.get("body"); - JsonNode SubscriberInfo = ticketEventNotif.get("SubscriberInfo"); - if (application == null) - return "application is mandatory"; - if (body == null) - return "body is mandatory"; - if (body.get("assetID") == null) - return "Asset Id is mandatory"; - if (body.get("eventDate") == null) - return "Event Date is mandatory"; - if (header.get("eventSource") == null) - return "Message Source is mandatory"; - if (SubscriberInfo.get("UserList") == null) - return "At least one user Id is mandatory"; - return null; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.util.Arrays; +import java.util.Calendar; +import java.util.Date; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.UserNotificationService; +import org.openecomp.portalapp.portal.transport.EpNotificationItem; +import org.openecomp.portalapp.portal.transport.EpRoleNotificationItem; +import org.openecomp.portalapp.portal.utils.PortalConstants; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +import com.fasterxml.jackson.databind.JsonNode; +import com.fasterxml.jackson.databind.ObjectMapper; + +import io.swagger.annotations.ApiOperation; + +/** + * Receives messages from the Collaboration Bus (C-BUS) notification and event + * brokering tool. Creates notifications for ECOMP Portal users. + */ +@RestController +@RequestMapping(PortalConstants.REST_AUX_API) +@Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class TicketEventController implements BasicAuthenticationController { + + @Autowired + private UserNotificationService userNotificationService; + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(TicketEventController.class); + + public boolean isAuxRESTfulCall() { + return true; + } + + private final ObjectMapper mapper = new ObjectMapper(); + + @ApiOperation(value = "Accepts messages from external ticketing systems and creates notifications for Portal users.", response = PortalRestResponse.class) + @RequestMapping(value = { "/ticketevent" }, method = RequestMethod.POST) + public PortalRestResponse handleRequest(HttpServletRequest request, HttpServletResponse response, + @RequestBody String ticketEventJson) throws Exception { + + logger.debug(EELFLoggerDelegate.debugLogger, "Ticket Event notification" + ticketEventJson); + PortalRestResponse portalResponse = new PortalRestResponse<>(); + try { + JsonNode ticketEventNotif = mapper.readTree(ticketEventJson); + + // Reject request if required fields are missing. + String error = validateTicketEventMessage(ticketEventNotif); + if (error != null) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + portalResponse.setMessage(error); + response.setStatus(400); + return portalResponse; + } + + EpNotificationItem epItem = new EpNotificationItem(); + epItem.setCreatedDate(new Date()); + epItem.setIsForOnlineUsers("Y"); + epItem.setIsForAllRoles("N"); + epItem.setActiveYn("Y"); + + JsonNode event = ticketEventNotif.get("event"); + JsonNode header = event.get("header"); + JsonNode body = event.get("body"); + epItem.setMsgDescription(body.toString()); + Long eventDate = System.currentTimeMillis(); + if (body.get("eventDate") != null) { + eventDate = body.get("eventDate").asLong(); + } + String eventSource = header.get("eventSource").asText(); + epItem.setMsgSource(eventSource); + epItem.setStartTime(new Date(eventDate)); + Calendar calendar = Calendar.getInstance(); + calendar.setTime(epItem.getStartTime()); + int dayOfMonth = calendar.get(Calendar.DAY_OF_MONTH); + calendar.set(Calendar.DAY_OF_MONTH, dayOfMonth + 30); + epItem.setEndTime(calendar.getTime()); + String severityString = "1"; + if (body.get("severity") != null) { + severityString = (body.get("severity").toString()).substring(1, 2); + } + Long severity = Long.parseLong(severityString); + epItem.setPriority(severity); + epItem.setCreatorId(null); + Set roles = new HashSet<>(); + JsonNode SubscriberInfo = ticketEventNotif.get("SubscriberInfo"); + JsonNode userList = SubscriberInfo.get("UserList"); + String UserIds[] = userList.toString().replace("[", "").replace("]", "").trim().replace("\"", "") + .split(","); + String assetID = eventSource + ' ' + + userList.toString().replace("[", "").replace("]", "").trim().replace("\"", "") + ' ' + + new Date(eventDate); + if (body.get("assetID") != null) { + assetID = body.get("assetID").asText(); + } + epItem.setMsgHeader(assetID); + List users = userNotificationService.getUsersByOrgIds(Arrays.asList(UserIds)); + for (String userId : UserIds) { + EpRoleNotificationItem roleNotifItem = new EpRoleNotificationItem(); + for (EPUser user : users) { + if (user.getOrgUserId().equals(userId)) { + roleNotifItem.setRecvUserId(user.getId().intValue()); + roles.add(roleNotifItem); + break; + } + } + + } + epItem.setRoles(roles); + userNotificationService.saveNotification(epItem); + + portalResponse.setStatus(PortalRestStatusEnum.OK); + portalResponse.setMessage("processEventNotification: notification created"); + portalResponse.setResponse("NotificationId is :" + epItem.notificationId); + } catch (Exception ex) { + portalResponse.setStatus(PortalRestStatusEnum.ERROR); + response.setStatus(400); + portalResponse.setMessage(ex.toString()); + } + return portalResponse; + } + + /** + * Validates that mandatory fields are present. + * + * @param ticketEventNotif + * @return Error message if a problem is found; null if all is well. + */ + private String validateTicketEventMessage(JsonNode ticketEventNotif) { + JsonNode application = ticketEventNotif.get("application"); + JsonNode event = ticketEventNotif.get("event"); + JsonNode header = event.get("header"); + JsonNode body = event.get("body"); + JsonNode SubscriberInfo = ticketEventNotif.get("SubscriberInfo"); + if (application == null) + return "application is mandatory"; + if (body == null) + return "body is mandatory"; + if (header.get("eventSource") == null) + return "Message Source is mandatory"; + if (SubscriberInfo.get("UserList") == null) + return "At least one user Id is mandatory"; + return null; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserController.java new file mode 100644 index 00000000..4cf7ca63 --- /dev/null +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserController.java @@ -0,0 +1,104 @@ +package org.openecomp.portalapp.portal.controller; + +import javax.servlet.http.HttpServletRequest; + +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.UserService; +import org.openecomp.portalapp.portal.transport.ProfileDetail; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class UserController extends EPRestrictedBaseController { + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(UserController.class); + + @Autowired + private UserService userService; + + /** + * RESTful service method to get ECOMP Logged in User details. + * + * @param request + * HttpServletRequest + * + * @return PortalRestResponse of EPUser + */ + @RequestMapping(value = { "/portalApi/loggedinUser" }, method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse getLoggedinUser(HttpServletRequest request) { + PortalRestResponse portalRestResponse = null; + try { + EPUser user = EPUserUtils.getUserSession(request); + ProfileDetail profileDetail = new ProfileDetail(user.getFirstName(), user.getLastName(), + user.getMiddleInitial(), user.getEmail(), user.getLoginId(), CipherUtil.decrypt(user.getLoginPwd())); + portalRestResponse = new PortalRestResponse(PortalRestStatusEnum.OK, "success", + profileDetail); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/loggedinUser", "result =", profileDetail); + } catch (Exception e) { + portalRestResponse = new PortalRestResponse(PortalRestStatusEnum.ERROR, e.getMessage(), + null); + logger.error(EELFLoggerDelegate.errorLogger, "getLoggedinUser failed", e); + } + return portalRestResponse; + } + + /** + * RESTful service method to update ECOMP Logged in User in DB. + * + * @param request + * HttpServletRequest + * @param profileDetail + * Body with user information + * @return PortalRestResponse of String + */ + @RequestMapping(value = { + "/portalApi/modifyLoggedinUser" }, method = RequestMethod.PUT, produces = "application/json") + public PortalRestResponse modifyLoggedinUser(HttpServletRequest request, + @RequestBody ProfileDetail profileDetail) { + PortalRestResponse portalRestResponse = null; + try { + String errorMsg = ""; + if (profileDetail.getFirstName().equals("") || profileDetail.getLastName().equals("") + || profileDetail.getEmail().equals("") || profileDetail.getLoginId().equals("") + || profileDetail.getLoginPassword().equals("")) { + errorMsg = "Required field(s) is missing"; + portalRestResponse = new PortalRestResponse(PortalRestStatusEnum.ERROR, errorMsg, null); + logger.error(EELFLoggerDelegate.errorLogger, "modifyLoggedinUser failed", errorMsg); + } else { + EPUser user = EPUserUtils.getUserSession(request); + user.setFirstName(profileDetail.getFirstName()); + user.setLastName(profileDetail.getLastName()); + user.setEmail(profileDetail.getEmail()); + user.setMiddleInitial(profileDetail.getMiddleName()); + user.setLoginId(profileDetail.getLoginId()); + user.setLoginPwd(CipherUtil.encrypt(profileDetail.getLoginPassword())); + userService.saveUser(user); + // Update user info in the session + request.getSession().setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), + user); + portalRestResponse = new PortalRestResponse(PortalRestStatusEnum.OK, "success", null); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/modifyLoggedinUser", "result =", user); + } + } catch (Exception e) { + portalRestResponse = new PortalRestResponse(PortalRestStatusEnum.ERROR, e.toString(), null); + logger.error(EELFLoggerDelegate.errorLogger, "modifyLoggedinUser failed", e); + } + return portalRestResponse; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserNotificationController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserNotificationController.java index 777fb91d..24b698e8 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserNotificationController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserNotificationController.java @@ -1,216 +1,217 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RequestParam; -import org.springframework.web.bind.annotation.RestController; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalsdk.core.web.support.UserUtils; -import org.openecomp.portalapp.controller.EPRestrictedBaseController; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EcompAppRole; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.FunctionalMenuService; -import org.openecomp.portalapp.portal.service.UserNotificationService; -import org.openecomp.portalapp.portal.transport.EpNotificationItem; -import org.openecomp.portalapp.portal.transport.EpNotificationItemVO; -import org.openecomp.portalapp.portal.transport.EpRoleNotificationItem; -import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.util.EPUserUtils; - -@RestController -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class UserNotificationController extends EPRestrictedBaseController { - - @Autowired - FunctionalMenuService functionalMenuService; - - @Autowired - UserNotificationService userNotificationService; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(UserNotificationController.class); - - @RequestMapping(value = { - "/portalApi/getFunctionalMenuRole" }, method = RequestMethod.GET, produces = "application/json") - public List getMenuIdRoleId(HttpServletRequest request, HttpServletResponse response) { - // EPUser user = EPUserUtils.getUserSession(request); - List menuRoleList = null; - menuRoleList = functionalMenuService.getFunctionalMenuRole(); - return menuRoleList; - } - - @RequestMapping(value = { - "/portalApi/getNotifications" }, method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse> getNotifications(HttpServletRequest request, - HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - PortalRestResponse> portalRestResponse = null; - try { - List notificationList = userNotificationService.getNotifications(user.getId()); - portalRestResponse = new PortalRestResponse>(PortalRestStatusEnum.OK, "success", - notificationList); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getAllAppsAndContacts failed", e); - portalRestResponse = new PortalRestResponse>(PortalRestStatusEnum.ERROR, - e.getMessage(), null); - } - return portalRestResponse; - } - - @RequestMapping(value = { - "/portalApi/getAdminNotifications" }, method = RequestMethod.GET, produces = "application/json") - public List getAdminNotifications(HttpServletRequest request, HttpServletResponse response) { - List adminNotificationList = null; - adminNotificationList = userNotificationService.getAdminNotificationVOS(); - return adminNotificationList; - } - - @RequestMapping(value = "/portalApi/saveNotification", method = RequestMethod.POST, produces = "application/json") - public PortalRestResponse save(HttpServletRequest request, HttpServletResponse response, - @RequestBody EpNotificationItem notificationItem) { - - if (notificationItem == null || notificationItem.getMsgHeader() == null) - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", - "Notification Header cannot be null or empty"); - if (notificationItem.getEndTime().compareTo(notificationItem.getStartTime()) < 0) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", - "End Time should be greater than start time"); - } - - if ((notificationItem.getIsForAllRoles() == "N") && notificationItem.getRoleIds().isEmpty()) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", - "No Roles Ids Exist for the selected Roles"); - } - - Long creatorId = UserUtils.getUserIdAsLong(request); - notificationItem.setCreatorId(creatorId); - - // Front-end date picker does not accept a time value, so all - // values are the start of the chosen day in the local time zone. - // Move the end time value to the very end of the chosen day. - // Avoid Calendar.getDefault() which uses the server's locale. - Long endTime = notificationItem.getEndTime().getTime(); - endTime += (23 * 3600 + 59 * 60 + 59) * 1000; - notificationItem.getEndTime().setTime(endTime); - - try { - userNotificationService.saveNotification(notificationItem); - } catch (Exception e) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); - } - return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); - } - - @RequestMapping(value = { - "/portalApi/notificationUpdateRate" }, method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse> getNotificationUpdateRate(HttpServletRequest request) { - try { - String updateRate = SystemProperties.getProperty(EPCommonSystemProperties.NOTIFICATION_UPDATE_RATE); - String updateDuration = SystemProperties.getProperty(EPCommonSystemProperties.NOTIFICATION_UPDATE_DURATION); - Integer rateInMiliSec = Integer.valueOf(updateRate) * 1000; - Integer durationInMiliSec = Integer.valueOf(updateDuration) * 1000; - Map results = new HashMap(); - results.put("updateRate", String.valueOf(rateInMiliSec)); - results.put("updateDuration", String.valueOf(durationInMiliSec)); - return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getNotificationUpdateRate failed", e); - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); - } - } - - @RequestMapping(value = { - "/portalApi/notificationRead" }, method = RequestMethod.GET, produces = "application/json") - public PortalRestResponse> notificationRead( - @RequestParam("notificationId") String notificationID, HttpServletRequest request) { - try { - userNotificationService.setNotificationRead(Long.parseLong(notificationID), UserUtils.getUserId(request)); - return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", null); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "notificationRead failed", e); - return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); - } - } - - @RequestMapping(value = { - "/portalApi/getNotificationHistory" }, method = RequestMethod.GET, produces = "application/json") - public List getNotificationHistory(HttpServletRequest request, HttpServletResponse response) { - EPUser user = EPUserUtils.getUserSession(request); - List notificationList = null; - notificationList = userNotificationService.getNotificationHistoryVO(user.getId()); - return notificationList; - } - - @RequestMapping(value = { "/portalApi/notificationRole/{notificationId}/roles" }, method = { - RequestMethod.GET }, produces = "application/json") - public List testGetRoles(HttpServletRequest request, @PathVariable("notificationId") Long notificationId) { - List NotifRoles = userNotificationService.getNotificationRoles(notificationId); - ArrayList rolesList = new ArrayList(); - for (EpRoleNotificationItem notifRole : NotifRoles) { - rolesList.add(notifRole.roleId); - } - return rolesList; - } - - @RequestMapping(value = { "/portalApi/getNotificationAppRoles" }, method = { - RequestMethod.GET }, produces = "application/json") - public List getNotificationAppRoles(HttpServletRequest request, HttpServletResponse response) { - List epAppRoleList = null; - try { - epAppRoleList = userNotificationService.getAppRoleList(); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while performing UserNofiticationController.getNotificationAppRoles. Details: ", - e); - } - return epAppRoleList; - } - - @RequestMapping(value = { - "/portalApi/getMessageRecipients" }, method = RequestMethod.GET, produces = "application/json") - public List getMessageRecipients(@RequestParam("notificationId") Long notificationID) { - // EPUser user = EPUserUtils.getUserSession(request); - List messageUserRecipients = null; - messageUserRecipients = userNotificationService.getMessageRecipients(notificationID); - return messageUserRecipients; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.RestController; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalsdk.core.web.support.UserUtils; +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EcompAppRole; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.FunctionalMenuService; +import org.openecomp.portalapp.portal.service.UserNotificationService; +import org.openecomp.portalapp.portal.transport.EpNotificationItem; +import org.openecomp.portalapp.portal.transport.EpNotificationItemVO; +import org.openecomp.portalapp.portal.transport.EpRoleNotificationItem; +import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.util.EPUserUtils; + +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class UserNotificationController extends EPRestrictedBaseController { + + @Autowired + FunctionalMenuService functionalMenuService; + + @Autowired + UserNotificationService userNotificationService; + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(UserNotificationController.class); + + @RequestMapping(value = { + "/portalApi/getFunctionalMenuRole" }, method = RequestMethod.GET, produces = "application/json") + public List getMenuIdRoleId(HttpServletRequest request, HttpServletResponse response) { + // EPUser user = EPUserUtils.getUserSession(request); + List menuRoleList = null; + menuRoleList = functionalMenuService.getFunctionalMenuRole(); + return menuRoleList; + } + + @RequestMapping(value = { + "/portalApi/getNotifications" }, method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse> getNotifications(HttpServletRequest request, + HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + PortalRestResponse> portalRestResponse = null; + try { + List notificationList = userNotificationService.getNotifications(user.getId()); + portalRestResponse = new PortalRestResponse>(PortalRestStatusEnum.OK, "success", + notificationList); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getAllAppsAndContacts failed", e); + portalRestResponse = new PortalRestResponse>(PortalRestStatusEnum.ERROR, + e.getMessage(), null); + } + return portalRestResponse; + } + + @RequestMapping(value = { + "/portalApi/getAdminNotifications" }, method = RequestMethod.GET, produces = "application/json") + public List getAdminNotifications(HttpServletRequest request, HttpServletResponse response) { + List adminNotificationList = null; + EPUser user = EPUserUtils.getUserSession(request); + adminNotificationList = userNotificationService.getAdminNotificationVOS(user.getId()); + return adminNotificationList; + } + + @RequestMapping(value = "/portalApi/saveNotification", method = RequestMethod.POST, produces = "application/json") + public PortalRestResponse save(HttpServletRequest request, HttpServletResponse response, + @RequestBody EpNotificationItem notificationItem) { + + if (notificationItem == null || notificationItem.getMsgHeader() == null) + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", + "Notification Header cannot be null or empty"); + if (notificationItem.getEndTime().compareTo(notificationItem.getStartTime()) < 0) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", + "End Time should be greater than start time"); + } + + if ((notificationItem.getIsForAllRoles() == "N") && notificationItem.getRoleIds().isEmpty()) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", + "No Roles Ids Exist for the selected Roles"); + } + + Long creatorId = UserUtils.getUserIdAsLong(request); + notificationItem.setCreatorId(creatorId); + + // Front-end date picker does not accept a time value, so all + // values are the start of the chosen day in the local time zone. + // Move the end time value to the very end of the chosen day. + // Avoid Calendar.getDefault() which uses the server's locale. + Long endTime = notificationItem.getEndTime().getTime(); + endTime += (23 * 3600 + 59 * 60 + 59) * 1000; + notificationItem.getEndTime().setTime(endTime); + + try { + userNotificationService.saveNotification(notificationItem); + } catch (Exception e) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); + } + return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); + } + + @RequestMapping(value = { + "/portalApi/notificationUpdateRate" }, method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse> getNotificationUpdateRate(HttpServletRequest request) { + try { + String updateRate = SystemProperties.getProperty(EPCommonSystemProperties.NOTIFICATION_UPDATE_RATE); + String updateDuration = SystemProperties.getProperty(EPCommonSystemProperties.NOTIFICATION_UPDATE_DURATION); + Integer rateInMiliSec = Integer.valueOf(updateRate) * 1000; + Integer durationInMiliSec = Integer.valueOf(updateDuration) * 1000; + Map results = new HashMap(); + results.put("updateRate", String.valueOf(rateInMiliSec)); + results.put("updateDuration", String.valueOf(durationInMiliSec)); + return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", results); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getNotificationUpdateRate failed", e); + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); + } + } + + @RequestMapping(value = { + "/portalApi/notificationRead" }, method = RequestMethod.GET, produces = "application/json") + public PortalRestResponse> notificationRead( + @RequestParam("notificationId") String notificationID, HttpServletRequest request) { + try { + userNotificationService.setNotificationRead(Long.parseLong(notificationID), UserUtils.getUserId(request)); + return new PortalRestResponse<>(PortalRestStatusEnum.OK, "success", null); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "notificationRead failed", e); + return new PortalRestResponse<>(PortalRestStatusEnum.ERROR, e.toString(), null); + } + } + + @RequestMapping(value = { + "/portalApi/getNotificationHistory" }, method = RequestMethod.GET, produces = "application/json") + public List getNotificationHistory(HttpServletRequest request, HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + List notificationList = null; + notificationList = userNotificationService.getNotificationHistoryVO(user.getId()); + return notificationList; + } + + @RequestMapping(value = { "/portalApi/notificationRole/{notificationId}/roles" }, method = { + RequestMethod.GET }, produces = "application/json") + public List testGetRoles(HttpServletRequest request, @PathVariable("notificationId") Long notificationId) { + List NotifRoles = userNotificationService.getNotificationRoles(notificationId); + ArrayList rolesList = new ArrayList(); + for (EpRoleNotificationItem notifRole : NotifRoles) { + rolesList.add(notifRole.roleId); + } + return rolesList; + } + + @RequestMapping(value = { "/portalApi/getNotificationAppRoles" }, method = { + RequestMethod.GET }, produces = "application/json") + public List getNotificationAppRoles(HttpServletRequest request, HttpServletResponse response) { + List epAppRoleList = null; + try { + epAppRoleList = userNotificationService.getAppRoleList(); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while performing UserNofiticationController.getNotificationAppRoles. Details: ", + e); + } + return epAppRoleList; + } + + @RequestMapping(value = { + "/portalApi/getMessageRecipients" }, method = RequestMethod.GET, produces = "application/json") + public List getMessageRecipients(@RequestParam("notificationId") Long notificationID) { + // EPUser user = EPUserUtils.getUserSession(request); + List messageUserRecipients = null; + messageUserRecipients = userNotificationService.getMessageRecipients(notificationID); + return messageUserRecipients; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserRecommendationController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserRecommendationController.java new file mode 100644 index 00000000..3ec06ed3 --- /dev/null +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserRecommendationController.java @@ -0,0 +1,87 @@ +package org.openecomp.portalapp.portal.controller; + +import java.util.HashMap; +import java.util.Map; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.ConsulHealthService; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpMethod; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.RestTemplate; + +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class UserRecommendationController extends EPRestrictedBaseController { + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(UserRecommendationController.class); + + @Autowired + private ConsulHealthService consulHealthService; + + private static final String MACHINE_LEARNING_SERVICE_CTX = "/ml_api"; + private static final String GET_RECOMMENDATION = MACHINE_LEARNING_SERVICE_CTX + "/" + "getRecommendation"; + private static final String GET_RECOMM_COUNT = MACHINE_LEARNING_SERVICE_CTX + "/" + "getRecommCount"; + private static final String CONSUL_ML_SERVICE_ID = "mlearning-service"; + private static final String SERVICE_PROTOCOL = "http"; + + @RequestMapping(value = { + "/portalApi/getRecommendationsCount" }, method = RequestMethod.GET, produces = "application/json") + public String getRecommendationsCount(HttpServletRequest request, HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + Map requestMapping = new HashMap(); + requestMapping.put("id", user.getOrgUserId()); + requestMapping.put("action", "reports"); + + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON); + + // set your entity to send + HttpEntity> entity = new HttpEntity<>(requestMapping, headers); + String endpoint = SERVICE_PROTOCOL + "://"+ consulHealthService.getServiceLocation(CONSUL_ML_SERVICE_ID, + SystemProperties.getProperty("microservices.m-learn.local.port")) + GET_RECOMM_COUNT; + logger.debug(EELFLoggerDelegate.debugLogger, "Going to hit mlearning endpoint on: {1}", endpoint); + ResponseEntity out = new RestTemplate().exchange(endpoint, HttpMethod.POST, entity, String.class); + return out.getBody(); + } + + @RequestMapping(value = { + "/portalApi/getRecommendations" }, method = RequestMethod.GET, produces = "application/json") + public String getRecommendations(HttpServletRequest request, HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); + Map requestMapping = new HashMap(); + requestMapping.put("id", user.getOrgUserId()); + requestMapping.put("action", "reports"); + requestMapping.put("recommendations", "1"); + + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON); + + // set your entity to send + HttpEntity> entity = new HttpEntity<>(requestMapping, headers); + String endpoint = SERVICE_PROTOCOL + "://"+ + consulHealthService.getServiceLocation(CONSUL_ML_SERVICE_ID, + SystemProperties.getProperty("microservices.m-learn.local.port")) + GET_RECOMMENDATION; + logger.debug(EELFLoggerDelegate.debugLogger, "Going to hit mlearning endpoint on: {1}", endpoint); + ResponseEntity out = new RestTemplate().exchange(endpoint, HttpMethod.POST, entity, String.class); + return out.getBody(); + } + +} \ No newline at end of file diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserRolesController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserRolesController.java index 719b7d45..7bcd5845 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserRolesController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/UserRolesController.java @@ -57,7 +57,7 @@ import org.openecomp.portalsdk.core.domain.AuditLog; import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; import org.openecomp.portalsdk.core.restful.domain.EcompRole; import org.openecomp.portalsdk.core.service.AuditService; -import org.openecomp.portalsdk.core.service.RoleService; +import org.openecomp.portalsdk.core.util.SystemProperties; import org.slf4j.MDC; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.EnableAspectJAutoProxy; @@ -74,29 +74,34 @@ import org.springframework.web.bind.annotation.RestController; @EPAuditLog public class UserRolesController extends EPRestrictedBaseController { + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(UserRolesController.class); + @Autowired - SearchService searchService; - @Autowired - AdminRolesService adminRolesService; - @Autowired - UserRolesService userRolesService; + private SearchService searchService; @Autowired - ApplicationsRestClientService applicationsRestClientService; + private AdminRolesService adminRolesService; + private @Autowired UserRolesService userRolesService; @Autowired - RoleService roleService; + private ApplicationsRestClientService applicationsRestClientService; @Autowired - AuditService auditService; - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(UserRolesController.class); - - static final String FAILURE = "failure"; + private AuditService auditService; + + private static final String FAILURE = "failure"; /** * RESTful service method to fetch users in the WebPhone external service * + * @param request + * HttpServletRequest + * @param searchString + * search string + * @param response + * HttpServletResponse * @return array of found users as json */ @RequestMapping(value = { "/portalApi/queryUsers" }, method = RequestMethod.GET, produces = "application/json") - public String getPhoneBookSearchResult(HttpServletRequest request, @RequestParam("search") String searchString, HttpServletResponse response) { + public String getPhoneBookSearchResult(HttpServletRequest request, @RequestParam("search") String searchString, + HttpServletResponse response) { EPUser user = EPUserUtils.getUserSession(request); String searchResult = null; if (!adminRolesService.isSuperAdmin(user) && !adminRolesService.isAccountAdmin(user)) { @@ -106,23 +111,32 @@ public class UserRolesController extends EPRestrictedBaseController { if (searchString.length() > 2) { searchResult = searchService.searchUsersInPhoneBook(searchString); } else { - logger.info(EELFLoggerDelegate.errorLogger, "getPhoneBookSearchResult - too short search string: " + searchString); + logger.info(EELFLoggerDelegate.errorLogger, + "getPhoneBookSearchResult - too short search string: " + searchString); } } EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/queryUsers", "result =", searchResult); - + return searchResult; } /** * RESTful service method to fetch applications where user is admin * - * @return for GET: array of all applications with boolean isAdmin=true/false for each application + * @param request + * HttpServletRequest + * @param orgUserId + * search string + * @param response + * HttpServletResponse + * @return for GET: array of all applications with boolean + * isAdmin=true/false for each application */ - @RequestMapping(value = { "/portalApi/adminAppsRoles" }, method = { RequestMethod.GET }, produces = "application/json") - public AppsListWithAdminRole getAppsWithAdminRoleStateForUser(HttpServletRequest request, @RequestParam("user") String orgUserId, - HttpServletResponse response) { - + @RequestMapping(value = { "/portalApi/adminAppsRoles" }, method = { + RequestMethod.GET }, produces = "application/json") + public AppsListWithAdminRole getAppsWithAdminRoleStateForUser(HttpServletRequest request, + @RequestParam("user") String orgUserId, HttpServletResponse response) { + EPUser user = EPUserUtils.getUserSession(request); AppsListWithAdminRole result = null; if (!adminRolesService.isSuperAdmin(user)) { @@ -131,15 +145,16 @@ public class UserRolesController extends EPRestrictedBaseController { if (EcompPortalUtils.legitimateUserId(orgUserId)) { result = adminRolesService.getAppsWithAdminRoleStateForUser(orgUserId); } else { - logger.info(EELFLoggerDelegate.errorLogger, "getAppsWithAdminRoleStateForUser - parms error, no Organization User ID"); + logger.info(EELFLoggerDelegate.errorLogger, + "getAppsWithAdminRoleStateForUser - parms error, no Organization User ID"); response.setStatus(HttpServletResponse.SC_BAD_REQUEST); } } StringBuilder adminAppRoles = new StringBuilder(); - if(result != null && result.appsRoles.size() >= 1) { + if (result != null && result.appsRoles.size() >= 1) { adminAppRoles.append("User '" + result.orgUserId + "' has admin role to the apps = {"); - for(AppNameIdIsAdmin adminAppRole : result.appsRoles) { + for (AppNameIdIsAdmin adminAppRole : result.appsRoles) { if (adminAppRole.isAdmin) { adminAppRoles.append(adminAppRole.appName + ", "); } @@ -149,36 +164,47 @@ public class UserRolesController extends EPRestrictedBaseController { adminAppRoles.append("User '" + result.orgUserId + "' has no Apps with Admin Role."); } logger.info(EELFLoggerDelegate.errorLogger, adminAppRoles.toString()); - + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/adminAppsRoles", "get result =", result); return result; } - @RequestMapping(value = { "/portalApi/adminAppsRoles" }, method = { RequestMethod.PUT }, produces = "application/json") - public FieldsValidator putAppsWithAdminRoleStateForUser(HttpServletRequest request, @RequestBody AppsListWithAdminRole newAppsListWithAdminRoles, - HttpServletResponse response) { - - //newAppsListWithAdminRoles.appsRoles + /** + * + * @param request + * HttpServletRequest + * @param newAppsListWithAdminRoles + * new apps + * @param response + * HttpServletResponse + * @return FieldsValidator + */ + @RequestMapping(value = { "/portalApi/adminAppsRoles" }, method = { + RequestMethod.PUT }, produces = "application/json") + public FieldsValidator putAppsWithAdminRoleStateForUser(HttpServletRequest request, + @RequestBody AppsListWithAdminRole newAppsListWithAdminRoles, HttpServletResponse response) { + + // newAppsListWithAdminRoles.appsRoles FieldsValidator fieldsValidator = new FieldsValidator(); StringBuilder newAppRoles = new StringBuilder(); - if(newAppsListWithAdminRoles != null && newAppsListWithAdminRoles.appsRoles.size() >= 1) { + if (newAppsListWithAdminRoles != null && newAppsListWithAdminRoles.appsRoles.size() >= 1) { newAppRoles.append("User '" + newAppsListWithAdminRoles.orgUserId + "' has admin role to the apps = { "); - for(AppNameIdIsAdmin adminAppRole : newAppsListWithAdminRoles.appsRoles) { + for (AppNameIdIsAdmin adminAppRole : newAppsListWithAdminRoles.appsRoles) { if (adminAppRole.isAdmin) { newAppRoles.append(adminAppRole.appName + " ,"); } } - newAppRoles.deleteCharAt(newAppRoles.length()-1); + newAppRoles.deleteCharAt(newAppRoles.length() - 1); newAppRoles.append("}."); } else { newAppRoles.append("User '" + newAppsListWithAdminRoles.orgUserId + "' has no Apps with Admin Role."); } logger.info(EELFLoggerDelegate.errorLogger, newAppRoles.toString()); - + EPUser user = EPUserUtils.getUserSession(request); boolean changesApplied = false; - + if (!adminRolesService.isSuperAdmin(user)) { EcompPortalUtils.setBadPermissions(user, response, "putAppsWithAdminRoleStateForUser"); } else { @@ -190,20 +216,44 @@ public class UserRolesController extends EPRestrictedBaseController { auditLog.setComments(newAppRoles.toString()); auditService.logActivity(auditLog, null); - MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - logger.info(EELFLoggerDelegate.auditLogger, EPLogUtil.formatAuditLogMessage("UserRolesController.putAppsWithAdminRoleStateForUser", - EcompAuditLog.CD_ACTIVITY_UPDATE_ACCOUNT_ADMIN, user.getOrgUserId(), newAppsListWithAdminRoles.orgUserId, newAppRoles.toString())); + MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + EcompPortalUtils.calculateDateTimeDifferenceForLog( + MDC.get(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP), + MDC.get(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP)); + logger.info(EELFLoggerDelegate.auditLogger, + EPLogUtil.formatAuditLogMessage("UserRolesController.putAppsWithAdminRoleStateForUser", + EcompAuditLog.CD_ACTIVITY_UPDATE_ACCOUNT_ADMIN, user.getOrgUserId(), + newAppsListWithAdminRoles.orgUserId, newAppRoles.toString())); MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); + MDC.remove(SystemProperties.MDC_TIMER); } EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/adminAppsRoles", "put result =", changesApplied); - + return fieldsValidator; } - @RequestMapping(value = { "/portalApi/userAppRoles" }, method = { RequestMethod.GET }, produces = "application/json") - public List getAppRolesForUser(HttpServletRequest request, @RequestParam("user") String orgUserId, @RequestParam("app") Long appid, HttpServletResponse response) { + /** + * It returns a list of user app roles for single app + * + * @param request + * HttpServletRequest + * @param response + * HttpServletResponse + * @param orgUserId + * user ID + * @param appid + * application ID + * @param extRequestValue + * set to false if request is from users page otherwise true + * @return List + */ + @RequestMapping(value = { "/portalApi/userAppRoles" }, method = { + RequestMethod.GET }, produces = "application/json") + public List getAppRolesForUser(HttpServletRequest request, @RequestParam("user") String orgUserId, + @RequestParam("app") Long appid, @RequestParam("externalRequest") Boolean extRequestValue, + HttpServletResponse response) { EPUser user = EPUserUtils.getUserSession(request); List result = null; String feErrorString = ""; @@ -212,16 +262,18 @@ public class UserRolesController extends EPRestrictedBaseController { feErrorString = EcompPortalUtils.getFEErrorString(true, response.getStatus()); } else { if (EcompPortalUtils.legitimateUserId(orgUserId)) { - result = userRolesService.getAppRolesForUser(appid, orgUserId); + result = userRolesService.getAppRolesForUser(appid, orgUserId, extRequestValue); int responseCode = EcompPortalUtils.getExternalAppResponseCode(); if (responseCode != 0 && responseCode != 200) { // external error response.setStatus(responseCode); feErrorString = EcompPortalUtils.getFEErrorString(false, responseCode); } else if (result == null) { - // If the result is null, there was an internal ecomp error in the service call. + // If the result is null, there was an internal ecomp error + // in the service call. response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - feErrorString = EcompPortalUtils.getFEErrorString(true, HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + feErrorString = EcompPortalUtils.getFEErrorString(true, + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); } } else { logger.info(EELFLoggerDelegate.errorLogger, "getAppRolesForUser - no Organization User ID"); @@ -229,29 +281,29 @@ public class UserRolesController extends EPRestrictedBaseController { feErrorString = EcompPortalUtils.getFEErrorString(true, HttpServletResponse.SC_BAD_REQUEST); } } - + StringBuilder sbUserApps = new StringBuilder(); - if (result!=null && result.size()>=1) { + if (result != null && result.size() >= 1) { sbUserApps.append("User '" + orgUserId + "' has Roles={"); - for(RoleInAppForUser appRole : result) { + for (RoleInAppForUser appRole : result) { if (appRole.isApplied) { sbUserApps.append(appRole.roleName + ", "); } } sbUserApps.append("} assigned to the appId '" + appid + "'."); } else { - //Not sure creating an empty object will make any difference - //but would like to give it a shot for defect #DE221057 - if (result==null) { + // Not sure creating an empty object will make any difference + // but would like to give it a shot for defect #DE221057 + if (result == null) { result = new ArrayList(); } sbUserApps.append("User '" + orgUserId + "' and appid " + appid + " has no roles"); } logger.info(EELFLoggerDelegate.errorLogger, sbUserApps.toString()); - + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/userAppRoles", "get result =", result); if (feErrorString != "") { - logger.debug(EELFLoggerDelegate.debugLogger, "LR: FEErrorString to header: "+feErrorString); + logger.debug(EELFLoggerDelegate.debugLogger, "LR: FEErrorString to header: " + feErrorString); response.addHeader("FEErrorString", feErrorString); response.addHeader("Access-Control-Expose-Headers", "FEErrorString"); @@ -259,129 +311,155 @@ public class UserRolesController extends EPRestrictedBaseController { return result; } - @RequestMapping(value = { "/portalApi/userAppRoles" }, method = { RequestMethod.PUT }, produces = "application/json") - public FieldsValidator putAppWithUserRoleStateForUser(HttpServletRequest request, @RequestBody AppWithRolesForUser newAppRolesForUser, - HttpServletResponse response) { + @RequestMapping(value = { "/portalApi/userAppRoles" }, method = { + RequestMethod.PUT }, produces = "application/json") + public FieldsValidator putAppWithUserRoleStateForUser(HttpServletRequest request, + @RequestBody AppWithRolesForUser newAppRolesForUser, HttpServletResponse response) { FieldsValidator fieldsValidator = new FieldsValidator(); StringBuilder sbUserApps = new StringBuilder(); - if (newAppRolesForUser!=null) { + if (newAppRolesForUser != null) { sbUserApps.append("User '" + newAppRolesForUser.orgUserId); - if (newAppRolesForUser.appRoles!=null && newAppRolesForUser.appRoles.size()>=1) { + if (newAppRolesForUser.appRoles != null && newAppRolesForUser.appRoles.size() >= 1) { sbUserApps.append("' has roles = { "); - for(RoleInAppForUser appRole : newAppRolesForUser.appRoles) { - if (appRole.isApplied) { - sbUserApps.append(appRole.roleName + " ,"); - } + for (RoleInAppForUser appRole : newAppRolesForUser.appRoles) { + if (appRole.isApplied) { + sbUserApps.append(appRole.roleName + " ,"); + } } - sbUserApps.deleteCharAt(sbUserApps.length()-1); + sbUserApps.deleteCharAt(sbUserApps.length() - 1); sbUserApps.append("} assigned for the app " + newAppRolesForUser.appId); } else { sbUserApps.append("' has no roles assigned for app " + newAppRolesForUser.appId); } } logger.info(EELFLoggerDelegate.applicationLogger, "putAppWithUserRoleStateForUser: {}", sbUserApps.toString()); - + EPUser user = EPUserUtils.getUserSession(request); boolean changesApplied = false; if (!adminRolesService.isAccountAdmin(user)) { EcompPortalUtils.setBadPermissions(user, response, "putAppWithUserRoleStateForUser"); } else { changesApplied = userRolesService.setAppWithUserRoleStateForUser(user, newAppRolesForUser); - if (changesApplied){ - logger.info(EELFLoggerDelegate.applicationLogger, "putAppWithUserRoleStateForUser: succeeded for app {}, user {}", - newAppRolesForUser.appId, newAppRolesForUser.orgUserId); + if (changesApplied) { + logger.info(EELFLoggerDelegate.applicationLogger, + "putAppWithUserRoleStateForUser: succeeded for app {}, user {}", newAppRolesForUser.appId, + newAppRolesForUser.orgUserId); AuditLog auditLog = new AuditLog(); auditLog.setUserId(user.getId()); auditLog.setActivityCode(EcompAuditLog.CD_ACTIVITY_UPDATE_USER); auditLog.setAffectedRecordId(newAppRolesForUser.orgUserId); auditLog.setComments(sbUserApps.toString()); - MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); auditService.logActivity(auditLog, null); - MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - logger.info(EELFLoggerDelegate.auditLogger, EPLogUtil.formatAuditLogMessage("UserRolesController.putAppWithUserRoleStateForUser", - EcompAuditLog.CD_ACTIVITY_UPDATE_USER, user.getOrgUserId(), newAppRolesForUser.orgUserId, sbUserApps.toString())); + MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + EcompPortalUtils.calculateDateTimeDifferenceForLog( + MDC.get(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP), + MDC.get(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP)); + logger.info(EELFLoggerDelegate.auditLogger, + EPLogUtil.formatAuditLogMessage("UserRolesController.putAppWithUserRoleStateForUser", + EcompAuditLog.CD_ACTIVITY_UPDATE_USER, user.getOrgUserId(), + newAppRolesForUser.orgUserId, sbUserApps.toString())); MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); + MDC.remove(SystemProperties.MDC_TIMER); } else { - logger.error(EELFLoggerDelegate.errorLogger, "putAppWithUserRoleStateForUser: failed for app {}, user {}", - newAppRolesForUser.appId, newAppRolesForUser.orgUserId); + logger.error(EELFLoggerDelegate.errorLogger, + "putAppWithUserRoleStateForUser: failed for app {}, user {}", newAppRolesForUser.appId, + newAppRolesForUser.orgUserId); } } EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/userAppRoles", "put result =", changesApplied); return fieldsValidator; } - - @RequestMapping(value = { "/portalApi/updateRemoteUserProfile" }, method = { RequestMethod.GET }, produces = "application/json") - public PortalRestResponse updateRemoteUserProfile(HttpServletRequest request,HttpServletResponse response) { - + + @RequestMapping(value = { "/portalApi/updateRemoteUserProfile" }, method = { + RequestMethod.GET }, produces = "application/json") + public PortalRestResponse updateRemoteUserProfile(HttpServletRequest request, + HttpServletResponse response) { + String updateRemoteUserFlag = FAILURE; try { - //saveNewUser = userService.saveNewUser(newUser); + // saveNewUser = userService.saveNewUser(newUser); String orgUserId = request.getParameter("loginId"); Long appId = Long.parseLong(request.getParameter("appId")); userRolesService.updateRemoteUserProfile(orgUserId, appId); - + } catch (Exception e) { return new PortalRestResponse(PortalRestStatusEnum.OK, updateRemoteUserFlag, e.getMessage()); } return new PortalRestResponse(PortalRestStatusEnum.ERROR, updateRemoteUserFlag, ""); - + } - @RequestMapping(value = { "/portalApi/app/{appId}/users" }, method = { RequestMethod.GET }, produces = "application/json") - public List getUsersFromAppEndpoint(HttpServletRequest request, @PathVariable("appId") Long appId) throws HTTPException { + @RequestMapping(value = { "/portalApi/app/{appId}/users" }, method = { + RequestMethod.GET }, produces = "application/json") + public List getUsersFromAppEndpoint(HttpServletRequest request, + @PathVariable("appId") Long appId) throws HTTPException { try { logger.debug(EELFLoggerDelegate.debugLogger, "/portalApi/app/{}/users was invoked", appId); List appUsers = userRolesService.getUsersFromAppEndpoint(appId); return appUsers; - } catch(Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing UserRolesController.getUsersFromAppEndpoint. Details: " + EcompPortalUtils.getStackTrace(e)); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while performing UserRolesController.getUsersFromAppEndpoint. Details: " + + EcompPortalUtils.getStackTrace(e)); return new ArrayList(); } } - @RequestMapping(value = { "/portalApi/app/{appId}/roles" }, method = { RequestMethod.GET }, produces = "application/json") - public List testGetRoles(HttpServletRequest request, @PathVariable("appId") Long appId) throws HTTPException { + @RequestMapping(value = { "/portalApi/app/{appId}/roles" }, method = { + RequestMethod.GET }, produces = "application/json") + public List testGetRoles(HttpServletRequest request, @PathVariable("appId") Long appId) + throws HTTPException { EcompRole[] appRoles = applicationsRestClientService.get(EcompRole[].class, appId, "/roles"); List rolesList = Arrays.asList(appRoles); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/app/{appId}/roles", "response for appId=" + appId, rolesList); - + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/app/{appId}/roles", "response for appId=" + appId, + rolesList); + return rolesList; } - @RequestMapping(value = { "/portalApi/admin/import/app/{appId}/roles" }, method = { RequestMethod.GET }, produces = "application/json") - public List importRolesFromRemoteApplication(HttpServletRequest request, @PathVariable("appId") Long appId) throws HTTPException { + @RequestMapping(value = { "/portalApi/admin/import/app/{appId}/roles" }, method = { + RequestMethod.GET }, produces = "application/json") + public List importRolesFromRemoteApplication(HttpServletRequest request, @PathVariable("appId") Long appId) + throws HTTPException { List rolesList = userRolesService.importRolesFromRemoteApplication(appId); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/admin/import/app/{appId}/roles", "response for appId=" + appId, rolesList); - + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/admin/import/app/{appId}/roles", + "response for appId=" + appId, rolesList); + return rolesList; } - @RequestMapping(value = { "/portalApi/app/{appId}/user/{orgUserId}/roles" }, method = { RequestMethod.GET }, produces = "application/json") - public EcompRole testGetRoles(HttpServletRequest request, @PathVariable("appId") Long appId, @PathVariable("orgUserId") String orgUserId) throws Exception { + @RequestMapping(value = { "/portalApi/app/{appId}/user/{orgUserId}/roles" }, method = { + RequestMethod.GET }, produces = "application/json") + public EcompRole testGetRoles(HttpServletRequest request, @PathVariable("appId") Long appId, + @PathVariable("orgUserId") String orgUserId) throws Exception { if (!EcompPortalUtils.legitimateUserId(orgUserId)) { String msg = "Error /user//roles not legitimate orgUserId = " + orgUserId; logger.error(EELFLoggerDelegate.errorLogger, msg); throw new Exception(msg); } - EcompRole[] roles = applicationsRestClientService.get(EcompRole[].class, appId, String.format("/user/%s/roles", orgUserId)); + EcompRole[] roles = applicationsRestClientService.get(EcompRole[].class, appId, + String.format("/user/%s/roles", orgUserId)); if (roles.length != 1) { String msg = "Error /user//roles returned array. expected size 1 recieved size = " + roles.length; logger.error(EELFLoggerDelegate.errorLogger, msg); throw new Exception(msg); } - - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/app/{appId}/user/{orgUserId}/roles", "response for appId='" + appId + "' and orgUserId='" + orgUserId + "'", roles[0]); + + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/app/{appId}/user/{orgUserId}/roles", + "response for appId='" + appId + "' and orgUserId='" + orgUserId + "'", roles[0]); return roles[0]; } - - @RequestMapping(value = { "/portalApi/saveUserAppRoles" }, method = { RequestMethod.PUT }, produces = "application/json") - public FieldsValidator putAppWithUserRoleRequest(HttpServletRequest request, @RequestBody AppWithRolesForUser newAppRolesForUser, - HttpServletResponse response) { + + @RequestMapping(value = { "/portalApi/saveUserAppRoles" }, method = { + RequestMethod.PUT }, produces = "application/json") + public FieldsValidator putAppWithUserRoleRequest(HttpServletRequest request, + @RequestBody AppWithRolesForUser newAppRolesForUser, HttpServletResponse response) { FieldsValidator fieldsValidator = null; try { - + EPUser user = EPUserUtils.getUserSession(request); fieldsValidator = userRolesService.putUserAppRolesRequest(newAppRolesForUser, user); response.setStatus(fieldsValidator.httpStatusCode.intValue()); @@ -395,7 +473,7 @@ public class UserRolesController extends EPRestrictedBaseController { response.getStatus()); return fieldsValidator; } - + @RequestMapping(value = { "/portalApi/appCatalogRoles" }, method = { RequestMethod.GET }, produces = "application/json") public List getUserAppCatalogRoles(HttpServletRequest request, @@ -414,22 +492,24 @@ public class UserRolesController extends EPRestrictedBaseController { return userAppRoleList; } + private Comparator getUserAppCatalogRolesComparator = new Comparator() { public int compare(EPUserAppCatalogRoles o1, EPUserAppCatalogRoles o2) { return o1.getRolename().compareTo(o2.getRolename()); } }; - + @RequestMapping(value = "/portalApi/externalRequestAccessSystem", method = RequestMethod.GET, produces = "application/json") public ExternalSystemAccess readExternalRequestAccess(HttpServletRequest request) { ExternalSystemAccess result = null; - try { + try { result = userRolesService.getExternalRequestAccess(); - EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/externalRequestAccessSystem", "GET result =", result); + EcompPortalUtils.logAndSerializeObject(logger, "/portalApi/externalRequestAccessSystem", "GET result =", + result); } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger,"readExternalRequestAccess failed: " + e.getMessage()); - } + logger.error(EELFLoggerDelegate.errorLogger, "readExternalRequestAccess failed: " + e.getMessage()); + } return result; } - + } diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WebAnalyticsExtAppController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WebAnalyticsExtAppController.java index f1d77a3f..b5761617 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WebAnalyticsExtAppController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WebAnalyticsExtAppController.java @@ -1,157 +1,241 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.io.InputStream; -import java.nio.charset.StandardCharsets; - -import javax.servlet.http.HttpServletRequest; - -import org.apache.commons.io.IOUtils; -import org.openecomp.portalapp.controller.EPRestrictedRESTfulBaseController; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EcompAuditLog; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.logging.aop.EPEELFLoggerAdvice; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.service.AppsCacheService; -import org.openecomp.portalapp.portal.transport.Analytics; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.PortalConstants; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.onboarding.crossapi.PortalAPIResponse; -import org.openecomp.portalsdk.core.service.AuditService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.slf4j.MDC; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Configuration; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.ResponseBody; -import org.springframework.web.bind.annotation.RestController; - -import io.swagger.annotations.ApiOperation; - -@RestController -@RequestMapping(PortalConstants.REST_AUX_API) -@Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class WebAnalyticsExtAppController extends EPRestrictedRESTfulBaseController{ - - private static final String APP_KEY = "uebkey"; - - @Autowired - AuditService auditService; - - @Autowired - AppsCacheService appCacheService; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WebAnalyticsExtAppController.class); - - protected boolean isAuxRESTfulCall() { - return true; - } - - /* - * Answers requests from partner applications for a file that is expected to - * contain javascript to support web analytics. - * - * @param request - * @return - * @throws Exception - */ - @ApiOperation(value = "Gets javascript with functions that support gathering and reporting web analytics.", response = String.class) - @RequestMapping(value = { "/analytics" }, method = RequestMethod.GET, produces = "application/javascript") - public String getAnalyticsScript(HttpServletRequest request) throws Exception { - String responseText = ""; - final String fileName = "analytics.txt"; - InputStream analyticsFileStream = null; - try { - analyticsFileStream = this.getClass().getClassLoader().getResourceAsStream(fileName); - responseText = IOUtils.toString(analyticsFileStream, StandardCharsets.UTF_8.name()); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Error reading contents of the file " + fileName, e); - } finally { - if (analyticsFileStream != null) - analyticsFileStream.close(); - } - - String feURLContext = SystemProperties.getProperty("frontend_url"); - String feURL = feURLContext.substring(0, feURLContext.lastIndexOf('/')); - - responseText = responseText.replace("PORTAL_ENV_URL", feURL); - return responseText; - } - - /** - * Accepts data from partner applications with web analytics data. - * - * @param request - * @param analyticsMap - * @param response - * @return - * @throws Exception - */ - @RequestMapping(value = { "/storeAnalytics" }, method = RequestMethod.POST, produces = "application/json") - @ResponseBody - @ApiOperation(value = "Accepts data from partner applications with web analytics data.", response = PortalAPIResponse.class) - public PortalAPIResponse storeAnalyticsScript(HttpServletRequest request, @RequestBody Analytics analyticsMap) throws Exception { - try{ - MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP,EPEELFLoggerAdvice.getCurrentDateTimeUTC()); - String appName = ""; - try { - - String appKeyValue = request.getHeader(APP_KEY); - if(appKeyValue == null || appKeyValue.equals("")) { - logger.error(EELFLoggerDelegate.errorLogger, " App Key unavailable; Proceeding with null app name"); - } else { - EPApp appRecord = appCacheService.getAppForAnalytics(appKeyValue); - if(appRecord == null){ - logger.error(EELFLoggerDelegate.errorLogger, " App could not be found for the key "+ appKeyValue); - } - else appName = appRecord.getName(); - - } - - } catch(Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, " Error retrieving Application to capture app name for analytics; Proceeding with empty app name"); - } - - - - logger.info(EELFLoggerDelegate.auditLogger, EPLogUtil.formatStoreAnalyticsAuditLogMessage(analyticsMap.getUserId(),appName, "WebAnalyticsExtAppController.postWebAnalyticsData", - EcompAuditLog.CD_ACTIVITY_STORE_ANALYTICS, analyticsMap.getAction(),analyticsMap.getPage(),analyticsMap.getFunction(),analyticsMap.getType())); - MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); - MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); - - PortalAPIResponse response = new PortalAPIResponse(true, "success"); - return response; - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "storeAnalytics failed", e); - PortalAPIResponse response = new PortalAPIResponse(true, "error"); - return response; - } - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.io.InputStream; +import java.nio.charset.StandardCharsets; +import java.util.HashMap; +import java.util.Map; + +import javax.servlet.http.HttpServletRequest; + +import org.apache.commons.io.IOUtils; +import org.openecomp.portalapp.controller.EPRestrictedRESTfulBaseController; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EcompAuditLog; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.logging.aop.EPEELFLoggerAdvice; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.service.AppsCacheService; +import org.openecomp.portalapp.portal.service.ConsulHealthService; +import org.openecomp.portalapp.portal.transport.Analytics; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.portal.utils.PortalConstants; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.onboarding.crossapi.PortalAPIResponse; +import org.openecomp.portalsdk.core.service.AuditService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.slf4j.MDC; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpMethod; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.util.concurrent.FailureCallback; +import org.springframework.util.concurrent.ListenableFuture; +import org.springframework.util.concurrent.SuccessCallback; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.ResponseBody; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.AsyncRestTemplate; + +import io.swagger.annotations.ApiOperation; + +@RestController +@RequestMapping(PortalConstants.REST_AUX_API) +@Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class WebAnalyticsExtAppController extends EPRestrictedRESTfulBaseController { + + @Autowired + private ConsulHealthService consulHealthService; + + private static final String MACHINE_LEARNING_SERVICE_CTX = "/ml_api"; + private static final String REGISTER_ACTION = MACHINE_LEARNING_SERVICE_CTX + "/" + "registerAction"; + private static final String CONSUL_ML_SERVICE_ID = "machine-learning"; + private static final String SERVICE_PROTOCOL = "http"; + private static final String APP_KEY = "uebkey"; + + @Autowired + AuditService auditService; + + @Autowired + AppsCacheService appCacheService; + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WebAnalyticsExtAppController.class); + + private AsyncRestTemplate restTemplate = new AsyncRestTemplate(); + + SuccessCallback> successCallback = new SuccessCallback>() { + @Override + public void onSuccess(ResponseEntity arg) { + logger.info(EELFLoggerDelegate.debugLogger, arg.getBody()); + } + }; + + FailureCallback failureCallback = new FailureCallback() { + @Override + public void onFailure(Throwable arg) { + logger.error(EELFLoggerDelegate.errorLogger, "storeAuxAnalytics failed", arg); + } + }; + + protected boolean isAuxRESTfulCall() { + return true; + } + + /** + * Answers requests from partner applications for a file that is expected to + * contain javascript to support web analytics. + * + * @param request + * HttpServletRequest + * @return String + * @throws Exception + * on failure + */ + @ApiOperation(value = "Gets javascript with functions that support gathering and reporting web analytics.", response = String.class) + @RequestMapping(value = { "/analytics" }, method = RequestMethod.GET, produces = "application/javascript") + public String getAnalyticsScript(HttpServletRequest request) throws Exception { + String responseText = ""; + final String fileName = "analytics.txt"; + InputStream analyticsFileStream = null; + try { + analyticsFileStream = this.getClass().getClassLoader().getResourceAsStream(fileName); + responseText = IOUtils.toString(analyticsFileStream, StandardCharsets.UTF_8.name()); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "Error reading contents of the file " + fileName, e); + } finally { + if (analyticsFileStream != null) + analyticsFileStream.close(); + } + + String feURLContext = SystemProperties.getProperty("frontend_url"); + String feURL = feURLContext.substring(0, feURLContext.lastIndexOf('/')); + + responseText = responseText.replace("PORTAL_ENV_URL", feURL); + return responseText; + } + + /** + * Accepts data from partner applications with web analytics data. + * + * @param request + * HttpServletRequest + * @param analyticsMap + * Analytics + * @return PortalAPIResponse + * @throws Exception + * on failure + */ + @RequestMapping(value = { "/storeAnalytics" }, method = RequestMethod.POST, produces = "application/json") + @ResponseBody + @ApiOperation(value = "Accepts data from partner applications with web analytics data.", response = PortalAPIResponse.class) + public PortalAPIResponse storeAnalyticsScript(HttpServletRequest request, @RequestBody Analytics analyticsMap) + throws Exception { + try { + MDC.put(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + String appName = ""; + try { + appName = getAppName(request, appName); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + " Error retrieving Application to capture app name for analytics; Proceeding with empty app name"); + } + + try { + storeAuxAnalytics(analyticsMap, appName); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + " Error retrieving Application to capture app name for analytics; Proceeding with empty app name"); + } + + MDC.put(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP, EPEELFLoggerAdvice.getCurrentDateTimeUTC()); + + EcompPortalUtils.calculateDateTimeDifferenceForLog( + MDC.get(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP), + MDC.get(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP)); + logger.info(EELFLoggerDelegate.auditLogger, + EPLogUtil.formatStoreAnalyticsAuditLogMessage(analyticsMap.getUserId(), appName, + "WebAnalyticsExtAppController.postWebAnalyticsData", + EcompAuditLog.CD_ACTIVITY_STORE_ANALYTICS, analyticsMap.getAction(), analyticsMap.getPage(), + analyticsMap.getFunction(), analyticsMap.getType())); + + MDC.remove(EPCommonSystemProperties.AUDITLOG_BEGIN_TIMESTAMP); + MDC.remove(EPCommonSystemProperties.AUDITLOG_END_TIMESTAMP); + MDC.remove(SystemProperties.MDC_TIMER); + + PortalAPIResponse response = new PortalAPIResponse(true, "success"); + return response; + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "storeAnalytics failed", e); + PortalAPIResponse response = new PortalAPIResponse(true, "error"); + return response; + } + } + + protected String getAppName(HttpServletRequest request, String appName) { + String appKeyValue = request.getHeader(APP_KEY); + if (appKeyValue == null || appKeyValue.equals("")) { + logger.error(EELFLoggerDelegate.errorLogger, " App Key unavailable; Proceeding with null app name"); + } else { + EPApp appRecord = appCacheService.getAppForAnalytics(appKeyValue); + if (appRecord == null) { + logger.error(EELFLoggerDelegate.errorLogger, " App could not be found for the key " + appKeyValue); + } else + appName = appRecord.getName(); + + } + return appName; + } + + protected void storeAuxAnalytics(Analytics analyticsMap, String appName) { + logger.info(EELFLoggerDelegate.debugLogger, + " Registering an action for recommendation: AppName/Function/UserId " + appName + "/" + + analyticsMap.getFunction() + "/" + analyticsMap.getUserId()); + + Map requestMapping = new HashMap(); + requestMapping.put("id", analyticsMap.getUserId()); + requestMapping.put("action", appName + "|" + analyticsMap.getFunction()); + + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON); + + // set your entity to send + HttpEntity> entity = new HttpEntity>(requestMapping, headers); + + // send it! + ListenableFuture> out = restTemplate.exchange( + SERVICE_PROTOCOL + "://" + + consulHealthService.getServiceLocation(CONSUL_ML_SERVICE_ID, + SystemProperties.getProperty("microservices.m-learn.local.port")) + + REGISTER_ACTION, + HttpMethod.POST, entity, String.class); + out.addCallback(successCallback, failureCallback); + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WidgetsCatalogController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WidgetsCatalogController.java index f69a6484..9ac81e9a 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WidgetsCatalogController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WidgetsCatalogController.java @@ -1,376 +1,392 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.io.File; -import java.io.FileInputStream; -import java.io.FileOutputStream; -import java.io.IOException; -import java.io.OutputStream; -import java.util.ArrayList; -import java.util.List; - -import javax.servlet.ServletContext; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.openecomp.portalapp.controller.EPRestrictedBaseController; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.MicroserviceData; -import org.openecomp.portalapp.portal.domain.MicroserviceParameter; -import org.openecomp.portalapp.portal.domain.WidgetCatalog; -import org.openecomp.portalapp.portal.domain.WidgetCatalogParameter; -import org.openecomp.portalapp.portal.domain.WidgetParameterResult; -import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.ConsulHealthService; -import org.openecomp.portalapp.portal.service.MicroserviceService; -import org.openecomp.portalapp.portal.service.WidgetParameterService; -import org.openecomp.portalapp.util.EPUserUtils; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.core.io.FileSystemResource; -import org.springframework.http.HttpEntity; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpMethod; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.util.LinkedMultiValueMap; -import org.springframework.util.MultiValueMap; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestBody; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.web.client.RestClientException; -import org.springframework.web.client.RestTemplate; -import org.springframework.web.multipart.MultipartFile; -import org.springframework.web.multipart.MultipartHttpServletRequest; -import org.springframework.web.multipart.commons.CommonsMultipartResolver; - -@SuppressWarnings("unchecked") -@RestController -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class WidgetsCatalogController extends EPRestrictedBaseController { - - private static final String HTTPS = "https://"; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WidgetsCatalogController.class); - RestTemplate template = new RestTemplate(); - String whatService = "widgets-service"; - - @Autowired - private ConsulHealthService consulHealthService; - - @Autowired - private MicroserviceService microserviceService; - - @Autowired - private WidgetParameterService widgetParameterService; - - @Bean - public CommonsMultipartResolver multipartResolver() { - return new CommonsMultipartResolver(); - } - - static { - // for localhost testing only - javax.net.ssl.HttpsURLConnection.setDefaultHostnameVerifier(new javax.net.ssl.HostnameVerifier() { - - public boolean verify(String hostname, javax.net.ssl.SSLSession sslSession) { - if (hostname.equals("localhost")) { - return true; - } - return false; - } - }); - } - - @RequestMapping(value = { "/portalApi/microservices/widgetCatalog/{loginName}" }, method = RequestMethod.GET) - public List getUserWidgetCatalog(HttpServletRequest request, HttpServletResponse response, - @PathVariable("loginName") String loginName) throws RestClientException, Exception { - List widgets = new ArrayList<>(); - try { - ResponseEntity ans = template.exchange( - HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/widgetCatalog/" + loginName, - HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), ArrayList.class); - widgets = ans.getBody(); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getUserWidgetCatalog failed", e); - // returning null because null help check on the UI if there was a - // communication problem with Microservice. - return null; - } - return widgets; - } - - @RequestMapping(value = { "/portalApi/microservices/widgetCatalog" }, method = RequestMethod.GET) - public List getWidgetCatalog(HttpServletRequest request, HttpServletResponse response) - throws RestClientException, Exception { - List widgets = new ArrayList<>(); - try { - ResponseEntity ans = template.exchange( - HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/widgetCatalog", - HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), ArrayList.class); - widgets = ans.getBody(); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getWidgetCatalog failed", e); - // returning null because null help check on the UI if there was a - // communication problem with Microservice. - return null; - } - return widgets; - } - - @RequestMapping(value = { - "/portalApi/microservices/widgetCatalog/{widgetId}" }, method = RequestMethod.PUT, produces = "application/json") - public void updateWidgetCatalog(HttpServletRequest request, HttpServletResponse response, - @RequestBody WidgetCatalog newWidgetCatalog, @PathVariable("widgetId") long widgetId) - throws RestClientException, Exception { - template.exchange( - HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/widgetCatalog/" + widgetId, - HttpMethod.PUT, new HttpEntity(newWidgetCatalog, WidgetServiceHeaders.getInstance()), String.class); - } - - @RequestMapping(value = { "/portalApi/microservices/widgetCatalog/{widgetId}" }, method = RequestMethod.DELETE) - public void deleteOnboardingWidget(HttpServletRequest request, HttpServletResponse response, - @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { - template.exchange( - HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/widgetCatalog/" + widgetId, - HttpMethod.DELETE, new HttpEntity(WidgetServiceHeaders.getInstance()), String.class); - } - - @RequestMapping(value = { "/portalApi/microservices/widgetCatalog/{widgetId}" }, method = RequestMethod.POST) - public String updateWidgetCatalogWithFiles(HttpServletRequest request, HttpServletResponse response, - @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { - MultipartHttpServletRequest mRequest; - MultiValueMap multipartRequest = new LinkedMultiValueMap<>(); - String fileName; - String tmp_folder = "/tmp/"; - String respond = null; - FileOutputStream fo = null; - try { - mRequest = (MultipartHttpServletRequest) request; - MultipartFile mFile = mRequest.getFile("file"); - fileName = mFile.getOriginalFilename(); - fo = new FileOutputStream(tmp_folder + fileName); - fo.write(mFile.getBytes()); - - HttpHeaders header = new HttpHeaders(); - header.setContentType(MediaType.MULTIPART_FORM_DATA); - multipartRequest.add("file", new FileSystemResource(tmp_folder + fileName)); - multipartRequest.add("widget", request.getParameter("newWidget")); - respond = template.postForObject( - HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/widgetCatalog/" + widgetId, - new HttpEntity<>(multipartRequest, WidgetServiceHeaders.getInstance()), String.class); - File f = new File(tmp_folder + fileName); - f.delete(); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "updateWidgetCatalogWithFiles failed", e); - } finally { - try { - if (fo != null) - fo.close(); - } catch (IOException e) { - logger.error(EELFLoggerDelegate.errorLogger, "updateWidgetCatalogWithFiles failed 2", e); - } - } - return respond; - } - - @RequestMapping(value = { "/portalApi/microservices/widgetCatalog" }, method = RequestMethod.POST) - public String createWidgetCatalog(HttpServletRequest request, HttpServletResponse response) - throws RestClientException, Exception { - MultipartHttpServletRequest mRequest; - MultiValueMap multipartRequest = new LinkedMultiValueMap<>(); - String fileName; - String tmp_folder = "/tmp/"; - String respond = null; - FileOutputStream fo = null; - try { - mRequest = (MultipartHttpServletRequest) request; - MultipartFile mFile = mRequest.getFile("file"); - fileName = mFile.getOriginalFilename(); - fo = new FileOutputStream(tmp_folder + fileName); - fo.write(mFile.getBytes()); - - HttpHeaders header = new HttpHeaders(); - header.setContentType(MediaType.MULTIPART_FORM_DATA); - multipartRequest.add("file", new FileSystemResource(tmp_folder + fileName)); - multipartRequest.add("widget", request.getParameter("newWidget")); - - respond = template.postForObject( - HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/widgetCatalog", - new HttpEntity<>(multipartRequest, WidgetServiceHeaders.getInstance()), String.class); - File f = new File(tmp_folder + fileName); - f.delete(); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "createWidgetCatalog failed", e); - } finally { - try { - if (fo != null) - fo.close(); - } catch (IOException e) { - logger.error(EELFLoggerDelegate.errorLogger, "createWidgetCatalog failed 2", e); - } - } - return respond; - } - - @RequestMapping(value = "/portalApi/microservices/{widgetId}/framework.js", method = RequestMethod.GET) - public String getWidgetFramework(HttpServletRequest request, HttpServletResponse response, - @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { - return template.getForObject(HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/" + widgetId + "/framework.js", String.class, - WidgetServiceHeaders.getInstance()); - } - - @RequestMapping(value = "/portalApi/microservices/{widgetId}/controller.js", method = RequestMethod.GET) - public String getWidgetController(HttpServletRequest request, HttpServletResponse response, - @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { - return template.getForObject(HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/" + widgetId + "/controller.js", String.class, - WidgetServiceHeaders.getInstance()); - } - - @RequestMapping(value = "/portalApi/microservices/{widgetId}/style.css", method = RequestMethod.GET) - public String getWidgetCSS(HttpServletRequest request, HttpServletResponse response, - @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { - return template.getForObject(HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/" + widgetId + "/styles.css", String.class, - WidgetServiceHeaders.getInstance()); - } - - @RequestMapping(value = { "/portalApi/microservices/parameters/{widgetId}" }, method = RequestMethod.GET) - public PortalRestResponse> getWidgetParameterResult(HttpServletRequest request, - HttpServletResponse response, @PathVariable("widgetId") long widgetId) throws Exception { - EPUser user = EPUserUtils.getUserSession(request); - - List list = new ArrayList<>(); - Long serviceId = template.exchange( - HTTPS + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/widgetCatalog/parameters/" + widgetId, - HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), Long.class).getBody(); - if (serviceId == null) { - // return ok/sucess and no service parameter for this widget - return new PortalRestResponse>(PortalRestStatusEnum.WARN, - "No service parameters for this widget", list); - } else { - List defaultParam = microserviceService.getParametersById(serviceId); - for (MicroserviceParameter param : defaultParam) { - WidgetParameterResult user_result = new WidgetParameterResult(); - user_result.setParam_id(param.getId()); - user_result.setDefault_value(param.getPara_value()); - user_result.setParam_key(param.getPara_key()); - WidgetCatalogParameter userValue = widgetParameterService.getUserParamById(widgetId, user.getId(), - param.getId()); - if (userValue == null) - user_result.setUser_value(param.getPara_value()); - else { - user_result.setUser_value(userValue.getUser_value()); - } - list.add(user_result); - } - } - return new PortalRestResponse>(PortalRestStatusEnum.OK, "SUCCESS", list); - } - - @RequestMapping(value = { "/portalApi/microservices/services/{paramId}" }, method = RequestMethod.GET) - public List getUserParameterById(HttpServletRequest request, HttpServletResponse response, - @PathVariable("paramId") long paramId) throws Exception { - List list = widgetParameterService.getUserParameterById(paramId); - return list; - } - - @RequestMapping(value = { "/portalApi/microservices/services/{paramId}" }, method = RequestMethod.DELETE) - public void deleteUserParameterById(HttpServletRequest request, HttpServletResponse response, - @PathVariable("paramId") long paramId) throws Exception { - widgetParameterService.deleteUserParameterById(paramId); - } - - @RequestMapping(value = { "/portalApi/microservices/download/{widgetId}" }, method = RequestMethod.GET) - public void doDownload(HttpServletRequest request, HttpServletResponse response, - @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { - - ServletContext context = request.getServletContext(); - byte[] byteFile = template.exchange(HTTPS + consulHealthService.getServiceLocation(whatService) + "/widget/microservices/download/" + widgetId, - HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), byte[].class).getBody(); - String fileLocation = widgetId + ".zip"; - FileOutputStream stream = new FileOutputStream(fileLocation); - stream.write(byteFile); - stream.close(); - - File downloadFile = new File(fileLocation); - FileInputStream inputStream = new FileInputStream(downloadFile); - String mimeType = context.getMimeType(downloadFile.getPath()); - if (mimeType == null) { - mimeType = "application/octet-stream"; - } - - response.setContentType(mimeType); - response.setContentLength((int) downloadFile.length()); - String headerKey = "Content-Disposition"; - String headerValue = String.format("attachment; filename=\"%s\"", downloadFile.getName()); - downloadFile.delete(); - response.setHeader(headerKey, headerValue); - - OutputStream outStream = response.getOutputStream(); - byte[] buffer = new byte[32 * 1024]; - int bytesRead = -1; - while ((bytesRead = inputStream.read(buffer)) != -1) { - outStream.write(buffer, 0, bytesRead); - } - - inputStream.close(); - outStream.close(); - } - - @RequestMapping(value = { "/portalApi/microservices/parameters" }, method = RequestMethod.POST) - public PortalRestResponse saveWidgetParameter(HttpServletRequest request, HttpServletResponse response, - @RequestBody WidgetCatalogParameter widgetParameters) throws Exception { - EPUser user = EPUserUtils.getUserSession(request); - widgetParameters.setUserId(user.getId()); - try { - WidgetCatalogParameter oldParam = widgetParameterService.getUserParamById(widgetParameters.getWidgetId(), - widgetParameters.getUserId(), widgetParameters.getParamId()); - if (oldParam != null) { - widgetParameters.setId(oldParam.getId()); - } - widgetParameterService.saveUserParameter(widgetParameters); - - } catch (Exception e) { - return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); - } - return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.io.File; +import java.io.FileInputStream; +import java.io.FileOutputStream; +import java.io.IOException; +import java.io.OutputStream; +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.ServletContext; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.controller.EPRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.MicroserviceParameter; +import org.openecomp.portalapp.portal.domain.WidgetCatalog; +import org.openecomp.portalapp.portal.domain.WidgetCatalogParameter; +import org.openecomp.portalapp.portal.domain.WidgetParameterResult; +import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; +import org.openecomp.portalapp.portal.ecomp.model.PortalRestStatusEnum; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.ConsulHealthService; +import org.openecomp.portalapp.portal.service.MicroserviceService; +import org.openecomp.portalapp.portal.service.WidgetParameterService; +import org.openecomp.portalapp.util.EPUserUtils; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.core.io.FileSystemResource; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpMethod; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.util.LinkedMultiValueMap; +import org.springframework.util.MultiValueMap; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.RestClientException; +import org.springframework.web.client.RestTemplate; +import org.springframework.web.multipart.MultipartFile; +import org.springframework.web.multipart.MultipartHttpServletRequest; +import org.springframework.web.multipart.commons.CommonsMultipartResolver; + +@SuppressWarnings("unchecked") +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class WidgetsCatalogController extends EPRestrictedBaseController { + + private static final String HTTPS = "https://"; + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WidgetsCatalogController.class); + RestTemplate template = new RestTemplate(); + String whatService = "widgets-service"; + + @Autowired + private ConsulHealthService consulHealthService; + + @Autowired + private MicroserviceService microserviceService; + + @Autowired + private WidgetParameterService widgetParameterService; + + @Bean + public CommonsMultipartResolver multipartResolver() { + return new CommonsMultipartResolver(); + } + + static { + // for localhost testing only + javax.net.ssl.HttpsURLConnection.setDefaultHostnameVerifier(new javax.net.ssl.HostnameVerifier() { + + public boolean verify(String hostname, javax.net.ssl.SSLSession sslSession) { + if (hostname.equals("localhost")) { + return true; + } + return false; + } + }); + } + + @RequestMapping(value = { "/portalApi/microservices/widgetCatalog/{loginName}" }, method = RequestMethod.GET) + public List getUserWidgetCatalog(HttpServletRequest request, HttpServletResponse response, + @PathVariable("loginName") String loginName) throws RestClientException, Exception { + List widgets = new ArrayList<>(); + try { + ResponseEntity ans = template.exchange( + HTTPS + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog/" + loginName, + HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), ArrayList.class); + widgets = ans.getBody(); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getUserWidgetCatalog failed", e); + // returning null because null help check on the UI if there was a + // communication problem with Microservice. + return null; + } + return widgets; + } + + @RequestMapping(value = { "/portalApi/microservices/widgetCatalog" }, method = RequestMethod.GET) + public List getWidgetCatalog(HttpServletRequest request, HttpServletResponse response) + throws RestClientException, Exception { + List widgets = new ArrayList<>(); + try { + ResponseEntity ans = template.exchange( + HTTPS + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog", + HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), ArrayList.class); + widgets = ans.getBody(); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getWidgetCatalog failed", e); + // returning null because null help check on the UI if there was a + // communication problem with Microservice. + return null; + } + return widgets; + } + + @RequestMapping(value = { + "/portalApi/microservices/widgetCatalog/{widgetId}" }, method = RequestMethod.PUT, produces = "application/json") + public void updateWidgetCatalog(HttpServletRequest request, HttpServletResponse response, + @RequestBody WidgetCatalog newWidgetCatalog, @PathVariable("widgetId") long widgetId) + throws RestClientException, Exception { + template.exchange( + HTTPS + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog/" + widgetId, + HttpMethod.PUT, new HttpEntity(newWidgetCatalog, WidgetServiceHeaders.getInstance()), String.class); + } + + @RequestMapping(value = { "/portalApi/microservices/widgetCatalog/{widgetId}" }, method = RequestMethod.DELETE) + public void deleteOnboardingWidget(HttpServletRequest request, HttpServletResponse response, + @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { + template.exchange( + HTTPS + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog/" + widgetId, + HttpMethod.DELETE, new HttpEntity(WidgetServiceHeaders.getInstance()), String.class); + } + + @RequestMapping(value = { "/portalApi/microservices/widgetCatalog/{widgetId}" }, method = RequestMethod.POST) + public String updateWidgetCatalogWithFiles(HttpServletRequest request, HttpServletResponse response, + @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { + MultipartHttpServletRequest mRequest; + MultiValueMap multipartRequest = new LinkedMultiValueMap<>(); + String fileName; + String tmp_folder = "/tmp/"; + String respond = null; + FileOutputStream fo = null; + try { + mRequest = (MultipartHttpServletRequest) request; + MultipartFile mFile = mRequest.getFile("file"); + fileName = mFile.getOriginalFilename(); + fo = new FileOutputStream(tmp_folder + fileName); + fo.write(mFile.getBytes()); + + HttpHeaders header = new HttpHeaders(); + header.setContentType(MediaType.MULTIPART_FORM_DATA); + multipartRequest.add("file", new FileSystemResource(tmp_folder + fileName)); + multipartRequest.add("widget", request.getParameter("newWidget")); + respond = template.postForObject( + HTTPS + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog/" + widgetId, + new HttpEntity<>(multipartRequest, WidgetServiceHeaders.getInstance()), String.class); + File f = new File(tmp_folder + fileName); + f.delete(); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "updateWidgetCatalogWithFiles failed", e); + } finally { + try { + if (fo != null) + fo.close(); + } catch (IOException e) { + logger.error(EELFLoggerDelegate.errorLogger, "updateWidgetCatalogWithFiles failed 2", e); + } + } + return respond; + } + + @RequestMapping(value = { "/portalApi/microservices/widgetCatalog" }, method = RequestMethod.POST) + public String createWidgetCatalog(HttpServletRequest request, HttpServletResponse response) + throws RestClientException, Exception { + MultipartHttpServletRequest mRequest; + MultiValueMap multipartRequest = new LinkedMultiValueMap<>(); + String fileName; + String tmp_folder = "/tmp/"; + String respond = null; + FileOutputStream fo = null; + try { + mRequest = (MultipartHttpServletRequest) request; + MultipartFile mFile = mRequest.getFile("file"); + fileName = mFile.getOriginalFilename(); + fo = new FileOutputStream(tmp_folder + fileName); + fo.write(mFile.getBytes()); + + HttpHeaders header = new HttpHeaders(); + header.setContentType(MediaType.MULTIPART_FORM_DATA); + multipartRequest.add("file", new FileSystemResource(tmp_folder + fileName)); + multipartRequest.add("widget", request.getParameter("newWidget")); + + respond = template.postForObject( + HTTPS + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog", + new HttpEntity<>(multipartRequest, WidgetServiceHeaders.getInstance()), String.class); + File f = new File(tmp_folder + fileName); + f.delete(); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "createWidgetCatalog failed", e); + } finally { + try { + if (fo != null) + fo.close(); + } catch (IOException e) { + logger.error(EELFLoggerDelegate.errorLogger, "createWidgetCatalog failed 2", e); + } + } + return respond; + } + + @RequestMapping(value = "/portalApi/microservices/{widgetId}/framework.js", method = RequestMethod.GET) + public String getWidgetFramework(HttpServletRequest request, HttpServletResponse response, + @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { + return template.getForObject(HTTPS + + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/" + widgetId + "/framework.js", String.class, + WidgetServiceHeaders.getInstance()); + } + + @RequestMapping(value = "/portalApi/microservices/{widgetId}/controller.js", method = RequestMethod.GET) + public String getWidgetController(HttpServletRequest request, HttpServletResponse response, + @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { + return template.getForObject(HTTPS + + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/" + widgetId + "/controller.js", String.class, + WidgetServiceHeaders.getInstance()); + } + + @RequestMapping(value = "/portalApi/microservices/{widgetId}/style.css", method = RequestMethod.GET) + public String getWidgetCSS(HttpServletRequest request, HttpServletResponse response, + @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { + return template.getForObject(HTTPS + + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/" + widgetId + "/styles.css", String.class, + WidgetServiceHeaders.getInstance()); + } + + @RequestMapping(value = { "/portalApi/microservices/parameters/{widgetId}" }, method = RequestMethod.GET) + public PortalRestResponse> getWidgetParameterResult(HttpServletRequest request, + HttpServletResponse response, @PathVariable("widgetId") long widgetId) throws Exception { + EPUser user = EPUserUtils.getUserSession(request); + + List list = new ArrayList<>(); + Long serviceId = template.exchange( + HTTPS + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog/parameters/" + widgetId, + HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), Long.class).getBody(); + if (serviceId == null) { + // return ok/sucess and no service parameter for this widget + return new PortalRestResponse>(PortalRestStatusEnum.WARN, + "No service parameters for this widget", list); + } else { + List defaultParam = microserviceService.getParametersById(serviceId); + for (MicroserviceParameter param : defaultParam) { + WidgetParameterResult user_result = new WidgetParameterResult(); + user_result.setParam_id(param.getId()); + user_result.setDefault_value(param.getPara_value()); + user_result.setParam_key(param.getPara_key()); + WidgetCatalogParameter userValue = widgetParameterService.getUserParamById(widgetId, user.getId(), + param.getId()); + if (userValue == null) + user_result.setUser_value(param.getPara_value()); + else { + user_result.setUser_value(userValue.getUser_value()); + } + list.add(user_result); + } + } + return new PortalRestResponse>(PortalRestStatusEnum.OK, "SUCCESS", list); + } + + @RequestMapping(value = { "/portalApi/microservices/services/{paramId}" }, method = RequestMethod.GET) + public List getUserParameterById(HttpServletRequest request, HttpServletResponse response, + @PathVariable("paramId") long paramId) throws Exception { + List list = widgetParameterService.getUserParameterById(paramId); + return list; + } + + @RequestMapping(value = { "/portalApi/microservices/services/{paramId}" }, method = RequestMethod.DELETE) + public void deleteUserParameterById(HttpServletRequest request, HttpServletResponse response, + @PathVariable("paramId") long paramId) throws Exception { + widgetParameterService.deleteUserParameterById(paramId); + } + + @RequestMapping(value = { "/portalApi/microservices/download/{widgetId}" }, method = RequestMethod.GET) + public void doDownload(HttpServletRequest request, HttpServletResponse response, + @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { + + ServletContext context = request.getServletContext(); + byte[] byteFile = template.exchange( + HTTPS + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/download/" + widgetId, + HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), byte[].class).getBody(); + + File downloadFile = File.createTempFile("temp", ".zip"); + FileOutputStream stream = new FileOutputStream(downloadFile.getPath()); + stream.write(byteFile); + stream.close(); + + FileInputStream inputStream = new FileInputStream(downloadFile); + String mimeType = context.getMimeType(downloadFile.getPath()); + if (mimeType == null) { + mimeType = "application/octet-stream"; + } + + response.setContentType(mimeType); + response.setContentLength((int) downloadFile.length()); + String headerKey = "Content-Disposition"; + String headerValue = String.format("attachment; filename=\"%s\"", downloadFile.getName()); + downloadFile.delete(); + response.setHeader(headerKey, headerValue); + + OutputStream outStream = response.getOutputStream(); + byte[] buffer = new byte[32 * 1024]; + int bytesRead = -1; + while ((bytesRead = inputStream.read(buffer)) != -1) { + outStream.write(buffer, 0, bytesRead); + } + + inputStream.close(); + outStream.close(); + } + + @RequestMapping(value = { "/portalApi/microservices/parameters" }, method = RequestMethod.POST) + public PortalRestResponse saveWidgetParameter(HttpServletRequest request, HttpServletResponse response, + @RequestBody WidgetCatalogParameter widgetParameters) throws Exception { + EPUser user = EPUserUtils.getUserSession(request); + widgetParameters.setUserId(user.getId()); + try { + WidgetCatalogParameter oldParam = widgetParameterService.getUserParamById(widgetParameters.getWidgetId(), + widgetParameters.getUserId(), widgetParameters.getParamId()); + if (oldParam != null) { + widgetParameters.setId(oldParam.getId()); + } + widgetParameterService.saveUserParameter(widgetParameters); + + } catch (Exception e) { + return new PortalRestResponse(PortalRestStatusEnum.ERROR, "FAILURE", e.getMessage()); + } + return new PortalRestResponse(PortalRestStatusEnum.OK, "SUCCESS", ""); + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WidgetsCatalogMarkupController.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WidgetsCatalogMarkupController.java index 78499ef8..b0bc9fc4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WidgetsCatalogMarkupController.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/controller/WidgetsCatalogMarkupController.java @@ -1,83 +1,86 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.web.bind.annotation.PathVariable; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.bind.annotation.RestController; -import org.springframework.web.client.RestClientException; -import org.springframework.web.client.RestTemplate; -import org.springframework.web.multipart.commons.CommonsMultipartResolver; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalapp.controller.EPUnRestrictedBaseController; -import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.service.ConsulHealthService; - -@SuppressWarnings("unchecked") -@RestController -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPAuditLog -public class WidgetsCatalogMarkupController extends EPUnRestrictedBaseController { - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WidgetsCatalogMarkupController.class); - RestTemplate template = new RestTemplate(); - String whatService = "widgets-service"; - - - @Autowired - private ConsulHealthService consulHealthService; - - @Bean - public CommonsMultipartResolver multipartResolver() { - return new CommonsMultipartResolver(); - } - - static { - //for localhost testing only - javax.net.ssl.HttpsURLConnection.setDefaultHostnameVerifier( - new javax.net.ssl.HostnameVerifier(){ - - public boolean verify(String hostname, - javax.net.ssl.SSLSession sslSession) { - if (hostname.equals("localhost")) { - return true; - } - return false; - } - }); - } - - - @RequestMapping(value = "/portalApi/microservices/markup/{widgetId}", method = RequestMethod.GET) - public String getWidgetMarkup(HttpServletRequest request, HttpServletResponse response, - @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { - return template.getForObject("https://" + consulHealthService.getServiceLocation(whatService) + "/widget/microservices/markup/" + widgetId, String.class, - WidgetServiceHeaders.getInstance()); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalapp.controller.EPUnRestrictedBaseController; +import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.service.ConsulHealthService; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.client.RestClientException; +import org.springframework.web.client.RestTemplate; +import org.springframework.web.multipart.commons.CommonsMultipartResolver; + +@RestController +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPAuditLog +public class WidgetsCatalogMarkupController extends EPUnRestrictedBaseController { + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WidgetsCatalogMarkupController.class); + + private RestTemplate template = new RestTemplate(); + + private final String whatService = "widgets-service"; + + @Autowired + private ConsulHealthService consulHealthService; + + @Bean + public CommonsMultipartResolver multipartResolver() { + return new CommonsMultipartResolver(); + } + + static { + // for localhost testing only + javax.net.ssl.HttpsURLConnection.setDefaultHostnameVerifier(new javax.net.ssl.HostnameVerifier() { + + public boolean verify(String hostname, javax.net.ssl.SSLSession sslSession) { + if (hostname.equals("localhost")) { + return true; + } + return false; + } + }); + } + + @RequestMapping(value = "/portalApi/microservices/markup/{widgetId}", method = RequestMethod.GET) + public String getWidgetMarkup(HttpServletRequest request, HttpServletResponse response, + @PathVariable("widgetId") long widgetId) throws RestClientException, Exception { + return template + .getForObject( + "https://" + + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/markup/" + widgetId, + String.class, WidgetServiceHeaders.getInstance()); + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/App.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/App.java index 21068513..794f26c0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/App.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/App.java @@ -1,62 +1,62 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; - -//@Entity -//@Table(name = "FN_APP") -public class App implements Serializable{ - - private static final long serialVersionUID = 1L; - - //@Id - //@Column(name = "APP_ID") - //@GeneratedValue(strategy=GenerationType.AUTO) - private Long appId; - - //@Column(name = "APP_Name") - private String appName; - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public String getAppName() { - return appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; + +//@Entity +//@Table(name = "FN_APP") +public class App implements Serializable{ + + private static final long serialVersionUID = 1L; + + //@Id + //@Column(name = "APP_ID") + //@GeneratedValue(strategy=GenerationType.AUTO) + private Long appId; + + //@Column(name = "APP_Name") + private String appName; + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public String getAppName() { + return appName; + } + + public void setAppName(String appName) { + this.appName = appName; + } + + + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppContactUs.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppContactUs.java index d399c825..be3baa0c 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppContactUs.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppContactUs.java @@ -1,86 +1,86 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -/** - * Models rows in the fn_app_contact_us table added for 1610.1. - */ -public class AppContactUs extends DomainVo { - - private static final long serialVersionUID = -2742197830465055134L; - - private EPApp app; - private String description; - private String contactEmail; - private String contactName; - private String url; - private String activeYN; - - public EPApp getApp() { - return app; - } - - public void setApp(EPApp app) { - this.app = app; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getContactEmail() { - return contactEmail; - } - - public void setContactEmail(String contactEmail) { - this.contactEmail = contactEmail; - } - - public String getContactName() { - return contactName; - } - - public void setContactName(String contactName) { - this.contactName = contactName; - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } - - public String getActiveYN() { - return activeYN; - } - - public void setActiveYN(String activeYN) { - this.activeYN = activeYN; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +/** + * Models rows in the fn_app_contact_us table added for 1610.1. + */ +public class AppContactUs extends DomainVo { + + private static final long serialVersionUID = -2742197830465055134L; + + private EPApp app; + private String description; + private String contactEmail; + private String contactName; + private String url; + private String activeYN; + + public EPApp getApp() { + return app; + } + + public void setApp(EPApp app) { + this.app = app; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getContactEmail() { + return contactEmail; + } + + public void setContactEmail(String contactEmail) { + this.contactEmail = contactEmail; + } + + public String getContactName() { + return contactName; + } + + public void setContactName(String contactName) { + this.contactName = contactName; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public String getActiveYN() { + return activeYN; + } + + public void setActiveYN(String activeYN) { + this.activeYN = activeYN; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppIdAndNameTransportModel.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppIdAndNameTransportModel.java index 1440973e..3efa26a3 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppIdAndNameTransportModel.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppIdAndNameTransportModel.java @@ -1,63 +1,63 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; - -@Entity -public class AppIdAndNameTransportModel implements Serializable{ - private static final long serialVersionUID = 1L; - - @Id - @Column(name="APP_ID") - private Long id; - - @Column(name="APP_NAME") - private String name; - - @Column(name="APP_TYPE") - private Integer appType; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public Boolean isRestrictedApp() { - return (this.appType == 2 ? true : false); - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; + +@Entity +public class AppIdAndNameTransportModel implements Serializable{ + private static final long serialVersionUID = 1L; + + @Id + @Column(name="APP_ID") + private Long id; + + @Column(name="APP_NAME") + private String name; + + @Column(name="APP_TYPE") + private Integer appType; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Boolean isRestrictedApp() { + return (this.appType == 2 ? true : false); + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppsResponse.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppsResponse.java index 4935a22c..05fc5fe4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppsResponse.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/AppsResponse.java @@ -1,76 +1,76 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -public class AppsResponse { - - public AppsResponse(Long id, String name, Boolean restrictedApp, Boolean enabled) { - this.index = id; - this.title = this.value = name; - this.restrictedApp = restrictedApp; - this.enabled = enabled; - } - - public Long getIndex() { - return index; - } - - public void setIndex(Long index) { - this.index = index; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public String getValue() { - return value; - } - - public void setValue(String value) { - this.value = value; - } - - // Hide the implementation of restricted and normal app from the front end. - // The json sent and received will include restrictedApp but not appType. - - public void setRestrictedApp(Boolean restrictedApp) { - this.restrictedApp = restrictedApp; - } - - public Boolean getEnabled() { - return enabled; - } - - public void setEnabled(Boolean enabled) { - this.enabled = enabled; - } - - private Long index; - private String title; - private String value; - public Boolean restrictedApp; - public Boolean enabled; - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +public class AppsResponse { + + public AppsResponse(Long id, String name, Boolean restrictedApp, Boolean enabled) { + this.index = id; + this.title = this.value = name; + this.restrictedApp = restrictedApp; + this.enabled = enabled; + } + + public Long getIndex() { + return index; + } + + public void setIndex(Long index) { + this.index = index; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + + // Hide the implementation of restricted and normal app from the front end. + // The json sent and received will include restrictedApp but not appType. + + public void setRestrictedApp(Boolean restrictedApp) { + this.restrictedApp = restrictedApp; + } + + public Boolean getEnabled() { + return enabled; + } + + public void setEnabled(Boolean enabled) { + this.enabled = enabled; + } + + private Long index; + private String title; + private String value; + public Boolean restrictedApp; + public Boolean enabled; + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/BEProperty.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/BEProperty.java index e877641b..a5b5c0c6 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/BEProperty.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/BEProperty.java @@ -1,43 +1,78 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -public class BEProperty { - private String key; - private String value; - - public BEProperty(String key, String value){ - this.key = key; - this.value = value; - } - - public String getKey() { - return key; - } - public void setKey(String key) { - this.key = key; - } - public String getValue() { - return value; - } - public void setValue(String value) { - this.value = value; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +public class BEProperty { + private String key; + private String value; + + public BEProperty(String key, String value) { + this.key = key; + this.value = value; + } + + public String getKey() { + return key; + } + + public void setKey(String key) { + this.key = key; + } + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((key == null) ? 0 : key.hashCode()); + result = prime * result + ((value == null) ? 0 : value.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + BEProperty other = (BEProperty) obj; + if (key == null) { + if (other.key != null) + return false; + } else if (!key.equals(other.key)) + return false; + if (value == null) { + if (other.value != null) + return false; + } else if (!value.equals(other.value)) + return false; + return true; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPApp.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPApp.java index 1ba9e2d7..b0cd13b2 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPApp.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPApp.java @@ -1,292 +1,292 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import javax.persistence.Lob; - -import org.apache.commons.lang.StringUtils; -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -/** - * Model for all columns in the fn_app table. - */ -public class EPApp extends DomainVo { - - private static final long serialVersionUID = 1L; - - private String name; - private String imageUrl; - private String description; - private String notes; - private String url; - private String alternateUrl; - private String appRestEndpoint; - private String mlAppName; - private String mlAppAdminId; - private Long motsId; - private String username; - private String appPassword; - @Lob - private byte[] thumbnail; - private Boolean open; - private Boolean enabled; - private String uebTopicName; - private String uebKey; - private String uebSecret; - private Integer appType; - - private AppContactUs contactUs; - - public EPApp() { - // Attention!!! - // We set here all default values. We also place protection - // into setters for fields with default values. - // If we don't use such protection we are able to place null - // to these fields and save such fields into DB even if DB has - // default values for these fields. - this.name = ""; - this.mlAppName = ""; - this.mlAppAdminId = ""; - this.username = ""; - this.appPassword = ""; - this.open = new Boolean(false); - this.enabled = new Boolean(true); - this.uebTopicName = ""; - this.uebKey = ""; - this.uebSecret = ""; - this.appType = 1; - } - - public String getName() { - return name; - } - - public void setName(String name) { - if (StringUtils.isEmpty(name)) { - name = ""; - } - this.name = name; - } - - public String getImageUrl() { - return imageUrl; - } - - public void setImageUrl(String imageUrl) { - this.imageUrl = imageUrl; - } - - public byte[] getThumbnail() { - return this.thumbnail; - } - - public void setThumbnail(byte[] thumbnail) { - this.thumbnail = thumbnail; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } - - public String getAlternateUrl() { - return alternateUrl; - } - - public void setAlternateUrl(String alternateUrl) { - this.alternateUrl = alternateUrl; - } - - public String getAppRestEndpoint() { - return appRestEndpoint; - } - - public void setAppRestEndpoint(String appRestEndpoint) { - this.appRestEndpoint = appRestEndpoint; - } - - public String getMlAppName() { - return mlAppName; - } - - public void setMlAppName(String mlAppName) { - if (StringUtils.isEmpty(mlAppName)) { - mlAppName = ""; - } - this.mlAppName = mlAppName; - } - - public String getMlAppAdminId() { - return mlAppAdminId; - } - - public void setMlAppAdminId(String mlAppAdminId) { - if (StringUtils.isEmpty(mlAppAdminId)) { - mlAppAdminId = ""; - } - this.mlAppAdminId = mlAppAdminId; - } - - public Long getMotsId() { - return motsId; - } - - public void setMotsId(Long motsId) { - this.motsId = motsId; - } - - public String getUsername() { - return username; - } - - public void setUsername(String username) { - this.username = username; - } - - public String getAppPassword() { - return appPassword; - } - - public void setAppPassword(String appPassword) { - if (StringUtils.isEmpty(appPassword)) { - appPassword = ""; - } - this.appPassword = appPassword; - } - - public Boolean getOpen() { - return open; - } - - public void setOpen(Boolean open) { - if (open == null) { - open = new Boolean(false); - } - this.open = open; - } - - public Boolean getEnabled() { - return enabled; - } - - public void setEnabled(Boolean enabled) { - if (enabled == null) { - enabled = new Boolean(true); - } - this.enabled = enabled; - } - - public Integer getAppType() { - return appType; - } - - public void setAppType(Integer appType) { - if (appType == null) { - appType = new Integer(1); - } - this.appType = appType; - } - - public void setRestrictedApp(Boolean restrictedApp) { - Integer result = 1; - if (restrictedApp) { - result = 2; - } - this.appType = result; - } - - public Boolean isRestrictedApp() { - return (this.appType == 2 ? true : false); - } - - public int compareTo(Object obj) { - Long c1 = getId(); - Long c2 = ((EPApp) obj).getId(); - - return c1.compareTo(c2); - } - - public String getUebTopicName() { - return this.uebTopicName; - } - - public void setUebTopicName(String topicName) { - if (StringUtils.isEmpty(topicName)) { - this.uebTopicName = ""; - } - this.uebTopicName = topicName; - } - - public String getUebKey() { - return this.uebKey; - } - - public void setUebKey(String uebKey) { - if (StringUtils.isEmpty(uebKey)) { - this.uebKey = ""; - } - this.uebKey = uebKey; - } - - public String getUebSecret() { - return this.uebSecret; - } - - public void setUebSecret(String uebSecret) { - if (StringUtils.isEmpty(uebSecret)) { - this.uebSecret = ""; - } - this.uebSecret = uebSecret; - } - - public AppContactUs getContactUs() { - return contactUs; - } - - public void setContactUs(AppContactUs contactUs) { - this.contactUs = contactUs; - } - - @Override - public String toString() { - String str = "[" + getId() + ":" + getName() + "]"; - return str; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import javax.persistence.Lob; + +import org.apache.commons.lang.StringUtils; +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +/** + * Model for all columns in the fn_app table. + */ +public class EPApp extends DomainVo { + + private static final long serialVersionUID = 1L; + + private String name; + private String imageUrl; + private String description; + private String notes; + private String url; + private String alternateUrl; + private String appRestEndpoint; + private String mlAppName; + private String mlAppAdminId; + private Long motsId; + private String username; + private String appPassword; + @Lob + private byte[] thumbnail; + private Boolean open; + private Boolean enabled; + private String uebTopicName; + private String uebKey; + private String uebSecret; + private Integer appType; + + private AppContactUs contactUs; + + public EPApp() { + // Attention!!! + // We set here all default values. We also place protection + // into setters for fields with default values. + // If we don't use such protection we are able to place null + // to these fields and save such fields into DB even if DB has + // default values for these fields. + this.name = ""; + this.mlAppName = ""; + this.mlAppAdminId = ""; + this.username = ""; + this.appPassword = ""; + this.open = new Boolean(false); + this.enabled = new Boolean(true); + this.uebTopicName = ""; + this.uebKey = ""; + this.uebSecret = ""; + this.appType = 1; + } + + public String getName() { + return name; + } + + public void setName(String name) { + if (StringUtils.isEmpty(name)) { + name = ""; + } + this.name = name; + } + + public String getImageUrl() { + return imageUrl; + } + + public void setImageUrl(String imageUrl) { + this.imageUrl = imageUrl; + } + + public byte[] getThumbnail() { + return this.thumbnail; + } + + public void setThumbnail(byte[] thumbnail) { + this.thumbnail = thumbnail; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public String getAlternateUrl() { + return alternateUrl; + } + + public void setAlternateUrl(String alternateUrl) { + this.alternateUrl = alternateUrl; + } + + public String getAppRestEndpoint() { + return appRestEndpoint; + } + + public void setAppRestEndpoint(String appRestEndpoint) { + this.appRestEndpoint = appRestEndpoint; + } + + public String getMlAppName() { + return mlAppName; + } + + public void setMlAppName(String mlAppName) { + if (StringUtils.isEmpty(mlAppName)) { + mlAppName = ""; + } + this.mlAppName = mlAppName; + } + + public String getMlAppAdminId() { + return mlAppAdminId; + } + + public void setMlAppAdminId(String mlAppAdminId) { + if (StringUtils.isEmpty(mlAppAdminId)) { + mlAppAdminId = ""; + } + this.mlAppAdminId = mlAppAdminId; + } + + public Long getMotsId() { + return motsId; + } + + public void setMotsId(Long motsId) { + this.motsId = motsId; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getAppPassword() { + return appPassword; + } + + public void setAppPassword(String appPassword) { + if (StringUtils.isEmpty(appPassword)) { + appPassword = ""; + } + this.appPassword = appPassword; + } + + public Boolean getOpen() { + return open; + } + + public void setOpen(Boolean open) { + if (open == null) { + open = new Boolean(false); + } + this.open = open; + } + + public Boolean getEnabled() { + return enabled; + } + + public void setEnabled(Boolean enabled) { + if (enabled == null) { + enabled = new Boolean(true); + } + this.enabled = enabled; + } + + public Integer getAppType() { + return appType; + } + + public void setAppType(Integer appType) { + if (appType == null) { + appType = new Integer(1); + } + this.appType = appType; + } + + public void setRestrictedApp(Boolean restrictedApp) { + Integer result = 1; + if (restrictedApp) { + result = 2; + } + this.appType = result; + } + + public Boolean isRestrictedApp() { + return (this.appType == 2 ? true : false); + } + + public int compareTo(Object obj) { + Long c1 = getId(); + Long c2 = ((EPApp) obj).getId(); + + return c1.compareTo(c2); + } + + public String getUebTopicName() { + return this.uebTopicName; + } + + public void setUebTopicName(String topicName) { + if (StringUtils.isEmpty(topicName)) { + this.uebTopicName = ""; + } + this.uebTopicName = topicName; + } + + public String getUebKey() { + return this.uebKey; + } + + public void setUebKey(String uebKey) { + if (StringUtils.isEmpty(uebKey)) { + this.uebKey = ""; + } + this.uebKey = uebKey; + } + + public String getUebSecret() { + return this.uebSecret; + } + + public void setUebSecret(String uebSecret) { + if (StringUtils.isEmpty(uebSecret)) { + this.uebSecret = ""; + } + this.uebSecret = uebSecret; + } + + public AppContactUs getContactUs() { + return contactUs; + } + + public void setContactUs(AppContactUs contactUs) { + this.contactUs = contactUs; + } + + @Override + public String toString() { + String str = "[" + getId() + ":" + getName() + "]"; + return str; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPRole.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPRole.java index ea70982a..a1e44575 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPRole.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPRole.java @@ -1,202 +1,202 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.util.Iterator; -import java.util.SortedSet; -import java.util.TreeSet; - -import org.openecomp.portalsdk.core.domain.RoleFunction; -import org.openecomp.portalsdk.core.domain.support.DomainVo; -import com.fasterxml.jackson.annotation.JsonIgnore; - -public class EPRole extends DomainVo { - - private static final long serialVersionUID = 1L; - private String name; - private boolean active; - private Integer priority; - - // ECOMP will identify the specific remote application role id by appID;appRoleId among all the application roles it persists. - private Long appId; // used by ECOMP only - private Long appRoleId; // used by ECOMP only - - private SortedSet roleFunctions = new TreeSet(); - - private SortedSet childRoles = new TreeSet(); - - @JsonIgnore - private SortedSet parentRoles = new TreeSet(); - - public EPRole() {} - - public String getName() { - return name; - } - - public boolean getActive() { - return active; - } - - public SortedSet getRoleFunctions() { - return roleFunctions; - } - - public Integer getPriority() { - return priority; - } - - public SortedSet getChildRoles() { - return childRoles; - } - - public SortedSet getParentRoles() { - return parentRoles; - } - - public void setName(String name) { - this.name = name; - } - - public void setActive(boolean active) { - this.active = active; - } - - public void setRoleFunctions(SortedSet roleFunctions) { - this.roleFunctions = roleFunctions; - } - - public void setPriority(Integer priority) { - this.priority = priority; - } - - public void setChildRoles(SortedSet childRoles) { - this.childRoles = childRoles; - } - - public void setParentRoles(SortedSet parentRoles) { - this.parentRoles = parentRoles; - } - - public void addRoleFunction(RoleFunction roleFunction) { - this.roleFunctions.add(roleFunction); - } - - public void addChildRole(EPRole role) { - this.childRoles.add(role); - } - - public void addParentRole(EPRole role) { - this.parentRoles.add(role); - } - - public String getEditUrl() { - return "/role.htm?role_id=" + getId(); - } - - public String getToggleActiveImage() { - return "/static/fusion/images/" + (getActive() ? "active.png" : "inactive.png" ); - } - - public String getToggleActiveAltText() { - return getActive() ? "Click to Deactivate Role" : "Click to Activate Role"; - } - - public void removeChildRole(Long roleId) { - Iterator i = this.childRoles.iterator(); - - while (i.hasNext()) { - EPRole childRole = (EPRole)i.next(); - if (childRole.getId().equals(roleId)) { - this.childRoles.remove(childRole); - break; - } - } - } - - public void removeParentRole(Long roleId) { - Iterator i = this.parentRoles.iterator(); - - while (i.hasNext()) { - EPRole parentRole = (EPRole)i.next(); - if (parentRole.getId().equals(roleId)) { - this.parentRoles.remove(parentRole); - break; - } - } - } - - public void removeRoleFunction(String roleFunctionCd) { - Iterator i = this.roleFunctions.iterator(); - - while (i.hasNext()) { - RoleFunction roleFunction = (RoleFunction)i.next(); - if (roleFunction.getCode().equals(roleFunctionCd)) { - this.roleFunctions.remove(roleFunction); - break; - } - } - } - - public int compareTo(Object obj){ - EPRole other = (EPRole)obj; - - if(this.appId == null) - if(other.getAppId() == null) - return compareByName(other); //equal - else - return -1; - else // this.appId != null - if(other.getAppId() == null) - return 1; // appId != null, but others is null - else{ - int appIdCompareResult = appId.compareTo(other.getAppId()); - return appIdCompareResult == 0? compareByName(other) : appIdCompareResult; - } - } - - private int compareByName(EPRole other) { - String c1 = getName(); - String c2 = other.getName(); - - return (c1 == null || c2 == null) ? 1 : c1.compareTo(c2); - } - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public Long getAppRoleId() { - return appRoleId; - } - - public void setAppRoleId(Long appRoleId) { - this.appRoleId = appRoleId; - } - - @Override - public String toString() { - return "[Id = " + id + ", name = " + name + "]"; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.util.Iterator; +import java.util.SortedSet; +import java.util.TreeSet; + +import org.openecomp.portalsdk.core.domain.RoleFunction; +import org.openecomp.portalsdk.core.domain.support.DomainVo; +import com.fasterxml.jackson.annotation.JsonIgnore; + +public class EPRole extends DomainVo { + + private static final long serialVersionUID = 1L; + private String name; + private boolean active; + private Integer priority; + + // ECOMP will identify the specific remote application role id by appID;appRoleId among all the application roles it persists. + private Long appId; // used by ECOMP only + private Long appRoleId; // used by ECOMP only + + private SortedSet roleFunctions = new TreeSet(); + + private SortedSet childRoles = new TreeSet(); + + @JsonIgnore + private SortedSet parentRoles = new TreeSet(); + + public EPRole() {} + + public String getName() { + return name; + } + + public boolean getActive() { + return active; + } + + public SortedSet getRoleFunctions() { + return roleFunctions; + } + + public Integer getPriority() { + return priority; + } + + public SortedSet getChildRoles() { + return childRoles; + } + + public SortedSet getParentRoles() { + return parentRoles; + } + + public void setName(String name) { + this.name = name; + } + + public void setActive(boolean active) { + this.active = active; + } + + public void setRoleFunctions(SortedSet roleFunctions) { + this.roleFunctions = roleFunctions; + } + + public void setPriority(Integer priority) { + this.priority = priority; + } + + public void setChildRoles(SortedSet childRoles) { + this.childRoles = childRoles; + } + + public void setParentRoles(SortedSet parentRoles) { + this.parentRoles = parentRoles; + } + + public void addRoleFunction(RoleFunction roleFunction) { + this.roleFunctions.add(roleFunction); + } + + public void addChildRole(EPRole role) { + this.childRoles.add(role); + } + + public void addParentRole(EPRole role) { + this.parentRoles.add(role); + } + + public String getEditUrl() { + return "/role.htm?role_id=" + getId(); + } + + public String getToggleActiveImage() { + return "/static/fusion/images/" + (getActive() ? "active.png" : "inactive.png" ); + } + + public String getToggleActiveAltText() { + return getActive() ? "Click to Deactivate Role" : "Click to Activate Role"; + } + + public void removeChildRole(Long roleId) { + Iterator i = this.childRoles.iterator(); + + while (i.hasNext()) { + EPRole childRole = (EPRole)i.next(); + if (childRole.getId().equals(roleId)) { + this.childRoles.remove(childRole); + break; + } + } + } + + public void removeParentRole(Long roleId) { + Iterator i = this.parentRoles.iterator(); + + while (i.hasNext()) { + EPRole parentRole = (EPRole)i.next(); + if (parentRole.getId().equals(roleId)) { + this.parentRoles.remove(parentRole); + break; + } + } + } + + public void removeRoleFunction(String roleFunctionCd) { + Iterator i = this.roleFunctions.iterator(); + + while (i.hasNext()) { + RoleFunction roleFunction = (RoleFunction)i.next(); + if (roleFunction.getCode().equals(roleFunctionCd)) { + this.roleFunctions.remove(roleFunction); + break; + } + } + } + + public int compareTo(Object obj){ + EPRole other = (EPRole)obj; + + if(this.appId == null) + if(other.getAppId() == null) + return compareByName(other); //equal + else + return -1; + else // this.appId != null + if(other.getAppId() == null) + return 1; // appId != null, but others is null + else{ + int appIdCompareResult = appId.compareTo(other.getAppId()); + return appIdCompareResult == 0? compareByName(other) : appIdCompareResult; + } + } + + private int compareByName(EPRole other) { + String c1 = getName(); + String c2 = other.getName(); + + return (c1 == null || c2 == null) ? 1 : c1.compareTo(c2); + } + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public Long getAppRoleId() { + return appRoleId; + } + + public void setAppRoleId(Long appRoleId) { + this.appRoleId = appRoleId; + } + + @Override + public String toString() { + return "[Id = " + id + ", name = " + name + "]"; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserApp.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserApp.java index 9ed62d8b..005d5328 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserApp.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserApp.java @@ -1,119 +1,119 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - - -@SuppressWarnings("rawtypes") -public class EPUserApp implements java.io.Serializable, Comparable { - - private static final long serialVersionUID = 1L; - - private Long userId; - private EPApp app; - private EPRole role; - private Short priority; - - public EPUserApp() { - } - - public Long getAppId() { - return this.getApp().getId(); - } - - public Long getRoleId() { - return (role == null) ? null : role.getId(); - } - - public Long getAppRoleId() { - return (role.getAppRoleId() == null) ? null : role.getAppRoleId(); - } - - @Override - public String toString() { - String str = "[u: "+getUserId()+"; a: "+getAppId()+", r: "+getRoleId()+"; appRoleId: "+getAppRoleId()+"]"; - return str; - } - - public Long getUserId() { - return userId; - } - - public void setUserId(Long id) { - this.userId = id; - } - - public EPApp getApp() { - return app; - } - - public void setApp(EPApp app) { - this.app = app; - } - - public EPRole getRole() { - return role; - } - - public void setRole(EPRole role) { - this.role = role; - } - - public Short getPriority() { - return this.priority; - } - - public void setPriority(Short priority) { - this.priority = priority; - } - - public boolean equals(Object other) { - if ((this == other)) - return true; - if ((other == null)) - return false; - if (!(other instanceof EPUserApp)) - return false; - EPUserApp castOther = (EPUserApp) other; - - return (this.getUserId().equals(castOther.getUserId())) - && (this.getApp().getId().equals(castOther.getApp().getId())) - && (this.getRole().getId().equals(castOther.getRole().getId())) - && ((this.priority==null && castOther.getPriority()==null) || this.getPriority().equals(castOther.getPriority())); - } - - public int hashCode() { - int result = 17; - - result = 37 * result + (int) (this.getUserId()==null ? 0 : this.getUserId().intValue()); - result = 37 * result + (int) (this.getApp().getId()==null ? 0 : this.getApp().getId().intValue()); - result = 37 * result + (int) (this.getRole().getId()==null ? 0 : this.getRole().getId().intValue()); - result = 37 * result + (int) (this.priority==null ? 0 : this.priority); - return result; - } - - public int compareTo(Object other){ - EPUserApp castOther = (EPUserApp) other; - - Long c1 = (this.getUserId()==null ? 0 : this.getUserId()) + (this.getApp()==null||this.getApp().getId()==null ? 0 : this.getApp().getId()) + (this.getRole()==null||this.getRole().getId()==null ? 0 : this.getRole().getId()) + (this.priority==null ? 0 : this.priority); - Long c2 = (castOther.getUserId()==null ? 0 : castOther.getUserId()) + (castOther.getApp()==null||castOther.getApp().getId()==null ? 0 : castOther.getApp().getId()) + (castOther.getRole()==null||castOther.getRole().getId()==null ? 0 : castOther.getRole().getId()) + (castOther.priority==null ? 0 : castOther.priority); - - return c1.compareTo(c2); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + + +@SuppressWarnings("rawtypes") +public class EPUserApp implements java.io.Serializable, Comparable { + + private static final long serialVersionUID = 1L; + + private Long userId; + private EPApp app; + private EPRole role; + private Short priority; + + public EPUserApp() { + } + + public Long getAppId() { + return this.getApp().getId(); + } + + public Long getRoleId() { + return (role == null) ? null : role.getId(); + } + + public Long getAppRoleId() { + return (role.getAppRoleId() == null) ? null : role.getAppRoleId(); + } + + @Override + public String toString() { + String str = "[u: "+getUserId()+"; a: "+getAppId()+", r: "+getRoleId()+"; appRoleId: "+getAppRoleId()+"]"; + return str; + } + + public Long getUserId() { + return userId; + } + + public void setUserId(Long id) { + this.userId = id; + } + + public EPApp getApp() { + return app; + } + + public void setApp(EPApp app) { + this.app = app; + } + + public EPRole getRole() { + return role; + } + + public void setRole(EPRole role) { + this.role = role; + } + + public Short getPriority() { + return this.priority; + } + + public void setPriority(Short priority) { + this.priority = priority; + } + + public boolean equals(Object other) { + if ((this == other)) + return true; + if ((other == null)) + return false; + if (!(other instanceof EPUserApp)) + return false; + EPUserApp castOther = (EPUserApp) other; + + return (this.getUserId().equals(castOther.getUserId())) + && (this.getApp().getId().equals(castOther.getApp().getId())) + && (this.getRole().getId().equals(castOther.getRole().getId())) + && ((this.priority==null && castOther.getPriority()==null) || this.getPriority().equals(castOther.getPriority())); + } + + public int hashCode() { + int result = 17; + + result = 37 * result + (int) (this.getUserId()==null ? 0 : this.getUserId().intValue()); + result = 37 * result + (int) (this.getApp().getId()==null ? 0 : this.getApp().getId().intValue()); + result = 37 * result + (int) (this.getRole().getId()==null ? 0 : this.getRole().getId().intValue()); + result = 37 * result + (int) (this.priority==null ? 0 : this.priority); + return result; + } + + public int compareTo(Object other){ + EPUserApp castOther = (EPUserApp) other; + + Long c1 = (this.getUserId()==null ? 0 : this.getUserId()) + (this.getApp()==null||this.getApp().getId()==null ? 0 : this.getApp().getId()) + (this.getRole()==null||this.getRole().getId()==null ? 0 : this.getRole().getId()) + (this.priority==null ? 0 : this.priority); + Long c2 = (castOther.getUserId()==null ? 0 : castOther.getUserId()) + (castOther.getApp()==null||castOther.getApp().getId()==null ? 0 : castOther.getApp().getId()) + (castOther.getRole()==null||castOther.getRole().getId()==null ? 0 : castOther.getRole().getId()) + (castOther.priority==null ? 0 : castOther.priority); + + return c1.compareTo(c2); + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppCatalogRoles.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppCatalogRoles.java index 89411ea5..db041857 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppCatalogRoles.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppCatalogRoles.java @@ -1,92 +1,92 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -import com.fasterxml.jackson.annotation.JsonInclude; - -@Entity -@JsonInclude -public class EPUserAppCatalogRoles extends DomainVo { - - private static final long serialVersionUID = -5259869298825093816L; - - - @Id - @Column(name="requested_role_id") - public Long requestedRoleId; - - - @Id - @Column(name="role_name") - public String rolename; - - @Id - @Column(name="request_status") - public String requestStatus; - - @Id - @Column(name="app_id") - public Long appId; - - public Long getRequestedRoleId() { - return requestedRoleId; - } - - public void setRequestedRoleId(Long requestedRoleId) { - this.requestedRoleId = requestedRoleId; - } - - public String getRolename() { - return rolename; - } - - public void setRolename(String rolename) { - this.rolename = rolename; - } - - public String getRequestStatus() { - return requestStatus; - } - - public void setRequestStatus(String requestStatus) { - this.requestStatus = requestStatus; - } - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public String toString() { - return "EPUserAppCatalogRoles [requestedRoleId=" + requestedRoleId + ", rolename=" + rolename - + ", requestStatus=" + requestStatus + ", appId=" + appId + "]"; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +import com.fasterxml.jackson.annotation.JsonInclude; + +@Entity +@JsonInclude +public class EPUserAppCatalogRoles extends DomainVo { + + private static final long serialVersionUID = -5259869298825093816L; + + + @Id + @Column(name="requested_role_id") + public Long requestedRoleId; + + + @Id + @Column(name="role_name") + public String rolename; + + @Id + @Column(name="request_status") + public String requestStatus; + + @Id + @Column(name="app_id") + public Long appId; + + public Long getRequestedRoleId() { + return requestedRoleId; + } + + public void setRequestedRoleId(Long requestedRoleId) { + this.requestedRoleId = requestedRoleId; + } + + public String getRolename() { + return rolename; + } + + public void setRolename(String rolename) { + this.rolename = rolename; + } + + public String getRequestStatus() { + return requestStatus; + } + + public void setRequestStatus(String requestStatus) { + this.requestStatus = requestStatus; + } + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public String toString() { + return "EPUserAppCatalogRoles [requestedRoleId=" + requestedRoleId + ", rolename=" + rolename + + ", requestStatus=" + requestStatus + ", appId=" + appId + "]"; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppRolesRequest.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppRolesRequest.java index 1d73945e..c756ef58 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppRolesRequest.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppRolesRequest.java @@ -1,87 +1,85 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - - -import java.util.Date; -import java.util.Set; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - - -public class EPUserAppRolesRequest extends DomainVo { - - private static final long serialVersionUID = -7225288307806389019L; - private Long userId; - private Long appId; - private Date createdDate; - private Date updatedDate; - private String requestStatus; - - private Set epRequestIdDetail; - - public final Long getUserId() { - return userId; - } - - public final void setUserId(Long userId) { - this.userId = userId; - } - - public final Long getAppId() { - return appId; - } - - public final void setAppId(Long appId) { - this.appId = appId; - } - - public final Date getCreatedDate() { - return createdDate; - } - - public final void setCreatedDate(Date createdDate) { - this.createdDate = createdDate; - } - - public final Date getUpdatedDate() { - return updatedDate; - } - - public final void setUpdatedDate(Date updatedDate) { - this.updatedDate = updatedDate; - } - - public final String getRequestStatus() { - return requestStatus; - } - - public final void setRequestStatus(String requestStatus) { - this.requestStatus = requestStatus; - } - - public final Set getEpRequestIdDetail() { - return epRequestIdDetail; - } - - public final void setEpRequestIdDetail(Set epMyLoginsDetail) { - this.epRequestIdDetail = epMyLoginsDetail; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.util.Date; +import java.util.Set; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +public class EPUserAppRolesRequest extends DomainVo { + + private static final long serialVersionUID = -7225288307806389019L; + private Long userId; + private Long appId; + private Date createdDate; + private Date updatedDate; + private String requestStatus; + + private Set epRequestIdDetail; + + public Long getUserId() { + return userId; + } + + public void setUserId(Long userId) { + this.userId = userId; + } + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public Date getCreatedDate() { + return createdDate; + } + + public void setCreatedDate(Date createdDate) { + this.createdDate = createdDate; + } + + public Date getUpdatedDate() { + return updatedDate; + } + + public void setUpdatedDate(Date updatedDate) { + this.updatedDate = updatedDate; + } + + public String getRequestStatus() { + return requestStatus; + } + + public void setRequestStatus(String requestStatus) { + this.requestStatus = requestStatus; + } + + public Set getEpRequestIdDetail() { + return epRequestIdDetail; + } + + public void setEpRequestIdDetail(Set epMyLoginsDetail) { + this.epRequestIdDetail = epMyLoginsDetail; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppRolesRequestDetail.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppRolesRequestDetail.java index d7989bcd..3b466f52 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppRolesRequestDetail.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppRolesRequestDetail.java @@ -1,52 +1,56 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -public class EPUserAppRolesRequestDetail extends DomainVo{ - - private static final long serialVersionUID = -4908856671135348157L; - - private Long reqRoleId; - private String reqType; - private EPUserAppRolesRequest epRequestIdData; - - public final EPUserAppRolesRequest getEpRequestIdData() { - return epRequestIdData; - } - public final void setEpRequestIdData(EPUserAppRolesRequest epRequestIdData) { - this.epRequestIdData = epRequestIdData; - } - public final Long getReqRoleId() { - return reqRoleId; - } - public final void setReqRoleId(Long reqRoleId) { - this.reqRoleId = reqRoleId; - } - public final String getReqType() { - return reqType; - } - public final void setReqType(String reqType) { - this.reqType = reqType; - } - -} - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +public class EPUserAppRolesRequestDetail extends DomainVo { + + private static final long serialVersionUID = -4908856671135348157L; + + private Long reqRoleId; + private String reqType; + private EPUserAppRolesRequest epRequestIdData; + + public EPUserAppRolesRequest getEpRequestIdData() { + return epRequestIdData; + } + + public void setEpRequestIdData(EPUserAppRolesRequest epRequestIdData) { + this.epRequestIdData = epRequestIdData; + } + + public Long getReqRoleId() { + return reqRoleId; + } + + public void setReqRoleId(Long reqRoleId) { + this.reqRoleId = reqRoleId; + } + + public String getReqType() { + return reqType; + } + + public void setReqType(String reqType) { + this.reqType = reqType; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppsManualSortPreference.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppsManualSortPreference.java index 30d69bab..6c150535 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppsManualSortPreference.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppsManualSortPreference.java @@ -1,50 +1,50 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -public class EPUserAppsManualSortPreference extends DomainVo { - - private static final long serialVersionUID = -6270136291139278216L; - private int userId; - private Long appId; - private int appManualSortOrder; - - public int getUserId() { - return userId; - } - public void setUserId(int userId) { - this.userId = userId; - } - public Long getAppId() { - return appId; - } - public void setAppId(Long appId) { - this.appId = appId; - } - public int getAppManualSortOrder() { - return appManualSortOrder; - } - public void setAppManualSortOrder(int appManualSortOrder) { - this.appManualSortOrder = appManualSortOrder; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +public class EPUserAppsManualSortPreference extends DomainVo { + + private static final long serialVersionUID = -6270136291139278216L; + private int userId; + private Long appId; + private int appManualSortOrder; + + public int getUserId() { + return userId; + } + public void setUserId(int userId) { + this.userId = userId; + } + public Long getAppId() { + return appId; + } + public void setAppId(Long appId) { + this.appId = appId; + } + public int getAppManualSortOrder() { + return appManualSortOrder; + } + public void setAppManualSortOrder(int appManualSortOrder) { + this.appManualSortOrder = appManualSortOrder; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppsSortPreference.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppsSortPreference.java index 1cab30ff..f906d0c0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppsSortPreference.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserAppsSortPreference.java @@ -1,44 +1,44 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -public class EPUserAppsSortPreference extends DomainVo{ - - private static final long serialVersionUID = -5267000174894006433L; - - private int userId; - private String sortPref; - - public int getUserId() { - return userId; - } - public void setUserId(final int userId) { - this.userId = userId; - } - public String getSortPref() { - return sortPref; - } - public void setSortPref(final String sortPref) { - this.sortPref = sortPref; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +public class EPUserAppsSortPreference extends DomainVo{ + + private static final long serialVersionUID = -5267000174894006433L; + + private int userId; + private String sortPref; + + public int getUserId() { + return userId; + } + public void setUserId(final int userId) { + this.userId = userId; + } + public String getSortPref() { + return sortPref; + } + public void setSortPref(final String sortPref) { + this.sortPref = sortPref; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserNotification.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserNotification.java index c82db4de..3562efd6 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserNotification.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPUserNotification.java @@ -1,57 +1,57 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.util.Date; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - - -public class EPUserNotification extends DomainVo { - private Long userId; - private Long notificationId; - private String viewed; - private Date updateTime; - - public Long getUserId() { - return userId; - } - public void setUserId(Long userId) { - this.userId = userId; - } - public Long getNotificationId() { - return notificationId; - } - public void setNotificationId(Long notificationId) { - this.notificationId = notificationId; - } - public String getViewed() { - return viewed; - } - public void setViewed(String viewed) { - this.viewed = viewed; - } - public Date getUpdateTime() { - return updateTime; - } - public void setUpdateTime(Date updateTime) { - this.updateTime = updateTime; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.util.Date; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + + +public class EPUserNotification extends DomainVo { + private Long userId; + private Long notificationId; + private String viewed; + private Date updateTime; + + public Long getUserId() { + return userId; + } + public void setUserId(Long userId) { + this.userId = userId; + } + public Long getNotificationId() { + return notificationId; + } + public void setNotificationId(Long notificationId) { + this.notificationId = notificationId; + } + public String getViewed() { + return viewed; + } + public void setViewed(String viewed) { + this.viewed = viewed; + } + public Date getUpdateTime() { + return updateTime; + } + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPWidgetsManualSortPreference.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPWidgetsManualSortPreference.java index 4a3b784b..9ea3c075 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPWidgetsManualSortPreference.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EPWidgetsManualSortPreference.java @@ -1,70 +1,70 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -public class EPWidgetsManualSortPreference extends DomainVo{ - - private static final long serialVersionUID = 4607102334801223570L; - private int userId; - private Long widgetId; - private int widgetRow; - private int widgetCol; - private int widgetWidth; - private int widgetHeight; - - public int getUserId() { - return userId; - } - public void setUserId(int userId) { - this.userId = userId; - } - public Long getWidgetId() { - return widgetId; - } - public void setWidgetId(Long widgetId) { - this.widgetId = widgetId; - } - public int getWidgetRow() { - return widgetRow; - } - public void setWidgetRow(int widgetRow) { - this.widgetRow = widgetRow; - } - public int getWidgetCol() { - return widgetCol; - } - public void setWidgetCol(int widgetCol) { - this.widgetCol = widgetCol; - } - public int getWidgetWidth() { - return widgetWidth; - } - public void setWidgetWidth(int widgetWidth) { - this.widgetWidth = widgetWidth; - } - public int getWidgetHeight() { - return widgetHeight; - } - public void setWidgetHeight(int widgetHeight) { - this.widgetHeight = widgetHeight; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +public class EPWidgetsManualSortPreference extends DomainVo{ + + private static final long serialVersionUID = 4607102334801223570L; + private int userId; + private Long widgetId; + private int widgetRow; + private int widgetCol; + private int widgetWidth; + private int widgetHeight; + + public int getUserId() { + return userId; + } + public void setUserId(int userId) { + this.userId = userId; + } + public Long getWidgetId() { + return widgetId; + } + public void setWidgetId(Long widgetId) { + this.widgetId = widgetId; + } + public int getWidgetRow() { + return widgetRow; + } + public void setWidgetRow(int widgetRow) { + this.widgetRow = widgetRow; + } + public int getWidgetCol() { + return widgetCol; + } + public void setWidgetCol(int widgetCol) { + this.widgetCol = widgetCol; + } + public int getWidgetWidth() { + return widgetWidth; + } + public void setWidgetWidth(int widgetWidth) { + this.widgetWidth = widgetWidth; + } + public int getWidgetHeight() { + return widgetHeight; + } + public void setWidgetHeight(int widgetHeight) { + this.widgetHeight = widgetHeight; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompApp.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompApp.java index 1cf89fbd..6df37e82 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompApp.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompApp.java @@ -1,146 +1,146 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -/** - * Model for a subset of the columns in the fn_app table. - */ -public class EcompApp { - - protected Long id; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - private String name; - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - private String imageUrl; - - public String getImageUrl() { - return imageUrl; - } - - public void setImageUrl(String imageUrl) { - this.imageUrl = imageUrl; - } - - private String description; - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - private String notes; - - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - private String url; - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } - - private String alternateUrl; - - public String getAlternateUrl() { - return alternateUrl; - } - - public void setAlternateUrl(String alternateUrl) { - this.alternateUrl = alternateUrl; - } - - private String uebTopicName; - - public String getUebTopicName() { - return uebTopicName; - } - - public void setUebTopicName(String topicName) { - this.uebTopicName = topicName; - } - - private String uebKey; - - public String getUebKey() { - return uebKey; - } - - public void setUebKey(String uebKey) { - this.uebKey = uebKey; - } - - private String uebSecret; - - public String getUebSecret() { - return uebSecret; - } - - public void setUebSecret(String secret) { - this.uebSecret = secret; - } - - private Boolean enabled; - - public Boolean isEnabled() { - return enabled; - } - - public void setEnabled(Boolean enable) { - this.enabled = enable; - } - - private Boolean restrictedApp; - - public Boolean isRestrictedApp() { - return restrictedApp; - } - - public void setRestrictedApp(Boolean restrictedApp) { - this.restrictedApp = restrictedApp; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +/** + * Model for a subset of the columns in the fn_app table. + */ +public class EcompApp { + + protected Long id; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + private String name; + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + private String imageUrl; + + public String getImageUrl() { + return imageUrl; + } + + public void setImageUrl(String imageUrl) { + this.imageUrl = imageUrl; + } + + private String description; + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + private String notes; + + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + private String url; + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + private String alternateUrl; + + public String getAlternateUrl() { + return alternateUrl; + } + + public void setAlternateUrl(String alternateUrl) { + this.alternateUrl = alternateUrl; + } + + private String uebTopicName; + + public String getUebTopicName() { + return uebTopicName; + } + + public void setUebTopicName(String topicName) { + this.uebTopicName = topicName; + } + + private String uebKey; + + public String getUebKey() { + return uebKey; + } + + public void setUebKey(String uebKey) { + this.uebKey = uebKey; + } + + private String uebSecret; + + public String getUebSecret() { + return uebSecret; + } + + public void setUebSecret(String secret) { + this.uebSecret = secret; + } + + private Boolean enabled; + + public Boolean isEnabled() { + return enabled; + } + + public void setEnabled(Boolean enable) { + this.enabled = enable; + } + + private Boolean restrictedApp; + + public Boolean isRestrictedApp() { + return restrictedApp; + } + + public void setRestrictedApp(Boolean restrictedApp) { + this.restrictedApp = restrictedApp; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAppRole.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAppRole.java index 78cf4162..52529cb6 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAppRole.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAppRole.java @@ -1,80 +1,80 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.persistence.IdClass; - -@Entity -@IdClass(EcompAppRoleId.class) -public class EcompAppRole { - - @Id - @Column(name="app_id") - private Long appId; - - @Id - @Column(name="app_name") - private String appName; - - @Id - @Column(name="role_id") - private Integer roleId; - - @Id - @Column(name="role_name") - private String roleName; - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public String getAppName() { - return appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - public Integer getRoleId() { - return roleId; - } - - public void setRoleId(Integer roleId) { - this.roleId = roleId; - } - - public String getRoleName() { - return roleName; - } - - public void setRoleName(String roleName) { - this.roleName = roleName; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; +import javax.persistence.IdClass; + +@Entity +@IdClass(EcompAppRoleId.class) +public class EcompAppRole { + + @Id + @Column(name="app_id") + private Long appId; + + @Id + @Column(name="app_name") + private String appName; + + @Id + @Column(name="role_id") + private Integer roleId; + + @Id + @Column(name="role_name") + private String roleName; + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public String getAppName() { + return appName; + } + + public void setAppName(String appName) { + this.appName = appName; + } + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + public String getRoleName() { + return roleName; + } + + public void setRoleName(String roleName) { + this.roleName = roleName; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAppRoleId.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAppRoleId.java index d89c0736..894316e5 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAppRoleId.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAppRoleId.java @@ -1,83 +1,83 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Id; - -public class EcompAppRoleId implements Serializable{ - - /** - * - */ - private static final long serialVersionUID = 1L; - - @Id - @Column(name="app_id") - private Long appId; - - @Id - @Column(name="app_name") - private String appName; - - @Id - @Column(name="role_id") - private Integer roleId; - - @Id - @Column(name="role_name") - private String roleName; - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public String getAppName() { - return appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - public Integer getRoleId() { - return roleId; - } - - public void setRoleId(Integer roleId) { - this.roleId = roleId; - } - - public String getRoleName() { - return roleName; - } - - public void setRoleName(String roleName) { - this.roleName = roleName; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Id; + +public class EcompAppRoleId implements Serializable{ + + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @Column(name="app_id") + private Long appId; + + @Id + @Column(name="app_name") + private String appName; + + @Id + @Column(name="role_id") + private Integer roleId; + + @Id + @Column(name="role_name") + private String roleName; + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public String getAppName() { + return appName; + } + + public void setAppName(String appName) { + this.appName = appName; + } + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + public String getRoleName() { + return roleName; + } + + public void setRoleName(String roleName) { + this.roleName = roleName; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAuditLog.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAuditLog.java index 4d4ec277..3d53c8d3 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAuditLog.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EcompAuditLog.java @@ -1,61 +1,61 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.util.Date; - -import org.openecomp.portalsdk.core.domain.AuditLog; - -public class EcompAuditLog extends AuditLog { - - private static final long serialVersionUID = 7970458389782626231L; - - // values of activity_cd column in table fu_lu_activity - // as loaded by DML sql script - public static final String CD_ACTIVITY_ADD_CHILD_ROLE = "add_child_role"; - public static final String CD_ACTIVITY_ADD_ROLE = "add_role"; - public static final String CD_ACTIVITY_ADD_ROLE_FUNCTION = "add_role_function"; - public static final String CD_ACTIVITY_ADD_USER_ROLE = "add_user_role"; - public static final String CD_ACTIVITY_APP_ACCESS = "app_access"; - public static final String CD_ACTIVITY_FUNCTIONAL_ACCESS = "functional_access"; - public static final String CD_ACTIVITY_GUEST_LOGIN = "guest_login"; - public static final String CD_ACTIVITY_LOGIN = "login"; - public static final String CD_ACTIVITY_LOGOUT = "logout"; - public static final String CD_ACTIVITY_MOBILE_LOGIN = "mobile_login"; - public static final String CD_ACTIVITY_MOBILE_LOGOUT = "mobile_logout"; - public static final String CD_ACTIVITY_REMOVE_CHILD_ROLE = "remove_child_role"; - public static final String CD_ACTIVITY_REMOVE_ROLE = "remove_role"; - public static final String CD_ACTIVITY_REMOVE_ROLE_FUNCTION = "remove_role_function"; - public static final String CD_ACTIVITY_REMOVE_USER_ROLE = "remove_user_role"; - public static final String CD_ACTIVITY_TAB_ACCESS = "tab_access"; - public static final String CD_ACTIVITY_SEARCH = "search"; - public static final String CD_ACTIVITY_ADD_PORTAL_ADMIN = "apa "; - public static final String CD_ACTIVITY_DELETE_PORTAL_ADMIN = "dpa"; - public static final String CD_ACTIVITY_UPDATE_USER = "uu "; - public static final String CD_ACTIVITY_UPDATE_ACCOUNT_ADMIN = "uaa "; - public static final String CD_ACTIVITY_STORE_ANALYTICS = "store_analytics"; - - /** - * Creates a new object with the created field set to the current date-time. - */ - public EcompAuditLog() { - setCreated(new Date()); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.util.Date; + +import org.openecomp.portalsdk.core.domain.AuditLog; + +public class EcompAuditLog extends AuditLog { + + private static final long serialVersionUID = 7970458389782626231L; + + // values of activity_cd column in table fu_lu_activity + // as loaded by DML sql script + public static final String CD_ACTIVITY_ADD_CHILD_ROLE = "add_child_role"; + public static final String CD_ACTIVITY_ADD_ROLE = "add_role"; + public static final String CD_ACTIVITY_ADD_ROLE_FUNCTION = "add_role_function"; + public static final String CD_ACTIVITY_ADD_USER_ROLE = "add_user_role"; + public static final String CD_ACTIVITY_APP_ACCESS = "app_access"; + public static final String CD_ACTIVITY_FUNCTIONAL_ACCESS = "functional_access"; + public static final String CD_ACTIVITY_GUEST_LOGIN = "guest_login"; + public static final String CD_ACTIVITY_LOGIN = "login"; + public static final String CD_ACTIVITY_LOGOUT = "logout"; + public static final String CD_ACTIVITY_MOBILE_LOGIN = "mobile_login"; + public static final String CD_ACTIVITY_MOBILE_LOGOUT = "mobile_logout"; + public static final String CD_ACTIVITY_REMOVE_CHILD_ROLE = "remove_child_role"; + public static final String CD_ACTIVITY_REMOVE_ROLE = "remove_role"; + public static final String CD_ACTIVITY_REMOVE_ROLE_FUNCTION = "remove_role_function"; + public static final String CD_ACTIVITY_REMOVE_USER_ROLE = "remove_user_role"; + public static final String CD_ACTIVITY_TAB_ACCESS = "tab_access"; + public static final String CD_ACTIVITY_SEARCH = "search"; + public static final String CD_ACTIVITY_ADD_PORTAL_ADMIN = "apa "; + public static final String CD_ACTIVITY_DELETE_PORTAL_ADMIN = "dpa"; + public static final String CD_ACTIVITY_UPDATE_USER = "uu "; + public static final String CD_ACTIVITY_UPDATE_ACCOUNT_ADMIN = "uaa "; + public static final String CD_ACTIVITY_STORE_ANALYTICS = "store_analytics"; + + /** + * Creates a new object with the created field set to the current date-time. + */ + public EcompAuditLog() { + setCreated(new Date()); + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EpUserAppRoles.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EpUserAppRoles.java index 1bfb1841..2649cfd0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EpUserAppRoles.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/EpUserAppRoles.java @@ -1,63 +1,63 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -import com.fasterxml.jackson.annotation.JsonInclude; - -@Entity -@JsonInclude(JsonInclude.Include.NON_NULL) -public class EpUserAppRoles extends DomainVo { - - private static final long serialVersionUID = -1484592641766545668L; - - @Id - @Column(name ="role_id") - public Long roleId; - - @Id - @Column(name ="app_id") - public Long appId; - - public Long getRoleId() { - return roleId; - } - public void setRoleId(Long roleId) { - this.roleId = roleId; - } - public Long getAppId() { - return appId; - } - public void setAppId(Long appId) { - this.appId = appId; - } - - @Override - public String toString() { - return "EpUserAppRoles [roleId=" + roleId + ", appId=" + appId + "]"; - } -} - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +import com.fasterxml.jackson.annotation.JsonInclude; + +@Entity +@JsonInclude(JsonInclude.Include.NON_NULL) +public class EpUserAppRoles extends DomainVo { + + private static final long serialVersionUID = -1484592641766545668L; + + @Id + @Column(name ="role_id") + public Long roleId; + + @Id + @Column(name ="app_id") + public Long appId; + + public Long getRoleId() { + return roleId; + } + public void setRoleId(Long roleId) { + this.roleId = roleId; + } + public Long getAppId() { + return appId; + } + public void setAppId(Long appId) { + this.appId = appId; + } + + @Override + public String toString() { + return "EpUserAppRoles [roleId=" + roleId + ", appId=" + appId + "]"; + } +} + diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/ExternalSystemAccess.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/ExternalSystemAccess.java index a0395bf8..fdbc0931 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/ExternalSystemAccess.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/ExternalSystemAccess.java @@ -1,49 +1,49 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -public class ExternalSystemAccess { - - private String key; - private Boolean accessValue; - - public ExternalSystemAccess(String key, Boolean accessValue){ - this.key = key; - this.accessValue = accessValue; - } - - public String getKey() { - return key; - } - public void setKey(String key) { - this.key = key; - } - - public Boolean getAccessValue() { - return accessValue; - } - - public void setAccessValue(Boolean accessValue) { - this.accessValue = accessValue; - } - - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +public class ExternalSystemAccess { + + private String key; + private Boolean accessValue; + + public ExternalSystemAccess(String key, Boolean accessValue){ + this.key = key; + this.accessValue = accessValue; + } + + public String getKey() { + return key; + } + public void setKey(String key) { + this.key = key; + } + + public Boolean getAccessValue() { + return accessValue; + } + + public void setAccessValue(Boolean accessValue) { + this.accessValue = accessValue; + } + + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/FunctionalMenuItemWithAppID.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/FunctionalMenuItemWithAppID.java index ac2bc6c4..d8c916bd 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/FunctionalMenuItemWithAppID.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/FunctionalMenuItemWithAppID.java @@ -1,96 +1,96 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.util.List; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Transient; -/*** - * - * This class is almost identical to org.openecomp.portalapp.portal.transport.FunctionalMenuItem - * The only difference is the appId field. In FunctionMenuItem, we used @Transient as an attribute, and we are using @Column in this class. - * In some sql queries, we need to have appId, but it's not a field in fn_menu_functional table. - * - * @author robertlo - * - */ -@Entity -public class FunctionalMenuItemWithAppID{ - private static final long serialVersionUID = 1L; - - @Id - @GeneratedValue(strategy=GenerationType.IDENTITY) - @Column(name = "MENU_ID") - public Long menuId; - - @Column(name = "COLUMN_NUM") - public Integer column; - - @Column(name = "TEXT") - public String text; - - @Column(name = "PARENT_MENU_ID") - public Integer parentMenuId; - - @Column(name = "URL") - public String url; - - @Column(name="ACTIVE_YN") - public String active_yn; - - @Column(name="APP_ID") - public Integer appid; - - @Transient - public List roles; - - @Transient - public Boolean restrictedApp; - - public void normalize() { - if (this.column == null) - this.column = new Integer(1); - this.text = (this.text == null) ? "" : this.text.trim(); - if (this.parentMenuId == null) - this.parentMenuId = new Integer(-1); - this.url = (this.url == null) ? "" : this.url.trim(); - } - - @Override - public String toString() { - return "FunctionalMenuItem [menuId=" + menuId + ", column=" + column + ", text=" + text + ", parentMenuId=" - + parentMenuId + ", url=" + url + ", active_yn=" + active_yn + ", appid=" + appid + ", roles=" + roles - + ", restrictedApp=" + restrictedApp + "]"; - } - - public void setUrl(String url) { - this.url = url; - } - - public void setRestrictedApp(Boolean restrictedApp) { - this.restrictedApp = restrictedApp; - } -} - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.util.List; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.Transient; +/*** + * + * This class is almost identical to org.openecomp.portalapp.portal.transport.FunctionalMenuItem + * The only difference is the appId field. In FunctionMenuItem, we used @Transient as an attribute, and we are using @Column in this class. + * In some sql queries, we need to have appId, but it's not a field in fn_menu_functional table. + * + * @author robertlo + * + */ +@Entity +public class FunctionalMenuItemWithAppID{ + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy=GenerationType.IDENTITY) + @Column(name = "MENU_ID") + public Long menuId; + + @Column(name = "COLUMN_NUM") + public Integer column; + + @Column(name = "TEXT") + public String text; + + @Column(name = "PARENT_MENU_ID") + public Integer parentMenuId; + + @Column(name = "URL") + public String url; + + @Column(name="ACTIVE_YN") + public String active_yn; + + @Column(name="APP_ID") + public Integer appid; + + @Transient + public List roles; + + @Transient + public Boolean restrictedApp; + + public void normalize() { + if (this.column == null) + this.column = new Integer(1); + this.text = (this.text == null) ? "" : this.text.trim(); + if (this.parentMenuId == null) + this.parentMenuId = new Integer(-1); + this.url = (this.url == null) ? "" : this.url.trim(); + } + + @Override + public String toString() { + return "FunctionalMenuItem [menuId=" + menuId + ", column=" + column + ", text=" + text + ", parentMenuId=" + + parentMenuId + ", url=" + url + ", active_yn=" + active_yn + ", appid=" + appid + ", roles=" + roles + + ", restrictedApp=" + restrictedApp + "]"; + } + + public void setUrl(String url) { + this.url = url; + } + + public void setRestrictedApp(Boolean restrictedApp) { + this.restrictedApp = restrictedApp; + } +} + diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/GetAccessResult.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/GetAccessResult.java index 4669426a..c4b9489c 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/GetAccessResult.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/GetAccessResult.java @@ -1,114 +1,114 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; - -import com.fasterxml.jackson.annotation.JsonInclude; - -@Entity -@JsonInclude -public class GetAccessResult implements Serializable{ - - - private static final long serialVersionUID = 5239527705869613411L; - - @Id - @Column(name="row_id") - private String rowId; - - @Column(name="role_id") - private Long roleId; - - @Column(name="ecomp_function",nullable=true) - private String ecompFunction; - - @Column(name="app_name") - private String appName; - - @Column(name="app_mots_id",nullable=true) - private Integer appMotsId; - - @Column(name="role_name") - private String roleName; - - @Column(name="role_actv",nullable=true) - private String roleActive; - - - @Column(name="request_type",nullable=true) - private String reqType; - - - - public final String getRowId() { - return rowId; - } - public final void setRowId(String rowId) { - this.rowId = rowId; - } - public final Long getRoleId() { - return roleId; - } - public final void setRoleId(Long roleId) { - this.roleId = roleId; - } - public String getEcompFunction() { - return ecompFunction; - } - public void setEcompFunction(String ecompFunction) { - this.ecompFunction = ecompFunction; - } - public String getAppName() { - return appName; - } - public void setAppName(String appName) { - this.appName = appName; - } - public Integer getAppMotsId() { - return appMotsId; - } - public void setAppMotsId(Integer appMotsId) { - this.appMotsId = appMotsId; - } - public String getRoleName() { - return roleName; - } - public void setRoleName(String roleName) { - this.roleName = roleName; - } - public final String getRoleActive() { - return roleActive; - } - public final void setRoleActive(String roleActive) { - this.roleActive = roleActive; - } - public final String getReqType() { - return reqType; - } - public final void setReqType(String reqType) { - this.reqType = reqType; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; + +import com.fasterxml.jackson.annotation.JsonInclude; + +@Entity +@JsonInclude +public class GetAccessResult implements Serializable{ + + + private static final long serialVersionUID = 5239527705869613411L; + + @Id + @Column(name="row_id") + private String rowId; + + @Column(name="role_id") + private Long roleId; + + @Column(name="ecomp_function",nullable=true) + private String ecompFunction; + + @Column(name="app_name") + private String appName; + + @Column(name="app_mots_id",nullable=true) + private Integer appMotsId; + + @Column(name="role_name") + private String roleName; + + @Column(name="role_actv",nullable=true) + private String roleActive; + + + @Column(name="request_type",nullable=true) + private String reqType; + + + + public String getRowId() { + return rowId; + } + public void setRowId(String rowId) { + this.rowId = rowId; + } + public Long getRoleId() { + return roleId; + } + public void setRoleId(Long roleId) { + this.roleId = roleId; + } + public String getEcompFunction() { + return ecompFunction; + } + public void setEcompFunction(String ecompFunction) { + this.ecompFunction = ecompFunction; + } + public String getAppName() { + return appName; + } + public void setAppName(String appName) { + this.appName = appName; + } + public Integer getAppMotsId() { + return appMotsId; + } + public void setAppMotsId(Integer appMotsId) { + this.appMotsId = appMotsId; + } + public String getRoleName() { + return roleName; + } + public void setRoleName(String roleName) { + this.roleName = roleName; + } + public String getRoleActive() { + return roleActive; + } + public void setRoleActive(String roleActive) { + this.roleActive = roleActive; + } + public String getReqType() { + return reqType; + } + public void setReqType(String reqType) { + this.reqType = reqType; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/GetAccessResultId.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/GetAccessResultId.java index 0830bfd8..b0508138 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/GetAccessResultId.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/GetAccessResultId.java @@ -1,64 +1,64 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Id; - -public class GetAccessResultId implements Serializable{ - - /** - * - */ - private static final long serialVersionUID = 1L; - - @Id - @Column(name="ecomp_function") - private String ecompFunction; - - @Id - @Column(name="app_name") - private String appName; - - @Id - @Column(name="role_name") - private String roleName; - - public String getEcompFunction() { - return ecompFunction; - } - public void setEcompFunction(String ecompFunction) { - this.ecompFunction = ecompFunction; - } - public String getAppName() { - return appName; - } - public void setAppName(String appName) { - this.appName = appName; - } - public String getRoleName() { - return roleName; - } - public void setRoleName(String roleName) { - this.roleName = roleName; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Id; + +public class GetAccessResultId implements Serializable{ + + /** + * + */ + private static final long serialVersionUID = 1L; + + @Id + @Column(name="ecomp_function") + private String ecompFunction; + + @Id + @Column(name="app_name") + private String appName; + + @Id + @Column(name="role_name") + private String roleName; + + public String getEcompFunction() { + return ecompFunction; + } + public void setEcompFunction(String ecompFunction) { + this.ecompFunction = ecompFunction; + } + public String getAppName() { + return appName; + } + public void setAppName(String appName) { + this.appName = appName; + } + public String getRoleName() { + return roleName; + } + public void setRoleName(String roleName) { + this.roleName = roleName; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceData.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceData.java index 91366ce8..a9ca2b68 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceData.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceData.java @@ -1,146 +1,146 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.util.List; - -import javax.persistence.Column; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -public class MicroserviceData extends DomainVo { - - private static final long serialVersionUID = 1L; - - public MicroserviceData() { - - } - - private Long id; - - private String name; - - private String active; - - private String desc; - - private long appId; - - private String url; - - private String securityType; - - private String username; - - private String password; - - private List parameterList; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getActive() { - return active; - } - - public void setActive(String active) { - this.active = active; - } - - public String getDesc() { - return desc; - } - - public void setDesc(String desc) { - this.desc = desc; - } - - public long getAppId() { - return appId; - } - - public void setAppId(long appId) { - this.appId = appId; - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } - - public String getSecurityType() { - return securityType; - } - - public void setSecurityType(String securityType) { - this.securityType = securityType; - } - - public String getUsername() { - return username; - } - - public void setUsername(String username) { - this.username = username; - } - - public String getPassword() { - return password; - } - - public void setPassword(String password) { - this.password = password; - } - - public List getParameterList() { - return parameterList; - } - - public void setParameterList(List parameterList) { - this.parameterList = parameterList; - } - - @Override - public String toString() { - return "MicroserviceData [id=" + id + ", name=" + name + ", desc=" + desc + ", appId=" + appId + ", url=" + url - + ", securityType=" + securityType + ", username=" + username + ", password=" + password - + ", parameterList=" + parameterList + "]"; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.util.List; + +import javax.persistence.Column; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +public class MicroserviceData extends DomainVo { + + private static final long serialVersionUID = 1L; + + public MicroserviceData() { + + } + + private Long id; + + private String name; + + private String active; + + private String desc; + + private long appId; + + private String url; + + private String securityType; + + private String username; + + private String password; + + private List parameterList; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getActive() { + return active; + } + + public void setActive(String active) { + this.active = active; + } + + public String getDesc() { + return desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + + public long getAppId() { + return appId; + } + + public void setAppId(long appId) { + this.appId = appId; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public String getSecurityType() { + return securityType; + } + + public void setSecurityType(String securityType) { + this.securityType = securityType; + } + + public String getUsername() { + return username; + } + + public void setUsername(String username) { + this.username = username; + } + + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password; + } + + public List getParameterList() { + return parameterList; + } + + public void setParameterList(List parameterList) { + this.parameterList = parameterList; + } + + @Override + public String toString() { + return "MicroserviceData [id=" + id + ", name=" + name + ", desc=" + desc + ", appId=" + appId + ", url=" + url + + ", securityType=" + securityType + ", username=" + username + ", password=" + password + + ", parameterList=" + parameterList + "]"; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceParameter.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceParameter.java index 74a29370..0796a5a9 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceParameter.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/MicroserviceParameter.java @@ -1,82 +1,82 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import javax.persistence.Column; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -public class MicroserviceParameter extends DomainVo { - - private static final long serialVersionUID = 1L; - - public MicroserviceParameter() { - - } - - private Long id; - - private long serviceId; - - private String para_key; - - private String para_value; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public long getServiceId() { - return serviceId; - } - - public void setServiceId(long serviceId) { - this.serviceId = serviceId; - } - - public String getPara_key() { - return para_key; - } - - public void setPara_key(String para_key) { - this.para_key = para_key; - } - - public String getPara_value() { - return para_value; - } - - public void setPara_value(String para_value) { - this.para_value = para_value; - } - - @Override - public String toString() { - return "MicroserviceParameter [id=" + id + ", serviceId=" + serviceId + ", para_key=" + para_key - + ", para_value=" + para_value + "]"; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import javax.persistence.Column; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +public class MicroserviceParameter extends DomainVo { + + private static final long serialVersionUID = 1L; + + public MicroserviceParameter() { + + } + + private Long id; + + private long serviceId; + + private String para_key; + + private String para_value; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public long getServiceId() { + return serviceId; + } + + public void setServiceId(long serviceId) { + this.serviceId = serviceId; + } + + public String getPara_key() { + return para_key; + } + + public void setPara_key(String para_key) { + this.para_key = para_key; + } + + public String getPara_value() { + return para_value; + } + + public void setPara_value(String para_value) { + this.para_value = para_value; + } + + @Override + public String toString() { + return "MicroserviceParameter [id=" + id + ", serviceId=" + serviceId + ", para_key=" + para_key + + ", para_value=" + para_value + "]"; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/PersUserAppSelection.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/PersUserAppSelection.java index 68875bf5..331cdb81 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/PersUserAppSelection.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/PersUserAppSelection.java @@ -1,78 +1,78 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -/** - * Models a row in the table with personalization of user app selections. - */ -public class PersUserAppSelection extends DomainVo { - - private static final long serialVersionUID = 1545308654500121206L; - - private Long userId; - - private Long appId; - - private String statusCode; - - public PersUserAppSelection() {} - - /** - * Convenience constructor - * - * @param id - * @param userId - * @param appId - * @param statusCode - */ - public PersUserAppSelection(final Long id, final Long userId, final Long appId, final String statusCode) { - super.id = id; - this.userId = userId; - this.appId = appId; - this.statusCode = statusCode; - } - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public Long getUserId() { - return userId; - } - - public void setUserId(Long userId) { - this.userId = userId; - } - - public String getStatusCode() { - return statusCode; - } - - public void setStatusCode(String statusCode) { - this.statusCode = statusCode; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +/** + * Models a row in the table with personalization of user app selections. + */ +public class PersUserAppSelection extends DomainVo { + + private static final long serialVersionUID = 1545308654500121206L; + + private Long userId; + + private Long appId; + + private String statusCode; + + public PersUserAppSelection() {} + + /** + * Convenience constructor + * + * @param id + * @param userId + * @param appId + * @param statusCode + */ + public PersUserAppSelection(final Long id, final Long userId, final Long appId, final String statusCode) { + super.id = id; + this.userId = userId; + this.appId = appId; + this.statusCode = statusCode; + } + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public Long getUserId() { + return userId; + } + + public void setUserId(Long userId) { + this.userId = userId; + } + + public String getStatusCode() { + return statusCode; + } + + public void setStatusCode(String statusCode) { + this.statusCode = statusCode; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/PersUserWidgetSelection.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/PersUserWidgetSelection.java index 4993b462..692479b4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/PersUserWidgetSelection.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/PersUserWidgetSelection.java @@ -1,81 +1,81 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -/** - * Models a row in the table with personalization of user widget selections. - */ -public class PersUserWidgetSelection extends DomainVo { - - /** - * - */ - private static final long serialVersionUID = -6547880514779039200L; - - private Long userId; - - private Long widgetId; - - private String statusCode; - - public PersUserWidgetSelection() {} - - /** - * Convenience constructor - * - * @param id - * @param userId - * @param widgetId - * @param statusCode - */ - public PersUserWidgetSelection(final Long id, final Long userId, final Long widgetId, final String statusCode) { - super.id = id; - this.userId = userId; - this.widgetId = widgetId; - this.statusCode = statusCode; - } - - public Long getWidgetId() { - return widgetId; - } - - public void setWidgetId(Long widgetId) { - this.widgetId = widgetId; - } - - public Long getUserId() { - return userId; - } - - public void setUserId(Long userId) { - this.userId = userId; - } - - public String getStatusCode() { - return statusCode; - } - - public void setStatusCode(String statusCode) { - this.statusCode = statusCode; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +/** + * Models a row in the table with personalization of user widget selections. + */ +public class PersUserWidgetSelection extends DomainVo { + + /** + * + */ + private static final long serialVersionUID = -6547880514779039200L; + + private Long userId; + + private Long widgetId; + + private String statusCode; + + public PersUserWidgetSelection() {} + + /** + * Convenience constructor + * + * @param id + * @param userId + * @param widgetId + * @param statusCode + */ + public PersUserWidgetSelection(final Long id, final Long userId, final Long widgetId, final String statusCode) { + super.id = id; + this.userId = userId; + this.widgetId = widgetId; + this.statusCode = statusCode; + } + + public Long getWidgetId() { + return widgetId; + } + + public void setWidgetId(Long widgetId) { + this.widgetId = widgetId; + } + + public Long getUserId() { + return userId; + } + + public void setUserId(Long userId) { + this.userId = userId; + } + + public String getStatusCode() { + return statusCode; + } + + public void setStatusCode(String statusCode) { + this.statusCode = statusCode; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/RoleApp.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/RoleApp.java index ade24dcb..769016db 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/RoleApp.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/RoleApp.java @@ -1,114 +1,114 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.io.Serializable; -import java.util.Set; - -import javax.persistence.CascadeType; -import javax.persistence.Column; -import javax.persistence.FetchType; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.JoinColumn; -import javax.persistence.ManyToMany; -import javax.persistence.ManyToOne; - -import com.fasterxml.jackson.annotation.JsonIgnore; - -//@Entity -//@Table(name = "FN_ROLE") -public class RoleApp implements Serializable{ - private static final long serialVersionUID = 1L; - - //@Id - //@Column(name = "ROLE_ID") - //@GeneratedValue(strategy=GenerationType.AUTO) - private Long roleId; - - - //@Column(name = "ROLE_Name") - private String roleName; - - //@ManyToOne(fetch = FetchType.EAGER) - //@JoinColumn(name="APP_ID") - private App app; - - //@JsonIgnore - //@ManyToMany(fetch = FetchType.EAGER, cascade = {CascadeType.MERGE, CascadeType.PERSIST, CascadeType.REFRESH}, mappedBy="widgetRoles") - private Set widgets; - - /*@PreRemove - private void removeGroupsFromUsers() { - for (WidgetCatalog w : widgets) { - w.getWidgetRoles().remove(this); - } - }*/ - - /*@ManyToOne - @JoinColumn(name = "WIDGET_ID", nullable = false) - WidgetCatalog widgetCatalog;*/ - - //@JsonIgnore - //@ManyToMany(mappedBy = "widgetRoles") - //@ManyToMany(fetch = FetchType.EAGER, mappedBy = "widgetRoles") - //private Set widgets = new HashSet(); - - public Long getRoleId() { - return roleId; - } - - public void setRoleId(Long roleId) { - this.roleId = roleId; - } - - public String getRoleName() { - return roleName; - } - - public void setRoleName(String roleName) { - this.roleName = roleName; - } - - public App getApp() { - return app; - } - - public void setApp(App app) { - this.app = app; - } - - - - public Set getWidgets() { - return widgets; - } - - public void setWidgets(Set widgets) { - this.widgets = widgets; - } - - @Override - public String toString() { - return "Role [roleId=" + roleId + ", roleName=" + roleName + ", app=" + app + "]"; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.io.Serializable; +import java.util.Set; + +import javax.persistence.CascadeType; +import javax.persistence.Column; +import javax.persistence.FetchType; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.JoinColumn; +import javax.persistence.ManyToMany; +import javax.persistence.ManyToOne; + +import com.fasterxml.jackson.annotation.JsonIgnore; + +//@Entity +//@Table(name = "FN_ROLE") +public class RoleApp implements Serializable{ + private static final long serialVersionUID = 1L; + + //@Id + //@Column(name = "ROLE_ID") + //@GeneratedValue(strategy=GenerationType.AUTO) + private Long roleId; + + + //@Column(name = "ROLE_Name") + private String roleName; + + //@ManyToOne(fetch = FetchType.EAGER) + //@JoinColumn(name="APP_ID") + private App app; + + //@JsonIgnore + //@ManyToMany(fetch = FetchType.EAGER, cascade = {CascadeType.MERGE, CascadeType.PERSIST, CascadeType.REFRESH}, mappedBy="widgetRoles") + private Set widgets; + + /*@PreRemove + private void removeGroupsFromUsers() { + for (WidgetCatalog w : widgets) { + w.getWidgetRoles().remove(this); + } + }*/ + + /*@ManyToOne + @JoinColumn(name = "WIDGET_ID", nullable = false) + WidgetCatalog widgetCatalog;*/ + + //@JsonIgnore + //@ManyToMany(mappedBy = "widgetRoles") + //@ManyToMany(fetch = FetchType.EAGER, mappedBy = "widgetRoles") + //private Set widgets = new HashSet(); + + public Long getRoleId() { + return roleId; + } + + public void setRoleId(Long roleId) { + this.roleId = roleId; + } + + public String getRoleName() { + return roleName; + } + + public void setRoleName(String roleName) { + this.roleName = roleName; + } + + public App getApp() { + return app; + } + + public void setApp(App app) { + this.app = app; + } + + + + public Set getWidgets() { + return widgets; + } + + public void setWidgets(Set widgets) { + this.widgets = widgets; + } + + @Override + public String toString() { + return "Role [roleId=" + roleId + ", roleName=" + roleName + ", app=" + app + "]"; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/SharedContext.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/SharedContext.java index f966c964..49333c4c 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/SharedContext.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/SharedContext.java @@ -1,161 +1,173 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.util.Date; - -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Table; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -/** - * A shared context is a key-value pair in a session. All shared-context objects - * should be dropped when a session is destroyed. Because there's always a - * chance of missing that event, this object notes its creation time so that it - * can be expired after a suitable time interval. - */ -@Entity -@Table(name = "fn_shared_context") -public class SharedContext extends DomainVo { - - // generated - private static final long serialVersionUID = 7287469622586677888L; - - @Id - @GeneratedValue(strategy = GenerationType.AUTO) - private Long id; - private Date create_time; - private String context_id; - private String ckey; - private String cvalue; - - /** - * Mandatory no-argument constructor - */ - public SharedContext() { - } - - /** - * Convenience constructor. The database ID and creation timestamp are - * populated when the object is added to the database. - */ - public SharedContext(final String contextId, final String key, final String value) { - this.context_id = contextId; - this.ckey = key; - this.cvalue = value; - } - - /** - * Gets the database row ID. - * - * @return Database row ID - */ - public Long getId() { - return id; - } - - /** - * Sets the database row ID. - * - * @param id - */ - public void setId(final Long id) { - this.id = id; - } - - /** - * Gets the creation time - * - * @return Creation time as a Date - */ - public Date getCreate_time() { - return create_time; - } - - /** - * Sets the creation time - * - * @param create_time - */ - public void setCreate_time(final Date create_time) { - this.create_time = create_time; - } - - /** - * Gets the context ID - * - * @return Context ID - */ - public String getContext_id() { - return context_id; - } - - /** - * Sets the context ID - * - * @param context_id - */ - public void setContext_id(final String context_id) { - this.context_id = context_id; - } - - /** - * Gets the key of the key-value pair. Called ckey because "key" is a - * reserved word in Mysql. - * - * @return The key - */ - public String getCkey() { - return ckey; - } - - /** - * Sets the key of the key-value pair. - * - * @param ckey - */ - public void setCkey(final String ckey) { - this.ckey = ckey; - } - - /** - * Gets the value of the key-value pair. Called cvalue because "value" is a - * reserved word in Mysql. - * - * @return - */ - public String getCvalue() { - return cvalue; - } - - /** - * Sets the value of the key-value pair. - * - * @param cvalue - */ - public void setCvalue(final String cvalue) { - this.cvalue = cvalue; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.util.Date; + +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.Table; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +/** + * A shared context is a key-value pair in a session. All shared-context objects + * should be dropped when a session is destroyed. Because there's always a + * chance of missing that event, this object notes its creation time so that it + * can be expired after a suitable time interval. + */ +@Entity +@Table(name = "fn_shared_context") +public class SharedContext extends DomainVo { + + // generated + private static final long serialVersionUID = 7287469622586677888L; + + @Id + @GeneratedValue(strategy = GenerationType.AUTO) + private Long id; + private Date create_time; + private String context_id; + private String ckey; + private String cvalue; + + /** + * Mandatory no-argument constructor + */ + public SharedContext() { + } + + /** + * Convenience constructor. The database ID and creation timestamp are + * populated when the object is added to the database. + * + * @param contextId + * context ID + * @param key + * context key + * @param value + * context value + */ + public SharedContext(final String contextId, final String key, final String value) { + this.context_id = contextId; + this.ckey = key; + this.cvalue = value; + } + + /** + * Gets the database row ID. + * + * @return Database row ID + */ + public Long getId() { + return id; + } + + /** + * Sets the database row ID. + * + * @param id + * database row ID + */ + public void setId(final Long id) { + this.id = id; + } + + /** + * Gets the creation time + * + * @return Creation time as a Date + */ + public Date getCreate_time() { + return create_time; + } + + /** + * Sets the creation time + * + * @param create_time + * Date + */ + public void setCreate_time(final Date create_time) { + this.create_time = create_time; + } + + /** + * Gets the context ID + * + * @return Context ID + */ + public String getContext_id() { + return context_id; + } + + /** + * Sets the context ID + * + * @param context_id + * String + */ + public void setContext_id(final String context_id) { + this.context_id = context_id; + } + + /** + * Gets the key of the key-value pair. Called ckey because "key" is a + * reserved word in Mysql. + * + * @return The key + */ + public String getCkey() { + return ckey; + } + + /** + * Sets the key of the key-value pair. + * + * @param ckey + * String + */ + public void setCkey(final String ckey) { + this.ckey = ckey; + } + + /** + * Gets the value of the key-value pair. Called cvalue because "value" is a + * reserved word in Mysql. + * + * @return value + */ + public String getCvalue() { + return cvalue; + } + + /** + * Sets the value of the key-value pair. + * + * @param cvalue + * value + */ + public void setCvalue(final String cvalue) { + this.cvalue = cvalue; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/UserRoles.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/UserRoles.java index 1483f34a..83cce3e3 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/UserRoles.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/UserRoles.java @@ -1,113 +1,113 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.io.Serializable; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; - -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; - -public class UserRoles implements Serializable { - private static final long serialVersionUID = 1L; - - /* - private static final HashMap rolesDictionary; - // remove hard coded roles - static { - rolesDictionary = new HashMap(); - rolesDictionary.put(Long.valueOf(SystemProperties.getProperty(SystemProperties.SYS_ADMIN_ROLE_ID)).longValue(), "superAdmin"); - rolesDictionary.put(Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID)).longValue(), "admin"); - } - */ - - public UserRoles(UserRole user) { - setOrgUserId(user.getOrgUserId()); - setFirstName(user.getFirstName()); - setLastName(user.getLastName()); - setGuestSession(user.getUser_Id()==-1 ? true : false); - - addRole(user.getRoleName()); - } - - public void addRole(String roleName) { - //String normalizedRole = normalizeRole(roleId); - if (!getRoles().contains(roleName)) { - this.roles.add(roleName); - } - } - - /* - public static String normalizeRole(Long role) { - String roleTranslated = rolesDictionary.get(role); - return roleTranslated == null ? "user" : roleTranslated; - } - */ - - private String orgUserId; - private String firstName; - private String lastName; - private boolean guestSession; - - // TODO: Make into set - private List roles = new ArrayList(); - - public String getFirstName() { - return firstName; - } - - public void setFirstName(String firstName) { - this.firstName = firstName; - } - - public String getLastName() { - return lastName; - } - - public void setLastName(String lastName) { - this.lastName = lastName; - } - - public String getOrgUserId() { - return orgUserId; - } - - public void setOrgUserId(String orgUserId) { - this.orgUserId = orgUserId; - } - - public List getRoles() { - return roles; - } - - public void setRoles(List roles) { - this.roles = roles; - } - - public void setGuestSession(boolean guestSession) { - this.guestSession = guestSession; - } - - public boolean getGuestSession() { - return this.guestSession; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.io.Serializable; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; + +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; + +public class UserRoles implements Serializable { + private static final long serialVersionUID = 1L; + + /* + private static final HashMap rolesDictionary; + // remove hard coded roles + static { + rolesDictionary = new HashMap(); + rolesDictionary.put(Long.valueOf(SystemProperties.getProperty(SystemProperties.SYS_ADMIN_ROLE_ID)).longValue(), "superAdmin"); + rolesDictionary.put(Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID)).longValue(), "admin"); + } + */ + + public UserRoles(UserRole user) { + setOrgUserId(user.getOrgUserId()); + setFirstName(user.getFirstName()); + setLastName(user.getLastName()); + setGuestSession(user.getUser_Id()==-1 ? true : false); + + addRole(user.getRoleName()); + } + + public void addRole(String roleName) { + //String normalizedRole = normalizeRole(roleId); + if (!getRoles().contains(roleName)) { + this.roles.add(roleName); + } + } + + /* + public static String normalizeRole(Long role) { + String roleTranslated = rolesDictionary.get(role); + return roleTranslated == null ? "user" : roleTranslated; + } + */ + + private String orgUserId; + private String firstName; + private String lastName; + private boolean guestSession; + + // TODO: Make into set + private List roles = new ArrayList(); + + public String getFirstName() { + return firstName; + } + + public void setFirstName(String firstName) { + this.firstName = firstName; + } + + public String getLastName() { + return lastName; + } + + public void setLastName(String lastName) { + this.lastName = lastName; + } + + public String getOrgUserId() { + return orgUserId; + } + + public void setOrgUserId(String orgUserId) { + this.orgUserId = orgUserId; + } + + public List getRoles() { + return roles; + } + + public void setRoles(List roles) { + this.roles = roles; + } + + public void setGuestSession(boolean guestSession) { + this.guestSession = guestSession; + } + + public boolean getGuestSession() { + return this.guestSession; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/Widget.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/Widget.java index c2ef3c00..302195f0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/Widget.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/Widget.java @@ -1,105 +1,105 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import org.apache.commons.lang.StringUtils; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -public class Widget extends DomainVo { - - private static final long serialVersionUID = 1L; - - private String name; - - private Integer width; - - private Integer height; - - private String url; - - private Long appId; - - public Widget() { - // Attention!!! - // We set here all default values. We also place protection - // into setters for fields with default values. - // If we don't use such protection we are able to place null - // to these fields and save such fields into DB even if DB has - // default values for these fields. - this.name = ""; - this.width = new Integer(0); - this.height = new Integer(0); - this.url = ""; - } - - public String getName() { - return name; - } - - public void setName(String name) { - if (StringUtils.isEmpty(name)) { - name = ""; - } - this.name = name; - } - - public Integer getWidth() { - return width; - } - - public void setWidth(Integer width) { - if (width == null) { - width = new Integer(0); - } - this.width = width; - } - - public Integer getHeight() { - return height; - } - - public void setHeight(Integer height) { - if (height == null) { - height = new Integer(0); - } - this.height = height; - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - if (StringUtils.isEmpty(url)) { - url = ""; - } - this.url = url; - } - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import org.apache.commons.lang.StringUtils; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +public class Widget extends DomainVo { + + private static final long serialVersionUID = 1L; + + private String name; + + private Integer width; + + private Integer height; + + private String url; + + private Long appId; + + public Widget() { + // Attention!!! + // We set here all default values. We also place protection + // into setters for fields with default values. + // If we don't use such protection we are able to place null + // to these fields and save such fields into DB even if DB has + // default values for these fields. + this.name = ""; + this.width = new Integer(0); + this.height = new Integer(0); + this.url = ""; + } + + public String getName() { + return name; + } + + public void setName(String name) { + if (StringUtils.isEmpty(name)) { + name = ""; + } + this.name = name; + } + + public Integer getWidth() { + return width; + } + + public void setWidth(Integer width) { + if (width == null) { + width = new Integer(0); + } + this.width = width; + } + + public Integer getHeight() { + return height; + } + + public void setHeight(Integer height) { + if (height == null) { + height = new Integer(0); + } + this.height = height; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + if (StringUtils.isEmpty(url)) { + url = ""; + } + this.url = url; + } + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetCatalog.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetCatalog.java index 605a41d2..5481a22f 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetCatalog.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetCatalog.java @@ -1,109 +1,109 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.io.Serializable; -import java.util.Set; - -public class WidgetCatalog implements Serializable{ - - private static final long serialVersionUID = 1L; - - private long id; - - private String name; - - private String desc; - - private String fileLocation; - - private String allowAllUser; - - private Long serviceId; - - private String sortOrder; - - private String statusCode; - - private Set widgetRoles; - - public long getId() { - return id; - } - public void setId(long id) { - this.id = id; - } - public String getName() { - return name; - } - public void setName(String name) { - this.name = name; - } - - public Long getServiceId() { - return serviceId; - } - public void setServiceId(Long serviceId) { - this.serviceId = serviceId; - } - public String getDesc() { - return desc; - } - public void setDesc(String desc) { - this.desc = desc; - } - public String getFileLocation() { - return fileLocation; - } - public void setFileLocation(String fileLocation) { - this.fileLocation = fileLocation; - } - - public String getAllowAllUser() { - return allowAllUser; - } - public void setAllowAllUser(String allowAllUser) { - this.allowAllUser = allowAllUser; - } - public Set getWidgetRoles() { - return widgetRoles; - } - public void setWidgetRoles(Set widgetRoles) { - this.widgetRoles = widgetRoles; - } - - public String getSortOrder() { - return sortOrder; - } - public void setSortOrder(String sortOrder) { - this.sortOrder = sortOrder; - } - public String getStatusCode() { - return statusCode; - } - public void setStatusCode(String statusCode) { - this.statusCode = statusCode; - } - @Override - public String toString() { - return "WidgetCatalog [id=" + id + ", name=" + name + ", desc=" + desc + ", fileLocation=" + fileLocation - + ", allowAllUser=" + allowAllUser + "]"; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.io.Serializable; +import java.util.Set; + +public class WidgetCatalog implements Serializable{ + + private static final long serialVersionUID = 1L; + + private long id; + + private String name; + + private String desc; + + private String fileLocation; + + private String allowAllUser; + + private Long serviceId; + + private String sortOrder; + + private String statusCode; + + private Set widgetRoles; + + public long getId() { + return id; + } + public void setId(long id) { + this.id = id; + } + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + + public Long getServiceId() { + return serviceId; + } + public void setServiceId(Long serviceId) { + this.serviceId = serviceId; + } + public String getDesc() { + return desc; + } + public void setDesc(String desc) { + this.desc = desc; + } + public String getFileLocation() { + return fileLocation; + } + public void setFileLocation(String fileLocation) { + this.fileLocation = fileLocation; + } + + public String getAllowAllUser() { + return allowAllUser; + } + public void setAllowAllUser(String allowAllUser) { + this.allowAllUser = allowAllUser; + } + public Set getWidgetRoles() { + return widgetRoles; + } + public void setWidgetRoles(Set widgetRoles) { + this.widgetRoles = widgetRoles; + } + + public String getSortOrder() { + return sortOrder; + } + public void setSortOrder(String sortOrder) { + this.sortOrder = sortOrder; + } + public String getStatusCode() { + return statusCode; + } + public void setStatusCode(String statusCode) { + this.statusCode = statusCode; + } + @Override + public String toString() { + return "WidgetCatalog [id=" + id + ", name=" + name + ", desc=" + desc + ", fileLocation=" + fileLocation + + ", allowAllUser=" + allowAllUser + "]"; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetCatalogParameter.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetCatalogParameter.java index c72780aa..6e750db9 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetCatalogParameter.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetCatalogParameter.java @@ -1,90 +1,90 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -public class WidgetCatalogParameter extends DomainVo{ - - private static final long serialVersionUID = 1L; - - public WidgetCatalogParameter() { - - } - private Long id; - - private Long widgetId; - - private Long userId; - - private Long paramId; - - private String user_value; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public Long getWidgetId() { - return widgetId; - } - - public void setWidgetId(Long widgetId) { - this.widgetId = widgetId; - } - - public String getUser_value() { - return user_value; - } - - public void setUser_value(String user_value) { - this.user_value = user_value; - } - - public Long getParamId() { - return paramId; - } - - public void setParamId(Long paramId) { - this.paramId = paramId; - } - - public Long getUserId() { - return userId; - } - - public void setUserId(Long userId) { - this.userId = userId; - } - - @Override - public String toString() { - return "WidgetCatalogParameter [id=" + id + ", widgetId=" + widgetId + ", userId=" + userId + ", paramId=" - + paramId + ", user_value=" + user_value + "]"; - } - - - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +public class WidgetCatalogParameter extends DomainVo{ + + private static final long serialVersionUID = 1L; + + public WidgetCatalogParameter() { + + } + private Long id; + + private Long widgetId; + + private Long userId; + + private Long paramId; + + private String user_value; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getWidgetId() { + return widgetId; + } + + public void setWidgetId(Long widgetId) { + this.widgetId = widgetId; + } + + public String getUser_value() { + return user_value; + } + + public void setUser_value(String user_value) { + this.user_value = user_value; + } + + public Long getParamId() { + return paramId; + } + + public void setParamId(Long paramId) { + this.paramId = paramId; + } + + public Long getUserId() { + return userId; + } + + public void setUserId(Long userId) { + this.userId = userId; + } + + @Override + public String toString() { + return "WidgetCatalogParameter [id=" + id + ", widgetId=" + widgetId + ", userId=" + userId + ", paramId=" + + paramId + ", user_value=" + user_value + "]"; + } + + + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetParameterResult.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetParameterResult.java index 884ec141..b41f985e 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetParameterResult.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetParameterResult.java @@ -1,70 +1,70 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -public class WidgetParameterResult { - - private Long param_id; - - private String param_key; - - private String user_value; - - private String default_value; - - public Long getParam_id() { - return param_id; - } - - public void setParam_id(Long param_id) { - this.param_id = param_id; - } - - public String getParam_key() { - return param_key; - } - - public void setParam_key(String param_key) { - this.param_key = param_key; - } - - public String getUser_value() { - return user_value; - } - - public void setUser_value(String user_value) { - this.user_value = user_value; - } - - public String getDefault_value() { - return default_value; - } - - public void setDefault_value(String default_value) { - this.default_value = default_value; - } - - @Override - public String toString() { - return "WidgetParameterResult [param_id=" + param_id + ", param_key=" + param_key + ", user_value=" + user_value - + ", default_value=" + default_value + "]"; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +public class WidgetParameterResult { + + private Long param_id; + + private String param_key; + + private String user_value; + + private String default_value; + + public Long getParam_id() { + return param_id; + } + + public void setParam_id(Long param_id) { + this.param_id = param_id; + } + + public String getParam_key() { + return param_key; + } + + public void setParam_key(String param_key) { + this.param_key = param_key; + } + + public String getUser_value() { + return user_value; + } + + public void setUser_value(String user_value) { + this.user_value = user_value; + } + + public String getDefault_value() { + return default_value; + } + + public void setDefault_value(String default_value) { + this.default_value = default_value; + } + + @Override + public String toString() { + return "WidgetParameterResult [param_id=" + param_id + ", param_key=" + param_key + ", user_value=" + user_value + + ", default_value=" + default_value + "]"; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetServiceHeaders.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetServiceHeaders.java index 9200adda..c53df6ca 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetServiceHeaders.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/domain/WidgetServiceHeaders.java @@ -1,54 +1,54 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.domain; - -import java.nio.charset.Charset; - -import org.apache.commons.codec.binary.Base64; -import org.springframework.http.HttpHeaders; - -import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; - -public class WidgetServiceHeaders { - - private static HttpHeaders widgetHeaders; - - private WidgetServiceHeaders(){} - - public static HttpHeaders getInstance() throws Exception{ - if(null == widgetHeaders){ - return new HttpHeaders(){{ - - String username = EcompPortalUtils.getPropertyOrDefault("microservices.widget.username", "widget_user"); - String password = CipherUtil.decrypt(EcompPortalUtils.getPropertyOrDefault("microservices.widget.password", "widget_password")); - String auth = username + ":" + password; - byte[] encodedAuth = Base64.encodeBase64( - auth.getBytes(Charset.forName("US-ASCII")) ); - String authHeader = "Basic " + new String( encodedAuth ); - set( "Authorization", authHeader ); - } - }; - } - else - return widgetHeaders; - - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.domain; + +import java.nio.charset.Charset; + +import org.apache.commons.codec.binary.Base64; +import org.springframework.http.HttpHeaders; + +import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; + +public class WidgetServiceHeaders { + + private static HttpHeaders widgetHeaders; + + private WidgetServiceHeaders(){} + + public static HttpHeaders getInstance() throws Exception{ + if(null == widgetHeaders){ + return new HttpHeaders(){{ + + String username = EcompPortalUtils.getPropertyOrDefault("microservices.widget.username", "widget_user"); + String password = CipherUtil.decrypt(EcompPortalUtils.getPropertyOrDefault("microservices.widget.password", "widget_password")); + String auth = username + ":" + password; + byte[] encodedAuth = Base64.encodeBase64( + auth.getBytes(Charset.forName("US-ASCII")) ); + String authHeader = "Basic " + new String( encodedAuth ); + set( "Authorization", authHeader ); + } + }; + } + else + return widgetHeaders; + + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppCatalogItem.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppCatalogItem.java index ec20b4f3..9cce4c0f 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppCatalogItem.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppCatalogItem.java @@ -1,249 +1,258 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.ecomp.model; - -import javax.persistence.Entity; -import javax.persistence.Id; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; -import com.fasterxml.jackson.annotation.JsonInclude; - -/** - * This model of an application catalog entry has some EPApp fields plus - * additional fields to indicate access(ible) and select(ed) statuses. - */ -@Entity -@JsonInclude(JsonInclude.Include.NON_NULL) -public class AppCatalogItem extends DomainVo { - - private static final long serialVersionUID = 6619663784935017846L; - - @Id - private Long id; - private String name; - private String imageUrl; - private String description; - private String notes; - private String url; - private String alternateUrl; - private Boolean restricted; - private Boolean open; - private Boolean access; - private Boolean select; - private Boolean pending; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getImageUrl() { - return imageUrl; - } - - public void setImageUrl(String imageUrl) { - this.imageUrl = imageUrl; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getNotes() { - return notes; - } - - public void setNotes(String notes) { - this.notes = notes; - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } - - public String getAlternateUrl() { - return alternateUrl; - } - - public void setAlternateUrl(String alternateUrl) { - this.alternateUrl = alternateUrl; - } - - public Boolean getRestricted() { - return restricted; - } - - public void setRestricted(Boolean restricted) { - this.restricted = restricted; - } - - public Boolean getOpen() { - return open; - } - - public void setOpen(Boolean open) { - this.open = open; - } - - public Boolean getAccess() { - return access; - } - - public void setAccess(Boolean access) { - this.access = access; - } - - public Boolean getSelect() { - return select; - } - - public void setSelect(Boolean select) { - this.select = select; - } - - public Boolean getPending() { - return pending; - } - - public void setPending(Boolean pending) { - this.pending = pending; - } - - public static long getSerialversionuid() { - return serialVersionUID; - } - - @Override - public String toString() { - return "AppCatalogItem [id=" + id + ", name=" + name + ", access=" + access + ", select=" + select - + ", pending=" + pending + "]"; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((access == null) ? 0 : access.hashCode()); - result = prime * result + ((alternateUrl == null) ? 0 : alternateUrl.hashCode()); - result = prime * result + ((description == null) ? 0 : description.hashCode()); - result = prime * result + ((id == null) ? 0 : id.hashCode()); - result = prime * result + ((imageUrl == null) ? 0 : imageUrl.hashCode()); - result = prime * result + ((name == null) ? 0 : name.hashCode()); - result = prime * result + ((notes == null) ? 0 : notes.hashCode()); - result = prime * result + ((open == null) ? 0 : open.hashCode()); - result = prime * result + ((pending == null) ? 0 : pending.hashCode()); - result = prime * result + ((restricted == null) ? 0 : restricted.hashCode()); - result = prime * result + ((select == null) ? 0 : select.hashCode()); - result = prime * result + ((url == null) ? 0 : url.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - AppCatalogItem other = (AppCatalogItem) obj; - if (access == null) { - if (other.access != null) - return false; - } else if (!access.equals(other.access)) - return false; - if (alternateUrl == null) { - if (other.alternateUrl != null) - return false; - } else if (!alternateUrl.equals(other.alternateUrl)) - return false; - if (description == null) { - if (other.description != null) - return false; - } else if (!description.equals(other.description)) - return false; - if (id == null) { - if (other.id != null) - return false; - } else if (!id.equals(other.id)) - return false; - if (imageUrl == null) { - if (other.imageUrl != null) - return false; - } else if (!imageUrl.equals(other.imageUrl)) - return false; - if (name == null) { - if (other.name != null) - return false; - } else if (!name.equals(other.name)) - return false; - if (notes == null) { - if (other.notes != null) - return false; - } else if (!notes.equals(other.notes)) - return false; - if (open == null) { - if (other.open != null) - return false; - } else if (!open.equals(other.open)) - return false; - if (pending == null) { - if (other.pending != null) - return false; - } else if (!pending.equals(other.pending)) - return false; - if (restricted == null) { - if (other.restricted != null) - return false; - } else if (!restricted.equals(other.restricted)) - return false; - if (select == null) { - if (other.select != null) - return false; - } else if (!select.equals(other.select)) - return false; - if (url == null) { - if (other.url != null) - return false; - } else if (!url.equals(other.url)) - return false; - return true; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.ecomp.model; + +import javax.persistence.Entity; +import javax.persistence.Id; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; +import com.fasterxml.jackson.annotation.JsonInclude; + +/** + * This model of an application catalog entry has some EPApp fields plus + * additional fields to indicate access(ible) and select(ed) statuses. + */ +@Entity +@JsonInclude(JsonInclude.Include.NON_NULL) +public class AppCatalogItem extends DomainVo { + + private static final long serialVersionUID = 6619663784935017846L; + + @Id + private Long id; + private String name; + private String mlAppName; + private String imageUrl; + private String description; + private String notes; + private String url; + private String alternateUrl; + private Boolean restricted; + private Boolean open; + private Boolean access; + private Boolean select; + private Boolean pending; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getMlAppName() { + return mlAppName; + } + + public void setMlAppName(String mlAppName) { + this.mlAppName = mlAppName; + } + + public String getImageUrl() { + return imageUrl; + } + + public void setImageUrl(String imageUrl) { + this.imageUrl = imageUrl; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getNotes() { + return notes; + } + + public void setNotes(String notes) { + this.notes = notes; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public String getAlternateUrl() { + return alternateUrl; + } + + public void setAlternateUrl(String alternateUrl) { + this.alternateUrl = alternateUrl; + } + + public Boolean getRestricted() { + return restricted; + } + + public void setRestricted(Boolean restricted) { + this.restricted = restricted; + } + + public Boolean getOpen() { + return open; + } + + public void setOpen(Boolean open) { + this.open = open; + } + + public Boolean getAccess() { + return access; + } + + public void setAccess(Boolean access) { + this.access = access; + } + + public Boolean getSelect() { + return select; + } + + public void setSelect(Boolean select) { + this.select = select; + } + + public Boolean getPending() { + return pending; + } + + public void setPending(Boolean pending) { + this.pending = pending; + } + + public static long getSerialversionuid() { + return serialVersionUID; + } + + @Override + public String toString() { + return "AppCatalogItem [id=" + id + ", name=" + name + ", access=" + access + ", select=" + select + + ", pending=" + pending + "]"; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((access == null) ? 0 : access.hashCode()); + result = prime * result + ((alternateUrl == null) ? 0 : alternateUrl.hashCode()); + result = prime * result + ((description == null) ? 0 : description.hashCode()); + result = prime * result + ((id == null) ? 0 : id.hashCode()); + result = prime * result + ((imageUrl == null) ? 0 : imageUrl.hashCode()); + result = prime * result + ((name == null) ? 0 : name.hashCode()); + result = prime * result + ((notes == null) ? 0 : notes.hashCode()); + result = prime * result + ((open == null) ? 0 : open.hashCode()); + result = prime * result + ((pending == null) ? 0 : pending.hashCode()); + result = prime * result + ((restricted == null) ? 0 : restricted.hashCode()); + result = prime * result + ((select == null) ? 0 : select.hashCode()); + result = prime * result + ((url == null) ? 0 : url.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + AppCatalogItem other = (AppCatalogItem) obj; + if (access == null) { + if (other.access != null) + return false; + } else if (!access.equals(other.access)) + return false; + if (alternateUrl == null) { + if (other.alternateUrl != null) + return false; + } else if (!alternateUrl.equals(other.alternateUrl)) + return false; + if (description == null) { + if (other.description != null) + return false; + } else if (!description.equals(other.description)) + return false; + if (id == null) { + if (other.id != null) + return false; + } else if (!id.equals(other.id)) + return false; + if (imageUrl == null) { + if (other.imageUrl != null) + return false; + } else if (!imageUrl.equals(other.imageUrl)) + return false; + if (name == null) { + if (other.name != null) + return false; + } else if (!name.equals(other.name)) + return false; + if (notes == null) { + if (other.notes != null) + return false; + } else if (!notes.equals(other.notes)) + return false; + if (open == null) { + if (other.open != null) + return false; + } else if (!open.equals(other.open)) + return false; + if (pending == null) { + if (other.pending != null) + return false; + } else if (!pending.equals(other.pending)) + return false; + if (restricted == null) { + if (other.restricted != null) + return false; + } else if (!restricted.equals(other.restricted)) + return false; + if (select == null) { + if (other.select != null) + return false; + } else if (!select.equals(other.select)) + return false; + if (url == null) { + if (other.url != null) + return false; + } else if (!url.equals(other.url)) + return false; + return true; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppCategoryFunctionsItem.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppCategoryFunctionsItem.java index b1601431..9b35beb0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppCategoryFunctionsItem.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppCategoryFunctionsItem.java @@ -1,140 +1,140 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.ecomp.model; - -import javax.persistence.Entity; -import javax.persistence.Id; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; -import com.fasterxml.jackson.annotation.JsonInclude; - -/** - * Carries row information for the functional table on the Contact Us page. - */ -@Entity -@JsonInclude(JsonInclude.Include.NON_NULL) -public class AppCategoryFunctionsItem extends DomainVo { - - private static final long serialVersionUID = -1573834082471206458L; - - @Id - private String rowId; - private String appId; - private String application; - private String category; - private String functions; - - public String getRowId() { - return rowId; - } - - public void setRowId(String rowId) { - this.rowId = rowId; - } - - public String getAppId() { - return appId; - } - - public void setAppId(String appId) { - this.appId = appId; - } - - public String getApplication() { - return application; - } - - public void setApplication(String appName) { - this.application = appName; - } - - public String getCategory() { - return category; - } - - public void setCategory(String category) { - this.category = category; - } - - public String getFunctions() { - return functions; - } - - public void setFunctions(String functions) { - this.functions = functions; - } - - @Override - public String toString() { - return "AppCategoryFunctionsItem [rowId=" + rowId + ", appId=" + appId + ", application=" + application - + ", category=" + category + ", functions=" + functions + "]"; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((appId == null) ? 0 : appId.hashCode()); - result = prime * result + ((application == null) ? 0 : application.hashCode()); - result = prime * result + ((category == null) ? 0 : category.hashCode()); - result = prime * result + ((functions == null) ? 0 : functions.hashCode()); - result = prime * result + ((rowId == null) ? 0 : rowId.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - AppCategoryFunctionsItem other = (AppCategoryFunctionsItem) obj; - if (appId == null) { - if (other.appId != null) - return false; - } else if (!appId.equals(other.appId)) - return false; - if (application == null) { - if (other.application != null) - return false; - } else if (!application.equals(other.application)) - return false; - if (category == null) { - if (other.category != null) - return false; - } else if (!category.equals(other.category)) - return false; - if (functions == null) { - if (other.functions != null) - return false; - } else if (!functions.equals(other.functions)) - return false; - if (rowId == null) { - if (other.rowId != null) - return false; - } else if (!rowId.equals(other.rowId)) - return false; - return true; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.ecomp.model; + +import javax.persistence.Entity; +import javax.persistence.Id; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; +import com.fasterxml.jackson.annotation.JsonInclude; + +/** + * Carries row information for the functional table on the Contact Us page. + */ +@Entity +@JsonInclude(JsonInclude.Include.NON_NULL) +public class AppCategoryFunctionsItem extends DomainVo { + + private static final long serialVersionUID = -1573834082471206458L; + + @Id + private String rowId; + private String appId; + private String application; + private String category; + private String functions; + + public String getRowId() { + return rowId; + } + + public void setRowId(String rowId) { + this.rowId = rowId; + } + + public String getAppId() { + return appId; + } + + public void setAppId(String appId) { + this.appId = appId; + } + + public String getApplication() { + return application; + } + + public void setApplication(String appName) { + this.application = appName; + } + + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + + public String getFunctions() { + return functions; + } + + public void setFunctions(String functions) { + this.functions = functions; + } + + @Override + public String toString() { + return "AppCategoryFunctionsItem [rowId=" + rowId + ", appId=" + appId + ", application=" + application + + ", category=" + category + ", functions=" + functions + "]"; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((appId == null) ? 0 : appId.hashCode()); + result = prime * result + ((application == null) ? 0 : application.hashCode()); + result = prime * result + ((category == null) ? 0 : category.hashCode()); + result = prime * result + ((functions == null) ? 0 : functions.hashCode()); + result = prime * result + ((rowId == null) ? 0 : rowId.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + AppCategoryFunctionsItem other = (AppCategoryFunctionsItem) obj; + if (appId == null) { + if (other.appId != null) + return false; + } else if (!appId.equals(other.appId)) + return false; + if (application == null) { + if (other.application != null) + return false; + } else if (!application.equals(other.application)) + return false; + if (category == null) { + if (other.category != null) + return false; + } else if (!category.equals(other.category)) + return false; + if (functions == null) { + if (other.functions != null) + return false; + } else if (!functions.equals(other.functions)) + return false; + if (rowId == null) { + if (other.rowId != null) + return false; + } else if (!rowId.equals(other.rowId)) + return false; + return true; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppContactUsItem.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppContactUsItem.java index 5dc7bf57..1cfb6644 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppContactUsItem.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/AppContactUsItem.java @@ -1,171 +1,171 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.ecomp.model; - -import javax.persistence.Entity; -import javax.persistence.Id; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; -import com.fasterxml.jackson.annotation.JsonInclude; - -/** - * An easily serializable version of row information from the fn_app_contact_us - * table; specifically this has an app ID instead of an EPApp object. - */ -@Entity -@JsonInclude(JsonInclude.Include.NON_NULL) -public class AppContactUsItem extends DomainVo { - - private static final long serialVersionUID = 6964210807573346262L; - - @Id - private Long appId; - private String appName; - private String description; - private String contactName; - private String contactEmail; - private String url; - private String activeYN; - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public String getAppName() { - return appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - public String getDescription() { - return description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getContactName() { - return contactName; - } - - public void setContactName(String contactName) { - this.contactName = contactName; - } - - public String getContactEmail() { - return contactEmail; - } - - public void setContactEmail(String contactEmail) { - this.contactEmail = contactEmail; - } - - public String getUrl() { - return url; - } - - public void setUrl(String url) { - this.url = url; - } - - public String getActiveYN() { - return activeYN; - } - - public void setActiveYN(String activeYN) { - this.activeYN = activeYN; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((activeYN == null) ? 0 : activeYN.hashCode()); - result = prime * result + ((appId == null) ? 0 : appId.hashCode()); - result = prime * result + ((appName == null) ? 0 : appName.hashCode()); - result = prime * result + ((contactEmail == null) ? 0 : contactEmail.hashCode()); - result = prime * result + ((contactName == null) ? 0 : contactName.hashCode()); - result = prime * result + ((description == null) ? 0 : description.hashCode()); - result = prime * result + ((url == null) ? 0 : url.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - AppContactUsItem other = (AppContactUsItem) obj; - if (activeYN == null) { - if (other.activeYN != null) - return false; - } else if (!activeYN.equals(other.activeYN)) - return false; - if (appId == null) { - if (other.appId != null) - return false; - } else if (!appId.equals(other.appId)) - return false; - if (appName == null) { - if (other.appName != null) - return false; - } else if (!appName.equals(other.appName)) - return false; - if (contactEmail == null) { - if (other.contactEmail != null) - return false; - } else if (!contactEmail.equals(other.contactEmail)) - return false; - if (contactName == null) { - if (other.contactName != null) - return false; - } else if (!contactName.equals(other.contactName)) - return false; - if (description == null) { - if (other.description != null) - return false; - } else if (!description.equals(other.description)) - return false; - if (url == null) { - if (other.url != null) - return false; - } else if (!url.equals(other.url)) - return false; - return true; - } - - @Override - public String toString() { - return "AppContactUsItem [appId=" + appId + ", appName=" + appName + ", description=" + description - + ", contactName=" + contactName + ", contactEmail=" + contactEmail + ", url=" + url + ", activeYN=" - + activeYN + "]"; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.ecomp.model; + +import javax.persistence.Entity; +import javax.persistence.Id; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; +import com.fasterxml.jackson.annotation.JsonInclude; + +/** + * An easily serializable version of row information from the fn_app_contact_us + * table; specifically this has an app ID instead of an EPApp object. + */ +@Entity +@JsonInclude(JsonInclude.Include.NON_NULL) +public class AppContactUsItem extends DomainVo { + + private static final long serialVersionUID = 6964210807573346262L; + + @Id + private Long appId; + private String appName; + private String description; + private String contactName; + private String contactEmail; + private String url; + private String activeYN; + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public String getAppName() { + return appName; + } + + public void setAppName(String appName) { + this.appName = appName; + } + + public String getDescription() { + return description; + } + + public void setDescription(String description) { + this.description = description; + } + + public String getContactName() { + return contactName; + } + + public void setContactName(String contactName) { + this.contactName = contactName; + } + + public String getContactEmail() { + return contactEmail; + } + + public void setContactEmail(String contactEmail) { + this.contactEmail = contactEmail; + } + + public String getUrl() { + return url; + } + + public void setUrl(String url) { + this.url = url; + } + + public String getActiveYN() { + return activeYN; + } + + public void setActiveYN(String activeYN) { + this.activeYN = activeYN; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((activeYN == null) ? 0 : activeYN.hashCode()); + result = prime * result + ((appId == null) ? 0 : appId.hashCode()); + result = prime * result + ((appName == null) ? 0 : appName.hashCode()); + result = prime * result + ((contactEmail == null) ? 0 : contactEmail.hashCode()); + result = prime * result + ((contactName == null) ? 0 : contactName.hashCode()); + result = prime * result + ((description == null) ? 0 : description.hashCode()); + result = prime * result + ((url == null) ? 0 : url.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + AppContactUsItem other = (AppContactUsItem) obj; + if (activeYN == null) { + if (other.activeYN != null) + return false; + } else if (!activeYN.equals(other.activeYN)) + return false; + if (appId == null) { + if (other.appId != null) + return false; + } else if (!appId.equals(other.appId)) + return false; + if (appName == null) { + if (other.appName != null) + return false; + } else if (!appName.equals(other.appName)) + return false; + if (contactEmail == null) { + if (other.contactEmail != null) + return false; + } else if (!contactEmail.equals(other.contactEmail)) + return false; + if (contactName == null) { + if (other.contactName != null) + return false; + } else if (!contactName.equals(other.contactName)) + return false; + if (description == null) { + if (other.description != null) + return false; + } else if (!description.equals(other.description)) + return false; + if (url == null) { + if (other.url != null) + return false; + } else if (!url.equals(other.url)) + return false; + return true; + } + + @Override + public String toString() { + return "AppContactUsItem [appId=" + appId + ", appName=" + appName + ", description=" + description + + ", contactName=" + contactName + ", contactEmail=" + contactEmail + ", url=" + url + ", activeYN=" + + activeYN + "]"; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/CommonWidgetsEnum.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/CommonWidgetsEnum.java index 994108dd..cb712a22 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/CommonWidgetsEnum.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/CommonWidgetsEnum.java @@ -1,36 +1,36 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.ecomp.model; - -public enum CommonWidgetsEnum{ - NEWS("news"), - EVENTS("events"), - RESOURCES("resources"); - - private String value; - private CommonWidgetsEnum(String value){ - this.value = value; - } - - @Override - public String toString() { - return value; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.ecomp.model; + +public enum CommonWidgetsEnum{ + NEWS("news"), + EVENTS("events"), + RESOURCES("resources"); + + private String value; + private CommonWidgetsEnum(String value){ + this.value = value; + } + + @Override + public String toString() { + return value; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/PortalRestResponse.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/PortalRestResponse.java index 3572d6a6..21c6dfe7 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/PortalRestResponse.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/PortalRestResponse.java @@ -1,101 +1,101 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.ecomp.model; - -public class PortalRestResponse { - - private PortalRestStatusEnum status; - private String message; - - private T response; - - public PortalRestResponse(){}; - - public PortalRestResponse(PortalRestStatusEnum status, String message, T response){ - this.status = status; - this.message = message; - this.response = response; - } - - public PortalRestStatusEnum getStatus() { - return status; - } - - public void setStatus(PortalRestStatusEnum status) { - this.status = status; - } - - public String getMessage() { - return message; - } - - public void setMessage(String message) { - this.message = message; - } - - public T getResponse() { - return response; - } - - public void setResponse(T response) { - this.response = response; - } - - @Override - public String toString() { - return "PortalRestResponse [status=" + status + ", message=" + message + ", response=" + response + "]"; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((message == null) ? 0 : message.hashCode()); - result = prime * result + ((response == null) ? 0 : response.hashCode()); - result = prime * result + ((status == null) ? 0 : status.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - PortalRestResponse other = (PortalRestResponse) obj; - if (message == null) { - if (other.message != null) - return false; - } else if (!message.equals(other.message)) - return false; - if (response == null) { - if (other.response != null) - return false; - } else if (!response.equals(other.response)) - return false; - if (status != other.status) - return false; - return true; - }; - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.ecomp.model; + +public class PortalRestResponse { + + private PortalRestStatusEnum status; + private String message; + + private T response; + + public PortalRestResponse(){}; + + public PortalRestResponse(PortalRestStatusEnum status, String message, T response){ + this.status = status; + this.message = message; + this.response = response; + } + + public PortalRestStatusEnum getStatus() { + return status; + } + + public void setStatus(PortalRestStatusEnum status) { + this.status = status; + } + + public String getMessage() { + return message; + } + + public void setMessage(String message) { + this.message = message; + } + + public T getResponse() { + return response; + } + + public void setResponse(T response) { + this.response = response; + } + + @Override + public String toString() { + return "PortalRestResponse [status=" + status + ", message=" + message + ", response=" + response + "]"; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((message == null) ? 0 : message.hashCode()); + result = prime * result + ((response == null) ? 0 : response.hashCode()); + result = prime * result + ((status == null) ? 0 : status.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + PortalRestResponse other = (PortalRestResponse) obj; + if (message == null) { + if (other.message != null) + return false; + } else if (!message.equals(other.message)) + return false; + if (response == null) { + if (other.response != null) + return false; + } else if (!response.equals(other.response)) + return false; + if (status != other.status) + return false; + return true; + }; + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/PortalRestStatusEnum.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/PortalRestStatusEnum.java index b4dc63ab..6c264ee2 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/PortalRestStatusEnum.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/PortalRestStatusEnum.java @@ -1,36 +1,36 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.ecomp.model; - -public enum PortalRestStatusEnum{ - OK("ok"), - WARN("WARNING"), - ERROR("error"); - - private String value; - private PortalRestStatusEnum(String value){ - this.value = value; - } - - @Override - public String toString() { - return value; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.ecomp.model; + +public enum PortalRestStatusEnum{ + OK("ok"), + WARN("WARNING"), + ERROR("error"); + + private String value; + private PortalRestStatusEnum(String value){ + this.value = value; + } + + @Override + public String toString() { + return value; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/SearchResultItem.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/SearchResultItem.java index c6538470..dde9bc27 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/SearchResultItem.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ecomp/model/SearchResultItem.java @@ -1,86 +1,86 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.ecomp.model; - -import javax.persistence.Entity; -import javax.persistence.Id; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; - -@Entity -@JsonInclude(JsonInclude.Include.NON_NULL) -public class SearchResultItem extends DomainVo{ - - @Id - private String rowId; - - @JsonProperty("category") - private String category; - - @JsonProperty("name") - private String name; - - @JsonProperty("target") - private String target; - - @JsonProperty("uuid") - private String uuid; - - public String getUuid() { - return uuid; - } - public void setUuid(String uuid) { - this.uuid = uuid; - } - public String getRowId() { - return rowId; - } - public void setRowId(String rowId) { - this.rowId = rowId; - } - public String getCategory() { - return category; - } - public void setCategory(String category) { - this.category = category; - } - public String getName() { - return name; - } - public void setName(String name) { - this.name = name; - } - - public String getTarget() { - return target; - } - public void setTarget(String target) { - this.target = target; - } - @Override - public String toString() { - return "SearchResultItem [rowId=" + rowId + ", category=" + category + ", name=" + name + ", target=" + target - + ", uuid=" + uuid + "]"; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.ecomp.model; + +import javax.persistence.Entity; +import javax.persistence.Id; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; + +@Entity +@JsonInclude(JsonInclude.Include.NON_NULL) +public class SearchResultItem extends DomainVo{ + + @Id + private String rowId; + + @JsonProperty("category") + private String category; + + @JsonProperty("name") + private String name; + + @JsonProperty("target") + private String target; + + @JsonProperty("uuid") + private String uuid; + + public String getUuid() { + return uuid; + } + public void setUuid(String uuid) { + this.uuid = uuid; + } + public String getRowId() { + return rowId; + } + public void setRowId(String rowId) { + this.rowId = rowId; + } + public String getCategory() { + return category; + } + public void setCategory(String category) { + this.category = category; + } + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + + public String getTarget() { + return target; + } + public void setTarget(String target) { + this.target = target; + } + @Override + public String toString() { + return "SearchResultItem [rowId=" + rowId + ", category=" + category + ", name=" + name + ", target=" + target + + ", uuid=" + uuid + "]"; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/exceptions/NoHealthyServiceException.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/exceptions/NoHealthyServiceException.java index ce0366c8..55872f2d 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/exceptions/NoHealthyServiceException.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/exceptions/NoHealthyServiceException.java @@ -1,36 +1,36 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.exceptions; - -import com.ecwid.consul.ConsulException; - -public class NoHealthyServiceException extends ConsulException{ - - private static final long serialVersionUID = -7089437673127729813L; - - public NoHealthyServiceException(String message){ - super(message); - } - - @Override - public String toString() { - return "NoHealthyServiceException [] " + this.getMessage(); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.exceptions; + +import com.ecwid.consul.ConsulException; + +public class NoHealthyServiceException extends ConsulException{ + + private static final long serialVersionUID = -7089437673127729813L; + + public NoHealthyServiceException(String message){ + super(message); + } + + @Override + public String toString() { + return "NoHealthyServiceException [] " + this.getMessage(); + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/interceptor/PortalResourceInterceptor.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/interceptor/PortalResourceInterceptor.java index 9a2fc4de..ba4f2af1 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/interceptor/PortalResourceInterceptor.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/interceptor/PortalResourceInterceptor.java @@ -18,7 +18,6 @@ * ================================================================================*/ package org.openecomp.portalapp.portal.interceptor; -import java.net.URL; import java.nio.charset.Charset; import java.util.Base64; import java.util.Set; @@ -59,7 +58,7 @@ public class PortalResourceInterceptor extends ResourceInterceptor { private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PortalResourceInterceptor.class); @Autowired - private RemoteWebServiceCallService remoteWebServiceCallService; + private RemoteWebServiceCallService remoteWebServiceCallService; @Autowired private ManageService manageService; @@ -196,11 +195,12 @@ public class PortalResourceInterceptor extends ResourceInterceptor { * @throws Exception */ private boolean checkBasicAuth(HttpServletRequest request, HttpServletResponse response) throws Exception { - String uri = request.getRequestURI().toString(); uri = uri.substring(uri.indexOf("/", 1)); - + final String authHeader = request.getHeader("Authorization"); + + // Unauthorized access due to missing HTTP Authorization request header if (authHeader == null) { final String msg = "no authorization found"; logger.debug(EELFLoggerDelegate.debugLogger, "checkBasicAuth: {}", msg); @@ -210,7 +210,7 @@ public class PortalResourceInterceptor extends ResourceInterceptor { String[] accountNamePassword = getUserNamePassword(authHeader); if (accountNamePassword == null || accountNamePassword.length != 2) { - final String msg = "failed to get username and password from auth header"; + final String msg = "failed to get username and password from Atuhorization header"; logger.debug(EELFLoggerDelegate.debugLogger, "checkBasicAuth: {}", msg); sendErrorResponse(response, HttpServletResponse.SC_UNAUTHORIZED, msg); return false; @@ -218,54 +218,48 @@ public class PortalResourceInterceptor extends ResourceInterceptor { BasicAuthCredentials creds; try { - creds = basicAuthService.getBasicAuthCredentialByAppName(accountNamePassword[0]); + creds = basicAuthService.getBasicAuthCredentialByUsernameAndPassword(accountNamePassword[0], + encrypted(accountNamePassword[1])); } catch (Exception e) { logger.error(EELFLoggerDelegate.errorLogger, "checkBasicAuth failed to get credentials", e); final String msg = "Failed while getting basic authentication credential: " + e.toString(); sendErrorResponse(response, HttpServletResponse.SC_INTERNAL_SERVER_ERROR, msg); throw e; } - - boolean isAllowedEp = false; - for(EPEndpoint ep: creds.getEndpoints()){ - if(ep.getName().equals(uri)){ - isAllowedEp = true; - break; - } - } - if(!isAllowedEp){ - response.setStatus(401); - response.setContentType("application/json"); - response.getWriter().write("{\"error\":\"Unauthorized: Endpoint access denied\"}"); - response.getWriter().flush(); - response.getWriter().close(); + + // Unauthorized access due to invalid credentials (username and + // password) + if (creds == null || !creds.getUsername().equals(accountNamePassword[0])) { + final String msg = "Unauthorized: Access denied"; + logger.debug(EELFLoggerDelegate.debugLogger, "checkBasicAuth: {}", msg); + sendErrorResponse(response, HttpServletResponse.SC_UNAUTHORIZED, msg); return false; } - - if (creds == null) { - final String msg = "failed to find match for credentials"; + + // Unauthorized access due to inactive account + if (creds.getIsActive().equals("N")) { + final String msg = "Unauthorized: The account is inactive"; logger.debug(EELFLoggerDelegate.debugLogger, "checkBasicAuth: {}", msg); sendErrorResponse(response, HttpServletResponse.SC_UNAUTHORIZED, msg); return false; } - - boolean isAuth; - try { - isAuth = authorization(authHeader, creds.getApplicationName(), creds.getPassword()); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "checkBasicAuth failed to check authorization", e); - final String msg = "failed while checking authorization: " + e.toString(); - sendErrorResponse(response, HttpServletResponse.SC_INTERNAL_SERVER_ERROR, msg); - throw e; + boolean isAllowedEp = false; + for (EPEndpoint ep : creds.getEndpoints()) { + if (ep.getName().equals(uri)) { + isAllowedEp = true; + break; + } } - if (!isAuth) { - response.setStatus(401); - response.setContentType("application/json"); - response.getWriter().write("{\"error\":\"Unauthorized: Invalid username or password\"}"); - response.getWriter().flush(); - response.getWriter().close(); - final String msg = "Unauthorized: Access denied"; + // If user doesn't specify any endpoint, allow all endpoints for that + // account + if (creds.getEndpoints().size() == 0) + isAllowedEp = true; + + // Unauthorized access due to the invalid endpoints + if (!isAllowedEp) { + final String msg = "Unauthorized: Endpoint access denied"; + logger.debug(EELFLoggerDelegate.debugLogger, "checkBasicAuth: {}", msg); sendErrorResponse(response, HttpServletResponse.SC_UNAUTHORIZED, msg); return false; } @@ -274,32 +268,6 @@ public class PortalResourceInterceptor extends ResourceInterceptor { return true; } - /** - * - * Basic Authorization check - * - * @param auth - * @param security_user - * @param security_pass - * @return - * @throws Exception - */ - - protected boolean authorization(String auth, String security_user, String security_pass) throws Exception { - - if (auth != null && auth.startsWith("Basic")) { - String[] usernamePassword = getUserNamePassword(auth); - if (security_user.equals(usernamePassword[0]) && decrypted(security_pass).equals(usernamePassword[1])) - return true; - } - return false; - } - - public static void main(String str[]) { - System.out.println(new PortalResourceInterceptor().getUserNamePassword("Basic Qy1CVVM6X3Bhc3M=")[0]); - System.out.println(new PortalResourceInterceptor().getUserNamePassword("Basic Qy1CVVM6X3Bhc3M=")[1]); - } - private String[] getUserNamePassword(String authValue) { String base64Credentials = authValue.substring("Basic".length()).trim(); String credentials = new String(Base64.getDecoder().decode(base64Credentials), Charset.forName("UTF-8")); @@ -320,6 +288,20 @@ public class PortalResourceInterceptor extends ResourceInterceptor { return result; } + private String encrypted(String decryptedPwd) throws Exception { + String result = ""; + if (decryptedPwd != null & decryptedPwd.length() > 0) { + try { + result = CipherUtil.encrypt(decryptedPwd, + SystemProperties.getProperty(SystemProperties.Decryption_Key)); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "encryptedPassword() failed", e); + throw e; + } + } + return result; + } + private Boolean matchRoleFunctions(String portalApiPath, Set roleFunctions) { for (String roleFunction : roleFunctions) { if (portalApiPath.matches(roleFunction)) diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/listener/HealthMonitor.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/listener/HealthMonitor.java index b8e608cd..9de7a4c9 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/listener/HealthMonitor.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/listener/HealthMonitor.java @@ -1,355 +1,341 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.listener; - -import java.util.List; - -import javax.annotation.PostConstruct; -import javax.annotation.PreDestroy; - -import org.hibernate.Query; -import org.hibernate.Session; -import org.hibernate.SessionFactory; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.ueb.EPUebHelper; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.transaction.annotation.Transactional; - -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class HealthMonitor { - - @Autowired - private SessionFactory sessionFactory; - - @Autowired - private EPUebHelper epUebHelper; - - private static boolean databaseUp; - private static boolean uebUp; - private static boolean frontEndUp; - private static boolean backEndUp; - private static boolean dbClusterStatusOk; - private static boolean dbPermissionsOk; - public static boolean isSuspended = false; - - Thread healthMonitorThread; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(HealthMonitor.class); - - public HealthMonitor() { - - } - - public static boolean isDatabaseUp() { - return databaseUp; - } - - public static boolean isClusterStatusOk() { - return dbClusterStatusOk; - } - - public static boolean isDatabasePermissionsOk() { - return dbPermissionsOk; - } - - public static boolean isUebUp() { - return uebUp; - } - - public static boolean isFrontEndUp() { - return frontEndUp; - } - - public static boolean isBackEndUp() { - return backEndUp; - } - - private void monitorEPHealth() throws InterruptedException { - - int numIntervalsDatabaseHasBeenDown = 0; - int numIntervalsClusterNotHealthy = 0; - int numIntervalsDatabasePermissionsIncorrect = 0; - int numIntervalsUebHasBeenDown = 0; - - logger.debug(EELFLoggerDelegate.debugLogger, "==> Health Monitor thread started"); - - long sleepInterval = (Long - .valueOf(SystemProperties.getProperty(EPCommonSystemProperties.HEALTH_POLL_INTERVAL_SECONDS)) * 1000); - long numIntervalsBetweenAlerts = Long - .valueOf(SystemProperties.getProperty(EPCommonSystemProperties.HEALTHFAIL_ALERT_EVERY_X_INTERVALS)); - logger.debug(EELFLoggerDelegate.debugLogger, - "Polling health every " + sleepInterval + " milliseconds. Alerting every " - + (sleepInterval * numIntervalsBetweenAlerts) / 1000 + " seconds when component remains down."); - - while (true) { - // - // Get DB status. If down, signal alert once every X intervals. - // - databaseUp = this.checkIfDatabaseUp(); - if (databaseUp == false) { - - if ((numIntervalsDatabaseHasBeenDown % numIntervalsBetweenAlerts) == 0) { - // Write a Log entry that will generate an alert - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckMySqlError); - logger.debug(EELFLoggerDelegate.debugLogger, - "Database down, logging to error log to trigger alert."); - numIntervalsDatabaseHasBeenDown++; - } else { - numIntervalsDatabaseHasBeenDown = 0; - } - } - - dbClusterStatusOk = this.checkClusterStatus(); - if (dbClusterStatusOk == false) { - - if ((numIntervalsClusterNotHealthy % numIntervalsBetweenAlerts) == 0) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckMySqlError); - logger.debug(EELFLoggerDelegate.debugLogger, - "Cluster nodes appear to be down, logging to error log to trigger alert."); - numIntervalsClusterNotHealthy++; - } else { - numIntervalsClusterNotHealthy = 0; - } - } - - dbPermissionsOk = this.checkDatabaseAndPermissions(); - if (dbPermissionsOk == false) { - - if ((numIntervalsDatabasePermissionsIncorrect % numIntervalsBetweenAlerts) == 0) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckMySqlError); - logger.debug(EELFLoggerDelegate.debugLogger, - "Database permissions don't seem correct, logging to error log to trigger alert."); - numIntervalsDatabasePermissionsIncorrect++; - } else { - numIntervalsDatabasePermissionsIncorrect = 0; - } - } - - // - // Get UEB status. Publish a bogus message to EP inbox, if 200 OK - // returned, status is Up. - // If down, signal alert once every X intervals. - // EP will ignore this bogus message. - // - uebUp = this.checkIfUebUp(); - if (uebUp == false) { - - if ((numIntervalsUebHasBeenDown % numIntervalsBetweenAlerts) == 0) { - // Write a Log entry that will generate an alert - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckUebClusterError); - logger.debug(EELFLoggerDelegate.debugLogger, "UEB down, logging to error log to trigger alert"); - numIntervalsUebHasBeenDown++; - } else { - numIntervalsUebHasBeenDown = 0; - } - } - - // The front end should be up because the API is called through - // proxy front end server. - frontEndUp = true; - - // If the rest API called, the backend is always up - backEndUp = true; - - // - // future nice to have...get Partner status - // - // For all apps exposing a rest url, query one of the rest - // urls(/roles?) and manage a list - // of app name/status. We might not return back a non 200 OK in - // health check, but we - // could return information in the json content of a health check. - // - - // - // Get DB status. If down, signal alert once every X intervals. - // - if (Thread.interrupted()) { - logger.info(EELFLoggerDelegate.errorLogger, "==> UebMainHandler exiting"); - break; - } - - try { - Thread.sleep(sleepInterval); - } catch (InterruptedException e) { - logger.error(EELFLoggerDelegate.errorLogger, "monitorEPHealth interrupted", e); - Thread.currentThread().interrupt(); - } - } - } - - @PostConstruct - public void initHealthMonitor() { - - healthMonitorThread = new Thread("EP HealthMonitor thread") { - public void run() { - try { - monitorEPHealth(); - } catch (InterruptedException e) { - logger.debug(EELFLoggerDelegate.debugLogger, "healthMonitorThread interrupted", e); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "healthMonitorThread failed", e); - } - } - }; - if (healthMonitorThread != null) { - healthMonitorThread.start(); - } - } - - @PreDestroy - public void closeHealthMonitor() { - this.healthMonitorThread.interrupt(); - } - - private boolean checkIfDatabaseUp() { - - boolean isUp = false; - - Session localSession = null; - - try { - localSession = sessionFactory.openSession(); - - if (localSession != null) { - - String sql = "select app_name from fn_app where app_id=1"; - Query query = localSession.createSQLQuery(sql); - @SuppressWarnings("unchecked") - List queryList = query.list(); - if (queryList != null) { - isUp = true; - } - localSession.close(); - } - } catch (Exception e) { - logger.debug(EELFLoggerDelegate.debugLogger, "checkIfDatabaseUp failed", e); - isUp = false; - } - - return isUp; - } - - private boolean checkClusterStatus() { - - boolean isUp = false; - - Session localSession = null; - - try { - localSession = sessionFactory.openSession(); - if (localSession != null) { - // If all nodes are unhealthy in a cluster, this will throw an - // exception - String sql = "select * from mysql.user"; - Query query = localSession.createSQLQuery(sql); - @SuppressWarnings("unchecked") - List queryList = query.list(); - if (queryList != null) { - isUp = true; - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "checkClusterStatus failed", e); - if ((e.getCause() != null) && (e.getCause().getMessage() != null)) { - logger.error(EELFLoggerDelegate.errorLogger, - "checkClusterStatus() exception msg = " + e.getCause().getMessage()); - } - isUp = false; - } finally { - if (localSession != null) { - localSession.close(); - } - } - - return isUp; - - } - - private boolean checkDatabaseAndPermissions() { - - boolean isUp = false; - - Session localSession = null; - - try { - localSession = sessionFactory.openSession(); - if (localSession != null) { - String sql = "SHOW GRANTS FOR CURRENT_USER"; - Query query = localSession.createSQLQuery(sql); - @SuppressWarnings("unchecked") - List grantsList = query.list(); - for (String str : grantsList) { - if ((str.toUpperCase().contains("ALL")) - || (str.toUpperCase().contains("DELETE") && str.toUpperCase().contains("SELECT") - && str.toUpperCase().contains("UPDATE") && str.toUpperCase().contains("INSERT"))) { - isUp = true; - break; - } - } - if (isUp == false) { - logger.error(EELFLoggerDelegate.errorLogger, - "checkDatabaseAndPermissions() returning false. SHOW GRANTS FOR CURRENT_USER being dumped:"); - for (String str : grantsList) { - logger.error(EELFLoggerDelegate.errorLogger, "grants output item = [" + str + "]"); - } - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "checkDatabaseAndPermissions failed", e); - if ((e.getCause() != null) && (e.getCause().getMessage() != null)) { - logger.error(EELFLoggerDelegate.errorLogger, - "checkDatabaseAndPermissions() exception msg = " + e.getCause().getMessage()); - } - isUp = false; - } finally { - if (localSession != null) { - localSession.close(); - } - } - - return isUp; - - } - - private boolean checkIfUebUp() { - boolean uebUp = false; - try { - boolean isAvailable = epUebHelper.checkAvailability(); - boolean messageCanBeSent = epUebHelper.MessageCanBeSentToTopic(); - uebUp = (isAvailable && messageCanBeSent); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "checkIfUebUp failed", e); - } - - return uebUp; - - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.listener; + +import java.util.Date; +import java.util.List; + +import javax.annotation.PostConstruct; +import javax.annotation.PreDestroy; + +import org.hibernate.Query; +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.openecomp.portalapp.portal.domain.SharedContext; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.service.SharedContextService; +import org.openecomp.portalapp.portal.ueb.EPUebHelper; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.transaction.annotation.Transactional; + +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class HealthMonitor { + + @Autowired + private SessionFactory sessionFactory; + + @Autowired + private EPUebHelper epUebHelper; + + @Autowired + private SharedContextService sharedContextService; + + private static boolean databaseUp; + private static boolean uebUp; + private static boolean frontEndUp; + private static boolean backEndUp; + private static boolean dbClusterStatusOk; + private static boolean dbPermissionsOk; + public static boolean isSuspended = false; + + private Thread healthMonitorThread; + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(HealthMonitor.class); + + public HealthMonitor() { + + } + + public static boolean isDatabaseUp() { + return databaseUp; + } + + public static boolean isClusterStatusOk() { + return dbClusterStatusOk; + } + + public static boolean isDatabasePermissionsOk() { + return dbPermissionsOk; + } + + public static boolean isUebUp() { + return uebUp; + } + + public static boolean isFrontEndUp() { + return frontEndUp; + } + + public static boolean isBackEndUp() { + return backEndUp; + } + + private void monitorEPHealth() throws InterruptedException { + + int numIntervalsDatabaseHasBeenDown = 0; + int numIntervalsClusterNotHealthy = 0; + int numIntervalsDatabasePermissionsIncorrect = 0; + int numIntervalsUebHasBeenDown = 0; + + logger.debug(EELFLoggerDelegate.debugLogger, "monitorEPHealth started"); + + long sleepInterval = (Long + .valueOf(SystemProperties.getProperty(EPCommonSystemProperties.HEALTH_POLL_INTERVAL_SECONDS)) * 1000); + long numIntervalsBetweenAlerts = Long + .valueOf(SystemProperties.getProperty(EPCommonSystemProperties.HEALTHFAIL_ALERT_EVERY_X_INTERVALS)); + logger.debug(EELFLoggerDelegate.debugLogger, + "monitorEPHealth: Polling health every " + sleepInterval + " milliseconds. Alerting every " + + (sleepInterval * numIntervalsBetweenAlerts) / 1000 + " seconds when component remains down."); + + while (true) { + // + // Get DB status. If down, signal alert once every X intervals. + // + databaseUp = this.checkIfDatabaseUp(); + if (databaseUp == false) { + if ((numIntervalsDatabaseHasBeenDown % numIntervalsBetweenAlerts) == 0) { + logger.debug(EELFLoggerDelegate.debugLogger, + "monitorEPHealth: database down, logging to error log to trigger alert."); + // Write a Log entry that will generate an alert + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckMySqlError); + numIntervalsDatabaseHasBeenDown++; + } else { + numIntervalsDatabaseHasBeenDown = 0; + } + } + + dbClusterStatusOk = this.checkClusterStatus(); + if (dbClusterStatusOk == false) { + if ((numIntervalsClusterNotHealthy % numIntervalsBetweenAlerts) == 0) { + logger.debug(EELFLoggerDelegate.debugLogger, + "monitorEPHealth: cluster nodes down, logging to error log to trigger alert."); + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckMySqlError); + numIntervalsClusterNotHealthy++; + } else { + numIntervalsClusterNotHealthy = 0; + } + } + + dbPermissionsOk = this.checkDatabasePermissions(); + if (dbPermissionsOk == false) { + if ((numIntervalsDatabasePermissionsIncorrect % numIntervalsBetweenAlerts) == 0) { + logger.debug(EELFLoggerDelegate.debugLogger, + "monitorEPHealth: database permissions not correct, logging to error log to trigger alert."); + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckMySqlError); + numIntervalsDatabasePermissionsIncorrect++; + } else { + numIntervalsDatabasePermissionsIncorrect = 0; + } + } + + // + // Get UEB status. Publish a bogus message to EP inbox, if 200 OK + // returned, status is Up. + // If down, signal alert once every X intervals. + // EP will ignore this bogus message. + // + uebUp = this.checkIfUebUp(); + if (uebUp == false) { + if ((numIntervalsUebHasBeenDown % numIntervalsBetweenAlerts) == 0) { + logger.debug(EELFLoggerDelegate.debugLogger, "UEB down, logging to error log to trigger alert"); + // Write a Log entry that will generate an alert + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckUebClusterError); + numIntervalsUebHasBeenDown++; + } else { + numIntervalsUebHasBeenDown = 0; + } + } + + // The front end should be up because the API is called through + // proxy front end server. + frontEndUp = true; + + // If the rest API called, the backend is always up + backEndUp = true; + + // + // future nice to have...get Partner status + // + // For all apps exposing a rest url, query one of the rest + // urls(/roles?) and manage a list + // of app name/status. We might not return back a non 200 OK in + // health check, but we + // could return information in the json content of a health check. + // + + if (Thread.interrupted()) { + logger.debug(EELFLoggerDelegate.debugLogger, "monitorEPHealth: interrupted, leaving loop"); + break; + } + + try { + Thread.sleep(sleepInterval); + } catch (InterruptedException e) { + logger.error(EELFLoggerDelegate.errorLogger, "monitorEPHealth interrupted", e); + Thread.currentThread().interrupt(); + } + } + } + + @PostConstruct + public void initHealthMonitor() { + + healthMonitorThread = new Thread("EP HealthMonitor thread") { + public void run() { + try { + monitorEPHealth(); + } catch (InterruptedException e) { + logger.debug(EELFLoggerDelegate.debugLogger, "healthMonitorThread interrupted", e); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "healthMonitorThread failed", e); + } + } + }; + if (healthMonitorThread != null) { + healthMonitorThread.start(); + } + } + + @PreDestroy + public void closeHealthMonitor() { + this.healthMonitorThread.interrupt(); + } + + /** + * Writes and reads the database; cleans up when finished. + * + * @return True on success; false otherwise. + */ + private boolean checkIfDatabaseUp() { + boolean isUp = false; + try { + final Date now = new Date(); + final String contextId = "checkIfDatabaseUp-" + Long.toString(now.getTime()); + final String key = "checkIfDatabaseUp-key"; + final String value = "checkIfDatabaseUp-value"; + sharedContextService.addSharedContext(contextId, key, value); + SharedContext sc = sharedContextService.getSharedContext(contextId, key); + if (sc == null || sc.getCvalue() == null || !value.equals(sc.getCvalue())) + throw new Exception("Failed to retrieve shared context"); + int removed = sharedContextService.deleteSharedContexts(contextId); + if (removed != 1) + throw new Exception("Failed to delete shared context"); + isUp = true; + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "checkIfDatabaseUp failed", e); + isUp = false; + } + return isUp; + } + + private boolean checkClusterStatus() { + boolean isUp = false; + Session localSession = null; + try { + localSession = sessionFactory.openSession(); + if (localSession != null) { + // If all nodes are unhealthy in a cluster, this will throw an + // exception + String sql = "select * from mysql.user"; + Query query = localSession.createSQLQuery(sql); + @SuppressWarnings("unchecked") + List queryList = query.list(); + if (queryList != null) { + isUp = true; + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "checkClusterStatus failed", e); + if ((e.getCause() != null) && (e.getCause().getMessage() != null)) { + logger.error(EELFLoggerDelegate.errorLogger, + "checkClusterStatus() exception cause", e.getCause()); + } + isUp = false; + } finally { + if (localSession != null) { + localSession.close(); + } + } + return isUp; + } + + private boolean checkDatabasePermissions() { + boolean isUp = false; + Session localSession = null; + try { + localSession = sessionFactory.openSession(); + if (localSession != null) { + String sql = "SHOW GRANTS FOR CURRENT_USER"; + Query query = localSession.createSQLQuery(sql); + @SuppressWarnings("unchecked") + List grantsList = query.list(); + for (String str : grantsList) { + if ((str.toUpperCase().contains("ALL")) + || (str.toUpperCase().contains("DELETE") && str.toUpperCase().contains("SELECT") + && str.toUpperCase().contains("UPDATE") && str.toUpperCase().contains("INSERT"))) { + isUp = true; + break; + } + } + if (isUp == false) { + logger.error(EELFLoggerDelegate.errorLogger, + "checkDatabaseAndPermissions() returning false. SHOW GRANTS FOR CURRENT_USER being dumped:"); + for (String str : grantsList) { + logger.error(EELFLoggerDelegate.errorLogger, "grants output item = [" + str + "]"); + } + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "checkDatabasePermissions failed", e); + if ((e.getCause() != null) && (e.getCause().getMessage() != null)) { + logger.error(EELFLoggerDelegate.errorLogger, + "checkDatabasePermissions() exception msg = ", e.getCause()); + } + isUp = false; + } finally { + if (localSession != null) { + localSession.close(); + } + } + return isUp; + } + + private boolean checkIfUebUp() { + boolean uebUp = false; + try { + boolean isAvailable = epUebHelper.checkAvailability(); + boolean messageCanBeSent = epUebHelper.MessageCanBeSentToTopic(); + uebUp = (isAvailable && messageCanBeSent); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "checkIfUebUp failed", e); + } + return uebUp; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/listener/UserContextListener.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/listener/UserContextListener.java index 05af7388..e2176ee9 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/listener/UserContextListener.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/listener/UserContextListener.java @@ -1,51 +1,51 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.listener; - -import java.util.HashMap; - -import javax.servlet.ServletContext; -import javax.servlet.ServletContextEvent; -import javax.servlet.ServletContextListener; -import javax.servlet.annotation.WebListener; - -@WebListener -public class UserContextListener implements ServletContextListener{ - @SuppressWarnings("rawtypes") - public void contextInitialized(ServletContextEvent event){ - ServletContext context = event.getServletContext(); - // - // instanciate a map to store references to all the active - // sessions and bind it to context scope. - // - HashMap activeUsers = new HashMap(); - context.setAttribute("activeUsers", activeUsers); - } - - /** - * Needed for the ServletContextListener interface. - */ - public void contextDestroyed(ServletContextEvent event){ - // To overcome the problem with losing the session references - // during server restarts, put code here to serialize the - // activeUsers HashMap. Then put code in the contextInitialized - // method that reads and reloads it if it exists... - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.listener; + +import java.util.HashMap; + +import javax.servlet.ServletContext; +import javax.servlet.ServletContextEvent; +import javax.servlet.ServletContextListener; +import javax.servlet.annotation.WebListener; + +@WebListener +public class UserContextListener implements ServletContextListener{ + @SuppressWarnings("rawtypes") + public void contextInitialized(ServletContextEvent event){ + ServletContext context = event.getServletContext(); + // + // instanciate a map to store references to all the active + // sessions and bind it to context scope. + // + HashMap activeUsers = new HashMap(); + context.setAttribute("activeUsers", activeUsers); + } + + /** + * Needed for the ServletContextListener interface. + */ + public void contextDestroyed(ServletContextEvent event){ + // To overcome the problem with losing the session references + // during server restarts, put code here to serialize the + // activeUsers HashMap. Then put code in the contextInitialized + // method that reads and reloads it if it exists... + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/aop/EPAuditLog.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/aop/EPAuditLog.java index 965866c8..bfe81a2b 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/aop/EPAuditLog.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/aop/EPAuditLog.java @@ -1,31 +1,31 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.logging.aop; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -@Target({ElementType.METHOD, ElementType.TYPE}) -@Retention(RetentionPolicy.RUNTIME) -public @interface EPAuditLog { - String value() default ""; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.logging.aop; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target({ElementType.METHOD, ElementType.TYPE}) +@Retention(RetentionPolicy.RUNTIME) +public @interface EPAuditLog { + String value() default ""; +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/aop/EPMetricsLog.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/aop/EPMetricsLog.java index ab8a3672..ce98b1c6 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/aop/EPMetricsLog.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/aop/EPMetricsLog.java @@ -1,31 +1,31 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.logging.aop; - -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - -@Target({ElementType.METHOD, ElementType.TYPE}) -@Retention(RetentionPolicy.RUNTIME) -public @interface EPMetricsLog { - String value() default ""; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.logging.aop; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target({ElementType.METHOD, ElementType.TYPE}) +@Retention(RetentionPolicy.RUNTIME) +public @interface EPMetricsLog { + String value() default ""; +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/ApplicationCodes.properties b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/ApplicationCodes.properties index 6ee63b24..cd686ce2 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/ApplicationCodes.properties +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/ApplicationCodes.properties @@ -1,141 +1,141 @@ -### -# ================================================================================ -# ECOMP Portal -# ================================================================================ -# Copyright (C) 2017 AT&T Intellectual Property -# ================================================================================ -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ================================================================================ -### -######################################################################## -#Resource key=Error Code|Message text|Resolution text |Description text -####### -#Newlines can be utilized to add some clarity ensuring continuing line -#has atleast one leading space -#ResourceKey=\ -# ERR0000E\ -# Sample error msg txt\ -# Sample resolution msg\ -# Sample description txt -# -###### -#Error code classification category -#100 Permission errors -#200 Availability errors/Timeouts -#300 Data errors -#400 Schema Interface type/validation errors -#500 Business process errors -#900 Unknown errors -# -######################################################################## - -# Define Alarm Codes Specific to ECOMP Portal -BEUEBAUTHENTICATIONERROR_ONE_ARGUMENT= ||Reason: {0}.|\ - An Authentication failure occurred during access to UEB server. Please check that UEB keys are configured correctly under fusion.properties file. - -BERESTAPIAUTHENTICATIONERROR = |||Please check application credentials defined in Database or portal.properties file. - -INTERNALAUTHENTICATIONINFO_ONE_ARGUMENT=||Description: {0}.|Please check the logs for more information. - -INTERNALAUTHENTICATIONWARNING_ONE_ARGUMENT=||Description: {0}.|Please check the logs for more information. - -INTERNALAUTHENTICATIONERROR_ONE_ARGUMENT=||Description: {0}.|Please check the logs for more information. - -INTERNALAUTHENTICATIONFATAL_ONE_ARGUMENT=||Description: {0}.|Please check the logs for more information. - -BEHEALTHCHECKERROR= |||Please check the logs for more information. - -BEHEALTHCHECKMYSQLERROR= ||Please check the logs for more information.|\ - Check connectivity to MYSQL is configured correctly under system.properties file. - -BEHEALTHCHECKUEBCLUSTERERROR= ||Please check the logs for more information.|\ - Check connectivity to UEB cluster which is configured under portal.properties file. - -FEHEALTHCHECKERROR= |||Please check connectivity from this FE instance towards BE or BE Load Balancer. - -BEHEALTHCHECKRECOVERY= |||Please check logs for more specific information about the problem. - -BEHEALTHCHECKMYSQLRECOVERY= |||Please check logs for more specific information about the problem. - -BEHEALTHCHECKUEBCLUSTERRECOVERY= |||Please check logs for more specific information about the problem. - -FEHEALTHCHECKRECOVERY= |||Please check logs for more specific information about the problem. - -#UEB communication -BEUEBCONNECTIONERROR_ONE_ARGUMENT= ||Reason: {0}.|\ - Please check UEB server list and keys configured under Portal.Properties file. - -BEUEBUNKOWNHOSTERROR_ONE_ARGUMENT= ||Cannot reach host {0}.|\ - Please check UEB server list and keys configured under Portal.Properties file. - -#Onboarding apps -BEUEBREGISTERONBOARDINGAPPERROR= ||Reason: {0}.|\ - Please check UEB server list and keys configured under Portal.Properties file. - -#HTTP communication -BEHTTPCONNECTIONERROR_ONE_ARGUMENT= ||Reason: {0}.|Please check the logs for more information. - -INTERNALCONNECTIONINFO_ONE_ARGUMENT= ||Description: {0}.|Please check the logs for more information. - -INTERNALCONNECTIONWARNING_ONE_ARGUMENT= ||Description: {0}.|Please check the logs for more information. - -INTERNALCONNECTIONERROR_ONE_ARGUMENT= ||Description: {0}.|Please check the logs for more information. - -INTERNALCONNECTIONFATAL_ONE_ARGUMENT= ||Description: {0}.|Please check the logs for more information. - -BEUEBOBJECTNOTFOUNDERROR_ONE_ARGUMENT= ||Data not found: {0}.|\ - An error occurred during access to UEB Server, {1} failed to either register or unregister to/from UEB topic. - -#Login error codes -BEUSERMISSINGERROR_ONE_ARGUMENT= |||\ - User {0} must be added to the corresponding application with proper user roles. - -BEUSERINACTIVEWARNING_ONE_ARGUMENT= |||\ - User {0} must be added to the corresponding application with proper user roles. - -BEUSERADMINPRIVILEGESINFO_ONE_ARGUMENT= |||\ - User {0} should be given proper administrator role for the corresponding application to perform the necessary actions. - -BEINVALIDJSONINPUT= |||Please check error logs for more information. - -BEINCORRECTHTTPSTATUSERROR= |||Please check logs for more information. - -BEINITIALIZATIONERROR= |||Please check logs for more information. - -BEUEBSYSTEMERROR= ||\ - Operation: {0}.|\ - An error occurred in {1} distribution mechanism. Please check the logs for more information. - -BEDAOSYSTEMERROR= |||Please check MySQL DB health or look at the logs for more details. - -BESYSTEMERROR= |||Please check logs for more information. - -BEEXECUTEROLLBACKERROR= |||Please check MYSQL DB health or look at the logs for more details. - -FEHTTPLOGGINGERROR= |||Please check MYSQL DB health or look at the logs for more details. - -FEPORTALSERVLETERROR= |||Please check logs for more specific information about the problem. - -BEDAOCLOSESESSIONERROR= |||Please check MYSQL DB health or look at the logs form more details. - -BERESTAPIGENERALERROR= |||Please check error log for more information. - -FEHEALTHCHECKGENERALERROR= |||Please check error log for more information. - -INTERNALUNEXPECTEDINFO_ONE_ARGUMENT= |||Description: {0}. - -INTERNALUNEXPECTEDWARNING_ONE_ARGUMENT= |||Description: {0}. - -INTERNALUNEXPECTEDERROR_ONE_ARGUMENT= |||Description: {0}. - -INTERNALUNEXPECTEDFATAL_ONE_ARGUMENT= |||Description: {0}. +### +# ================================================================================ +# ECOMP Portal +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ================================================================================ +### +######################################################################## +#Resource key=Error Code|Message text|Resolution text |Description text +####### +#Newlines can be utilized to add some clarity ensuring continuing line +#has atleast one leading space +#ResourceKey=\ +# ERR0000E\ +# Sample error msg txt\ +# Sample resolution msg\ +# Sample description txt +# +###### +#Error code classification category +#100 Permission errors +#200 Availability errors/Timeouts +#300 Data errors +#400 Schema Interface type/validation errors +#500 Business process errors +#900 Unknown errors +# +######################################################################## + +# Define Alarm Codes Specific to ECOMP Portal +BEUEBAUTHENTICATIONERROR_ONE_ARGUMENT= ||Reason: {0}.|\ + An Authentication failure occurred during access to UEB server. Please check that UEB keys are configured correctly under fusion.properties file. + +BERESTAPIAUTHENTICATIONERROR = |||Please check application credentials defined in Database or portal.properties file. + +INTERNALAUTHENTICATIONINFO_ONE_ARGUMENT=||Description: {0}.|Please check the logs for more information. + +INTERNALAUTHENTICATIONWARNING_ONE_ARGUMENT=||Description: {0}.|Please check the logs for more information. + +INTERNALAUTHENTICATIONERROR_ONE_ARGUMENT=||Description: {0}.|Please check the logs for more information. + +INTERNALAUTHENTICATIONFATAL_ONE_ARGUMENT=||Description: {0}.|Please check the logs for more information. + +BEHEALTHCHECKERROR= |||Please check the logs for more information. + +BEHEALTHCHECKMYSQLERROR= ||Please check the logs for more information.|\ + Check connectivity to MYSQL is configured correctly under system.properties file. + +BEHEALTHCHECKUEBCLUSTERERROR= ||Please check the logs for more information.|\ + Check connectivity to UEB cluster which is configured under portal.properties file. + +FEHEALTHCHECKERROR= |||Please check connectivity from this FE instance towards BE or BE Load Balancer. + +BEHEALTHCHECKRECOVERY= |||Please check logs for more specific information about the problem. + +BEHEALTHCHECKMYSQLRECOVERY= |||Please check logs for more specific information about the problem. + +BEHEALTHCHECKUEBCLUSTERRECOVERY= |||Please check logs for more specific information about the problem. + +FEHEALTHCHECKRECOVERY= |||Please check logs for more specific information about the problem. + +#UEB communication +BEUEBCONNECTIONERROR_ONE_ARGUMENT= ||Reason: {0}.|\ + Please check UEB server list and keys configured under Portal.Properties file. + +BEUEBUNKOWNHOSTERROR_ONE_ARGUMENT= ||Cannot reach host {0}.|\ + Please check UEB server list and keys configured under Portal.Properties file. + +#Onboarding apps +BEUEBREGISTERONBOARDINGAPPERROR= ||Reason: {0}.|\ + Please check UEB server list and keys configured under Portal.Properties file. + +#HTTP communication +BEHTTPCONNECTIONERROR_ONE_ARGUMENT= ||Reason: {0}.|Please check the logs for more information. + +INTERNALCONNECTIONINFO_ONE_ARGUMENT= ||Description: {0}.|Please check the logs for more information. + +INTERNALCONNECTIONWARNING_ONE_ARGUMENT= ||Description: {0}.|Please check the logs for more information. + +INTERNALCONNECTIONERROR_ONE_ARGUMENT= ||Description: {0}.|Please check the logs for more information. + +INTERNALCONNECTIONFATAL_ONE_ARGUMENT= ||Description: {0}.|Please check the logs for more information. + +BEUEBOBJECTNOTFOUNDERROR_ONE_ARGUMENT= ||Data not found: {0}.|\ + An error occurred during access to UEB Server, {1} failed to either register or unregister to/from UEB topic. + +#Login error codes +BEUSERMISSINGERROR_ONE_ARGUMENT= |||\ + User {0} must be added to the corresponding application with proper user roles. + +BEUSERINACTIVEWARNING_ONE_ARGUMENT= |||\ + User {0} must be added to the corresponding application with proper user roles. + +BEUSERADMINPRIVILEGESINFO_ONE_ARGUMENT= |||\ + User {0} should be given proper administrator role for the corresponding application to perform the necessary actions. + +BEINVALIDJSONINPUT= |||Please check error logs for more information. + +BEINCORRECTHTTPSTATUSERROR= |||Please check logs for more information. + +BEINITIALIZATIONERROR= |||Please check logs for more information. + +BEUEBSYSTEMERROR= ||\ + Operation: {0}.|\ + An error occurred in {1} distribution mechanism. Please check the logs for more information. + +BEDAOSYSTEMERROR= |||Please check MySQL DB health or look at the logs for more details. + +BESYSTEMERROR= |||Please check logs for more information. + +BEEXECUTEROLLBACKERROR= |||Please check MYSQL DB health or look at the logs for more details. + +FEHTTPLOGGINGERROR= |||Please check MYSQL DB health or look at the logs for more details. + +FEPORTALSERVLETERROR= |||Please check logs for more specific information about the problem. + +BEDAOCLOSESESSIONERROR= |||Please check MYSQL DB health or look at the logs form more details. + +BERESTAPIGENERALERROR= |||Please check error log for more information. + +FEHEALTHCHECKGENERALERROR= |||Please check error log for more information. + +INTERNALUNEXPECTEDINFO_ONE_ARGUMENT= |||Description: {0}. + +INTERNALUNEXPECTEDWARNING_ONE_ARGUMENT= |||Description: {0}. + +INTERNALUNEXPECTEDERROR_ONE_ARGUMENT= |||Description: {0}. + +INTERNALUNEXPECTEDFATAL_ONE_ARGUMENT= |||Description: {0}. diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/EPAppMessagesEnum.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/EPAppMessagesEnum.java index a9cb2e4c..82c3ad37 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/EPAppMessagesEnum.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/EPAppMessagesEnum.java @@ -1,260 +1,260 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.logging.format; - -import org.openecomp.portalsdk.core.logging.format.AlarmSeverityEnum; -import org.openecomp.portalsdk.core.logging.format.ErrorSeverityEnum; -import org.openecomp.portalsdk.core.logging.format.ErrorTypeEnum; - -/** - * - * @author rc580q - * Add ECOMP Portal Specific Error Code Enums here, for generic - * ones (ones you think are useful not only Portal but also SDK), add it - * to the enum class AppMessagesEnum defined in SDK. - */ -public enum EPAppMessagesEnum { - /* - 100-199 Security/Permission Related - - Authentication problems (from external client, to external server) - - Certification errors - - - - 200-299 Availability/Timeout Related - - connectivity error - - connection timeout - - 300-399 Data Access/Integrity Related - - Data in graph in invalid(E.g. no creator is found for service) - - Artifact is missing in ES, but exists in graph. - - 400-499 Schema Interface Type/Validation - - received Pay-load checksum is invalid - - received JSON is not valid - - 500-599 Business/Flow Processing Related - - check out to service is not allowed - - Roll-back is done - - failed to generate heat file - - - 600-899 Reserved - do not use - - 900-999 Unknown Errors - - Unexpected exception - */ - - BeUebAuthenticationError(EPErrorCodesEnum.BEUEBAUTHENTICATIONERROR_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR100E", "An Authentication failure occurred during access to UEB server", "Details: {0}.", "Please check UEB server list and keys configured under Portal.Properties file."), - - BeRestApiAuthenticationError(EPErrorCodesEnum.BERESTAPIAUTHENTICATIONERROR, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR101E", "Rejected an incoming REST API request due to invalid credentials", "", "Please check application credentials defined in Database or properties files."), - - InternalAuthenticationInfo(EPErrorCodesEnum.INTERNALAUTHENTICATIONINFO_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, - "ERR199I", "Internal authentication problem", "Details: {0}.", "Please check the logs for more information."), - - InternalAuthenticationWarning(EPErrorCodesEnum.INTERNALAUTHENTICATIONWARNING_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, - "ERR199W", "Internal authentication problem", "Details: {0}.", "Please check the logs for more information."), - - InternalAuthenticationError(EPErrorCodesEnum.INTERNALAUTHENTICATIONERROR_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR199E", "Internal authentication problem", "Details: {0}.", "Please check the logs for more information."), - - InternalAuthenticationFatal(EPErrorCodesEnum.INTERNALAUTHENTICATIONFATAL_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.FATAL, - "ERR199F", "Internal authentication problem", "Details: {0}.", "Please check the logs for more information."), - - BeHealthCheckError(EPErrorCodesEnum.BeHEALTHCHECKERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, - "ERR200E", "ECOMP-PORTAL Back-end probably lost connectivity to either one of the following components: MySQL DB, UEB Cluster", "", "Please check the logs for more information."), - - BeHealthCheckMySqlError(EPErrorCodesEnum.BEHEALTHCHECKMYSQLERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, - "ERR201E", "ECOMP-PORTAL Back-end probably lost connectivity to MySQL DB", "", "Check connectivity to MYSQL is configured correctly under system.properties file."), - - BeHealthCheckUebClusterError(EPErrorCodesEnum.BEHEALTHCHECKUEBCLUSTERERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, - "ERR203E", "ECOMP-PORTAL Back-end probably lost connectivity to UEB Cluster", "", "Check connectivity to UEB cluster which is configured under portal.properties file."), - - FeHealthCheckError(EPErrorCodesEnum.FEHEALTHCHECKERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, - "ERR204E", "Unable to connect to a valid ECOMP-PORTAL Back-end Server.", "", "Please check connectivity from this FE instance towards BE or BE Load Balancer."), - - BeHealthCheckRecovery(EPErrorCodesEnum.BEHEALTHCHECKRECOVERY, ErrorTypeEnum.RECOVERY, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, - "ERR205I", "ECOMP-PORTAL Back-end Recovery to either one of the following components: MySQL DB, UEB Cluster", "", "Please check logs for more specific information about the problem."), - - BeHealthCheckMySqlRecovery(EPErrorCodesEnum.BEHEALTHCHECKMYSQLRECOVERY, ErrorTypeEnum.RECOVERY, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, - "ERR206I", "ECOMP-PORTAL Back-end connection recovery to MySQL DB", "", "Please check logs for more specific information about the problem."), - - BeHealthCheckUebClusterRecovery(EPErrorCodesEnum.BEHEALTHCHECKUEBCLUSTERRECOVERY, ErrorTypeEnum.RECOVERY, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, - "ERR208I", "ECOMP-PORTAL Back-end connection recovery to UEB Cluster", "", "Please check logs for more specific information about the problem."), - - FeHealthCheckRecovery(EPErrorCodesEnum.FEHEALTHCHECKRECOVERY, ErrorTypeEnum.RECOVERY, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, - "ERR209I", "Connectivity to ECOMP-PORTAL Front-end Server is recovered", "", "Please check logs for more specific information about the problem."), - - BeUebConnectionError(EPErrorCodesEnum.BEUEBCONNECTIONERROR_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR210E", "ECOMP-PORTAL Back-end probably lost connectivity to UEB Cluster", "Details: {0}.", "Please check UEB server list and keys configured under Portal.Properties file."), - - BeUebUnkownHostError(EPErrorCodesEnum.BEUEBUNKOWNHOSTERROR_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR211E", "ECOMP-PORTAL Back-end probably lost connectivity to UEB Cluster", "Cannot reach host: {0}.", "Please check UEB server list and keys configured under Portal.Properties file."), - - BeUebRegisterOnboardingAppError(EPErrorCodesEnum.BEUEBREGISTERONBOARDINGAPPERROR, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR212E", "Failed to register the On-boarding application with UEB Communication server", "Details: {0}.", "Please check UEB server list and keys configured under Portal.Properties file."), - - BeHttpConnectionError(EPErrorCodesEnum.BEHTTPCONNECTIONERROR_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR213E", "It could be that communication to an external application might resulted an exception or failed to reach the external application", - "Details: {0}.", "Please check logs for more information."), - - InternalConnectionInfo(EPErrorCodesEnum.INTERNALCONNECTIONINFO_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, - "ERR299I", "Internal Connection problem", "Details: {0}.", "Please check logs for more information."), - - InternalConnectionWarning(EPErrorCodesEnum.INTERNALCONNECTIONWARNING_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, - "ERR299W", "Internal Connection problem", "Details: {0}.", "Please check logs for more information."), - - InternalConnectionError(EPErrorCodesEnum.INTERNALCONNECTIONERROR_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR299E", "Internal Connection problem", "Details: {0}.", "Please check logs for more information."), - - InternalConnectionFatal(EPErrorCodesEnum.INTERNALCONNECTIONFATAL_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.FATAL, - "ERR299F", "Internal Connection problem", "Details: {0}.", "Please check logs for more information."), - - BeUebObjectNotFoundError(EPErrorCodesEnum.BEUEBOBJECTNOTFOUNDERROR_ONE_ARGUMENT, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR303E", "Error occurred during access to U-EB Server.", "Data not found: {0}.", "An error occurred during access to UEB Server, {1} failed to either register or unregister to/from UEB topic."), - - BeUserMissingError(EPErrorCodesEnum.BEUSERMISSINGERROR_ONE_ARGUMENT, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR310E", "User is not found", "", "User {0} must be added to the corresponding application with proper user roles."), - - BeUserInactiveWarning(EPErrorCodesEnum.BEUSERINACTIVEWARNING_ONE_ARGUMENT, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, - "ERR313W", "User is found but in-active", "", "User {0} must be added to the corresponding application with proper user roles."), - - BeUserAdminPrivilegesInfo(EPErrorCodesEnum.BEUSERADMINPRIVILEGESINFO_ONE_ARGUMENT, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, - "ERR314W", "User is found but don't have administrative privileges", "", "User {0} should be given administrator role for the corresponding application to perform the necessary actions."), - - BeInvalidJsonInput(EPErrorCodesEnum.BEINVALIDJSONINPUT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR405E", "Failed to convert JSON input to object", "", "Please check logs for more information."), - - BeIncorrectHttpStatusError(EPErrorCodesEnum.BEINCORRECTHTTPSTATUSERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR407E", "Communication to an external application is resulted in with Incorrect Http response code", "", "Please check logs for more information."), - - BeInitializationError(EPErrorCodesEnum.BEINITIALIZATIONERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, - "ERR500E", "ECOMP-PORTAL Back-end was not initialized properly", "", "Please check logs for more information."), - - BeUebSystemError(EPErrorCodesEnum.BEUEBSYSTEMERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR502E", "Error occurred during access to U-EB Server", "Details: {0}.", "An error occurred in {1} distribution mechanism. Please check the logs for more information."), - - BeDaoSystemError(EPErrorCodesEnum.BEDAOSYSTEMERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, - "ERR505E", "Performing DDL or DML operations on database might have failed", "", "Please check MySQL DB health or look at the logs for more details."), - - BeSystemError(EPErrorCodesEnum.BESYSTEMERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, - "ERR506E", "Unexpected error during operation", "", "Please check logs for more information."), - - BeExecuteRollbackError(EPErrorCodesEnum.BEEXECUTEROLLBACKERROR, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR507E", "Roll-back operation towards database has failed", "", "Please check MYSQL DB health or look at the logs for more details."), - - FeHttpLoggingError(EPErrorCodesEnum.FEHTTPLOGGINGERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.ERROR, - "ERR517E", "Error when logging FE HTTP request/response", "", "Please check MYSQL DB health or look at the logs for more details."), - - FePortalServletError(EPErrorCodesEnum.FEPORTALSERVLETERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR518E", "Error when trying to access FE Portal page.", "", "Please check logs for more information."), - - BeDaoCloseSessionError(EPErrorCodesEnum.BEDAOCLOSESESSIONERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR519E", "Close local session operation with database failed", "", "Please check MYSQL DB health or look at the logs form more details."), - - BeRestApiGeneralError(EPErrorCodesEnum.BERESTAPIGENERALERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, - "ERR900E", "Unexpected error during ECOMP-PORTAL Back-end REST API execution", "", "Please check error log for more information."), - - FeHealthCheckGeneralError(EPErrorCodesEnum.FEHEALTHCHECKGENERALERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, - "ERR901E", "General error during FE Health Check", "", "Please check error log for more information."), - - InternalUnexpectedInfo(EPErrorCodesEnum.INTERNALUNEXPECTEDINFO_ONE_ARGUMENT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, - "ERR999I", "Unexpected error", "Details: {0}.", "Please check logs for more information."), - - InternalUnexpectedWarning(EPErrorCodesEnum.INTERNALUNEXPECTEDWARNING_ONE_ARGUMENT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, - "ERR999W", "Unexpected error", "Details: {0}.", "Please check logs for more information."), - - InternalUnexpectedError(EPErrorCodesEnum.INTERNALUNEXPECTEDERROR_ONE_ARGUMENT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, - "ERR999E", "Unexpected error", "Details: {0}.", "Please check logs for more information."), - - InternalUnexpectedFatal(EPErrorCodesEnum.INTERNALUNEXPECTEDFATAL_ONE_ARGUMENT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.FATAL, - "ERR999F", "Unexpected error", "Details: {0}.", "Please check logs for more information."), - - ; - - ErrorTypeEnum eType; - AlarmSeverityEnum alarmSeverity; - EPErrorCodesEnum messageCode; - ErrorSeverityEnum errorSeverity; - String errorCode; - String errorDescription; - String details; - String resolution; - - EPAppMessagesEnum(EPErrorCodesEnum messageCode, ErrorTypeEnum eType, AlarmSeverityEnum alarmSeverity, ErrorSeverityEnum errorSeverity, String errorCode, String errorDescription, - String details, String resolution) { - this.messageCode = messageCode; - this.eType = eType; - this.alarmSeverity = alarmSeverity; - this.errorSeverity = errorSeverity; - this.errorCode = errorCode; - this.errorDescription = errorDescription; - this.details = details; - this.resolution = resolution; - } - - public String getDetails() { - return this.details; - } - - public String getResolution() { - return this.resolution; - } - public String getErrorCode() { - return this.errorCode; - } - - public String getErrorDescription() { - return this.errorDescription; - } - - public ErrorSeverityEnum getErrorSeverity() { - return this.errorSeverity; - } - - public void setErrorSeverity(ErrorSeverityEnum errorSeverity) { - this.errorSeverity = errorSeverity; - } - - public EPErrorCodesEnum getMessageCode() { - return messageCode; - } - - public void setMessageCode(EPErrorCodesEnum messageCode) { - this.messageCode = messageCode; - } - - public AlarmSeverityEnum getAlarmSeverity() { - return alarmSeverity; - } - - public void setAlarmSeverity(AlarmSeverityEnum alarmSeverity) { - this.alarmSeverity = alarmSeverity; - } - - public ErrorTypeEnum getErrorType() { - return eType; - } - - public void setErrorType(ErrorTypeEnum eType) { - this.eType = eType; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.logging.format; + +import org.openecomp.portalsdk.core.logging.format.AlarmSeverityEnum; +import org.openecomp.portalsdk.core.logging.format.ErrorSeverityEnum; +import org.openecomp.portalsdk.core.logging.format.ErrorTypeEnum; + +/** + * + * @author rc580q + * Add ECOMP Portal Specific Error Code Enums here, for generic + * ones (ones you think are useful not only Portal but also SDK), add it + * to the enum class AppMessagesEnum defined in SDK. + */ +public enum EPAppMessagesEnum { + /* + 100-199 Security/Permission Related + - Authentication problems (from external client, to external server) + - Certification errors + - + + 200-299 Availability/Timeout Related + - connectivity error + - connection timeout + + 300-399 Data Access/Integrity Related + - Data in graph in invalid(E.g. no creator is found for service) + - Artifact is missing in ES, but exists in graph. + + 400-499 Schema Interface Type/Validation + - received Pay-load checksum is invalid + - received JSON is not valid + + 500-599 Business/Flow Processing Related + - check out to service is not allowed + - Roll-back is done + - failed to generate heat file + + + 600-899 Reserved - do not use + + 900-999 Unknown Errors + - Unexpected exception + */ + + BeUebAuthenticationError(EPErrorCodesEnum.BEUEBAUTHENTICATIONERROR_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR100E", "An Authentication failure occurred during access to UEB server", "Details: {0}.", "Please check UEB server list and keys configured under Portal.Properties file."), + + BeRestApiAuthenticationError(EPErrorCodesEnum.BERESTAPIAUTHENTICATIONERROR, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR101E", "Rejected an incoming REST API request due to invalid credentials", "", "Please check application credentials defined in Database or properties files."), + + InternalAuthenticationInfo(EPErrorCodesEnum.INTERNALAUTHENTICATIONINFO_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, + "ERR199I", "Internal authentication problem", "Details: {0}.", "Please check the logs for more information."), + + InternalAuthenticationWarning(EPErrorCodesEnum.INTERNALAUTHENTICATIONWARNING_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, + "ERR199W", "Internal authentication problem", "Details: {0}.", "Please check the logs for more information."), + + InternalAuthenticationError(EPErrorCodesEnum.INTERNALAUTHENTICATIONERROR_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR199E", "Internal authentication problem", "Details: {0}.", "Please check the logs for more information."), + + InternalAuthenticationFatal(EPErrorCodesEnum.INTERNALAUTHENTICATIONFATAL_ONE_ARGUMENT, ErrorTypeEnum.AUTHENTICATION_PROBLEM, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.FATAL, + "ERR199F", "Internal authentication problem", "Details: {0}.", "Please check the logs for more information."), + + BeHealthCheckError(EPErrorCodesEnum.BeHEALTHCHECKERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, + "ERR200E", "ECOMP-PORTAL Back-end probably lost connectivity to either one of the following components: MySQL DB, UEB Cluster", "", "Please check the logs for more information."), + + BeHealthCheckMySqlError(EPErrorCodesEnum.BEHEALTHCHECKMYSQLERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, + "ERR201E", "ECOMP-PORTAL Back-end probably lost connectivity to MySQL DB", "", "Check connectivity to MYSQL is configured correctly under system.properties file."), + + BeHealthCheckUebClusterError(EPErrorCodesEnum.BEHEALTHCHECKUEBCLUSTERERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, + "ERR203E", "ECOMP-PORTAL Back-end probably lost connectivity to UEB Cluster", "", "Check connectivity to UEB cluster which is configured under portal.properties file."), + + FeHealthCheckError(EPErrorCodesEnum.FEHEALTHCHECKERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, + "ERR204E", "Unable to connect to a valid ECOMP-PORTAL Back-end Server.", "", "Please check connectivity from this FE instance towards BE or BE Load Balancer."), + + BeHealthCheckRecovery(EPErrorCodesEnum.BEHEALTHCHECKRECOVERY, ErrorTypeEnum.RECOVERY, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, + "ERR205I", "ECOMP-PORTAL Back-end Recovery to either one of the following components: MySQL DB, UEB Cluster", "", "Please check logs for more specific information about the problem."), + + BeHealthCheckMySqlRecovery(EPErrorCodesEnum.BEHEALTHCHECKMYSQLRECOVERY, ErrorTypeEnum.RECOVERY, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, + "ERR206I", "ECOMP-PORTAL Back-end connection recovery to MySQL DB", "", "Please check logs for more specific information about the problem."), + + BeHealthCheckUebClusterRecovery(EPErrorCodesEnum.BEHEALTHCHECKUEBCLUSTERRECOVERY, ErrorTypeEnum.RECOVERY, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, + "ERR208I", "ECOMP-PORTAL Back-end connection recovery to UEB Cluster", "", "Please check logs for more specific information about the problem."), + + FeHealthCheckRecovery(EPErrorCodesEnum.FEHEALTHCHECKRECOVERY, ErrorTypeEnum.RECOVERY, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, + "ERR209I", "Connectivity to ECOMP-PORTAL Front-end Server is recovered", "", "Please check logs for more specific information about the problem."), + + BeUebConnectionError(EPErrorCodesEnum.BEUEBCONNECTIONERROR_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR210E", "ECOMP-PORTAL Back-end probably lost connectivity to UEB Cluster", "Details: {0}.", "Please check UEB server list and keys configured under Portal.Properties file."), + + BeUebUnkownHostError(EPErrorCodesEnum.BEUEBUNKOWNHOSTERROR_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR211E", "ECOMP-PORTAL Back-end probably lost connectivity to UEB Cluster", "Cannot reach host: {0}.", "Please check UEB server list and keys configured under Portal.Properties file."), + + BeUebRegisterOnboardingAppError(EPErrorCodesEnum.BEUEBREGISTERONBOARDINGAPPERROR, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR212E", "Failed to register the On-boarding application with UEB Communication server", "Details: {0}.", "Please check UEB server list and keys configured under Portal.Properties file."), + + BeHttpConnectionError(EPErrorCodesEnum.BEHTTPCONNECTIONERROR_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR213E", "It could be that communication to an external application might resulted an exception or failed to reach the external application", + "Details: {0}.", "Please check logs for more information."), + + InternalConnectionInfo(EPErrorCodesEnum.INTERNALCONNECTIONINFO_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, + "ERR299I", "Internal Connection problem", "Details: {0}.", "Please check logs for more information."), + + InternalConnectionWarning(EPErrorCodesEnum.INTERNALCONNECTIONWARNING_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, + "ERR299W", "Internal Connection problem", "Details: {0}.", "Please check logs for more information."), + + InternalConnectionError(EPErrorCodesEnum.INTERNALCONNECTIONERROR_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR299E", "Internal Connection problem", "Details: {0}.", "Please check logs for more information."), + + InternalConnectionFatal(EPErrorCodesEnum.INTERNALCONNECTIONFATAL_ONE_ARGUMENT, ErrorTypeEnum.CONNECTION_PROBLEM, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.FATAL, + "ERR299F", "Internal Connection problem", "Details: {0}.", "Please check logs for more information."), + + BeUebObjectNotFoundError(EPErrorCodesEnum.BEUEBOBJECTNOTFOUNDERROR_ONE_ARGUMENT, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR303E", "Error occurred during access to U-EB Server.", "Data not found: {0}.", "An error occurred during access to UEB Server, {1} failed to either register or unregister to/from UEB topic."), + + BeUserMissingError(EPErrorCodesEnum.BEUSERMISSINGERROR_ONE_ARGUMENT, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR310E", "User is not found", "", "User {0} must be added to the corresponding application with proper user roles."), + + BeUserInactiveWarning(EPErrorCodesEnum.BEUSERINACTIVEWARNING_ONE_ARGUMENT, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, + "ERR313W", "User is found but in-active", "", "User {0} must be added to the corresponding application with proper user roles."), + + BeUserAdminPrivilegesInfo(EPErrorCodesEnum.BEUSERADMINPRIVILEGESINFO_ONE_ARGUMENT, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, + "ERR314W", "User is found but don't have administrative privileges", "", "User {0} should be given administrator role for the corresponding application to perform the necessary actions."), + + BeInvalidJsonInput(EPErrorCodesEnum.BEINVALIDJSONINPUT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR405E", "Failed to convert JSON input to object", "", "Please check logs for more information."), + + BeIncorrectHttpStatusError(EPErrorCodesEnum.BEINCORRECTHTTPSTATUSERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR407E", "Communication to an external application is resulted in with Incorrect Http response code", "", "Please check logs for more information."), + + BeInitializationError(EPErrorCodesEnum.BEINITIALIZATIONERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, + "ERR500E", "ECOMP-PORTAL Back-end was not initialized properly", "", "Please check logs for more information."), + + BeUebSystemError(EPErrorCodesEnum.BEUEBSYSTEMERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR502E", "Error occurred during access to U-EB Server", "Details: {0}.", "An error occurred in {1} distribution mechanism. Please check the logs for more information."), + + BeDaoSystemError(EPErrorCodesEnum.BEDAOSYSTEMERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, + "ERR505E", "Performing DDL or DML operations on database might have failed", "", "Please check MySQL DB health or look at the logs for more details."), + + BeSystemError(EPErrorCodesEnum.BESYSTEMERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, + "ERR506E", "Unexpected error during operation", "", "Please check logs for more information."), + + BeExecuteRollbackError(EPErrorCodesEnum.BEEXECUTEROLLBACKERROR, ErrorTypeEnum.DATA_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR507E", "Roll-back operation towards database has failed", "", "Please check MYSQL DB health or look at the logs for more details."), + + FeHttpLoggingError(EPErrorCodesEnum.FEHTTPLOGGINGERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.ERROR, + "ERR517E", "Error when logging FE HTTP request/response", "", "Please check MYSQL DB health or look at the logs for more details."), + + FePortalServletError(EPErrorCodesEnum.FEPORTALSERVLETERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR518E", "Error when trying to access FE Portal page.", "", "Please check logs for more information."), + + BeDaoCloseSessionError(EPErrorCodesEnum.BEDAOCLOSESESSIONERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR519E", "Close local session operation with database failed", "", "Please check MYSQL DB health or look at the logs form more details."), + + BeRestApiGeneralError(EPErrorCodesEnum.BERESTAPIGENERALERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, + "ERR900E", "Unexpected error during ECOMP-PORTAL Back-end REST API execution", "", "Please check error log for more information."), + + FeHealthCheckGeneralError(EPErrorCodesEnum.FEHEALTHCHECKGENERALERROR, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.ERROR, + "ERR901E", "General error during FE Health Check", "", "Please check error log for more information."), + + InternalUnexpectedInfo(EPErrorCodesEnum.INTERNALUNEXPECTEDINFO_ONE_ARGUMENT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.INFORMATIONAL, ErrorSeverityEnum.INFO, + "ERR999I", "Unexpected error", "Details: {0}.", "Please check logs for more information."), + + InternalUnexpectedWarning(EPErrorCodesEnum.INTERNALUNEXPECTEDWARNING_ONE_ARGUMENT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MINOR, ErrorSeverityEnum.WARN, + "ERR999W", "Unexpected error", "Details: {0}.", "Please check logs for more information."), + + InternalUnexpectedError(EPErrorCodesEnum.INTERNALUNEXPECTEDERROR_ONE_ARGUMENT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.MAJOR, ErrorSeverityEnum.ERROR, + "ERR999E", "Unexpected error", "Details: {0}.", "Please check logs for more information."), + + InternalUnexpectedFatal(EPErrorCodesEnum.INTERNALUNEXPECTEDFATAL_ONE_ARGUMENT, ErrorTypeEnum.SYSTEM_ERROR, AlarmSeverityEnum.CRITICAL, ErrorSeverityEnum.FATAL, + "ERR999F", "Unexpected error", "Details: {0}.", "Please check logs for more information."), + + ; + + ErrorTypeEnum eType; + AlarmSeverityEnum alarmSeverity; + EPErrorCodesEnum messageCode; + ErrorSeverityEnum errorSeverity; + String errorCode; + String errorDescription; + String details; + String resolution; + + EPAppMessagesEnum(EPErrorCodesEnum messageCode, ErrorTypeEnum eType, AlarmSeverityEnum alarmSeverity, ErrorSeverityEnum errorSeverity, String errorCode, String errorDescription, + String details, String resolution) { + this.messageCode = messageCode; + this.eType = eType; + this.alarmSeverity = alarmSeverity; + this.errorSeverity = errorSeverity; + this.errorCode = errorCode; + this.errorDescription = errorDescription; + this.details = details; + this.resolution = resolution; + } + + public String getDetails() { + return this.details; + } + + public String getResolution() { + return this.resolution; + } + public String getErrorCode() { + return this.errorCode; + } + + public String getErrorDescription() { + return this.errorDescription; + } + + public ErrorSeverityEnum getErrorSeverity() { + return this.errorSeverity; + } + + public void setErrorSeverity(ErrorSeverityEnum errorSeverity) { + this.errorSeverity = errorSeverity; + } + + public EPErrorCodesEnum getMessageCode() { + return messageCode; + } + + public void setMessageCode(EPErrorCodesEnum messageCode) { + this.messageCode = messageCode; + } + + public AlarmSeverityEnum getAlarmSeverity() { + return alarmSeverity; + } + + public void setAlarmSeverity(AlarmSeverityEnum alarmSeverity) { + this.alarmSeverity = alarmSeverity; + } + + public ErrorTypeEnum getErrorType() { + return eType; + } + + public void setErrorType(ErrorTypeEnum eType) { + this.eType = eType; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/EPErrorCodesEnum.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/EPErrorCodesEnum.java index cbfb4fa3..498bfcfe 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/EPErrorCodesEnum.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/format/EPErrorCodesEnum.java @@ -1,95 +1,95 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.logging.format; - -import com.att.eelf.i18n.EELFResolvableErrorEnum; -import com.att.eelf.i18n.EELFResourceManager; - -/** - * - * @author rc580q - * Add ECOMP Portal Specific Error Code Enums here, for generic - * ones (ones you think are useful not only Portal but also SDK), add it - * to the enum class AppMessagesEnum defined in SDK. - */ -public enum EPErrorCodesEnum implements EELFResolvableErrorEnum { - BERESTAPIAUTHENTICATIONERROR, - BEHTTPCONNECTIONERROR_ONE_ARGUMENT, - BEUEBAUTHENTICATIONERROR_ONE_ARGUMENT, - - INTERNALAUTHENTICATIONINFO_ONE_ARGUMENT, - INTERNALAUTHENTICATIONWARNING_ONE_ARGUMENT, - INTERNALAUTHENTICATIONERROR_ONE_ARGUMENT, - INTERNALAUTHENTICATIONFATAL_ONE_ARGUMENT, - - BEHEALTHCHECKRECOVERY, - BEHEALTHCHECKMYSQLRECOVERY, - BEHEALTHCHECKUEBCLUSTERRECOVERY, - FEHEALTHCHECKRECOVERY, - BeHEALTHCHECKERROR, - - BEHEALTHCHECKMYSQLERROR, - BEHEALTHCHECKUEBCLUSTERERROR, - FEHEALTHCHECKERROR, - BEUEBCONNECTIONERROR_ONE_ARGUMENT, - BEUEBUNKOWNHOSTERROR_ONE_ARGUMENT, - BEUEBREGISTERONBOARDINGAPPERROR, - - INTERNALCONNECTIONINFO_ONE_ARGUMENT, - INTERNALCONNECTIONWARNING_ONE_ARGUMENT, - INTERNALCONNECTIONERROR_ONE_ARGUMENT, - INTERNALCONNECTIONFATAL_ONE_ARGUMENT, - - BEUEBOBJECTNOTFOUNDERROR_ONE_ARGUMENT, - BEUSERMISSINGERROR_ONE_ARGUMENT, - - BEUSERINACTIVEWARNING_ONE_ARGUMENT, - BEUSERADMINPRIVILEGESINFO_ONE_ARGUMENT, - - BEINVALIDJSONINPUT, - BEINCORRECTHTTPSTATUSERROR, - - BEINITIALIZATIONERROR, - BEUEBSYSTEMERROR, - BEDAOSYSTEMERROR, - BESYSTEMERROR, - BEEXECUTEROLLBACKERROR, - - FEHTTPLOGGINGERROR, - FEPORTALSERVLETERROR, - BEDAOCLOSESESSIONERROR, - - BERESTAPIGENERALERROR, - FEHEALTHCHECKGENERALERROR, - - INTERNALUNEXPECTEDINFO_ONE_ARGUMENT, - INTERNALUNEXPECTEDWARNING_ONE_ARGUMENT, - INTERNALUNEXPECTEDERROR_ONE_ARGUMENT, - INTERNALUNEXPECTEDFATAL_ONE_ARGUMENT, - ; - - /** - * Static initializer to ensure the resource bundles for this class are loaded... - * Here this application loads messages from three bundles - */ - static { - EELFResourceManager.loadMessageBundle("org/openecomp/portalapp/portal/logging/format/ApplicationCodes"); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.logging.format; + +import com.att.eelf.i18n.EELFResolvableErrorEnum; +import com.att.eelf.i18n.EELFResourceManager; + +/** + * + * @author rc580q + * Add ECOMP Portal Specific Error Code Enums here, for generic + * ones (ones you think are useful not only Portal but also SDK), add it + * to the enum class AppMessagesEnum defined in SDK. + */ +public enum EPErrorCodesEnum implements EELFResolvableErrorEnum { + BERESTAPIAUTHENTICATIONERROR, + BEHTTPCONNECTIONERROR_ONE_ARGUMENT, + BEUEBAUTHENTICATIONERROR_ONE_ARGUMENT, + + INTERNALAUTHENTICATIONINFO_ONE_ARGUMENT, + INTERNALAUTHENTICATIONWARNING_ONE_ARGUMENT, + INTERNALAUTHENTICATIONERROR_ONE_ARGUMENT, + INTERNALAUTHENTICATIONFATAL_ONE_ARGUMENT, + + BEHEALTHCHECKRECOVERY, + BEHEALTHCHECKMYSQLRECOVERY, + BEHEALTHCHECKUEBCLUSTERRECOVERY, + FEHEALTHCHECKRECOVERY, + BeHEALTHCHECKERROR, + + BEHEALTHCHECKMYSQLERROR, + BEHEALTHCHECKUEBCLUSTERERROR, + FEHEALTHCHECKERROR, + BEUEBCONNECTIONERROR_ONE_ARGUMENT, + BEUEBUNKOWNHOSTERROR_ONE_ARGUMENT, + BEUEBREGISTERONBOARDINGAPPERROR, + + INTERNALCONNECTIONINFO_ONE_ARGUMENT, + INTERNALCONNECTIONWARNING_ONE_ARGUMENT, + INTERNALCONNECTIONERROR_ONE_ARGUMENT, + INTERNALCONNECTIONFATAL_ONE_ARGUMENT, + + BEUEBOBJECTNOTFOUNDERROR_ONE_ARGUMENT, + BEUSERMISSINGERROR_ONE_ARGUMENT, + + BEUSERINACTIVEWARNING_ONE_ARGUMENT, + BEUSERADMINPRIVILEGESINFO_ONE_ARGUMENT, + + BEINVALIDJSONINPUT, + BEINCORRECTHTTPSTATUSERROR, + + BEINITIALIZATIONERROR, + BEUEBSYSTEMERROR, + BEDAOSYSTEMERROR, + BESYSTEMERROR, + BEEXECUTEROLLBACKERROR, + + FEHTTPLOGGINGERROR, + FEPORTALSERVLETERROR, + BEDAOCLOSESESSIONERROR, + + BERESTAPIGENERALERROR, + FEHEALTHCHECKGENERALERROR, + + INTERNALUNEXPECTEDINFO_ONE_ARGUMENT, + INTERNALUNEXPECTEDWARNING_ONE_ARGUMENT, + INTERNALUNEXPECTEDERROR_ONE_ARGUMENT, + INTERNALUNEXPECTEDFATAL_ONE_ARGUMENT, + ; + + /** + * Static initializer to ensure the resource bundles for this class are loaded... + * Here this application loads messages from three bundles + */ + static { + EELFResourceManager.loadMessageBundle("org/openecomp/portalapp/portal/logging/format/ApplicationCodes"); + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/logic/EPLogUtil.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/logic/EPLogUtil.java index aa86765b..ebda67e6 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/logic/EPLogUtil.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/logging/logic/EPLogUtil.java @@ -1,270 +1,285 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.logging.logic; - -import static com.att.eelf.configuration.Configuration.MDC_ALERT_SEVERITY; - -import java.text.MessageFormat; - -import org.slf4j.MDC; - -import com.att.eelf.configuration.EELFLogger; -import com.att.eelf.configuration.EELFManager; - -import org.openecomp.portalsdk.core.logging.format.AlarmSeverityEnum; -import org.openecomp.portalsdk.core.logging.format.ErrorSeverityEnum; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.web.support.UserUtils; -import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; - -public class EPLogUtil { - - // This class has no logger. It uses loggers passed to it. - - /** - * Formats and writes a message to the error log with the class name and the - * specified parameters, using log level info, warn or error appropriate for - * the specified severity - * - * @param classLogger - * Logger for the class where the error occurred; the logger - * carries the class name. - * @param epMessageEnum - * Enum carrying alarm and error severity - * @param param - * Values used to build the message. - */ - public static void logEcompError(EELFLoggerDelegate classLogger, EPAppMessagesEnum epMessageEnum, String... param) { - logEcompError(classLogger, epMessageEnum, null, param); - } - - /** - * Formats and writes a message to the error log with the class name and the - * specified parameters, using log level info, warn or error appropriate for - * the specified severity - * - * @param classLogger - * Logger for the class where the error occurred; the logger - * carries the class name. - * @param epMessageEnum - * Enum carrying alarm and error severity - * @param param - * Values used to build the message. - */ - private static EELFLogger errorLogger = EELFManager.getInstance().getErrorLogger(); - public static void logEcompError(EPAppMessagesEnum epMessageEnum, String... param) { - try { - AlarmSeverityEnum alarmSeverityEnum = epMessageEnum.getAlarmSeverity(); - ErrorSeverityEnum errorSeverityEnum = epMessageEnum.getErrorSeverity(); - - MDC.put(MDC_ALERT_SEVERITY, alarmSeverityEnum.name()); - MDC.put("ErrorCode", epMessageEnum.getErrorCode()); - MDC.put("ErrorDescription", epMessageEnum.getErrorDescription()); - MDC.put("ClassName", EPLogUtil.class.getName()); - - String resolution = EPLogUtil.formatMessage(epMessageEnum.getDetails() + " " + epMessageEnum.getResolution(), (Object[]) param); - if (errorSeverityEnum == ErrorSeverityEnum.WARN) { - errorLogger.warn(resolution); - } else if(errorSeverityEnum == ErrorSeverityEnum.INFO) { - errorLogger.info(resolution); - } else { - errorLogger.error(resolution); - } - } catch(Exception e) { - errorLogger.error("Failed to log the error code. Details: " + UserUtils.getStackTrace(e)); - } finally { - MDC.remove("ErrorCode"); - MDC.remove("ErrorDescription"); - MDC.remove("ClassName"); - MDC.remove(MDC_ALERT_SEVERITY); - } - } - - /** - * Formats and writes a message to the error log with the class name, - * throwable and the specified parameters, using log level info, warn or - * error appropriate for the specified severity - * - * @param classLogger - * Logger for the class where the error occurred; the logger - * carries the class name. - * @param epMessageEnum - * Enum carrying alarm and error severity - * @param th - * Throwable; ignored if null - * @param param - * Array of Strings used to build the message. - */ - @SuppressWarnings("static-access") - public static void logEcompError(EELFLoggerDelegate classLogger, EPAppMessagesEnum epMessageEnum, Throwable th, - String... param) { - - AlarmSeverityEnum alarmSeverityEnum = epMessageEnum.getAlarmSeverity(); - ErrorSeverityEnum errorSeverityEnum = epMessageEnum.getErrorSeverity(); - - MDC.put(MDC_ALERT_SEVERITY, alarmSeverityEnum.name()); - MDC.put("ErrorCode", epMessageEnum.getErrorCode()); - MDC.put("ErrorDescription", epMessageEnum.getErrorDescription()); - - final String message = EPLogUtil.formatMessage(epMessageEnum.getDetails() + " " + epMessageEnum.getResolution(), - (Object[]) param); - if (errorSeverityEnum == ErrorSeverityEnum.INFO) { - if (th == null) - classLogger.info(classLogger.errorLogger, message); - else - classLogger.info(classLogger.errorLogger, message, th); - } else if (errorSeverityEnum == ErrorSeverityEnum.WARN) { - if (th == null) - classLogger.warn(classLogger.errorLogger, message); - else - classLogger.warn(classLogger.errorLogger, message, th); - } else { - if (th == null) - classLogger.error(classLogger.errorLogger, message); - else - classLogger.error(classLogger.errorLogger, message, th); - } - - // Clean up - MDC.remove(MDC_ALERT_SEVERITY); - MDC.remove("ErrorCode"); - MDC.remove("ErrorDescription"); - } - - /** - * Builds a string using the format and parameters. - * @param message - * @param args - * @return - */ - private static String formatMessage(String message, Object... args) { - StringBuilder sbFormattedMessage = new StringBuilder(); - if (args != null && args.length > 0 && message != null && message != "") { - MessageFormat mf = new MessageFormat(message); - sbFormattedMessage.append(mf.format(args)); - } else { - sbFormattedMessage.append(message); - } - return sbFormattedMessage.toString(); - } - - /** - * Builds a comma-separated string of values to document a user action. - * - * @param action - * @param activity - * @param userId - * @param affectedId - * @param comment - * @return Value suitable for writing to the audit log file. - */ - public static String formatAuditLogMessage(String action, String activity, String userId, String affectedId, - String comment) { - StringBuilder auditLogMsg = new StringBuilder(); - auditLogMsg.append("Click_A:["); - if (action != null && !action.equals("")) { - auditLogMsg.append(" Action: "); - auditLogMsg.append(action); - } - - if (activity != null && !activity.equals("")) { - auditLogMsg.append(",Activity CD: "); - auditLogMsg.append(activity); - } - - if (userId != null && !userId.equals("")) { - auditLogMsg.append(",User ID: "); - auditLogMsg.append(userId); - } - - if (affectedId != null && !affectedId.equals("")) { - auditLogMsg.append(",Affected ID: "); - auditLogMsg.append(affectedId); - } - - if (comment != null && !comment.equals("")) { - auditLogMsg.append(",Comment: "); - auditLogMsg.append(comment); - } - auditLogMsg.append("]"); - return auditLogMsg.toString(); - } - - /** - * Builds a comma-separated string of values to document a user browser - * action. - * - * @param orgUserId - * @param action - * @param activity - * @param actionLink - * @param page - * @param function - * @param type - * @return Value suitable for writing to the audit log file. - */ - public static String formatStoreAnalyticsAuditLogMessage(String orgUserId, String appName, String action, String activity, - String actionLink, String page, String function, String type) { - StringBuilder auditLogStoreAnalyticsMsg = new StringBuilder(); - auditLogStoreAnalyticsMsg.append("Click_Analytics:["); - if (orgUserId != null && !orgUserId.equals("")) { - auditLogStoreAnalyticsMsg.append(" Organization User ID: "); - auditLogStoreAnalyticsMsg.append(orgUserId); - } - - if (appName != null && !appName.equals("")) { - auditLogStoreAnalyticsMsg.append(",AppName: "); - auditLogStoreAnalyticsMsg.append(appName); - } - - if (action != null && !action.equals("")) { - auditLogStoreAnalyticsMsg.append(",Action: "); - auditLogStoreAnalyticsMsg.append(action); - } - - if (activity != null && !activity.equals("")) { - auditLogStoreAnalyticsMsg.append(",Activity: "); - auditLogStoreAnalyticsMsg.append(activity); - } - - if (actionLink != null && !actionLink.equals("")) { - auditLogStoreAnalyticsMsg.append(",ActionLink: "); - auditLogStoreAnalyticsMsg.append(actionLink); - } - - if (page != null && !page.equals("")) { - auditLogStoreAnalyticsMsg.append(",Page: "); - auditLogStoreAnalyticsMsg.append(page); - } - - if (function != null && !function.equals("")) { - auditLogStoreAnalyticsMsg.append(",Function: "); - auditLogStoreAnalyticsMsg.append(function); - } - - if (type != null && !type.equals("")) { - auditLogStoreAnalyticsMsg.append(",Type: "); - auditLogStoreAnalyticsMsg.append(type); - } - auditLogStoreAnalyticsMsg.append("]"); - return auditLogStoreAnalyticsMsg.toString(); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.logging.logic; + +import static com.att.eelf.configuration.Configuration.MDC_ALERT_SEVERITY; + +import java.text.MessageFormat; + +import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; +import org.openecomp.portalsdk.core.logging.format.AlarmSeverityEnum; +import org.openecomp.portalsdk.core.logging.format.ErrorSeverityEnum; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.web.support.UserUtils; +import org.slf4j.MDC; + +import com.att.eelf.configuration.EELFLogger; +import com.att.eelf.configuration.EELFManager; + +public class EPLogUtil { + + // This class has no logger of its own; it uses loggers passed to it. + private static EELFLogger errorLogger = EELFManager.getInstance().getErrorLogger(); + + /** + * Formats and writes a message to the error log with the class name and the + * specified parameters, using log level info, warn or error appropriate for + * the specified severity + * + * @param classLogger + * Logger for the class where the error occurred; the logger + * carries the class name. + * @param epMessageEnum + * Enum carrying alarm and error severity + * @param param + * Values used to build the message. + */ + public static void logEcompError(EELFLoggerDelegate classLogger, EPAppMessagesEnum epMessageEnum, String... param) { + logEcompError(classLogger, epMessageEnum, null, param); + } + + /** + * Formats and writes a message to the error log with the class name and the + * specified parameters, using log level info, warn or error appropriate for + * the specified severity + * + * @param classLogger + * Logger for the class where the error occurred; the logger + * carries the class name. + * @param epMessageEnum + * Enum carrying alarm and error severity + * @param param + * Values used to build the message. + */ + public static void logEcompError(EPAppMessagesEnum epMessageEnum, String... param) { + try { + AlarmSeverityEnum alarmSeverityEnum = epMessageEnum.getAlarmSeverity(); + ErrorSeverityEnum errorSeverityEnum = epMessageEnum.getErrorSeverity(); + + MDC.put(MDC_ALERT_SEVERITY, alarmSeverityEnum.name()); + MDC.put("ErrorCode", epMessageEnum.getErrorCode()); + MDC.put("ErrorDescription", epMessageEnum.getErrorDescription()); + MDC.put("ClassName", EPLogUtil.class.getName()); + + String resolution = EPLogUtil + .formatMessage(epMessageEnum.getDetails() + " " + epMessageEnum.getResolution(), (Object[]) param); + if (errorSeverityEnum == ErrorSeverityEnum.WARN) { + errorLogger.warn(resolution); + } else if (errorSeverityEnum == ErrorSeverityEnum.INFO) { + errorLogger.info(resolution); + } else { + errorLogger.error(resolution); + } + } catch (Exception e) { + errorLogger.error("Failed to log the error code. Details: " + UserUtils.getStackTrace(e)); + } finally { + MDC.remove("ErrorCode"); + MDC.remove("ErrorDescription"); + MDC.remove("ClassName"); + MDC.remove(MDC_ALERT_SEVERITY); + } + } + + /** + * Formats and writes a message to the error log with the class name, + * throwable and the specified parameters, using log level info, warn or + * error appropriate for the specified severity + * + * @param classLogger + * Logger for the class where the error occurred; the logger + * carries the class name. + * @param epMessageEnum + * Enum carrying alarm and error severity + * @param th + * Throwable; ignored if null + * @param param + * Array of Strings used to build the message. + */ + @SuppressWarnings("static-access") + public static void logEcompError(EELFLoggerDelegate classLogger, EPAppMessagesEnum epMessageEnum, Throwable th, + String... param) { + + AlarmSeverityEnum alarmSeverityEnum = epMessageEnum.getAlarmSeverity(); + ErrorSeverityEnum errorSeverityEnum = epMessageEnum.getErrorSeverity(); + + MDC.put(MDC_ALERT_SEVERITY, alarmSeverityEnum.name()); + MDC.put("ErrorCode", epMessageEnum.getErrorCode()); + MDC.put("ErrorDescription", epMessageEnum.getErrorDescription()); + + final String message = EPLogUtil.formatMessage(epMessageEnum.getDetails() + " " + epMessageEnum.getResolution(), + (Object[]) param); + if (errorSeverityEnum == ErrorSeverityEnum.INFO) { + if (th == null) + classLogger.info(classLogger.errorLogger, message); + else + classLogger.info(classLogger.errorLogger, message, th); + } else if (errorSeverityEnum == ErrorSeverityEnum.WARN) { + if (th == null) + classLogger.warn(classLogger.errorLogger, message); + else + classLogger.warn(classLogger.errorLogger, message, th); + } else { + if (th == null) + classLogger.error(classLogger.errorLogger, message); + else + classLogger.error(classLogger.errorLogger, message, th); + } + + // Clean up + MDC.remove(MDC_ALERT_SEVERITY); + MDC.remove("ErrorCode"); + MDC.remove("ErrorDescription"); + } + + /** + * Builds a string using the format and parameters. + * + * @param message + * @param args + * @return + */ + private static String formatMessage(String message, Object... args) { + StringBuilder sbFormattedMessage = new StringBuilder(); + if (args != null && args.length > 0 && message != null && message != "") { + MessageFormat mf = new MessageFormat(message); + sbFormattedMessage.append(mf.format(args)); + } else { + sbFormattedMessage.append(message); + } + return sbFormattedMessage.toString(); + } + + /** + * Builds a comma-separated string of values to document a user action. + * + * @param action + * String + * @param activity + * String + * @param userId + * String + * @param affectedId + * String + * @param comment + * String + * @return Value suitable for writing to the audit log file. + */ + public static String formatAuditLogMessage(String action, String activity, String userId, String affectedId, + String comment) { + StringBuilder auditLogMsg = new StringBuilder(); + auditLogMsg.append("Click_A:["); + if (action != null && !action.equals("")) { + auditLogMsg.append(" Action: "); + auditLogMsg.append(action); + } + + if (activity != null && !activity.equals("")) { + auditLogMsg.append(",Activity CD: "); + auditLogMsg.append(activity); + } + + if (userId != null && !userId.equals("")) { + auditLogMsg.append(",User ID: "); + auditLogMsg.append(userId); + } + + if (affectedId != null && !affectedId.equals("")) { + auditLogMsg.append(",Affected ID: "); + auditLogMsg.append(affectedId); + } + + if (comment != null && !comment.equals("")) { + auditLogMsg.append(",Comment: "); + auditLogMsg.append(comment); + } + auditLogMsg.append("]"); + return auditLogMsg.toString(); + } + + /** + * Builds a comma-separated string of values to document a user browser + * action. + * + * @param orgUserId + * String + * @param appName + * String + * @param action + * String + * @param activity + * String + * @param actionLink + * String + * @param page + * String + * @param function + * String + * @param type + * String + * @return String value suitable for writing to the audit log file. + */ + public static String formatStoreAnalyticsAuditLogMessage(String orgUserId, String appName, String action, + String activity, String actionLink, String page, String function, String type) { + StringBuilder auditLogStoreAnalyticsMsg = new StringBuilder(); + auditLogStoreAnalyticsMsg.append("Click_Analytics:["); + if (orgUserId != null && !orgUserId.equals("")) { + auditLogStoreAnalyticsMsg.append(" Organization User ID: "); + auditLogStoreAnalyticsMsg.append(orgUserId); + } + + if (appName != null && !appName.equals("")) { + auditLogStoreAnalyticsMsg.append(",AppName: "); + auditLogStoreAnalyticsMsg.append(appName); + } + + if (action != null && !action.equals("")) { + auditLogStoreAnalyticsMsg.append(",Action: "); + auditLogStoreAnalyticsMsg.append(action); + } + + if (activity != null && !activity.equals("")) { + auditLogStoreAnalyticsMsg.append(",Activity: "); + auditLogStoreAnalyticsMsg.append(activity); + } + + if (actionLink != null && !actionLink.equals("")) { + auditLogStoreAnalyticsMsg.append(",ActionLink: "); + auditLogStoreAnalyticsMsg.append(actionLink); + } + + if (page != null && !page.equals("")) { + auditLogStoreAnalyticsMsg.append(",Page: "); + auditLogStoreAnalyticsMsg.append(page); + } + + if (function != null && !function.equals("")) { + auditLogStoreAnalyticsMsg.append(",Function: "); + auditLogStoreAnalyticsMsg.append(function); + } + + if (type != null && !type.equals("")) { + auditLogStoreAnalyticsMsg.append(",Type: "); + auditLogStoreAnalyticsMsg.append(type); + } + auditLogStoreAnalyticsMsg.append("]"); + return auditLogStoreAnalyticsMsg.toString(); + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AdminRolesService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AdminRolesService.java index a1016e1c..529581d2 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AdminRolesService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AdminRolesService.java @@ -1,56 +1,56 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.domain.EPRole; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.transport.AppsListWithAdminRole; - -public interface AdminRolesService { - - public AppsListWithAdminRole getAppsWithAdminRoleStateForUser(String orgUserId); - - public boolean setAppsWithAdminRoleStateForUser(AppsListWithAdminRole newAppsListWithAdminRoles); - - /** - * Attention! User roles in ECOMP PORTAL cannot be managed by this function. - * @param user - * @return 'true' if user has Super Administrator role SYS_ADMIN_ROLE_ID (1 for now) in ECOMP PORTAL, 'false' otherwise - */ - public boolean isSuperAdmin(EPUser user); - - /** - * Attention! User roles in ECOMP PORTAL cannot be managed by this function. - * @param user - * @return 'true' if user has Account Administrator role ACCOUNT_ADMIN_ROLE_ID (999 for now) for any application except ECOMP Portal, 'false' otherwise - */ - public boolean isAccountAdmin(EPUser user); - - /** - * Attention! User roles in ECOMP PORTAL cannot be managed by this function. - * @param user - * @return 'true' if user has any remote(!) role within any application (ECOMP Portal roles are not included), 'false' otherwise - */ - public boolean isUser(EPUser user); - - List getRolesByApp(EPUser user, Long appId); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.domain.EPRole; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.transport.AppsListWithAdminRole; + +public interface AdminRolesService { + + public AppsListWithAdminRole getAppsWithAdminRoleStateForUser(String orgUserId); + + public boolean setAppsWithAdminRoleStateForUser(AppsListWithAdminRole newAppsListWithAdminRoles); + + /** + * Attention! User roles in ECOMP PORTAL cannot be managed by this function. + * @param user + * @return 'true' if user has Super Administrator role SYS_ADMIN_ROLE_ID (1 for now) in ECOMP PORTAL, 'false' otherwise + */ + public boolean isSuperAdmin(EPUser user); + + /** + * Attention! User roles in ECOMP PORTAL cannot be managed by this function. + * @param user + * @return 'true' if user has Account Administrator role ACCOUNT_ADMIN_ROLE_ID (999 for now) for any application except ECOMP Portal, 'false' otherwise + */ + public boolean isAccountAdmin(EPUser user); + + /** + * Attention! User roles in ECOMP PORTAL cannot be managed by this function. + * @param user + * @return 'true' if user has any remote(!) role within any application (ECOMP Portal roles are not included), 'false' otherwise + */ + public boolean isUser(EPUser user); + + List getRolesByApp(EPUser user, Long appId); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AdminRolesServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AdminRolesServiceImpl.java index 50e7348e..20daa4fc 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AdminRolesServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AdminRolesServiceImpl.java @@ -1,329 +1,329 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; - -import javax.annotation.PostConstruct; - -import org.apache.cxf.common.util.StringUtils; -import org.hibernate.Session; -import org.hibernate.SessionFactory; -import org.hibernate.Transaction; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EPRole; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EPUserApp; -import org.openecomp.portalapp.portal.domain.UserIdRoleId; -import org.openecomp.portalapp.portal.domain.UserRole; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.transport.AppNameIdIsAdmin; -import org.openecomp.portalapp.portal.transport.AppsListWithAdminRole; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; - -@Service("adminRolesService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy - -public class AdminRolesServiceImpl implements AdminRolesService { - - private Long SYS_ADMIN_ROLE_ID = 1L; - private Long ACCOUNT_ADMIN_ROLE_ID = 999L; - private Long ECOMP_APP_ID = 1L; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AdminRolesServiceImpl.class); - - @Autowired - private SessionFactory sessionFactory; - @Autowired - private DataAccessService dataAccessService; - @Autowired - SearchService searchService; - @Autowired - EPAppService appsService; - - @PostConstruct - private void init() { - try { - SYS_ADMIN_ROLE_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.SYS_ADMIN_ROLE_ID)); - ACCOUNT_ADMIN_ROLE_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID)); - ECOMP_APP_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID)); - } catch(Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } - } - - @Override - @EPMetricsLog - @SuppressWarnings("unchecked") - public AppsListWithAdminRole getAppsWithAdminRoleStateForUser(String orgUserId) { - AppsListWithAdminRole appsListWithAdminRole = null; - - try { - List userList = dataAccessService.getList(EPUser.class, " where orgUserId = '" + orgUserId + "'", null, - null); - HashMap appsUserAdmin = new HashMap(); - if (userList.size() > 0) { - EPUser user = userList.get(0); - List userAppList = null; - try { - userAppList = dataAccessService.getList(EPUserApp.class, - " where userId = " + user.getId() + " and role.id = " + ACCOUNT_ADMIN_ROLE_ID, null, null); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - EPLogUtil.logEcompError(EPAppMessagesEnum.BeDaoSystemError); - } - for (EPUserApp userApp : userAppList) { - appsUserAdmin.put(userApp.getAppId(), userApp.getUserId()); - } - } - - appsListWithAdminRole = new AppsListWithAdminRole(); - appsListWithAdminRole.orgUserId = orgUserId; - List appsList = null; - try { - appsList = dataAccessService.getList(EPApp.class, " where ( enabled = 'Y' or id = " + ECOMP_APP_ID + ")", null, null); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - EPLogUtil.logEcompError(EPAppMessagesEnum.BeDaoSystemError); - } - for (EPApp app : appsList) { - AppNameIdIsAdmin appNameIdIsAdmin = new AppNameIdIsAdmin(); - appNameIdIsAdmin.id = app.getId(); - appNameIdIsAdmin.appName = app.getName(); - appNameIdIsAdmin.isAdmin = new Boolean(appsUserAdmin.containsKey(app.getId())); - appNameIdIsAdmin.restrictedApp = app.isRestrictedApp(); - appsListWithAdminRole.appsRoles.add(appNameIdIsAdmin); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing AdminRolesServiceImpl.getAppsWithAdminRoleStateForUser operation, Details:" - + EcompPortalUtils.getStackTrace(e)); - } - - return appsListWithAdminRole; - } - - private static final Object syncRests = new Object(); - - @Override - @EPMetricsLog - @SuppressWarnings("unchecked") - public boolean setAppsWithAdminRoleStateForUser(AppsListWithAdminRole newAppsListWithAdminRoles) { - boolean result = false; - // No changes if no new roles list or no userId. - if (!StringUtils.isEmpty(newAppsListWithAdminRoles.orgUserId) && newAppsListWithAdminRoles.appsRoles != null) { - synchronized (syncRests) { - List apps = appsService.getAppsFullList(); - HashMap enabledApps = new HashMap(); - for (EPApp app : apps) { - if (app.getEnabled().booleanValue() || app.getId() == ECOMP_APP_ID) { - enabledApps.put(app.getId(), app); - } - } - List newAppsWhereUserIsAdmin = new ArrayList(); - for (AppNameIdIsAdmin adminRole : newAppsListWithAdminRoles.appsRoles) { - // user Admin role may be added only for enabled apps - if (adminRole.isAdmin.booleanValue() && enabledApps.containsKey(adminRole.id)) { - newAppsWhereUserIsAdmin.add(adminRole); - } - } - EPUser user = null; - boolean createNewUser = false; - String orgUserId = newAppsListWithAdminRoles.orgUserId.trim(); - List localUserList = dataAccessService.getList(EPUser.class, " where org_user_id='" + orgUserId + "'", - null, null); - List oldAppsWhereUserIsAdmin = new ArrayList(); - if (localUserList.size() > 0) { - EPUser tmpUser = localUserList.get(0); - oldAppsWhereUserIsAdmin = dataAccessService.getList(EPUserApp.class, - " where userId = " + tmpUser.getId() + " and role.id = " + ACCOUNT_ADMIN_ROLE_ID, null, - null); - if (oldAppsWhereUserIsAdmin.size() > 0 || newAppsWhereUserIsAdmin.size() > 0) { - user = tmpUser; - } - } else if (newAppsWhereUserIsAdmin.size() > 0) { - // we create new user only if he has Admin Role for any App - createNewUser = true; - } - if (user != null || createNewUser) { - Session localSession = null; - Transaction transaction = null; - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - if (createNewUser) { - user = this.searchService.searchUserByUserId(orgUserId); - if (user != null) { - // insert the user with active true in order to - // pass login phase. - user.setActive(true); - localSession.save(EPUser.class.getName(), user); - } - } - for (EPUserApp oldUserApp : oldAppsWhereUserIsAdmin) { - // user Admin role may be deleted only for enabled - // apps - if (enabledApps.containsKey(oldUserApp.getAppId())) { - localSession.delete(oldUserApp); - } - } - for (AppNameIdIsAdmin appNameIdIsAdmin : newAppsWhereUserIsAdmin) { - EPApp app = (EPApp) localSession.get(EPApp.class, appNameIdIsAdmin.id); - EPRole role = (EPRole) localSession.get(EPRole.class, new Long(ACCOUNT_ADMIN_ROLE_ID)); - EPUserApp newUserApp = new EPUserApp(); - newUserApp.setUserId(user.getId()); - newUserApp.setApp(app); - newUserApp.setRole(role); - localSession.save(EPUserApp.class.getName(), newUserApp); - } - transaction.commit(); - result = true; - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - logger.error(EELFLoggerDelegate.errorLogger, "setAppsWithAdminRoleStateForUser: exception in point 2", e); - try { - transaction.rollback(); - } catch (Exception ex) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeExecuteRollbackError, e); - logger.error(EELFLoggerDelegate.errorLogger, "setAppsWithAdminRoleStateForUser: exception in point 3", ex); - } - } finally { - try { - localSession.close(); - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoCloseSessionError, e); - logger.error(EELFLoggerDelegate.errorLogger, "setAppsWithAdminRoleStateForUser: exception in point 4", e); - } - } - } - } - } - - return result; - } - - @SuppressWarnings("unchecked") - @Override - public boolean isSuperAdmin(EPUser user) { - if ((user != null) /* && (user.getId() == null) */ && (user.getOrgUserId() != null)) { - String sql = "SELECT user.USER_ID, user.org_user_id, userrole.ROLE_ID, userrole.APP_ID FROM fn_user_role userrole " - + "INNER JOIN fn_user user ON user.USER_ID = userrole.USER_ID " + "WHERE user.org_user_id = '" - + user.getOrgUserId() + "' " + "AND userrole.ROLE_ID = '" + SYS_ADMIN_ROLE_ID + "' " - + "AND userrole.APP_ID = '" + ECOMP_APP_ID + "';"; - try { - List userRoleList = dataAccessService.executeSQLQuery(sql, UserIdRoleId.class, null); - if (userRoleList != null && userRoleList.size() > 0) { - return true; - } - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while executing isSuperAdmin operation", e); - } - } - // else - // { - // User currentUser = user != null ? (User) - // dataAccessService.getDomainObject(User.class, user.getId(), null) : - // null; - // if (currentUser != null && currentUser.getId() != null) { - // for (UserApp userApp : currentUser.getUserApps()) { - // if (userApp.getApp().getId().equals(ECOMP_APP_ID) && - // userApp.getRole().getId().equals(SYS_ADMIN_ROLE_ID)) { - // // Super Administrator role is global, no need to keep iterating - // return true; - // } - // } - // } - // } - return false; - } - - public boolean isAccountAdmin(EPUser user) { - try { - EPUser currentUser = user != null - ? (EPUser) dataAccessService.getDomainObject(EPUser.class, user.getId(), null) : null; - if (currentUser != null && currentUser.getId() != null) { - for (EPUserApp userApp : currentUser.getEPUserApps()) { - if (//!userApp.getApp().getId().equals(ECOMP_APP_ID) - // && - userApp.getRole().getId().equals(ACCOUNT_ADMIN_ROLE_ID)) { - // Account Administrator sees only the applications - // he/she is Administrator - return true; - } - } - } - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while executing isAccountAdmin operation", e); - } - return false; - } - - public boolean isUser(EPUser user) { - try { - EPUser currentUser = user != null - ? (EPUser) dataAccessService.getDomainObject(EPUser.class, user.getId(), null) : null; - if (currentUser != null && currentUser.getId() != null) { - for (EPUserApp userApp : currentUser.getEPUserApps()) { - if (!userApp.getApp().getId().equals(ECOMP_APP_ID)) { - EPRole role = userApp.getRole(); - if (!role.getId().equals(SYS_ADMIN_ROLE_ID) && !role.getId().equals(ACCOUNT_ADMIN_ROLE_ID)) { - if (role.getActive()) { - return true; - } - } - } - } - } - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while executing isUser operation", e); - } - return false; - } - - @Override - @EPMetricsLog - public List getRolesByApp(EPUser user, Long appId) { - List list = new ArrayList<>(); - String sql = "SELECT * FROM FN_ROLE WHERE APP_ID = " + appId; - @SuppressWarnings("unchecked") - List roles = dataAccessService.executeSQLQuery(sql, EPRole.class, null); - for (EPRole role: roles) { - list.add(role); - } - return list; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; + +import javax.annotation.PostConstruct; + +import org.apache.cxf.common.util.StringUtils; +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.Transaction; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPRole; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EPUserApp; +import org.openecomp.portalapp.portal.domain.UserIdRoleId; +import org.openecomp.portalapp.portal.domain.UserRole; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.transport.AppNameIdIsAdmin; +import org.openecomp.portalapp.portal.transport.AppsListWithAdminRole; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; + +@Service("adminRolesService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy + +public class AdminRolesServiceImpl implements AdminRolesService { + + private Long SYS_ADMIN_ROLE_ID = 1L; + private Long ACCOUNT_ADMIN_ROLE_ID = 999L; + private Long ECOMP_APP_ID = 1L; + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AdminRolesServiceImpl.class); + + @Autowired + private SessionFactory sessionFactory; + @Autowired + private DataAccessService dataAccessService; + @Autowired + SearchService searchService; + @Autowired + EPAppService appsService; + + @PostConstruct + private void init() { + try { + SYS_ADMIN_ROLE_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.SYS_ADMIN_ROLE_ID)); + ACCOUNT_ADMIN_ROLE_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID)); + ECOMP_APP_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID)); + } catch(Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } + } + + @Override + @EPMetricsLog + @SuppressWarnings("unchecked") + public AppsListWithAdminRole getAppsWithAdminRoleStateForUser(String orgUserId) { + AppsListWithAdminRole appsListWithAdminRole = null; + + try { + List userList = dataAccessService.getList(EPUser.class, " where orgUserId = '" + orgUserId + "'", null, + null); + HashMap appsUserAdmin = new HashMap(); + if (userList.size() > 0) { + EPUser user = userList.get(0); + List userAppList = null; + try { + userAppList = dataAccessService.getList(EPUserApp.class, + " where userId = " + user.getId() + " and role.id = " + ACCOUNT_ADMIN_ROLE_ID, null, null); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + EPLogUtil.logEcompError(EPAppMessagesEnum.BeDaoSystemError); + } + for (EPUserApp userApp : userAppList) { + appsUserAdmin.put(userApp.getAppId(), userApp.getUserId()); + } + } + + appsListWithAdminRole = new AppsListWithAdminRole(); + appsListWithAdminRole.orgUserId = orgUserId; + List appsList = null; + try { + appsList = dataAccessService.getList(EPApp.class, " where ( enabled = 'Y' or id = " + ECOMP_APP_ID + ")", null, null); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + EPLogUtil.logEcompError(EPAppMessagesEnum.BeDaoSystemError); + } + for (EPApp app : appsList) { + AppNameIdIsAdmin appNameIdIsAdmin = new AppNameIdIsAdmin(); + appNameIdIsAdmin.id = app.getId(); + appNameIdIsAdmin.appName = app.getName(); + appNameIdIsAdmin.isAdmin = new Boolean(appsUserAdmin.containsKey(app.getId())); + appNameIdIsAdmin.restrictedApp = app.isRestrictedApp(); + appsListWithAdminRole.appsRoles.add(appNameIdIsAdmin); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing AdminRolesServiceImpl.getAppsWithAdminRoleStateForUser operation, Details:" + + EcompPortalUtils.getStackTrace(e)); + } + + return appsListWithAdminRole; + } + + private static final Object syncRests = new Object(); + + @Override + @EPMetricsLog + @SuppressWarnings("unchecked") + public boolean setAppsWithAdminRoleStateForUser(AppsListWithAdminRole newAppsListWithAdminRoles) { + boolean result = false; + // No changes if no new roles list or no userId. + if (!StringUtils.isEmpty(newAppsListWithAdminRoles.orgUserId) && newAppsListWithAdminRoles.appsRoles != null) { + synchronized (syncRests) { + List apps = appsService.getAppsFullList(); + HashMap enabledApps = new HashMap(); + for (EPApp app : apps) { + if (app.getEnabled().booleanValue() || app.getId() == ECOMP_APP_ID) { + enabledApps.put(app.getId(), app); + } + } + List newAppsWhereUserIsAdmin = new ArrayList(); + for (AppNameIdIsAdmin adminRole : newAppsListWithAdminRoles.appsRoles) { + // user Admin role may be added only for enabled apps + if (adminRole.isAdmin.booleanValue() && enabledApps.containsKey(adminRole.id)) { + newAppsWhereUserIsAdmin.add(adminRole); + } + } + EPUser user = null; + boolean createNewUser = false; + String orgUserId = newAppsListWithAdminRoles.orgUserId.trim(); + List localUserList = dataAccessService.getList(EPUser.class, " where org_user_id='" + orgUserId + "'", + null, null); + List oldAppsWhereUserIsAdmin = new ArrayList(); + if (localUserList.size() > 0) { + EPUser tmpUser = localUserList.get(0); + oldAppsWhereUserIsAdmin = dataAccessService.getList(EPUserApp.class, + " where userId = " + tmpUser.getId() + " and role.id = " + ACCOUNT_ADMIN_ROLE_ID, null, + null); + if (oldAppsWhereUserIsAdmin.size() > 0 || newAppsWhereUserIsAdmin.size() > 0) { + user = tmpUser; + } + } else if (newAppsWhereUserIsAdmin.size() > 0) { + // we create new user only if he has Admin Role for any App + createNewUser = true; + } + if (user != null || createNewUser) { + Session localSession = null; + Transaction transaction = null; + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + if (createNewUser) { + user = this.searchService.searchUserByUserId(orgUserId); + if (user != null) { + // insert the user with active true in order to + // pass login phase. + user.setActive(true); + localSession.save(EPUser.class.getName(), user); + } + } + for (EPUserApp oldUserApp : oldAppsWhereUserIsAdmin) { + // user Admin role may be deleted only for enabled + // apps + if (enabledApps.containsKey(oldUserApp.getAppId())) { + localSession.delete(oldUserApp); + } + } + for (AppNameIdIsAdmin appNameIdIsAdmin : newAppsWhereUserIsAdmin) { + EPApp app = (EPApp) localSession.get(EPApp.class, appNameIdIsAdmin.id); + EPRole role = (EPRole) localSession.get(EPRole.class, new Long(ACCOUNT_ADMIN_ROLE_ID)); + EPUserApp newUserApp = new EPUserApp(); + newUserApp.setUserId(user.getId()); + newUserApp.setApp(app); + newUserApp.setRole(role); + localSession.save(EPUserApp.class.getName(), newUserApp); + } + transaction.commit(); + result = true; + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + logger.error(EELFLoggerDelegate.errorLogger, "setAppsWithAdminRoleStateForUser: exception in point 2", e); + try { + transaction.rollback(); + } catch (Exception ex) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeExecuteRollbackError, e); + logger.error(EELFLoggerDelegate.errorLogger, "setAppsWithAdminRoleStateForUser: exception in point 3", ex); + } + } finally { + try { + localSession.close(); + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoCloseSessionError, e); + logger.error(EELFLoggerDelegate.errorLogger, "setAppsWithAdminRoleStateForUser: exception in point 4", e); + } + } + } + } + } + + return result; + } + + @SuppressWarnings("unchecked") + @Override + public boolean isSuperAdmin(EPUser user) { + if ((user != null) /* && (user.getId() == null) */ && (user.getOrgUserId() != null)) { + String sql = "SELECT user.USER_ID, user.org_user_id, userrole.ROLE_ID, userrole.APP_ID FROM fn_user_role userrole " + + "INNER JOIN fn_user user ON user.USER_ID = userrole.USER_ID " + "WHERE user.org_user_id = '" + + user.getOrgUserId() + "' " + "AND userrole.ROLE_ID = '" + SYS_ADMIN_ROLE_ID + "' " + + "AND userrole.APP_ID = '" + ECOMP_APP_ID + "';"; + try { + List userRoleList = dataAccessService.executeSQLQuery(sql, UserIdRoleId.class, null); + if (userRoleList != null && userRoleList.size() > 0) { + return true; + } + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while executing isSuperAdmin operation", e); + } + } + // else + // { + // User currentUser = user != null ? (User) + // dataAccessService.getDomainObject(User.class, user.getId(), null) : + // null; + // if (currentUser != null && currentUser.getId() != null) { + // for (UserApp userApp : currentUser.getUserApps()) { + // if (userApp.getApp().getId().equals(ECOMP_APP_ID) && + // userApp.getRole().getId().equals(SYS_ADMIN_ROLE_ID)) { + // // Super Administrator role is global, no need to keep iterating + // return true; + // } + // } + // } + // } + return false; + } + + public boolean isAccountAdmin(EPUser user) { + try { + EPUser currentUser = user != null + ? (EPUser) dataAccessService.getDomainObject(EPUser.class, user.getId(), null) : null; + if (currentUser != null && currentUser.getId() != null) { + for (EPUserApp userApp : currentUser.getEPUserApps()) { + if (//!userApp.getApp().getId().equals(ECOMP_APP_ID) + // && + userApp.getRole().getId().equals(ACCOUNT_ADMIN_ROLE_ID)) { + // Account Administrator sees only the applications + // he/she is Administrator + return true; + } + } + } + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while executing isAccountAdmin operation", e); + } + return false; + } + + public boolean isUser(EPUser user) { + try { + EPUser currentUser = user != null + ? (EPUser) dataAccessService.getDomainObject(EPUser.class, user.getId(), null) : null; + if (currentUser != null && currentUser.getId() != null) { + for (EPUserApp userApp : currentUser.getEPUserApps()) { + if (!userApp.getApp().getId().equals(ECOMP_APP_ID)) { + EPRole role = userApp.getRole(); + if (!role.getId().equals(SYS_ADMIN_ROLE_ID) && !role.getId().equals(ACCOUNT_ADMIN_ROLE_ID)) { + if (role.getActive()) { + return true; + } + } + } + } + } + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while executing isUser operation", e); + } + return false; + } + + @Override + @EPMetricsLog + public List getRolesByApp(EPUser user, Long appId) { + List list = new ArrayList<>(); + String sql = "SELECT * FROM FN_ROLE WHERE APP_ID = " + appId; + @SuppressWarnings("unchecked") + List roles = dataAccessService.executeSQLQuery(sql, EPRole.class, null); + for (EPRole role: roles) { + list.add(role); + } + return list; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppContactUsService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppContactUsService.java index e8ef64fd..d71e80fe 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppContactUsService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppContactUsService.java @@ -1,55 +1,55 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.ecomp.model.AppCategoryFunctionsItem; -import org.openecomp.portalapp.portal.ecomp.model.AppContactUsItem; - -public interface AppContactUsService { - - /** - * Gets a list of contact-us information for all entries in - * the fn_app_contact_us table, sorted by app name. If an application is active but has no fn_app_contact_us entry, it will have no entry in this result. - * - * @return List of AppContactUsItem, one for each item in fn_app_contact_us table. - * @throws Exception - */ - public List getAppContactUs() throws Exception; - - /** - * Gets a list of contact-us information for all applications - * in the fn_app table, extended with any information in the fn_app_contact_us table. - * - * @return List of AppContactUsItem, one for each item in fn_app table. - * @throws Exception - */ - public List getAppsAndContacts() throws Exception; - - public List getAppCategoryFunctions() throws Exception; - - public String saveAppContactUs(List contactUs) throws Exception; - - public String saveAppContactUs(AppContactUsItem contactUs) throws Exception; - - public String deleteContactUs(Long id) throws Exception; - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.ecomp.model.AppCategoryFunctionsItem; +import org.openecomp.portalapp.portal.ecomp.model.AppContactUsItem; + +public interface AppContactUsService { + + /** + * Gets a list of contact-us information for all entries in + * the fn_app_contact_us table, sorted by app name. If an application is active but has no fn_app_contact_us entry, it will have no entry in this result. + * + * @return List of AppContactUsItem, one for each item in fn_app_contact_us table. + * @throws Exception + */ + public List getAppContactUs() throws Exception; + + /** + * Gets a list of contact-us information for all applications + * in the fn_app table, extended with any information in the fn_app_contact_us table. + * + * @return List of AppContactUsItem, one for each item in fn_app table. + * @throws Exception + */ + public List getAppsAndContacts() throws Exception; + + public List getAppCategoryFunctions() throws Exception; + + public String saveAppContactUs(List contactUs) throws Exception; + + public String saveAppContactUs(AppContactUsItem contactUs) throws Exception; + + public String deleteContactUs(Long id) throws Exception; + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppContactUsServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppContactUsServiceImpl.java index 41c5d9fd..628414d9 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppContactUsServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppContactUsServiceImpl.java @@ -1,189 +1,189 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.Collections; -import java.util.Comparator; -import java.util.HashMap; -import java.util.List; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalapp.portal.domain.AppContactUs; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.ecomp.model.AppCategoryFunctionsItem; -import org.openecomp.portalapp.portal.ecomp.model.AppContactUsItem; - -/** - * Provides database access for the contact-us page controllers. - */ -@Transactional -@org.springframework.context.annotation.Configuration -public class AppContactUsServiceImpl implements AppContactUsService { - - private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppContactUsServiceImpl.class); - - @Autowired - private DataAccessService dataAccessService; - - public DataAccessService getDataAccessService() { - return dataAccessService; - } - - public void setDataAccessService(DataAccessService dataAccessService) { - this.dataAccessService = dataAccessService; - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalapp.portal.service.AppContactUsService# - * getAppContactUs() - */ - @SuppressWarnings("unchecked") - @Override - public List getAppContactUs() throws Exception { - List contactUsItemList = (List) getDataAccessService() - .executeNamedQuery("getAppContactUsItems", null, null); - Collections.sort(contactUsItemList, new AppContactUsItemCompare()); - return contactUsItemList; - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalapp.portal.service.AppContactUsService# - * getAllAppsAndContacts() - */ - @SuppressWarnings("unchecked") - @Override - public List getAppsAndContacts() throws Exception { - List contactUsItemList = (List) getDataAccessService() - .executeNamedQuery("getAppsAndContacts", null, null); - Collections.sort(contactUsItemList, new AppContactUsItemCompare()); - return contactUsItemList; - } - - /** - * Assists in sorting app-contact-us items by application name. - */ - class AppContactUsItemCompare implements Comparator { - @Override - public int compare(AppContactUsItem o1, AppContactUsItem o2) { - return o1.getAppName().compareTo(o2.getAppName()); - } - } - - /** - * Gets a table of category and function details for apps that participate - * in the functional menu. - */ - @Override - public List getAppCategoryFunctions() throws Exception { - @SuppressWarnings("unchecked") - // This named query requires no parameters. - List list = (List) dataAccessService - .executeNamedQuery("getAppCategoryFunctions", null, null); - logger.debug(EELFLoggerDelegate.debugLogger, "getAppCategoryFunctions: result list size is " + list.size()); - return list; - } - - /** - * Saves the list of contact-us objects to the database. - */ - @Override - @Transactional(rollbackFor = Exception.class) - public String saveAppContactUs(List contactUsModelList) throws Exception { - try { - for (AppContactUsItem contactUs : contactUsModelList) { - String status = saveAppContactUs(contactUs); - if (!status.equals("success")) - throw new Exception("saveAppContaatUsFailed: service returned " + status); - } - return "success"; - - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "", e); - throw new Exception(e); - } - - } - - /** - * Saves a single contact-us object to the database, either creating a new - * row or updating if the argument has the ID of an existing row. - */ - @Override - @Transactional(rollbackFor = Exception.class) - public String saveAppContactUs(AppContactUsItem contactUsModel) throws Exception { - try { - HashMap map = new HashMap(); - AppContactUs contactUs = null; - try { - contactUs = (AppContactUs) getDataAccessService().getDomainObject(AppContactUs.class, - contactUsModel.getAppId(), map); - } catch (Exception e) { - logger.debug(EELFLoggerDelegate.debugLogger, "saveAppContactUs: not found for App {}, adding new entry", - contactUsModel.getAppName()); - contactUs = new AppContactUs(); - } - - // Populate the AppContactUs model for the database. - EPApp app = (EPApp) getDataAccessService().getDomainObject(EPApp.class, contactUsModel.getAppId(), map); - if (app == null || app.getId() == null) - throw new Exception("saveAppContactus: App not found for Id " + contactUsModel.getAppId()); - contactUs.setApp(app); - contactUs.setDescription(contactUsModel.getDescription()); - contactUs.setContactName(contactUsModel.getContactName()); - contactUs.setContactEmail(contactUsModel.getContactEmail()); - contactUs.setActiveYN(contactUsModel.getActiveYN()); - contactUs.setUrl(contactUsModel.getUrl()); - getDataAccessService().saveDomainObject(contactUs, map); - return "success"; - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "saveAppContactUs failed", e); - throw e; - // return "failure"; - } - } - - /** - * Deletes the row from the app contact us table with the specified ID. - */ - @Override - public String deleteContactUs(Long id) throws Exception { - try { - HashMap map = new HashMap(); - AppContactUs contactUs = (AppContactUs) getDataAccessService().getDomainObject(AppContactUs.class, id, map); - if (contactUs.getApp() == null) - throw new Exception("Delete unsuccessful for Id " + id); - getDataAccessService().deleteDomainObject(contactUs, map); - return "success"; - } catch (Exception e) { - - logger.info(EELFLoggerDelegate.errorLogger, "", e); - throw e; - } - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.Collections; +import java.util.Comparator; +import java.util.HashMap; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalapp.portal.domain.AppContactUs; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.ecomp.model.AppCategoryFunctionsItem; +import org.openecomp.portalapp.portal.ecomp.model.AppContactUsItem; + +/** + * Provides database access for the contact-us page controllers. + */ +@Transactional +@org.springframework.context.annotation.Configuration +public class AppContactUsServiceImpl implements AppContactUsService { + + private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppContactUsServiceImpl.class); + + @Autowired + private DataAccessService dataAccessService; + + public DataAccessService getDataAccessService() { + return dataAccessService; + } + + public void setDataAccessService(DataAccessService dataAccessService) { + this.dataAccessService = dataAccessService; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.AppContactUsService# + * getAppContactUs() + */ + @SuppressWarnings("unchecked") + @Override + public List getAppContactUs() throws Exception { + List contactUsItemList = (List) getDataAccessService() + .executeNamedQuery("getAppContactUsItems", null, null); + Collections.sort(contactUsItemList, new AppContactUsItemCompare()); + return contactUsItemList; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.AppContactUsService# + * getAllAppsAndContacts() + */ + @SuppressWarnings("unchecked") + @Override + public List getAppsAndContacts() throws Exception { + List contactUsItemList = (List) getDataAccessService() + .executeNamedQuery("getAppsAndContacts", null, null); + Collections.sort(contactUsItemList, new AppContactUsItemCompare()); + return contactUsItemList; + } + + /** + * Assists in sorting app-contact-us items by application name. + */ + class AppContactUsItemCompare implements Comparator { + @Override + public int compare(AppContactUsItem o1, AppContactUsItem o2) { + return o1.getAppName().compareTo(o2.getAppName()); + } + } + + /** + * Gets a table of category and function details for apps that participate + * in the functional menu. + */ + @Override + public List getAppCategoryFunctions() throws Exception { + @SuppressWarnings("unchecked") + // This named query requires no parameters. + List list = (List) dataAccessService + .executeNamedQuery("getAppCategoryFunctions", null, null); + logger.debug(EELFLoggerDelegate.debugLogger, "getAppCategoryFunctions: result list size is " + list.size()); + return list; + } + + /** + * Saves the list of contact-us objects to the database. + */ + @Override + @Transactional(rollbackFor = Exception.class) + public String saveAppContactUs(List contactUsModelList) throws Exception { + try { + for (AppContactUsItem contactUs : contactUsModelList) { + String status = saveAppContactUs(contactUs); + if (!status.equals("success")) + throw new Exception("saveAppContaatUsFailed: service returned " + status); + } + return "success"; + + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "", e); + throw new Exception(e); + } + + } + + /** + * Saves a single contact-us object to the database, either creating a new + * row or updating if the argument has the ID of an existing row. + */ + @Override + @Transactional(rollbackFor = Exception.class) + public String saveAppContactUs(AppContactUsItem contactUsModel) throws Exception { + try { + HashMap map = new HashMap(); + AppContactUs contactUs = null; + try { + contactUs = (AppContactUs) getDataAccessService().getDomainObject(AppContactUs.class, + contactUsModel.getAppId(), map); + } catch (Exception e) { + logger.debug(EELFLoggerDelegate.debugLogger, "saveAppContactUs: not found for App {}, adding new entry", + contactUsModel.getAppName()); + contactUs = new AppContactUs(); + } + + // Populate the AppContactUs model for the database. + EPApp app = (EPApp) getDataAccessService().getDomainObject(EPApp.class, contactUsModel.getAppId(), map); + if (app == null || app.getId() == null) + throw new Exception("saveAppContactus: App not found for Id " + contactUsModel.getAppId()); + contactUs.setApp(app); + contactUs.setDescription(contactUsModel.getDescription()); + contactUs.setContactName(contactUsModel.getContactName()); + contactUs.setContactEmail(contactUsModel.getContactEmail()); + contactUs.setActiveYN(contactUsModel.getActiveYN()); + contactUs.setUrl(contactUsModel.getUrl()); + getDataAccessService().saveDomainObject(contactUs, map); + return "success"; + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "saveAppContactUs failed", e); + throw e; + // return "failure"; + } + } + + /** + * Deletes the row from the app contact us table with the specified ID. + */ + @Override + public String deleteContactUs(Long id) throws Exception { + try { + HashMap map = new HashMap(); + AppContactUs contactUs = (AppContactUs) getDataAccessService().getDomainObject(AppContactUs.class, id, map); + if (contactUs.getApp() == null) + throw new Exception("Delete unsuccessful for Id " + id); + getDataAccessService().deleteDomainObject(contactUs, map); + return "success"; + } catch (Exception e) { + + logger.info(EELFLoggerDelegate.errorLogger, "", e); + throw e; + } + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppsCacheService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppsCacheService.java index aefbbbd5..2ee98644 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppsCacheService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppsCacheService.java @@ -1,42 +1,42 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ - -package org.openecomp.portalapp.portal.service; - -import org.openecomp.portalapp.portal.domain.EPApp; - -public interface AppsCacheService { - - /** - * returns an app by id from the cache - * @param appId - * @return corresponding App - */ - EPApp getApp(Long appId); - - /** - * returns the corresponding application endpoint - * @param appId - * @return if appId exists in cache, then return corresponding application endpoint, null otherwise. - */ - String getAppEndpoint(Long appId); - - EPApp getAppForAnalytics(String appKey); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ + +package org.openecomp.portalapp.portal.service; + +import org.openecomp.portalapp.portal.domain.EPApp; + +public interface AppsCacheService { + + /** + * returns an app by id from the cache + * @param appId + * @return corresponding App + */ + EPApp getApp(Long appId); + + /** + * returns the corresponding application endpoint + * @param appId + * @return if appId exists in cache, then return corresponding application endpoint, null otherwise. + */ + String getAppEndpoint(Long appId); + + EPApp getAppForAnalytics(String appKey); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppsCacheServiceImple.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppsCacheServiceImple.java index 80aa00d4..c5856c62 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppsCacheServiceImple.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/AppsCacheServiceImple.java @@ -1,136 +1,136 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import javax.annotation.PostConstruct; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; - -@Service("appsCacheService") -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class AppsCacheServiceImple implements AppsCacheService { - @Autowired - EPAppService appsService; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppsCacheServiceImple.class); - - final class CacheConfiguration { - - private long updateTime = 0; - private int updateInterval = 10; - - public CacheConfiguration (long _updateTime, int _updateInterval) { - updateTime = _updateTime; - updateInterval = _updateInterval; - } - } - - CacheConfiguration appConf = null; - CacheConfiguration analyticsAppConf = null; - - - private static volatile Map appsMap; - private static volatile Map anlyticsAppsMap; - - @PostConstruct - public void init() { - appConf = new CacheConfiguration(0, 10); - analyticsAppConf = new CacheConfiguration(0, 3600); - - this.refreshAppsMap(appConf); - } - - private Map refreshAppsMap(CacheConfiguration conf) { - long now = System.currentTimeMillis(); - - if(noNeedToUpdate(now, conf)) - return null; - - synchronized (this) { - if(noNeedToUpdate(now, conf)) - return null; - List allApps = appsService.getAppsFullList(); - Map newAppsMap = new HashMap(); - for (EPApp app : allApps) { - newAppsMap.put(app.getId(), app); - } - - Map newAnalyticsAppsMap = new HashMap(); - for (EPApp app : allApps) { - newAnalyticsAppsMap.put(app.getUebKey(), app); - } - // Switch cache with the new one. - appsMap = newAppsMap; - anlyticsAppsMap = newAnalyticsAppsMap; - conf.updateTime = now; - } - - return appsMap; - } - - private boolean noNeedToUpdate(long now, CacheConfiguration conf) { - long secondsPassed = (now - conf.updateTime)/1000; - if(secondsPassed < conf.updateInterval){ - logger.debug(EELFLoggerDelegate.debugLogger, "no need to refresh yet, seconds since last refresh: " + secondsPassed + ", refresh interval (sec) = " + conf.updateInterval); - return true; // no need to update cache - } - return false; // its time to update - } - - @Override - public String getAppEndpoint(Long appId) { - refreshAppsMap(appConf); - EPApp app = appsMap.get(appId); - if(app != null) - return app.getAppRestEndpoint(); - return null; - } - - @Override - public EPApp getApp(Long appId) { - refreshAppsMap(appConf); - EPApp app = appsMap.get(appId); - if(app != null) - return app; - return null; - } - - @Override - public EPApp getAppForAnalytics(String appKey) { - refreshAppsMap(analyticsAppConf); - EPApp app = anlyticsAppsMap.get(appKey); - if(app != null) - return app; - return null; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.annotation.PostConstruct; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; + +@Service("appsCacheService") +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class AppsCacheServiceImple implements AppsCacheService { + @Autowired + EPAppService appsService; + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(AppsCacheServiceImple.class); + + final class CacheConfiguration { + + private long updateTime = 0; + private int updateInterval = 10; + + public CacheConfiguration (long _updateTime, int _updateInterval) { + updateTime = _updateTime; + updateInterval = _updateInterval; + } + } + + CacheConfiguration appConf = null; + CacheConfiguration analyticsAppConf = null; + + + private static volatile Map appsMap; + private static volatile Map anlyticsAppsMap; + + @PostConstruct + public void init() { + appConf = new CacheConfiguration(0, 10); + analyticsAppConf = new CacheConfiguration(0, 3600); + + this.refreshAppsMap(appConf); + } + + private Map refreshAppsMap(CacheConfiguration conf) { + long now = System.currentTimeMillis(); + + if(noNeedToUpdate(now, conf)) + return null; + + synchronized (this) { + if(noNeedToUpdate(now, conf)) + return null; + List allApps = appsService.getAppsFullList(); + Map newAppsMap = new HashMap(); + for (EPApp app : allApps) { + newAppsMap.put(app.getId(), app); + } + + Map newAnalyticsAppsMap = new HashMap(); + for (EPApp app : allApps) { + newAnalyticsAppsMap.put(app.getUebKey(), app); + } + // Switch cache with the new one. + appsMap = newAppsMap; + anlyticsAppsMap = newAnalyticsAppsMap; + conf.updateTime = now; + } + + return appsMap; + } + + private boolean noNeedToUpdate(long now, CacheConfiguration conf) { + long secondsPassed = (now - conf.updateTime)/1000; + if(secondsPassed < conf.updateInterval){ + logger.debug(EELFLoggerDelegate.debugLogger, "no need to refresh yet, seconds since last refresh: " + secondsPassed + ", refresh interval (sec) = " + conf.updateInterval); + return true; // no need to update cache + } + return false; // its time to update + } + + @Override + public String getAppEndpoint(Long appId) { + refreshAppsMap(appConf); + EPApp app = appsMap.get(appId); + if(app != null) + return app.getAppRestEndpoint(); + return null; + } + + @Override + public EPApp getApp(Long appId) { + refreshAppsMap(appConf); + EPApp app = appsMap.get(appId); + if(app != null) + return app; + return null; + } + + @Override + public EPApp getAppForAnalytics(String appKey) { + refreshAppsMap(analyticsAppConf); + EPApp app = anlyticsAppsMap.get(appKey); + if(app != null) + return app; + return null; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthAccountService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthAccountService.java index 011a6485..4b4342d4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthAccountService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthAccountService.java @@ -6,42 +6,59 @@ import org.openecomp.portalapp.portal.domain.BasicAuthCredentials; import org.openecomp.portalapp.portal.domain.EPEndpoint; public interface BasicAuthAccountService { - + /** - * Saves Basic Authentication account for external systems - * @param BasicAuthCredentials + * Saves Basic Authentication account for external systems + * + * @param newCredential + * BasicAuthCredentials * @return Id of the newly created account + * @throws Exception */ Long saveBasicAuthAccount(BasicAuthCredentials newCredential) throws Exception; - + /** - * Saves Endpoint associated with a Basic Auth account - * @param EPEndpoint + * Saves Endpoint associated with a Basic Auth account + * + * @param endpoint + * EPEndpoint * @return Id of the newly created endpoint + * @throws Exception */ Long saveEndpoints(EPEndpoint endpoint) throws Exception; - + /** - * Saves Endpoint associated with a Basic Auth account - * @param accountId, endpointId + * Saves Endpoint associated with a Basic Auth account + * + * @param accountId + * @param endpointId + * @throws Exception */ void saveEndpointAccount(Long accountId, Long endpointId) throws Exception; - + /** - * Returns list of all BasicAuthCredentials in the sytem + * Returns list of all BasicAuthCredentials in the sytem + * * @return List + * @throws Exception */ List getAccountData() throws Exception; - + /** * Deletes BasicAuthenticationAccount + * * @param accountId + * @throws Exception */ void deleteEndpointAccout(Long accountId) throws Exception; - + /** * Updates BasicAuthenticationAccount - * @param accountId, BasicAuthCredentials + * + * @param accountId + * @param newCredential + * BasicAuthCredentials + * @throws Exception */ void updateBasicAuthAccount(Long accountId, BasicAuthCredentials newCredential) throws Exception; } diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthAccountServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthAccountServiceImpl.java index fd0fb597..753a501e 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthAccountServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthAccountServiceImpl.java @@ -5,14 +5,11 @@ import java.util.HashMap; import java.util.List; import java.util.Map; -import org.hibernate.Session; import org.hibernate.criterion.Criterion; import org.hibernate.criterion.Restrictions; import org.openecomp.portalapp.portal.domain.BasicAuthCredentials; import org.openecomp.portalapp.portal.domain.EPEndpoint; import org.openecomp.portalapp.portal.domain.EPEndpointAccount; -import org.openecomp.portalapp.portal.domain.MicroserviceData; -import org.openecomp.portalapp.portal.domain.MicroserviceParameter; import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; @@ -136,6 +133,7 @@ public class BasicAuthAccountServiceImpl implements BasicAuthAccountService{ @Override public List getAccountData() throws Exception { + @SuppressWarnings("unchecked") List list = (List) dataAccessService.getList(BasicAuthCredentials.class, null); for (int i = 0; i < list.size(); i++) { if (list.get(i).getPassword() != null) diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthenticationCredentialService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthenticationCredentialService.java index 459a6504..e5966603 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthenticationCredentialService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthenticationCredentialService.java @@ -1,35 +1,35 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import org.openecomp.portalapp.portal.domain.BasicAuthCredentials; - -public interface BasicAuthenticationCredentialService { - /** - * Gets the basic authentication credential for the specified appName from - * table ep_basic_auth_account - * - * @param appName - * External application name - * @return BasicAuthCredentials for the specified app; null if the app is - * not known. - */ - public BasicAuthCredentials getBasicAuthCredentialByAppName(String appName); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import org.openecomp.portalapp.portal.domain.BasicAuthCredentials; + +public interface BasicAuthenticationCredentialService { + /** + * Gets the basic authentication credential for the specified appName from + * table ep_basic_auth_account + * + * @param username + * External user name + * @return BasicAuthCredentials for the specified app; null if the username + * is not known. + */ + public BasicAuthCredentials getBasicAuthCredentialByUsernameAndPassword(String username, String password); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthenticationCredentialServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthenticationCredentialServiceImpl.java index 54a9d2af..8a7dd19a 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthenticationCredentialServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/BasicAuthenticationCredentialServiceImpl.java @@ -27,7 +27,6 @@ import org.hibernate.criterion.Restrictions; import org.openecomp.portalapp.portal.domain.BasicAuthCredentials; import org.openecomp.portalapp.portal.domain.EPEndpoint; import org.openecomp.portalapp.portal.domain.EPEndpointAccount; -import org.openecomp.portalapp.portal.domain.SharedContext; import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; import org.openecomp.portalsdk.core.service.DataAccessService; @@ -46,16 +45,20 @@ public class BasicAuthenticationCredentialServiceImpl implements BasicAuthentica private DataAccessService dataAccessService; @Override - public BasicAuthCredentials getBasicAuthCredentialByAppName(String appName) { - + public BasicAuthCredentials getBasicAuthCredentialByUsernameAndPassword(String username, String password) { + List restrictionsList = new ArrayList(); - Criterion contextIdCrit = Restrictions.eq("applicationName", appName); - restrictionsList.add(contextIdCrit); + Criterion contextUserNameCrit = Restrictions.eq("username", username); + restrictionsList.add(contextUserNameCrit); + Criterion contextPasswordCrit = Restrictions.eq("password", password); + restrictionsList.add(contextPasswordCrit); + @SuppressWarnings("unchecked") - List credList = (List) dataAccessService.getList(BasicAuthCredentials.class, null, restrictionsList, null); + List credList = (List) dataAccessService + .getList(BasicAuthCredentials.class, null, restrictionsList, null); if (credList == null || credList.size() == 0) { logger.error(EELFLoggerDelegate.errorLogger, - "getBasicAuthCredentialByAppName: no credential(s) for " + appName); + "getBasicAuthCredentialByAppName: no credential(s) for " + username); return null; } logger.debug(EELFLoggerDelegate.debugLogger, @@ -64,15 +67,16 @@ public class BasicAuthenticationCredentialServiceImpl implements BasicAuthentica cred.setEndpoints(getEndpointsByAccountId(cred.getId())); return cred; } - - private List getEndpointsByAccountId(long id){ - + + private List getEndpointsByAccountId(long id) { List list = new ArrayList<>(); List restrictionsList = new ArrayList(); Criterion contextIdCrit = Restrictions.eq("account_id", id); restrictionsList.add(contextIdCrit); - List epList = (List) dataAccessService.getList(EPEndpointAccount.class, null, restrictionsList, null); - for(EPEndpointAccount ep: epList){ + @SuppressWarnings("unchecked") + List epList = (List) dataAccessService.getList(EPEndpointAccount.class, + null, restrictionsList, null); + for (EPEndpointAccount ep : epList) { list.add((EPEndpoint) dataAccessService.getDomainObject(EPEndpoint.class, ep.getEp_id(), null)); } return list; diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ConsulHealthService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ConsulHealthService.java index 6ceb2cac..24367e6e 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ConsulHealthService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ConsulHealthService.java @@ -1,32 +1,43 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.exceptions.NoHealthyServiceException; -import com.ecwid.consul.ConsulException; -import com.orbitz.consul.model.health.ServiceHealth; - -public interface ConsulHealthService { - public String getServiceLocation(String service) throws NoHealthyServiceException; - public List getAllHealthyNodes(String service) throws ConsulException; - public List getAllNodes(String service) throws ConsulException; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.exceptions.NoHealthyServiceException; +import com.ecwid.consul.ConsulException; +import com.orbitz.consul.model.health.ServiceHealth; + +public interface ConsulHealthService { + /** + * This method returns the location of one healthy node if found in Consul - + * If not found in / by Consul, it falls back to 'localhost' + * + * @param service + * @param fallbackPortOnLocalhost + * value provided by the calling service + * @return Service location + */ + public String getServiceLocation(String service, String fallbackPortOnLocalhost) throws NoHealthyServiceException; + + public List getAllHealthyNodes(String service) throws ConsulException; + + public List getAllNodes(String service) throws ConsulException; +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ConsulHealthServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ConsulHealthServiceImpl.java index 1d741dca..175a1c71 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ConsulHealthServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ConsulHealthServiceImpl.java @@ -1,91 +1,95 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.springframework.stereotype.Component; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.util.SystemProperties; -import com.ecwid.consul.ConsulException; -import com.orbitz.consul.Consul; -import com.orbitz.consul.HealthClient; -import com.orbitz.consul.model.health.ServiceHealth; - -@Component -public class ConsulHealthServiceImpl implements ConsulHealthService { - - private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ConsulHealthServiceImpl.class); - - @Override - public String getServiceLocation(String service){ - - List nodes = null; - - try{ - Consul consul = Consul.builder().build(); - HealthClient healthClient = consul.healthClient(); - nodes = healthClient.getHealthyServiceInstances(service).getResponse(); - } - catch(Exception e){ - //using both loggers. - logger.debug(logger.debugLogger, " problem getting nodes for service - " + service + e.getMessage() + " - Defaulting to localhost", e); - logger.error(logger.errorLogger, " problem getting nodes for service - " + service + e.getMessage() + " - Defaulting to localhost", e); - - return "localhost:" + SystemProperties.getProperty("microservices.widget.local.port"); - } - - if(nodes == null || nodes.size() == 0){ - logger.debug(logger.debugLogger, "No healthy node found in the consul cluster running service " + service + ". Defaulting to localhost"); - return "localhost:" + SystemProperties.getProperty("microservices.widget.local.port"); - } - else{ - String locationFromConsul; - ServiceHealth node = nodes.get(0); - locationFromConsul = node.getNode().getNode() + ":" + node.getService().getPort(); - logger.debug(logger.debugLogger, "Found healthy service location using consul - returning location " + locationFromConsul); - - //if locationFromConsul is null for some reason (very unlikely at this point), default to localhost - if(null == locationFromConsul || "".equals(locationFromConsul)){ - logger.debug(logger.debugLogger, "Couldn't get location from consul for service " + service + ". Defaulting to localhost"); - return "localhost:" + SystemProperties.getProperty("microservices.widget.local.port"); - } - else{ - logger.debug(logger.debugLogger, "Found service location from consul for service " + service + ". Location is " + locationFromConsul); - return locationFromConsul; - } - } - } - - @Override - public List getAllHealthyNodes(String service) throws ConsulException{ - Consul consul = Consul.builder().build(); - HealthClient healthClient = consul.healthClient(); - return healthClient.getHealthyServiceInstances(service).getResponse(); - } - - @Override - public List getAllNodes(String service){ - Consul consul = Consul.builder().build(); - HealthClient healthClient = consul.healthClient(); - return healthClient.getAllServiceInstances(service).getResponse(); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.springframework.stereotype.Component; + +import com.ecwid.consul.ConsulException; +import com.orbitz.consul.Consul; +import com.orbitz.consul.HealthClient; +import com.orbitz.consul.model.health.ServiceHealth; + +@Component +public class ConsulHealthServiceImpl implements ConsulHealthService { + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ConsulHealthServiceImpl.class); + + @Override + public String getServiceLocation(String service, String fallbackPortOnLocalHost) { + + List nodes = null; + + try { + Consul consul = Consul.builder().build(); + HealthClient healthClient = consul.healthClient(); + nodes = healthClient.getHealthyServiceInstances(service).getResponse(); + } catch (Exception e) { + String localFallbackServiceLocation = "localhost:" + fallbackPortOnLocalHost; + logger.debug(EELFLoggerDelegate.debugLogger, + " problem getting nodes for service {1}. Defaulting to {2}. Exception: {3}", service, + localFallbackServiceLocation, e.getMessage()); + logger.error(EELFLoggerDelegate.errorLogger, + " problem getting nodes for service {1}. Defaulting to {2}. Exception: {3}", service, + localFallbackServiceLocation, e); + return localFallbackServiceLocation; + } + + if (nodes == null || nodes.size() == 0) { + logger.debug(EELFLoggerDelegate.debugLogger, "No healthy node found in the consul cluster running service " + service + + ". Defaulting to localhost"); + return "localhost:" + fallbackPortOnLocalHost; + } else { + String locationFromConsul; + ServiceHealth node = nodes.get(0); + locationFromConsul = node.getNode().getNode() + ":" + node.getService().getPort(); + logger.debug(EELFLoggerDelegate.debugLogger, + "Found healthy service location using consul - returning location " + locationFromConsul); + + // if locationFromConsul is null for some reason (very unlikely at + // this point), default to localhost + if (null == locationFromConsul || "".equals(locationFromConsul)) { + logger.debug(EELFLoggerDelegate.debugLogger, + "Couldn't get location from consul for service " + service + ". Defaulting to localhost"); + return "localhost:" + fallbackPortOnLocalHost; + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "Found service location from consul for service " + service + + ". Location is " + locationFromConsul); + return locationFromConsul; + } + } + } + + @Override + public List getAllHealthyNodes(String service) throws ConsulException { + Consul consul = Consul.builder().build(); + HealthClient healthClient = consul.healthClient(); + return healthClient.getHealthyServiceInstances(service).getResponse(); + } + + @Override + public List getAllNodes(String service) { + Consul consul = Consul.builder().build(); + HealthClient healthClient = consul.healthClient(); + return healthClient.getAllServiceInstances(service).getResponse(); + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/DashboardSearchService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/DashboardSearchService.java index 177f0e6a..538678b0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/DashboardSearchService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/DashboardSearchService.java @@ -1,37 +1,37 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; -import java.util.Map; - -import org.openecomp.portalapp.portal.transport.CommonWidget; -import org.openecomp.portalapp.portal.transport.CommonWidgetMeta; -import org.openecomp.portalapp.portal.ecomp.model.SearchResultItem; - -public interface DashboardSearchService { - public Map> searchResults(String userId, String searchString); - public List getRelatedUsers(String userId); - - public CommonWidgetMeta getWidgetData(String resourceType); - public String saveWidgetDataBulk(CommonWidgetMeta commonWidgetMetaData); - public String saveWidgetData(CommonWidget commonWidgetData); - public String deleteWidgetData(CommonWidget eventWidget); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; +import java.util.Map; + +import org.openecomp.portalapp.portal.transport.CommonWidget; +import org.openecomp.portalapp.portal.transport.CommonWidgetMeta; +import org.openecomp.portalapp.portal.ecomp.model.SearchResultItem; + +public interface DashboardSearchService { + public Map> searchResults(String userId, String searchString); + public List getRelatedUsers(String userId); + + public CommonWidgetMeta getWidgetData(String resourceType); + public String saveWidgetDataBulk(CommonWidgetMeta commonWidgetMetaData); + public String saveWidgetData(CommonWidget commonWidgetData); + public String deleteWidgetData(CommonWidget eventWidget); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/DashboardSearchServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/DashboardSearchServiceImpl.java index 412d833d..336a7522 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/DashboardSearchServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/DashboardSearchServiceImpl.java @@ -1,100 +1,100 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Component; - -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalapp.portal.transport.CommonWidget; -import org.openecomp.portalapp.portal.transport.CommonWidgetMeta; -import org.openecomp.portalapp.portal.ecomp.model.SearchResultItem; - -@Component -public class DashboardSearchServiceImpl implements DashboardSearchService { - - @Autowired - private DataAccessService dataAccessService; - - public Map> searchResults(String userId, String searchString) { - Map params = new HashMap<>(); - params.put("userId", userId); - params.put("searchQuery", searchString); - // Named query is stored in a *.hbm.xml file, mapped to SearchResultItem - @SuppressWarnings("unchecked") - List list = dataAccessService.executeNamedQuery("searchPortal", params, null); - Map> finalJson = null; - if (list.size() > 0) { - finalJson = new HashMap>(); - for (SearchResultItem thisResult : list) { - List thisList = finalJson.get(thisResult.getCategory().toLowerCase()); - if (thisList == null) - thisList = new ArrayList(); - thisList.add(thisResult); - finalJson.put(thisResult.getCategory().toLowerCase(), thisList); - } - } - return finalJson; - } - - @Override - public List getRelatedUsers(String userId) { - Map params = new HashMap<>(); - params.put("userId", userId); - @SuppressWarnings("unchecked") - List activeUsers = dataAccessService.executeNamedQuery("relatedUsers", params, null); - return activeUsers; - } - - @Override - public CommonWidgetMeta getWidgetData(String resourceType) { - Map params = new HashMap<>(); - params.put("cat", resourceType); - @SuppressWarnings("unchecked") - List widgetItems = (List) dataAccessService.executeNamedQuery("getCommonWidgetItem", params, null); - return new CommonWidgetMeta(resourceType, widgetItems); - } - - @Override - public String saveWidgetDataBulk(CommonWidgetMeta commonMetaWidgetData) { - for (CommonWidget widgetData : commonMetaWidgetData.getItems()) { - widgetData.setCategory(commonMetaWidgetData.getCategory()); - dataAccessService.saveDomainObject(widgetData, null); - } - return "success"; - } - - @Override - public String saveWidgetData(CommonWidget commonWidgetData) { - dataAccessService.saveDomainObject(commonWidgetData, null); - return "success"; - } - - @Override - public String deleteWidgetData(CommonWidget eventWidget) { - dataAccessService.deleteDomainObject(eventWidget, null); - return "success"; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalapp.portal.transport.CommonWidget; +import org.openecomp.portalapp.portal.transport.CommonWidgetMeta; +import org.openecomp.portalapp.portal.ecomp.model.SearchResultItem; + +@Component +public class DashboardSearchServiceImpl implements DashboardSearchService { + + @Autowired + private DataAccessService dataAccessService; + + public Map> searchResults(String userId, String searchString) { + Map params = new HashMap<>(); + params.put("userId", userId); + params.put("searchQuery", searchString); + // Named query is stored in a *.hbm.xml file, mapped to SearchResultItem + @SuppressWarnings("unchecked") + List list = dataAccessService.executeNamedQuery("searchPortal", params, null); + Map> finalJson = null; + if (list.size() > 0) { + finalJson = new HashMap>(); + for (SearchResultItem thisResult : list) { + List thisList = finalJson.get(thisResult.getCategory().toLowerCase()); + if (thisList == null) + thisList = new ArrayList(); + thisList.add(thisResult); + finalJson.put(thisResult.getCategory().toLowerCase(), thisList); + } + } + return finalJson; + } + + @Override + public List getRelatedUsers(String userId) { + Map params = new HashMap<>(); + params.put("userId", userId); + @SuppressWarnings("unchecked") + List activeUsers = dataAccessService.executeNamedQuery("relatedUsers", params, null); + return activeUsers; + } + + @Override + public CommonWidgetMeta getWidgetData(String resourceType) { + Map params = new HashMap<>(); + params.put("cat", resourceType); + @SuppressWarnings("unchecked") + List widgetItems = (List) dataAccessService.executeNamedQuery("getCommonWidgetItem", params, null); + return new CommonWidgetMeta(resourceType, widgetItems); + } + + @Override + public String saveWidgetDataBulk(CommonWidgetMeta commonMetaWidgetData) { + for (CommonWidget widgetData : commonMetaWidgetData.getItems()) { + widgetData.setCategory(commonMetaWidgetData.getCategory()); + dataAccessService.saveDomainObject(widgetData, null); + } + return "success"; + } + + @Override + public String saveWidgetData(CommonWidget commonWidgetData) { + dataAccessService.saveDomainObject(commonWidgetData, null); + return "success"; + } + + @Override + public String deleteWidgetData(CommonWidget eventWidget) { + dataAccessService.deleteDomainObject(eventWidget, null); + return "success"; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAppCommonServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAppCommonServiceImpl.java index a5b15e24..4ef6e891 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAppCommonServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAppCommonServiceImpl.java @@ -1,1368 +1,1421 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.io.IOException; -import java.util.ArrayList; -import java.util.Base64; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; - -import javax.annotation.PostConstruct; -import javax.servlet.http.HttpServletResponse; - -import org.apache.commons.lang.StringUtils; -import org.hibernate.Query; -import org.hibernate.Session; -import org.hibernate.SessionFactory; -import org.hibernate.Transaction; -import org.openecomp.portalapp.portal.domain.AdminUserApp; -import org.openecomp.portalapp.portal.domain.AdminUserApplications; -import org.openecomp.portalapp.portal.domain.AppIdAndNameTransportModel; -import org.openecomp.portalapp.portal.domain.AppsResponse; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EPUserAppsManualSortPreference; -import org.openecomp.portalapp.portal.domain.EPUserAppsSortPreference; -import org.openecomp.portalapp.portal.domain.EPWidgetsManualSortPreference; -import org.openecomp.portalapp.portal.domain.EcompApp; -import org.openecomp.portalapp.portal.domain.UserRole; -import org.openecomp.portalapp.portal.domain.UserRoles; -import org.openecomp.portalapp.portal.ecomp.model.AppCatalogItem; -import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.transport.EPAppsManualPreference; -import org.openecomp.portalapp.portal.transport.EPAppsSortPreference; -import org.openecomp.portalapp.portal.transport.EPDeleteAppsManualSortPref; -import org.openecomp.portalapp.portal.transport.EPWidgetsSortPreference; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; -import org.openecomp.portalapp.portal.transport.LocalRole; -import org.openecomp.portalapp.portal.transport.OnboardingApp; -import org.openecomp.portalapp.portal.ueb.EPUebHelper; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.onboarding.ueb.Helper; -import org.openecomp.portalsdk.core.onboarding.ueb.TopicManager; -import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; -import org.openecomp.portalsdk.core.onboarding.util.PortalApiConstants; -import org.openecomp.portalsdk.core.onboarding.util.PortalApiProperties; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.springframework.beans.factory.annotation.Autowired; - -import com.att.nsa.apiClient.http.HttpException; -import com.att.nsa.cambria.client.CambriaClient.CambriaApiException; -import com.att.nsa.cambria.client.CambriaClientBuilders; -import com.att.nsa.cambria.client.CambriaIdentityManager; -import com.google.common.primitives.Ints; - -public class EPAppCommonServiceImpl implements EPAppService { - - protected String ECOMP_APP_ID = "1"; - protected String SUPER_ADMIN_ROLE_ID = "1"; - protected String ACCOUNT_ADMIN_ROLE_ID = "999"; - protected String RESTRICTED_APP_ROLE_ID = "900"; - - private static final String urlField = "url"; - private static final String nameField = "name"; - - private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPAppCommonServiceImpl.class); - - @Autowired - AdminRolesService adminRolesService; - @Autowired - private SessionFactory sessionFactory; - @Autowired - private DataAccessService dataAccessService; - @Autowired - EPUebHelper epUebHelper; - - @PostConstruct - private void init() { - SUPER_ADMIN_ROLE_ID = SystemProperties.getProperty(EPCommonSystemProperties.SYS_ADMIN_ROLE_ID); - ACCOUNT_ADMIN_ROLE_ID = SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID); - ECOMP_APP_ID = SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID); - RESTRICTED_APP_ROLE_ID = SystemProperties.getProperty(EPCommonSystemProperties.RESTRICTED_APP_ROLE_ID); - } - - @Override - public List getUserAsAdminApps(EPUser user) { - if (adminRolesService.isAccountAdmin(user)) { - String sql = "SELECT * FROM FN_APP join FN_USER_ROLE ON FN_USER_ROLE.APP_ID=FN_APP.APP_ID where " - + "FN_USER_ROLE.USER_ID=" + user.getId() + " AND FN_USER_ROLE.ROLE_ID=" + ACCOUNT_ADMIN_ROLE_ID - + " AND FN_APP.ENABLED = 'Y'"; - logQuery(sql); - try { - @SuppressWarnings("unchecked") - List adminApps = dataAccessService.executeSQLQuery(sql, EPApp.class, null); - return adminApps; - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - return null; - } - } else { - logger.error(EELFLoggerDelegate.errorLogger, - "getUserAsAdminApps: only Account Admin may invoke this function!"); - return new ArrayList(); - } - } - - @Override - public List getUserByOrgUserIdAsAdminApps(String orgUserId) { - String format = "SELECT * FROM FN_APP app INNER JOIN FN_USER_ROLE userrole ON userrole.APP_ID=app.APP_ID " - + "INNER JOIN FN_USER user on user.USER_ID = userrole.USER_ID " - + "WHERE user.org_user_id = '%s' AND userrole.ROLE_ID=" + ACCOUNT_ADMIN_ROLE_ID - + " AND FN_APP.ENABLED = 'Y'"; - - String sql = String.format(format, orgUserId); - logQuery(sql); - - try { - @SuppressWarnings("unchecked") - List adminApps = dataAccessService.executeSQLQuery(sql, EPApp.class, null); - return adminApps; - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - return null; - } - } - - @Override - public List getAppsFullList() { - @SuppressWarnings("unchecked") - List apps = dataAccessService.getList(EPApp.class, null); - return apps; - } - - @Override - public List getEcompAppAppsFullList() { - return transformAppsToEcompApps(getAppsFullList()); - } - - @Override - public List transformAppsToEcompApps(List appsList) { - List ecompAppList = new ArrayList(); - for (EPApp app : appsList) { - EcompApp ecompApp = new EcompApp(); - ecompApp.setId(app.getId()); - ecompApp.setName(app.getName()); - ecompApp.setImageUrl(app.getImageUrl()); - ecompApp.setDescription(app.getDescription()); - ecompApp.setNotes(app.getNotes()); - ecompApp.setUrl(app.getUrl()); - ecompApp.setAlternateUrl(app.getAlternateUrl()); - ecompApp.setUebTopicName(app.getUebTopicName()); - ecompApp.setUebKey(app.getUebKey()); - ecompApp.setUebSecret(app.getUebSecret()); - ecompApp.setEnabled(app.getEnabled()); - ecompApp.setRestrictedApp(app.isRestrictedApp()); - ecompAppList.add(ecompApp); - } - return ecompAppList; - } - - @Override - public EPApp getApp(Long appId) { - try { - @SuppressWarnings("unchecked") - List apps = dataAccessService.getList(EPApp.class, " where id = " + appId, null, null); - return (apps.size() > 0) ? apps.get(0) : null; - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - return null; - } - } - - @SuppressWarnings("unchecked") - @Override - public List getAdminApps(EPUser user) { - if (adminRolesService.isAccountAdmin(user)) { - String format = "SELECT app.APP_ID, app.APP_NAME, app.APP_TYPE FROM FN_APP app inner join FN_USER_ROLE userrole ON userrole.APP_ID=app.APP_ID " - + "where userrole.USER_ID = %d AND userrole.ROLE_ID=" + ACCOUNT_ADMIN_ROLE_ID - + " AND (app.ENABLED = 'Y' OR app.APP_ID=1)"; - String sql = String.format(format, user.getId()); - // sql += " AND app.APP_REST_ENDPOINT IS NOT NULL AND - // app.APP_REST_ENDPOINT <> ''"; - logQuery(sql); - try { - return dataAccessService.executeSQLQuery(sql, AppIdAndNameTransportModel.class, null); - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while fetching the adminApps for user " + user.getLoginId(), e); - } - } - return new ArrayList(); - } - - @Override - public EPApp getAppDetail(String appName) { - final Map params = new HashMap(); - try { - params.put("appName", appName); - @SuppressWarnings("unchecked") - List apps = (List) dataAccessService.executeNamedQuery("getAppDetails", params, null); - return (apps.size() > 0) ? apps.get(0) : null; - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - return null; - } - } - - @SuppressWarnings("unchecked") - @Override - public List getAppsForSuperAdminAndAccountAdmin(EPUser user) { - if (adminRolesService.isSuperAdmin(user) || adminRolesService.isAccountAdmin(user)) { - String format = ""; - String sql = ""; - if (adminRolesService.isSuperAdmin(user)) { - format = "SELECT app.APP_ID, app.APP_NAME, app.APP_TYPE FROM FN_APP app " - + "where app.ENABLED = 'Y' AND app.app_type = 1"; - } else { - format = "SELECT app.APP_ID, app.APP_NAME, APP_TYPE FROM FN_APP app inner join FN_USER_ROLE userrole ON userrole.APP_ID=app.APP_ID " - + "where userrole.USER_ID = %d AND userrole.ROLE_ID=" + ACCOUNT_ADMIN_ROLE_ID - + " AND app.ENABLED = 'Y' AND app.app_type = 1"; - } - sql = String.format(format, user.getId()); - // sql += " AND app.APP_REST_ENDPOINT IS NOT NULL AND - // app.APP_REST_ENDPOINT <> ''"; - logQuery(sql); - try { - return dataAccessService.executeSQLQuery(sql, AppIdAndNameTransportModel.class, null); - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while fetching the adminApps for user " + user.getLoginId(), e); - } - } - return new ArrayList(); - } - - protected void logQuery(String sql) { - logger.debug(EELFLoggerDelegate.debugLogger, "logQuery: " + sql); - } - - public DataAccessService getDataAccessService() { - return dataAccessService; - } - - public void setDataAccessService(DataAccessService dataAccessService) { - this.dataAccessService = dataAccessService; - } - - @Override - public List getAppsAdmins() { - String sql = "SELECT apps.APP_NAME, apps.APP_ID, user.USER_ID, user.FIRST_NAME, user.LAST_NAME, user.org_user_id FROM fn_user_role userrole " - + "INNER JOIN fn_user user ON user.USER_ID = userrole.USER_ID " - + "INNER JOIN fn_app apps ON apps.APP_ID = userrole.APP_ID " + "WHERE userrole.ROLE_ID = " - + ACCOUNT_ADMIN_ROLE_ID + " AND (apps.ENABLED = 'Y' OR apps.APP_ID=1)"; - logQuery(sql); - try { - @SuppressWarnings("unchecked") - List adminApps = dataAccessService.executeSQLQuery(sql, AdminUserApp.class, null); - // DataAccessService does not use generic types. - return aggregateRowsResultsByUserId(adminApps); - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - return null; - } - } - - private List aggregateRowsResultsByUserId(List adminApps) { - HashMap adminUserApplications = new HashMap(); - for (AdminUserApp app : adminApps) { - Long userId = app.getUser_Id(); - if (adminUserApplications.get(userId) == null) - adminUserApplications.put(userId, new AdminUserApplications(app)); - else - adminUserApplications.get(userId).addApp(app.getAppId(), app.getAppName()); - } - return new ArrayList(adminUserApplications.values()); - } - - @Override - public List getAllApps(Boolean all) { - // If all is true, return both active and inactive apps. Otherwise, just - // active apps. - @SuppressWarnings("unchecked") - // Sort the list by application name so the drop-down looks pretty. - List apps = all - ? (List) dataAccessService.getList(EPApp.class, " where id != " + ECOMP_APP_ID, "name", null) - : (List) dataAccessService.getList(EPApp.class, - " where ( enabled = 'Y' or id = " + ECOMP_APP_ID + ")", "name", null); - - List appsModified = new ArrayList(); - for (EPApp app : apps) { - appsModified.add(new AppsResponse(app.getId(), app.getName(), app.isRestrictedApp(), app.getEnabled())); - } - return appsModified; - } - - @Override - public UserRoles getUserProfile(String loginId) { - String format = "SELECT DISTINCT user.USER_ID, role.ROLE_ID, user.org_user_id, user.FIRST_NAME, user.LAST_NAME, role.ROLE_NAME FROM fn_user_role userrole " - + "INNER JOIN fn_user user ON user.USER_ID = userrole.USER_ID " - + "INNER JOIN fn_role role ON role.ROLE_ID = userrole.ROLE_ID " - + "WHERE user.org_user_id = \"%s\" and (userrole.app_id = 1 or role.role_id = " + ACCOUNT_ADMIN_ROLE_ID - + ") "; - String sql = String.format(format, loginId); - logQuery(sql); - @SuppressWarnings("unchecked") - List userRoleList = dataAccessService.executeSQLQuery(sql, UserRole.class, null); - ArrayList usersRolesList = aggregateUserProfileRowsResultsByRole(userRoleList); - if (usersRolesList == null || usersRolesList.size() < 1) - return null; - - return usersRolesList.get(0); - } - - @Override - public UserRoles getUserProfileNormalized(EPUser user) { - // Check database. - UserRoles userAndRoles = getUserProfile(user.getLoginId()); - // If no roles are defined, treat this user as a guest. - if (user.isGuest() || userAndRoles == null) { - logger.debug(EELFLoggerDelegate.debugLogger, "getUserProfile: treating user {} as guest", - user.getLoginId()); - UserRole userRole = new UserRole(); - userRole.setUser_Id(user.getId()); - userRole.setOrgUserId(user.getLoginId()); - userRole.setFirstName(user.getFirstName()); - userRole.setLastName(user.getLastName()); - userRole.setRoleId(-1L); - userRole.setRoleName("Guest"); - userRole.setUser_Id(-1L); - userAndRoles = new UserRoles(userRole); - } - - return userAndRoles; - } - - protected ArrayList aggregateUserProfileRowsResultsByRole(List userRoleList) { - HashMap userRoles = new HashMap(); - for (UserRole user : userRoleList) { - String orgUserId = user.getOrgUserId(); - if (userRoles.get(orgUserId) == null) - userRoles.put(orgUserId, new UserRoles(user)); - else - userRoles.get(orgUserId).addRole(user.getRoleName()); - } - return new ArrayList(userRoles.values()); - } - - private boolean isRestrictedApp(Long appId) { - EPApp app = getApp(appId); - return app.isRestrictedApp(); - } - - // For the functional menu edit - @Override - public List getAppRoles(Long appId) { - String sql = ""; - if (isRestrictedApp(appId)) { - sql = "SELECT ROLE_ID, ROLE_NAME from FN_ROLE where ROLE_ID = '" + RESTRICTED_APP_ROLE_ID + "'"; - } else { - sql = "SELECT ROLE_ID, ROLE_NAME from FN_ROLE where APP_ID = '" + appId + "'"; - } - logQuery(sql); - @SuppressWarnings("unchecked") - List appRoles = dataAccessService.executeSQLQuery(sql, LocalRole.class, null); - return appRoles; - } - - protected String userAppsQuery(EPUser user) { - StringBuilder query = new StringBuilder(); - if (adminRolesService.isSuperAdmin(user)) { - query.append("SELECT * FROM FN_APP where FN_APP.ENABLED = 'Y' ORDER BY APP_NAME"); - } else { - query.append("SELECT * FROM FN_APP join FN_USER_ROLE ON FN_USER_ROLE.APP_ID = FN_APP.APP_ID where "); - query.append( - "FN_USER_ROLE.USER_ID = " + user.getId() + " AND FN_USER_ROLE.ROLE_ID != " + SUPER_ADMIN_ROLE_ID); - query.append(" AND FN_APP.ENABLED = 'Y'"); - } - return query.toString(); - } - - protected FieldsValidator onboardingAppFieldsChecker(OnboardingApp onboardingApp) { - FieldsValidator fieldsValidator = new FieldsValidator(); - if (onboardingApp.name == null || onboardingApp.name.length() == 0 || onboardingApp.url == null - || onboardingApp.url.length() == 0 || onboardingApp.restrictedApp == null - || onboardingApp.isOpen == null || onboardingApp.isEnabled == null - || (onboardingApp.id != null && onboardingApp.id.equals(ECOMP_APP_ID)) - // For a normal app (appType==1), these fields must be filled - // in. - // For a restricted app (appType==2), they will be empty. - || ((!onboardingApp.restrictedApp) - && (onboardingApp.username == null || onboardingApp.username.length() == 0 - || onboardingApp.appPassword == null || onboardingApp.appPassword.length() == 0))) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); - } - return fieldsValidator; - } - - @Override - public List getUserApps(EPUser user) { - List openApps = getOpenApps(); - - if (user.isGuest()) { - return openApps; - } else { - String sql = userAppsQuery(user); - logQuery(sql); - - // TreeSet distinctApps = new TreeSet(); - List appsList = new ArrayList<>(); - @SuppressWarnings("unchecked") - List adminApps = dataAccessService.executeSQLQuery(sql, EPApp.class, null); - HashSet appSet = new HashSet<>(); - for (EPApp app : adminApps) { - appSet.add(app); - appsList.add(app); - } - - for (EPApp app : openApps) { - if (!appSet.contains(app)) - appsList.add(app); - } - - return appsList; - } - } - - @Override - public List getPersAdminApps(EPUser user) { - final Map params = new HashMap<>(); - params.put("userId", user.getId()); - // Named query is stored in EP.hbm.xml, mapped to EPApp - @SuppressWarnings("unchecked") - List list = dataAccessService.executeNamedQuery("getPersAdminApps", params, null); - return list; - } - - @Override - public List getPersUserApps(EPUser user) { - final Map params = new HashMap<>(); - params.put("userId", user.getId()); - // Named query is stored in EP.hbm.xml, mapped to EPApp - @SuppressWarnings("unchecked") - List list = dataAccessService.executeNamedQuery("getPersUserApps", params, null); - return list; - } - - /* - * (non-Javadoc) - * - * @see - * org.openecomp.portalapp.portal.service.EPAppService#getAppCatalog(com.att - * .fusionapp.ecomp.portal.domain.EPUser) - */ - @Override - public List getUserAppCatalog(EPUser user) { - final Map params = new HashMap<>(); - params.put("userId", user.getId()); - // Named query is stored in EP.hbm.xml, mapped to AppCatalogItem - @SuppressWarnings("unchecked") - List list = dataAccessService.executeNamedQuery("getUserAppCatalog", params, null); - return list; - } - - /* - * (non-Javadoc) - * - * @see - * org.openecomp.portalapp.portal.service.EPAppService#getAdminAppCatalog( - * org.openecomp.portalapp.portal.domain.EPUser) - */ - @Override - public List getAdminAppCatalog(EPUser user) { - final Map params = new HashMap<>(); - params.put("userId", user.getId()); - // Named query is stored in EP.hbm.xml, mapped to AppCatalogItem - @SuppressWarnings("unchecked") - List list = dataAccessService.executeNamedQuery("getAdminAppCatalog", params, null); - return list; - } - - private List getOpenApps() { - @SuppressWarnings("unchecked") - List openApps = dataAccessService.getList(EPApp.class, " where open='Y' and enabled='Y'", null, null); - return openApps; - } - - @SuppressWarnings("unchecked") - @Override - public List getAppsOrderByName(EPUser user) { - final Map params = new HashMap<>(); - List sortedAppsByName = null; - try { - if (adminRolesService.isSuperAdmin(user)) { - params.put("userId", user.getId()); - sortedAppsByName = dataAccessService.executeNamedQuery("getPersAdminAppsOrderByName", params, null); - } else { - params.put("userId", user.getId()); - sortedAppsByName = dataAccessService.executeNamedQuery("getPersUserAppsOrderByName", params, null); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getAppsOrderByName failed", e); - } - return sortedAppsByName; - } - - @SuppressWarnings("unchecked") - @Override - public List getAppsOrderByLastUsed(EPUser user) { - - final Map params = new HashMap<>(); - List sortedAppsByLastUsed = new ArrayList(); - List finalsortedAppsByLastUsed = new ArrayList(); - try { - if (adminRolesService.isSuperAdmin(user)) { - params.put("userId", user.getId()); - sortedAppsByLastUsed = dataAccessService.executeNamedQuery("getAdminAppsOrderByLastUsed", params, null); - } else { - params.put("userId", user.getId()); - sortedAppsByLastUsed = dataAccessService.executeNamedQuery("getUserAppsOrderByLastUsed", params, null); - } - Set epAppSet = new HashSet(); - for (EPApp eapp : sortedAppsByLastUsed) - if (!epAppSet.contains(eapp.getName())) { - finalsortedAppsByLastUsed.add(eapp); - epAppSet.add(eapp.getName()); - } - - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getAppsOrderByLastUsed failed", e); - } - return finalsortedAppsByLastUsed; - } - - @SuppressWarnings("unchecked") - @Override - public List getAppsOrderByMostUsed(EPUser user) { - final Map params = new HashMap<>(); - List sortedAppsByMostUsed = new ArrayList(); - List finalsortedAppsByMostUsed = new ArrayList(); - try { - if (adminRolesService.isSuperAdmin(user)) { - params.put("userId", user.getId()); - sortedAppsByMostUsed = dataAccessService.executeNamedQuery("getAdminAppsOrderByMostUsed", params, null); - } else { - params.put("userId", user.getId()); - sortedAppsByMostUsed = dataAccessService.executeNamedQuery("getUserAppsOrderByMostUsed", params, null); - } - Set epAppSet = new HashSet(); - - for (EPApp eapp : sortedAppsByMostUsed) { - if (!epAppSet.contains(eapp.getName())) { - finalsortedAppsByMostUsed.add(eapp); - epAppSet.add(eapp.getName()); - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getAppsOrderByMostUsed failed", e); - } - - return finalsortedAppsByMostUsed; - } - - /* - * This Method retrieves the User Apps by Sort Manual Preference - * - * @param: user--contains LoggedIn User Data - */ - @SuppressWarnings("unchecked") - @Override - public List getAppsOrderByManual(EPUser user) { - final Map params = new HashMap<>(); - List sortedAppsByManual = new ArrayList(); - List finalsortedAppsByManual = new ArrayList(); - try { - if (adminRolesService.isSuperAdmin(user)) { - params.put("userId", user.getId()); - sortedAppsByManual = dataAccessService.executeNamedQuery("getAdminAppsOrderByManual", params, null); - } else { - params.put("userId", user.getId()); - sortedAppsByManual = dataAccessService.executeNamedQuery("getUserAppsOrderByManual", params, null); - } - Set epAppSet = new HashSet(); - - for (EPApp eapp : sortedAppsByManual) { - if (!epAppSet.contains(eapp.getName())) { - finalsortedAppsByManual.add(eapp); - epAppSet.add(eapp.getName()); - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getAppsOrderByManual failed", e); - } - return finalsortedAppsByManual; - } - - @Override - public List getOnboardingApps() { - @SuppressWarnings("unchecked") - List apps = dataAccessService.getList(EPApp.class, " where id!=" + ECOMP_APP_ID, null, null); - List onboardingAppsList = new ArrayList(); - for (EPApp app : apps) { - OnboardingApp onboardingApp = new OnboardingApp(); - createOnboardingFromApp(app, onboardingApp); - onboardingAppsList.add(onboardingApp); - } - return onboardingAppsList; - } - - @Override - public List getEnabledNonOpenOnboardingApps() { - @SuppressWarnings("unchecked") - List apps = dataAccessService.getList(EPApp.class, - " where enabled = true and open = false and id!=" + ECOMP_APP_ID, null, null); - List onboardingAppsList = new ArrayList(); - for (EPApp app : apps) { - OnboardingApp onboardingApp = new OnboardingApp(); - createOnboardingFromApp(app, onboardingApp); - onboardingAppsList.add(onboardingApp); - } - return onboardingAppsList; - } - - @SuppressWarnings("unchecked") - private void validateOnboardingApp(OnboardingApp onboardingApp, FieldsValidator fieldsValidator) { - boolean duplicatedUrl = false; - boolean duplicatedName = false; - List apps; - if (onboardingApp.id == null) { - apps = dataAccessService.getList(EPApp.class, - " where url = '" + onboardingApp.url + "' or name = '" + onboardingApp.name + "'", null, null); - } else { - apps = dataAccessService.getList(EPApp.class, " where id = " + onboardingApp.id + " or url = '" - + onboardingApp.url + "' or name = '" + onboardingApp.name + "'", null, null); - } - for (EPApp app : apps) { - if (onboardingApp.id != null && onboardingApp.id.equals(app.getId())) { - continue; - } - if (!duplicatedUrl && app.getUrl().equalsIgnoreCase(onboardingApp.url)) { - duplicatedUrl = true; - if (duplicatedName) { - break; - } - } - if (!duplicatedName && app.getName().equalsIgnoreCase(onboardingApp.name)) { - duplicatedName = true; - if (duplicatedUrl) { - break; - } - } - } - if (duplicatedUrl || duplicatedName) { - if (duplicatedUrl) { - fieldsValidator.addProblematicFieldName(urlField); - } - if (duplicatedName) { - fieldsValidator.addProblematicFieldName(nameField); - } - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); - fieldsValidator.errorCode = new Long(EPCommonSystemProperties.DUBLICATED_FIELD_VALUE_ECOMP_ERROR); - } - } - - @Override - public FieldsValidator modifyOnboardingApp(OnboardingApp modifiedOnboardingApp, EPUser user) { - logger.debug(EELFLoggerDelegate.debugLogger, "LR: entering modifyOnboardingApp"); - FieldsValidator fieldsValidator = onboardingAppFieldsChecker(modifiedOnboardingApp); - if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - validateOnboardingApp(modifiedOnboardingApp, fieldsValidator); - } - if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - if (modifiedOnboardingApp.id != null) { - updateApp(modifiedOnboardingApp.id, modifiedOnboardingApp, fieldsValidator, user); - } else { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); - } - } - return fieldsValidator; - } - - @Override - public FieldsValidator addOnboardingApp(OnboardingApp newOnboardingApp, EPUser user) { - FieldsValidator fieldsValidator = onboardingAppFieldsChecker(newOnboardingApp); - if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - validateOnboardingApp(newOnboardingApp, fieldsValidator); - } - if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - if (newOnboardingApp.id == null) { - updateApp(null, newOnboardingApp, fieldsValidator, user); - } else { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); - } - } - return fieldsValidator; - } - - @Override - public FieldsValidator deleteOnboardingApp(EPUser user, Long appid) { - FieldsValidator fieldsValidator = new FieldsValidator(); - if (!adminRolesService.isSuperAdmin(user)) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_FORBIDDEN); - return fieldsValidator; - } - Boolean result = false; - Session localSession = null; - Transaction transaction = null; - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - - // 1) Remove the URL for any functional menu item associated with - // this app - String sql = "UPDATE fn_menu_functional m, fn_menu_functional_roles mr SET m.url='' " - + " WHERE m.menu_id=mr.menu_id " + " AND mr.app_id='" + appid + "'"; - logQuery(sql); - Query query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove any favorites associated with a menu item that is - // associated with this app - sql = "Delete from fn_menu_favorites " + " using fn_menu_favorites inner join fn_menu_functional_roles " - + " where fn_menu_functional_roles.app_id='" + appid + "' " - + " AND fn_menu_functional_roles.menu_id=fn_menu_favorites.menu_id"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove all role, appid records from fn_menu_functional_role - // that are associated with this app - sql = "delete from fn_menu_functional_roles where app_id='" + appid + "'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove all records from fn_user_role associated with this app - sql = "delete from fn_user_role where app_id='" + appid + "'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove any widgets associated with this app - sql = "delete from ep_widget_catalog_role where app_id='" + appid + "'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove any roles associated with this app - sql = "delete from ep_role_notification " + " using ep_role_notification inner join fn_role " - + " where fn_role.app_id='" + appid + "' " + " and ep_role_notification.role_id= fn_role.role_id"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove all records from fn_role associated with this app - sql = "delete from fn_role where app_id='" + appid + "'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove app contact us entries - sql = "delete from fn_app_contact_us where app_id='" + appid + "'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove any widgets associated with this app - sql = "delete from fn_widget where app_id='" + appid + "'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove rows in the app personalization selection table - sql = "delete from fn_pers_user_app_sel where app_id='" + appid + "'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Remove rows in the app personalization sort table - sql = "delete from ep_pers_user_app_man_sort where app_id='" + appid + "'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Delete the app - sql = "delete from fn_app where app_id='" + appid + "'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - transaction.commit(); - result = true; - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "deleteOnboardingApp failed", e); - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError); - EcompPortalUtils.rollbackTransaction(transaction, "deleteOnboardingApp rollback, exception = " + e); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "deleteOnboardingApp"); - } - if (!result) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - return fieldsValidator; - } - - private static Object syncRests = new Object(); - - // An app has been enabled/disabled. Must enable/disable all associated - // functional menu items. - private void setFunctionalMenuItemsEnabled(Session localSession, Boolean enabled, Long appId) { - String active_yn = enabled ? "Y" : "N"; - String sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn " - + "FROM fn_menu_functional m, fn_menu_functional_roles r " + "WHERE m.menu_id = r.menu_id " - + " AND r.app_id = '" + appId + "' "; - logQuery(sql); - @SuppressWarnings("unchecked") - List menuItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); - for (FunctionalMenuItem menuItem : menuItems) { - FunctionalMenuItem myMenuItem = (FunctionalMenuItem) localSession.get(FunctionalMenuItem.class, - menuItem.menuId); - myMenuItem.active_yn = active_yn; - localSession.save(myMenuItem); - } - } - - // Attention! If (appId == null) we use this function to create application - // otherwise we use it to modify existing application - private void updateApp(Long appId, OnboardingApp onboardingApp, FieldsValidator fieldsValidator, EPUser user) { - logger.debug(EELFLoggerDelegate.debugLogger, "LR: entering updateApp"); - // Separate out the code for a restricted app, since it doesn't need any - // of the UEB code. - if (onboardingApp.restrictedApp) { - boolean result = false; - Session localSession = null; - Transaction transaction = null; - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - EPApp app; - if (appId == null) { - app = new EPApp(); - } else { - app = (EPApp) localSession.get(EPApp.class, appId); - if (app == null || app.getId() == null) { // App is already - // deleted! - transaction.commit(); - localSession.close(); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_NOT_FOUND); - return; - } - } - createAppFromOnboarding(app, onboardingApp, localSession); - localSession.saveOrUpdate(app); - // Enable or disable all menu items associated with this app - setFunctionalMenuItemsEnabled(localSession, onboardingApp.isEnabled, appId); - transaction.commit(); - result = true; - } catch (Exception e) { - EcompPortalUtils.rollbackTransaction(transaction, - "updateApp rollback, exception = " + EcompPortalUtils.getStackTrace(e)); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "updateApp"); - } - if (!result) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - - } else { - synchronized (syncRests) { - boolean result = false; - Session localSession = null; - Transaction transaction = null; - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - EPApp app; - if (appId == null) { - app = new EPApp(); - // ------------------------------------------------------------------------------------------- - // Register this App with the UEB communication server. - // Save - // the App's unique mailbox/topic - // name and keys to the FN_APP table. The App's mailbox - // and - // keys will be visible to the - // admin on the ECOMP portal. - // ------------------------------------------------------------------------------------------- - TopicManager topicManager = new TopicManager(); - final CambriaIdentityManager im = new CambriaClientBuilders.IdentityManagerBuilder() - .usingHosts(Helper.uebUrlList()).build(); - com.att.nsa.apiClient.credentials.ApiCredential credential = im.createApiKey(user.getEmail(), - "ECOMP Portal Owner"); - String appKey = credential.getApiKey(); - String appSecret = credential.getApiSecret(); - String appMailboxName = null; - - int maxNumAttemptsToCreateATopic = 3; - boolean successfullyCreatedMailbox = false; - for (int i = 0; i < maxNumAttemptsToCreateATopic; i++) { - appMailboxName = "ECOMP-PORTAL-OUTBOX-" + (int) (Math.random() * 100000.0); - - try { - topicManager.createTopic( - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), - appMailboxName, "ECOMP outbox for app" + onboardingApp.name); - successfullyCreatedMailbox = true; - logger.debug(EELFLoggerDelegate.debugLogger, - "Successfully created " + appMailboxName + " for App " + onboardingApp.name); - logger.debug(EELFLoggerDelegate.debugLogger, " Key = " + appKey + " Secret = " - + appSecret + " generated using = " + user.getEmail()); - break; - } catch (HttpException e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebConnectionError, e); - if (e.getStatusCode() == 409) { - logger.error(EELFLoggerDelegate.errorLogger, "Topic/mailbox " + appMailboxName - + " already exists. Will try using a different name", e); - } else { - logger.error(EELFLoggerDelegate.errorLogger, "HttpException when onboarding App: ", - e); - } - } - } - - if (successfullyCreatedMailbox) { - onboardingApp.setUebTopicName(appMailboxName); - onboardingApp.setUebKey(appKey); - onboardingApp.setUebSecret(appSecret); - - try { - /* - * EP is a publisher to this App's new mailbox - */ - topicManager.addPublisher( - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), - appMailboxName); - - /* - * This App is a subscriber of its own mailbox - */ - topicManager.addSubscriber( - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), appKey, - appMailboxName); - - /* - * This App is a publisher to EP - */ - topicManager.addPublisher( - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), appKey, - PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME)); - } catch (HttpException | CambriaApiException | IOException e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebRegisterOnboardingAppError, e); - logger.error(EELFLoggerDelegate.errorLogger, - "Error when configuring Publisher/Subscriber for App's new mailbox", e); - transaction.commit(); - localSession.close(); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); - return; - } - } else { - transaction.commit(); - localSession.close(); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); - return; - } - } else { - app = (EPApp) localSession.get(EPApp.class, appId); - if (app == null || app.getId() == null) { - // App is already deleted! - transaction.commit(); - localSession.close(); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_NOT_FOUND); - return; - } - } - logger.debug(EELFLoggerDelegate.debugLogger, "LR: about to call createAppFromOnboarding"); - createAppFromOnboarding(app, onboardingApp, localSession); - logger.debug(EELFLoggerDelegate.debugLogger, - "LR: updateApp: finished calling createAppFromOnboarding"); - localSession.saveOrUpdate(app); - logger.debug(EELFLoggerDelegate.debugLogger, - "LR: updateApp: finished calling localSession.saveOrUpdate"); - // Enable or disable all menu items associated with this app - setFunctionalMenuItemsEnabled(localSession, onboardingApp.isEnabled, appId); - logger.debug(EELFLoggerDelegate.debugLogger, - "LR: updateApp: finished calling setFunctionalMenuItemsEnabled"); - transaction.commit(); - logger.debug(EELFLoggerDelegate.debugLogger, "LR: updateApp: finished calling transaction.commit"); - epUebHelper.addPublisher(app); - logger.debug(EELFLoggerDelegate.debugLogger, - "LR: updateApp: finished calling epUebHelper.addPublisher"); - result = true; - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "updateApp failed", e); - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebRegisterOnboardingAppError, e); - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - EcompPortalUtils.rollbackTransaction(transaction, - "updateApp rollback, exception = " + EcompPortalUtils.getStackTrace(e)); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "updateApp"); - } - if (!result) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - } - } - } - - /** - * Populates a transport model of the application from a database row model. - * Leaves out the thumbnail because the FE fetches images via a different - * API. - * - * @param app - * Model of database row - * @param onboardingApp - * Model for transport as JSON - */ - @Override - public void createOnboardingFromApp(EPApp app, OnboardingApp onboardingApp) { - onboardingApp.id = app.getId(); - onboardingApp.name = app.getName(); - onboardingApp.imageUrl = app.getImageUrl(); - onboardingApp.description = app.getDescription(); - onboardingApp.notes = app.getNotes(); - onboardingApp.url = app.getUrl(); - onboardingApp.alternateUrl = app.getAlternateUrl(); - onboardingApp.restUrl = app.getAppRestEndpoint(); - onboardingApp.isOpen = app.getOpen(); - onboardingApp.isEnabled = app.getEnabled(); - onboardingApp.username = app.getUsername(); - onboardingApp.appPassword = decryptedPassword(app.getAppPassword(), app); - onboardingApp.uebTopicName = app.getUebTopicName(); - onboardingApp.uebKey = app.getUebKey(); - onboardingApp.uebSecret = app.getUebSecret(); - onboardingApp.setRestrictedApp(app.isRestrictedApp()); - // if (app.getThumbnail() != null) - // onboardingApp.thumbnail = new - // String(Base64.getEncoder().encode(app.getThumbnail())); - } - - /** - * Creates a database object for an application from an uploaded transport - * model. Must decode the thumbnail, if any. - * - * @param app - * @param onboardingApp - * @param localSession - * @return The first argument. - */ - protected EPApp createAppFromOnboarding(EPApp app, OnboardingApp onboardingApp, Session localSession) { - app.setName(onboardingApp.name); - app.setDescription(onboardingApp.description); - app.setNotes(onboardingApp.notes); - app.setUrl(onboardingApp.url); - app.setAlternateUrl(onboardingApp.alternateUrl); - app.setAppRestEndpoint(onboardingApp.restUrl); - app.setOpen(onboardingApp.isOpen); - app.setEnabled(onboardingApp.isEnabled); - app.setUsername(onboardingApp.username); - app.setAppPassword(this.encryptedPassword(onboardingApp.appPassword, app)); - app.setUebTopicName(onboardingApp.uebTopicName); - app.setUebKey(onboardingApp.uebKey); - app.setUebSecret(onboardingApp.uebSecret); - app.setRestrictedApp(onboardingApp.restrictedApp); - if (!StringUtils.isEmpty(onboardingApp.thumbnail)) { - logger.debug(EELFLoggerDelegate.debugLogger, "createAppFromOnboarding: onboarding thumbnail is NOT empty"); - String[] splitBase64Thumbnail = onboardingApp.thumbnail.split("base64,"); - logger.debug(EELFLoggerDelegate.debugLogger, - "createAppFromOnboarding: length of splitBase64Thumbnail: " + splitBase64Thumbnail.length); - if (splitBase64Thumbnail.length > 1) { - // This occurs when we have a new image, not an existing image - byte[] decodedImage = Base64.getDecoder().decode(splitBase64Thumbnail[1].getBytes()); - logger.debug(EELFLoggerDelegate.debugLogger, "createAppFromOnboarding: finished calling decode"); - // This is basically a boolean indicator that an image is - // present. - app.setImageUrl(constructImageName(onboardingApp)); - app.setThumbnail(decodedImage); - } - } else if (app.getThumbnail() != null) { - // The thumbnail that came in from the json is empty; the previous - // thumbnail is NOT empty. Must delete it. - logger.debug(EELFLoggerDelegate.debugLogger, - "createAppFromOnboarding: onboarding thumbnail is empty; db thumbnail is NOT null"); - app.setImageUrl(null); - app.setThumbnail(null); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, - "createAppFromOnboarding: onboarding thumbnail is empty; db thumbnail is null"); - } - return app; - } - - protected String constructImageName(OnboardingApp onboardingApp) { - return "portal_" + String.valueOf(onboardingApp.url.hashCode() + "_" + (int) (Math.random() * 100000.0)) - + ".png"; - } - - // Don't encrypt or decrypt the password if it is null or the empty string - private String decryptedPassword(String encryptedAppPwd, EPApp app) { - String result = ""; - if (encryptedAppPwd != null & encryptedAppPwd.length() > 0) { - try { - result = CipherUtil.decrypt(encryptedAppPwd, - SystemProperties.getProperty(SystemProperties.Decryption_Key)); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "decryptedPassword failed for app " + app.getName(), e); - } - } - return result; - } - - protected String encryptedPassword(String decryptedAppPwd, EPApp app) { - String result = ""; - if (decryptedAppPwd != null & decryptedAppPwd.length() > 0) { - try { - result = CipherUtil.encrypt(decryptedAppPwd, - SystemProperties.getProperty(SystemProperties.Decryption_Key)); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "encryptedPassword failed for app " + app.getName(), e); - } - } - return result; - } - - @SuppressWarnings("unchecked") - @Override - public FieldsValidator saveWidgetsSortManual(List widgetsSortManual, EPUser user) { - FieldsValidator fieldsValidator = new FieldsValidator(); - final Map params = new HashMap<>(); - List epManualWidgets = new ArrayList(); - - try { - params.put("userId", user.getId()); - epManualWidgets = dataAccessService.executeNamedQuery("userWidgetManualSortPrfQuery", params, null); - Map existingWidgetsIds = new HashMap(); - for (EPWidgetsManualSortPreference userWidgetManualPref : epManualWidgets) { - existingWidgetsIds.put(userWidgetManualPref.getWidgetId(), userWidgetManualPref); - } - for (EPWidgetsSortPreference epWidgetsManPref : widgetsSortManual) { - if (epWidgetsManPref.getWidgetid() != null) { - Long widgetid = epWidgetsManPref.getWidgetid(); - if (existingWidgetsIds.containsKey(widgetid)) { - EPWidgetsManualSortPreference epWidgetsManualSort = existingWidgetsIds.get(widgetid); - epWidgetsManualSort.setWidgetRow(epWidgetsManPref.getRow()); - epWidgetsManualSort.setWidgetCol(epWidgetsManPref.getCol()); - epWidgetsManualSort.setWidgetWidth(epWidgetsManPref.getSizeX()); - epWidgetsManualSort.setWidgetHeight(epWidgetsManPref.getSizeY()); - HashMap additionalUpdateParam = new HashMap(); - additionalUpdateParam.put("userId", epWidgetsManualSort.getUserId()); - dataAccessService.saveDomainObject(epWidgetsManualSort, additionalUpdateParam); - } else { - EPWidgetsManualSortPreference epWidgetsManualSort = new EPWidgetsManualSortPreference(); - epWidgetsManualSort.setWidgetId(epWidgetsManPref.getWidgetid()); - epWidgetsManualSort.setWidgetRow(epWidgetsManPref.getRow()); - epWidgetsManualSort.setWidgetCol(epWidgetsManPref.getCol()); - epWidgetsManualSort.setWidgetWidth(epWidgetsManPref.getSizeX()); - epWidgetsManualSort.setWidgetHeight(epWidgetsManPref.getSizeY()); - epWidgetsManualSort.setUserId(Ints.checkedCast(user.getId())); - dataAccessService.saveDomainObject(epWidgetsManualSort, null); - } - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "saveWidgetsSortManual failed", e); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - return fieldsValidator; - } - - @SuppressWarnings("unchecked") - @Override - public FieldsValidator deleteUserWidgetSortPref(List delWidgetSortPref, EPUser user) { - FieldsValidator fieldsValidator = new FieldsValidator(); - final Map params = new HashMap<>(); - List epWidgets = new ArrayList(); - try { - params.put("userId", user.getId()); - epWidgets = dataAccessService.executeNamedQuery("userWidgetManualSortPrfQuery", params, null); - Map existingWidgetIds = new HashMap(); - for (EPWidgetsManualSortPreference userWidgetSortPref : epWidgets) { - existingWidgetIds.put(userWidgetSortPref.getWidgetId(), userWidgetSortPref); - } - for (EPWidgetsSortPreference delEpWidgetsManPref : delWidgetSortPref) { - if (delEpWidgetsManPref.getWidgetid() != null) { - Long widgetId = delEpWidgetsManPref.getWidgetid(); - if (existingWidgetIds.containsKey(widgetId)) { - dataAccessService.deleteDomainObjects(EPWidgetsManualSortPreference.class, - "widget_id=" + widgetId + " AND user_id=" + user.getId(), null); - } - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "deleteUserWidgetSortPref failed", e); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - return fieldsValidator; - } - - /* - * This Method Stores the Sort Order of User Apps by Sort Manual Preference - * - * @param: appsSortManual--contains User Apps Data - * - * @param: user--contains LoggedIn User Data - */ - @SuppressWarnings("unchecked") - @Override - public FieldsValidator saveAppsSortManual(List appsSortManual, EPUser user) { - FieldsValidator fieldsValidator = new FieldsValidator(); - final Map params = new HashMap<>(); - List epManualApps = new ArrayList(); - - try { - params.put("userId", user.getId()); - epManualApps = dataAccessService.executeNamedQuery("userAppsManualSortPrfQuery", params, null); - Map existingAppIds = new HashMap(); - for (EPUserAppsManualSortPreference userAppManualPref : epManualApps) { - existingAppIds.put(userAppManualPref.getAppId(), userAppManualPref); - } - for (EPAppsManualPreference epAppsManPref : appsSortManual) { - if (epAppsManPref.getAppid() != null) { - Long appid = epAppsManPref.getAppid(); - if (existingAppIds.containsKey(appid)) { - EPUserAppsManualSortPreference epAppsManualSort = existingAppIds.get(appid); - epAppsManualSort - .setAppManualSortOrder((epAppsManPref.getCol() + (6 * epAppsManPref.getRow())) + 1); - HashMap additionalUpdateParam = new HashMap(); - additionalUpdateParam.put("userId", epAppsManualSort.getUserId()); - dataAccessService.saveDomainObject(epAppsManualSort, additionalUpdateParam); - } else { - EPUserAppsManualSortPreference epAppsManualSort = new EPUserAppsManualSortPreference(); - epAppsManualSort.setAppId(epAppsManPref.getAppid()); - epAppsManualSort - .setAppManualSortOrder((epAppsManPref.getCol() + (6 * epAppsManPref.getRow())) + 1); - epAppsManualSort.setUserId(Ints.checkedCast(user.getId())); - dataAccessService.saveDomainObject(epAppsManualSort, null); - } - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "saveAppsSortManual failed", e); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - return fieldsValidator; - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalapp.portal.service.EPAppService# - * deleteUserAppSortManual(java.lang.String, - * org.openecomp.portalapp.portal.domain.EPUser) - */ - @SuppressWarnings("unchecked") - @Override - public FieldsValidator deleteUserAppSortManual(EPDeleteAppsManualSortPref delAppSortManual, EPUser user) { - FieldsValidator fieldsValidator = new FieldsValidator(); - final Map params = new HashMap<>(); - List epManualApps = new ArrayList(); - try { - params.put("userId", user.getId()); - epManualApps = dataAccessService.executeNamedQuery("userAppsManualSortPrfQuery", params, null); - Map existingAppIds = new HashMap(); - for (EPUserAppsManualSortPreference userAppPref : epManualApps) { - existingAppIds.put(userAppPref.getAppId(), userAppPref); - } - if (existingAppIds.containsKey(delAppSortManual.getAppId()) && !delAppSortManual.isSelect()) { - dataAccessService.deleteDomainObjects(EPUserAppsManualSortPreference.class, - "app_id=" + delAppSortManual.getAppId() + " AND user_id=" + user.getId(), null); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "deleteUserAppSortManual failed", e); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - return fieldsValidator; - } - - @SuppressWarnings("unchecked") - @Override - public FieldsValidator saveAppsSortPreference(EPAppsSortPreference appsSortPreference, EPUser user) { - FieldsValidator fieldsValidator = new FieldsValidator(); - final Map params = new HashMap<>(); - List epSortTypes = new ArrayList(); - EPUserAppsSortPreference usrSortPr = null; - try { - params.put("userId", user.getId()); - epSortTypes = dataAccessService.executeNamedQuery("userAppsSortPreferenceQuery", params, null); - if (epSortTypes.size() == 0) { - usrSortPr = new EPUserAppsSortPreference(); - usrSortPr.setUserId(Ints.checkedCast(user.getId())); - usrSortPr.setSortPref(appsSortPreference.getValue()); - dataAccessService.saveDomainObject(usrSortPr, null); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); - } else { - usrSortPr = epSortTypes.get(0); - usrSortPr.setSortPref(appsSortPreference.getValue()); - HashMap additionalUpdateParam = new HashMap(); - additionalUpdateParam.put("userId", usrSortPr.getUserId()); - dataAccessService.saveDomainObject(usrSortPr, additionalUpdateParam); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "saveAppsSortPreference failed", e); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - return fieldsValidator; - } - - @SuppressWarnings("unchecked") - @Override - public String getUserAppsSortTypePreference(EPUser user) { - final Map params = new HashMap<>(); - List userSortPrefs = new ArrayList(); - try { - params.put("userId", user.getId()); - userSortPrefs = dataAccessService.executeNamedQuery("userAppsSortPreferenceQuery", params, null); - if (userSortPrefs.size() > 0) - return userSortPrefs.get(0).getSortPref(); - else - return null; - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getUserAppsSortTypePreference failed", e); - } - return null; - - } - - @Override - public List getUserRemoteApps(String id) { - throw new RuntimeException(" Cannot be called from parent class"); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.io.IOException; +import java.security.GeneralSecurityException; +import java.util.ArrayList; +import java.util.Base64; +import java.util.HashMap; +import java.util.HashSet; +import java.util.LinkedList; +import java.util.List; +import java.util.Map; +import java.util.Set; + +import javax.annotation.PostConstruct; +import javax.servlet.http.HttpServletResponse; + +import org.apache.commons.lang.StringUtils; +import org.hibernate.Query; +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.Transaction; +import org.openecomp.portalapp.portal.domain.AdminUserApp; +import org.openecomp.portalapp.portal.domain.AdminUserApplications; +import org.openecomp.portalapp.portal.domain.AppIdAndNameTransportModel; +import org.openecomp.portalapp.portal.domain.AppsResponse; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EPUserAppsManualSortPreference; +import org.openecomp.portalapp.portal.domain.EPUserAppsSortPreference; +import org.openecomp.portalapp.portal.domain.EPWidgetsManualSortPreference; +import org.openecomp.portalapp.portal.domain.EcompApp; +import org.openecomp.portalapp.portal.domain.UserRole; +import org.openecomp.portalapp.portal.domain.UserRoles; +import org.openecomp.portalapp.portal.ecomp.model.AppCatalogItem; +import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.transport.EPAppsManualPreference; +import org.openecomp.portalapp.portal.transport.EPAppsSortPreference; +import org.openecomp.portalapp.portal.transport.EPDeleteAppsManualSortPref; +import org.openecomp.portalapp.portal.transport.EPWidgetsSortPreference; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; +import org.openecomp.portalapp.portal.transport.LocalRole; +import org.openecomp.portalapp.portal.transport.OnboardingApp; +import org.openecomp.portalapp.portal.ueb.EPUebHelper; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.onboarding.ueb.Helper; +import org.openecomp.portalsdk.core.onboarding.ueb.TopicManager; +import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; +import org.openecomp.portalsdk.core.onboarding.util.PortalApiConstants; +import org.openecomp.portalsdk.core.onboarding.util.PortalApiProperties; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; + +import com.att.nsa.apiClient.http.HttpException; +import com.att.nsa.cambria.client.CambriaClient.CambriaApiException; +import com.att.nsa.cambria.client.CambriaClientBuilders; +import com.att.nsa.cambria.client.CambriaIdentityManager; +import com.att.nsa.cambria.client.CambriaTopicManager; +import com.google.common.primitives.Ints; + +public class EPAppCommonServiceImpl implements EPAppService { + + protected String ECOMP_APP_ID = "1"; + protected String SUPER_ADMIN_ROLE_ID = "1"; + protected String ACCOUNT_ADMIN_ROLE_ID = "999"; + protected String RESTRICTED_APP_ROLE_ID = "900"; + + private static final String urlField = "url"; + private static final String nameField = "name"; + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPAppCommonServiceImpl.class); + + @Autowired + private AdminRolesService adminRolesService; + @Autowired + private SessionFactory sessionFactory; + @Autowired + private DataAccessService dataAccessService; + @Autowired + private EPUebHelper epUebHelper; + + @PostConstruct + private void init() { + SUPER_ADMIN_ROLE_ID = SystemProperties.getProperty(EPCommonSystemProperties.SYS_ADMIN_ROLE_ID); + ACCOUNT_ADMIN_ROLE_ID = SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID); + ECOMP_APP_ID = SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID); + RESTRICTED_APP_ROLE_ID = SystemProperties.getProperty(EPCommonSystemProperties.RESTRICTED_APP_ROLE_ID); + } + + @Override + public List getUserAsAdminApps(EPUser user) { + if (adminRolesService.isAccountAdmin(user)) { + String sql = "SELECT * FROM FN_APP join FN_USER_ROLE ON FN_USER_ROLE.APP_ID=FN_APP.APP_ID where " + + "FN_USER_ROLE.USER_ID=" + user.getId() + " AND FN_USER_ROLE.ROLE_ID=" + ACCOUNT_ADMIN_ROLE_ID + + " AND FN_APP.ENABLED = 'Y'"; + logQuery(sql); + try { + @SuppressWarnings("unchecked") + List adminApps = dataAccessService.executeSQLQuery(sql, EPApp.class, null); + return adminApps; + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + return null; + } + } else { + logger.error(EELFLoggerDelegate.errorLogger, + "getUserAsAdminApps: only Account Admin may invoke this function!"); + return new ArrayList(); + } + } + + @Override + public List getUserByOrgUserIdAsAdminApps(String orgUserId) { + String format = "SELECT * FROM FN_APP app INNER JOIN FN_USER_ROLE userrole ON userrole.APP_ID=app.APP_ID " + + "INNER JOIN FN_USER user on user.USER_ID = userrole.USER_ID " + + "WHERE user.org_user_id = '%s' AND userrole.ROLE_ID=" + ACCOUNT_ADMIN_ROLE_ID + + " AND FN_APP.ENABLED = 'Y'"; + + String sql = String.format(format, orgUserId); + logQuery(sql); + + try { + @SuppressWarnings("unchecked") + List adminApps = dataAccessService.executeSQLQuery(sql, EPApp.class, null); + return adminApps; + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + return null; + } + } + + @Override + public List getAppsFullList() { + @SuppressWarnings("unchecked") + List apps = dataAccessService.getList(EPApp.class, null); + return apps; + } + + @Override + public List getEcompAppAppsFullList() { + return transformAppsToEcompApps(getAppsFullList()); + } + + @Override + public List transformAppsToEcompApps(List appsList) { + List ecompAppList = new ArrayList(); + for (EPApp app : appsList) { + EcompApp ecompApp = new EcompApp(); + ecompApp.setId(app.getId()); + ecompApp.setName(app.getName()); + ecompApp.setImageUrl(app.getImageUrl()); + ecompApp.setDescription(app.getDescription()); + ecompApp.setNotes(app.getNotes()); + ecompApp.setUrl(app.getUrl()); + ecompApp.setAlternateUrl(app.getAlternateUrl()); + ecompApp.setUebTopicName(app.getUebTopicName()); + ecompApp.setUebKey(app.getUebKey()); + ecompApp.setUebSecret(app.getUebSecret()); + ecompApp.setEnabled(app.getEnabled()); + ecompApp.setRestrictedApp(app.isRestrictedApp()); + ecompAppList.add(ecompApp); + } + return ecompAppList; + } + + @Override + public EPApp getApp(Long appId) { + try { + @SuppressWarnings("unchecked") + List apps = dataAccessService.getList(EPApp.class, " where id = " + appId, null, null); + return (apps.size() > 0) ? apps.get(0) : null; + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + return null; + } + } + + @SuppressWarnings("unchecked") + @Override + public List getAdminApps(EPUser user) { + if (adminRolesService.isAccountAdmin(user)) { + String format = "SELECT app.APP_ID, app.APP_NAME, app.APP_TYPE FROM FN_APP app inner join FN_USER_ROLE userrole ON userrole.APP_ID=app.APP_ID " + + "where userrole.USER_ID = %d AND userrole.ROLE_ID=" + ACCOUNT_ADMIN_ROLE_ID + + " AND (app.ENABLED = 'Y' OR app.APP_ID=1)"; + String sql = String.format(format, user.getId()); + // sql += " AND app.APP_REST_ENDPOINT IS NOT NULL AND + // app.APP_REST_ENDPOINT <> ''"; + logQuery(sql); + try { + return dataAccessService.executeSQLQuery(sql, AppIdAndNameTransportModel.class, null); + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while fetching the adminApps for user " + user.getLoginId(), e); + } + } + return new ArrayList(); + } + + @Override + public EPApp getAppDetail(String appName) { + final Map params = new HashMap(); + try { + params.put("appName", appName); + @SuppressWarnings("unchecked") + List apps = (List) dataAccessService.executeNamedQuery("getMyloginAppDetails", params, null); + return (apps.size() > 0) ? apps.get(0) : null; + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + return null; + } + } + + @SuppressWarnings("unchecked") + @Override + public List getAppsForSuperAdminAndAccountAdmin(EPUser user) { + if (adminRolesService.isSuperAdmin(user) || adminRolesService.isAccountAdmin(user)) { + String format = ""; + String sql = ""; + if (adminRolesService.isSuperAdmin(user)) { + format = "SELECT app.APP_ID, app.APP_NAME, app.APP_TYPE FROM FN_APP app " + + "where app.ENABLED = 'Y' AND app.app_type = 1"; + } else { + format = "SELECT app.APP_ID, app.APP_NAME, APP_TYPE FROM FN_APP app inner join FN_USER_ROLE userrole ON userrole.APP_ID=app.APP_ID " + + "where userrole.USER_ID = %d AND userrole.ROLE_ID=" + ACCOUNT_ADMIN_ROLE_ID + + " AND app.ENABLED = 'Y' AND app.app_type = 1"; + } + sql = String.format(format, user.getId()); + // sql += " AND app.APP_REST_ENDPOINT IS NOT NULL AND + // app.APP_REST_ENDPOINT <> ''"; + logQuery(sql); + try { + return dataAccessService.executeSQLQuery(sql, AppIdAndNameTransportModel.class, null); + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while fetching the adminApps for user " + user.getLoginId(), e); + } + } + return new ArrayList(); + } + + protected void logQuery(String sql) { + logger.debug(EELFLoggerDelegate.debugLogger, "logQuery: " + sql); + } + + public DataAccessService getDataAccessService() { + return dataAccessService; + } + + public void setDataAccessService(DataAccessService dataAccessService) { + this.dataAccessService = dataAccessService; + } + + @SuppressWarnings("unchecked") + @Override + public List getAppsAdmins() { + try { + Map params = new HashMap<>(); + params.put("accountAdminRoleId", ACCOUNT_ADMIN_ROLE_ID); + List adminApps = (List) dataAccessService.executeNamedQuery("getAppsAdmins", + params, null); + return aggregateRowsResultsByUserId(adminApps); + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + return null; + } + } + + private List aggregateRowsResultsByUserId(List adminApps) { + HashMap adminUserApplications = new HashMap(); + for (AdminUserApp app : adminApps) { + Long userId = app.getUser_Id(); + if (adminUserApplications.get(userId) == null) + adminUserApplications.put(userId, new AdminUserApplications(app)); + else + adminUserApplications.get(userId).addApp(app.getAppId(), app.getAppName()); + } + return new ArrayList(adminUserApplications.values()); + } + + @Override + public List getAllApps(Boolean all) { + // If all is true, return both active and inactive apps. Otherwise, just + // active apps. + @SuppressWarnings("unchecked") + // Sort the list by application name so the drop-down looks pretty. + List apps = all + ? (List) dataAccessService.getList(EPApp.class, " where id != " + ECOMP_APP_ID, "name", null) + : (List) dataAccessService.getList(EPApp.class, + " where ( enabled = 'Y' or id = " + ECOMP_APP_ID + ")", "name", null); + + List appsModified = new ArrayList(); + for (EPApp app : apps) { + appsModified.add(new AppsResponse(app.getId(), app.getName(), app.isRestrictedApp(), app.getEnabled())); + } + return appsModified; + } + + @Override + public UserRoles getUserProfile(String loginId) { + String format = "SELECT DISTINCT user.USER_ID, role.ROLE_ID, user.org_user_id, user.FIRST_NAME, user.LAST_NAME, role.ROLE_NAME FROM fn_user_role userrole " + + "INNER JOIN fn_user user ON user.USER_ID = userrole.USER_ID " + + "INNER JOIN fn_role role ON role.ROLE_ID = userrole.ROLE_ID " + + "WHERE user.org_user_id = \"%s\" and (userrole.app_id = 1 or role.role_id = " + ACCOUNT_ADMIN_ROLE_ID + + ") "; + String sql = String.format(format, loginId); + logQuery(sql); + @SuppressWarnings("unchecked") + List userRoleList = dataAccessService.executeSQLQuery(sql, UserRole.class, null); + ArrayList usersRolesList = aggregateUserProfileRowsResultsByRole(userRoleList); + if (usersRolesList == null || usersRolesList.size() < 1) + return null; + + return usersRolesList.get(0); + } + + @Override + public UserRoles getUserProfileNormalized(EPUser user) { + // Check database. + UserRoles userAndRoles = getUserProfile(user.getLoginId()); + // If no roles are defined, treat this user as a guest. + if (user.isGuest() || userAndRoles == null) { + logger.debug(EELFLoggerDelegate.debugLogger, "getUserProfile: treating user {} as guest", + user.getLoginId()); + UserRole userRole = new UserRole(); + userRole.setUser_Id(user.getId()); + userRole.setOrgUserId(user.getLoginId()); + userRole.setFirstName(user.getFirstName()); + userRole.setLastName(user.getLastName()); + userRole.setRoleId(-1L); + userRole.setRoleName("Guest"); + userRole.setUser_Id(-1L); + userAndRoles = new UserRoles(userRole); + } + + return userAndRoles; + } + + protected ArrayList aggregateUserProfileRowsResultsByRole(List userRoleList) { + HashMap userRoles = new HashMap(); + for (UserRole user : userRoleList) { + String orgUserId = user.getOrgUserId(); + if (userRoles.get(orgUserId) == null) + userRoles.put(orgUserId, new UserRoles(user)); + else + userRoles.get(orgUserId).addRole(user.getRoleName()); + } + return new ArrayList(userRoles.values()); + } + + private boolean isRestrictedApp(Long appId) { + EPApp app = getApp(appId); + return app.isRestrictedApp(); + } + + // For the functional menu edit + @Override + public List getAppRoles(Long appId) { + String sql = ""; + if (isRestrictedApp(appId)) { + sql = "SELECT ROLE_ID, ROLE_NAME from FN_ROLE where ROLE_ID = '" + RESTRICTED_APP_ROLE_ID + "'"; + } else { + sql = "SELECT ROLE_ID, ROLE_NAME from FN_ROLE where APP_ID = '" + appId + "'"; + } + logQuery(sql); + @SuppressWarnings("unchecked") + List appRoles = dataAccessService.executeSQLQuery(sql, LocalRole.class, null); + return appRoles; + } + + protected String userAppsQuery(EPUser user) { + StringBuilder query = new StringBuilder(); + if (adminRolesService.isSuperAdmin(user)) { + query.append("SELECT * FROM FN_APP where FN_APP.ENABLED = 'Y' ORDER BY APP_NAME"); + } else { + query.append("SELECT * FROM FN_APP join FN_USER_ROLE ON FN_USER_ROLE.APP_ID = FN_APP.APP_ID where "); + query.append( + "FN_USER_ROLE.USER_ID = " + user.getId() + " AND FN_USER_ROLE.ROLE_ID != " + SUPER_ADMIN_ROLE_ID); + query.append(" AND FN_APP.ENABLED = 'Y'"); + } + return query.toString(); + } + + protected FieldsValidator onboardingAppFieldsChecker(OnboardingApp onboardingApp) { + FieldsValidator fieldsValidator = new FieldsValidator(); + if (onboardingApp.name == null || onboardingApp.name.length() == 0 || onboardingApp.url == null + || onboardingApp.url.length() == 0 || onboardingApp.restrictedApp == null + || onboardingApp.isOpen == null || onboardingApp.isEnabled == null + || (onboardingApp.id != null && onboardingApp.id.equals(ECOMP_APP_ID)) + // For a normal app (appType==1), these fields must be filled + // in. + // For a restricted app (appType==2), they will be empty. + || ((!onboardingApp.restrictedApp) + && (onboardingApp.username == null || onboardingApp.username.length() == 0 + || onboardingApp.appPassword == null || onboardingApp.appPassword.length() == 0))) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); + } + return fieldsValidator; + } + + @Override + public List getUserApps(EPUser user) { + List openApps = getOpenApps(); + + if (user.isGuest()) { + return openApps; + } else { + String sql = userAppsQuery(user); + logQuery(sql); + + // TreeSet distinctApps = new TreeSet(); + List appsList = new ArrayList<>(); + @SuppressWarnings("unchecked") + List adminApps = dataAccessService.executeSQLQuery(sql, EPApp.class, null); + HashSet appSet = new HashSet<>(); + for (EPApp app : adminApps) { + appSet.add(app); + appsList.add(app); + } + + for (EPApp app : openApps) { + if (!appSet.contains(app)) + appsList.add(app); + } + + return appsList; + } + } + + @Override + public List getPersAdminApps(EPUser user) { + final Map params = new HashMap<>(); + params.put("userId", user.getId()); + // Named query is stored in EP.hbm.xml, mapped to EPApp + @SuppressWarnings("unchecked") + List list = dataAccessService.executeNamedQuery("getPersAdminApps", params, null); + return list; + } + + @Override + public List getPersUserApps(EPUser user) { + final Map params = new HashMap<>(); + params.put("userId", user.getId()); + // Named query is stored in EP.hbm.xml, mapped to EPApp + @SuppressWarnings("unchecked") + List list = dataAccessService.executeNamedQuery("getPersUserApps", params, null); + return list; + } + + /* + * (non-Javadoc) + * + * @see + * org.openecomp.portalapp.portal.service.EPAppService#getAppCatalog(com.att + * .fusionapp.ecomp.portal.domain.EPUser) + */ + @Override + public List getUserAppCatalog(EPUser user) { + final Map params = new HashMap<>(); + params.put("userId", user.getId()); + // Named query is stored in EP.hbm.xml, mapped to AppCatalogItem + @SuppressWarnings("unchecked") + List list = dataAccessService.executeNamedQuery("getUserAppCatalog", params, null); + return list; + } + + /* + * (non-Javadoc) + * + * @see + * org.openecomp.portalapp.portal.service.EPAppService#getAdminAppCatalog( + * org.openecomp.portalapp.portal.domain.EPUser) + */ + @Override + public List getAdminAppCatalog(EPUser user) { + final Map params = new HashMap<>(); + params.put("userId", user.getId()); + // Named query is stored in EP.hbm.xml, mapped to AppCatalogItem + @SuppressWarnings("unchecked") + List list = dataAccessService.executeNamedQuery("getAdminAppCatalog", params, null); + return list; + } + + private List getOpenApps() { + @SuppressWarnings("unchecked") + List openApps = dataAccessService.getList(EPApp.class, " where open='Y' and enabled='Y'", null, null); + return openApps; + } + + @SuppressWarnings("unchecked") + @Override + public List getAppsOrderByName(EPUser user) { + final Map params = new HashMap<>(); + List sortedAppsByName = null; + try { + if (adminRolesService.isSuperAdmin(user)) { + params.put("userId", user.getId()); + sortedAppsByName = dataAccessService.executeNamedQuery("getPersAdminAppsOrderByName", params, null); + } else { + params.put("userId", user.getId()); + sortedAppsByName = dataAccessService.executeNamedQuery("getPersUserAppsOrderByName", params, null); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getAppsOrderByName failed", e); + } + return sortedAppsByName; + } + + @SuppressWarnings("unchecked") + @Override + public List getAppsOrderByLastUsed(EPUser user) { + + final Map params = new HashMap<>(); + List sortedAppsByLastUsed = new ArrayList(); + List finalsortedAppsByLastUsed = new ArrayList(); + try { + if (adminRolesService.isSuperAdmin(user)) { + params.put("userId", user.getId()); + sortedAppsByLastUsed = dataAccessService.executeNamedQuery("getAdminAppsOrderByLastUsed", params, null); + } else { + params.put("userId", user.getId()); + sortedAppsByLastUsed = dataAccessService.executeNamedQuery("getUserAppsOrderByLastUsed", params, null); + } + Set epAppSet = new HashSet(); + for (EPApp eapp : sortedAppsByLastUsed) + if (!epAppSet.contains(eapp.getName())) { + finalsortedAppsByLastUsed.add(eapp); + epAppSet.add(eapp.getName()); + } + + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getAppsOrderByLastUsed failed", e); + } + return finalsortedAppsByLastUsed; + } + + @SuppressWarnings("unchecked") + @Override + public List getAppsOrderByMostUsed(EPUser user) { + final Map params = new HashMap<>(); + List sortedAppsByMostUsed = new ArrayList(); + List finalsortedAppsByMostUsed = new ArrayList(); + try { + if (adminRolesService.isSuperAdmin(user)) { + params.put("userId", user.getId()); + sortedAppsByMostUsed = dataAccessService.executeNamedQuery("getAdminAppsOrderByMostUsed", params, null); + } else { + params.put("userId", user.getId()); + sortedAppsByMostUsed = dataAccessService.executeNamedQuery("getUserAppsOrderByMostUsed", params, null); + } + Set epAppSet = new HashSet(); + + for (EPApp eapp : sortedAppsByMostUsed) { + if (!epAppSet.contains(eapp.getName())) { + finalsortedAppsByMostUsed.add(eapp); + epAppSet.add(eapp.getName()); + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getAppsOrderByMostUsed failed", e); + } + + return finalsortedAppsByMostUsed; + } + + /* + * This Method retrieves the User Apps by Sort Manual Preference + * + * @param: user--contains LoggedIn User Data + */ + @SuppressWarnings("unchecked") + @Override + public List getAppsOrderByManual(EPUser user) { + final Map params = new HashMap<>(); + List sortedAppsByManual = new ArrayList(); + List finalsortedAppsByManual = new ArrayList(); + try { + if (adminRolesService.isSuperAdmin(user)) { + params.put("userId", user.getId()); + sortedAppsByManual = dataAccessService.executeNamedQuery("getAdminAppsOrderByManual", params, null); + } else { + params.put("userId", user.getId()); + sortedAppsByManual = dataAccessService.executeNamedQuery("getUserAppsOrderByManual", params, null); + } + Set epAppSet = new HashSet(); + + for (EPApp eapp : sortedAppsByManual) { + if (!epAppSet.contains(eapp.getName())) { + finalsortedAppsByManual.add(eapp); + epAppSet.add(eapp.getName()); + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getAppsOrderByManual failed", e); + } + return finalsortedAppsByManual; + } + + @Override + public List getOnboardingApps() { + @SuppressWarnings("unchecked") + List apps = dataAccessService.getList(EPApp.class, " where id!=" + ECOMP_APP_ID, null, null); + List onboardingAppsList = new ArrayList(); + for (EPApp app : apps) { + OnboardingApp onboardingApp = new OnboardingApp(); + createOnboardingFromApp(app, onboardingApp); + onboardingAppsList.add(onboardingApp); + } + return onboardingAppsList; + } + + @Override + public List getEnabledNonOpenOnboardingApps() { + @SuppressWarnings("unchecked") + List apps = dataAccessService.getList(EPApp.class, + " where enabled = true and open = false and id!=" + ECOMP_APP_ID, null, null); + List onboardingAppsList = new ArrayList(); + for (EPApp app : apps) { + OnboardingApp onboardingApp = new OnboardingApp(); + createOnboardingFromApp(app, onboardingApp); + onboardingAppsList.add(onboardingApp); + } + return onboardingAppsList; + } + + @SuppressWarnings("unchecked") + private void validateOnboardingApp(OnboardingApp onboardingApp, FieldsValidator fieldsValidator) { + boolean duplicatedUrl = false; + boolean duplicatedName = false; + List apps; + if (onboardingApp.id == null) { + apps = dataAccessService.getList(EPApp.class, + " where url = '" + onboardingApp.url + "' or name = '" + onboardingApp.name + "'", null, null); + } else { + apps = dataAccessService.getList(EPApp.class, " where id = " + onboardingApp.id + " or url = '" + + onboardingApp.url + "' or name = '" + onboardingApp.name + "'", null, null); + } + for (EPApp app : apps) { + if (onboardingApp.id != null && onboardingApp.id.equals(app.getId())) { + continue; + } + if (!duplicatedUrl && app.getUrl().equalsIgnoreCase(onboardingApp.url)) { + duplicatedUrl = true; + if (duplicatedName) { + break; + } + } + if (!duplicatedName && app.getName().equalsIgnoreCase(onboardingApp.name)) { + duplicatedName = true; + if (duplicatedUrl) { + break; + } + } + } + if (duplicatedUrl || duplicatedName) { + if (duplicatedUrl) { + fieldsValidator.addProblematicFieldName(urlField); + } + if (duplicatedName) { + fieldsValidator.addProblematicFieldName(nameField); + } + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); + fieldsValidator.errorCode = new Long(EPCommonSystemProperties.DUBLICATED_FIELD_VALUE_ECOMP_ERROR); + } + } + + @Override + public FieldsValidator modifyOnboardingApp(OnboardingApp modifiedOnboardingApp, EPUser user) { + logger.debug(EELFLoggerDelegate.debugLogger, "LR: entering modifyOnboardingApp"); + FieldsValidator fieldsValidator = onboardingAppFieldsChecker(modifiedOnboardingApp); + if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + validateOnboardingApp(modifiedOnboardingApp, fieldsValidator); + } + if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + if (modifiedOnboardingApp.id != null) { + updateApp(modifiedOnboardingApp.id, modifiedOnboardingApp, fieldsValidator, user); + } else { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); + } + } + return fieldsValidator; + } + + @Override + public FieldsValidator addOnboardingApp(OnboardingApp newOnboardingApp, EPUser user) { + FieldsValidator fieldsValidator = onboardingAppFieldsChecker(newOnboardingApp); + if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + validateOnboardingApp(newOnboardingApp, fieldsValidator); + } + if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + if (newOnboardingApp.id == null) { + updateApp(null, newOnboardingApp, fieldsValidator, user); + } else { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); + } + } + return fieldsValidator; + } + + @Override + public FieldsValidator deleteOnboardingApp(EPUser user, Long appid) { + FieldsValidator fieldsValidator = new FieldsValidator(); + if (!adminRolesService.isSuperAdmin(user)) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_FORBIDDEN); + return fieldsValidator; + } + Boolean result = false; + Session localSession = null; + Transaction transaction = null; + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + + // 1) Remove the URL for any functional menu item associated with + // this app + String sql = "UPDATE fn_menu_functional m, fn_menu_functional_roles mr SET m.url='' " + + " WHERE m.menu_id=mr.menu_id " + " AND mr.app_id='" + appid + "'"; + logQuery(sql); + Query query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove any favorites associated with a menu item that is + // associated with this app + sql = "Delete from fn_menu_favorites " + " using fn_menu_favorites inner join fn_menu_functional_roles " + + " where fn_menu_functional_roles.app_id='" + appid + "' " + + " AND fn_menu_functional_roles.menu_id=fn_menu_favorites.menu_id"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove all role, appid records from fn_menu_functional_role + // that are associated with this app + sql = "delete from fn_menu_functional_roles where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove all records from fn_user_role associated with this app + sql = "delete from fn_user_role where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove any widgets associated with this app + sql = "delete from ep_widget_catalog_role where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove any roles associated with this app + sql = "delete from ep_role_notification " + " using ep_role_notification inner join fn_role " + + " where fn_role.app_id='" + appid + "' " + " and ep_role_notification.role_id= fn_role.role_id"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove all records from fn_role associated with this app + sql = "delete from fn_role where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove app contact us entries + sql = "delete from fn_app_contact_us where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove rows in the app personalization selection table + sql = "delete from fn_pers_user_app_sel where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove rows in the app personalization sort table + sql = "delete from ep_pers_user_app_man_sort where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove rows in the app personalization sort table + sql = "delete from ep_user_roles_request where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Remove rows in the app personalization sort table + sql = "delete from ep_web_analytics_source where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Delete the app + sql = "delete from fn_app where app_id='" + appid + "'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + transaction.commit(); + result = true; + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "deleteOnboardingApp failed", e); + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError); + EcompPortalUtils.rollbackTransaction(transaction, "deleteOnboardingApp rollback, exception = " + e); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "deleteOnboardingApp"); + } + if (!result) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + return fieldsValidator; + } + + private static Object syncRests = new Object(); + + // An app has been enabled/disabled. Must enable/disable all associated + // functional menu items. + private void setFunctionalMenuItemsEnabled(Session localSession, Boolean enabled, Long appId) { + String active_yn = enabled ? "Y" : "N"; + String sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn " + + "FROM fn_menu_functional m, fn_menu_functional_roles r " + "WHERE m.menu_id = r.menu_id " + + " AND r.app_id = '" + appId + "' "; + logQuery(sql); + @SuppressWarnings("unchecked") + List menuItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); + for (FunctionalMenuItem menuItem : menuItems) { + FunctionalMenuItem myMenuItem = (FunctionalMenuItem) localSession.get(FunctionalMenuItem.class, + menuItem.menuId); + myMenuItem.active_yn = active_yn; + localSession.save(myMenuItem); + } + } + + // Attention! If (appId == null) we use this function to create application + // otherwise we use it to modify existing application + private void updateApp(Long appId, OnboardingApp onboardingApp, FieldsValidator fieldsValidator, EPUser user) { + logger.debug(EELFLoggerDelegate.debugLogger, "LR: entering updateApp"); + // Separate out the code for a restricted app, since it doesn't need any + // of the UEB code. + if (onboardingApp.restrictedApp) { + boolean result = false; + Session localSession = null; + Transaction transaction = null; + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + EPApp app; + if (appId == null) { + app = new EPApp(); + } else { + app = (EPApp) localSession.get(EPApp.class, appId); + if (app == null || app.getId() == null) { // App is already + // deleted! + transaction.commit(); + localSession.close(); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_NOT_FOUND); + return; + } + } + createAppFromOnboarding(app, onboardingApp, localSession); + localSession.saveOrUpdate(app); + // Enable or disable all menu items associated with this app + setFunctionalMenuItemsEnabled(localSession, onboardingApp.isEnabled, appId); + transaction.commit(); + result = true; + } catch (Exception e) { + EcompPortalUtils.rollbackTransaction(transaction, + "updateApp rollback, exception = " + EcompPortalUtils.getStackTrace(e)); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "updateApp"); + } + if (!result) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + + } else { + synchronized (syncRests) { + boolean result = false; + Session localSession = null; + Transaction transaction = null; + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + EPApp app; + if (appId == null) { + app = new EPApp(); + // ------------------------------------------------------------------------------------------- + // Register this App with the UEB communication server. + // Save + // the App's unique mailbox/topic + // name and keys to the FN_APP table. The App's mailbox + // and + // keys will be visible to the + // admin on the ECOMP portal. + // ------------------------------------------------------------------------------------------- + TopicManager topicManager = new TopicManager() { + + EPAppCommonServiceImpl service; + + public void init(EPAppCommonServiceImpl _service) { + service = _service; + } + + public void createTopic(String key, String secret, String topicName, + String topicDescription) throws HttpException, CambriaApiException, IOException { + + init(EPAppCommonServiceImpl.this); + final LinkedList urlList = Helper.uebUrlList(); + if (logger.isInfoEnabled()) { + logger.info("==> createTopic"); + logger.info("topicName: " + topicName); + logger.info("topicDescription: " + topicDescription); + } + CambriaTopicManager tm = null; + try { + tm = service.getTopicManager(urlList, key, secret); + } catch (Exception e) { + logger.error("pub.build Exception ", e); + throw new CambriaApiException(topicName); + } + tm.createTopic(topicName, topicDescription, 1, 1); + } + + public void addPublisher(String topicOwnerKey, String topicOwnerSecret, String publisherKey, + String topicName) throws HttpException, CambriaApiException, IOException { + logger.info("==> addPublisher to topic " + topicName); + final LinkedList urlList = Helper.uebUrlList(); + CambriaTopicManager tm = null; + try { + tm = service.getTopicManager(urlList, topicOwnerKey, topicOwnerSecret); + } catch (Exception e) { + logger.error("pub.build Exception ", e); + throw new CambriaApiException(topicName); + } + tm.allowProducer(topicName, publisherKey); + } + + }; + final CambriaIdentityManager im = new CambriaClientBuilders.IdentityManagerBuilder() + .usingHosts(Helper.uebUrlList()).build(); + com.att.nsa.apiClient.credentials.ApiCredential credential = im.createApiKey(user.getEmail(), + "ECOMP Portal Owner"); + String appKey = credential.getApiKey(); + String appSecret = credential.getApiSecret(); + String appMailboxName = null; + + int maxNumAttemptsToCreateATopic = 3; + boolean successfullyCreatedMailbox = false; + for (int i = 0; i < maxNumAttemptsToCreateATopic; i++) { + appMailboxName = "ECOMP-PORTAL-OUTBOX-" + (int) (Math.random() * 100000.0); + + try { + topicManager.createTopic( + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), + appMailboxName, "ECOMP outbox for app" + onboardingApp.name); + successfullyCreatedMailbox = true; + logger.debug(EELFLoggerDelegate.debugLogger, + "Successfully created " + appMailboxName + " for App " + onboardingApp.name); + logger.debug(EELFLoggerDelegate.debugLogger, " Key = " + appKey + " Secret = " + + appSecret + " generated using = " + user.getEmail()); + break; + } catch (HttpException e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebConnectionError, e); + if (e.getStatusCode() == 409) { + logger.error(EELFLoggerDelegate.errorLogger, "Topic/mailbox " + appMailboxName + + " already exists. Will try using a different name", e); + } else { + logger.error(EELFLoggerDelegate.errorLogger, "HttpException when onboarding App: ", + e); + } + } + } + + if (successfullyCreatedMailbox) { + onboardingApp.setUebTopicName(appMailboxName); + onboardingApp.setUebKey(appKey); + onboardingApp.setUebSecret(appSecret); + + try { + /* + * EP is a publisher to this App's new mailbox + */ + topicManager.addPublisher( + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), + appMailboxName); + + /* + * This App is a subscriber of its own mailbox + */ + topicManager.addSubscriber( + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), appKey, + appMailboxName); + + /* + * This App is a publisher to EP + */ + topicManager.addPublisher( + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), appKey, + PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME)); + } catch (HttpException | CambriaApiException | IOException e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebRegisterOnboardingAppError, e); + logger.error(EELFLoggerDelegate.errorLogger, + "Error when configuring Publisher/Subscriber for App's new mailbox", e); + transaction.commit(); + localSession.close(); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); + return; + } + } else { + transaction.commit(); + localSession.close(); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); + return; + } + } else { + app = (EPApp) localSession.get(EPApp.class, appId); + if (app == null || app.getId() == null) { + // App is already deleted! + transaction.commit(); + localSession.close(); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_NOT_FOUND); + return; + } + } + logger.debug(EELFLoggerDelegate.debugLogger, "LR: about to call createAppFromOnboarding"); + createAppFromOnboarding(app, onboardingApp, localSession); + logger.debug(EELFLoggerDelegate.debugLogger, + "LR: updateApp: finished calling createAppFromOnboarding"); + localSession.saveOrUpdate(app); + logger.debug(EELFLoggerDelegate.debugLogger, + "LR: updateApp: finished calling localSession.saveOrUpdate"); + // Enable or disable all menu items associated with this app + setFunctionalMenuItemsEnabled(localSession, onboardingApp.isEnabled, appId); + logger.debug(EELFLoggerDelegate.debugLogger, + "LR: updateApp: finished calling setFunctionalMenuItemsEnabled"); + transaction.commit(); + logger.debug(EELFLoggerDelegate.debugLogger, "LR: updateApp: finished calling transaction.commit"); + epUebHelper.addPublisher(app); + logger.debug(EELFLoggerDelegate.debugLogger, + "LR: updateApp: finished calling epUebHelper.addPublisher"); + result = true; + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "updateApp failed", e); + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebRegisterOnboardingAppError, e); + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + EcompPortalUtils.rollbackTransaction(transaction, + "updateApp rollback, exception = " + EcompPortalUtils.getStackTrace(e)); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "updateApp"); + } + if (!result) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + } + } + } + + public CambriaTopicManager getTopicManager(LinkedList urlList, String key, String secret) + throws GeneralSecurityException, Exception { + throw new Exception("This method can only be invoked from child class"); + } + + /** + * Populates a transport model of the application from a database row model. + * Leaves out the thumbnail because the FE fetches images via a different + * API. + * + * @param app + * Model of database row + * @param onboardingApp + * Model for transport as JSON + */ + @Override + public void createOnboardingFromApp(EPApp app, OnboardingApp onboardingApp) { + onboardingApp.id = app.getId(); + onboardingApp.name = app.getName(); + onboardingApp.imageUrl = app.getImageUrl(); + onboardingApp.description = app.getDescription(); + onboardingApp.notes = app.getNotes(); + onboardingApp.url = app.getUrl(); + onboardingApp.alternateUrl = app.getAlternateUrl(); + onboardingApp.restUrl = app.getAppRestEndpoint(); + onboardingApp.isOpen = app.getOpen(); + onboardingApp.isEnabled = app.getEnabled(); + onboardingApp.username = app.getUsername(); + onboardingApp.appPassword = decryptedPassword(app.getAppPassword(), app); + onboardingApp.uebTopicName = app.getUebTopicName(); + onboardingApp.uebKey = app.getUebKey(); + onboardingApp.uebSecret = app.getUebSecret(); + onboardingApp.setRestrictedApp(app.isRestrictedApp()); + // if (app.getThumbnail() != null) + // onboardingApp.thumbnail = new + // String(Base64.getEncoder().encode(app.getThumbnail())); + } + + /** + * Creates a database object for an application from an uploaded transport + * model. Must decode the thumbnail, if any. + * + * @param app + * @param onboardingApp + * @param localSession + * @return The first argument. + */ + protected EPApp createAppFromOnboarding(EPApp app, OnboardingApp onboardingApp, Session localSession) { + app.setName(onboardingApp.name); + app.setDescription(onboardingApp.description); + app.setNotes(onboardingApp.notes); + app.setUrl(onboardingApp.url); + app.setAlternateUrl(onboardingApp.alternateUrl); + app.setAppRestEndpoint(onboardingApp.restUrl); + app.setOpen(onboardingApp.isOpen); + app.setEnabled(onboardingApp.isEnabled); + app.setUsername(onboardingApp.username); + app.setAppPassword(this.encryptedPassword(onboardingApp.appPassword, app)); + app.setUebTopicName(onboardingApp.uebTopicName); + app.setUebKey(onboardingApp.uebKey); + app.setUebSecret(onboardingApp.uebSecret); + app.setRestrictedApp(onboardingApp.restrictedApp); + if (!StringUtils.isEmpty(onboardingApp.thumbnail)) { + logger.debug(EELFLoggerDelegate.debugLogger, "createAppFromOnboarding: onboarding thumbnail is NOT empty"); + String[] splitBase64Thumbnail = onboardingApp.thumbnail.split("base64,"); + logger.debug(EELFLoggerDelegate.debugLogger, + "createAppFromOnboarding: length of splitBase64Thumbnail: " + splitBase64Thumbnail.length); + if (splitBase64Thumbnail.length > 1) { + // This occurs when we have a new image, not an existing image + byte[] decodedImage = Base64.getDecoder().decode(splitBase64Thumbnail[1].getBytes()); + logger.debug(EELFLoggerDelegate.debugLogger, "createAppFromOnboarding: finished calling decode"); + // This is basically a boolean indicator that an image is + // present. + app.setImageUrl(constructImageName(onboardingApp)); + app.setThumbnail(decodedImage); + } + } else if (app.getThumbnail() != null && onboardingApp.imageLink == null) { + // The thumbnail that came in from the json is empty; the previous + // thumbnail is NOT empty. Must delete it. + logger.debug(EELFLoggerDelegate.debugLogger, + "createAppFromOnboarding: onboarding thumbnail is empty; db thumbnail is NOT null"); + app.setImageUrl(null); + app.setThumbnail(null); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, + "createAppFromOnboarding: making no changes to thumbnail as imageLink is not null"); + } + return app; + } + + protected String constructImageName(OnboardingApp onboardingApp) { + return "portal_" + String.valueOf(onboardingApp.url.hashCode() + "_" + (int) (Math.random() * 100000.0)) + + ".png"; + } + + // Don't encrypt or decrypt the password if it is null or the empty string + private String decryptedPassword(String encryptedAppPwd, EPApp app) { + String result = ""; + if (encryptedAppPwd != null & encryptedAppPwd.length() > 0) { + try { + result = CipherUtil.decrypt(encryptedAppPwd, + SystemProperties.getProperty(SystemProperties.Decryption_Key)); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "decryptedPassword failed for app " + app.getName(), e); + } + } + return result; + } + + protected String encryptedPassword(String decryptedAppPwd, EPApp app) { + String result = ""; + if (decryptedAppPwd != null & decryptedAppPwd.length() > 0) { + try { + result = CipherUtil.encrypt(decryptedAppPwd, + SystemProperties.getProperty(SystemProperties.Decryption_Key)); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "encryptedPassword failed for app " + app.getName(), e); + } + } + return result; + } + + @SuppressWarnings("unchecked") + @Override + public FieldsValidator saveWidgetsSortManual(List widgetsSortManual, EPUser user) { + FieldsValidator fieldsValidator = new FieldsValidator(); + final Map params = new HashMap<>(); + List epManualWidgets = new ArrayList(); + + try { + params.put("userId", user.getId()); + epManualWidgets = dataAccessService.executeNamedQuery("userWidgetManualSortPrfQuery", params, null); + Map existingWidgetsIds = new HashMap(); + for (EPWidgetsManualSortPreference userWidgetManualPref : epManualWidgets) { + existingWidgetsIds.put(userWidgetManualPref.getWidgetId(), userWidgetManualPref); + } + for (EPWidgetsSortPreference epWidgetsManPref : widgetsSortManual) { + if (epWidgetsManPref.getWidgetid() != null) { + Long widgetid = epWidgetsManPref.getWidgetid(); + if (existingWidgetsIds.containsKey(widgetid)) { + EPWidgetsManualSortPreference epWidgetsManualSort = existingWidgetsIds.get(widgetid); + epWidgetsManualSort.setWidgetRow(epWidgetsManPref.getRow()); + epWidgetsManualSort.setWidgetCol(epWidgetsManPref.getCol()); + epWidgetsManualSort.setWidgetWidth(epWidgetsManPref.getSizeX()); + epWidgetsManualSort.setWidgetHeight(epWidgetsManPref.getSizeY()); + HashMap additionalUpdateParam = new HashMap(); + additionalUpdateParam.put("userId", epWidgetsManualSort.getUserId()); + dataAccessService.saveDomainObject(epWidgetsManualSort, additionalUpdateParam); + } else { + EPWidgetsManualSortPreference epWidgetsManualSort = new EPWidgetsManualSortPreference(); + epWidgetsManualSort.setWidgetId(epWidgetsManPref.getWidgetid()); + epWidgetsManualSort.setWidgetRow(epWidgetsManPref.getRow()); + epWidgetsManualSort.setWidgetCol(epWidgetsManPref.getCol()); + epWidgetsManualSort.setWidgetWidth(epWidgetsManPref.getSizeX()); + epWidgetsManualSort.setWidgetHeight(epWidgetsManPref.getSizeY()); + epWidgetsManualSort.setUserId(Ints.checkedCast(user.getId())); + dataAccessService.saveDomainObject(epWidgetsManualSort, null); + } + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "saveWidgetsSortManual failed", e); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + return fieldsValidator; + } + + @SuppressWarnings("unchecked") + @Override + public FieldsValidator deleteUserWidgetSortPref(List delWidgetSortPref, EPUser user) { + FieldsValidator fieldsValidator = new FieldsValidator(); + final Map params = new HashMap<>(); + List epWidgets = new ArrayList(); + try { + params.put("userId", user.getId()); + epWidgets = dataAccessService.executeNamedQuery("userWidgetManualSortPrfQuery", params, null); + Map existingWidgetIds = new HashMap(); + for (EPWidgetsManualSortPreference userWidgetSortPref : epWidgets) { + existingWidgetIds.put(userWidgetSortPref.getWidgetId(), userWidgetSortPref); + } + for (EPWidgetsSortPreference delEpWidgetsManPref : delWidgetSortPref) { + if (delEpWidgetsManPref.getWidgetid() != null) { + Long widgetId = delEpWidgetsManPref.getWidgetid(); + if (existingWidgetIds.containsKey(widgetId)) { + dataAccessService.deleteDomainObjects(EPWidgetsManualSortPreference.class, + "widget_id=" + widgetId + " AND user_id=" + user.getId(), null); + } + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "deleteUserWidgetSortPref failed", e); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + return fieldsValidator; + } + + /* + * This Method Stores the Sort Order of User Apps by Sort Manual Preference + * + * @param: appsSortManual--contains User Apps Data + * + * @param: user--contains LoggedIn User Data + */ + @SuppressWarnings("unchecked") + @Override + public FieldsValidator saveAppsSortManual(List appsSortManual, EPUser user) { + FieldsValidator fieldsValidator = new FieldsValidator(); + final Map params = new HashMap<>(); + List epManualApps = new ArrayList(); + + try { + params.put("userId", user.getId()); + epManualApps = dataAccessService.executeNamedQuery("userAppsManualSortPrfQuery", params, null); + Map existingAppIds = new HashMap(); + for (EPUserAppsManualSortPreference userAppManualPref : epManualApps) { + existingAppIds.put(userAppManualPref.getAppId(), userAppManualPref); + } + for (EPAppsManualPreference epAppsManPref : appsSortManual) { + if (epAppsManPref.getAppid() != null) { + Long appid = epAppsManPref.getAppid(); + if (existingAppIds.containsKey(appid)) { + EPUserAppsManualSortPreference epAppsManualSort = existingAppIds.get(appid); + epAppsManualSort + .setAppManualSortOrder((epAppsManPref.getCol() + (6 * epAppsManPref.getRow())) + 1); + HashMap additionalUpdateParam = new HashMap(); + additionalUpdateParam.put("userId", epAppsManualSort.getUserId()); + dataAccessService.saveDomainObject(epAppsManualSort, additionalUpdateParam); + } else { + EPUserAppsManualSortPreference epAppsManualSort = new EPUserAppsManualSortPreference(); + epAppsManualSort.setAppId(epAppsManPref.getAppid()); + epAppsManualSort + .setAppManualSortOrder((epAppsManPref.getCol() + (6 * epAppsManPref.getRow())) + 1); + epAppsManualSort.setUserId(Ints.checkedCast(user.getId())); + dataAccessService.saveDomainObject(epAppsManualSort, null); + } + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "saveAppsSortManual failed", e); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + return fieldsValidator; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.EPAppService# + * deleteUserAppSortManual(java.lang.String, + * org.openecomp.portalapp.portal.domain.EPUser) + */ + @SuppressWarnings("unchecked") + @Override + public FieldsValidator deleteUserAppSortManual(EPDeleteAppsManualSortPref delAppSortManual, EPUser user) { + FieldsValidator fieldsValidator = new FieldsValidator(); + final Map params = new HashMap<>(); + List epManualApps = new ArrayList(); + try { + params.put("userId", user.getId()); + epManualApps = dataAccessService.executeNamedQuery("userAppsManualSortPrfQuery", params, null); + Map existingAppIds = new HashMap(); + for (EPUserAppsManualSortPreference userAppPref : epManualApps) { + existingAppIds.put(userAppPref.getAppId(), userAppPref); + } + if (existingAppIds.containsKey(delAppSortManual.getAppId()) && !delAppSortManual.isSelect()) { + dataAccessService.deleteDomainObjects(EPUserAppsManualSortPreference.class, + "app_id=" + delAppSortManual.getAppId() + " AND user_id=" + user.getId(), null); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "deleteUserAppSortManual failed", e); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + return fieldsValidator; + } + + @SuppressWarnings("unchecked") + @Override + public FieldsValidator saveAppsSortPreference(EPAppsSortPreference appsSortPreference, EPUser user) { + FieldsValidator fieldsValidator = new FieldsValidator(); + final Map params = new HashMap<>(); + List epSortTypes = new ArrayList(); + EPUserAppsSortPreference usrSortPr = null; + try { + params.put("userId", user.getId()); + epSortTypes = dataAccessService.executeNamedQuery("userAppsSortPreferenceQuery", params, null); + if (epSortTypes.size() == 0) { + usrSortPr = new EPUserAppsSortPreference(); + usrSortPr.setUserId(Ints.checkedCast(user.getId())); + usrSortPr.setSortPref(appsSortPreference.getValue()); + dataAccessService.saveDomainObject(usrSortPr, null); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); + } else { + usrSortPr = epSortTypes.get(0); + usrSortPr.setSortPref(appsSortPreference.getValue()); + HashMap additionalUpdateParam = new HashMap(); + additionalUpdateParam.put("userId", usrSortPr.getUserId()); + dataAccessService.saveDomainObject(usrSortPr, additionalUpdateParam); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "saveAppsSortPreference failed", e); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + return fieldsValidator; + } + + @SuppressWarnings("unchecked") + @Override + public String getUserAppsSortTypePreference(EPUser user) { + final Map params = new HashMap<>(); + List userSortPrefs = new ArrayList(); + try { + params.put("userId", user.getId()); + userSortPrefs = dataAccessService.executeNamedQuery("userAppsSortPreferenceQuery", params, null); + if (userSortPrefs.size() > 0) + return userSortPrefs.get(0).getSortPref(); + else + return null; + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getUserAppsSortTypePreference failed", e); + } + return null; + + } + + @Override + public List getUserRemoteApps(String id) { + throw new RuntimeException(" Cannot be called from parent class"); + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAppService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAppService.java index c7bf680d..1e12dd52 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAppService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAppService.java @@ -1,213 +1,213 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.domain.AdminUserApplications; -import org.openecomp.portalapp.portal.domain.AppIdAndNameTransportModel; -import org.openecomp.portalapp.portal.domain.AppsResponse; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EcompApp; -import org.openecomp.portalapp.portal.domain.UserRoles; -import org.openecomp.portalapp.portal.ecomp.model.AppCatalogItem; -import org.openecomp.portalapp.portal.transport.EPAppsManualPreference; -import org.openecomp.portalapp.portal.transport.EPAppsSortPreference; -import org.openecomp.portalapp.portal.transport.EPDeleteAppsManualSortPref; -import org.openecomp.portalapp.portal.transport.EPWidgetsSortPreference; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.LocalRole; -import org.openecomp.portalapp.portal.transport.OnboardingApp; - -public interface EPAppService { - - /** - * Get all applications adminId is an admin - * - * @param adminId - * - the admin - * @return the admin's applications - */ - List getUserAsAdminApps(EPUser user); - - List getUserByOrgUserIdAsAdminApps(String orgUserId); - - /** - * Gets all rows and all fields from the fn_app table. - * - * @return list of EPApp objects - */ - List getAppsFullList(); - - /** - * Gets all rows and most fields from the fn_app table. - * - * @return list of EcompApp objects. - */ - List getEcompAppAppsFullList(); - - /** - * Get apps with app app admins - * - * @return List of AdminUserApplications - */ - List getAppsAdmins(); - - /** - * Get all apps from fn_app table (index, name, title only). - * - * @param all - * If all is true, returns active and inactive apps; otherwise, - * just active apps. - * @return List of AppsResponse objects. - */ - List getAllApps(Boolean all); - - UserRoles getUserProfile(String loginId); - - UserRoles getUserProfileNormalized(EPUser user); - - List getAppRoles(Long appId); - - List getAdminApps(EPUser user); - - List getAppsForSuperAdminAndAccountAdmin(EPUser user); - - /** - * Gets the applications accessible to the specified user, which includes - * all enabled open applications, plus all enabled applications for which - * the user has a defined role for that app. - * - * @param user - * EPUser object with the user's ATT UID - * @return the user's list of applications, which may be empty. - */ - List getUserApps(EPUser user); - - /** - * Gets the user-personalized list of applications for the Portal (super) - * admin, which includes enabled open applications, enabled applications for - * which the user has a defined role for that app, and/or enabled - * applications which the user has chosen to show. - * - * @param user - * EPUser object with the user's ATT UID - * @return the user's personalized list of applications, which may be empty. - */ - List getPersAdminApps(EPUser user); - - /** - * Gets the user-personalized list of accessible applications, which - * includes enabled open applications and/or enabled applications for which - * the user has a defined role for that app. Personalization means the user - * can indicate an accessible application should be excluded from this - * result. - * - * @param user - * EPUser object with the user's ATT UID - * @return the user's personalized list of applications, which may be empty. - */ - List getPersUserApps(EPUser user); - - /** - * Gets the application catalog for the specified user who is a super admin. - * This includes all enabled applications. Each item indicates whether the - * user has access (open or via a role), and whether the application is - * selected for showing in the user's home (applications) page. Admin sees - * slightly different behavior - can force an app onto the home page using - * the personalization feature (user-app-selection table). - * - * @param user - * @return list of all enabled applications, which may be empty - */ - List getAdminAppCatalog(EPUser user); - - /** - * Gets the application catalog for the specified user, who is a regular - * user. This includes all enabled applications. Each item indicates whether - * the user has access (open or via a role), and whether the application is - * selected for showing in the user's home (applications) page. - * - * @param user - * @return list of all enabled applications, which may be empty - */ - List getUserAppCatalog(EPUser user); - - List getOnboardingApps(); - - List getEnabledNonOpenOnboardingApps(); - - FieldsValidator modifyOnboardingApp(OnboardingApp modifiedOnboardingApp, EPUser user); - - FieldsValidator addOnboardingApp(OnboardingApp newOnboardingApp, EPUser user); - - /** - * Deletes the specified application from all tables where the app_id is - * used, and ultimately from the fn_app table. - * - * @param user - * Must be Portal (super) administrator - * @param onboardingAppId - * ID of application to be deleted - * @return Status code - */ - FieldsValidator deleteOnboardingApp(EPUser user, Long onboardingAppId); - - List transformAppsToEcompApps(List appsList); - - EPApp getApp(Long appId); - - EPApp getAppDetail(String appName); - - List getAppsOrderByName(EPUser user); - - FieldsValidator saveAppsSortPreference(EPAppsSortPreference appsSortPreference, EPUser user); - - FieldsValidator saveAppsSortManual(List appsSortManual, EPUser user); - - FieldsValidator saveWidgetsSortManual(List widgetsSortManual, EPUser user); - - /** - * Deletes the sort order of user apps by sort manual preference - * - * @param delAppSortManual - * User Apps Data - * @param user - * LoggedIn User Data - * @return FieldsValidator - */ - FieldsValidator deleteUserAppSortManual(EPDeleteAppsManualSortPref delAppSortManual, EPUser user); - - FieldsValidator deleteUserWidgetSortPref(List delWidgetSortPref, EPUser user); - - String getUserAppsSortTypePreference(EPUser user); - - List getAppsOrderByLastUsed(EPUser user); - - List getAppsOrderByMostUsed(EPUser user); - - List getAppsOrderByManual(EPUser user); - - List getUserRemoteApps(String id); - - void createOnboardingFromApp(EPApp app, OnboardingApp onboardingApp); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.domain.AdminUserApplications; +import org.openecomp.portalapp.portal.domain.AppIdAndNameTransportModel; +import org.openecomp.portalapp.portal.domain.AppsResponse; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EcompApp; +import org.openecomp.portalapp.portal.domain.UserRoles; +import org.openecomp.portalapp.portal.ecomp.model.AppCatalogItem; +import org.openecomp.portalapp.portal.transport.EPAppsManualPreference; +import org.openecomp.portalapp.portal.transport.EPAppsSortPreference; +import org.openecomp.portalapp.portal.transport.EPDeleteAppsManualSortPref; +import org.openecomp.portalapp.portal.transport.EPWidgetsSortPreference; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.LocalRole; +import org.openecomp.portalapp.portal.transport.OnboardingApp; + +public interface EPAppService { + + /** + * Get all applications adminId is an admin + * + * @param user + * the admin user + * @return the admin's applications + */ + List getUserAsAdminApps(EPUser user); + + List getUserByOrgUserIdAsAdminApps(String orgUserId); + + /** + * Gets all rows and all fields from the fn_app table. + * + * @return list of EPApp objects + */ + List getAppsFullList(); + + /** + * Gets all rows and most fields from the fn_app table. + * + * @return list of EcompApp objects. + */ + List getEcompAppAppsFullList(); + + /** + * Get apps with app app admins + * + * @return List of AdminUserApplications + */ + List getAppsAdmins(); + + /** + * Get all apps from fn_app table (index, name, title only). + * + * @param all + * If all is true, returns active and inactive apps; otherwise, + * just active apps. + * @return List of AppsResponse objects. + */ + List getAllApps(Boolean all); + + UserRoles getUserProfile(String loginId); + + UserRoles getUserProfileNormalized(EPUser user); + + List getAppRoles(Long appId); + + List getAdminApps(EPUser user); + + List getAppsForSuperAdminAndAccountAdmin(EPUser user); + + /** + * Gets the applications accessible to the specified user, which includes + * all enabled open applications, plus all enabled applications for which + * the user has a defined role for that app. + * + * @param user + * EPUser object with the user's ATT UID + * @return the user's list of applications, which may be empty. + */ + List getUserApps(EPUser user); + + /** + * Gets the user-personalized list of applications for the Portal (super) + * admin, which includes enabled open applications, enabled applications for + * which the user has a defined role for that app, and/or enabled + * applications which the user has chosen to show. + * + * @param user + * EPUser object with the user's ATT UID + * @return the user's personalized list of applications, which may be empty. + */ + List getPersAdminApps(EPUser user); + + /** + * Gets the user-personalized list of accessible applications, which + * includes enabled open applications and/or enabled applications for which + * the user has a defined role for that app. Personalization means the user + * can indicate an accessible application should be excluded from this + * result. + * + * @param user + * EPUser object with the user's ATT UID + * @return the user's personalized list of applications, which may be empty. + */ + List getPersUserApps(EPUser user); + + /** + * Gets the application catalog for the specified user who is a super admin. + * This includes all enabled applications. Each item indicates whether the + * user has access (open or via a role), and whether the application is + * selected for showing in the user's home (applications) page. Admin sees + * slightly different behavior - can force an app onto the home page using + * the personalization feature (user-app-selection table). + * + * @param user + * @return list of all enabled applications, which may be empty + */ + List getAdminAppCatalog(EPUser user); + + /** + * Gets the application catalog for the specified user, who is a regular + * user. This includes all enabled applications. Each item indicates whether + * the user has access (open or via a role), and whether the application is + * selected for showing in the user's home (applications) page. + * + * @param user + * @return list of all enabled applications, which may be empty + */ + List getUserAppCatalog(EPUser user); + + List getOnboardingApps(); + + List getEnabledNonOpenOnboardingApps(); + + FieldsValidator modifyOnboardingApp(OnboardingApp modifiedOnboardingApp, EPUser user); + + FieldsValidator addOnboardingApp(OnboardingApp newOnboardingApp, EPUser user); + + /** + * Deletes the specified application from all tables where the app_id is + * used, and ultimately from the fn_app table. + * + * @param user + * Must be Portal (super) administrator + * @param onboardingAppId + * ID of application to be deleted + * @return Status code + */ + FieldsValidator deleteOnboardingApp(EPUser user, Long onboardingAppId); + + List transformAppsToEcompApps(List appsList); + + EPApp getApp(Long appId); + + EPApp getAppDetail(String appName); + + List getAppsOrderByName(EPUser user); + + FieldsValidator saveAppsSortPreference(EPAppsSortPreference appsSortPreference, EPUser user); + + FieldsValidator saveAppsSortManual(List appsSortManual, EPUser user); + + FieldsValidator saveWidgetsSortManual(List widgetsSortManual, EPUser user); + + /** + * Deletes the sort order of user apps by sort manual preference + * + * @param delAppSortManual + * User Apps Data + * @param user + * LoggedIn User Data + * @return FieldsValidator + */ + FieldsValidator deleteUserAppSortManual(EPDeleteAppsManualSortPref delAppSortManual, EPUser user); + + FieldsValidator deleteUserWidgetSortPref(List delWidgetSortPref, EPUser user); + + String getUserAppsSortTypePreference(EPUser user); + + List getAppsOrderByLastUsed(EPUser user); + + List getAppsOrderByMostUsed(EPUser user); + + List getAppsOrderByManual(EPUser user); + + List getUserRemoteApps(String id); + + void createOnboardingFromApp(EPApp app, OnboardingApp onboardingApp); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAuditService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAuditService.java index a35a8ba2..ef436475 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAuditService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAuditService.java @@ -1,27 +1,27 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.Date; - -public interface EPAuditService { - public Date getGuestLastLogin(String userId); - public void delAuditLogFromDay(); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.Date; + +public interface EPAuditService { + public Date getGuestLastLogin(String userId); + public void delAuditLogFromDay(); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAuditServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAuditServiceImpl.java index 1a343866..a7b71612 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAuditServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPAuditServiceImpl.java @@ -1,96 +1,112 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.time.LocalDate; -import java.util.Date; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.domain.AuditLog; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; - -@Service("epAuditService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class EPAuditServiceImpl implements EPAuditService { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPAuditServiceImpl.class); - - @Autowired - private DataAccessService dataAccessService; - - @Override - /* get the guest last login time with orgUserId as param. - * If record not found in table, return null. - * - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.EPUserService#getGuestLastLogin(java.lang.String) - */ - public Date getGuestLastLogin(String userId) { - Map params = new HashMap<>(); - params.put("userId", userId); - List list = getDataAccessService().executeNamedQuery("getGuestLastLogin", params, null); - Date date=null; - if(list!=null){ - if(list.size()==1) /* if list only contains one item, meaning this is the first time user logs in or record not found in db*/ - date = list.get(0); /*the guest's current log in time*/ - else if(list.size()==2) - date = list.get(1); /*most recent login date from db*/ - } - return date; - } - - @Override - /* Clean all the records in fn_audit_log table that are less than defined date in system.property - * - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.EPAuditService#delAuditLogFromDay() - */ - public void delAuditLogFromDay(){ - if (EPCommonSystemProperties.containsProperty(EPCommonSystemProperties.AUDITLOG_DEL_DAY_FROM)) { - String day = EPCommonSystemProperties.getProperty(EPCommonSystemProperties.AUDITLOG_DEL_DAY_FROM); - LocalDate removeDateFrom = LocalDate.now().minusDays(Integer.valueOf(day)); - getDataAccessService().deleteDomainObjects(AuditLog.class, "audit_date <'"+removeDateFrom+"'",null); - }else{ - logger.error(EELFLoggerDelegate.errorLogger, "delAuditLogFromDay Exception = system.propertiy value is empty on" + EPCommonSystemProperties.AUDITLOG_DEL_DAY_FROM); - } - } - - public DataAccessService getDataAccessService() { - return dataAccessService; - } - - public void setDataAccessService(DataAccessService dataAccessService) { - this.dataAccessService = dataAccessService; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.time.LocalDate; +import java.util.Date; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.domain.AuditLog; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; + +@Service("epAuditService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class EPAuditServiceImpl implements EPAuditService { + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPAuditServiceImpl.class); + + @Autowired + private DataAccessService dataAccessService; + + @Override + /* + * get the guest last login time with orgUserId as param. If record not + * found in table, return null. + * + * (non-Javadoc) + * + * @see + * org.openecomp.portalapp.portal.service.EPUserService#getGuestLastLogin( + * java.lang.String) + */ + public Date getGuestLastLogin(String userId) { + Map params = new HashMap<>(); + params.put("userId", userId); + @SuppressWarnings("unchecked") + List list = getDataAccessService().executeNamedQuery("getGuestLastLogin", params, null); + Date date = null; + if (list != null) { + /* + * if list only contains one item, meaning this is the first time + * user logs in or record not found in db + */ + if (list.size() == 1) + date = list.get(0); /* the guest's current log in time */ + else if (list.size() == 2) + date = list.get(1); /* most recent login date from db */ + } + return date; + } + + /* + * Cleans all the records in fn_audit_log table that are less than defined + * date in system.property + * + * (non-Javadoc) + * + * @see + * org.openecomp.portalapp.portal.service.EPAuditService#delAuditLogFromDay( + * ) + */ + @Override + public void delAuditLogFromDay() { + if (EPCommonSystemProperties.containsProperty(EPCommonSystemProperties.AUDITLOG_DEL_DAY_FROM)) { + String day = EPCommonSystemProperties.getProperty(EPCommonSystemProperties.AUDITLOG_DEL_DAY_FROM); + LocalDate removeDateFrom = LocalDate.now().minusDays(Integer.valueOf(day)); + getDataAccessService().deleteDomainObjects(AuditLog.class, "audit_date <'" + removeDateFrom + "'", null); + } else { + logger.error(EELFLoggerDelegate.errorLogger, + "delAuditLogFromDay Exception = system.propertiy value is empty on" + + EPCommonSystemProperties.AUDITLOG_DEL_DAY_FROM); + } + } + + public DataAccessService getDataAccessService() { + return dataAccessService; + } + + public void setDataAccessService(DataAccessService dataAccessService) { + this.dataAccessService = dataAccessService; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLdapService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLdapService.java index c77684fa..4bdecc92 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLdapService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLdapService.java @@ -1,31 +1,31 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import org.openecomp.portalsdk.core.command.support.SearchResult; -import org.openecomp.portalsdk.core.domain.support.DomainVo; - - -public interface EPLdapService { - - // search POST for users based on the criteria selected in the Request - SearchResult searchPost(DomainVo searchCriteria, String sortBy1, String sortBy2, String sortBy3, int pageNo, int dataSize, int userId) throws Exception; - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import org.openecomp.portalsdk.core.command.support.SearchResult; +import org.openecomp.portalsdk.core.domain.support.DomainVo; + + +public interface EPLdapService { + + // search POST for users based on the criteria selected in the Request + SearchResult searchPost(DomainVo searchCriteria, String sortBy1, String sortBy2, String sortBy3, int pageNo, int dataSize, int userId) throws Exception; + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLdapServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLdapServiceImpl.java index dfcc0c7f..664ee1ae 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLdapServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLdapServiceImpl.java @@ -1,288 +1,288 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.ArrayList; -import java.util.Collections; -import java.util.List; - -import javax.naming.NamingEnumeration; -import javax.naming.NamingException; -import javax.naming.directory.Attribute; -import javax.naming.directory.Attributes; -import javax.naming.directory.DirContext; -import javax.naming.directory.SearchControls; - -import org.slf4j.MDC; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.command.support.SearchResult; -import org.openecomp.portalsdk.core.domain.support.DomainVo; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.support.FusionService; -import org.openecomp.portalsdk.core.service.support.ServiceLocator; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; - -@Service("epLdapService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -public class EPLdapServiceImpl extends FusionService implements EPLdapService { - @Autowired - private ServiceLocator serviceLocator; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPLdapServiceImpl.class); - - @EPAuditLog - @SuppressWarnings({ "rawtypes", "unchecked" }) - public SearchResult searchPost(DomainVo searchCriteria, String sortBy1, String sortBy2, String sortBy3, - int pageNo, int dataSize, int userId) throws Exception { - - String remoteHost = ""; - - // initialize the directory context to access POST - DirContext dirContext = serviceLocator.getDirContext(SystemProperties.getProperty(SystemProperties.POST_INITIAL_CONTEXT_FACTORY), - SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL), - SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL)); - - SearchResult searchResult = new SearchResult(); - - try { - - remoteHost = String.format("%s/%s", SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL), - SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL)); - MDC.put(EPCommonSystemProperties.FULL_URL, remoteHost); - - String[] postAttributes = {"nickname","givenName","initials","sn","employeeNumber","mail","telephoneNumber", - "departmentNumber","a1","street","roomNumber","l","st","postalCode","zip4","physicalDeliveryOfficeName","bc", - "friendlyCountryName","bd","bdname","bu","buname","jtname","mgrid","a2","compcode","compdesc", - "costcenter","silo","b2"}; - - SearchControls searchControls = new SearchControls(); - searchControls.setTimeLimit(5000); - searchControls.setReturningAttributes(postAttributes); - - StringBuffer filterClause = new StringBuffer("(&(objectClass=*)"); - - EPUser user = (EPUser)searchCriteria; - - if(Utilities.nvl(user.getFirstName()).length() > 0) { - filterClause.append("(givenName=").append(user.getFirstName()).append("*)"); - } - if(Utilities.nvl(user.getLastName()).length() > 0) { - filterClause.append("(sn=").append(user.getLastName()).append("*)"); - } - if(Utilities.nvl(user.getHrid()).length() > 0) { - filterClause.append("(employeeNumber=").append(user.getHrid()).append("*)"); - } - if(Utilities.nvl(user.getOrgManagerUserId()).length() > 0) { - filterClause.append("(mgrid=").append(user.getOrgManagerUserId()).append("*)"); - } - if(Utilities.nvl(user.getOrgCode()).length() > 0) { - filterClause.append("(departmentNumber=").append(user.getOrgCode()).append("*)"); - } - if(Utilities.nvl(user.getEmail()).length() > 0) { - filterClause.append("(mail=").append(user.getEmail()).append("*)"); - } - if(Utilities.nvl(user.getOrgUserId()).length() > 0) { - filterClause.append("(a1=").append(user.getOrgUserId()).append("*)"); - } - filterClause.append("(c3=N)"); // this has been added to filter CP09 entries on the LDAP server that are duplicates of existing individuals - filterClause.append(")"); - - List list = new ArrayList(); - if (!filterClause.toString().equals("(&(objectClass=*))")) { - NamingEnumeration e = dirContext.search(SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL) + "/" + - SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL), - filterClause.toString(), - searchControls); - list = processResults(e); - } - - Collections.sort(list); - - searchResult = new SearchResult(list); - searchResult.setPageNo(pageNo); - if(dataSize >= 0) { - searchResult.setDataSize(dataSize); - } - else { - searchResult.setDataSize(list.size()); - } - } catch(NamingException ne) { - String stackTrace = EcompPortalUtils.getStackTrace(ne); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing the LDAP search. Details: " + stackTrace); - } catch(Exception e) { - String stackTrace = EcompPortalUtils.getStackTrace(e); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing the LDAP search. Details: " + stackTrace); - } - finally { - dirContext.close(); - } - - return searchResult; - } - - - @SuppressWarnings({ "rawtypes", "unchecked" }) - @EPMetricsLog - private ArrayList processResults(NamingEnumeration e) throws NamingException { - ArrayList results = new ArrayList(); - int count = 0; - - while (e.hasMore()) { - javax.naming.directory.SearchResult searchResult = (javax.naming.directory.SearchResult)e.next(); - results.add(processAttributes(searchResult.getAttributes())); - count++; - - if(count > Integer.parseInt(SystemProperties.getProperty(SystemProperties.POST_MAX_RESULT_SIZE))) { - break; - } - } - return results; - } - - - @SuppressWarnings("rawtypes") - @EPMetricsLog - private DomainVo processAttributes(Attributes resultAttributes) throws NamingException { - EPUser user = new EPUser(); - - try { - if (resultAttributes == null) { - logger.debug(EELFLoggerDelegate.debugLogger, "This result has no attributes"); - } else { - for (NamingEnumeration e = resultAttributes.getAll(); e.hasMore();) { //why the nested loop? - Attribute attribute = (Attribute)e.next(); - for (NamingEnumeration ie = attribute.getAll(); ie.hasMore();) { - if (attribute.getID().equalsIgnoreCase("nickname")) { - user.setFirstName((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("initials")) { - user.setMiddleInitial((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("sn")) { - user.setLastName((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("employeeNumber")) { - user.setHrid((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("mail")) { - user.setEmail((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("telephoneNumber")) { - user.setPhone((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("departmentNumber")) { - user.setOrgCode((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("a1")) { - user.setOrgUserId((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("street")) { - user.setAddress1((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("roomNumber")) { - user.setAddress2((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("l")) { - user.setCity((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("st")) { - user.setState((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("postalCode")) { - user.setZipCode((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("zip4")) { - user.setZipCodeSuffix((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("physicalDeliveryOfficeName")) { - user.setLocationClli((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("bc")) { - user.setBusinessCountryCode((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("friendlyCountryName")) { - user.setBusinessCountryName((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("bd")) { - user.setDepartment((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("bdname")) { - user.setDepartmentName((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("jtname")) { - user.setJobTitle((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("mgrid")) { - user.setOrgManagerUserId((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("a2")) { - user.setCommandChain((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("compcode")) { - user.setCompanyCode((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("compdesc")) { - user.setCompany((String) ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("bu")) { - user.setBusinessUnit((String)ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("buname")) { - user.setBusinessUnitName((String)ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("silo")) { - user.setSiloStatus((String)ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("costcenter")) { - user.setCostCenter((String)ie.next()); - } - else if (attribute.getID().equalsIgnoreCase("b2")) { - user.setFinancialLocCode((String)ie.next()); - } - else { //we don't care about returned attribute, let's move on - ie.next(); - } - - } - } - } - } catch (NamingException e) { - String stackTrace = EcompPortalUtils.getStackTrace(e); - logger.error(EELFLoggerDelegate.errorLogger, "An error occurred while processing the following user from POST with an Organization User ID of " + user.getOrgUserId()); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occcurred while processing LDAP search results, Details: " + stackTrace); - } catch(Exception e) { - String stackTrace = EcompPortalUtils.getStackTrace(e); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occcurred while processing LDAP search results, Details: " + stackTrace); - } - - return user; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +import javax.naming.NamingEnumeration; +import javax.naming.NamingException; +import javax.naming.directory.Attribute; +import javax.naming.directory.Attributes; +import javax.naming.directory.DirContext; +import javax.naming.directory.SearchControls; + +import org.slf4j.MDC; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.command.support.SearchResult; +import org.openecomp.portalsdk.core.domain.support.DomainVo; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.support.FusionService; +import org.openecomp.portalsdk.core.service.support.ServiceLocator; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.aop.EPAuditLog; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; + +@Service("epLdapService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +public class EPLdapServiceImpl extends FusionService implements EPLdapService { + @Autowired + private ServiceLocator serviceLocator; + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPLdapServiceImpl.class); + + @EPAuditLog + @SuppressWarnings({ "rawtypes", "unchecked" }) + public SearchResult searchPost(DomainVo searchCriteria, String sortBy1, String sortBy2, String sortBy3, + int pageNo, int dataSize, int userId) throws Exception { + + String remoteHost = ""; + + // initialize the directory context to access POST + DirContext dirContext = serviceLocator.getDirContext(SystemProperties.getProperty(SystemProperties.POST_INITIAL_CONTEXT_FACTORY), + SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL), + SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL)); + + SearchResult searchResult = new SearchResult(); + + try { + + remoteHost = String.format("%s/%s", SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL), + SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL)); + MDC.put(EPCommonSystemProperties.FULL_URL, remoteHost); + + String[] postAttributes = {"nickname","givenName","initials","sn","employeeNumber","mail","telephoneNumber", + "departmentNumber","a1","street","roomNumber","l","st","postalCode","zip4","physicalDeliveryOfficeName","bc", + "friendlyCountryName","bd","bdname","bu","buname","jtname","mgrid","a2","compcode","compdesc", + "costcenter","silo","b2"}; + + SearchControls searchControls = new SearchControls(); + searchControls.setTimeLimit(5000); + searchControls.setReturningAttributes(postAttributes); + + StringBuffer filterClause = new StringBuffer("(&(objectClass=*)"); + + EPUser user = (EPUser)searchCriteria; + + if(Utilities.nvl(user.getFirstName()).length() > 0) { + filterClause.append("(givenName=").append(user.getFirstName()).append("*)"); + } + if(Utilities.nvl(user.getLastName()).length() > 0) { + filterClause.append("(sn=").append(user.getLastName()).append("*)"); + } + if(Utilities.nvl(user.getHrid()).length() > 0) { + filterClause.append("(employeeNumber=").append(user.getHrid()).append("*)"); + } + if(Utilities.nvl(user.getOrgManagerUserId()).length() > 0) { + filterClause.append("(mgrid=").append(user.getOrgManagerUserId()).append("*)"); + } + if(Utilities.nvl(user.getOrgCode()).length() > 0) { + filterClause.append("(departmentNumber=").append(user.getOrgCode()).append("*)"); + } + if(Utilities.nvl(user.getEmail()).length() > 0) { + filterClause.append("(mail=").append(user.getEmail()).append("*)"); + } + if(Utilities.nvl(user.getOrgUserId()).length() > 0) { + filterClause.append("(a1=").append(user.getOrgUserId()).append("*)"); + } + filterClause.append("(c3=N)"); // this has been added to filter CP09 entries on the LDAP server that are duplicates of existing individuals + filterClause.append(")"); + + List list = new ArrayList(); + if (!filterClause.toString().equals("(&(objectClass=*))")) { + NamingEnumeration e = dirContext.search(SystemProperties.getProperty(SystemProperties.POST_PROVIDER_URL) + "/" + + SystemProperties.getProperty(SystemProperties.POST_SECURITY_PRINCIPAL), + filterClause.toString(), + searchControls); + list = processResults(e); + } + + Collections.sort(list); + + searchResult = new SearchResult(list); + searchResult.setPageNo(pageNo); + if(dataSize >= 0) { + searchResult.setDataSize(dataSize); + } + else { + searchResult.setDataSize(list.size()); + } + } catch(NamingException ne) { + String stackTrace = EcompPortalUtils.getStackTrace(ne); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing the LDAP search. Details: " + stackTrace); + } catch(Exception e) { + String stackTrace = EcompPortalUtils.getStackTrace(e); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing the LDAP search. Details: " + stackTrace); + } + finally { + dirContext.close(); + } + + return searchResult; + } + + + @SuppressWarnings({ "rawtypes", "unchecked" }) + @EPMetricsLog + private ArrayList processResults(NamingEnumeration e) throws NamingException { + ArrayList results = new ArrayList(); + int count = 0; + + while (e.hasMore()) { + javax.naming.directory.SearchResult searchResult = (javax.naming.directory.SearchResult)e.next(); + results.add(processAttributes(searchResult.getAttributes())); + count++; + + if(count > Integer.parseInt(SystemProperties.getProperty(SystemProperties.POST_MAX_RESULT_SIZE))) { + break; + } + } + return results; + } + + + @SuppressWarnings("rawtypes") + @EPMetricsLog + private DomainVo processAttributes(Attributes resultAttributes) throws NamingException { + EPUser user = new EPUser(); + + try { + if (resultAttributes == null) { + logger.debug(EELFLoggerDelegate.debugLogger, "This result has no attributes"); + } else { + for (NamingEnumeration e = resultAttributes.getAll(); e.hasMore();) { //why the nested loop? + Attribute attribute = (Attribute)e.next(); + for (NamingEnumeration ie = attribute.getAll(); ie.hasMore();) { + if (attribute.getID().equalsIgnoreCase("nickname")) { + user.setFirstName((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("initials")) { + user.setMiddleInitial((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("sn")) { + user.setLastName((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("employeeNumber")) { + user.setHrid((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("mail")) { + user.setEmail((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("telephoneNumber")) { + user.setPhone((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("departmentNumber")) { + user.setOrgCode((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("a1")) { + user.setOrgUserId((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("street")) { + user.setAddress1((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("roomNumber")) { + user.setAddress2((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("l")) { + user.setCity((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("st")) { + user.setState((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("postalCode")) { + user.setZipCode((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("zip4")) { + user.setZipCodeSuffix((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("physicalDeliveryOfficeName")) { + user.setLocationClli((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("bc")) { + user.setBusinessCountryCode((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("friendlyCountryName")) { + user.setBusinessCountryName((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("bd")) { + user.setDepartment((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("bdname")) { + user.setDepartmentName((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("jtname")) { + user.setJobTitle((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("mgrid")) { + user.setOrgManagerUserId((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("a2")) { + user.setCommandChain((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("compcode")) { + user.setCompanyCode((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("compdesc")) { + user.setCompany((String) ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("bu")) { + user.setBusinessUnit((String)ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("buname")) { + user.setBusinessUnitName((String)ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("silo")) { + user.setSiloStatus((String)ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("costcenter")) { + user.setCostCenter((String)ie.next()); + } + else if (attribute.getID().equalsIgnoreCase("b2")) { + user.setFinancialLocCode((String)ie.next()); + } + else { //we don't care about returned attribute, let's move on + ie.next(); + } + + } + } + } + } catch (NamingException e) { + String stackTrace = EcompPortalUtils.getStackTrace(e); + logger.error(EELFLoggerDelegate.errorLogger, "An error occurred while processing the following user from POST with an Organization User ID of " + user.getOrgUserId()); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occcurred while processing LDAP search results, Details: " + stackTrace); + } catch(Exception e) { + String stackTrace = EcompPortalUtils.getStackTrace(e); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occcurred while processing LDAP search results, Details: " + stackTrace); + } + + return user; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLeftMenuService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLeftMenuService.java index ed9c3c4d..9785f2b0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLeftMenuService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLeftMenuService.java @@ -1,44 +1,44 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.Set; - -import org.openecomp.portalsdk.core.domain.MenuData; -import org.openecomp.portalapp.portal.domain.EPUser; - -public interface EPLeftMenuService { - - /** - * Builds a JSON suitable for populating the front-end left menu from the supplied set of menu items. - * @param user - * - * @param fullMenuSet - * @param roleFunctionSet - * @return JSON String of this form: - *
-	 * {"navItems":[
-	 * 		{"name":"Home","imageSrc":"icon-location-pin","state":"root.applicationsHome"},
-	 * 	...
-	 * ] }
-	 * 
- */ - String getLeftMenuItems(EPUser user, Set fullMenuSet, Set roleFunctionSet); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.Set; + +import org.openecomp.portalsdk.core.domain.MenuData; +import org.openecomp.portalapp.portal.domain.EPUser; + +public interface EPLeftMenuService { + + /** + * Builds a JSON suitable for populating the front-end left menu from the supplied set of menu items. + * @param user + * + * @param fullMenuSet + * @param roleFunctionSet + * @return JSON String of this form: + *
+	 * {"navItems":[
+	 * 		{"name":"Home","imageSrc":"icon-location-pin","state":"root.applicationsHome"},
+	 * 	...
+	 * ] }
+	 * 
+ */ + String getLeftMenuItems(EPUser user, Set fullMenuSet, Set roleFunctionSet); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLeftMenuServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLeftMenuServiceImpl.java index 2a1f466a..9158e990 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLeftMenuServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLeftMenuServiceImpl.java @@ -1,195 +1,195 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.Collection; -import java.util.Comparator; -import java.util.LinkedHashMap; -import java.util.Map; -import java.util.Set; -import java.util.SortedSet; -import java.util.TreeSet; - -import org.json.JSONArray; -import org.json.JSONObject; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.domain.MenuData; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.UserRoles; -//import org.openecomp.portalapp.portal.domain.Menu; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; - -@Service("leftMenuService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog - -public class EPLeftMenuServiceImpl implements EPLeftMenuService { - - private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPLeftMenuServiceImpl.class); - - @Autowired - private EPAppService appService; - - /* - * (non-Javadoc) - * - * @see - * org.openecomp.portalapp.portal.service.EPLeftMenuService#getLeftMenuItems - * (java.util.Set) - */ - @Override - public String getLeftMenuItems(EPUser user, Set fullMenuSet, Set roleFunctionSet) { - final Map defaultNavMap = new LinkedHashMap(); - - resetNavMap(defaultNavMap); - - loadDefaultNavMap(defaultNavMap); - - // Handle Account Administrator in a special way; soon this will - // be revised as Account Administrator may become obsolete - try { - if (user != null) { - UserRoles uRoles = appService.getUserProfileNormalized(user); - if (uRoles.getRoles().contains("Account Administrator")) - loadAccAdminNavMap(defaultNavMap); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "getLeftMenuItems: failed to get roles for user " + user.getOrgUserId(), e); - } - - loadNavMapByRole(defaultNavMap, fullMenuSet); - - return convertToSideBarModel(defaultNavMap); - } - - /** - * Clears the map - * - * @param defaultNavMap - */ - private void resetNavMap(Map defaultNavMap) { - defaultNavMap.clear(); - } - - /** - * - * @param defaultNavMap - * @param fullMenuSet - */ - private void loadNavMapByRole(Map defaultNavMap, Set fullMenuSet) { - - class SortOrderComparator implements Comparator { - @Override - public int compare(MenuData e1, MenuData e2) { - return e1.getSortOrder().compareTo(e2.getSortOrder()); - } - } - - SortedSet sortMenuSet = new TreeSet(new SortOrderComparator()); - for (MenuData mn : fullMenuSet) { - sortMenuSet.add(mn); - } - - for (MenuData mn : sortMenuSet) { - JSONObject navItemsDetails = new JSONObject(); - navItemsDetails.put("name", mn.getLabel()); - navItemsDetails.put("state", mn.getAction()); - navItemsDetails.put("imageSrc", mn.getImageSrc()); - defaultNavMap.put(mn.getAction(), navItemsDetails); - } - } - - /** - * - * @param defaultNavMap - * @return - */ - private String convertToSideBarModel(Map defaultNavMap) { - JSONObject sidebarModel = new JSONObject(); - JSONArray navItems = new JSONArray(); - Collection jsonObjs = defaultNavMap.values(); - - for (JSONObject navItemsDetail : jsonObjs) - navItems.put(navItemsDetail); - - sidebarModel.put("label", "ECOMP portal"); - sidebarModel.put("navItems", navItems); - return sidebarModel.toString(); - } - - /** - * Loads default entries for regular user. - * - * @param defaultNavMap - */ - private void loadDefaultNavMap(Map defaultNavMap) { - - JSONObject navItemsDetails1 = new JSONObject(); - navItemsDetails1.put("name", "Home"); - navItemsDetails1.put("state", "root.applicationsHome"); - navItemsDetails1.put("imageSrc", "icon-building-home"); - defaultNavMap.put("root.applicationsHome", navItemsDetails1); - - JSONObject navItemsDetails2 = new JSONObject(); - navItemsDetails2.put("name", "Application Catalog"); - navItemsDetails2.put("state", "root.appCatalog"); - navItemsDetails2.put("imageSrc", "icon-apps-marketplace"); - defaultNavMap.put("root.appCatalog", navItemsDetails2); - - JSONObject navItemsDetails3 = new JSONObject(); - navItemsDetails3.put("name", "Widget Catalog"); - navItemsDetails3.put("state", "root.widgetCatalog"); - navItemsDetails3.put("imageSrc", "icon-apps-marketplace"); - defaultNavMap.put("root.widgetCatalog", navItemsDetails3); - - } - - /** - * Loads default entries for application administrator. - * - * @param defaultNavMap - */ - private void loadAccAdminNavMap(Map defaultNavMap) { - - JSONObject navItemsDetails1 = new JSONObject(); - navItemsDetails1.put("name", "Users"); - navItemsDetails1.put("state", "root.users"); - navItemsDetails1.put("imageSrc", "icon-user"); - defaultNavMap.put("root.users", navItemsDetails1); - - // No more widget onboarding like this: - // - // JSONObject navItemsDetails2 = new JSONObject(); - // navItemsDetails2.put("name", "Widget Onboarding"); - // navItemsDetails2.put("state", "root.widgetOnboarding"); - // navItemsDetails2.put("imageSrc", "icon-add-widget"); - // defaultNavMap.put("root.widgetOnboarding", navItemsDetails2); - - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.Collection; +import java.util.Comparator; +import java.util.LinkedHashMap; +import java.util.Map; +import java.util.Set; +import java.util.SortedSet; +import java.util.TreeSet; + +import org.json.JSONArray; +import org.json.JSONObject; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.domain.MenuData; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.UserRoles; +//import org.openecomp.portalapp.portal.domain.Menu; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; + +@Service("leftMenuService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog + +public class EPLeftMenuServiceImpl implements EPLeftMenuService { + + private static final EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPLeftMenuServiceImpl.class); + + @Autowired + private EPAppService appService; + + /* + * (non-Javadoc) + * + * @see + * org.openecomp.portalapp.portal.service.EPLeftMenuService#getLeftMenuItems + * (java.util.Set) + */ + @Override + public String getLeftMenuItems(EPUser user, Set fullMenuSet, Set roleFunctionSet) { + final Map defaultNavMap = new LinkedHashMap(); + + resetNavMap(defaultNavMap); + + loadDefaultNavMap(defaultNavMap); + + // Handle Account Administrator in a special way; soon this will + // be revised as Account Administrator may become obsolete + try { + if (user != null) { + UserRoles uRoles = appService.getUserProfileNormalized(user); + if (uRoles.getRoles().contains("Account Administrator")) + loadAccAdminNavMap(defaultNavMap); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "getLeftMenuItems: failed to get roles for user " + user.getOrgUserId(), e); + } + + loadNavMapByRole(defaultNavMap, fullMenuSet); + + return convertToSideBarModel(defaultNavMap); + } + + /** + * Clears the map + * + * @param defaultNavMap + */ + private void resetNavMap(Map defaultNavMap) { + defaultNavMap.clear(); + } + + /** + * + * @param defaultNavMap + * @param fullMenuSet + */ + private void loadNavMapByRole(Map defaultNavMap, Set fullMenuSet) { + + class SortOrderComparator implements Comparator { + @Override + public int compare(MenuData e1, MenuData e2) { + return e1.getSortOrder().compareTo(e2.getSortOrder()); + } + } + + SortedSet sortMenuSet = new TreeSet(new SortOrderComparator()); + for (MenuData mn : fullMenuSet) { + sortMenuSet.add(mn); + } + + for (MenuData mn : sortMenuSet) { + JSONObject navItemsDetails = new JSONObject(); + navItemsDetails.put("name", mn.getLabel()); + navItemsDetails.put("state", mn.getAction()); + navItemsDetails.put("imageSrc", mn.getImageSrc()); + defaultNavMap.put(mn.getAction(), navItemsDetails); + } + } + + /** + * + * @param defaultNavMap + * @return + */ + private String convertToSideBarModel(Map defaultNavMap) { + JSONObject sidebarModel = new JSONObject(); + JSONArray navItems = new JSONArray(); + Collection jsonObjs = defaultNavMap.values(); + + for (JSONObject navItemsDetail : jsonObjs) + navItems.put(navItemsDetail); + + sidebarModel.put("label", "ECOMP portal"); + sidebarModel.put("navItems", navItems); + return sidebarModel.toString(); + } + + /** + * Loads default entries for regular user. + * + * @param defaultNavMap + */ + private void loadDefaultNavMap(Map defaultNavMap) { + + JSONObject navItemsDetails1 = new JSONObject(); + navItemsDetails1.put("name", "Home"); + navItemsDetails1.put("state", "root.applicationsHome"); + navItemsDetails1.put("imageSrc", "icon-building-home"); + defaultNavMap.put("root.applicationsHome", navItemsDetails1); + + JSONObject navItemsDetails2 = new JSONObject(); + navItemsDetails2.put("name", "Application Catalog"); + navItemsDetails2.put("state", "root.appCatalog"); + navItemsDetails2.put("imageSrc", "icon-apps-marketplace"); + defaultNavMap.put("root.appCatalog", navItemsDetails2); + + JSONObject navItemsDetails3 = new JSONObject(); + navItemsDetails3.put("name", "Widget Catalog"); + navItemsDetails3.put("state", "root.widgetCatalog"); + navItemsDetails3.put("imageSrc", "icon-apps-marketplace"); + defaultNavMap.put("root.widgetCatalog", navItemsDetails3); + + } + + /** + * Loads default entries for application administrator. + * + * @param defaultNavMap + */ + private void loadAccAdminNavMap(Map defaultNavMap) { + + JSONObject navItemsDetails1 = new JSONObject(); + navItemsDetails1.put("name", "Users"); + navItemsDetails1.put("state", "root.users"); + navItemsDetails1.put("imageSrc", "icon-user"); + defaultNavMap.put("root.users", navItemsDetails1); + + // No more widget onboarding like this: + // + // JSONObject navItemsDetails2 = new JSONObject(); + // navItemsDetails2.put("name", "Widget Onboarding"); + // navItemsDetails2.put("state", "root.widgetOnboarding"); + // navItemsDetails2.put("imageSrc", "icon-add-widget"); + // defaultNavMap.put("root.widgetOnboarding", navItemsDetails2); + + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLoginService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLoginService.java index 4bdb2009..d8d2a290 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLoginService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLoginService.java @@ -1,70 +1,72 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.HashMap; - -import org.openecomp.portalapp.command.EPLoginBean; -import org.openecomp.portalapp.portal.domain.EPUser; - -public interface EPLoginService { - - /** - * Calls {@link #findUser(EPLoginBean, String, HashMap, boolean)} with the - * last parameter set to true. - * - * @param bean - * @param menuPropertiesFilename - * @param additionalParams - * @return EPUser object; null on error or if no match. - * @throws Exception - */ - @SuppressWarnings("rawtypes") - EPLoginBean findUser(EPLoginBean bean, String menuPropertiesFilename, HashMap additionalParams) throws Exception; - - /** - * Searches the fn_user table for a row that matches information in the - * bean. Uses the bean's Organization User ID property if present; if not, uses the bean's - * LoginId property and (optionally, depending on matchPassword parameter) - * loginPwd property. - * - * @param bean - * EPLoginBean - * @param menuPropertiesFileName - * Always ignored - * @param additionalParams - * Used by DataAccessService when updating a matched user object - * @param matchPassword - * If true, the search must match the password - * @return EPUser object; null on error or if no match. - */ - @SuppressWarnings("rawtypes") - EPLoginBean findUser(EPLoginBean bean, String menuPropertiesFilename, HashMap additionalParams, - boolean matchPassword) throws Exception; - - /** - * Searches the fn_user table for a row with a value in column login_id that - * matches the specified value. - * - * @param loginId - * @return EPUser object; null on error or if no match. - */ - public EPUser findUserWithoutPwd(String loginId); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.HashMap; + +import org.openecomp.portalapp.command.EPLoginBean; +import org.openecomp.portalapp.portal.domain.EPUser; + +public interface EPLoginService { + + /** + * Calls {@link #findUser(EPLoginBean, String, HashMap, boolean)} with the + * last parameter set to true. + * + * @param bean + * @param menuPropertiesFilename + * @param additionalParams + * @return EPUser object; null on error or if no match. + * @throws Exception + */ + @SuppressWarnings("rawtypes") + EPLoginBean findUser(EPLoginBean bean, String menuPropertiesFilename, HashMap additionalParams) throws Exception; + + /** + * Searches the fn_user table for a row that matches information in the + * bean. Uses the bean's Organization User ID property if present; if not, + * uses the bean's LoginId property and (optionally, depending on + * matchPassword parameter) loginPwd property. + * + * @param bean + * EPLoginBean + * @param menuPropertiesFileName + * Always ignored + * @param additionalParams + * Used by DataAccessService when updating a matched user object + * @param matchPassword + * If true, the search must match the password + * @return EPUser object; null on error or if no match. + * @throws Exception + */ + @SuppressWarnings("rawtypes") + EPLoginBean findUser(EPLoginBean bean, String menuPropertiesFileName, HashMap additionalParams, + boolean matchPassword) throws Exception; + + /** + * Searches the fn_user table for a row with a value in column login_id that + * matches the specified value. + * + * @param loginId + * Login name + * @return EPUser object; null on error or if no match. + */ + public EPUser findUserWithoutPwd(String loginId); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLoginServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLoginServiceImpl.java index ba202d63..f9125064 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLoginServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPLoginServiceImpl.java @@ -1,234 +1,234 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.Date; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Set; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.menu.MenuBuilder; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.service.support.FusionService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalsdk.core.web.support.AppUtils; -import org.openecomp.portalapp.command.EPLoginBean; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.util.EPUserUtils; - -@Service("eploginService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class EPLoginServiceImpl extends FusionService implements EPLoginService { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPLoginServiceImpl.class); - - @Autowired - private DataAccessService dataAccessService; - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.EPLoginService#findUser(org.openecomp.portalapp.command.EPLoginBean, java.lang.String, java.util.HashMap) - */ - @SuppressWarnings("rawtypes") - public EPLoginBean findUser(EPLoginBean bean, String menuPropertiesFilename, HashMap additionalParams) - throws Exception { - return findUser(bean, menuPropertiesFilename, additionalParams, true); - } - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.EPLoginService#findUser(org.openecomp.portalapp.command.EPLoginBean, java.lang.String, java.util.HashMap, boolean) - */ - @SuppressWarnings("rawtypes") - public EPLoginBean findUser(EPLoginBean bean, String menuPropertiesFilename_ignored, HashMap additionalParams, - boolean matchPassword) throws Exception { - EPUser user = null; - EPUser userCopy = null; - - if (bean.getOrgUserId() != null) { - user = (EPUser) findUser(bean); - } else { - if (matchPassword) - user = (EPUser) findUser(bean.getLoginId(), bean.getLoginPwd()); - else - user = (EPUser) findUserWithoutPwd(bean.getLoginId()); - } - - // run this command to fetch more information from the lazily loaded - // object - - // This is funny - commenting out the following method call - // 1. What are we doing with the returned values of the following two - // methods? Nothing. - // 2. Use a guest user scenario - user object will be null - clealry, - // NPE. - // 3. A check of if(user !=null) is made AFTER these bogus calls :) - If - // these calls WERE doing anything significat (which they are not), - // shouln't they have been moved inside that if check? - - // user.getEPUserApps(); - - // Comments - // 1. This method is clearly doing more than 'getting roles' - Not a - // good name - - // 2. Also, there is no null check - guest user scenarios will break the - // code with NPE - added the check - Do not want to remove the call - // altogether - not sure how it will effect things. - - if (user != null) { - user.getEPRoles(); - - // raise an error if the portal application is locked and the user - // does not - // have system administrator privileges - if (AppUtils.isApplicationLocked() - && !EPUserUtils.hasRole(user, SystemProperties.getProperty(SystemProperties.SYS_ADMIN_ROLE_ID))) { - bean.setLoginErrorMessage(SystemProperties.MESSAGE_KEY_LOGIN_ERROR_APPLICATION_LOCKED); - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUserAdminPrivilegesInfo, user.getLoginId()); - } - - // raise an error if the user is inactive - if (!user.getActive()) { - bean.setLoginErrorMessage(SystemProperties.MESSAGE_KEY_LOGIN_ERROR_USER_INACTIVE); - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUserInactiveWarning, user.getLoginId()); - } - - // only login the user if no errors have occurred - if (bean.getLoginErrorMessage() == null) { - - // this will be a snapshot of the user's information as - // retrieved from the database - userCopy = (EPUser) user.clone(); - - // update the last logged in date for the user - user.setLastLoginDate(new Date()); - getDataAccessService().saveDomainObject(user, additionalParams); - - // create the application menu based on the user's privileges - MenuBuilder menuBuilder = new MenuBuilder(); - Set appMenu = menuBuilder.getMenu( - SystemProperties.getProperty(SystemProperties.APPLICATION_MENU_SET_NAME), dataAccessService); - bean.setMenu(appMenu != null ? appMenu : new HashSet()); - Set businessDirectMenu = menuBuilder.getMenu( - SystemProperties.getProperty(SystemProperties.BUSINESS_DIRECT_MENU_SET_NAME), - dataAccessService); - bean.setBusinessDirectMenu(businessDirectMenu != null ? businessDirectMenu : new HashSet()); - - bean.setUser(userCopy); - } - - } else { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUserMissingError, bean.getOrgUserId()); - } - - return bean; - } - - /** - * Searches the fn_user table for a row that matches the specified login_id - * and login_pwd values. - * - * @param loginId - * @param password - * @return EPUser object; null on error or if no match. - */ - private EPUser findUser(String loginId, String password) { - List list = null; - - StringBuffer criteria = new StringBuffer(); - criteria.append(" where login_id = '").append(loginId).append("'").append(" and login_pwd = '").append(password) - .append("'"); - - try { - list = getDataAccessService().getList(EPUser.class, criteria.toString(), null, null); - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - logger.error(EELFLoggerDelegate.errorLogger, "findUser(String) failed on " + loginId, e); - } - - return (list == null || list.size() == 0) ? null : (EPUser) list.get(0); - } - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.EPLoginService#findUserWithoutPwd(java.lang.String) - */ - @Override - public EPUser findUserWithoutPwd(String loginId) { - List list = null; - - StringBuffer criteria = new StringBuffer(); - criteria.append(" where login_id = '").append(loginId).append("'"); - - try { - list = getDataAccessService().getList(EPUser.class, criteria.toString(), null, null); - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - String message = "findUserWithoutPwd failed on " + loginId; - logger.error(EELFLoggerDelegate.errorLogger, message, e); - } - - return (list == null || list.size() == 0) ? null : (EPUser) list.get(0); - } - - /** - * Searches the fn_user table for a row that matches the value of the bean's - * Organization User ID property. - * - * @param bean - * @return EPUser object; null on error or if no match. - */ - private EPUser findUser(EPLoginBean bean) { - List list = null; - - StringBuffer criteria = new StringBuffer(); - criteria.append(" where orgUserId = '").append(bean.getOrgUserId()).append("'"); - - try { - list = getDataAccessService().getList(EPUser.class, criteria.toString(), null, null); - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - logger.error(EELFLoggerDelegate.errorLogger, "findUser(EPLoginBean) failed", e); - } - - return (list == null || list.size() == 0) ? null : (EPUser) list.get(0); - } - - public DataAccessService getDataAccessService() { - return dataAccessService; - } - - public void setDataAccessService(DataAccessService dataAccessService) { - this.dataAccessService = dataAccessService; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.Date; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.menu.MenuBuilder; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.service.support.FusionService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalsdk.core.web.support.AppUtils; +import org.openecomp.portalapp.command.EPLoginBean; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.util.EPUserUtils; + +@Service("eploginService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class EPLoginServiceImpl extends FusionService implements EPLoginService { + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPLoginServiceImpl.class); + + @Autowired + private DataAccessService dataAccessService; + + /* + * (non-Javadoc) + * @see org.openecomp.portalapp.portal.service.EPLoginService#findUser(org.openecomp.portalapp.command.EPLoginBean, java.lang.String, java.util.HashMap) + */ + @SuppressWarnings("rawtypes") + public EPLoginBean findUser(EPLoginBean bean, String menuPropertiesFilename, HashMap additionalParams) + throws Exception { + return findUser(bean, menuPropertiesFilename, additionalParams, true); + } + + /* + * (non-Javadoc) + * @see org.openecomp.portalapp.portal.service.EPLoginService#findUser(org.openecomp.portalapp.command.EPLoginBean, java.lang.String, java.util.HashMap, boolean) + */ + @SuppressWarnings("rawtypes") + public EPLoginBean findUser(EPLoginBean bean, String menuPropertiesFilename_ignored, HashMap additionalParams, + boolean matchPassword) throws Exception { + EPUser user = null; + EPUser userCopy = null; + + if (bean.getOrgUserId() != null) { + user = (EPUser) findUser(bean); + } else { + if (matchPassword) + user = (EPUser) findUser(bean.getLoginId(), bean.getLoginPwd()); + else + user = (EPUser) findUserWithoutPwd(bean.getLoginId()); + } + + // run this command to fetch more information from the lazily loaded + // object + + // This is funny - commenting out the following method call + // 1. What are we doing with the returned values of the following two + // methods? Nothing. + // 2. Use a guest user scenario - user object will be null - clealry, + // NPE. + // 3. A check of if(user !=null) is made AFTER these bogus calls :) - If + // these calls WERE doing anything significat (which they are not), + // shouln't they have been moved inside that if check? + + // user.getEPUserApps(); + + // Comments + // 1. This method is clearly doing more than 'getting roles' - Not a + // good name - + // 2. Also, there is no null check - guest user scenarios will break the + // code with NPE - added the check - Do not want to remove the call + // altogether - not sure how it will effect things. + + if (user != null) { + user.getEPRoles(); + + // raise an error if the portal application is locked and the user + // does not + // have system administrator privileges + if (AppUtils.isApplicationLocked() + && !EPUserUtils.hasRole(user, SystemProperties.getProperty(SystemProperties.SYS_ADMIN_ROLE_ID))) { + bean.setLoginErrorMessage(SystemProperties.MESSAGE_KEY_LOGIN_ERROR_APPLICATION_LOCKED); + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUserAdminPrivilegesInfo, user.getLoginId()); + } + + // raise an error if the user is inactive + if (!user.getActive()) { + bean.setLoginErrorMessage(SystemProperties.MESSAGE_KEY_LOGIN_ERROR_USER_INACTIVE); + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUserInactiveWarning, user.getLoginId()); + } + + // only login the user if no errors have occurred + if (bean.getLoginErrorMessage() == null) { + + // this will be a snapshot of the user's information as + // retrieved from the database + userCopy = (EPUser) user.clone(); + + // update the last logged in date for the user + user.setLastLoginDate(new Date()); + getDataAccessService().saveDomainObject(user, additionalParams); + + // create the application menu based on the user's privileges + MenuBuilder menuBuilder = new MenuBuilder(); + Set appMenu = menuBuilder.getMenu( + SystemProperties.getProperty(SystemProperties.APPLICATION_MENU_SET_NAME), dataAccessService); + bean.setMenu(appMenu != null ? appMenu : new HashSet()); + Set businessDirectMenu = menuBuilder.getMenu( + SystemProperties.getProperty(SystemProperties.BUSINESS_DIRECT_MENU_SET_NAME), + dataAccessService); + bean.setBusinessDirectMenu(businessDirectMenu != null ? businessDirectMenu : new HashSet()); + + bean.setUser(userCopy); + } + + } else { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUserMissingError, bean.getOrgUserId()); + } + + return bean; + } + + /** + * Searches the fn_user table for a row that matches the specified login_id + * and login_pwd values. + * + * @param loginId + * @param password + * @return EPUser object; null on error or if no match. + */ + private EPUser findUser(String loginId, String password) { + List list = null; + + StringBuffer criteria = new StringBuffer(); + criteria.append(" where login_id = '").append(loginId).append("'").append(" and login_pwd = '").append(password) + .append("'"); + + try { + list = getDataAccessService().getList(EPUser.class, criteria.toString(), null, null); + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + logger.error(EELFLoggerDelegate.errorLogger, "findUser(String) failed on " + loginId, e); + } + + return (list == null || list.size() == 0) ? null : (EPUser) list.get(0); + } + + /* + * (non-Javadoc) + * @see org.openecomp.portalapp.portal.service.EPLoginService#findUserWithoutPwd(java.lang.String) + */ + @Override + public EPUser findUserWithoutPwd(String loginId) { + List list = null; + + StringBuffer criteria = new StringBuffer(); + criteria.append(" where login_id = '").append(loginId).append("'"); + + try { + list = getDataAccessService().getList(EPUser.class, criteria.toString(), null, null); + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + String message = "findUserWithoutPwd failed on " + loginId; + logger.error(EELFLoggerDelegate.errorLogger, message, e); + } + + return (list == null || list.size() == 0) ? null : (EPUser) list.get(0); + } + + /** + * Searches the fn_user table for a row that matches the value of the bean's + * Organization User ID property. + * + * @param bean + * @return EPUser object; null on error or if no match. + */ + private EPUser findUser(EPLoginBean bean) { + List list = null; + + StringBuffer criteria = new StringBuffer(); + criteria.append(" where orgUserId = '").append(bean.getOrgUserId()).append("'"); + + try { + list = getDataAccessService().getList(EPUser.class, criteria.toString(), null, null); + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + logger.error(EELFLoggerDelegate.errorLogger, "findUser(EPLoginBean) failed", e); + } + + return (list == null || list.size() == 0) ? null : (EPUser) list.get(0); + } + + public DataAccessService getDataAccessService() { + return dataAccessService; + } + + public void setDataAccessService(DataAccessService dataAccessService) { + this.dataAccessService = dataAccessService; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPRoleService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPRoleService.java index 32dccbe0..cec7dd64 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPRoleService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPRoleService.java @@ -1,37 +1,37 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalsdk.core.domain.RoleFunction; -import org.openecomp.portalapp.portal.domain.EPRole; - - -public interface EPRoleService { - - // Used by ECOMP. Get cached role by two columns used by ECOMP only. app id, and external app role id. - EPRole getRole(Long appId, Long appRoleid); - public void saveRole(EPRole domainRole); - EPRole getAppRole(String roleName, Long appId); - public List getRoleFunctions(); - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalsdk.core.domain.RoleFunction; +import org.openecomp.portalapp.portal.domain.EPRole; + + +public interface EPRoleService { + + // Used by ECOMP. Get cached role by two columns used by ECOMP only. app id, and external app role id. + EPRole getRole(Long appId, Long appRoleid); + public void saveRole(EPRole domainRole); + EPRole getAppRole(String roleName, Long appId); + public List getRoleFunctions(); + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPRoleServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPRoleServiceImpl.java index d7661e9a..e509fcf5 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPRoleServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/EPRoleServiceImpl.java @@ -1,171 +1,179 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; -import java.util.Map; -import java.util.Set; -import java.util.TreeSet; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.domain.RoleFunction; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalapp.portal.domain.EPRole; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; - -@Service("epRoleService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class EPRoleServiceImpl implements EPRoleService{ - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPRoleServiceImpl.class); - - @Autowired - private DataAccessService dataAccessService; - - @SuppressWarnings("unchecked") - public List getRoleFunctions() { - //List msgDB = getDataAccessService().getList(Profile.class, null); - return getDataAccessService().getList(RoleFunction.class, null); - } - - @SuppressWarnings("unchecked") - public List getAvailableChildRoles(Long roleId) { - List availableChildRoles = (List)getDataAccessService().getList(EPRole.class,null); - if(roleId==null || roleId==0){ - return availableChildRoles; - } - - EPRole currentRole = (EPRole)getDataAccessService().getDomainObject(EPRole.class,roleId,null); - Set allParentRoles = new TreeSet(); - allParentRoles = getAllParentRolesAsList(currentRole, allParentRoles); - - - Iterator availableChildRolesIterator = availableChildRoles.iterator(); - while (availableChildRolesIterator.hasNext()) { - EPRole role = availableChildRolesIterator.next(); - if(!role.getActive() || allParentRoles.contains(role) || role.getId().equals(roleId)){ - availableChildRolesIterator.remove(); - } - } - return availableChildRoles; - } - - private Set getAllParentRolesAsList(EPRole role, Set allParentRoles) { - Set parentRoles = role.getParentRoles(); - allParentRoles.addAll(parentRoles); - Iterator parentRolesIterator = parentRoles.iterator(); - while (parentRolesIterator.hasNext()) { - getAllParentRolesAsList(parentRolesIterator.next(),allParentRoles); - } - return allParentRoles; - } - - public RoleFunction getRoleFunction(String code) { - return (RoleFunction)getDataAccessService().getDomainObject(RoleFunction.class, code, null); - } - - public void saveRoleFunction(RoleFunction domainRoleFunction) { - getDataAccessService().saveDomainObject(domainRoleFunction, null); - } - - public void deleteRoleFunction(RoleFunction domainRoleFunction) { - getDataAccessService().deleteDomainObject(domainRoleFunction, null); - } - - public EPRole getRole(Long id) { - return (EPRole)getDataAccessService().getDomainObject(EPRole.class, id, null); - } - - // TODO: refactor - private static final String getAppRoleSqlFormat ="SELECT * FROM fn_role where APP_ID = %s AND APP_ROLE_ID = %s"; - - @SuppressWarnings("unchecked") - public EPRole getRole(Long appId, Long appRoleid) { - if(appId == null || appRoleid == null){ - logger.error(EELFLoggerDelegate.errorLogger, String.format("getRole does not support null appId or roleId. appRoleid=%s, appRoleid=%s", appId, appRoleid)); - return null; - } - - String sql = String.format(getAppRoleSqlFormat, appId, appRoleid); - - List roles = (List)dataAccessService.executeSQLQuery(sql, EPRole.class, null); - int resultsCount = roles.size(); - if(resultsCount > 1){ - logger.error(EELFLoggerDelegate.errorLogger, String.format("search by appId=%s, appRoleid=%s should have returned 0 or 1 results. Got %d. This is an internal server error.", appId, appRoleid, resultsCount)); - logger.error(EELFLoggerDelegate.errorLogger, "Trying to recover from duplicates by returning the first search result. This issue should be treated, it is probably not critical because duplicate roles should be similar."); - return roles.get(0); - } else if(resultsCount == 1){ - return roles.get(0); - } - return null; - } - - @SuppressWarnings("unchecked") - public EPRole getAppRole(String roleName, Long appId) { - - final Map params = new HashMap(); - params.put("appId", appId.toString()); - params.put("roleName", roleName); - - List roles = (List)dataAccessService.executeNamedQuery("getAppRoles", params, null); - int resultsCount = roles.size(); - if(resultsCount > 1){ - logger.error(EELFLoggerDelegate.errorLogger, "Trying to recover from duplicates by returning the first search result. This issue should be treated, it is probably not critical because duplicate roles should be similar."); - return roles.get(0); - } else if(resultsCount == 1){ - return roles.get(0); - } - return null; - } - - - public void saveRole(EPRole domainRole) { - getDataAccessService().saveDomainObject(domainRole, null); - } - - public void deleteRole(EPRole domainRole) { - getDataAccessService().deleteDomainObject(domainRole, null); - } - - @SuppressWarnings("unchecked") - public List getAvailableRoles() { - return getDataAccessService().getList(EPRole.class, null); - } - - public DataAccessService getDataAccessService() { - return dataAccessService; - } - - - public void setDataAccessService(DataAccessService dataAccessService) { - this.dataAccessService = dataAccessService; - } -} - - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.HashMap; +import java.util.Iterator; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.TreeSet; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.domain.RoleFunction; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalapp.portal.domain.EPRole; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.utils.PortalConstants; + +@Service("epRoleService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class EPRoleServiceImpl implements EPRoleService { + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPRoleServiceImpl.class); + + @Autowired + private DataAccessService dataAccessService; + + @SuppressWarnings("unchecked") + public List getRoleFunctions() { + // List msgDB = getDataAccessService().getList(Profile.class, null); + return getDataAccessService().getList(RoleFunction.class, null); + } + + @SuppressWarnings("unchecked") + public List getAvailableChildRoles(Long roleId) { + List availableChildRoles = (List) getDataAccessService().getList(EPRole.class, null); + if (roleId == null || roleId == 0) { + return availableChildRoles; + } + + EPRole currentRole = (EPRole) getDataAccessService().getDomainObject(EPRole.class, roleId, null); + Set allParentRoles = new TreeSet(); + allParentRoles = getAllParentRolesAsList(currentRole, allParentRoles); + + Iterator availableChildRolesIterator = availableChildRoles.iterator(); + while (availableChildRolesIterator.hasNext()) { + EPRole role = availableChildRolesIterator.next(); + if (!role.getActive() || allParentRoles.contains(role) || role.getId().equals(roleId)) { + availableChildRolesIterator.remove(); + } + } + return availableChildRoles; + } + + private Set getAllParentRolesAsList(EPRole role, Set allParentRoles) { + Set parentRoles = role.getParentRoles(); + allParentRoles.addAll(parentRoles); + Iterator parentRolesIterator = parentRoles.iterator(); + while (parentRolesIterator.hasNext()) { + getAllParentRolesAsList(parentRolesIterator.next(), allParentRoles); + } + return allParentRoles; + } + + public RoleFunction getRoleFunction(String code) { + return (RoleFunction) getDataAccessService().getDomainObject(RoleFunction.class, code, null); + } + + public void saveRoleFunction(RoleFunction domainRoleFunction) { + getDataAccessService().saveDomainObject(domainRoleFunction, null); + } + + public void deleteRoleFunction(RoleFunction domainRoleFunction) { + getDataAccessService().deleteDomainObject(domainRoleFunction, null); + } + + public EPRole getRole(Long id) { + return (EPRole) getDataAccessService().getDomainObject(EPRole.class, id, null); + } + + // TODO: refactor + private static final String getAppRoleSqlFormat = "SELECT * FROM fn_role where APP_ID = %s AND APP_ROLE_ID = %s"; + + @SuppressWarnings("unchecked") + public EPRole getRole(Long appId, Long appRoleid) { + if (appId == null || appRoleid == null) { + logger.error(EELFLoggerDelegate.errorLogger, String.format( + "getRole does not support null appId or roleId. appRoleid=%s, appRoleid=%s", appId, appRoleid)); + return null; + } + + String sql = String.format(getAppRoleSqlFormat, appId, appRoleid); + + List roles = (List) dataAccessService.executeSQLQuery(sql, EPRole.class, null); + int resultsCount = roles.size(); + if (resultsCount > 1) { + logger.error(EELFLoggerDelegate.errorLogger, + String.format( + "search by appId=%s, appRoleid=%s should have returned 0 or 1 results. Got %d. This is an internal server error.", + appId, appRoleid, resultsCount)); + logger.error(EELFLoggerDelegate.errorLogger, + "Trying to recover from duplicates by returning the first search result. This issue should be treated, it is probably not critical because duplicate roles should be similar."); + return roles.get(0); + } else if (resultsCount == 1) { + return roles.get(0); + } + return null; + } + + @SuppressWarnings("unchecked") + public EPRole getAppRole(String roleName, Long appId) { + + final Map params = new HashMap(); + final Map portalParams = new HashMap(); + List roles = null; + params.put("appId", appId.toString()); + params.put("roleName", roleName); + portalParams.put("appRoleName", roleName); + if (appId == 1 || roleName.equals(PortalConstants.ADMIN_ROLE)) { + roles = (List) dataAccessService.executeNamedQuery("getPortalAppRoles", portalParams, null); + } else if (appId != 1 && !roleName.equals(PortalConstants.ADMIN_ROLE)) { + roles = (List) dataAccessService.executeNamedQuery("getAppRoles", params, null); + } + int resultsCount = roles.size(); + if (resultsCount > 1) { + logger.error(EELFLoggerDelegate.errorLogger, + "Trying to recover from duplicates by returning the first search result. This issue should be treated, it is probably not critical because duplicate roles should be similar."); + return roles.get(0); + } else if (resultsCount == 1) { + return roles.get(0); + } + return null; + } + + public void saveRole(EPRole domainRole) { + getDataAccessService().saveDomainObject(domainRole, null); + } + + public void deleteRole(EPRole domainRole) { + getDataAccessService().deleteDomainObject(domainRole, null); + } + + @SuppressWarnings("unchecked") + public List getAvailableRoles() { + return getDataAccessService().getList(EPRole.class, null); + } + + public DataAccessService getDataAccessService() { + return dataAccessService; + } + + public void setDataAccessService(DataAccessService dataAccessService) { + this.dataAccessService = dataAccessService; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/FunctionalMenuService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/FunctionalMenuService.java index 0fa790c5..c9aac85e 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/FunctionalMenuService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/FunctionalMenuService.java @@ -1,58 +1,58 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.FunctionalMenuItemWithAppID; -import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; -import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItem; -import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItemJson; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; -import org.openecomp.portalapp.portal.transport.FunctionalMenuItemWithRoles; -import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; - -public interface FunctionalMenuService { - List getFunctionalMenuItems (EPUser user); - // return all active menu items - List getFunctionalMenuItems (); - // return all active menu items. If all is true, return all active and inactive menu items. - List getFunctionalMenuItems(Boolean all); - // return all active Functional menu items for Notification Tree in User Notification . If all is true, return all active menu items. - List getFunctionalMenuItemsForNotificationTree(Boolean all); - List getFunctionalMenuItemsForApp (Integer appId); - List getFunctionalMenuItemsForUser (String orgUserId); - FunctionalMenuItem getFunctionalMenuItemDetails (Integer menuid); - FieldsValidator createFunctionalMenuItem (FunctionalMenuItemWithRoles menuItemJson); - FieldsValidator editFunctionalMenuItem (FunctionalMenuItemWithRoles menuItemJson); - FieldsValidator deleteFunctionalMenuItem (Long menuId); - FieldsValidator regenerateAncestorTable (); - //Methods relevant to favorites - FieldsValidator setFavoriteItem(FavoritesFunctionalMenuItem menuItemJson); - List getFavoriteItems(Long userId); - FieldsValidator removeFavoriteItem (Long userId, Long menuId); - List transformFunctionalMenuItemWithAppIDToFunctionalMenuItem(List functionalMenuItemWithAppIDList); - List getFunctionalMenuRole(); - //Assign URLs under Help Menu - void assignHelpURLs(List menuItems); - List getUserAppRolesList(String userId); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.FunctionalMenuItemWithAppID; +import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; +import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItem; +import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItemJson; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItemWithRoles; +import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; + +public interface FunctionalMenuService { + List getFunctionalMenuItems (EPUser user); + // return all active menu items + List getFunctionalMenuItems (); + // return all active menu items. If all is true, return all active and inactive menu items. + List getFunctionalMenuItems(Boolean all); + // return all active Functional menu items for Notification Tree in User Notification . If all is true, return all active menu items. + List getFunctionalMenuItemsForNotificationTree(Boolean all); + List getFunctionalMenuItemsForApp (Integer appId); + List getFunctionalMenuItemsForUser (String orgUserId); + FunctionalMenuItem getFunctionalMenuItemDetails (Integer menuid); + FieldsValidator createFunctionalMenuItem (FunctionalMenuItemWithRoles menuItemJson); + FieldsValidator editFunctionalMenuItem (FunctionalMenuItemWithRoles menuItemJson); + FieldsValidator deleteFunctionalMenuItem (Long menuId); + FieldsValidator regenerateAncestorTable (); + //Methods relevant to favorites + FieldsValidator setFavoriteItem(FavoritesFunctionalMenuItem menuItemJson); + List getFavoriteItems(Long userId); + FieldsValidator removeFavoriteItem (Long userId, Long menuId); + List transformFunctionalMenuItemWithAppIDToFunctionalMenuItem(List functionalMenuItemWithAppIDList); + List getFunctionalMenuRole(); + //Assign URLs under Help Menu + void assignHelpURLs(List menuItems); + List getUserAppRolesList(String userId); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/FunctionalMenuServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/FunctionalMenuServiceImpl.java index a6a11209..6a71bc71 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/FunctionalMenuServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/FunctionalMenuServiceImpl.java @@ -1,963 +1,963 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import javax.annotation.PostConstruct; -import javax.servlet.http.HttpServletResponse; - -import org.apache.commons.lang3.StringUtils; -import org.hibernate.Criteria; -import org.hibernate.Query; -import org.hibernate.Session; -import org.hibernate.SessionFactory; -import org.hibernate.Transaction; -import org.hibernate.criterion.Projections; -import org.hibernate.criterion.Restrictions; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.FunctionalMenuItemWithAppID; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; -import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItem; -import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItemJson; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; -import org.openecomp.portalapp.portal.transport.FunctionalMenuItemWithRoles; -import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; - -@Service("functionalMenuService") -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class FunctionalMenuServiceImpl implements FunctionalMenuService { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FunctionalMenuServiceImpl.class); - - private Long ACCOUNT_ADMIN_ROLE_ID = 999L; - private String RESTRICTED_APP_ROLE_ID = "900"; - - @Autowired - private DataAccessService dataAccessService; - @Autowired - private SessionFactory sessionFactory; - - @PostConstruct - private void init() { - try { - ACCOUNT_ADMIN_ROLE_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID)); - RESTRICTED_APP_ROLE_ID = SystemProperties.getProperty(EPCommonSystemProperties.RESTRICTED_APP_ROLE_ID); - } catch(Exception e) { - } - } - - public List getFunctionalMenuItems(EPUser user) { - List menuItems = new ArrayList(); - return menuItems; - } - - public List getFunctionalMenuItems() { - return getFunctionalMenuItems(false); - } - - public List getFunctionalMenuItems(Boolean all) { - // Divide this into 2 queries: one which returns the bottom-level menu items associated with Restricted apps, - // and one that returns all the other menu items. Then we can easily add the boolean flag - // restrictedApp to each FunctionalMenuItem, to be used by the front end. - String activeWhereClause = ""; - if (! all) { - activeWhereClause = " AND UPPER(m.active_yn) = 'Y' "; - } - String sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn, r.app_id " - + "FROM fn_menu_functional m, fn_menu_functional_roles r " - + "WHERE m.menu_id = r.menu_id " - + activeWhereClause //" AND UPPER(m.active_yn) = 'Y' " - + " AND r.role_id != '" + RESTRICTED_APP_ROLE_ID + "' " - + " UNION " - + " SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn,-1 app_id " - + " FROM fn_menu_functional m " - + " WHERE m.url='' " - + activeWhereClause; //" AND UPPER(m.active_yn) = 'Y' "; - logQuery(sql); - - @SuppressWarnings("unchecked") - List menuItemsWithAppIdList = dataAccessService.executeSQLQuery(sql,FunctionalMenuItemWithAppID.class, null); - List menuItems = new ArrayList<>(); - menuItems = transformFunctionalMenuItemWithAppIDToFunctionalMenuItem(menuItemsWithAppIdList); - for (FunctionalMenuItem menuItem : menuItems) { - menuItem.restrictedApp = false; - } - - sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn, r.app_id " - + "FROM fn_menu_functional m, fn_menu_functional_roles r " - + "WHERE m.menu_id = r.menu_id " - + activeWhereClause //" AND UPPER(m.active_yn) = 'Y' " - + " AND r.role_id = '" + RESTRICTED_APP_ROLE_ID + "' "; - logQuery(sql); - @SuppressWarnings("unchecked") - List menuItems2 = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); - for (FunctionalMenuItem menuItem : menuItems2) { - menuItem.restrictedApp = true; - menuItems.add(menuItem); - } - - return menuItems; - } - - - public List getFunctionalMenuItemsForNotificationTree(Boolean all) { - // Divide this into 2 queries: one which returns the bottom-level menu items associated with Restricted apps, - // and one that returns all the other menu items which are active. Then we can easily add the boolean flag - // restrictedApp to each FunctionalMenuItem, to be used by the front end. - String activeWhereClause = ""; - if (! all) { - activeWhereClause = " AND UPPER(m.active_yn) = 'Y' "; - } - String sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn, r.app_id " - + "FROM fn_menu_functional m, fn_menu_functional_roles r " - + "WHERE m.menu_id = r.menu_id " - + activeWhereClause + " AND UPPER(m.active_yn) = 'Y' " - + " AND r.role_id != '" + RESTRICTED_APP_ROLE_ID + "' " - + " UNION " - + " SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn,-1 app_id " - + " FROM fn_menu_functional m " - + " WHERE m.url='' " - + activeWhereClause + " AND UPPER(m.active_yn) = 'Y' "; - logQuery(sql); - - @SuppressWarnings("unchecked") - List menuItemsWithAppIdList = dataAccessService.executeSQLQuery(sql,FunctionalMenuItemWithAppID.class, null); - List menuItems = new ArrayList<>(); - menuItems = transformFunctionalMenuItemWithAppIDToFunctionalMenuItem(menuItemsWithAppIdList); - for (FunctionalMenuItem menuItem : menuItems) { - menuItem.restrictedApp = false; - } - - sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn, r.app_id " - + "FROM fn_menu_functional m, fn_menu_functional_roles r " - + "WHERE m.menu_id = r.menu_id " - + activeWhereClause + " AND UPPER(m.active_yn) = 'Y' " - + " AND r.role_id = '" + RESTRICTED_APP_ROLE_ID + "' "; - logQuery(sql); - @SuppressWarnings("unchecked") - List menuItems2 = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); - for (FunctionalMenuItem menuItem : menuItems2) { - menuItem.restrictedApp = true; - menuItems.add(menuItem); - } - - return menuItems; - } - - public List getFunctionalMenuItemsForApp(Integer appId) { - String sql = "SELECT DISTINCT m1.menu_id, m1.column_num, m1.text, m1.parent_menu_id, m1.url, m.active_yn " - + " FROM fn_menu_functional m, fn_menu_functional m1, fn_menu_functional_ancestors a, fn_menu_functional_roles mr " - + " WHERE " + " mr.app_id='" + appId + "' " + " AND mr.menu_id = m.menu_id " + " AND UPPER(m.active_yn) = 'Y'" - + " AND UPPER(m1.active_yn) ='Y'" + " AND a.menu_id = m.menu_id " + " AND a.ancestor_menu_id = m1.menu_id"; - logQuery(sql); - logger.debug(EELFLoggerDelegate.debugLogger, "getFunctionalMenuItemsForApp: logged the query"); - - @SuppressWarnings("unchecked") - List menuItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); - - return menuItems; - } - /** - * convert List of FunctionalMenuItemWithAppID into List of FunctionalMenuItem - * - */ - public List transformFunctionalMenuItemWithAppIDToFunctionalMenuItem(List functionalMenuItemWithAppIDList) { - List functionalMenuItemList = new ArrayList(); - for (FunctionalMenuItemWithAppID functionalMenuItemWithAppID : functionalMenuItemWithAppIDList) { - FunctionalMenuItem menuItem = new FunctionalMenuItem(); - menuItem.menuId=functionalMenuItemWithAppID.menuId; - menuItem.column=functionalMenuItemWithAppID.column; - menuItem.text=functionalMenuItemWithAppID.text; - menuItem.parentMenuId=functionalMenuItemWithAppID.parentMenuId; - menuItem.url=functionalMenuItemWithAppID.url; - menuItem.active_yn=functionalMenuItemWithAppID.active_yn; - menuItem.appid=functionalMenuItemWithAppID.appid; - menuItem.setRoles(functionalMenuItemWithAppID.roles); - menuItem.restrictedApp=functionalMenuItemWithAppID.restrictedApp; - functionalMenuItemList.add(menuItem); - } - return functionalMenuItemList; - } - - public List getFunctionalMenuItemsForUser(String orgUserId) { - // m represents the functional menu items that are the leaf nodes - // m1 represents the functional menu items for all the nodes - - // Divide this into 2 queries: one which returns the bottom-level menu items associated with Restricted apps, - // and one that returns all the other menu items. Then we can easily add the boolean flag - // restrictedApp to each FunctionalMenuItem, to be used by the front end. - String sql = "SELECT DISTINCT m1.menu_id, m1.column_num, m1.text, m1.parent_menu_id, m1.url, m.active_yn " - + " FROM fn_menu_functional m, fn_menu_functional m1, fn_menu_functional_ancestors a, " - + " fn_menu_functional_roles mr, fn_user u , fn_user_role ur " + " WHERE " + " u.org_user_id='" + orgUserId - + "' " + " AND u.user_id = ur.user_id " + " AND ur.app_id = mr.app_id " + - // " AND ur.role_id = mr.role_id " + - " AND (ur.role_id = mr.role_id " + " OR ur.role_id = '" + ACCOUNT_ADMIN_ROLE_ID + "') " - + " AND m.menu_id = mr.menu_id " + " AND UPPER(m.active_yn) = 'Y'" + " AND UPPER(m1.active_yn) ='Y' " - + " AND a.menu_id = m.menu_id " + " AND a.ancestor_menu_id = m1.menu_id " - + " UNION " - // the ancestors of the restricted app menu items - + " select m1.menu_id, m1.column_num, m1.text, m1.parent_menu_id, m1.url, m1.active_yn " - + " FROM fn_menu_functional m, fn_menu_functional_roles mr, fn_menu_functional m1, " - + " fn_menu_functional_ancestors a " - + " where a.menu_id = m.menu_id " - + " AND a.ancestor_menu_id = m1.menu_id " - + " AND m.menu_id != m1.menu_id " - + " AND m.menu_id = mr.menu_id " - + " AND mr.role_id = '" + RESTRICTED_APP_ROLE_ID + "' " - + " AND UPPER(m.active_yn) = 'Y'" + " AND UPPER(m1.active_yn) ='Y' " - // Add the Favorites menu item - + " UNION " - + " SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn " - + " FROM fn_menu_functional m " - + " WHERE m.text in ('Favorites','Get Access','Contact Us','Support','User Guide','Help')"; - - logQuery(sql); - logger.debug(EELFLoggerDelegate.debugLogger, "getFunctionalMenuItemsForUser: logged the query"); - - @SuppressWarnings("unchecked") - List menuItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); - for (FunctionalMenuItem menuItem : menuItems) { - menuItem.restrictedApp = false; - } - - sql = " SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn " - + " FROM fn_menu_functional m, fn_menu_functional_roles r " - + " WHERE m.menu_id = r.menu_id " - + " AND UPPER(m.active_yn) = 'Y' " - + " AND r.role_id = '" + RESTRICTED_APP_ROLE_ID + "' "; - logQuery(sql); - @SuppressWarnings("unchecked") - List menuItems2 = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); - for (FunctionalMenuItem menuItem : menuItems2) { - menuItem.restrictedApp = true; - menuItems.add(menuItem); - } - - return menuItems; - } - - public FunctionalMenuItem getFunctionalMenuItemDetails(Integer menuid) { - // First, fill in the fields that apply to all menu items - - String sql = "SELECT * FROM fn_menu_functional WHERE menu_id = '" + menuid + "'"; - logQuery(sql); - @SuppressWarnings("unchecked") - List menuItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); - FunctionalMenuItem menuItem = (menuItems == null || menuItems.isEmpty() ? null : menuItems.get(0)); - // If it is a bottom-level menu item, must fill in the appid and the - // roles - sql = "SELECT * FROM fn_menu_functional_roles WHERE menu_id = '" + menuid + "'"; - logQuery(sql); - @SuppressWarnings("unchecked") - List roleItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuRole.class, null); - if (roleItems.size() > 0) { - Integer appid = roleItems.get(0).appId; - menuItem.appid = appid; - List roles = new ArrayList(); - for (FunctionalMenuRole roleItem : roleItems) { - logger.debug(EELFLoggerDelegate.debugLogger, "LR: app_id: " + roleItem.appId + "; role_id: " + roleItem.roleId + "\n"); - roles.add(roleItem.roleId); - } - menuItem.setRoles(roles); - } - - return menuItem; - } - - private FieldsValidator menuItemFieldsChecker(FunctionalMenuItemWithRoles menuItemJson) { - FieldsValidator fieldsValidator = new FieldsValidator(); - try { - // TODO: validate all the fields - @SuppressWarnings("unchecked") - List functionalMenuItems = dataAccessService.getList(FunctionalMenuItem.class, - " where text = '" + menuItemJson.text + "'", null, null); - - boolean dublicatedName = false; - for (FunctionalMenuItem fnMenuItem : functionalMenuItems) { - if (menuItemJson.menuId != null && menuItemJson.menuId.equals(fnMenuItem.menuId)) { - // FunctionalMenuItem should not be compared with itself - continue; - } - - if (!dublicatedName && fnMenuItem.text.equalsIgnoreCase(menuItemJson.text)) { - dublicatedName = true; - break; - } - } - if (dublicatedName) { - fieldsValidator.addProblematicFieldName("text"); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); - fieldsValidator.errorCode = new Long(EPCommonSystemProperties.DUBLICATED_FIELD_VALUE_ECOMP_ERROR); - logger.debug(EELFLoggerDelegate.debugLogger, "In menuItemFieldsChecker, Error: we have an duplicate text field"); - } else if (StringUtils.isEmpty(menuItemJson.text) && menuItemJson.menuId == null) { - // text must be non empty for a create. For an edit, can be empty, which means it is a move request. - // a null menuId indicates a create. - fieldsValidator.addProblematicFieldName("text"); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); - logger.debug(EELFLoggerDelegate.debugLogger, "In menuItemFieldsChecker, Error: we have an empty text field"); - } else { - // The url, appid, and roles must either be all filled or all empty. - Boolean urlIsEmpty = StringUtils.isEmpty(menuItemJson.url); - Boolean rolesIsEmpty = menuItemJson.getRoles() == null || menuItemJson.getRoles().isEmpty(); - Boolean appidIsEmpty = menuItemJson.appid == null || menuItemJson.appid == 0; - logger.debug(EELFLoggerDelegate.debugLogger, "LR: menuItemfieldsChecker: urlIsEmpty: " + urlIsEmpty + "; rolesIsEmpty: " + rolesIsEmpty + "; appidIsEmpty: " + appidIsEmpty +"\n"); - if (!((urlIsEmpty && rolesIsEmpty && appidIsEmpty) || (!urlIsEmpty && !rolesIsEmpty && !appidIsEmpty))) - { - fieldsValidator.addProblematicFieldName("url,roles,appid"); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); - logger.debug(EELFLoggerDelegate.debugLogger, "In menuItemFieldsChecker, Error: we don't have: either all 3 fields empty or all 3 fields nonempty"); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "In menuItemFieldsChecker, Success: either all 3 fields empty or all 3 fields nonempty"); - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while validating the FunctionalMenuItems. Details: " + EcompPortalUtils.getStackTrace(e)); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - - return fieldsValidator; - } - - // Turn foreign key checks on or off - protected void setForeignKeys(Session localSession, Boolean on) { - String keyCheck = "0"; - if (on) { - keyCheck = "1"; - } - String sql = "set FOREIGN_KEY_CHECKS="+keyCheck; - logQuery(sql); - Query query = localSession.createSQLQuery(sql); - query.executeUpdate(); - } - - public FieldsValidator createFunctionalMenuItem(FunctionalMenuItemWithRoles menuItemJson) { - FieldsValidator fieldsValidator = menuItemFieldsChecker(menuItemJson); - if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - logger.debug(EELFLoggerDelegate.debugLogger, "LR: createFunctionalMenuItem: test 1"); - boolean result = false; - Session localSession = null; - Transaction transaction = null; - try { - FunctionalMenuItem menuItem = new FunctionalMenuItem(); - menuItem.appid = menuItemJson.appid; - menuItem.setRoles(menuItemJson.getRoles()); - menuItem.url = menuItemJson.url; - menuItem.text = menuItemJson.text; - menuItem.parentMenuId = menuItemJson.parentMenuId; - menuItem.active_yn = "Y"; - localSession = sessionFactory.openSession(); - - // If the app is disabled, deactivate the menu item. - if (menuItemJson.appid != null) { - Long appidLong = Long.valueOf(menuItemJson.appid); - EPApp app = (EPApp) localSession.get(EPApp.class, appidLong); - if (app != null && ! app.getEnabled()) { - menuItem.active_yn = "N"; - } - } - - // Set the column number to 1 higher than the highest column - // number under this parent. - Criteria criteria = localSession.createCriteria(FunctionalMenuItem.class); - criteria.setProjection(Projections.max("column")); - criteria.add(Restrictions.eq("parentMenuId", menuItem.parentMenuId)); - Integer maxColumn = (Integer) criteria.uniqueResult(); - if (maxColumn == null) { - maxColumn = 0; - } - menuItem.column = maxColumn + 1; - logger.debug(EELFLoggerDelegate.debugLogger, "about to create menu item: " + menuItem.toString()); - - transaction = localSession.beginTransaction(); - // localSession.saveOrUpdate(newMenuItem); - localSession.save(menuItem); - Long menuid = menuItem.menuId; - menuItemJson.menuId = menuid; - logger.debug(EELFLoggerDelegate.debugLogger, "after saving menu object, new id: " + menuid); - - // Next, save all the roles - - addRoles(menuItemJson, localSession); - transaction.commit(); - result = true; - } catch (Exception e) { - EcompPortalUtils.rollbackTransaction(transaction, - "createFunctionalMenuItem rollback, exception = " + e); - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "createFunctionalMenuItem"); - } - if (result) { - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "LR: createFunctionalMenuItem: no result. setting httpStatusCode to " - + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - } else { - logger.error(EELFLoggerDelegate.errorLogger, "FunctionalMenuServiceImpl.createFunctionalMenuItem: bad request"); - } - return fieldsValidator; - } - - /* Add all the roles in the menu item to the database */ - public void addRoles(FunctionalMenuItemWithRoles menuItemJson, Session localSession) { - logger.debug(EELFLoggerDelegate.debugLogger, "entering addRoles."); - List roles = menuItemJson.getRoles(); - if (roles != null && roles.size() > 0) { - Integer appid = menuItemJson.appid; - Long menuid = menuItemJson.menuId; - for (Integer roleid : roles) { - logger.debug(EELFLoggerDelegate.debugLogger, "about to create record for role: " + roleid); - FunctionalMenuRole role = new FunctionalMenuRole(); - role.appId = appid; - role.menuId = menuid; - role.roleId = roleid; - localSession.save(role); - logger.debug(EELFLoggerDelegate.debugLogger, "after saving role menu object, new id: " + role.id); - } - } - } - - /* Delete all the roles associated with the menu item from the database */ - public void deleteRoles(Long menuId) { - dataAccessService.deleteDomainObjects(FunctionalMenuRole.class, "menu_id='" + menuId + "'", null); - } - - /* Delete all favorites associated with the menu item from the database */ - public void deleteFavorites(Long menuId) { - dataAccessService.deleteDomainObjects(FavoritesFunctionalMenuItem.class, "menu_id='" + menuId + "'", null); - } - - private Boolean parentMenuIdEqual(Integer menuId1, Integer menuId2) { - return ((menuId1 == null && menuId2 == null) || (menuId1 != null && menuId1.equals(menuId2))); - } - - private void updateColumnForSiblings(Session localSession, Long menuId, Integer oldParentMenuId, - Integer newParentMenuId, Integer oldColumn, Integer newColumn) { - logger.debug(EELFLoggerDelegate.debugLogger, "entering updateColumnForSiblings"); - Criteria criteria = localSession.createCriteria(FunctionalMenuItem.class); - criteria.add(Restrictions.ne("menuId", menuId)); - if (parentMenuIdEqual(oldParentMenuId, newParentMenuId)) { - logger.debug(EELFLoggerDelegate.debugLogger, "moving under the same parent"); - // We are moving to a new position under the same parent - if (newParentMenuId == null) { - logger.debug(EELFLoggerDelegate.debugLogger, "newParentMenuId is null, so using isNull"); - criteria.add(Restrictions.isNull("parentMenuId")); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "newParentMenuId is NOT null, so using eq"); - criteria.add(Restrictions.eq("parentMenuId", newParentMenuId)); - } - if (oldColumn > newColumn) { - logger.debug(EELFLoggerDelegate.debugLogger, "moving to a lower column under the same parent"); - // We are moving to a lower column under the same parent - criteria.add(Restrictions.ge("column", newColumn)); - criteria.add(Restrictions.lt("column", oldColumn)); - @SuppressWarnings("unchecked") - List menuItems = criteria.list(); - for (FunctionalMenuItem menuItem : menuItems) { - menuItem.column += 1; - localSession.save(menuItem); - } - } else if (oldColumn < newColumn) { - logger.debug(EELFLoggerDelegate.debugLogger, "moving to a higher column under the same parent"); - // We are moving to a higher column under the same parent - criteria.add(Restrictions.gt("column", oldColumn)); - criteria.add(Restrictions.le("column", newColumn)); - @SuppressWarnings("unchecked") - List menuItems = criteria.list(); - for (FunctionalMenuItem menuItem : menuItems) { - menuItem.column -= 1; - localSession.save(menuItem); - } - } else { - // No info has changed - logger.debug(EELFLoggerDelegate.debugLogger, "no info has changed, so we are not moving"); - } - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "moving under a new parent"); - // We are moving under a new parent. - - // Adjust the children under the old parent - logger.debug(EELFLoggerDelegate.debugLogger, "about to adjust the children under the old parent"); - - // If the parentId is null, must check for its children differently - if (oldParentMenuId == null) { - logger.debug(EELFLoggerDelegate.debugLogger, "oldParentMenuId is null, so using isNull"); - criteria.add(Restrictions.isNull("parentMenuId")); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "oldParentMenuId is NOT null, so using eq"); - criteria.add(Restrictions.eq("parentMenuId", oldParentMenuId)); - } - - criteria.add(Restrictions.gt("column", oldColumn)); - @SuppressWarnings("unchecked") - List menuItems1 = criteria.list(); - for (FunctionalMenuItem menuItem : menuItems1) { - menuItem.column -= 1; - localSession.save(menuItem); - } - // Adjust the children under the new parent. - logger.debug(EELFLoggerDelegate.debugLogger, "about to adjust the children under the new parent"); - logger.debug(EELFLoggerDelegate.debugLogger, "get all menu items where menuId!=" + menuId + "; parentMenuId==" + newParentMenuId - + "; column>=" + newColumn); - criteria = localSession.createCriteria(FunctionalMenuItem.class); - criteria.add(Restrictions.ne("menuId", menuId)); - if (newParentMenuId == null) { - logger.debug(EELFLoggerDelegate.debugLogger, "newParentMenuId is null, so using isNull"); - criteria.add(Restrictions.isNull("parentMenuId")); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "newParentMenuId is NOT null, so using eq"); - criteria.add(Restrictions.eq("parentMenuId", newParentMenuId)); - } - - criteria.add(Restrictions.ge("column", newColumn)); - @SuppressWarnings("unchecked") - List menuItems2 = criteria.list(); - if (menuItems2 != null) { - logger.debug(EELFLoggerDelegate.debugLogger, "found " + menuItems2.size() + " menu items"); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "found null menu items"); - } - for (FunctionalMenuItem menuItem : menuItems2) { - menuItem.column += 1; - localSession.save(menuItem); - } - } - logger.debug(EELFLoggerDelegate.debugLogger, "done with updateColumnForSiblings"); - } - - public void removeAppInfo(Session localSession, Long menuId) { - // Remove the url, role, and app info from a menu item - FunctionalMenuItem menuItem = (FunctionalMenuItem) localSession.get(FunctionalMenuItem.class, menuId); - menuItem.url = ""; - deleteRoles(menuId); - } - - public FieldsValidator editFunctionalMenuItem(FunctionalMenuItemWithRoles menuItemJson) { - boolean result = false; - Session localSession = null; - Transaction transaction = null; - Long menuId = menuItemJson.menuId; - - logger.debug(EELFLoggerDelegate.debugLogger, "LR: editFunctionalMenuItem: test 1"); - FieldsValidator fieldsValidator = menuItemFieldsChecker(menuItemJson); - if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - // TODO: make sure menuId is here. And, it might not already exist - // in db table. - if (menuId == null) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); - logger.error(EELFLoggerDelegate.errorLogger, "FunctionalMenuServiceImpl.editFunctionalMenuItem: bad request"); - } else { - // To simplify the code, assume we will have a transaction - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - - // Get the existing info associated with menuItem from the DB - FunctionalMenuItem menuItem = (FunctionalMenuItem) localSession.get(FunctionalMenuItem.class, menuId); - Integer oldColumn = menuItem.column; - Integer oldParentMenuId = menuItem.parentMenuId; - Integer newColumn = menuItemJson.column; - Integer newParentMenuId = menuItemJson.parentMenuId; - - logger.debug(EELFLoggerDelegate.debugLogger, "prev info: column: " + oldColumn + "; parentMenuId: " + oldParentMenuId); - - if (menuItemJson.appid != null && menuItemJson.getRoles() != null && !menuItemJson.getRoles().isEmpty() - && menuItemJson.url != null && !menuItemJson.url.isEmpty() && menuItemJson.text != null - && !menuItemJson.text.isEmpty()) { - // Scenario: appid, roles, url and text are all non-null. - // This menu item is associated with an app. - // (Note: this should only occur for a bottom-level menu - // item with no children.) - // 1) Remove all the records from fn_menu_functional_role - // for this menuId. - // 2) Add records to the fn_menu_function_role table for the - // appId and each roleId - // 3) Update the url and text for this menu item. - - // Because of foreign key constraints, delete the roles, - // then update the menuItem then add the roles. - deleteRoles(menuId); - // Assumption: this is not a Move, so don't change the - // parentMenuId and column. - menuItem.appid = menuItemJson.appid; - menuItem.setRoles(menuItemJson.getRoles()); - menuItem.url = menuItemJson.url; - menuItem.text = menuItemJson.text; - - // If the app is disabled, deactivate the menu item. - Long appidLong = Long.valueOf(menuItemJson.appid); - EPApp app = (EPApp) localSession.get(EPApp.class, appidLong); - if (app != null && ! app.getEnabled()) { - menuItem.active_yn = "N"; - } else { - menuItem.active_yn = "Y"; - } - - - localSession.update(menuItem); - addRoles(menuItemJson, localSession); - - } else if (menuItemJson.appid == null && (menuItemJson.getRoles() == null || menuItemJson.getRoles().isEmpty()) - && (menuItemJson.url == null || menuItemJson.url.isEmpty()) && menuItemJson.text != null - && !menuItemJson.text.isEmpty()) { - // Scenario: appid, roles and url are all null; text is - // non-null. - // This menu item is NOT associated with an app. - // 1) Remove all the records from fn_menu_functional_role - // for this menuId - // (in case it was previously associated with an app). - // 2) Update the text for this menu item. - // 3) Set the url to "" - deleteRoles(menuId); - // Assumption: this is not a Move, so don't change the - // parentMenuId and column. - menuItem.text = menuItemJson.text; - menuItem.url = ""; - menuItem.active_yn = "Y"; - localSession.update(menuItem); - - } else if (newColumn != null) { - // This is a "move" request. - // Menu item has been moved to a different position under - // the same parent, or under a new parent. - logger.debug(EELFLoggerDelegate.debugLogger, "Doing a move operation."); - if (parentMenuIdEqual(oldParentMenuId, newParentMenuId)) { - // The parent is the same. We have just changed the - // column - logger.debug(EELFLoggerDelegate.debugLogger, "moving under the same parent"); - menuItem.column = newColumn; - localSession.update(menuItem); - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "moving under a different parent"); - menuItem.parentMenuId = newParentMenuId; - menuItem.column = newColumn; - localSession.update(menuItem); - // If we are moving under a new parent, must delete any - // app/role info from - // the new parent, since it is no longer a leaf menu - // item and cannot have app info - // associated with it. The front end will have warned - // the user and gotten confirmation. - if (menuItemJson.parentMenuId != null) { - Long parentMenuIdLong = new Long(menuItemJson.parentMenuId); - removeAppInfo(localSession, parentMenuIdLong); - // deleteRoles(parentMenuIdLong); - } - } - // must update the column for all old and new sibling menu - // items - updateColumnForSiblings(localSession, menuId, oldParentMenuId, newParentMenuId, oldColumn, - newColumn); - } - - transaction.commit(); - logger.debug(EELFLoggerDelegate.debugLogger, "LR: editFunctionalMenuItem: finished committing transaction"); - result = true; - } catch (Exception e) { - EcompPortalUtils.rollbackTransaction(transaction, - "createFunctionalMenuItem rollback, exception = " + e); - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "editFunctionalMenuItem"); - } - - if (result) { - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "LR: createFunctionalMenuItem: no result. setting httpStatusCode to " - + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - } - } - - return fieldsValidator; - } - - public FieldsValidator deleteFunctionalMenuItem(Long menuId) { - FieldsValidator fieldsValidator = new FieldsValidator(); - logger.debug(EELFLoggerDelegate.debugLogger, "LR: deleteFunctionalMenuItem: test 1"); - boolean result = false; - Session localSession = null; - Transaction transaction = null; - - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - // We must turn off foreign keys before deleting a menu item. Otherwise there will be a - // constraint violation from the ancestors table. - setForeignKeys(localSession, false); - deleteRoles(menuId); - logger.debug(EELFLoggerDelegate.debugLogger, "deleteFunctionalMenuItem: after deleting roles"); - deleteFavorites(menuId); - logger.debug(EELFLoggerDelegate.debugLogger, "deleteFunctionalMenuItem: after deleting favorites"); - localSession.delete(localSession.get(FunctionalMenuItem.class, menuId)); - logger.debug(EELFLoggerDelegate.debugLogger, "deleteFunctionalMenuItem: about to commit"); - transaction.commit(); - result = true; - } catch (Exception e) { - EcompPortalUtils.rollbackTransaction(transaction, - "deleteFunctionalMenuItem rollback, exception = " + e); - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "deleteFunctionalMenuItem"); - } - if (result) { - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "LR: deleteFunctionalMenuItem: no result. setting httpStatusCode to " - + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - return fieldsValidator; - } - - // Regenerate the fn_menu_functional_ancestors table, which is used - // by the queries that return the functional menu items. - public FieldsValidator regenerateAncestorTable() { - FieldsValidator fieldsValidator = new FieldsValidator(); - Session localSession = null; - Transaction transaction = null; - - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - String sql = "DELETE FROM fn_menu_functional_ancestors"; - logQuery(sql); - Query query = localSession.createSQLQuery(sql); - query.executeUpdate(); - logger.debug(EELFLoggerDelegate.debugLogger, "regenerateAncestorTable: finished query 1"); - - sql = "ALTER TABLE fn_menu_functional_ancestors AUTO_INCREMENT=1"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - logger.debug(EELFLoggerDelegate.debugLogger, "regenerateAncestorTable: reset AUTO_INCREMENT to 1"); - - int depth = 0; - sql = "INSERT INTO fn_menu_functional_ancestors(menu_id, ancestor_menu_id, depth) " - + "SELECT m.menu_id, m.menu_id, " + depth + " FROM fn_menu_functional m"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - logger.debug(EELFLoggerDelegate.debugLogger, "regenerateAncestorTable: finished query 2"); - for (depth = 0; depth < 3; depth++) { - int depthPlusOne = depth + 1; - sql = "INSERT INTO fn_menu_functional_ancestors(menu_id, ancestor_menu_id, depth) " - + " SELECT a.menu_id, m.parent_menu_id, " + depthPlusOne - + " FROM fn_menu_functional m, fn_menu_functional_ancestors a " + " WHERE a.depth='" + depth - + "' AND " + " a.ancestor_menu_id = m.menu_id AND " + " m.parent_menu_id != '-1'"; - logQuery(sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - } - logger.debug(EELFLoggerDelegate.debugLogger, "regenerateAncestorTable: finished query 3"); - transaction.commit(); - } catch (Exception e) { - EcompPortalUtils.rollbackTransaction(transaction, - "regenerateAncestorTable rollback, exception = " + e); - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "regenerateAncestorTable"); - } - return fieldsValidator; - } - - private void logQuery(String sql) { - logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); - } - - public FieldsValidator setFavoriteItem(FavoritesFunctionalMenuItem menuItemJson) { - boolean result = false; - FieldsValidator fieldsValidator = new FieldsValidator(); - - Session localSession = null; - Transaction transaction = null; - - try { - logger.debug(EELFLoggerDelegate.debugLogger, String.format("Before adding favorite for user id:{0} and menu id:{1} ",menuItemJson.userId,menuItemJson.menuId)); - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - localSession.save(menuItemJson); - transaction.commit(); - result = true; - logger.debug(EELFLoggerDelegate.debugLogger, String.format("After adding favorite for user id:{0} and menu id:{1} ",menuItemJson.userId,menuItemJson.menuId)); - } catch (Exception e) { - EcompPortalUtils.rollbackTransaction(transaction,"setFavoriteItem rollback, exception = " + e); - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "setFavoriteItem"); - } - - if(result) { - } - else { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - - return fieldsValidator; - } - - public List getFavoriteItems(Long userId) { - try { - logger.debug(EELFLoggerDelegate.debugLogger, "Before getting favorites for user id: " + userId); - - // Divide this into 2 queries: one which returns the favorites items associated with Restricted apps, - // and one that returns all the other favorites items. Then we can easily add the boolean flag - // restrictedApp to each FavoritesFunctionalMenuItemJson, to be used by the front end. - - String sql = "SELECT f.user_id,f.menu_id,m.text,m.url " - + " FROM fn_menu_favorites f, fn_menu_functional m, fn_menu_functional_roles mr " - + " WHERE f.user_id='" + userId + "' AND f.menu_id = m.menu_id " - + " AND f.menu_id = mr.menu_id " - + " AND mr.role_id = '" + RESTRICTED_APP_ROLE_ID + "' "; - - @SuppressWarnings("unchecked") - List menuItems = dataAccessService.executeSQLQuery(sql, FavoritesFunctionalMenuItemJson.class, null); - for (FavoritesFunctionalMenuItemJson menuItem : menuItems) { - menuItem.restrictedApp = true; - } - - sql = "SELECT DISTINCT f.user_id,f.menu_id,m.text,m.url " - + " FROM fn_menu_favorites f, fn_menu_functional m, fn_menu_functional_roles mr " - + " WHERE f.user_id='" + userId + "' AND f.menu_id = m.menu_id " - + " AND f.menu_id = mr.menu_id " - + " AND mr.role_id != '" + RESTRICTED_APP_ROLE_ID + "' "; - @SuppressWarnings("unchecked") - List menuItems2 = dataAccessService.executeSQLQuery(sql, FavoritesFunctionalMenuItemJson.class, null); - for (FavoritesFunctionalMenuItemJson menuItem : menuItems2) { - menuItem.restrictedApp = false; - menuItems.add(menuItem); - } - - return menuItems; - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred in FunctionalMenuServiceImpl.getFavoriteItems. Details: " + EcompPortalUtils.getStackTrace(e)); - List menuItems = new ArrayList(); - return menuItems; - } - } - - public FieldsValidator removeFavoriteItem(Long userId, Long menuId) { - boolean result = false; - FieldsValidator fieldsValidator = new FieldsValidator(); - - Session localSession = null; - Transaction transaction = null; - - try { - - FavoritesFunctionalMenuItem menuItemJson = new FavoritesFunctionalMenuItem(); - menuItemJson.userId = userId; - menuItemJson.menuId = menuId; - - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - localSession.delete(menuItemJson); - localSession.flush(); - transaction.commit(); - result = true; - logger.debug(EELFLoggerDelegate.debugLogger, String.format("After removing favorite for user id: " + userId + "; menu id: " + menuId)); - } catch (Exception e) { - EcompPortalUtils.rollbackTransaction(transaction,"removeFavoriteItem rollback, exception = " + e); - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "removeFavoriteItem"); - } - - if(result) { - } - else { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - - return fieldsValidator; - } - - @Override - public void assignHelpURLs(List menuItems) { - try { - String user_guide_link = SystemProperties.getProperty(EPCommonSystemProperties.USER_GUIDE_URL); - - for(FunctionalMenuItem menuItem: menuItems){ - if(menuItem.text.equalsIgnoreCase("Contact Us")){ - menuItem.setUrl("contactUs"); - //menuItem.setRestrictedApp(true); - } - if(menuItem.text.equalsIgnoreCase("Get Access")) { - menuItem.setUrl("getAccess"); - } - if(menuItem.text.equalsIgnoreCase("User Guide")) { - menuItem.setUrl(user_guide_link); - menuItem.setRestrictedApp(true); - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "assignHelpURLs process failed. Details: " + EcompPortalUtils.getStackTrace(e)); - } - - } - - public List getFunctionalMenuRole() { - String sql = "SELECT * from fn_menu_functional_roles"; - logQuery(sql); - logger.debug(EELFLoggerDelegate.debugLogger, "getFunctionalMenuRole: logged the query"); - - @SuppressWarnings("unchecked") - List functionalMenuRole = dataAccessService.executeSQLQuery(sql, FunctionalMenuRole.class, null); - - return functionalMenuRole; - } - - @SuppressWarnings("unchecked") - @Override - public List getUserAppRolesList(String userId) { - Map params = new HashMap<>(); - params.put("userId", userId); - - List userAppRoles = null; - try { - userAppRoles = dataAccessService - .executeNamedQuery("getUserApproles", params, null); - } catch (Exception e) { - // TODO Auto-generated catch block - logger.error(EELFLoggerDelegate.errorLogger, "getUserAppRolesList failed", e); - } - return userAppRoles; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.annotation.PostConstruct; +import javax.servlet.http.HttpServletResponse; + +import org.apache.commons.lang3.StringUtils; +import org.hibernate.Criteria; +import org.hibernate.Query; +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.Transaction; +import org.hibernate.criterion.Projections; +import org.hibernate.criterion.Restrictions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.FunctionalMenuItemWithAppID; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.transport.BusinessCardApplicationRole; +import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItem; +import org.openecomp.portalapp.portal.transport.FavoritesFunctionalMenuItemJson; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItemWithRoles; +import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; + +@Service("functionalMenuService") +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class FunctionalMenuServiceImpl implements FunctionalMenuService { + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FunctionalMenuServiceImpl.class); + + private Long ACCOUNT_ADMIN_ROLE_ID = 999L; + private String RESTRICTED_APP_ROLE_ID = "900"; + + @Autowired + private DataAccessService dataAccessService; + @Autowired + private SessionFactory sessionFactory; + + @PostConstruct + private void init() { + try { + ACCOUNT_ADMIN_ROLE_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID)); + RESTRICTED_APP_ROLE_ID = SystemProperties.getProperty(EPCommonSystemProperties.RESTRICTED_APP_ROLE_ID); + } catch(Exception e) { + } + } + + public List getFunctionalMenuItems(EPUser user) { + List menuItems = new ArrayList(); + return menuItems; + } + + public List getFunctionalMenuItems() { + return getFunctionalMenuItems(false); + } + + public List getFunctionalMenuItems(Boolean all) { + // Divide this into 2 queries: one which returns the bottom-level menu items associated with Restricted apps, + // and one that returns all the other menu items. Then we can easily add the boolean flag + // restrictedApp to each FunctionalMenuItem, to be used by the front end. + String activeWhereClause = ""; + if (! all) { + activeWhereClause = " AND UPPER(m.active_yn) = 'Y' "; + } + String sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn, r.app_id " + + "FROM fn_menu_functional m, fn_menu_functional_roles r " + + "WHERE m.menu_id = r.menu_id " + + activeWhereClause //" AND UPPER(m.active_yn) = 'Y' " + + " AND r.role_id != '" + RESTRICTED_APP_ROLE_ID + "' " + + " UNION " + + " SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn,-1 app_id " + + " FROM fn_menu_functional m " + + " WHERE m.url='' " + + activeWhereClause; //" AND UPPER(m.active_yn) = 'Y' "; + logQuery(sql); + + @SuppressWarnings("unchecked") + List menuItemsWithAppIdList = dataAccessService.executeSQLQuery(sql,FunctionalMenuItemWithAppID.class, null); + List menuItems = new ArrayList<>(); + menuItems = transformFunctionalMenuItemWithAppIDToFunctionalMenuItem(menuItemsWithAppIdList); + for (FunctionalMenuItem menuItem : menuItems) { + menuItem.restrictedApp = false; + } + + sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn, r.app_id " + + "FROM fn_menu_functional m, fn_menu_functional_roles r " + + "WHERE m.menu_id = r.menu_id " + + activeWhereClause //" AND UPPER(m.active_yn) = 'Y' " + + " AND r.role_id = '" + RESTRICTED_APP_ROLE_ID + "' "; + logQuery(sql); + @SuppressWarnings("unchecked") + List menuItems2 = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); + for (FunctionalMenuItem menuItem : menuItems2) { + menuItem.restrictedApp = true; + menuItems.add(menuItem); + } + + return menuItems; + } + + + public List getFunctionalMenuItemsForNotificationTree(Boolean all) { + // Divide this into 2 queries: one which returns the bottom-level menu items associated with Restricted apps, + // and one that returns all the other menu items which are active. Then we can easily add the boolean flag + // restrictedApp to each FunctionalMenuItem, to be used by the front end. + String activeWhereClause = ""; + if (! all) { + activeWhereClause = " AND UPPER(m.active_yn) = 'Y' "; + } + String sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn, r.app_id " + + "FROM fn_menu_functional m, fn_menu_functional_roles r " + + "WHERE m.menu_id = r.menu_id " + + activeWhereClause + " AND UPPER(m.active_yn) = 'Y' " + + " AND r.role_id != '" + RESTRICTED_APP_ROLE_ID + "' " + + " UNION " + + " SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn,-1 app_id " + + " FROM fn_menu_functional m " + + " WHERE m.url='' " + + activeWhereClause + " AND UPPER(m.active_yn) = 'Y' "; + logQuery(sql); + + @SuppressWarnings("unchecked") + List menuItemsWithAppIdList = dataAccessService.executeSQLQuery(sql,FunctionalMenuItemWithAppID.class, null); + List menuItems = new ArrayList<>(); + menuItems = transformFunctionalMenuItemWithAppIDToFunctionalMenuItem(menuItemsWithAppIdList); + for (FunctionalMenuItem menuItem : menuItems) { + menuItem.restrictedApp = false; + } + + sql = "SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn, r.app_id " + + "FROM fn_menu_functional m, fn_menu_functional_roles r " + + "WHERE m.menu_id = r.menu_id " + + activeWhereClause + " AND UPPER(m.active_yn) = 'Y' " + + " AND r.role_id = '" + RESTRICTED_APP_ROLE_ID + "' "; + logQuery(sql); + @SuppressWarnings("unchecked") + List menuItems2 = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); + for (FunctionalMenuItem menuItem : menuItems2) { + menuItem.restrictedApp = true; + menuItems.add(menuItem); + } + + return menuItems; + } + + public List getFunctionalMenuItemsForApp(Integer appId) { + String sql = "SELECT DISTINCT m1.menu_id, m1.column_num, m1.text, m1.parent_menu_id, m1.url, m.active_yn " + + " FROM fn_menu_functional m, fn_menu_functional m1, fn_menu_functional_ancestors a, fn_menu_functional_roles mr " + + " WHERE " + " mr.app_id='" + appId + "' " + " AND mr.menu_id = m.menu_id " + " AND UPPER(m.active_yn) = 'Y'" + + " AND UPPER(m1.active_yn) ='Y'" + " AND a.menu_id = m.menu_id " + " AND a.ancestor_menu_id = m1.menu_id"; + logQuery(sql); + logger.debug(EELFLoggerDelegate.debugLogger, "getFunctionalMenuItemsForApp: logged the query"); + + @SuppressWarnings("unchecked") + List menuItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); + + return menuItems; + } + /** + * convert List of FunctionalMenuItemWithAppID into List of FunctionalMenuItem + * + */ + public List transformFunctionalMenuItemWithAppIDToFunctionalMenuItem(List functionalMenuItemWithAppIDList) { + List functionalMenuItemList = new ArrayList(); + for (FunctionalMenuItemWithAppID functionalMenuItemWithAppID : functionalMenuItemWithAppIDList) { + FunctionalMenuItem menuItem = new FunctionalMenuItem(); + menuItem.menuId=functionalMenuItemWithAppID.menuId; + menuItem.column=functionalMenuItemWithAppID.column; + menuItem.text=functionalMenuItemWithAppID.text; + menuItem.parentMenuId=functionalMenuItemWithAppID.parentMenuId; + menuItem.url=functionalMenuItemWithAppID.url; + menuItem.active_yn=functionalMenuItemWithAppID.active_yn; + menuItem.appid=functionalMenuItemWithAppID.appid; + menuItem.setRoles(functionalMenuItemWithAppID.roles); + menuItem.restrictedApp=functionalMenuItemWithAppID.restrictedApp; + functionalMenuItemList.add(menuItem); + } + return functionalMenuItemList; + } + + public List getFunctionalMenuItemsForUser(String orgUserId) { + // m represents the functional menu items that are the leaf nodes + // m1 represents the functional menu items for all the nodes + + // Divide this into 2 queries: one which returns the bottom-level menu items associated with Restricted apps, + // and one that returns all the other menu items. Then we can easily add the boolean flag + // restrictedApp to each FunctionalMenuItem, to be used by the front end. + String sql = "SELECT DISTINCT m1.menu_id, m1.column_num, m1.text, m1.parent_menu_id, m1.url, m.active_yn " + + " FROM fn_menu_functional m, fn_menu_functional m1, fn_menu_functional_ancestors a, " + + " fn_menu_functional_roles mr, fn_user u , fn_user_role ur " + " WHERE " + " u.org_user_id='" + orgUserId + + "' " + " AND u.user_id = ur.user_id " + " AND ur.app_id = mr.app_id " + + // " AND ur.role_id = mr.role_id " + + " AND (ur.role_id = mr.role_id " + " OR ur.role_id = '" + ACCOUNT_ADMIN_ROLE_ID + "') " + + " AND m.menu_id = mr.menu_id " + " AND UPPER(m.active_yn) = 'Y'" + " AND UPPER(m1.active_yn) ='Y' " + + " AND a.menu_id = m.menu_id " + " AND a.ancestor_menu_id = m1.menu_id " + + " UNION " + // the ancestors of the restricted app menu items + + " select m1.menu_id, m1.column_num, m1.text, m1.parent_menu_id, m1.url, m1.active_yn " + + " FROM fn_menu_functional m, fn_menu_functional_roles mr, fn_menu_functional m1, " + + " fn_menu_functional_ancestors a " + + " where a.menu_id = m.menu_id " + + " AND a.ancestor_menu_id = m1.menu_id " + + " AND m.menu_id != m1.menu_id " + + " AND m.menu_id = mr.menu_id " + + " AND mr.role_id = '" + RESTRICTED_APP_ROLE_ID + "' " + + " AND UPPER(m.active_yn) = 'Y'" + " AND UPPER(m1.active_yn) ='Y' " + // Add the Favorites menu item + + " UNION " + + " SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn " + + " FROM fn_menu_functional m " + + " WHERE m.text in ('Favorites','Get Access','Contact Us','Support','User Guide','Help')"; + + logQuery(sql); + logger.debug(EELFLoggerDelegate.debugLogger, "getFunctionalMenuItemsForUser: logged the query"); + + @SuppressWarnings("unchecked") + List menuItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); + for (FunctionalMenuItem menuItem : menuItems) { + menuItem.restrictedApp = false; + } + + sql = " SELECT m.menu_id, m.column_num, m.text, m.parent_menu_id, m.url, m.active_yn " + + " FROM fn_menu_functional m, fn_menu_functional_roles r " + + " WHERE m.menu_id = r.menu_id " + + " AND UPPER(m.active_yn) = 'Y' " + + " AND r.role_id = '" + RESTRICTED_APP_ROLE_ID + "' "; + logQuery(sql); + @SuppressWarnings("unchecked") + List menuItems2 = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); + for (FunctionalMenuItem menuItem : menuItems2) { + menuItem.restrictedApp = true; + menuItems.add(menuItem); + } + + return menuItems; + } + + public FunctionalMenuItem getFunctionalMenuItemDetails(Integer menuid) { + // First, fill in the fields that apply to all menu items + + String sql = "SELECT * FROM fn_menu_functional WHERE menu_id = '" + menuid + "'"; + logQuery(sql); + @SuppressWarnings("unchecked") + List menuItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuItem.class, null); + FunctionalMenuItem menuItem = (menuItems == null || menuItems.isEmpty() ? null : menuItems.get(0)); + // If it is a bottom-level menu item, must fill in the appid and the + // roles + sql = "SELECT * FROM fn_menu_functional_roles WHERE menu_id = '" + menuid + "'"; + logQuery(sql); + @SuppressWarnings("unchecked") + List roleItems = dataAccessService.executeSQLQuery(sql, FunctionalMenuRole.class, null); + if (roleItems.size() > 0) { + Integer appid = roleItems.get(0).appId; + menuItem.appid = appid; + List roles = new ArrayList(); + for (FunctionalMenuRole roleItem : roleItems) { + logger.debug(EELFLoggerDelegate.debugLogger, "LR: app_id: " + roleItem.appId + "; role_id: " + roleItem.roleId + "\n"); + roles.add(roleItem.roleId); + } + menuItem.setRoles(roles); + } + + return menuItem; + } + + private FieldsValidator menuItemFieldsChecker(FunctionalMenuItemWithRoles menuItemJson) { + FieldsValidator fieldsValidator = new FieldsValidator(); + try { + // TODO: validate all the fields + @SuppressWarnings("unchecked") + List functionalMenuItems = dataAccessService.getList(FunctionalMenuItem.class, + " where text = '" + menuItemJson.text + "'", null, null); + + boolean dublicatedName = false; + for (FunctionalMenuItem fnMenuItem : functionalMenuItems) { + if (menuItemJson.menuId != null && menuItemJson.menuId.equals(fnMenuItem.menuId)) { + // FunctionalMenuItem should not be compared with itself + continue; + } + + if (!dublicatedName && fnMenuItem.text.equalsIgnoreCase(menuItemJson.text)) { + dublicatedName = true; + break; + } + } + if (dublicatedName) { + fieldsValidator.addProblematicFieldName("text"); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); + fieldsValidator.errorCode = new Long(EPCommonSystemProperties.DUBLICATED_FIELD_VALUE_ECOMP_ERROR); + logger.debug(EELFLoggerDelegate.debugLogger, "In menuItemFieldsChecker, Error: we have an duplicate text field"); + } else if (StringUtils.isEmpty(menuItemJson.text) && menuItemJson.menuId == null) { + // text must be non empty for a create. For an edit, can be empty, which means it is a move request. + // a null menuId indicates a create. + fieldsValidator.addProblematicFieldName("text"); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); + logger.debug(EELFLoggerDelegate.debugLogger, "In menuItemFieldsChecker, Error: we have an empty text field"); + } else { + // The url, appid, and roles must either be all filled or all empty. + Boolean urlIsEmpty = StringUtils.isEmpty(menuItemJson.url); + Boolean rolesIsEmpty = menuItemJson.getRoles() == null || menuItemJson.getRoles().isEmpty(); + Boolean appidIsEmpty = menuItemJson.appid == null || menuItemJson.appid == 0; + logger.debug(EELFLoggerDelegate.debugLogger, "LR: menuItemfieldsChecker: urlIsEmpty: " + urlIsEmpty + "; rolesIsEmpty: " + rolesIsEmpty + "; appidIsEmpty: " + appidIsEmpty +"\n"); + if (!((urlIsEmpty && rolesIsEmpty && appidIsEmpty) || (!urlIsEmpty && !rolesIsEmpty && !appidIsEmpty))) + { + fieldsValidator.addProblematicFieldName("url,roles,appid"); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); + logger.debug(EELFLoggerDelegate.debugLogger, "In menuItemFieldsChecker, Error: we don't have: either all 3 fields empty or all 3 fields nonempty"); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "In menuItemFieldsChecker, Success: either all 3 fields empty or all 3 fields nonempty"); + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while validating the FunctionalMenuItems. Details: " + EcompPortalUtils.getStackTrace(e)); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + + return fieldsValidator; + } + + // Turn foreign key checks on or off + protected void setForeignKeys(Session localSession, Boolean on) { + String keyCheck = "0"; + if (on) { + keyCheck = "1"; + } + String sql = "set FOREIGN_KEY_CHECKS="+keyCheck; + logQuery(sql); + Query query = localSession.createSQLQuery(sql); + query.executeUpdate(); + } + + public FieldsValidator createFunctionalMenuItem(FunctionalMenuItemWithRoles menuItemJson) { + FieldsValidator fieldsValidator = menuItemFieldsChecker(menuItemJson); + if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + logger.debug(EELFLoggerDelegate.debugLogger, "LR: createFunctionalMenuItem: test 1"); + boolean result = false; + Session localSession = null; + Transaction transaction = null; + try { + FunctionalMenuItem menuItem = new FunctionalMenuItem(); + menuItem.appid = menuItemJson.appid; + menuItem.setRoles(menuItemJson.getRoles()); + menuItem.url = menuItemJson.url; + menuItem.text = menuItemJson.text; + menuItem.parentMenuId = menuItemJson.parentMenuId; + menuItem.active_yn = "Y"; + localSession = sessionFactory.openSession(); + + // If the app is disabled, deactivate the menu item. + if (menuItemJson.appid != null) { + Long appidLong = Long.valueOf(menuItemJson.appid); + EPApp app = (EPApp) localSession.get(EPApp.class, appidLong); + if (app != null && ! app.getEnabled()) { + menuItem.active_yn = "N"; + } + } + + // Set the column number to 1 higher than the highest column + // number under this parent. + Criteria criteria = localSession.createCriteria(FunctionalMenuItem.class); + criteria.setProjection(Projections.max("column")); + criteria.add(Restrictions.eq("parentMenuId", menuItem.parentMenuId)); + Integer maxColumn = (Integer) criteria.uniqueResult(); + if (maxColumn == null) { + maxColumn = 0; + } + menuItem.column = maxColumn + 1; + logger.debug(EELFLoggerDelegate.debugLogger, "about to create menu item: " + menuItem.toString()); + + transaction = localSession.beginTransaction(); + // localSession.saveOrUpdate(newMenuItem); + localSession.save(menuItem); + Long menuid = menuItem.menuId; + menuItemJson.menuId = menuid; + logger.debug(EELFLoggerDelegate.debugLogger, "after saving menu object, new id: " + menuid); + + // Next, save all the roles + + addRoles(menuItemJson, localSession); + transaction.commit(); + result = true; + } catch (Exception e) { + EcompPortalUtils.rollbackTransaction(transaction, + "createFunctionalMenuItem rollback, exception = " + e); + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "createFunctionalMenuItem"); + } + if (result) { + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "LR: createFunctionalMenuItem: no result. setting httpStatusCode to " + + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + } else { + logger.error(EELFLoggerDelegate.errorLogger, "FunctionalMenuServiceImpl.createFunctionalMenuItem: bad request"); + } + return fieldsValidator; + } + + /* Add all the roles in the menu item to the database */ + public void addRoles(FunctionalMenuItemWithRoles menuItemJson, Session localSession) { + logger.debug(EELFLoggerDelegate.debugLogger, "entering addRoles."); + List roles = menuItemJson.getRoles(); + if (roles != null && roles.size() > 0) { + Integer appid = menuItemJson.appid; + Long menuid = menuItemJson.menuId; + for (Integer roleid : roles) { + logger.debug(EELFLoggerDelegate.debugLogger, "about to create record for role: " + roleid); + FunctionalMenuRole role = new FunctionalMenuRole(); + role.appId = appid; + role.menuId = menuid; + role.roleId = roleid; + localSession.save(role); + logger.debug(EELFLoggerDelegate.debugLogger, "after saving role menu object, new id: " + role.id); + } + } + } + + /* Delete all the roles associated with the menu item from the database */ + public void deleteRoles(Long menuId) { + dataAccessService.deleteDomainObjects(FunctionalMenuRole.class, "menu_id='" + menuId + "'", null); + } + + /* Delete all favorites associated with the menu item from the database */ + public void deleteFavorites(Long menuId) { + dataAccessService.deleteDomainObjects(FavoritesFunctionalMenuItem.class, "menu_id='" + menuId + "'", null); + } + + private Boolean parentMenuIdEqual(Integer menuId1, Integer menuId2) { + return ((menuId1 == null && menuId2 == null) || (menuId1 != null && menuId1.equals(menuId2))); + } + + private void updateColumnForSiblings(Session localSession, Long menuId, Integer oldParentMenuId, + Integer newParentMenuId, Integer oldColumn, Integer newColumn) { + logger.debug(EELFLoggerDelegate.debugLogger, "entering updateColumnForSiblings"); + Criteria criteria = localSession.createCriteria(FunctionalMenuItem.class); + criteria.add(Restrictions.ne("menuId", menuId)); + if (parentMenuIdEqual(oldParentMenuId, newParentMenuId)) { + logger.debug(EELFLoggerDelegate.debugLogger, "moving under the same parent"); + // We are moving to a new position under the same parent + if (newParentMenuId == null) { + logger.debug(EELFLoggerDelegate.debugLogger, "newParentMenuId is null, so using isNull"); + criteria.add(Restrictions.isNull("parentMenuId")); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "newParentMenuId is NOT null, so using eq"); + criteria.add(Restrictions.eq("parentMenuId", newParentMenuId)); + } + if (oldColumn > newColumn) { + logger.debug(EELFLoggerDelegate.debugLogger, "moving to a lower column under the same parent"); + // We are moving to a lower column under the same parent + criteria.add(Restrictions.ge("column", newColumn)); + criteria.add(Restrictions.lt("column", oldColumn)); + @SuppressWarnings("unchecked") + List menuItems = criteria.list(); + for (FunctionalMenuItem menuItem : menuItems) { + menuItem.column += 1; + localSession.save(menuItem); + } + } else if (oldColumn < newColumn) { + logger.debug(EELFLoggerDelegate.debugLogger, "moving to a higher column under the same parent"); + // We are moving to a higher column under the same parent + criteria.add(Restrictions.gt("column", oldColumn)); + criteria.add(Restrictions.le("column", newColumn)); + @SuppressWarnings("unchecked") + List menuItems = criteria.list(); + for (FunctionalMenuItem menuItem : menuItems) { + menuItem.column -= 1; + localSession.save(menuItem); + } + } else { + // No info has changed + logger.debug(EELFLoggerDelegate.debugLogger, "no info has changed, so we are not moving"); + } + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "moving under a new parent"); + // We are moving under a new parent. + + // Adjust the children under the old parent + logger.debug(EELFLoggerDelegate.debugLogger, "about to adjust the children under the old parent"); + + // If the parentId is null, must check for its children differently + if (oldParentMenuId == null) { + logger.debug(EELFLoggerDelegate.debugLogger, "oldParentMenuId is null, so using isNull"); + criteria.add(Restrictions.isNull("parentMenuId")); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "oldParentMenuId is NOT null, so using eq"); + criteria.add(Restrictions.eq("parentMenuId", oldParentMenuId)); + } + + criteria.add(Restrictions.gt("column", oldColumn)); + @SuppressWarnings("unchecked") + List menuItems1 = criteria.list(); + for (FunctionalMenuItem menuItem : menuItems1) { + menuItem.column -= 1; + localSession.save(menuItem); + } + // Adjust the children under the new parent. + logger.debug(EELFLoggerDelegate.debugLogger, "about to adjust the children under the new parent"); + logger.debug(EELFLoggerDelegate.debugLogger, "get all menu items where menuId!=" + menuId + "; parentMenuId==" + newParentMenuId + + "; column>=" + newColumn); + criteria = localSession.createCriteria(FunctionalMenuItem.class); + criteria.add(Restrictions.ne("menuId", menuId)); + if (newParentMenuId == null) { + logger.debug(EELFLoggerDelegate.debugLogger, "newParentMenuId is null, so using isNull"); + criteria.add(Restrictions.isNull("parentMenuId")); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "newParentMenuId is NOT null, so using eq"); + criteria.add(Restrictions.eq("parentMenuId", newParentMenuId)); + } + + criteria.add(Restrictions.ge("column", newColumn)); + @SuppressWarnings("unchecked") + List menuItems2 = criteria.list(); + if (menuItems2 != null) { + logger.debug(EELFLoggerDelegate.debugLogger, "found " + menuItems2.size() + " menu items"); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "found null menu items"); + } + for (FunctionalMenuItem menuItem : menuItems2) { + menuItem.column += 1; + localSession.save(menuItem); + } + } + logger.debug(EELFLoggerDelegate.debugLogger, "done with updateColumnForSiblings"); + } + + public void removeAppInfo(Session localSession, Long menuId) { + // Remove the url, role, and app info from a menu item + FunctionalMenuItem menuItem = (FunctionalMenuItem) localSession.get(FunctionalMenuItem.class, menuId); + menuItem.url = ""; + deleteRoles(menuId); + } + + public FieldsValidator editFunctionalMenuItem(FunctionalMenuItemWithRoles menuItemJson) { + boolean result = false; + Session localSession = null; + Transaction transaction = null; + Long menuId = menuItemJson.menuId; + + logger.debug(EELFLoggerDelegate.debugLogger, "LR: editFunctionalMenuItem: test 1"); + FieldsValidator fieldsValidator = menuItemFieldsChecker(menuItemJson); + if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + // TODO: make sure menuId is here. And, it might not already exist + // in db table. + if (menuId == null) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); + logger.error(EELFLoggerDelegate.errorLogger, "FunctionalMenuServiceImpl.editFunctionalMenuItem: bad request"); + } else { + // To simplify the code, assume we will have a transaction + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + + // Get the existing info associated with menuItem from the DB + FunctionalMenuItem menuItem = (FunctionalMenuItem) localSession.get(FunctionalMenuItem.class, menuId); + Integer oldColumn = menuItem.column; + Integer oldParentMenuId = menuItem.parentMenuId; + Integer newColumn = menuItemJson.column; + Integer newParentMenuId = menuItemJson.parentMenuId; + + logger.debug(EELFLoggerDelegate.debugLogger, "prev info: column: " + oldColumn + "; parentMenuId: " + oldParentMenuId); + + if (menuItemJson.appid != null && menuItemJson.getRoles() != null && !menuItemJson.getRoles().isEmpty() + && menuItemJson.url != null && !menuItemJson.url.isEmpty() && menuItemJson.text != null + && !menuItemJson.text.isEmpty()) { + // Scenario: appid, roles, url and text are all non-null. + // This menu item is associated with an app. + // (Note: this should only occur for a bottom-level menu + // item with no children.) + // 1) Remove all the records from fn_menu_functional_role + // for this menuId. + // 2) Add records to the fn_menu_function_role table for the + // appId and each roleId + // 3) Update the url and text for this menu item. + + // Because of foreign key constraints, delete the roles, + // then update the menuItem then add the roles. + deleteRoles(menuId); + // Assumption: this is not a Move, so don't change the + // parentMenuId and column. + menuItem.appid = menuItemJson.appid; + menuItem.setRoles(menuItemJson.getRoles()); + menuItem.url = menuItemJson.url; + menuItem.text = menuItemJson.text; + + // If the app is disabled, deactivate the menu item. + Long appidLong = Long.valueOf(menuItemJson.appid); + EPApp app = (EPApp) localSession.get(EPApp.class, appidLong); + if (app != null && ! app.getEnabled()) { + menuItem.active_yn = "N"; + } else { + menuItem.active_yn = "Y"; + } + + + localSession.update(menuItem); + addRoles(menuItemJson, localSession); + + } else if (menuItemJson.appid == null && (menuItemJson.getRoles() == null || menuItemJson.getRoles().isEmpty()) + && (menuItemJson.url == null || menuItemJson.url.isEmpty()) && menuItemJson.text != null + && !menuItemJson.text.isEmpty()) { + // Scenario: appid, roles and url are all null; text is + // non-null. + // This menu item is NOT associated with an app. + // 1) Remove all the records from fn_menu_functional_role + // for this menuId + // (in case it was previously associated with an app). + // 2) Update the text for this menu item. + // 3) Set the url to "" + deleteRoles(menuId); + // Assumption: this is not a Move, so don't change the + // parentMenuId and column. + menuItem.text = menuItemJson.text; + menuItem.url = ""; + menuItem.active_yn = "Y"; + localSession.update(menuItem); + + } else if (newColumn != null) { + // This is a "move" request. + // Menu item has been moved to a different position under + // the same parent, or under a new parent. + logger.debug(EELFLoggerDelegate.debugLogger, "Doing a move operation."); + if (parentMenuIdEqual(oldParentMenuId, newParentMenuId)) { + // The parent is the same. We have just changed the + // column + logger.debug(EELFLoggerDelegate.debugLogger, "moving under the same parent"); + menuItem.column = newColumn; + localSession.update(menuItem); + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "moving under a different parent"); + menuItem.parentMenuId = newParentMenuId; + menuItem.column = newColumn; + localSession.update(menuItem); + // If we are moving under a new parent, must delete any + // app/role info from + // the new parent, since it is no longer a leaf menu + // item and cannot have app info + // associated with it. The front end will have warned + // the user and gotten confirmation. + if (menuItemJson.parentMenuId != null) { + Long parentMenuIdLong = new Long(menuItemJson.parentMenuId); + removeAppInfo(localSession, parentMenuIdLong); + // deleteRoles(parentMenuIdLong); + } + } + // must update the column for all old and new sibling menu + // items + updateColumnForSiblings(localSession, menuId, oldParentMenuId, newParentMenuId, oldColumn, + newColumn); + } + + transaction.commit(); + logger.debug(EELFLoggerDelegate.debugLogger, "LR: editFunctionalMenuItem: finished committing transaction"); + result = true; + } catch (Exception e) { + EcompPortalUtils.rollbackTransaction(transaction, + "createFunctionalMenuItem rollback, exception = " + e); + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "editFunctionalMenuItem"); + } + + if (result) { + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "LR: createFunctionalMenuItem: no result. setting httpStatusCode to " + + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + } + } + + return fieldsValidator; + } + + public FieldsValidator deleteFunctionalMenuItem(Long menuId) { + FieldsValidator fieldsValidator = new FieldsValidator(); + logger.debug(EELFLoggerDelegate.debugLogger, "LR: deleteFunctionalMenuItem: test 1"); + boolean result = false; + Session localSession = null; + Transaction transaction = null; + + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + // We must turn off foreign keys before deleting a menu item. Otherwise there will be a + // constraint violation from the ancestors table. + setForeignKeys(localSession, false); + deleteRoles(menuId); + logger.debug(EELFLoggerDelegate.debugLogger, "deleteFunctionalMenuItem: after deleting roles"); + deleteFavorites(menuId); + logger.debug(EELFLoggerDelegate.debugLogger, "deleteFunctionalMenuItem: after deleting favorites"); + localSession.delete(localSession.get(FunctionalMenuItem.class, menuId)); + logger.debug(EELFLoggerDelegate.debugLogger, "deleteFunctionalMenuItem: about to commit"); + transaction.commit(); + result = true; + } catch (Exception e) { + EcompPortalUtils.rollbackTransaction(transaction, + "deleteFunctionalMenuItem rollback, exception = " + e); + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "deleteFunctionalMenuItem"); + } + if (result) { + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "LR: deleteFunctionalMenuItem: no result. setting httpStatusCode to " + + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + return fieldsValidator; + } + + // Regenerate the fn_menu_functional_ancestors table, which is used + // by the queries that return the functional menu items. + public FieldsValidator regenerateAncestorTable() { + FieldsValidator fieldsValidator = new FieldsValidator(); + Session localSession = null; + Transaction transaction = null; + + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + String sql = "DELETE FROM fn_menu_functional_ancestors"; + logQuery(sql); + Query query = localSession.createSQLQuery(sql); + query.executeUpdate(); + logger.debug(EELFLoggerDelegate.debugLogger, "regenerateAncestorTable: finished query 1"); + + sql = "ALTER TABLE fn_menu_functional_ancestors AUTO_INCREMENT=1"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + logger.debug(EELFLoggerDelegate.debugLogger, "regenerateAncestorTable: reset AUTO_INCREMENT to 1"); + + int depth = 0; + sql = "INSERT INTO fn_menu_functional_ancestors(menu_id, ancestor_menu_id, depth) " + + "SELECT m.menu_id, m.menu_id, " + depth + " FROM fn_menu_functional m"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + logger.debug(EELFLoggerDelegate.debugLogger, "regenerateAncestorTable: finished query 2"); + for (depth = 0; depth < 3; depth++) { + int depthPlusOne = depth + 1; + sql = "INSERT INTO fn_menu_functional_ancestors(menu_id, ancestor_menu_id, depth) " + + " SELECT a.menu_id, m.parent_menu_id, " + depthPlusOne + + " FROM fn_menu_functional m, fn_menu_functional_ancestors a " + " WHERE a.depth='" + depth + + "' AND " + " a.ancestor_menu_id = m.menu_id AND " + " m.parent_menu_id != '-1'"; + logQuery(sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + } + logger.debug(EELFLoggerDelegate.debugLogger, "regenerateAncestorTable: finished query 3"); + transaction.commit(); + } catch (Exception e) { + EcompPortalUtils.rollbackTransaction(transaction, + "regenerateAncestorTable rollback, exception = " + e); + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "regenerateAncestorTable"); + } + return fieldsValidator; + } + + private void logQuery(String sql) { + logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); + } + + public FieldsValidator setFavoriteItem(FavoritesFunctionalMenuItem menuItemJson) { + boolean result = false; + FieldsValidator fieldsValidator = new FieldsValidator(); + + Session localSession = null; + Transaction transaction = null; + + try { + logger.debug(EELFLoggerDelegate.debugLogger, String.format("Before adding favorite for user id:{0} and menu id:{1} ",menuItemJson.userId,menuItemJson.menuId)); + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + localSession.save(menuItemJson); + transaction.commit(); + result = true; + logger.debug(EELFLoggerDelegate.debugLogger, String.format("After adding favorite for user id:{0} and menu id:{1} ",menuItemJson.userId,menuItemJson.menuId)); + } catch (Exception e) { + EcompPortalUtils.rollbackTransaction(transaction,"setFavoriteItem rollback, exception = " + e); + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "setFavoriteItem"); + } + + if(result) { + } + else { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + + return fieldsValidator; + } + + public List getFavoriteItems(Long userId) { + try { + logger.debug(EELFLoggerDelegate.debugLogger, "Before getting favorites for user id: " + userId); + + // Divide this into 2 queries: one which returns the favorites items associated with Restricted apps, + // and one that returns all the other favorites items. Then we can easily add the boolean flag + // restrictedApp to each FavoritesFunctionalMenuItemJson, to be used by the front end. + + String sql = "SELECT f.user_id,f.menu_id,m.text,m.url " + + " FROM fn_menu_favorites f, fn_menu_functional m, fn_menu_functional_roles mr " + + " WHERE f.user_id='" + userId + "' AND f.menu_id = m.menu_id " + + " AND f.menu_id = mr.menu_id " + + " AND mr.role_id = '" + RESTRICTED_APP_ROLE_ID + "' "; + + @SuppressWarnings("unchecked") + List menuItems = dataAccessService.executeSQLQuery(sql, FavoritesFunctionalMenuItemJson.class, null); + for (FavoritesFunctionalMenuItemJson menuItem : menuItems) { + menuItem.restrictedApp = true; + } + + sql = "SELECT DISTINCT f.user_id,f.menu_id,m.text,m.url " + + " FROM fn_menu_favorites f, fn_menu_functional m, fn_menu_functional_roles mr " + + " WHERE f.user_id='" + userId + "' AND f.menu_id = m.menu_id " + + " AND f.menu_id = mr.menu_id " + + " AND mr.role_id != '" + RESTRICTED_APP_ROLE_ID + "' "; + @SuppressWarnings("unchecked") + List menuItems2 = dataAccessService.executeSQLQuery(sql, FavoritesFunctionalMenuItemJson.class, null); + for (FavoritesFunctionalMenuItemJson menuItem : menuItems2) { + menuItem.restrictedApp = false; + menuItems.add(menuItem); + } + + return menuItems; + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred in FunctionalMenuServiceImpl.getFavoriteItems. Details: " + EcompPortalUtils.getStackTrace(e)); + List menuItems = new ArrayList(); + return menuItems; + } + } + + public FieldsValidator removeFavoriteItem(Long userId, Long menuId) { + boolean result = false; + FieldsValidator fieldsValidator = new FieldsValidator(); + + Session localSession = null; + Transaction transaction = null; + + try { + + FavoritesFunctionalMenuItem menuItemJson = new FavoritesFunctionalMenuItem(); + menuItemJson.userId = userId; + menuItemJson.menuId = menuId; + + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + localSession.delete(menuItemJson); + localSession.flush(); + transaction.commit(); + result = true; + logger.debug(EELFLoggerDelegate.debugLogger, String.format("After removing favorite for user id: " + userId + "; menu id: " + menuId)); + } catch (Exception e) { + EcompPortalUtils.rollbackTransaction(transaction,"removeFavoriteItem rollback, exception = " + e); + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "removeFavoriteItem"); + } + + if(result) { + } + else { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + + return fieldsValidator; + } + + @Override + public void assignHelpURLs(List menuItems) { + try { + String user_guide_link = SystemProperties.getProperty(EPCommonSystemProperties.USER_GUIDE_URL); + + for(FunctionalMenuItem menuItem: menuItems){ + if(menuItem.text.equalsIgnoreCase("Contact Us")){ + menuItem.setUrl("contactUs"); + //menuItem.setRestrictedApp(true); + } + if(menuItem.text.equalsIgnoreCase("Get Access")) { + menuItem.setUrl("getAccess"); + } + if(menuItem.text.equalsIgnoreCase("User Guide")) { + menuItem.setUrl(user_guide_link); + menuItem.setRestrictedApp(true); + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "assignHelpURLs process failed. Details: " + EcompPortalUtils.getStackTrace(e)); + } + + } + + public List getFunctionalMenuRole() { + String sql = "SELECT * from fn_menu_functional_roles"; + logQuery(sql); + logger.debug(EELFLoggerDelegate.debugLogger, "getFunctionalMenuRole: logged the query"); + + @SuppressWarnings("unchecked") + List functionalMenuRole = dataAccessService.executeSQLQuery(sql, FunctionalMenuRole.class, null); + + return functionalMenuRole; + } + + @SuppressWarnings("unchecked") + @Override + public List getUserAppRolesList(String userId) { + Map params = new HashMap<>(); + params.put("userId", userId); + + List userAppRoles = null; + try { + userAppRoles = dataAccessService + .executeNamedQuery("getUserApproles", params, null); + } catch (Exception e) { + // TODO Auto-generated catch block + logger.error(EELFLoggerDelegate.errorLogger, "getUserAppRolesList failed", e); + } + return userAppRoles; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/GetAccessService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/GetAccessService.java index 8b5e72e5..e9dc2818 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/GetAccessService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/GetAccessService.java @@ -1,33 +1,33 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.GetAccessResult; - -public interface GetAccessService { - /** - * @return One entry per application function AND role; i.e., each application - * appears many times. - */ - List getAppAccessList(EPUser user); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.GetAccessResult; + +public interface GetAccessService { + /** + * @return One entry per application function AND role; i.e., each application + * appears many times. + */ + List getAppAccessList(EPUser user); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/GetAccessServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/GetAccessServiceImpl.java index 37af1dab..1f215921 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/GetAccessServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/GetAccessServiceImpl.java @@ -1,61 +1,61 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.GetAccessResult; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; - -@Service("getAccessService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class GetAccessServiceImpl implements GetAccessService{ - - @Autowired - private DataAccessService dataAccessService; - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.GetAccessService#getAppAccessList() - */ - @SuppressWarnings("unchecked") - @Override - public List getAppAccessList(EPUser user) { - final Map params = new HashMap<>(); - List appAccessList = null; - params.put("userId", user.getId()); - appAccessList = dataAccessService - .executeNamedQuery("getAppAccessFunctionRole", params, null); - return appAccessList; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.GetAccessResult; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; + +@Service("getAccessService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class GetAccessServiceImpl implements GetAccessService{ + + @Autowired + private DataAccessService dataAccessService; + + /* + * (non-Javadoc) + * @see org.openecomp.portalapp.portal.service.GetAccessService#getAppAccessList() + */ + @SuppressWarnings("unchecked") + @Override + public List getAppAccessList(EPUser user) { + final Map params = new HashMap<>(); + List appAccessList = null; + params.put("userId", user.getId()); + appAccessList = dataAccessService + .executeNamedQuery("getAppAccessFunctionRole", params, null); + return appAccessList; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ManifestService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ManifestService.java index 7a10568d..66932bf6 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ManifestService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ManifestService.java @@ -1,33 +1,33 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.io.IOException; -import java.util.jar.Attributes; - -public interface ManifestService { - /** - * Gets the content of the webapp manifest file META-INF/MANIFEST.MF. - * - * @return Attributes object with key-value pairs from the manifest - * @throws IOException - */ - public Attributes getWebappManifest() throws IOException; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.io.IOException; +import java.util.jar.Attributes; + +public interface ManifestService { + /** + * Gets the content of the webapp manifest file META-INF/MANIFEST.MF. + * + * @return Attributes object with key-value pairs from the manifest + * @throws IOException + */ + public Attributes getWebappManifest() throws IOException; +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ManifestServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ManifestServiceImpl.java index 3d0f34a2..5136985c 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ManifestServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/ManifestServiceImpl.java @@ -1,62 +1,62 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.io.IOException; -import java.io.InputStream; -import java.util.jar.Attributes; -import java.util.jar.Manifest; - -import javax.servlet.ServletContext; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; - -@Service("manifestService") -@EnableAspectJAutoProxy -@EPMetricsLog -public class ManifestServiceImpl implements ManifestService { - @Autowired - ServletContext context; - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.ManifestService#getWebappManifest() - */ - public Attributes getWebappManifest() throws IOException { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ManifestServiceImpl.class); - // Path to resource on classpath - final String MANIFEST_RESOURCE_PATH = "/META-INF/MANIFEST.MF"; - // Manifest is formatted as Java-style properties - try { - InputStream inputStream = context.getResourceAsStream(MANIFEST_RESOURCE_PATH); - Manifest manifest = new Manifest(inputStream); - inputStream.close(); - return manifest.getMainAttributes(); - } catch (IOException e) { - logger.error(EELFLoggerDelegate.errorLogger, "getWebappManifest: failed to read/find manifest"); - throw e; - } - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.io.IOException; +import java.io.InputStream; +import java.util.jar.Attributes; +import java.util.jar.Manifest; + +import javax.servlet.ServletContext; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; + +@Service("manifestService") +@EnableAspectJAutoProxy +@EPMetricsLog +public class ManifestServiceImpl implements ManifestService { + @Autowired + ServletContext context; + + /* + * (non-Javadoc) + * @see org.openecomp.portalapp.portal.service.ManifestService#getWebappManifest() + */ + public Attributes getWebappManifest() throws IOException { + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ManifestServiceImpl.class); + // Path to resource on classpath + final String MANIFEST_RESOURCE_PATH = "/META-INF/MANIFEST.MF"; + // Manifest is formatted as Java-style properties + try { + InputStream inputStream = context.getResourceAsStream(MANIFEST_RESOURCE_PATH); + Manifest manifest = new Manifest(inputStream); + inputStream.close(); + return manifest.getMainAttributes(); + } catch (IOException e) { + logger.error(EELFLoggerDelegate.errorLogger, "getWebappManifest: failed to read/find manifest"); + throw e; + } + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceProxyService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceProxyService.java index 00fc9ad8..3feffde6 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceProxyService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceProxyService.java @@ -1,59 +1,59 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import javax.servlet.http.HttpServletRequest; - -import org.openecomp.portalapp.portal.domain.EPUser; -import org.springframework.web.client.RestClientException; - -public interface MicroserviceProxyService { - - /** - * Gets the specific microservice from table ep_microservice, communicates - * to microservice with the specified security type. The microservice sends - * back the response. - * - * Gets the data while testing the microservice with no widget associated with - * - * @param serviceId - * Id of microservice to be used - * @return response sent from microservice - * @throws Exception - */ - String proxyToDestination(long serviceId, EPUser user, HttpServletRequest request) throws Exception; - - - - /** - * Gets the microservice data based on the user id and widget id. Different - * users have his/her own parameters for one widget. The method sends back - * the response. - * - * @param widgetId - * Id of widget to be used - * @param user - * User information - * @param request - * @return response sent from microserivce - * @throws Exception - */ - String proxyToDestinationByWidgetId(long widgetId, EPUser user, HttpServletRequest request) throws Exception; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import javax.servlet.http.HttpServletRequest; + +import org.openecomp.portalapp.portal.domain.EPUser; +import org.springframework.web.client.RestClientException; + +public interface MicroserviceProxyService { + + /** + * Gets the specific microservice from table ep_microservice, communicates + * to microservice with the specified security type. The microservice sends + * back the response. + * + * Gets the data while testing the microservice with no widget associated with + * + * @param serviceId + * Id of microservice to be used + * @return response sent from microservice + * @throws Exception + */ + String proxyToDestination(long serviceId, EPUser user, HttpServletRequest request) throws Exception; + + + + /** + * Gets the microservice data based on the user id and widget id. Different + * users have his/her own parameters for one widget. The method sends back + * the response. + * + * @param widgetId + * Id of widget to be used + * @param user + * User information + * @param request + * @return response sent from microserivce + * @throws Exception + */ + String proxyToDestinationByWidgetId(long widgetId, EPUser user, HttpServletRequest request) throws Exception; +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceProxyServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceProxyServiceImpl.java index 3a520c88..df835a92 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceProxyServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceProxyServiceImpl.java @@ -1,222 +1,242 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import javax.servlet.http.HttpServletRequest; - -import org.apache.commons.codec.binary.Base64; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.MicroserviceData; -import org.openecomp.portalapp.portal.domain.MicroserviceParameter; -import org.openecomp.portalapp.portal.domain.WidgetCatalog; -import org.openecomp.portalapp.portal.domain.WidgetCatalogParameter; -import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.http.HttpEntity; -import org.springframework.http.HttpHeaders; -import org.springframework.http.HttpMethod; -import org.springframework.http.MediaType; -import org.springframework.http.ResponseEntity; -import org.springframework.stereotype.Service; -import org.springframework.web.client.HttpClientErrorException; -import org.springframework.web.client.RestTemplate; - -@Service("microserviceProxyService") -@EnableAspectJAutoProxy -@EPMetricsLog -public class MicroserviceProxyServiceImpl implements MicroserviceProxyService { - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MicroserviceProxyServiceImpl.class); - private static final String BASIC_AUTH = "Basic Authentication"; - private static final String NO_AUTH = "No Authentication"; - private static final String COOKIE_AUTH = "Cookie based Authentication"; - private static final String QUESTION_MARK = "?"; - private static final String ADD_MARK = "&"; - - String whatService = "widgets-service"; - - @Autowired - private ConsulHealthService consulHealthService; - - @Autowired - MicroserviceService microserviceService; - - @Autowired - WidgetParameterService widgetParameterService; - - RestTemplate template = new RestTemplate(); - - @Override - public String proxyToDestination(long serviceId, EPUser user, HttpServletRequest request) throws Exception { - - String response = null; - - // get the microservice object by the id - MicroserviceData data = microserviceService.getMicroserviceDataById(serviceId); - - // No such microservice available - if (data == null) { - return response; - } - List params = data.getParameterList(); - if (data.getSecurityType().equals(NO_AUTH)) { - HttpHeaders headers = new HttpHeaders(); - headers.setContentType(MediaType.APPLICATION_JSON); - HttpEntity entity = new HttpEntity(headers); - - String url = microserviceUrlConverter(data, params); - response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); - - } else if (data.getSecurityType().equals(BASIC_AUTH)) { - // encoding the username and password - String plainCreds = data.getUsername() + ":" + decryptedPassword(data.getPassword()); - byte[] plainCredsBytes = plainCreds.getBytes(); - byte[] base64CredsBytes = Base64.encodeBase64(plainCredsBytes); - String base64Creds = new String(base64CredsBytes); - - HttpHeaders headers = new HttpHeaders(); - headers.add("Authorization", "Basic " + base64Creds); - headers.setContentType(MediaType.APPLICATION_JSON); - HttpEntity entity = new HttpEntity(headers); - - String url = microserviceUrlConverter(data, params); - response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); - } else if (data.getSecurityType().equals(COOKIE_AUTH)) { - HttpHeaders headers = new HttpHeaders(); - headers.setContentType(MediaType.APPLICATION_JSON); - String rawCookie = request.getHeader("Cookie"); - headers.add("Cookie", rawCookie); - HttpEntity entity = new HttpEntity(headers); - - String url = microserviceUrlConverter(data, params); - response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); - } - return response; - } - - @Override - public String proxyToDestinationByWidgetId(long widgetId, EPUser user, HttpServletRequest request) throws Exception { - - String response = null; - - ResponseEntity ans = (ResponseEntity) template.exchange( - "https://" + consulHealthService.getServiceLocation(whatService) - + "/widget/microservices/widgetCatalog/parameters/" + widgetId, - HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), Long.class); - Long serviceId = ans.getBody(); - - // get the microservice object by the id - MicroserviceData data = microserviceService.getMicroserviceDataById(serviceId); - - // No such microservice available - if (data == null) { - return response; - } - - List params = data.getParameterList(); - - for (MicroserviceParameter p : params) { - WidgetCatalogParameter userValue = widgetParameterService.getUserParamById(widgetId, user.getId(), p.getId()); - if (userValue != null) - p.setPara_value(userValue.getUser_value()); - } - - if (data.getSecurityType().equals(NO_AUTH)) { - HttpHeaders headers = new HttpHeaders(); - headers.setContentType(MediaType.APPLICATION_JSON); - HttpEntity entity = new HttpEntity(headers); - - String url = microserviceUrlConverter(data, params); - try { - response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); - } catch (HttpClientErrorException e) { - throw e; - } - } else if (data.getSecurityType().equals(BASIC_AUTH)) { - // encoding the username and password - String plainCreds = data.getUsername() + ":" + decryptedPassword(data.getPassword()); - byte[] plainCredsBytes = plainCreds.getBytes(); - byte[] base64CredsBytes = Base64.encodeBase64(plainCredsBytes); - String base64Creds = new String(base64CredsBytes); - - HttpHeaders headers = new HttpHeaders(); - headers.add("Authorization", "Basic " + base64Creds); - headers.setContentType(MediaType.APPLICATION_JSON); - HttpEntity entity = new HttpEntity(headers); - - String url = microserviceUrlConverter(data, params); - try { - response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); - } catch (HttpClientErrorException e) { - throw e; - } - } else if (data.getSecurityType().equals(COOKIE_AUTH)) { - HttpHeaders headers = new HttpHeaders(); - headers.setContentType(MediaType.APPLICATION_JSON); - String rawCookie = request.getHeader("Cookie"); - headers.add("Cookie", rawCookie); - HttpEntity entity = new HttpEntity(headers); - - String url = microserviceUrlConverter(data, params); - try { - response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); - } catch (HttpClientErrorException e) { - throw e; - } - } - return response; - } - - private String decryptedPassword(String encryptedPwd) throws Exception { - String result = ""; - if (encryptedPwd != null & encryptedPwd.length() > 0) { - try { - result = CipherUtil.decrypt(encryptedPwd, - SystemProperties.getProperty(SystemProperties.Decryption_Key)); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "decryptedPassword failed", e); - throw e; - } - } - return result; - } - - private String microserviceUrlConverter(MicroserviceData data, List params) { - String url = data.getUrl(); - for (int i = 0; i < params.size(); i++) { - if (i == 0) { - url += QUESTION_MARK; - } - url += params.get(i).getPara_key() + "=" + params.get(i).getPara_value(); - if (i != (params.size() - 1)) { - url += ADD_MARK; - } - } - return url; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import javax.servlet.http.HttpServletRequest; + +import org.apache.commons.codec.binary.Base64; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.MicroserviceData; +import org.openecomp.portalapp.portal.domain.MicroserviceParameter; +import org.openecomp.portalapp.portal.domain.WidgetCatalogParameter; +import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpMethod; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.stereotype.Service; +import org.springframework.web.client.HttpClientErrorException; +import org.springframework.web.client.RestTemplate; + +@Service("microserviceProxyService") +@EnableAspectJAutoProxy +@EPMetricsLog +public class MicroserviceProxyServiceImpl implements MicroserviceProxyService { + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MicroserviceProxyServiceImpl.class); + private static final String BASIC_AUTH = "Basic Authentication"; + private static final String NO_AUTH = "No Authentication"; + private static final String COOKIE_AUTH = "Cookie based Authentication"; + private static final String QUESTION_MARK = "?"; + private static final String ADD_MARK = "&"; + + String whatService = "widgets-service"; + + @Autowired + private ConsulHealthService consulHealthService; + + @Autowired + MicroserviceService microserviceService; + + @Autowired + WidgetParameterService widgetParameterService; + + RestTemplate template = new RestTemplate(); + + @Override + public String proxyToDestination(long serviceId, EPUser user, HttpServletRequest request) throws Exception { + + String response = null; + + // get the microservice object by the id + MicroserviceData data = microserviceService.getMicroserviceDataById(serviceId); + + // No such microservice available + if (data == null) { + return response; + } + List params = data.getParameterList(); + MicroserviceParameter userId_param = new MicroserviceParameter(); + userId_param.setPara_key("userId"); + userId_param.setPara_value(user.getOrgUserId()); + params.add(userId_param); + + if (data.getSecurityType().equals(NO_AUTH)) { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON); + HttpEntity entity = new HttpEntity(headers); + + String url = microserviceUrlConverter(data, params); + logger.debug(EELFLoggerDelegate.debugLogger, "Before making no authentication call: {}", url); + response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); + logger.debug(EELFLoggerDelegate.debugLogger, "No authentication call response: {}", response); + + } else if (data.getSecurityType().equals(BASIC_AUTH)) { + // encoding the username and password + String plainCreds = data.getUsername() + ":" + decryptedPassword(data.getPassword()); + byte[] plainCredsBytes = plainCreds.getBytes(); + byte[] base64CredsBytes = Base64.encodeBase64(plainCredsBytes); + String base64Creds = new String(base64CredsBytes); + + HttpHeaders headers = new HttpHeaders(); + headers.add("Authorization", "Basic " + base64Creds); + headers.setContentType(MediaType.APPLICATION_JSON); + HttpEntity entity = new HttpEntity(headers); + + String url = microserviceUrlConverter(data, params); + logger.debug(EELFLoggerDelegate.debugLogger, "Before making basic authentication call: {}", url); + response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); + logger.debug(EELFLoggerDelegate.debugLogger, "Basic authentication call response: {}", response); + + } else if (data.getSecurityType().equals(COOKIE_AUTH)) { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON); + String rawCookie = request.getHeader("Cookie"); + headers.add("Cookie", rawCookie); + HttpEntity entity = new HttpEntity(headers); + + String url = microserviceUrlConverter(data, params); + logger.debug(EELFLoggerDelegate.debugLogger, "Before making cookie-based authentication call: {}", url); + response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); + logger.debug(EELFLoggerDelegate.debugLogger, "Cookie-based authentication call response: {}", response); + } + return response; + } + + @Override + public String proxyToDestinationByWidgetId(long widgetId, EPUser user, HttpServletRequest request) + throws Exception { + + String response = null; + + @SuppressWarnings({ "rawtypes", "unchecked" }) + ResponseEntity ans = (ResponseEntity) template.exchange( + "https://" + + consulHealthService.getServiceLocation(whatService, + SystemProperties.getProperty("microservices.widget.local.port")) + + "/widget/microservices/widgetCatalog/parameters/" + widgetId, + HttpMethod.GET, new HttpEntity(WidgetServiceHeaders.getInstance()), Long.class); + Long serviceId = ans.getBody(); + + // get the microservice object by the id + MicroserviceData data = microserviceService.getMicroserviceDataById(serviceId); + + // No such microservice available + if (data == null) { + return response; + } + + List params = data.getParameterList(); + MicroserviceParameter userId_param = new MicroserviceParameter(); + userId_param.setPara_key("userId"); + userId_param.setPara_value(user.getOrgUserId()); + params.add(userId_param); + + for (MicroserviceParameter p : params) { + WidgetCatalogParameter userValue = widgetParameterService.getUserParamById(widgetId, user.getId(), + p.getId()); + if (userValue != null) + p.setPara_value(userValue.getUser_value()); + } + + if (data.getSecurityType().equals(NO_AUTH)) { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON); + HttpEntity entity = new HttpEntity(headers); + + String url = microserviceUrlConverter(data, params); + try { + response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); + } catch (HttpClientErrorException e) { + throw e; + } + } else if (data.getSecurityType().equals(BASIC_AUTH)) { + // encoding the username and password + String plainCreds = data.getUsername() + ":" + decryptedPassword(data.getPassword()); + byte[] plainCredsBytes = plainCreds.getBytes(); + byte[] base64CredsBytes = Base64.encodeBase64(plainCredsBytes); + String base64Creds = new String(base64CredsBytes); + + HttpHeaders headers = new HttpHeaders(); + headers.add("Authorization", "Basic " + base64Creds); + headers.setContentType(MediaType.APPLICATION_JSON); + HttpEntity entity = new HttpEntity(headers); + + String url = microserviceUrlConverter(data, params); + try { + response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); + } catch (HttpClientErrorException e) { + throw e; + } + } else if (data.getSecurityType().equals(COOKIE_AUTH)) { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.APPLICATION_JSON); + String rawCookie = request.getHeader("Cookie"); + headers.add("Cookie", rawCookie); + HttpEntity entity = new HttpEntity(headers); + + String url = microserviceUrlConverter(data, params); + try { + response = template.exchange(url, HttpMethod.GET, entity, String.class).getBody(); + } catch (HttpClientErrorException e) { + throw e; + } + } + return response; + } + + private String decryptedPassword(String encryptedPwd) throws Exception { + String result = ""; + if (encryptedPwd != null & encryptedPwd.length() > 0) { + try { + result = CipherUtil.decrypt(encryptedPwd, + SystemProperties.getProperty(SystemProperties.Decryption_Key)); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "decryptedPassword failed", e); + throw e; + } + } + return result; + } + + private String microserviceUrlConverter(MicroserviceData data, List params) { + String url = data.getUrl(); + for (int i = 0; i < params.size(); i++) { + if (i == 0) { + url += QUESTION_MARK; + } + url += params.get(i).getPara_key() + "=" + params.get(i).getPara_value(); + if (i != (params.size() - 1)) { + url += ADD_MARK; + } + } + return url; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceService.java index cfc7ddb1..df55abb4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceService.java @@ -1,86 +1,87 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.domain.MicroserviceData; -import org.openecomp.portalapp.portal.domain.MicroserviceParameter; - -public interface MicroserviceService { - - /** - * Get all microservices from the ep_microservice - * - * @return list of all microservices - * @throws Exception - */ - List getMicroserviceData() throws Exception; - - /** - * Gets the specified microservice with id from ep_microservice - * - * @param id - * ID of microservice to be fetched - * @return the microservice with the specified id - */ - MicroserviceData getMicroserviceDataById(long id); - - /** - * Saves the specified microservice to the table ep_microservice - * - * @param newService - * Content of microservice to be saved - * @return new microservice id - * @throws Exception - */ - Long saveMicroservice(MicroserviceData newService) throws Exception; - - void saveServiceParameters(long serviceId, List list) throws Exception; - - /** - * Deletes the specified microservice from all tables where the serviceId is - * used - * - * @param serviceId - * @throws Exception - */ - void deleteMicroservice(long serviceId) throws Exception; - - /** - * Updates the specified microservice from all tables where the serviceId is - * used - * - * @param serviceId - * Id of microservice to be updated - * @param newService - * Content of microservice to be updated - * @throws Exception - */ - void updateMicroservice(long serviceId, MicroserviceData newService) throws Exception; - - /** - * Gets the Service parameters by the service Id - * @param serviceId - * @return - */ - List getParametersById(long serviceId); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.domain.MicroserviceData; +import org.openecomp.portalapp.portal.domain.MicroserviceParameter; + +public interface MicroserviceService { + + /** + * Get all microservices from the ep_microservice + * + * @return list of all microservices + * @throws Exception + */ + List getMicroserviceData() throws Exception; + + /** + * Gets the specified microservice with id from ep_microservice + * + * @param id + * ID of microservice to be fetched + * @return the microservice with the specified id + */ + MicroserviceData getMicroserviceDataById(long id); + + /** + * Saves the specified microservice to the table ep_microservice + * + * @param newService + * Content of microservice to be saved + * @return new microservice id + * @throws Exception + */ + Long saveMicroservice(MicroserviceData newService) throws Exception; + + void saveServiceParameters(long serviceId, List list) throws Exception; + + /** + * Deletes the specified microservice from all tables where the serviceId is + * used + * + * @param serviceId + * @throws Exception + */ + void deleteMicroservice(long serviceId) throws Exception; + + /** + * Updates the specified microservice from all tables where the serviceId is + * used + * + * @param serviceId + * Id of microservice to be updated + * @param newService + * Content of microservice to be updated + * @throws Exception + */ + void updateMicroservice(long serviceId, MicroserviceData newService) throws Exception; + + /** + * Gets the Service parameters by the service Id + * + * @param serviceId + * @return List + */ + List getParametersById(long serviceId); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceServiceImpl.java index c0a2fa41..aaadfa18 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/MicroserviceServiceImpl.java @@ -1,212 +1,195 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import org.hibernate.Session; -import org.hibernate.SessionFactory; -import org.hibernate.Transaction; -import org.hibernate.criterion.Criterion; -import org.hibernate.criterion.Restrictions; -import org.openecomp.portalapp.portal.domain.BasicAuthCredentials; -import org.openecomp.portalapp.portal.domain.EPUserAppRolesRequestDetail; -import org.openecomp.portalapp.portal.domain.MicroserviceData; -import org.openecomp.portalapp.portal.domain.MicroserviceParameter; -import org.openecomp.portalapp.portal.domain.WidgetCatalog; -import org.openecomp.portalapp.portal.domain.WidgetServiceHeaders; -import org.openecomp.portalapp.portal.ecomp.model.PortalRestResponse; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.transport.CommonWidgetMeta; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.core.ParameterizedTypeReference; -import org.springframework.http.HttpEntity; -import org.springframework.http.HttpMethod; -import org.springframework.http.ResponseEntity; -import org.springframework.stereotype.Service; -import org.springframework.web.client.RestTemplate; - -@Service("microserviceService") -@EnableAspectJAutoProxy -@EPMetricsLog -public class MicroserviceServiceImpl implements MicroserviceService { - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MicroserviceServiceImpl.class); - - - @Autowired - private DataAccessService dataAccessService; - - @Autowired - private SessionFactory sessionFactory; - - public Long saveMicroservice(MicroserviceData newService) throws Exception { - if (newService.getPassword() != null) - newService.setPassword(encryptedPassword(newService.getPassword())); - getDataAccessService().saveDomainObject(newService, null); - return newService.getId(); - } - - public void saveServiceParameters(long serviceId, List list) throws Exception { - for (int i = 0; i < list.size(); i++) { - MicroserviceParameter para = list.get(i); - para.setServiceId(serviceId); - getDataAccessService().saveDomainObject(para, null); - } - } - - @Override - public MicroserviceData getMicroserviceDataById(long id) { - MicroserviceData data = null; - try { - data = (MicroserviceData) dataAccessService - .getList(MicroserviceData.class, " where id = '" + id + "'", null, null).get(0); - data.setParameterList(getServiceParameters(id)); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "getMicroserviceDataById failed", e); - throw e; - } - return data; - } - - @SuppressWarnings("unchecked") - @Override - public List getMicroserviceData() throws Exception { - List list = (List) dataAccessService.getList(MicroserviceData.class, null); - for (int i = 0; i < list.size(); i++) { - if (list.get(i).getPassword() != null) - list.get(i).setPassword(decryptedPassword(list.get(i).getPassword())); - list.get(i).setParameterList(getServiceParameters(list.get(i).getId())); - } - return list; - } - - @SuppressWarnings("unchecked") - private List getServiceParameters(long serviceId) { - List list = (List) dataAccessService - .getList(MicroserviceParameter.class, " where service_id = '" + serviceId + "'", null, null); - return list; - } - - @Override - public void deleteMicroservice(long serviceId) throws Exception { - - try { - Map params = new HashMap(); - params.put("serviceId", Long.toString(serviceId)); - - dataAccessService.executeNamedQuery("deleteMicroserviceParameter", params, null); - dataAccessService.executeNamedQuery("deleteMicroservice", params, null); - - } catch (Exception e) { - e.printStackTrace(); - logger.error(EELFLoggerDelegate.errorLogger, "deleteMicroservice failed", e); - throw e; - } - } - - @SuppressWarnings("unchecked") - @Override - public void updateMicroservice(long serviceId, MicroserviceData newService) throws Exception { - try { - newService.setId(serviceId); - if (newService.getPassword() != null) - newService.setPassword(encryptedPassword(newService.getPassword())); - getDataAccessService().saveDomainObject(newService, null); - List oldService = getServiceParameters(serviceId); - boolean foundParam; - for (int i = 0; i < oldService.size(); i++) { - foundParam = false; - for (int n = 0; n < newService.getParameterList().size(); n++) { - if (newService.getParameterList().get(n).getId() == oldService.get(i).getId()) { - foundParam = true; - break; - } - } - if (foundParam == false) { - MicroserviceParameter pd = oldService.get(i); - Session localSession = sessionFactory.openSession(); - localSession.delete(pd); - localSession.flush(); - localSession.clear(); - } - - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "updateMicroservice failed", e); - throw e; - } - saveServiceParameters(serviceId, newService.getParameterList()); - } - - @Override - @SuppressWarnings("unchecked") - public List getParametersById(long serviceId) { - List restrictionsList = new ArrayList(); - Criterion contextIdCrit = Restrictions.eq("serviceId", serviceId); - restrictionsList.add(contextIdCrit); - List list = (List) dataAccessService - .getList(MicroserviceParameter.class, null, restrictionsList, null); - logger.debug(EELFLoggerDelegate.debugLogger, - "getParametersById: microservice parameters list size: " + list.size()); - return list; - } - - private String decryptedPassword(String encryptedPwd) throws Exception { - String result = ""; - if (encryptedPwd != null & encryptedPwd.length() > 0) { - try { - result = CipherUtil.decrypt(encryptedPwd, - SystemProperties.getProperty(SystemProperties.Decryption_Key)); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "decryptedPassword failed", e); - throw e; - } - } - return result; - } - - private String encryptedPassword(String decryptedPwd) throws Exception { - String result = ""; - if (decryptedPwd != null & decryptedPwd.length() > 0) { - try { - result = CipherUtil.encrypt(decryptedPwd, - SystemProperties.getProperty(SystemProperties.Decryption_Key)); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "encryptedPassword failed", e); - throw e; - } - } - return result; - } - - public DataAccessService getDataAccessService() { - return dataAccessService; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.hibernate.criterion.Criterion; +import org.hibernate.criterion.Restrictions; +import org.openecomp.portalapp.portal.domain.MicroserviceData; +import org.openecomp.portalapp.portal.domain.MicroserviceParameter; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.onboarding.util.CipherUtil; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; + +@Service("microserviceService") +@EnableAspectJAutoProxy +@EPMetricsLog +public class MicroserviceServiceImpl implements MicroserviceService { + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MicroserviceServiceImpl.class); + + @Autowired + private DataAccessService dataAccessService; + + public Long saveMicroservice(MicroserviceData newService) throws Exception { + if (newService.getPassword() != null) + newService.setPassword(encryptedPassword(newService.getPassword())); + getDataAccessService().saveDomainObject(newService, null); + return newService.getId(); + } + + public void saveServiceParameters(long serviceId, List list) throws Exception { + for (int i = 0; i < list.size(); i++) { + MicroserviceParameter para = list.get(i); + para.setServiceId(serviceId); + getDataAccessService().saveDomainObject(para, null); + } + } + + @Override + public MicroserviceData getMicroserviceDataById(long id) { + MicroserviceData data = null; + try { + data = (MicroserviceData) dataAccessService + .getList(MicroserviceData.class, " where id = '" + id + "'", null, null).get(0); + data.setParameterList(getServiceParameters(id)); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getMicroserviceDataById failed", e); + throw e; + } + return data; + } + + @SuppressWarnings("unchecked") + @Override + public List getMicroserviceData() throws Exception { + List list = (List) dataAccessService.getList(MicroserviceData.class, null); + for (int i = 0; i < list.size(); i++) { + if (list.get(i).getPassword() != null) + list.get(i).setPassword(decryptedPassword(list.get(i).getPassword())); + list.get(i).setParameterList(getServiceParameters(list.get(i).getId())); + } + return list; + } + + @SuppressWarnings("unchecked") + private List getServiceParameters(long serviceId) { + List list = (List) dataAccessService + .getList(MicroserviceParameter.class, " where service_id = '" + serviceId + "'", null, null); + return list; + } + + @Override + public void deleteMicroservice(long serviceId) throws Exception { + + try { + Map params = new HashMap(); + params.put("serviceId", Long.toString(serviceId)); + + dataAccessService.executeNamedQuery("deleteMicroserviceParameter", params, null); + dataAccessService.executeNamedQuery("deleteMicroservice", params, null); + + } catch (Exception e) { + e.printStackTrace(); + logger.error(EELFLoggerDelegate.errorLogger, "deleteMicroservice failed", e); + throw e; + } + } + + @SuppressWarnings("unchecked") + @Override + public void updateMicroservice(long serviceId, MicroserviceData newService) throws Exception { + try { + newService.setId(serviceId); + if (newService.getPassword() != null) + newService.setPassword(encryptedPassword(newService.getPassword())); + getDataAccessService().saveDomainObject(newService, null); + List oldService = getServiceParameters(serviceId); + boolean foundParam; + for (int i = 0; i < oldService.size(); i++) { + foundParam = false; + for (int n = 0; n < newService.getParameterList().size(); n++) { + if (newService.getParameterList().get(n).getId().equals(oldService.get(i).getId())) { + foundParam = true; + break; + } + } + if (foundParam == false) { + MicroserviceParameter pd = oldService.get(i); + getDataAccessService().deleteDomainObject(pd, null); + } + } + for (int i = 0; i < newService.getParameterList().size(); i++) { + MicroserviceParameter param = newService.getParameterList().get(i); + param.setServiceId(serviceId); + getDataAccessService().saveDomainObject(param, null); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "updateMicroservice failed", e); + throw e; + } + saveServiceParameters(serviceId, newService.getParameterList()); + } + + @Override + @SuppressWarnings("unchecked") + public List getParametersById(long serviceId) { + List restrictionsList = new ArrayList(); + Criterion contextIdCrit = Restrictions.eq("serviceId", serviceId); + restrictionsList.add(contextIdCrit); + List list = (List) dataAccessService + .getList(MicroserviceParameter.class, null, restrictionsList, null); + logger.debug(EELFLoggerDelegate.debugLogger, + "getParametersById: microservice parameters list size: " + list.size()); + return list; + } + + private String decryptedPassword(String encryptedPwd) throws Exception { + String result = ""; + if (encryptedPwd != null & encryptedPwd.length() > 0) { + try { + result = CipherUtil.decrypt(encryptedPwd, + SystemProperties.getProperty(SystemProperties.Decryption_Key)); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "decryptedPassword failed", e); + throw e; + } + } + return result; + } + + private String encryptedPassword(String decryptedPwd) throws Exception { + String result = ""; + if (decryptedPwd != null & decryptedPwd.length() > 0) { + try { + result = CipherUtil.encrypt(decryptedPwd, + SystemProperties.getProperty(SystemProperties.Decryption_Key)); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "encryptedPassword failed", e); + throw e; + } + } + return result; + } + + public DataAccessService getDataAccessService() { + return dataAccessService; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserAppService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserAppService.java index 7874fa74..af957dc4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserAppService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserAppService.java @@ -1,42 +1,42 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EPUser; - -public interface PersUserAppService { - - /** - * Sets the appropriate code in the user personalization table to indicate - * the application is (de)selected and/or pending. - * - * @param user - * EP User - * @param app - * EP Application - * @param select - * True or false - * @param select - * True or false - */ - void setPersUserAppValue(EPUser user, EPApp app, boolean select, boolean pending); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPUser; + +public interface PersUserAppService { + + /** + * Sets the appropriate code in the user personalization table to indicate + * the application is (de)selected and/or pending. + * + * @param user + * EP User + * @param app + * EP Application + * @param select + * True or false + * @param pending + * True or false + */ + void setPersUserAppValue(EPUser user, EPApp app, boolean select, boolean pending); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserAppServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserAppServiceImpl.java index 6ff10ab4..243b61eb 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserAppServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserAppServiceImpl.java @@ -1,141 +1,141 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EPUserApp; -import org.openecomp.portalapp.portal.domain.PersUserAppSelection; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; - -@Service("persUserAppService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class PersUserAppServiceImpl implements PersUserAppService { - - private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PersUserAppServiceImpl.class); - - @Autowired - private DataAccessService dataAccessService; - @Autowired - private AdminRolesService adminRolesService; - @Autowired - private UserRolesService userRolesService; - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalapp.portal.service.UserAppSelectService# - * setAppCatalogSelection(org.openecomp.portalapp.portal.domain.EPUser, - * org.openecomp.portalapp.portal.transport.AppCatalogSelection) - */ - @Override - public void setPersUserAppValue(EPUser user, EPApp app, boolean select, boolean pending) { - if (user == null || app == null) - throw new IllegalArgumentException("setPersUserAppValue: Null values"); - - // Find the record for this user-app combo, if any - String filter = " where user_id = " + Long.toString(user.getId()) + " and app_id = " - + Long.toString(app.getId()); - @SuppressWarnings("unchecked") - List persList = dataAccessService.getList(PersUserAppSelection.class, filter, null, null); - - // Key constraint limits to 1 row - PersUserAppSelection persRow = null; - if (persList.size() == 1) - persRow = persList.get(0); - else - persRow = new PersUserAppSelection(null, user.getId(), app.getId(), null); - - if (app.getOpen()) { - // Pending status is not meaningful for open apps. - if (pending) - logger.error(EELFLoggerDelegate.errorLogger, - "setPersUserAppValue: invalid request, ignoring set-pending for open app"); - - // Open apps have same behavior for regular and admin users - if (select) { - // Selection of an open app requires a record - persRow.setStatusCode("S"); // show - dataAccessService.saveDomainObject(persRow, null); - } else { - // De-selection of an open app requires no record - if (persRow.getId() != null) - dataAccessService.deleteDomainObject(persRow, null); - } - } else { - // Non-open app. - - // Pending overrides select. - if (pending) { - persRow.setStatusCode("P"); - dataAccessService.saveDomainObject(persRow, null); - } else { - // Behavior depends on Portal (super) admin status, bcos an - // admin can force an app onto the dashboard. - boolean isPortalAdmin = adminRolesService.isSuperAdmin(user); - boolean adminUserHasAppRole = false; - if (isPortalAdmin) { - List roles = userRolesService.getCachedAppRolesForUser(app.getId(), user.getId()); - adminUserHasAppRole = (roles.size() > 0); - logger.debug(EELFLoggerDelegate.debugLogger, "setPersUserAppValue: app {}, admin user {}, role count {}", - app.getId(), user.getId(), roles.size()); - } - - if (select) { - if (isPortalAdmin && !adminUserHasAppRole) { - // The special case: portal admin, no role - persRow.setStatusCode("S"); // show - dataAccessService.saveDomainObject(persRow, null); - } else { - // User has role-based access to the app. - // Showing an accessible app requires no record. - if (persRow.getId() != null) - dataAccessService.deleteDomainObject(persRow, null); - } - } // select - else { - if (isPortalAdmin && !adminUserHasAppRole) { - // The special case: portal admin, no role - if (persRow.getId() != null) - dataAccessService.deleteDomainObject(persRow, null); - } else { - // User has role-based access to the app. - // Hiding an accessible app requires a record - persRow.setStatusCode("H"); // hide - dataAccessService.saveDomainObject(persRow, null); - } - } // deselect - } - } - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EPUserApp; +import org.openecomp.portalapp.portal.domain.PersUserAppSelection; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; + +@Service("persUserAppService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class PersUserAppServiceImpl implements PersUserAppService { + + private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PersUserAppServiceImpl.class); + + @Autowired + private DataAccessService dataAccessService; + @Autowired + private AdminRolesService adminRolesService; + @Autowired + private UserRolesService userRolesService; + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserAppSelectService# + * setAppCatalogSelection(org.openecomp.portalapp.portal.domain.EPUser, + * org.openecomp.portalapp.portal.transport.AppCatalogSelection) + */ + @Override + public void setPersUserAppValue(EPUser user, EPApp app, boolean select, boolean pending) { + if (user == null || app == null) + throw new IllegalArgumentException("setPersUserAppValue: Null values"); + + // Find the record for this user-app combo, if any + String filter = " where user_id = " + Long.toString(user.getId()) + " and app_id = " + + Long.toString(app.getId()); + @SuppressWarnings("unchecked") + List persList = dataAccessService.getList(PersUserAppSelection.class, filter, null, null); + + // Key constraint limits to 1 row + PersUserAppSelection persRow = null; + if (persList.size() == 1) + persRow = persList.get(0); + else + persRow = new PersUserAppSelection(null, user.getId(), app.getId(), null); + + if (app.getOpen()) { + // Pending status is not meaningful for open apps. + if (pending) + logger.error(EELFLoggerDelegate.errorLogger, + "setPersUserAppValue: invalid request, ignoring set-pending for open app"); + + // Open apps have same behavior for regular and admin users + if (select) { + // Selection of an open app requires a record + persRow.setStatusCode("S"); // show + dataAccessService.saveDomainObject(persRow, null); + } else { + // De-selection of an open app requires no record + if (persRow.getId() != null) + dataAccessService.deleteDomainObject(persRow, null); + } + } else { + // Non-open app. + + // Pending overrides select. + if (pending) { + persRow.setStatusCode("P"); + dataAccessService.saveDomainObject(persRow, null); + } else { + // Behavior depends on Portal (super) admin status, bcos an + // admin can force an app onto the dashboard. + boolean isPortalAdmin = adminRolesService.isSuperAdmin(user); + boolean adminUserHasAppRole = false; + if (isPortalAdmin) { + List roles = userRolesService.getCachedAppRolesForUser(app.getId(), user.getId()); + adminUserHasAppRole = (roles.size() > 0); + logger.debug(EELFLoggerDelegate.debugLogger, "setPersUserAppValue: app {}, admin user {}, role count {}", + app.getId(), user.getId(), roles.size()); + } + + if (select) { + if (isPortalAdmin) { + // The special case: portal admin + persRow.setStatusCode("S"); // show + dataAccessService.saveDomainObject(persRow, null); + } else { + // User has role-based access to the app. + // Showing an accessible app requires no record. + if (persRow.getId() != null) + dataAccessService.deleteDomainObject(persRow, null); + } + } // select + else { + if (isPortalAdmin && !adminUserHasAppRole) { + // The special case: portal admin, no role + if (persRow.getId() != null) + dataAccessService.deleteDomainObject(persRow, null); + } else { + // User has role-based access to the app. + // Hiding an accessible app requires a record + persRow.setStatusCode("H"); // hide + dataAccessService.saveDomainObject(persRow, null); + } + } // deselect + } + } + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserWidgetService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserWidgetService.java index d3a46d98..1b18e65d 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserWidgetService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserWidgetService.java @@ -1,41 +1,39 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import org.openecomp.portalapp.portal.domain.EPUser; - -public interface PersUserWidgetService { - - /** - * Sets the appropriate code in the user personalization table to indicate - * the application is (de)selected and/or pending. - * - * @param user - * EP User - * @param app - * EP Application - * @param select - * True or false - * @param select - * True or false - */ - void setPersUserAppValue(EPUser user, Long widgetId, boolean select); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import org.openecomp.portalapp.portal.domain.EPUser; + +public interface PersUserWidgetService { + + /** + * Sets the appropriate code in the user personalization table to indicate + * the application is (de)selected and/or pending. + * + * @param user + * EP User + * @param widgetId + * widget + * @param select + * True or false + */ + void setPersUserAppValue(EPUser user, Long widgetId, boolean select); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserWidgetServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserWidgetServiceImpl.java index 9a45dea6..189b3107 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserWidgetServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PersUserWidgetServiceImpl.java @@ -1,81 +1,81 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.PersUserWidgetSelection; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; - -@Service("persUserWidgetService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class PersUserWidgetServiceImpl implements PersUserWidgetService{ - - private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PersUserAppServiceImpl.class); - - @Autowired - private DataAccessService dataAccessService; - - @Override - public void setPersUserAppValue(EPUser user, Long widgetId, boolean select) { - if (user == null || widgetId == null) - throw new IllegalArgumentException("setPersUserAppValue: Null values"); - - String filter = " where user_id = " + Long.toString(user.getId()) + " and widget_id = " - + Long.toString(widgetId); - @SuppressWarnings("unchecked") - List persList = dataAccessService.getList(PersUserWidgetSelection.class, filter, null, null); - - // Key constraint limits to 1 row - PersUserWidgetSelection persRow = null; - if (persList.size() == 1){ - persRow = persList.get(0); - } - else { - persRow = new PersUserWidgetSelection(null, user.getId(), widgetId, null); - } - if(select){ - if (persRow.getId() != null){ - dataAccessService.deleteDomainObject(persRow, null); - } - persRow.setStatusCode("S"); // show - dataAccessService.saveDomainObject(persRow, null); - } else{ - if (persRow.getId() != null){ - dataAccessService.deleteDomainObject(persRow, null); - } - persRow.setStatusCode("H"); // Hide - dataAccessService.saveDomainObject(persRow, null); - } - - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.PersUserWidgetSelection; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; + +@Service("persUserWidgetService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class PersUserWidgetServiceImpl implements PersUserWidgetService{ + + private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PersUserAppServiceImpl.class); + + @Autowired + private DataAccessService dataAccessService; + + @Override + public void setPersUserAppValue(EPUser user, Long widgetId, boolean select) { + if (user == null || widgetId == null) + throw new IllegalArgumentException("setPersUserAppValue: Null values"); + + String filter = " where user_id = " + Long.toString(user.getId()) + " and widget_id = " + + Long.toString(widgetId); + @SuppressWarnings("unchecked") + List persList = dataAccessService.getList(PersUserWidgetSelection.class, filter, null, null); + + // Key constraint limits to 1 row + PersUserWidgetSelection persRow = null; + if (persList.size() == 1){ + persRow = persList.get(0); + } + else { + persRow = new PersUserWidgetSelection(null, user.getId(), widgetId, null); + } + if(select){ + if (persRow.getId() != null){ + dataAccessService.deleteDomainObject(persRow, null); + } + persRow.setStatusCode("S"); // show + dataAccessService.saveDomainObject(persRow, null); + } else{ + if (persRow.getId() != null){ + dataAccessService.deleteDomainObject(persRow, null); + } + persRow.setStatusCode("H"); // Hide + dataAccessService.saveDomainObject(persRow, null); + } + + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PortalAdminService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PortalAdminService.java index 55b3afd6..ebbe52f3 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PortalAdminService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PortalAdminService.java @@ -1,31 +1,31 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.PortalAdmin; - -public interface PortalAdminService { - List getPortalAdmins (); - FieldsValidator createPortalAdmin(String orgUserId); - FieldsValidator deletePortalAdmin(Long userId); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.PortalAdmin; + +public interface PortalAdminService { + List getPortalAdmins (); + FieldsValidator createPortalAdmin(String orgUserId); + FieldsValidator deletePortalAdmin(Long userId); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PortalAdminServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PortalAdminServiceImpl.java index 639bfc4c..0963f048 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PortalAdminServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/PortalAdminServiceImpl.java @@ -1,210 +1,207 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import javax.annotation.PostConstruct; -import javax.servlet.http.HttpServletResponse; - -import org.hibernate.Session; -import org.hibernate.SessionFactory; -import org.hibernate.Transaction; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.PortalAdmin; -import org.openecomp.portalapp.portal.transport.PortalAdminUserRole; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; - -@Service("portalAdminService") -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class PortalAdminServiceImpl implements PortalAdminService { - - private String SYS_ADMIN_ROLE_ID = "1"; - private String ECOMP_APP_ID = "1"; - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PortalAdminServiceImpl.class); - - @Autowired - private SessionFactory sessionFactory; - @Autowired - private DataAccessService dataAccessService; - @Autowired - SearchService searchService; - - @PostConstruct - private void init() { - SYS_ADMIN_ROLE_ID = SystemProperties.getProperty(SystemProperties.SYS_ADMIN_ROLE_ID); - ECOMP_APP_ID = SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID); - } - - public List getPortalAdmins() { - try { - String sql = "SELECT u.user_id, u.first_name, u.last_name, u.login_id " - + " FROM fn_user u, fn_user_role ur WHERE u.user_id = ur.user_id AND ur.role_id=" - + SYS_ADMIN_ROLE_ID; - logQuery(sql); - - @SuppressWarnings("unchecked") - List portalAdmins = dataAccessService.executeSQLQuery(sql, PortalAdmin.class, null); - logger.debug(EELFLoggerDelegate.debugLogger, "getPortalAdmins was successful"); - return portalAdmins; - - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred while performing getPortalAdmins operation, Details: " - + EcompPortalUtils.getStackTrace(e)); - return null; - } - } - - @SuppressWarnings("unchecked") - public FieldsValidator createPortalAdmin(String orgUserId) { - FieldsValidator fieldsValidator = new FieldsValidator(); - logger.debug(EELFLoggerDelegate.debugLogger, "LR: createPortalAdmin: test 1"); - boolean result = false; - EPUser user = null; - boolean createNewUser = false; - List localUserList = dataAccessService.getList(EPUser.class, " where orgUserId='" + orgUserId + "'", - null, null); - if (localUserList.size() > 0) { - user = localUserList.get(0); - } else { - createNewUser = true; - } - - if (user!=null && isLoggedInUserPortalAdmin(user.getId())) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); - logger.error(EELFLoggerDelegate.errorLogger, "User '" + user.getOrgUserId() + "' already has PortalAdmin role assigned."); - } - else if (user != null || createNewUser) { - Session localSession = null; - Transaction transaction = null; - try { - localSession = sessionFactory.openSession(); - - transaction = localSession.beginTransaction(); - if (createNewUser) { - user = this.searchService.searchUserByUserId(orgUserId); - if (user != null) { - // insert the user with active true in order to - // pass login phase. - user.setActive(true); - localSession.save(EPUser.class.getName(), user); - } - } - if (user != null) { - Long userid = user.getId(); - PortalAdminUserRole userRole = new PortalAdminUserRole(); - userRole.userId = userid; - userRole.roleId = Long.valueOf(SYS_ADMIN_ROLE_ID); - userRole.appId = Long.valueOf(ECOMP_APP_ID); - - localSession.save(PortalAdminUserRole.class.getName(), userRole); - } - // logger.debug(EELFLoggerDelegate.debugLogger, "after saving menu object, new id: " + userid); - - transaction.commit(); - result = true; - } catch (Exception e) { - EcompPortalUtils.rollbackTransaction(transaction, - "createPortalAdmin rollback, exception = " + e); - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "createPortalAdmin"); - } - if (!result) { - logger.debug(EELFLoggerDelegate.debugLogger, "LR: createPortalAdmin: no result. setting httpStatusCode to " - + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - logger.error(EELFLoggerDelegate.errorLogger, "PortalAdminServiceImpl.createPortalAdmin: bad request"); - } - } - return fieldsValidator; - } - - public FieldsValidator deletePortalAdmin(Long userId) { - FieldsValidator fieldsValidator = new FieldsValidator(); - logger.debug(EELFLoggerDelegate.debugLogger, "deletePortalAdmin: test 1"); - boolean result = false; - Session localSession = null; - Transaction transaction = null; - - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - dataAccessService.deleteDomainObjects(PortalAdminUserRole.class, - "user_id='" + userId + "' AND role_id='" + SYS_ADMIN_ROLE_ID + "'", null); - transaction.commit(); - result = true; - } catch (Exception e) { - EcompPortalUtils.rollbackTransaction(transaction, "deletePortalAdmin rollback, exception = " + e); - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "deletePortalAdmin"); - } - if (result) { - } else { - logger.debug(EELFLoggerDelegate.debugLogger, "deletePortalAdmin: no result. setting httpStatusCode to " - + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - return fieldsValidator; - } - - private void logQuery(String sql) { - logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); - } - - private boolean isLoggedInUserPortalAdmin(Long userId) { - try { - String sql = "SELECT u.user_id, u.first_name, u.last_name, u.login_id " + - " FROM fn_user u, fn_user_role ur " + - " WHERE u.user_id = ur.user_id " + - " AND ur.user_id=" + userId + - " AND ur.role_id=" + SYS_ADMIN_ROLE_ID; - - logQuery(sql); - - @SuppressWarnings("unchecked") - List portalAdmins = dataAccessService.executeSQLQuery(sql, PortalAdmin.class, null); - logger.debug(EELFLoggerDelegate.debugLogger, portalAdmins.toString()); - if (portalAdmins==null || portalAdmins.size()<=0) { - return false; - } - return true; - - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing isLoggedInUserPortalAdmin operation, Details: " + EcompPortalUtils.getStackTrace(e)); - return false; - } - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import javax.annotation.PostConstruct; +import javax.servlet.http.HttpServletResponse; + +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.Transaction; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.PortalAdmin; +import org.openecomp.portalapp.portal.transport.PortalAdminUserRole; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; + +@Service("portalAdminService") +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class PortalAdminServiceImpl implements PortalAdminService { + + private String SYS_ADMIN_ROLE_ID = "1"; + private String ECOMP_APP_ID = "1"; + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(PortalAdminServiceImpl.class); + + @Autowired + private SessionFactory sessionFactory; + @Autowired + private DataAccessService dataAccessService; + @Autowired + SearchService searchService; + + @PostConstruct + private void init() { + SYS_ADMIN_ROLE_ID = SystemProperties.getProperty(SystemProperties.SYS_ADMIN_ROLE_ID); + ECOMP_APP_ID = SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID); + } + + public List getPortalAdmins() { + try { + Map params = new HashMap<>(); + params.put("adminRoleId", SYS_ADMIN_ROLE_ID); + @SuppressWarnings("unchecked") + List portalAdmins = (List) dataAccessService.executeNamedQuery("getPortalAdmins", + params, null); + logger.debug(EELFLoggerDelegate.debugLogger, "getPortalAdmins was successful"); + return portalAdmins; + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while performing getPortalAdmins operation, Details: " + + EcompPortalUtils.getStackTrace(e)); + return null; + } + } + + @SuppressWarnings("unchecked") + public FieldsValidator createPortalAdmin(String orgUserId) { + FieldsValidator fieldsValidator = new FieldsValidator(); + logger.debug(EELFLoggerDelegate.debugLogger, "LR: createPortalAdmin: test 1"); + boolean result = false; + EPUser user = null; + boolean createNewUser = false; + List localUserList = dataAccessService.getList(EPUser.class, " where orgUserId='" + orgUserId + "'", + null, null); + if (localUserList.size() > 0) { + user = localUserList.get(0); + } else { + createNewUser = true; + } + + if (user != null && isLoggedInUserPortalAdmin(user.getId())) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); + logger.error(EELFLoggerDelegate.errorLogger, + "User '" + user.getOrgUserId() + "' already has PortalAdmin role assigned."); + } else if (user != null || createNewUser) { + Session localSession = null; + Transaction transaction = null; + try { + localSession = sessionFactory.openSession(); + + transaction = localSession.beginTransaction(); + if (createNewUser) { + user = this.searchService.searchUserByUserId(orgUserId); + if (user != null) { + // insert the user with active true in order to + // pass login phase. + user.setActive(true); + localSession.save(EPUser.class.getName(), user); + } + } + if (user != null) { + Long userid = user.getId(); + PortalAdminUserRole userRole = new PortalAdminUserRole(); + userRole.userId = userid; + userRole.roleId = Long.valueOf(SYS_ADMIN_ROLE_ID); + userRole.appId = Long.valueOf(ECOMP_APP_ID); + + localSession.save(PortalAdminUserRole.class.getName(), userRole); + } + + transaction.commit(); + result = true; + } catch (Exception e) { + EcompPortalUtils.rollbackTransaction(transaction, "createPortalAdmin rollback, exception = " + e); + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "createPortalAdmin"); + } + if (!result) { + logger.debug(EELFLoggerDelegate.debugLogger, + "LR: createPortalAdmin: no result. setting httpStatusCode to " + + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + logger.error(EELFLoggerDelegate.errorLogger, "PortalAdminServiceImpl.createPortalAdmin: bad request"); + } + } + return fieldsValidator; + } + + public FieldsValidator deletePortalAdmin(Long userId) { + FieldsValidator fieldsValidator = new FieldsValidator(); + logger.debug(EELFLoggerDelegate.debugLogger, "deletePortalAdmin: test 1"); + boolean result = false; + Session localSession = null; + Transaction transaction = null; + + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + dataAccessService.deleteDomainObjects(PortalAdminUserRole.class, + "user_id='" + userId + "' AND role_id='" + SYS_ADMIN_ROLE_ID + "'", null); + transaction.commit(); + result = true; + } catch (Exception e) { + EcompPortalUtils.rollbackTransaction(transaction, "deletePortalAdmin rollback, exception = " + e); + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "deletePortalAdmin"); + } + if (result) { + } else { + logger.debug(EELFLoggerDelegate.debugLogger, "deletePortalAdmin: no result. setting httpStatusCode to " + + HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + return fieldsValidator; + } + + private void logQuery(String sql) { + logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); + } + + private boolean isLoggedInUserPortalAdmin(Long userId) { + try { + String sql = "SELECT u.user_id, u.first_name, u.last_name, u.login_id " + + " FROM fn_user u, fn_user_role ur " + " WHERE u.user_id = ur.user_id " + " AND ur.user_id=" + + userId + " AND ur.role_id=" + SYS_ADMIN_ROLE_ID; + + logQuery(sql); + + @SuppressWarnings("unchecked") + List portalAdmins = dataAccessService.executeSQLQuery(sql, PortalAdmin.class, null); + logger.debug(EELFLoggerDelegate.debugLogger, portalAdmins.toString()); + if (portalAdmins == null || portalAdmins.size() <= 0) { + return false; + } + return true; + + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred while performing isLoggedInUserPortalAdmin operation, Details: " + + EcompPortalUtils.getStackTrace(e)); + return false; + } + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SearchService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SearchService.java index 9aa24692..cf88fb7f 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SearchService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SearchService.java @@ -1,30 +1,30 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import org.openecomp.portalapp.portal.domain.EPUser; - -public interface SearchService { - - public String searchUsersInPhoneBook(String searchString); - - public EPUser searchUserByUserId(String orgUserId); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import org.openecomp.portalapp.portal.domain.EPUser; + +public interface SearchService { + + public String searchUsersInPhoneBook(String searchString); + + public EPUser searchUserByUserId(String orgUserId); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SearchServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SearchServiceImpl.java index 88dc299f..a2b56e5a 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SearchServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SearchServiceImpl.java @@ -1,175 +1,175 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.ArrayList; -import java.util.List; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.transport.UserWithNameSurnameTitle; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; - -@Service("searchService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class SearchServiceImpl implements SearchService { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(SearchServiceImpl.class); - - // TODO: the values below should be defined in other place - private static final int maxSizeOfSearchResult = 100; - - - @Autowired - EPLdapService ldapService; - - @Override - public String searchUsersInPhoneBook(String searchString) { - String orgUserId = null; - List tokens = EcompPortalUtils.parsingByRegularExpression(searchString, " "); - for (int i = 0; i < tokens.size(); i++) { // find orgUserId if possible and remove it from tokens - if (tokens.get(i).matches(".*\\d+.*")) { - orgUserId = tokens.get(i); - tokens.remove(i); - } - } - while (tokens.size() > 2) { // we use no more then first 2 tokens (orgUserId is removed, see above) - tokens.remove(tokens.size() - 1); - } - EPUser attrUser = new EPUser(); - attrUser.setOrgUserId(orgUserId); - List resultOfSearch = new ArrayList(), resultOfAdditionalSearch = null; - if (tokens.size() == 2) { - attrUser.setFirstName(tokens.get(0)); - attrUser.setLastName(tokens.get(1)); - resultOfSearch = this.searchUsersByAttrs(attrUser); - resultOfSearch = this.removeWrongFirstNames(resultOfSearch, tokens.get(0)); - resultOfSearch = this.removeWrongLastNames(resultOfSearch, tokens.get(1)); - if (resultOfSearch.size() < maxSizeOfSearchResult) { - attrUser.setFirstName(tokens.get(1)); - attrUser.setLastName(tokens.get(0)); - resultOfAdditionalSearch = this.searchUsersByAttrs(attrUser); - resultOfAdditionalSearch = this.removeWrongFirstNames(resultOfAdditionalSearch, tokens.get(1)); - resultOfAdditionalSearch = this.removeWrongLastNames(resultOfAdditionalSearch, tokens.get(0)); - } - } else if (tokens.size() == 1) { - attrUser.setFirstName(tokens.get(0)); - resultOfSearch = this.searchUsersByAttrs(attrUser); - resultOfSearch = this.removeWrongFirstNames(resultOfSearch, tokens.get(0)); - if (resultOfSearch.size() < maxSizeOfSearchResult) { - attrUser.setFirstName(null); - attrUser.setLastName(tokens.get(0)); - resultOfAdditionalSearch = this.searchUsersByAttrs(attrUser); - resultOfAdditionalSearch = this.removeWrongLastNames(resultOfAdditionalSearch, tokens.get(0)); - } - } else if (orgUserId != null) { - resultOfSearch = this.searchUsersByAttrs(attrUser); - } - if (resultOfAdditionalSearch != null) { - resultOfSearch.addAll(resultOfAdditionalSearch); - } - resultOfSearch = this.cutSearchResultToMaximumSize(resultOfSearch); - ObjectMapper mapper = new ObjectMapper(); - String result = "[]"; - try { - result = mapper.writeValueAsString(resultOfSearch); - } catch (JsonProcessingException e) { - logger.error(EELFLoggerDelegate.errorLogger, "searchUsersInPhoneBook Exception = " + EcompPortalUtils.getStackTrace(e)); - } - return result; - } - - private List searchUsersByAttrs(EPUser attrUser) { - List foundUsers = new ArrayList(); - try { - org.openecomp.portalsdk.core.command.support.SearchResult searchResult = this.ldapService.searchPost(attrUser, null, null, null, 0, 0, -1); - for (Object obj : searchResult) { - EPUser user = (EPUser) obj; - UserWithNameSurnameTitle foundUser = new UserWithNameSurnameTitle(user.getOrgUserId(), user.getFirstName(), user.getLastName(), user.getJobTitle()); - foundUsers.add(foundUser); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "searchInPhoneBookWithToken Exception = " + EcompPortalUtils.getStackTrace(e)); - } - return foundUsers; - } - - private List removeWrongFirstNames(List resultOfSearch, String firstName) { - firstName = firstName.toUpperCase(); - for (int i = resultOfSearch.size() - 1; i >= 0; i--) { - UserWithNameSurnameTitle user = resultOfSearch.get(i); - if ((user.firstName == null) || !user.firstName.toUpperCase().startsWith(firstName)) { - resultOfSearch.remove(i); - } - } - return resultOfSearch; - } - - private List removeWrongLastNames(List resultOfSearch, String lastName) { - lastName = lastName.toUpperCase(); - for (int i = resultOfSearch.size() - 1; i >= 0; i--) { - UserWithNameSurnameTitle user = resultOfSearch.get(i); - if ((user.lastName == null) || !user.lastName.toUpperCase().startsWith(lastName)) { - resultOfSearch.remove(i); - } - } - return resultOfSearch; - } - - private List cutSearchResultToMaximumSize(List resultOfSearch) { - for (int i = resultOfSearch.size() - 1; i >= maxSizeOfSearchResult; i--) { - resultOfSearch.remove(i); - } - return resultOfSearch; - } - - @Override - @SuppressWarnings("unchecked") - public EPUser searchUserByUserId(String orgUserId) { - EPUser user = null; - EPUser searchedUser = new EPUser(); - searchedUser.setOrgUserId(orgUserId); - try { - List searchResult = ldapService.searchPost(searchedUser, "", null, null, 0, -1, 1); - for (Object obj : searchResult) { - if (obj instanceof EPUser) { - user = (EPUser) obj; - // This assignment should be checked later! - user.setLoginId(orgUserId); - break; - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "searchUserBy orgUserId exception = " + EcompPortalUtils.getStackTrace(e)); - } - return user; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.ArrayList; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.transport.UserWithNameSurnameTitle; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; + +@Service("searchService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class SearchServiceImpl implements SearchService { + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(SearchServiceImpl.class); + + // TODO: the values below should be defined in other place + private static final int maxSizeOfSearchResult = 100; + + + @Autowired + EPLdapService ldapService; + + @Override + public String searchUsersInPhoneBook(String searchString) { + String orgUserId = null; + List tokens = EcompPortalUtils.parsingByRegularExpression(searchString, " "); + for (int i = 0; i < tokens.size(); i++) { // find orgUserId if possible and remove it from tokens + if (tokens.get(i).matches(".*\\d+.*")) { + orgUserId = tokens.get(i); + tokens.remove(i); + } + } + while (tokens.size() > 2) { // we use no more then first 2 tokens (orgUserId is removed, see above) + tokens.remove(tokens.size() - 1); + } + EPUser attrUser = new EPUser(); + attrUser.setOrgUserId(orgUserId); + List resultOfSearch = new ArrayList(), resultOfAdditionalSearch = null; + if (tokens.size() == 2) { + attrUser.setFirstName(tokens.get(0)); + attrUser.setLastName(tokens.get(1)); + resultOfSearch = this.searchUsersByAttrs(attrUser); + resultOfSearch = this.removeWrongFirstNames(resultOfSearch, tokens.get(0)); + resultOfSearch = this.removeWrongLastNames(resultOfSearch, tokens.get(1)); + if (resultOfSearch.size() < maxSizeOfSearchResult) { + attrUser.setFirstName(tokens.get(1)); + attrUser.setLastName(tokens.get(0)); + resultOfAdditionalSearch = this.searchUsersByAttrs(attrUser); + resultOfAdditionalSearch = this.removeWrongFirstNames(resultOfAdditionalSearch, tokens.get(1)); + resultOfAdditionalSearch = this.removeWrongLastNames(resultOfAdditionalSearch, tokens.get(0)); + } + } else if (tokens.size() == 1) { + attrUser.setFirstName(tokens.get(0)); + resultOfSearch = this.searchUsersByAttrs(attrUser); + resultOfSearch = this.removeWrongFirstNames(resultOfSearch, tokens.get(0)); + if (resultOfSearch.size() < maxSizeOfSearchResult) { + attrUser.setFirstName(null); + attrUser.setLastName(tokens.get(0)); + resultOfAdditionalSearch = this.searchUsersByAttrs(attrUser); + resultOfAdditionalSearch = this.removeWrongLastNames(resultOfAdditionalSearch, tokens.get(0)); + } + } else if (orgUserId != null) { + resultOfSearch = this.searchUsersByAttrs(attrUser); + } + if (resultOfAdditionalSearch != null) { + resultOfSearch.addAll(resultOfAdditionalSearch); + } + resultOfSearch = this.cutSearchResultToMaximumSize(resultOfSearch); + ObjectMapper mapper = new ObjectMapper(); + String result = "[]"; + try { + result = mapper.writeValueAsString(resultOfSearch); + } catch (JsonProcessingException e) { + logger.error(EELFLoggerDelegate.errorLogger, "searchUsersInPhoneBook Exception = " + EcompPortalUtils.getStackTrace(e)); + } + return result; + } + + private List searchUsersByAttrs(EPUser attrUser) { + List foundUsers = new ArrayList(); + try { + org.openecomp.portalsdk.core.command.support.SearchResult searchResult = this.ldapService.searchPost(attrUser, null, null, null, 0, 0, -1); + for (Object obj : searchResult) { + EPUser user = (EPUser) obj; + UserWithNameSurnameTitle foundUser = new UserWithNameSurnameTitle(user.getOrgUserId(), user.getFirstName(), user.getLastName(), user.getJobTitle()); + foundUsers.add(foundUser); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "searchInPhoneBookWithToken Exception = " + EcompPortalUtils.getStackTrace(e)); + } + return foundUsers; + } + + private List removeWrongFirstNames(List resultOfSearch, String firstName) { + firstName = firstName.toUpperCase(); + for (int i = resultOfSearch.size() - 1; i >= 0; i--) { + UserWithNameSurnameTitle user = resultOfSearch.get(i); + if ((user.firstName == null) || !user.firstName.toUpperCase().startsWith(firstName)) { + resultOfSearch.remove(i); + } + } + return resultOfSearch; + } + + private List removeWrongLastNames(List resultOfSearch, String lastName) { + lastName = lastName.toUpperCase(); + for (int i = resultOfSearch.size() - 1; i >= 0; i--) { + UserWithNameSurnameTitle user = resultOfSearch.get(i); + if ((user.lastName == null) || !user.lastName.toUpperCase().startsWith(lastName)) { + resultOfSearch.remove(i); + } + } + return resultOfSearch; + } + + private List cutSearchResultToMaximumSize(List resultOfSearch) { + for (int i = resultOfSearch.size() - 1; i >= maxSizeOfSearchResult; i--) { + resultOfSearch.remove(i); + } + return resultOfSearch; + } + + @Override + @SuppressWarnings("unchecked") + public EPUser searchUserByUserId(String orgUserId) { + EPUser user = null; + EPUser searchedUser = new EPUser(); + searchedUser.setOrgUserId(orgUserId); + try { + List searchResult = ldapService.searchPost(searchedUser, "", null, null, 0, -1, 1); + for (Object obj : searchResult) { + if (obj instanceof EPUser) { + user = (EPUser) obj; + // This assignment should be checked later! + user.setLoginId(orgUserId); + break; + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "searchUserBy orgUserId exception = " + EcompPortalUtils.getStackTrace(e)); + } + return user; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SharedContextService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SharedContextService.java index 0b1a6df7..72f3bcb5 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SharedContextService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SharedContextService.java @@ -1,98 +1,100 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.domain.SharedContext; - -/** - * Defines the methods exposed by the service that manages shared context - * objects in the database via Hibernate. - */ -public interface SharedContextService { - - /** - * Gets all shared context objects for the specified context ID. - * - * @return List of SharedContext objects - */ - List getSharedContexts(String contextId); - - /** - * Gets the shared context with the specified context ID and key. - * - * @param contextId - * Context ID; usually a session ID - * @param key - * Key for the key-value pair - * @return Value found in the database, null if any parameter is null or no - * shared context exists with that context ID - key pair. - */ - SharedContext getSharedContext(String contextId, String key); - - /** - * Creates a new shared context in the database with the specified context - * ID, key and value. - * - * @param context - * SharedContext object to save. - * @param key - * Key for the key-value pair. - * @param value - * Value for the key-value pair. - */ - void addSharedContext(String contextId, String key, String value); - - /** - * Saves the specified shared context to the database. - * - * @param context - * SharedContext object to save. - */ - void saveSharedContext(SharedContext context); - - /** - * Deletes the specified shared context from the database. - * - * @param context - * SharedContext object to delete. - */ - void deleteSharedContext(SharedContext context); - - /** - * Deletes all shared contexts with the specified context ID. - * - * @param contextId - * Context ID; usually a session ID - * @return number of shared-context objects deleted - */ - int deleteSharedContexts(String contextId); - - /** - * Deletes all shared contexts with a creation time that is older than the - * specified value. - * - * @param ageInSeconds - * Expiration threshold in seconds - */ - void expireSharedContexts(int ageInSeconds); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.domain.SharedContext; + +/** + * Defines the methods exposed by the service that manages shared context + * objects in the database. + */ +public interface SharedContextService { + + /** + * Gets all shared context objects for the specified context ID. + * + * @param contextId + * SharedContext ID + * @return List of SharedContext objects + */ + List getSharedContexts(String contextId); + + /** + * Gets the shared context with the specified context ID and key. + * + * @param contextId + * Context ID; usually a session ID + * @param key + * Key for the key-value pair + * @return Value found in the database, null if any parameter is null or no + * shared context exists with that context ID - key pair. + */ + SharedContext getSharedContext(String contextId, String key); + + /** + * Creates a new shared context entry with the specified context ID, key and + * value. + * + * @param contextId + * SharedContext ID + * @param key + * Key for the key-value pair. + * @param value + * Value for the key-value pair. + */ + void addSharedContext(String contextId, String key, String value); + + /** + * Saves the specified shared context. + * + * @param context + * SharedContext object to save. + */ + void saveSharedContext(SharedContext context); + + /** + * Deletes the specified shared context. + * + * @param context + * SharedContext object to delete. + */ + void deleteSharedContext(SharedContext context); + + /** + * Deletes all shared contexts with the specified context ID. + * + * @param contextId + * Context ID; usually a session ID + * @return number of shared-context objects deleted + */ + int deleteSharedContexts(String contextId); + + /** + * Deletes all shared contexts with a creation time that is older than the + * specified value. + * + * @param ageInSeconds + * Expiration threshold in seconds + */ + void expireSharedContexts(int ageInSeconds); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SharedContextServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SharedContextServiceImpl.java index 428f1354..1b1b6069 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SharedContextServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/SharedContextServiceImpl.java @@ -1,177 +1,177 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Date; -import java.util.List; - -import org.hibernate.criterion.Criterion; -import org.hibernate.criterion.Restrictions; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalapp.portal.domain.SharedContext; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; - -/** - * Implementation of the shared-context service that talks to the database. - */ -@Service("sharedContextService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class SharedContextServiceImpl implements SharedContextService { - - @Autowired - private DataAccessService dataAccessService; - - private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(SharedContextServiceImpl.class); - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalsdk.core.service.SharedContextService# - * getSharedContexts() - */ - @Override - @SuppressWarnings("unchecked") - public List getSharedContexts(String contextId) { - List restrictionsList = new ArrayList(); - Criterion contextIdCrit = Restrictions.eq("context_id", contextId); - restrictionsList.add(contextIdCrit); - List contexts = (List) getDataAccessService().getList(SharedContext.class, null, - restrictionsList, null); - - return contexts; - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalsdk.core.service.SharedContextService# - * getSharedContext(java. lang.String, java.lang.String) - */ - @Override - public SharedContext getSharedContext(String contextId, String key) { - SharedContext context = null; - List restrictionsList = new ArrayList(); - Criterion contextIdCrit = Restrictions.eq("context_id", contextId); - Criterion keyCrit = Restrictions.eq("ckey", key); - restrictionsList.add(contextIdCrit); - restrictionsList.add(keyCrit); - @SuppressWarnings("unchecked") - List contexts = (List) getDataAccessService().getList(SharedContext.class, null, - restrictionsList, null); - if (contexts != null && contexts.size() == 1) - context = contexts.get(0); - - return context; - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalapp.portal.service.SharedContextService# - * addSharedContext(java.lang.String, java.lang.String, java.lang.String) - */ - @Override - public void addSharedContext(String contextId, String key, String value) { - SharedContext context = new SharedContext(contextId, key, value); - saveSharedContext(context); - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalsdk.core.service.SharedContextService# - * saveSharedContext(com. att.fusion.core.domain.SharedContext) - */ - @Override - public void saveSharedContext(SharedContext context) { - getDataAccessService().saveDomainObject(context, null); - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalsdk.core.service.SharedContextService# - * deleteSharedContext(com. att.fusion.core.domain.SharedContext) - */ - @Override - public void deleteSharedContext(SharedContext context) { - getDataAccessService().deleteDomainObject(context, null); - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalapp.portal.service.SharedContextService# - * deleteSharedContexts(java.lang.String) - */ - @Override - public int deleteSharedContexts(String contextId) { - // Uses an inefficient method to avoid a where clause - // that could be used to mount a SQL injection attack. - List contexts = getSharedContexts(contextId); - if (contexts == null) - return 0; - - logger.debug(EELFLoggerDelegate.debugLogger, "deleteSharedContexts: count is " + contexts.size()); - for (SharedContext sc : contexts) - deleteSharedContext(sc); - - return contexts.size(); - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalapp.portal.service.SharedContextService# - * expireSharedContexts(int) - */ - @Override - public void expireSharedContexts(int ageInSeconds) { - // Specific to the MySQL database. - // final String whereClause = " where create_time < ADDDATE(NOW(), - // INTERVAL - " + ageInSeconds + " SECOND)"; - final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); - Date expiredDateTime = new Date(System.currentTimeMillis() - ageInSeconds * 1000); - logger.debug(EELFLoggerDelegate.debugLogger, - "expireSharedContexts: expire time is " + expiredDateTime.toString()); - final String whereClause = " create_time < '" + dateFormat.format(expiredDateTime) + "'"; - getDataAccessService().deleteDomainObjects(SharedContext.class, whereClause, null); - } - - public DataAccessService getDataAccessService() { - return dataAccessService; - } - - public void setDataAccessService(DataAccessService dataAccessService) { - this.dataAccessService = dataAccessService; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +import org.hibernate.criterion.Criterion; +import org.hibernate.criterion.Restrictions; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalapp.portal.domain.SharedContext; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; + +/** + * Implementation of the shared-context service that talks to the database. + */ +@Service("sharedContextService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class SharedContextServiceImpl implements SharedContextService { + + @Autowired + private DataAccessService dataAccessService; + + private EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(SharedContextServiceImpl.class); + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalsdk.core.service.SharedContextService# + * getSharedContexts() + */ + @Override + @SuppressWarnings("unchecked") + public List getSharedContexts(String contextId) { + List restrictionsList = new ArrayList(); + Criterion contextIdCrit = Restrictions.eq("context_id", contextId); + restrictionsList.add(contextIdCrit); + List contexts = (List) getDataAccessService().getList(SharedContext.class, null, + restrictionsList, null); + + return contexts; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalsdk.core.service.SharedContextService# + * getSharedContext(java. lang.String, java.lang.String) + */ + @Override + public SharedContext getSharedContext(String contextId, String key) { + SharedContext context = null; + List restrictionsList = new ArrayList(); + Criterion contextIdCrit = Restrictions.eq("context_id", contextId); + Criterion keyCrit = Restrictions.eq("ckey", key); + restrictionsList.add(contextIdCrit); + restrictionsList.add(keyCrit); + @SuppressWarnings("unchecked") + List contexts = (List) getDataAccessService().getList(SharedContext.class, null, + restrictionsList, null); + if (contexts != null && contexts.size() == 1) + context = contexts.get(0); + + return context; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.SharedContextService# + * addSharedContext(java.lang.String, java.lang.String, java.lang.String) + */ + @Override + public void addSharedContext(String contextId, String key, String value) { + SharedContext context = new SharedContext(contextId, key, value); + saveSharedContext(context); + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalsdk.core.service.SharedContextService# + * saveSharedContext(com. att.fusion.core.domain.SharedContext) + */ + @Override + public void saveSharedContext(SharedContext context) { + getDataAccessService().saveDomainObject(context, null); + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalsdk.core.service.SharedContextService# + * deleteSharedContext(com. att.fusion.core.domain.SharedContext) + */ + @Override + public void deleteSharedContext(SharedContext context) { + getDataAccessService().deleteDomainObject(context, null); + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.SharedContextService# + * deleteSharedContexts(java.lang.String) + */ + @Override + public int deleteSharedContexts(String contextId) { + // Uses an inefficient method to avoid a where clause + // that could be used to mount a SQL injection attack. + List contexts = getSharedContexts(contextId); + if (contexts == null) + return 0; + + logger.debug(EELFLoggerDelegate.debugLogger, "deleteSharedContexts: count is " + contexts.size()); + for (SharedContext sc : contexts) + deleteSharedContext(sc); + + return contexts.size(); + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.SharedContextService# + * expireSharedContexts(int) + */ + @Override + public void expireSharedContexts(int ageInSeconds) { + // Specific to the MySQL database. + // final String whereClause = " where create_time < ADDDATE(NOW(), + // INTERVAL - " + ageInSeconds + " SECOND)"; + final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + Date expiredDateTime = new Date(System.currentTimeMillis() - ageInSeconds * 1000); + logger.debug(EELFLoggerDelegate.debugLogger, + "expireSharedContexts: expire time is " + expiredDateTime.toString()); + final String whereClause = " create_time < '" + dateFormat.format(expiredDateTime) + "'"; + getDataAccessService().deleteDomainObjects(SharedContext.class, whereClause, null); + } + + public DataAccessService getDataAccessService() { + return dataAccessService; + } + + public void setDataAccessService(DataAccessService dataAccessService) { + this.dataAccessService = dataAccessService; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserNotificationService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserNotificationService.java index 063fdf07..447cacf4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserNotificationService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserNotificationService.java @@ -1,55 +1,140 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EcompAppRole; -import org.openecomp.portalapp.portal.transport.EpNotificationItem; -import org.openecomp.portalapp.portal.transport.EpNotificationItemVO; -import org.openecomp.portalapp.portal.transport.EpRoleNotificationItem; - -public interface UserNotificationService { - - List getNotifications(Long userId); - - List getNotificationRoles(Long notificationId); - - List getAppRoleList(); - /** - * Marks the notification as viewed by the specified user. - * - * @param notificationId - * @param userId - */ - void setNotificationRead(Long notificationId, int userId); - - String saveNotification(EpNotificationItem notificationItem) throws Exception; - - List getNotificationHistoryVO(Long userId); - - List getAdminNotificationVOS(); - - List getUsersByOrgIds(List OrgIds); - - List getMessageRecipients(Long notificationId); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EcompAppRole; +import org.openecomp.portalapp.portal.transport.EpNotificationItem; +import org.openecomp.portalapp.portal.transport.EpNotificationItemVO; +import org.openecomp.portalapp.portal.transport.EpRoleNotificationItem; + +public interface UserNotificationService { + + /** + * Gets the specified notifications with userId from ep_notification + * + * @param userId + * + * @return the notifications with the specified userId + */ + + List getNotifications(Long userId); + + /** + * Gets the specified roles from ep_role_notification + * + * @param notificationId + * + * @return the roles for a specified notification + */ + + List getNotificationRoles(Long notificationId); + + /** + * Get all app role list from the fn_app and fn_role table + * + * @return list of all roles associated with the applications + */ + List getAppRoleList(); + + /** + * Marks the notification as viewed by the specified user. + * + * @param notificationId + * @param userId + */ + void setNotificationRead(Long notificationId, int userId); + + /** + * Saves the specified notification to the table ep_notification + * + * @param notificationItem + * @throws Exception + */ + + String saveNotification(EpNotificationItem notificationItem) throws Exception; + + /** + * Gets the specified notification with the userId for view all recent + * notifications + * + * @param userId + * + * @return the notification list + */ + + List getNotificationHistoryVO(Long userId); + + /** + * Gets the notifications with the userId for user notifications + * + * @param userId + * + * @return the notification list + */ + + List getAdminNotificationVOS(Long userId); + + /** + * Gets the user list from fn_user + * + * @param OrgIds + * + * @return the users list + */ + + List getUsersByOrgIds(List OrgIds); + + /** + * Gets the received recipient to whom the notification is delivered from + * external system + * + * @param notificationId + * + * @return the active users + */ + + List getMessageRecipients(Long notificationId); + + /** + * delete the records from ep_notification table when the endtime is more + * than 3 months + * + */ + + void deleteNotificationsFromEpNotificationTable(); + + /** + * delete the records from ep_user_notification table when the endtime is + * more than 3 months + * + */ + void deleteNotificationsFromEpUserNotificationTable(); + + /** + * delete the records from ep_role_notification table when the endtime is + * more than 3 months + * + */ + void deleteNotificationsFromEpRoleNotificationTable(); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserNotificationServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserNotificationServiceImpl.java index 4017b2fc..52bc4922 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserNotificationServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserNotificationServiceImpl.java @@ -1,211 +1,244 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.Date; -import java.util.HashMap; -import java.util.HashSet; -import java.util.List; -import java.util.Map; -import java.util.Set; - -import org.hibernate.SessionFactory; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EPUserNotification; -import org.openecomp.portalapp.portal.domain.EcompAppRole; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.transport.EpNotificationItem; -import org.openecomp.portalapp.portal.transport.EpNotificationItemVO; -import org.openecomp.portalapp.portal.transport.EpRoleNotificationItem; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; - -@Service("userNotificationService") -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class UserNotificationServiceImpl implements UserNotificationService { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FunctionalMenuServiceImpl.class); - - @Autowired - private DataAccessService dataAccessService; - @Autowired - private SessionFactory sessionFactory; - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.UserNotificationService#getNotifications(java.lang.Long) - */ - @Override - public List getNotifications(Long userId) { - Map params = new HashMap(); - params.put("user_id", userId.toString()); - @SuppressWarnings("unchecked") - List notificationList = dataAccessService.executeNamedQuery("getNotifications", params, - null); - // set the roles to null for pure retrieval of all notifications - for (EpNotificationItem item : notificationList) { - item.setRoles(null); - } - return notificationList; - } - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.UserNotificationService#getNotificationHistoryVO(java.lang.Long) - */ - @Override - public List getNotificationHistoryVO(Long userId) { - Map params = new HashMap(); - params.put("user_id", userId.toString()); - @SuppressWarnings("unchecked") - List notificationList = dataAccessService.executeNamedQuery("getNotificationHistoryVO", - params, null); - return notificationList; - } - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.UserNotificationService#getAdminNotificationVOS() - */ - @Override - public List getAdminNotificationVOS() { - Map params = new HashMap(); - @SuppressWarnings("unchecked") - List notificationList = dataAccessService - .executeNamedQuery("getAdminNotificationHistoryVO", params, null); - return notificationList; - } - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.UserNotificationService#getNotificationRoles(java.lang.Long) - */ - @Override - public List getNotificationRoles(Long notificationId) { - Map params = new HashMap(); - params.put("notificationId", Long.toString(notificationId)); - @SuppressWarnings("unchecked") - List roleNotifList = dataAccessService.executeNamedQuery("getNotificationRoles", params, - null); - return roleNotifList; - } - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.UserNotificationService#getAppRoleList() - */ - @SuppressWarnings("unchecked") - @Override - public List getAppRoleList() { - List appRoleList = (List) dataAccessService.executeNamedQuery("getEpNotificationAppRoles", null, null); - return appRoleList; - } - - /* - * (non-Javadoc) - * - * @see org.openecomp.portalapp.portal.service.UserNotificationService# - * setNotificationsRead(java.lang.Long, int) - */ - @Override - public void setNotificationRead(Long notificationId, int userId) { - EPUserNotification userNotification = new EPUserNotification(); - userNotification.setNotificationId(notificationId); - userNotification.setUpdateTime(new Date()); - userNotification.setViewed("Y"); - userNotification.setUserId((long) userId); - getDataAccessService().saveDomainObject(userNotification, null); - } - - /* - * (non-Javadoc) - * @see org.openecomp.portalapp.portal.service.UserNotificationService#saveNotification(org.openecomp.portalapp.portal.transport.EpNotificationItem) - */ - @Override - public String saveNotification(EpNotificationItem notificationItem) throws Exception { - - // gather the roles - if (notificationItem.getRoleIds() != null && !notificationItem.getIsForAllRoles().equals("Y")) { - if (notificationItem.getRoles() == null) { - Set roleSet = new HashSet(); - notificationItem.setRoles(roleSet); - } - for (Long roleId : notificationItem.getRoleIds()) { - EpRoleNotificationItem roleItem = new EpRoleNotificationItem(); - roleItem.setNotificationId(notificationItem.getNotificationId()); - roleItem.setRoleId(roleId.intValue()); - notificationItem.getRoles().add(roleItem); - } - } - - - // for updates fetch roles and then save - if (notificationItem.getNotificationId() != null) { - EpNotificationItem updateNotificationItem = (EpNotificationItem) getDataAccessService() - .getDomainObject(EpNotificationItem.class, notificationItem.getNotificationId(), null); - notificationItem.setRoles(updateNotificationItem.getRoles()); - } - if(notificationItem.msgSource == null) - { - notificationItem.setMsgSource("EP"); - } - getDataAccessService().saveDomainObject(notificationItem, null); - return "" ; - - } - @Override - public List getUsersByOrgIds(List OrgIds) { - Map params = new HashMap(); - params.put("OrgIds", OrgIds); - @SuppressWarnings("unchecked") - List userList = dataAccessService.executeNamedQuery("getUsersByOrgIdsNotifications", params, null); - return userList; - } - - @Override - public List getMessageRecipients(Long notificationId) { - Map params = new HashMap<>(); - params.put("notificationId", Long.toString(notificationId)); - @SuppressWarnings("unchecked") - List activeUsers = dataAccessService.executeNamedQuery("messageRecipients", params, null); - return activeUsers; - } - - public DataAccessService getDataAccessService() { - return dataAccessService; - } - - public void setDataAccessService(DataAccessService dataAccessService) { - this.dataAccessService = dataAccessService; - } - - public SessionFactory getSessionFactory() { - return sessionFactory; - } - - public void setSessionFactory(SessionFactory sessionFactory) { - this.sessionFactory = sessionFactory; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.Date; +import java.util.HashMap; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; + +import org.hibernate.SessionFactory; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EPUserNotification; +import org.openecomp.portalapp.portal.domain.EcompAppRole; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.transport.EpNotificationItem; +import org.openecomp.portalapp.portal.transport.EpNotificationItemVO; +import org.openecomp.portalapp.portal.transport.EpRoleNotificationItem; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; + +@Service("userNotificationService") +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class UserNotificationServiceImpl implements UserNotificationService { + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(FunctionalMenuServiceImpl.class); + + @Autowired + private DataAccessService dataAccessService; + @Autowired + private SessionFactory sessionFactory; + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserNotificationService# + * getNotifications(java.lang.Long) + */ + @Override + public List getNotifications(Long userId) { + Map params = new HashMap(); + params.put("user_id", userId.toString()); + @SuppressWarnings("unchecked") + List notificationList = dataAccessService.executeNamedQuery("getNotifications", params, + null); + // set the roles to null for pure retrieval of all notifications + for (EpNotificationItem item : notificationList) { + item.setRoles(null); + } + return notificationList; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserNotificationService# + * getNotificationHistoryVO(java.lang.Long) + */ + @Override + public List getNotificationHistoryVO(Long userId) { + Map params = new HashMap(); + params.put("user_id", userId.toString()); + @SuppressWarnings("unchecked") + List notificationList = dataAccessService.executeNamedQuery("getNotificationHistoryVO", + params, null); + return notificationList; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserNotificationService# + * getAdminNotificationVOS() + */ + @Override + public List getAdminNotificationVOS(Long userId) { + Map params = new HashMap(); + params.put("user_id", userId.toString()); + @SuppressWarnings("unchecked") + List notificationList = dataAccessService + .executeNamedQuery("getAdminNotificationHistoryVO", params, null); + return notificationList; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserNotificationService# + * getNotificationRoles(java.lang.Long) + */ + @Override + public List getNotificationRoles(Long notificationId) { + Map params = new HashMap(); + params.put("notificationId", Long.toString(notificationId)); + @SuppressWarnings("unchecked") + List roleNotifList = dataAccessService.executeNamedQuery("getNotificationRoles", params, + null); + return roleNotifList; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserNotificationService# + * getAppRoleList() + */ + @SuppressWarnings("unchecked") + @Override + public List getAppRoleList() { + List appRoleList = (List) dataAccessService + .executeNamedQuery("getEpNotificationAppRoles", null, null); + return appRoleList; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserNotificationService# + * setNotificationsRead(java.lang.Long, int) + */ + @Override + public void setNotificationRead(Long notificationId, int userId) { + EPUserNotification userNotification = new EPUserNotification(); + userNotification.setNotificationId(notificationId); + userNotification.setUpdateTime(new Date()); + userNotification.setViewed("Y"); + userNotification.setUserId((long) userId); + getDataAccessService().saveDomainObject(userNotification, null); + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserNotificationService# + * saveNotification(org.openecomp.portalapp.portal.transport. + * EpNotificationItem) + */ + @Override + public String saveNotification(EpNotificationItem notificationItem) throws Exception { + + // gather the roles + if (notificationItem.getRoleIds() != null && !notificationItem.getIsForAllRoles().equals("Y")) { + if (notificationItem.getRoles() == null) { + Set roleSet = new HashSet(); + notificationItem.setRoles(roleSet); + } + for (Long roleId : notificationItem.getRoleIds()) { + EpRoleNotificationItem roleItem = new EpRoleNotificationItem(); + roleItem.setNotificationId(notificationItem.getNotificationId()); + roleItem.setRoleId(roleId.intValue()); + notificationItem.getRoles().add(roleItem); + } + } + + // for updates fetch roles and then save + if (notificationItem.getNotificationId() != null) { + EpNotificationItem updateNotificationItem = (EpNotificationItem) getDataAccessService() + .getDomainObject(EpNotificationItem.class, notificationItem.getNotificationId(), null); + notificationItem.setRoles(updateNotificationItem.getRoles()); + } + if (notificationItem.msgSource == null) { + notificationItem.setMsgSource("EP"); + } + getDataAccessService().saveDomainObject(notificationItem, null); + return ""; + + } + + @Override + public List getUsersByOrgIds(List OrgIds) { + Map params = new HashMap(); + params.put("OrgIds", OrgIds); + @SuppressWarnings("unchecked") + List userList = dataAccessService.executeNamedQuery("getUsersByOrgIdsNotifications", params, null); + return userList; + } + + @Override + public List getMessageRecipients(Long notificationId) { + Map params = new HashMap<>(); + params.put("notificationId", Long.toString(notificationId)); + @SuppressWarnings("unchecked") + List activeUsers = dataAccessService.executeNamedQuery("messageRecipients", params, null); + return activeUsers; + } + + public DataAccessService getDataAccessService() { + return dataAccessService; + } + + public void setDataAccessService(DataAccessService dataAccessService) { + this.dataAccessService = dataAccessService; + } + + public SessionFactory getSessionFactory() { + return sessionFactory; + } + + public void setSessionFactory(SessionFactory sessionFactory) { + this.sessionFactory = sessionFactory; + } + + @Override + public void deleteNotificationsFromEpNotificationTable() { + Map params = new HashMap(); + dataAccessService.executeNamedUpdateQuery("deleteNotificationsFromEpNotificationTable", params, null); + } + + @Override + public void deleteNotificationsFromEpUserNotificationTable() { + Map params = new HashMap(); + dataAccessService.executeNamedUpdateQuery("deleteNotificationsFromEpUserNotificationTable", params, null); + + } + + @Override + public void deleteNotificationsFromEpRoleNotificationTable() { + Map params = new HashMap(); + dataAccessService.executeNamedUpdateQuery("deleteNotificationsFromEpRoleNotificationTable", params, null); + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java new file mode 100644 index 00000000..727f83dd --- /dev/null +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesCommonServiceImpl.java @@ -0,0 +1,1479 @@ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ + +package org.openecomp.portalapp.portal.service; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collection; +import java.util.Date; +import java.util.HashMap; +import java.util.HashSet; +import java.util.LinkedHashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.TreeSet; + +import javax.servlet.http.HttpServletResponse; + +import org.apache.commons.lang.StringUtils; +import org.apache.cxf.transport.http.HTTPException; +import org.hibernate.Query; +import org.hibernate.SQLQuery; +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.Transaction; +import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemRoleApproval; +import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemUser; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EPRole; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EPUserApp; +import org.openecomp.portalapp.portal.domain.EPUserAppCatalogRoles; +import org.openecomp.portalapp.portal.domain.EPUserAppRolesRequest; +import org.openecomp.portalapp.portal.domain.EPUserAppRolesRequestDetail; +import org.openecomp.portalapp.portal.domain.EpUserAppRoles; +import org.openecomp.portalapp.portal.domain.ExternalSystemAccess; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.transport.AppWithRolesForUser; +import org.openecomp.portalapp.portal.transport.ExternalRequestFieldsValidator; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; +import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; +import org.openecomp.portalapp.portal.transport.RemoteUserWithRoles; +import org.openecomp.portalapp.portal.transport.RoleInAppForUser; +import org.openecomp.portalapp.portal.transport.RolesInAppForUser; +import org.openecomp.portalapp.portal.transport.UserApplicationRoles; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalapp.portal.utils.PortalConstants; +import org.openecomp.portalsdk.core.domain.Role; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.restful.domain.EcompRole; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.service.RoleService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.springframework.beans.factory.annotation.Autowired; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.DeserializationFeature; +import com.fasterxml.jackson.databind.ObjectMapper; + +@EPMetricsLog +public class UserRolesCommonServiceImpl { + + private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(UserRolesCommonServiceImpl.class); + + private static final Object syncRests = new Object(); + + @Autowired + private DataAccessService dataAccessService; + @Autowired + private SessionFactory sessionFactory; + @Autowired + private SearchService searchService; + @Autowired + private EPAppService appsService; + @Autowired + private ApplicationsRestClientService applicationsRestClientService; + @Autowired + private EPRoleService epRoleService; + @Autowired + private RoleService roleService; + + /** + * + * @param ecompRoles + * @return HashMap + */ + private static HashMap hashMapFromEcompRoles(EcompRole[] ecompRoles) { + HashMap result = new HashMap(); + if (ecompRoles != null) { + for (int i = 0; i < ecompRoles.length; i++) { + if (ecompRoles[i].getId() != null) { + result.put(ecompRoles[i].getId(), ecompRoles[i]); + } + } + } + return result; + } + + /** + * + * @param userId + */ + protected void createLocalUserIfNecessary(String userId) { + if (StringUtils.isEmpty(userId)) { + logger.error(EELFLoggerDelegate.errorLogger, "createLocalUserIfNecessary : empty userId!"); + return; + } + Session localSession = null; + Transaction transaction = null; + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + @SuppressWarnings("unchecked") + List userList = localSession + .createQuery("from " + EPUser.class.getName() + " where orgUserId='" + userId + "'").list(); + if (userList.size() == 0) { + EPUser client = searchService.searchUserByUserId(userId); + if (client == null) { + String msg = "createLocalUserIfNecessary: cannot create user " + userId + + ", because not found in phonebook"; + logger.error(EELFLoggerDelegate.errorLogger, msg); + } else { + client.setLoginId(userId); + client.setActive(true); + localSession.save(client); + } + } + transaction.commit(); + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + EcompPortalUtils.rollbackTransaction(transaction, "searchOrCreateUser rollback, exception = " + e); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "searchOrCreateUser"); + } + } + + /** + * This method return nothing and remove roles before adding any roles for an app + * @param userRole + * @param appId + * @param localSession + * @param userAppRoles + * @param newUserAppRolesMap + */ + private static void syncUserRolesExtension(EPUserApp userRole, Long appId, Session localSession, EcompRole[] userAppRoles, HashMap newUserAppRolesMap) { + + Long userAppRoleId = 0L; + if (appId == PortalConstants.PORTAL_APP_ID) { // local app + userAppRoleId = userRole.getRoleId(); + } else { // remote app + userAppRoleId = userRole.getAppRoleId(); + } + + if (!newUserAppRolesMap.containsKey(userAppRoleId)) { + localSession.delete(userRole); + } else { + newUserAppRolesMap.remove(userAppRoleId); + } + } + + /** + * Checks whether the role is inactive + * + * @param epRole + * @throws Exception + * if role is inactive, throws exception + */ + private void checkIfRoleInactive(EPRole epRole) throws Exception{ + if(!epRole.getActive()){ + throw new Exception(epRole.getName()+ " role is unavailable"); + } + } + + /** + * + * @param sessionFactory + * @param userId + * @param appId + * @param userAppRoles + * @param extRequestValue + * set to false if request is from users page otherwise true + * @throws Exception + */ + protected void syncUserRoles(SessionFactory sessionFactory, String userId, Long appId, + EcompRole[] userAppRoles, Boolean extRequestValue, String reqType) throws Exception { + boolean result = false; + Session localSession = null; + Transaction transaction = null; + String roleActive = null; + final Map userAppParams = new HashMap<>(); + final Map appParams = new HashMap<>(); + HashMap newUserAppRolesMap = hashMapFromEcompRoles(userAppRoles); + + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + @SuppressWarnings("unchecked") + List userList = localSession + .createQuery("from " + EPUser.class.getName() + " where orgUserId='" + userId + "'").list(); + if (userList.size() > 0) { + EPUser client = userList.get(0); + roleActive = ("DELETE".equals(reqType)) ? "" : " and role.active = 'Y'"; + @SuppressWarnings("unchecked") + List userRoles = localSession.createQuery("from " + EPUserApp.class.getName() + + " where app.id=" + appId + roleActive + " and userId=" + client.getId()).list(); + + if ("DELETE".equals(reqType)) { + for (EPUserApp userAppRoleList : userRoles) { + userAppParams.put("roleName", String.valueOf(userAppRoleList.getRole().getName())); + userAppParams.put("appId", String.valueOf(appId)); + appParams.put("appRoleName", userAppRoleList.getRole().getName()); + @SuppressWarnings("unchecked") + List rolesList = (!userAppRoleList.getRole().getName().equals(PortalConstants.ADMIN_ROLE)) ? (List) dataAccessService.executeNamedQuery("getAppRoles", userAppParams, null) : (List) dataAccessService.executeNamedQuery("getPortalAppRoles", appParams, null); + if(rolesList.size() > 0 || !rolesList.isEmpty()){ + checkIfRoleInactive(rolesList.get(0)); + } + } + } + + for (EPUserApp userRole : userRoles) { + if (!userRole.getRoleId().equals(PortalConstants.ACCOUNT_ADMIN_ROLE_ID) && userRole.getRoleId() != PortalConstants.SYS_ADMIN_ROLE_ID && !extRequestValue){ + syncUserRolesExtension(userRole, appId, localSession, userAppRoles, newUserAppRolesMap); + } + else if (extRequestValue){ + syncUserRolesExtension(userRole, appId, localSession, userAppRoles, newUserAppRolesMap); + } + } + Collection newRolesToAdd = newUserAppRolesMap.values(); + if (newRolesToAdd.size() > 0) { + EPApp app = (EPApp) localSession.get(EPApp.class, appId); + + HashMap rolesMap = new HashMap(); + if (appId == PortalConstants.PORTAL_APP_ID) { // local app + String appIdValue = null; + if(!extRequestValue){ + appIdValue = "and id != " + PortalConstants.PORTAL_APP_ID; + }else{ + appIdValue = ""; + } + @SuppressWarnings("unchecked") + List roles = localSession + .createQuery("from " + EPRole.class.getName() + " where appId is null " + appIdValue).list(); + for (EPRole role : roles) { + role.setAppId(1L); + rolesMap.put(role.getId(), role); + } + } else { // remote app + @SuppressWarnings("unchecked") + List roles = localSession + .createQuery("from " + EPRole.class.getName() + " where appId=" + appId).list(); + for (EPRole role : roles) { + rolesMap.put(role.getAppRoleId(), role); + } + } + EPRole role = null; + for (EcompRole userRole : newRolesToAdd) { + if (("PUT".equals(reqType) || "POST".equals(reqType)) && userRole.getName().equals(PortalConstants.ADMIN_ROLE)) { + role = (EPRole) localSession.get(EPRole.class, new Long(PortalConstants.ACCOUNT_ADMIN_ROLE_ID)); + } else if (userRole.getId().equals(PortalConstants.ACCOUNT_ADMIN_ROLE_ID) && !extRequestValue){ + continue; + } + EPUserApp userApp = new EPUserApp(); + userApp.setUserId(client.getId()); + userApp.setApp(app); + userApp.setRole(("PUT".equals(reqType) || "POST".equals(reqType) && userRole.getId().equals(PortalConstants.ACCOUNT_ADMIN_ROLE_ID)) ? role : rolesMap.get(userRole.getId())); + localSession.save(userApp); + localSession.flush(); + } + + if (appId == PortalConstants.PORTAL_APP_ID) { + /* + * for local app -- hack - always make sure fn_role + * table's app_id is null and not 1 for primary app in + * this case being ecomp portal app; reason: hibernate + * is rightly setting this to 1 while persisting to + * fn_role as per the mapping but SDK role management + * code expects the app_id to be null as there is no + * concept of App_id in SDK + */ + SQLQuery sqlQuery = localSession + .createSQLQuery("update fn_role set app_id = null where app_id = 1 "); + sqlQuery.executeUpdate(); + + + } + } + } + transaction.commit(); + result = true; + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + EcompPortalUtils.rollbackTransaction(transaction, + "Exception occurred in syncUserRoles, Details: " + EcompPortalUtils.getStackTrace(e)); + if("DELETE".equals(reqType)){ + throw new Exception(e.getMessage()); + } + } finally { + localSession.close(); + if (!result && !"DELETE".equals(reqType)) { + throw new Exception( + "Exception occurred in syncUserRoles while closing database session for app: '" + appId + "'."); + } + } + } + + /** + * Called when getting the list of roles for the user + * + * @param appRoles + * @param userAppRoles + * @return List + */ + protected List constructRolesInAppForUserGet(EcompRole[] appRoles, EcompRole[] userAppRoles) { + List rolesInAppForUser = new ArrayList(); + + Set userAppRolesMap = new HashSet(); + if (userAppRoles != null) { + for (EcompRole ecompRole : userAppRoles) { + userAppRolesMap.add(ecompRole.getId()); + } + } else { + logger.error(EELFLoggerDelegate.errorLogger, + "constructRolesInAppForUserGet has received userAppRoles list empty"); + } + + if (appRoles != null) { + for (EcompRole ecompRole : appRoles) { + RoleInAppForUser roleForUser = new RoleInAppForUser(ecompRole.getId(), ecompRole.getName()); + roleForUser.isApplied = userAppRolesMap.contains(ecompRole.getId()); + rolesInAppForUser.add(roleForUser); + } + } else { + logger.error(EELFLoggerDelegate.errorLogger, "constructRolesInAppForUser has received appRoles list empty"); + } + return rolesInAppForUser; + } + + /** + * Called when getting the list of roles for the user + * + * @param appRoles + * @param userAppRoles + * @param extRequestValue + * set to false if request is from users page otherwise true + * @return List + */ + protected List constructRolesInAppForUserGet(List appRoles, EPRole[] userAppRoles, Boolean extRequestValue) { + List rolesInAppForUser = new ArrayList(); + + Set userAppRolesMap = new HashSet(); + if (userAppRoles != null) { + for (EPRole ecompRole : userAppRoles) { + userAppRolesMap.add(ecompRole.getId()); + } + } else { + logger.error(EELFLoggerDelegate.errorLogger, + "constructRolesInAppForUserGet has received userAppRoles list empty."); + } + + if (appRoles != null) { + for (Role ecompRole : appRoles) { + if (ecompRole.getId().equals(PortalConstants.ACCOUNT_ADMIN_ROLE_ID) && !extRequestValue) + continue; + RoleInAppForUser roleForUser = new RoleInAppForUser(ecompRole.getId(), ecompRole.getName()); + roleForUser.isApplied = userAppRolesMap.contains(ecompRole.getId()); + rolesInAppForUser.add(roleForUser); + } + } else { + logger.error(EELFLoggerDelegate.errorLogger, + "constructRolesInAppForUser has received appRoles list empty."); + } + return rolesInAppForUser; + } + + + /** + * copies of methods in GetAppsWithUserRoleState + * + * @param sessionFactory + * @param appId + * @param appRoles + * @throws Exception + */ + protected void syncAppRoles(SessionFactory sessionFactory, Long appId, EcompRole[] appRoles) throws Exception { + logger.debug(EELFLoggerDelegate.debugLogger, "entering syncAppRoles for appId: " + appId); + HashMap newRolesMap = hashMapFromEcompRoles(appRoles); + boolean result = false; + Session localSession = null; + Transaction transaction = null; + + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + // Attention! All roles from remote application supposed to be + // active! + @SuppressWarnings("unchecked") + List currentAppRoles = localSession + .createQuery("from " + EPRole.class.getName() + " where appId=" + appId).list(); + List obsoleteRoles = new ArrayList(); + for (int i = 0; i < currentAppRoles.size(); i++) { + EPRole oldAppRole = currentAppRoles.get(i); + if (oldAppRole.getAppRoleId() != null) { + EcompRole role = null; + role = newRolesMap.get(oldAppRole.getAppRoleId()); + if (role != null) { + if (!(role.getName() == null || oldAppRole.getName().equals(role.getName()))) { + oldAppRole.setName(role.getName()); + localSession.update(oldAppRole); + } + newRolesMap.remove(oldAppRole.getAppRoleId()); + } else { + obsoleteRoles.add(oldAppRole); + } + } else { + obsoleteRoles.add(oldAppRole); + } + } + Collection newRolesToAdd = newRolesMap.values(); + for (EcompRole role : newRolesToAdd) { + logger.debug(EELFLoggerDelegate.debugLogger, "about to add missing role: " + role.toString()); + EPRole newRole = new EPRole(); + // Attention! All roles from remote application supposed to be + // active! + newRole.setActive(true); + newRole.setName(role.getName()); + newRole.setAppId(appId); + newRole.setAppRoleId(role.getId()); + localSession.save(newRole); + } + if (obsoleteRoles.size() > 0) { + logger.debug(EELFLoggerDelegate.debugLogger, "we have obsolete roles to delete"); + for (EPRole role : obsoleteRoles) { + logger.debug(EELFLoggerDelegate.debugLogger, "obsolete role: " + role.toString()); + Long roleId = role.getId(); + // delete obsolete roles here + // Must delete all records with foreign key constraints on + // fn_role: + // fn_user_role, fn_role_composite, fn_role_function, + // fn_user_pseudo_role, fn_menu_functional_roles. + // And for fn_menu_functional, if no other roles for that + // menu item, remove the url. + + // Delete from fn_user_role + @SuppressWarnings("unchecked") + List userRoles = localSession.createQuery( + "from " + EPUserApp.class.getName() + " where app.id=" + appId + " and role_id=" + roleId) + .list(); + + logger.debug(EELFLoggerDelegate.debugLogger, "number of userRoles to delete: " + userRoles.size()); + for (EPUserApp userRole : userRoles) { + logger.debug(EELFLoggerDelegate.debugLogger, + "about to delete userRole: " + userRole.toString()); + localSession.delete(userRole); + logger.debug(EELFLoggerDelegate.debugLogger, + "finished deleting userRole: " + userRole.toString()); + } + + // Delete from fn_menu_functional_roles + @SuppressWarnings("unchecked") + List funcMenuRoles = localSession + .createQuery("from " + FunctionalMenuRole.class.getName() + " where roleId=" + roleId) + .list(); + int numMenuRoles = funcMenuRoles.size(); + logger.debug(EELFLoggerDelegate.debugLogger, + "number of funcMenuRoles for roleId: " + roleId + ": " + numMenuRoles); + for (FunctionalMenuRole funcMenuRole : funcMenuRoles) { + Long menuId = funcMenuRole.menuId; + // If this is the only role for this menu item, then the + // app and roles will be gone, + // so must null out the url too, to be consistent + @SuppressWarnings("unchecked") + List funcMenuRoles2 = localSession + .createQuery("from " + FunctionalMenuRole.class.getName() + " where menuId=" + menuId) + .list(); + int numMenuRoles2 = funcMenuRoles2.size(); + logger.debug(EELFLoggerDelegate.debugLogger, + "number of funcMenuRoles for menuId: " + menuId + ": " + numMenuRoles2); + localSession.delete(funcMenuRole); + if (numMenuRoles2 == 1) { + // If this is the only role for this menu item, then + // the app and roles will be gone, + // so must null out the url too, to be consistent + logger.debug(EELFLoggerDelegate.debugLogger, + "There is exactly 1 menu item for this role, so emptying the url"); + @SuppressWarnings("unchecked") + List funcMenuItems = localSession + .createQuery( + "from " + FunctionalMenuItem.class.getName() + " where menuId=" + menuId) + .list(); + if (funcMenuItems.size() > 0) { + logger.debug(EELFLoggerDelegate.debugLogger, "got the menu item"); + FunctionalMenuItem funcMenuItem = funcMenuItems.get(0); + funcMenuItem.url = ""; + localSession.update(funcMenuItem); + } + } + } + + // Delete from fn_role_function + String sql = "DELETE FROM fn_role_function WHERE role_id=" + roleId; + logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); + Query query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Delete from ep_role_notification + sql = "DELETE FROM ep_role_notification WHERE role_id=" + roleId; + logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Delete from fn_role_composite + sql = "DELETE FROM fn_role_composite WHERE parent_role_id=" + roleId + " OR child_role_id=" + + roleId; + logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + // Delete from fn_user_pseudo_role + sql = "DELETE FROM fn_user_pseudo_role WHERE pseudo_role_id=" + roleId; + logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); + query = localSession.createSQLQuery(sql); + query.executeUpdate(); + + logger.debug(EELFLoggerDelegate.debugLogger, "about to delete the role: " + role.toString()); + localSession.delete(role); + logger.debug(EELFLoggerDelegate.debugLogger, "deleted the role"); + } + } + logger.debug(EELFLoggerDelegate.debugLogger, "about to commit the transaction"); + transaction.commit(); + logger.debug(EELFLoggerDelegate.debugLogger, "committed the transaction"); + result = true; + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + EcompPortalUtils.rollbackTransaction(transaction, + "Exception occurred in syncAppRoles, Details: " + EcompPortalUtils.getStackTrace(e)); + } finally { + localSession.close(); + if (!result) { + throw new Exception( + "Exception occurred in syncAppRoles while closing database session for app: '" + appId + "'."); + } + } + } + + /** + * Called when updating the list of roles for the user + * + * @param userId + * @param appId + * @param userRolesInRemoteApp + * @return RolesInAppForUser + */ + protected RolesInAppForUser constructRolesInAppForUserUpdate(String userId, Long appId, + Set userRolesInRemoteApp) { + RolesInAppForUser result; + result = new RolesInAppForUser(); + result.appId = appId; + result.orgUserId = userId; + for (EcompRole role : userRolesInRemoteApp) { + RoleInAppForUser roleInAppForUser = new RoleInAppForUser(); + roleInAppForUser.roleId = role.getId(); + roleInAppForUser.roleName = role.getName(); + roleInAppForUser.isApplied = new Boolean(true); + result.roles.add(roleInAppForUser); + } + return result; + } + + /** + * + * @param roleInAppForUserList + * @return boolean + */ + protected boolean remoteUserShouldBeCreated(List roleInAppForUserList) { + for (RoleInAppForUser roleInAppForUser : roleInAppForUserList) { + if (roleInAppForUser.isApplied.booleanValue()) { + return true; + } + } + return false; + } + + /** + * Builds JSON and posts it to a remote application to update user roles. + * + * @param roleInAppForUserList + * @param mapper + * @param applicationsRestClientService + * @param appId + * @param userId + * @return Set of roles as sent; NOT the response from the app. + * @throws JsonProcessingException + * @throws HTTPException + */ + protected Set postUsersRolesToRemoteApp(List roleInAppForUserList, ObjectMapper mapper, + ApplicationsRestClientService applicationsRestClientService, Long appId, String userId) + throws JsonProcessingException, HTTPException { + Set updatedUserRolesinRemote = constructUsersRemoteAppRoles(roleInAppForUserList); + Set updateUserRolesInEcomp = constructUsersEcompRoles(roleInAppForUserList); + String userRolesAsString = mapper.writeValueAsString(updatedUserRolesinRemote); + applicationsRestClientService.post(EcompRole.class, appId, userRolesAsString, + String.format("/user/%s/roles", userId)); + // TODO: We should add code that verifies that the post operation did + // succeed. Because the SDK may still return 200 OK with an html page + // even when it fails! + return updateUserRolesInEcomp; + } + + /** + * + * @param roleInAppForUserList + * @return Set + */ + protected Set constructUsersEcompRoles(List roleInAppForUserList) { + Set existingUserRoles = new TreeSet(); + for (RoleInAppForUser roleInAppForUser : roleInAppForUserList) { + if (roleInAppForUser.isApplied) { + EcompRole ecompRole = new EcompRole(); + ecompRole.setId(roleInAppForUser.roleId); + ecompRole.setName(roleInAppForUser.roleName); + existingUserRoles.add(ecompRole); + } + } + return existingUserRoles; + } + + /** + * Constructs user app roles excluding Account Administrator role + * + * @param roleInAppForUserList + * @return + * List of roles with Role name, Role Id + */ + protected Set constructUsersRemoteAppRoles(List roleInAppForUserList) { + Set existingUserRoles = new TreeSet(); + for (RoleInAppForUser roleInAppForUser : roleInAppForUserList) { + if (roleInAppForUser.isApplied && !roleInAppForUser.getRoleId().equals(PortalConstants.ACCOUNT_ADMIN_ROLE_ID)) { + EcompRole ecompRole = new EcompRole(); + ecompRole.setId(roleInAppForUser.roleId); + ecompRole.setName(roleInAppForUser.roleName); + existingUserRoles.add(ecompRole); + } + } + return existingUserRoles; + } + + /** + * This is for a single app + * + * @param rolesInAppForUser + * @param externalSystemRequest + * set to false if requests from Users page otherwise true + * @return true on success, false otherwise + */ + protected boolean applyChangesInUserRolesForAppToEcompDB(RolesInAppForUser rolesInAppForUser, boolean externalSystemRequest, String reqType) throws Exception { + boolean result = false; + String userId = rolesInAppForUser.orgUserId; + Long appId = rolesInAppForUser.appId; + synchronized (syncRests) { + if (rolesInAppForUser != null) { + createLocalUserIfNecessary(userId); + } + + if (rolesInAppForUser != null) { + EcompRole[] userAppRoles = new EcompRole[rolesInAppForUser.roles.size()]; + for (int i = 0; i < rolesInAppForUser.roles.size(); i++) { + RoleInAppForUser roleInAppForUser = rolesInAppForUser.roles.get(i); + EcompRole role = new EcompRole(); + role.setId(roleInAppForUser.roleId); + role.setName(roleInAppForUser.roleName); + userAppRoles[i] = role; + } + try { + syncUserRoles(sessionFactory, userId, appId, userAppRoles, externalSystemRequest, reqType); + result = true; + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "applyChangesInUserRolesForAppToEcompDB: failed to syncUserRoles for attuid " + userId, e); + if("DELETE".equals(reqType)){ + throw new Exception(e.getMessage()); + } + } + } + } + return result; + } + + /** + * + * @param appId + * @param remoteUser + * @return UserApplicationRoles + */ + protected UserApplicationRoles convertToUserApplicationRoles(Long appId, RemoteUserWithRoles remoteUser) { + UserApplicationRoles userWithRemoteAppRoles = new UserApplicationRoles(); + userWithRemoteAppRoles.setAppId(appId); + userWithRemoteAppRoles.setOrgUserId(remoteUser.getOrgUserId()); + userWithRemoteAppRoles.setFirstName(remoteUser.getFirstName()); + userWithRemoteAppRoles.setLastName(remoteUser.getLastName()); + userWithRemoteAppRoles.setRoles(remoteUser.getRoles()); + return userWithRemoteAppRoles; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserRolesService# + * importRolesFromRemoteApplication(java.lang.Long) + */ + public List importRolesFromRemoteApplication(Long appId) throws HTTPException { + EPRole[] appRolesFull = applicationsRestClientService.get(EPRole[].class, appId, "/rolesFull"); + List rolesList = Arrays.asList(appRolesFull); + for (EPRole externalAppRole : rolesList) { + + // Try to find an existing extern role for the app in the local + // ecomp DB. If so, then use its id to update the existing external + // application role record. + Long externAppId = externalAppRole.getId(); + EPRole existingAppRole = epRoleService.getRole(appId, externAppId); + if (existingAppRole != null) { + logger.debug(EELFLoggerDelegate.debugLogger, + String.format("ecomp role already exists for app=%s; appRoleId=%s. No need to import this one.", + appId, externAppId)); + continue; + } + // persistExternalRoleInEcompDb(externalAppRole, appId, + // roleService); + } + + return rolesList; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserRolesService# + * setAppWithUserRoleStateForUser(org.openecomp.portalapp.portal.domain. + * EPUser, org.openecomp.portalapp.portal.transport.AppWithRolesForUser) + */ + public boolean setAppWithUserRoleStateForUser(EPUser user, AppWithRolesForUser newAppRolesForUser) { + boolean result = false; + boolean epRequestValue = false; + String userId = ""; + if (newAppRolesForUser != null && newAppRolesForUser.orgUserId != null) { + userId = newAppRolesForUser.orgUserId.trim(); + } + Long appId = newAppRolesForUser.appId; + List roleInAppForUserList = newAppRolesForUser.appRoles; + if (userId.length() > 0) { + ObjectMapper mapper = new ObjectMapper(); + mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + + try { + EPApp app = appsService.getApp(appId); + applyChangesToUserAppRolesForMyLoginsRequest(user, appId); + + // if local app + if (appId == PortalConstants.PORTAL_APP_ID) { + // EPUser localUser = getUserFromApp(userId, app, applicationsRestClientService); + Set userRolesInLocalApp = postUsersRolesToLocalApp(roleInAppForUserList, mapper, + applicationsRestClientService, appId, userId); + RolesInAppForUser rolesInAppForUser = constructRolesInAppForUserUpdate(userId, appId, + userRolesInLocalApp); + result = applyChangesInUserRolesForAppToEcompDB(rolesInAppForUser, epRequestValue, null); + + } else {// remote app + EPUser remoteAppUser = null; + try { + remoteAppUser = getUserFromApp(userId, app, applicationsRestClientService); + } catch (HTTPException e) { + // Some apps are returning 400 if user is not found. + if (e.getResponseCode() == 400) { + logger.debug(EELFLoggerDelegate.debugLogger, + "setAppWithUserRoleStateForUser: getuserFromApp threw exception with response code 400; continuing", + e); + } else { + // Other response code, let it come thru. + throw e; + } + } + if (remoteAppUser == null) { + if (remoteUserShouldBeCreated(roleInAppForUserList)) { + + createNewUserOnRemoteApp(userId, app, applicationsRestClientService, searchService, mapper, isAppUpgradeVersion(app)); + // If we succeed, we know that the new user was + // persisted on remote app. + remoteAppUser = getUserFromApp(userId, app, applicationsRestClientService); + if (remoteAppUser == null) { + logger.error(EELFLoggerDelegate.errorLogger, + "Failed to persist new user: " + userId + " in remote app. appId = " + appId); + // return null; + } + } + } + if (remoteAppUser != null) { + Set userRolesInRemoteApp = postUsersRolesToRemoteApp(roleInAppForUserList, mapper, + applicationsRestClientService, appId, userId); + RolesInAppForUser rolesInAppForUser = constructRolesInAppForUserUpdate(userId, appId, + userRolesInRemoteApp); + result = applyChangesInUserRolesForAppToEcompDB(rolesInAppForUser, epRequestValue, null); + + // If no roles remain, request app to set user inactive. + if (userRolesInRemoteApp.size() == 0) { + logger.debug(EELFLoggerDelegate.debugLogger, + "setAppWithUserRoleStateForUser: no roles in app {}, set user {} to inactive", app, + userId); + remoteAppUser.setActive(false); + postUserToRemoteApp(userId, user, app, applicationsRestClientService); + } + } + } + } catch (Exception e) { + String message = String.format( + "Failed to create user or update user roles for User %s, AppId %s", + userId, Long.toString(appId)); + logger.error(EELFLoggerDelegate.errorLogger, message, e); + result = false; + } + + } + return result; + } + + /** + * + * @param userId + * @param app + * @param applicationsRestClientService + * @param searchService + * @param mapper + * @throws Exception + */ + protected void createNewUserOnRemoteApp(String userId, EPApp app, + ApplicationsRestClientService applicationsRestClientService, SearchService searchService, + ObjectMapper mapper, boolean postOpenSource) throws Exception { + + + EPUser client = searchService.searchUserByUserId(userId); + + mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + + if (client == null) { + String msg = "cannot create user " + userId + ", because he/she cannot be found in phonebook."; + logger.error(EELFLoggerDelegate.errorLogger, msg); + throw new Exception(msg); + } + + client.setLoginId(userId); + client.setActive(true); + + String userInString = null; + userInString = mapper.writerFor(EPUser.class).writeValueAsString(client); + logger.debug(EELFLoggerDelegate.debugLogger, + "about to post new client to remote application, users json = " + userInString); + applicationsRestClientService.post(EPUser.class, app.getId(), userInString, String.format("/user", userId)); + + } + + @SuppressWarnings("unchecked") + protected void applyChangesToAppRolesRequest(Long appId, Long userId, String updateStatus, EPUserAppRolesRequest epUserAppRolesRequest) { + final Map epRequestParams = new HashMap<>(); + try { + EPUserAppRolesRequest epAppRolesRequestData = epUserAppRolesRequest; + epAppRolesRequestData.setUpdatedDate(new Date()); + epAppRolesRequestData.setRequestStatus(updateStatus); + HashMap addiotonalUpdateParam = new HashMap(); + addiotonalUpdateParam.put("userId", userId); + dataAccessService.saveDomainObject(epAppRolesRequestData, addiotonalUpdateParam); + epRequestParams.put("reqId", epUserAppRolesRequest.getId()); + List epUserAppRolessDetailList = new ArrayList(); + epUserAppRolessDetailList = dataAccessService.executeNamedQuery("userAppRolesRequestDetailList", + epRequestParams, null); + if (epUserAppRolessDetailList.size() > 0) { + for (EPUserAppRolesRequestDetail epRequestUpdateData : epUserAppRolessDetailList) { + EPUserAppRolesRequestDetail epAppRoleDetailData = epRequestUpdateData; + epAppRoleDetailData.setReqType(updateStatus); + epAppRoleDetailData.setEpRequestIdData(epAppRolesRequestData); + HashMap updateDetailsParam = new HashMap(); + addiotonalUpdateParam.put("reqId", epUserAppRolesRequest.getId()); + dataAccessService.saveDomainObject(epAppRoleDetailData, updateDetailsParam); + } + } + logger.debug(EELFLoggerDelegate.debugLogger, "The request is set to complete"); + + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "applyChangesToAppRolesRequest failed", e); + } + } + + @SuppressWarnings("unchecked") + public void applyChangesToUserAppRolesForMyLoginsRequest(EPUser user, Long appId) { + final Map params = new HashMap<>(); + final Map epDetailParams = new HashMap<>(); + List epRequestIdVal = new ArrayList(); + params.put("appId", appId); + params.put("userId", user.getId()); + try { + epRequestIdVal = (List) dataAccessService + .executeNamedQuery("userAppRolesRequestList", params, null); + if (epRequestIdVal.size() > 0) { + EPUserAppRolesRequest epAppRolesRequestData = epRequestIdVal.get(0); + epAppRolesRequestData.setUpdatedDate(new Date()); + epAppRolesRequestData.setRequestStatus("O"); + HashMap addiotonalUpdateParam = new HashMap(); + addiotonalUpdateParam.put("userId", user.getId()); + dataAccessService.saveDomainObject(epAppRolesRequestData, addiotonalUpdateParam); + epDetailParams.put("reqId", epAppRolesRequestData.getId()); + List epUserAppRolesDetailList = new ArrayList(); + epUserAppRolesDetailList = dataAccessService.executeNamedQuery("userAppRolesRequestDetailList", + epDetailParams, null); + if (epUserAppRolesDetailList.size() > 0) { + for (EPUserAppRolesRequestDetail epRequestUpdateList : epUserAppRolesDetailList) { + EPUserAppRolesRequestDetail epAppRoleDetailData = epRequestUpdateList; + epAppRoleDetailData.setReqType("O"); + epAppRoleDetailData.setEpRequestIdData(epAppRolesRequestData); + HashMap updateDetailsParams = new HashMap(); + addiotonalUpdateParam.put("reqId", epAppRolesRequestData.getId()); + dataAccessService.saveDomainObject(epAppRoleDetailData, updateDetailsParams); + } + logger.debug(EELFLoggerDelegate.debugLogger, "User App roles request from User Page is overridden"); + } + } + + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "applyChangesToUserAppRolesRequest failed", e); + } + } + + /** + * Pushes specified user details to the specified remote app. + * + * @param userId + * ATT UID identifying user at remote app in REST endpoint path + * @param user + * User details to be pushed + * @param app + * Remote app + * @param applicationsRestClientService + * @throws HTTPException + */ + protected void postUserToRemoteApp(String userId, EPUser user, EPApp app, + ApplicationsRestClientService applicationsRestClientService) throws HTTPException { + + getUser(userId, app, applicationsRestClientService); + + } + + /** + * It returns user details for single org user id + * + * @param userParams + * @return + * if user exists it returns list of user details otherwise empty value + */ + @SuppressWarnings("unchecked") + private List checkIfUserExists(Map userParams){ + return (List)dataAccessService.executeNamedQuery("epUserAppId", userParams, null); + } + + /** + * It checks whether the new user is valid or not otherwise throws exception + * + * @param orgUserId + * @param app + * @return + * Checks if user is valid and returns message otherwise throws exception + * @throws Exception + */ + private String validateNewUser(String orgUserId, EPApp app) throws Exception { + EPUser epUser = searchService.searchUserByUserId(orgUserId); + if (epUser == null) { + throw new Exception("User does not exist"); + } else if (!epUser.getOrgUserId().equals(orgUserId)) { + throw new Exception("User does not exist"); + } else if (app == null) { + throw new Exception("Application does not exist"); + } + return "Saved Successfully"; + } + + /** + * Checks if the fields exists or not + * + * @param userList + * contains user information + * @param app + * contains app name + * @throws Exception + * throws exception if the field is not valid + */ + private void validateExternalRequestFields(List userList, EPApp app) throws Exception{ + if (userList.size() == 0 || userList.isEmpty() ) { + throw new Exception("User does not exist"); + } else if(app == null) { + throw new Exception("Application does not exist"); + } else if(!app.getEnabled() && !app.getId().equals(PortalConstants.PORTAL_APP_ID)) { + throw new Exception(app.getMlAppName()+" application is unavailable"); + } + } + + @SuppressWarnings("unchecked") + public ExternalRequestFieldsValidator setExternalRequestUserAppRole(ExternalSystemUser newAppRolesForUser, String reqType) { + boolean result = false; + boolean externalSystemRequest = true; + final Map params = new HashMap<>(); + final Map userParams = new HashMap<>(); + List userInfo = null; + EPUser userId = null; + List epRequestId = null; + String orgUserId = ""; + String updateStatus = ""; + String reqMessage = ""; + EPApp app = null; + if (newAppRolesForUser != null && newAppRolesForUser.getLoginId() != null) { + orgUserId = newAppRolesForUser.getLoginId().trim(); + } + String appName = newAppRolesForUser.getApplicationName(); + String logMessage = ("DELETE").equals(reqType) ? "Deleting": "Assigning/Updating" ; + if (orgUserId.length() > 0) { + ObjectMapper mapper = new ObjectMapper(); + mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + int epRequestIdSize = 0; + try { + app = appsService.getAppDetail(appName); + userParams.put("orgUserIdValue", orgUserId); + userInfo = checkIfUserExists(userParams); + reqMessage = "Updated Successfully"; + if (!reqType.equals("DELETE") && (userInfo.size() == 0 || userInfo.isEmpty())) { + reqMessage = validateNewUser(orgUserId, app); + } + if (userInfo.size() != 0 || !userInfo.isEmpty()) { + validateExternalRequestFields(userInfo, app); + userId = userInfo.get(0); + params.put("appId", app.getId()); + params.put("userId", userId.getId()); + epRequestId = (List) dataAccessService + .executeNamedQuery("userAppRolesRequestList", params, null); + epRequestIdSize = epRequestId.size(); + } + if(!app.getId().equals(PortalConstants.PORTAL_APP_ID)){ + EcompRole[] appRoles = applicationsRestClientService.get(EcompRole[].class, app.getId(), "/roles"); + syncAppRoles(sessionFactory, app.getId(), appRoles); + } + + List roleInAppForUserList = roleInAppForUserList(newAppRolesForUser.getRoles(), + app.getId(), app.getMlAppName()); + // if local app + if (app.getId() == PortalConstants.PORTAL_APP_ID) { + // EPUser localUser = getUserFromApp(orgUserId, app, applicationsRestClientService); + Set userRolesInLocalApp = postUsersRolesToLocalApp(roleInAppForUserList, mapper, + applicationsRestClientService, app.getId(), orgUserId); + RolesInAppForUser rolesInAppForUser = constructRolesInAppForUserUpdate(orgUserId, app.getId(), + userRolesInLocalApp); + logger.info(EELFLoggerDelegate.debugLogger, "{} user app roles: for app {}, user {}", + logMessage, newAppRolesForUser.getApplicationName(), newAppRolesForUser.getLoginId()); + result = applyChangesInUserRolesForAppToEcompDB(rolesInAppForUser, externalSystemRequest, reqType); + } else {// remote app + EPUser remoteAppUser = null; + try { + remoteAppUser = getUserFromApp(orgUserId, app, applicationsRestClientService); + } catch (HTTPException e) { + // Some apps are returning 400 if user is not found. + if (e.getResponseCode() == 400) { + logger.debug(EELFLoggerDelegate.debugLogger, + "setAppWithUserRoleStateForUser: getuserFromApp threw exception with response code 400; continuing", + e); + } else { + // Other response code, let it come thru. + throw e; + } + } + if (remoteAppUser == null) { + createNewUserOnRemoteApp(orgUserId, app, applicationsRestClientService, searchService, mapper, + isAppUpgradeVersion(app)); + // If we succeed, we know that the new user was + // persisted on remote app. + remoteAppUser = getUserFromApp(orgUserId, app, applicationsRestClientService); + if (remoteAppUser == null) { + logger.error(EELFLoggerDelegate.errorLogger, "Failed to persist new user: " + orgUserId + + " in remote app. appId = " + app.getId()); + // return null; + } + reqMessage = "Saved Successfully"; + } + if (remoteAppUser != null) { + Set userRolesInRemoteApp = postUsersRolesToRemoteApp(roleInAppForUserList, + mapper, applicationsRestClientService, app.getId(), orgUserId); + + RolesInAppForUser rolesInAppForUser = constructRolesInAppForUserUpdate(orgUserId, + app.getId(), userRolesInRemoteApp); + logger.info(EELFLoggerDelegate.debugLogger, "{} user app roles: for app {}, user {}", + logMessage, newAppRolesForUser.getApplicationName(), newAppRolesForUser.getLoginId()); + result = applyChangesInUserRolesForAppToEcompDB(rolesInAppForUser, externalSystemRequest, reqType); + // If no roles remain, request app to set user inactive. + /*if (userRolesInRemoteApp.size() == 0) { + logger.debug(EELFLoggerDelegate.debugLogger, + "setAppWithUserRoleStateForUser: no roles in app {}, set user {} to inactive", app, + attuid); + //TODO Need to fix the logged in user is not set to inactive + remoteAppUser.setActive(false); + postUserToRemoteApp(attuid, user, app, applicationsRestClientService); + }*/ + + } + if(!result){ + reqMessage = "Failed to save the user app role(s)"; + } + if (epRequestIdSize > 0 && !userInfo.isEmpty()) { + updateStatus = "C"; + applyChangesToAppRolesRequest(app.getId(), userId.getId(), updateStatus, epRequestId.get(0)); + } + + } + } catch (Exception e) { + String message = String.format("Failed to create user or update user roles for User %s, AppId %s", + orgUserId, appName); + logger.error(EELFLoggerDelegate.errorLogger, message, e); + result = false; + reqMessage = e.getMessage(); + if(epRequestIdSize > 0 && !userInfo.isEmpty()){ + updateStatus = "F"; + applyChangesToAppRolesRequest(app.getId(), userId.getId(), + updateStatus, epRequestId.get(0)); + } + } + + } + return new ExternalRequestFieldsValidator(result, reqMessage); + } + + /** + * + * @param roleInAppForUserList + * @param mapper + * @param applicationsRestClientService + * @param appId + * @param userId + * @return Set + * @throws JsonProcessingException + * @throws HTTPException + */ + private Set postUsersRolesToLocalApp(List roleInAppForUserList, ObjectMapper mapper, + ApplicationsRestClientService applicationsRestClientService, Long appId, String userId) + throws JsonProcessingException, HTTPException { + Set updatedUserRoles = constructUsersEcompRoles(roleInAppForUserList); + return updatedUserRoles; + } + + /** + * It constructs and returns list of user app roles when the external API role approval system calls + * this method + * + * @param roleInAppForUserList + * @param appId + * @return list of user app roles + * @throws Exception + * throws exceptions if role id does not exits + */ + private List roleInAppForUserList(List roleInAppForUserList, + Long appId, String appName) throws Exception { + List existingUserRoles = new ArrayList(); + EPRole existingAppRole = null; + for (ExternalSystemRoleApproval roleInAppForUser : roleInAppForUserList) { + RoleInAppForUser ecompRole = new RoleInAppForUser(); + existingAppRole = epRoleService.getAppRole(roleInAppForUser.getRoleName(), appId); + if (existingAppRole == null) { + logger.error(EELFLoggerDelegate.errorLogger, "roleInAppForUserList failed for the roles {}", + roleInAppForUserList); + throw new Exception("'" +roleInAppForUser.getRoleName() + "'" +" role does not exist for" + appName + " application"); + } + if (!existingAppRole.getActive()) { + logger.error(EELFLoggerDelegate.errorLogger, "roleInAppForUserList failed for the roles {}", + roleInAppForUserList); + throw new Exception(roleInAppForUser.getRoleName() + " role is unavailable for "+ appName + " application"); + } else { + ecompRole.roleId = (appId == 1 || roleInAppForUser.getRoleName().equals(PortalConstants.ADMIN_ROLE)) ? existingAppRole.getId() : existingAppRole.getAppRoleId(); + ecompRole.roleName = roleInAppForUser.getRoleName(); + ecompRole.isApplied = true; + existingUserRoles.add(ecompRole); + } + } + return existingUserRoles; + } + + + + /** + * + * @param userId + * @param app + * @param applicationsRestClientService + * @return EPUser + * @throws HTTPException + */ + protected EPUser getUserFromApp(String userId, EPApp app, ApplicationsRestClientService applicationsRestClientService) + throws HTTPException { + // local app + if (app.getId() == PortalConstants.PORTAL_APP_ID) { + // Map params = new HashMap(); + // params.put("sbcid",userId); + @SuppressWarnings("unchecked") + List userList = (List) dataAccessService + .executeQuery("from EPUser where orgUserId='" + userId + "'", null); + if (userList != null && !userList.isEmpty()) + return userList.get(0); + else + return null; + } + // remote app + + return getUser(userId, app, applicationsRestClientService); + } + + protected EPUser getUser(String userId, EPApp app, ApplicationsRestClientService applicationsRestClientService) + throws HTTPException { + return applicationsRestClientService.get(EPUser.class, app.getId(), String.format("/user/%s", userId), true); + + } + + protected boolean isAppUpgradeVersion(EPApp app){ + return true; + } + + + public ExternalSystemAccess getExternalRequestAccess(){ + ExternalSystemAccess res = null; + try { + res = new ExternalSystemAccess(EPCommonSystemProperties.EXTERNAL_ACCESS_ENABLE, + Boolean.parseBoolean(SystemProperties.getProperty(EPCommonSystemProperties.EXTERNAL_ACCESS_ENABLE))); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "getExternalRequestAccess failed" + e.getMessage()); + } + return res; + } + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserRolesService# + * getAppRolesForUser(java.lang.Long, java.lang.String) + */ + public List getAppRolesForUser(Long appId, String userId, Boolean extRequestValue) { + + List rolesInAppForUser = null; + try { + + // for ecomp portal app, no need to make a remote call + if (appId == PortalConstants.PORTAL_APP_ID) { + + List roleList = roleService.getAvailableRoles(); + List activeRoleList = new ArrayList(); + for(Role role: roleList) { + if(role.getActive()) { + if(role.getId() != 1){ // prevent portal admin from being added + activeRoleList.add(role); + } else if(extRequestValue){ + activeRoleList.add(role); + } + } + + } + + EPApp app = appsService.getApp(appId); + EPUser localUser = getUserFromApp(userId, app, applicationsRestClientService); + Set roleSet = localUser.getAppEPRoles(app); + rolesInAppForUser = constructRolesInAppForUserGet(activeRoleList, roleSet.toArray(new EPRole[0]), extRequestValue); + return rolesInAppForUser; + } + + EcompRole[] appRoles = applicationsRestClientService.get(EcompRole[].class, appId, "/roles"); + + // Test this error case, for generating an internal Ecomp Portal + // error + // EcompRole[] appRoles = null; + // If there is an exception in the rest client api, then null will + // be returned. + if (appRoles != null) { + syncAppRoles(sessionFactory, appId, appRoles); + EcompRole[] userAppRoles = null; + try { + try { + userAppRoles = applicationsRestClientService.get(EcompRole[].class, appId, + String.format("/user/%s/roles", userId)); + } catch (HTTPException e) { + // Some apps are returning 400 if user is not found. + if (e.getResponseCode() == 400) { + logger.debug(EELFLoggerDelegate.debugLogger, + "getAppRolesForUser caught exception with response code 400; continuing", e); + } else { + // Other response code, let it come thru. + throw e; + } + } + if (userAppRoles == null) { + if (EcompPortalUtils.getExternalAppResponseCode() == 400) { + EcompPortalUtils.setExternalAppResponseCode(200); + String message = String.format( + "getAppRolesForUser: App %s, User %, endpoint /user/{userid}/roles returned 400, " + + "assuming user doesn't exist, app is framework SDK based, and things are ok. " + + "Overriding to 200 until framework SDK returns a useful response.", + Long.toString(appId), userId); + logger.warn(EELFLoggerDelegate.applicationLogger, message); + } + } + + HashMap appRolesActiveMap =hashMapFromEcompRoles(appRoles); + ArrayList activeRoles = new ArrayList(); + for (int i = 0; i < userAppRoles.length; i++) { + if (appRolesActiveMap.containsKey(userAppRoles[i].getId())) { + EcompRole role = new EcompRole(); + role.setId(userAppRoles[i].getId()); + role.setName(userAppRoles[i].getName()); + activeRoles.add(role); + } + } + EcompRole[] userAppRolesActive = activeRoles.toArray(new EcompRole[activeRoles.size()]); + + // If the remote application isn't down we MUST sync user + // roles here in case we have this user here! + syncUserRoles(sessionFactory, userId, appId, userAppRolesActive, extRequestValue, null); + } catch (Exception e) { + // TODO: we may need to check if user exists, maybe remote + // app is down. + String message = String.format( + "getAppRolesForUser: user %s does not exist in remote application %s", userId, + Long.toString(appId)); + logger.error(EELFLoggerDelegate.errorLogger, message, e); + userAppRoles = new EcompRole[0]; + } + rolesInAppForUser = constructRolesInAppForUserGet(appRoles, userAppRoles); + } + } catch (Exception e) { + String message = String.format("getAppRolesForUser: failed for User %s, AppId %s", userId, + Long.toString(appId)); + logger.error(EELFLoggerDelegate.errorLogger, message, e); + } + return rolesInAppForUser; + + } + + private boolean postUserRolesToMylogins(AppWithRolesForUser userAppRolesData, + ApplicationsRestClientService applicationsRestClientService, Long appId, Long userId) + throws JsonProcessingException, HTTPException { + boolean result = false; + ObjectMapper mapper = new ObjectMapper(); + mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + String userRolesAsString = mapper.writeValueAsString(userAppRolesData); + logger.error(EELFLoggerDelegate.errorLogger,"Should not be reached here, as the endpoint is not defined yet from the Mylogins"); + applicationsRestClientService.post(AppWithRolesForUser.class, appId, userRolesAsString, String.format("/user/%s/myLoginroles", userId)); + return result; + } + + public FieldsValidator putUserAppRolesRequest(AppWithRolesForUser userAppRolesData, EPUser user) { + FieldsValidator fieldsValidator = new FieldsValidator(); + final Map params = new HashMap<>(); + EpUserAppRoles appRole= new EpUserAppRoles(); + try { + logger.error(EELFLoggerDelegate.errorLogger,"Should not be reached here, still the endpoint is yet to be defined"); + boolean result = postUserRolesToMylogins(userAppRolesData, applicationsRestClientService, userAppRolesData.appId, user.getId()); + + params.put("appId", userAppRolesData.appId); + EPUserAppRolesRequest epAppRolesRequestData = new EPUserAppRolesRequest(); + epAppRolesRequestData.setCreatedDate(new Date()); + epAppRolesRequestData.setUpdatedDate(new Date()); + epAppRolesRequestData.setUserId(user.getId()); + epAppRolesRequestData.setAppId(userAppRolesData.appId); + epAppRolesRequestData.setRequestStatus("P"); + List appRoleIdList = userAppRolesData.appRoles; + Set appRoleDetails = new LinkedHashSet(); + dataAccessService.saveDomainObject(epAppRolesRequestData, null); + for (RoleInAppForUser userAppRoles : appRoleIdList) { + Boolean isAppliedVal = userAppRoles.isApplied; + params.put("appRoleId", userAppRoles.roleId); + if (isAppliedVal) { + appRole = (EpUserAppRoles) dataAccessService.executeNamedQuery("appRoles", params, null).get(0); + EPUserAppRolesRequestDetail epAppRoleDetail = new EPUserAppRolesRequestDetail(); + epAppRoleDetail.setReqRoleId(appRole.getRoleId()); + epAppRoleDetail.setReqType("P"); + epAppRoleDetail.setEpRequestIdData(epAppRolesRequestData); + dataAccessService.saveDomainObject(epAppRoleDetail, null); + } + } + epAppRolesRequestData.setEpRequestIdDetail(appRoleDetails); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_OK); + + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "putUserAppRolesRequest failed", e); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + return fieldsValidator; + } + + public List getUserAppCatalogRoles(EPUser userid, String appName) { + Map params = new HashMap<>(); + params.put("userid", userid.getId().toString()); + //params.put("appid", appid); + params.put("appName", appName); + + @SuppressWarnings("unchecked") + List userAppRoles = (List) dataAccessService + .executeNamedQuery("userAppCatalogRoles", params, null); + return userAppRoles; + } + + public String updateRemoteUserProfile(String orgUserId, Long appId) { + ObjectMapper mapper = new ObjectMapper(); + mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); + EPUser client = searchService.searchUserByUserId(orgUserId); + EPUser newUser = new EPUser(); + newUser.setActive(client.getActive()); + newUser.setFirstName(client.getFirstName()); + newUser.setLastName(client.getLastName()); + newUser.setLoginId(client.getLoginId()); + newUser.setLoginPwd(client.getLoginPwd()); + newUser.setMiddleInitial(client.getMiddleInitial()); + newUser.setEmail(client.getEmail()); + newUser.setOrgUserId(client.getLoginId()); + try { + String userAsString = mapper.writeValueAsString(newUser); + List appList = appsService.getUserRemoteApps(client.getId().toString()); + // applicationsRestClientService.post(EPUser.class, appId, + // userAsString, String.format("/user", orgUserId)); + for (EPApp eachApp : appList) { + try { + applicationsRestClientService.post(EPUser.class, eachApp.getId(), userAsString, + String.format("/user/%s", orgUserId)); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "Failed to update user: " + client.getOrgUserId() + + " in remote app. appId = " + eachApp.getId()); + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "updateRemoteUserProfile failed", e); + return "failure"; + } + + return "success"; + } + + + /* + * (non-Javadoc) + * + * @see org.openecomp.portalapp.portal.service.UserRolesService# + * getCachedAppRolesForUser(java.lang.Long, java.lang.Long) + */ + public List getCachedAppRolesForUser(Long appId, Long userId) { + // Find the records for this user-app combo, if any + String filter = " where user_id = " + Long.toString(userId) + " and app_id = " + Long.toString(appId); + @SuppressWarnings("unchecked") + List roleList = dataAccessService.getList(EPUserApp.class, filter, null, null); + logger.debug(EELFLoggerDelegate.debugLogger, "getCachedAppRolesForUser: list size is {}", roleList.size()); + return roleList; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesService.java index 1b9dfd04..eebf3bf1 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserRolesService.java @@ -1,67 +1,91 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.apache.cxf.transport.http.HTTPException; -import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemUser; -import org.openecomp.portalapp.portal.domain.EPRole; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EPUserApp; -import org.openecomp.portalapp.portal.domain.EPUserAppCatalogRoles; -import org.openecomp.portalapp.portal.domain.ExternalSystemAccess; -import org.openecomp.portalapp.portal.transport.AppWithRolesForUser; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.RoleInAppForUser; -import org.openecomp.portalapp.portal.transport.UserApplicationRoles; - -public interface UserRolesService { - - public List getAppRolesForUser(Long appId, String userId); - - public boolean setAppWithUserRoleStateForUser(EPUser user, AppWithRolesForUser newAppRolesForUser); - - public List getUsersFromAppEndpoint(Long appId) throws HTTPException; - - public List importRolesFromRemoteApplication(Long appId) throws HTTPException; - - /** - * Gets entries from the local fn_user_role table for the specified user and - * app. - * - * @param appId - * ID of row in fn_app - * @param userid - * ID of row in fn_user - * @return List of EPRole; empty if none found. - */ - public List getCachedAppRolesForUser(Long appId, Long userId); - - public FieldsValidator putUserAppRolesRequest(AppWithRolesForUser userAppRolesData, EPUser user); - - String setAppWithUserRoleStateForUser(ExternalSystemUser newAppRolesForUser); - - public List getUserAppCatalogRoles(EPUser user, String appName); - - public String updateRemoteUserProfile(String orgUserId, Long appId); - - public ExternalSystemAccess getExternalRequestAccess(); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ + +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.apache.cxf.transport.http.HTTPException; +import org.openecomp.portalapp.externalsystemapproval.model.ExternalSystemUser; +import org.openecomp.portalapp.portal.domain.EPRole; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EPUserApp; +import org.openecomp.portalapp.portal.domain.EPUserAppCatalogRoles; +import org.openecomp.portalapp.portal.domain.ExternalSystemAccess; +import org.openecomp.portalapp.portal.transport.AppWithRolesForUser; +import org.openecomp.portalapp.portal.transport.ExternalRequestFieldsValidator; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.RoleInAppForUser; +import org.openecomp.portalapp.portal.transport.UserApplicationRoles; + +public interface UserRolesService { + + /** + * Returns list of app roles of a single app + * + * @param appId + * ID of row in fn_app + * @param userId + * ID of row in fn_user + * @param extRequestValue + * set to false if request is from users page otherwise true + * @return List + */ + public List getAppRolesForUser(Long appId, String userId, Boolean extRequestValue); + + public boolean setAppWithUserRoleStateForUser(EPUser user, AppWithRolesForUser newAppRolesForUser); + + public List getUsersFromAppEndpoint(Long appId) throws HTTPException; + + public List importRolesFromRemoteApplication(Long appId) throws HTTPException; + + /** + * Gets entries from the local fn_user_role table for the specified user and + * app. + * + * @param appId + * ID of row in fn_app + * @param userId + * ID of row in fn_user + * @return List of EPRole; empty if none found. + */ + public List getCachedAppRolesForUser(Long appId, Long userId); + + public FieldsValidator putUserAppRolesRequest(AppWithRolesForUser userAppRolesData, EPUser user); + + /** + * Save user app roles in the database from the external request + * + * @param newAppRolesForUser + * + * contains login id, app name, request id, and list of role + * names + * @param reqType + * @return if any exceptions, returns detail message and true or false + */ + ExternalRequestFieldsValidator setExternalRequestUserAppRole(ExternalSystemUser newAppRolesForUser, String reqType); + + public List getUserAppCatalogRoles(EPUser user, String appName); + + public String updateRemoteUserProfile(String orgUserId, Long appId); + + public ExternalSystemAccess getExternalRequestAccess(); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserService.java index 2d8e9112..b08f9e8a 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserService.java @@ -24,11 +24,13 @@ import java.util.List; import org.openecomp.portalapp.portal.domain.EPUser; public interface UserService { - + List getUserByUserId(String orgUserId); - + List getUserByFirstLastName(String firstName, String lastName); - + public String saveNewUser(EPUser newUser, String checkDuplicate) throws Exception; - + + public void saveUser(EPUser user) throws Exception; + } diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserServiceImpl.java index 4de2c497..88c482ba 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/UserServiceImpl.java @@ -113,7 +113,7 @@ public class UserServiceImpl implements UserService { in.close(); con.disconnect(); } catch (IOException e) { - logger.error(EELFLoggerDelegate.errorLogger,"getUserByUserId failed to close", e); + logger.error(EELFLoggerDelegate.errorLogger, "getUserByUserId failed to close", e); } } @@ -257,4 +257,9 @@ public class UserServiceImpl implements UserService { return "success"; }; + @Override + public void saveUser(EPUser user) throws Exception { + getDataAccessService().saveDomainObject(user, null); + } + } diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetParameterService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetParameterService.java index df01fb96..d3c32596 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetParameterService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetParameterService.java @@ -1,64 +1,64 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.domain.WidgetCatalogParameter; - -public interface WidgetParameterService { - - /** - * Saves the specified user-defined widget parameters to the table ep_widget_parameters - * - * @param newParameter - */ - void saveUserParameter(WidgetCatalogParameter newParameter); - - /** - * Gets the specified user-defined widget parameter where paramId is used from all users - * - * @param paramId - * @return - * List of widget parameters - */ - List getUserParameterById(Long paramId); - - - /** - * Deletes the specified user-defined widget parameters from ep_widget_parameters table - * where paramId is used - * - * @param paramId - */ - void deleteUserParameterById(Long paramId); - - - /** - * Gets the specified user-defined widget parameter where paramId is used from the specified - * user with userId - * @param widgetId - * @param userId - * @param paramId - * @return - */ - WidgetCatalogParameter getUserParamById(Long widgetId, Long userId, Long paramId); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.domain.WidgetCatalogParameter; + +public interface WidgetParameterService { + + /** + * Saves the specified user-defined widget parameters to the table ep_widget_parameters + * + * @param newParameter + */ + void saveUserParameter(WidgetCatalogParameter newParameter); + + /** + * Gets the specified user-defined widget parameter where paramId is used from all users + * + * @param paramId + * @return + * List of widget parameters + */ + List getUserParameterById(Long paramId); + + + /** + * Deletes the specified user-defined widget parameters from ep_widget_parameters table + * where paramId is used + * + * @param paramId + */ + void deleteUserParameterById(Long paramId); + + + /** + * Gets the specified user-defined widget parameter where paramId is used from the specified + * user with userId + * @param widgetId + * @param userId + * @param paramId + * @return WidgetCatalogParameter + */ + WidgetCatalogParameter getUserParamById(Long widgetId, Long userId, Long paramId); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetParameterServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetParameterServiceImpl.java index a3e9c61c..d7685627 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetParameterServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetParameterServiceImpl.java @@ -1,92 +1,91 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; - -import org.hibernate.SessionFactory; -import org.hibernate.criterion.Criterion; -import org.hibernate.criterion.Restrictions; -import org.openecomp.portalapp.portal.domain.WidgetCatalogParameter; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; - -@Service("widgetParameterService") -@EnableAspectJAutoProxy -@EPMetricsLog -public class WidgetParameterServiceImpl implements WidgetParameterService{ - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WidgetParameterServiceImpl.class); - - @Autowired - private DataAccessService dataAccessService; - - @SuppressWarnings("unchecked") - @Override - public WidgetCatalogParameter getUserParamById(Long widgetId, Long userId, Long paramId) { - List restrictionsList = new ArrayList(); - Criterion widgetIdCrit = Restrictions.eq("widgetId", widgetId); - restrictionsList.add(widgetIdCrit); - Criterion attIdCrit = Restrictions.eq("userId", userId); - restrictionsList.add(attIdCrit); - Criterion paramIdCrit = Restrictions.eq("paramId", paramId); - restrictionsList.add(paramIdCrit); - - - WidgetCatalogParameter widgetParam = null; - List list = (List) dataAccessService - .getList(WidgetCatalogParameter.class, null, restrictionsList, null); - if(list.size() != 0) - widgetParam = list.get(0); - logger.debug(EELFLoggerDelegate.debugLogger, - "getUserParamById: widget parameters: " + widgetParam); - return widgetParam; - } - - @Override - public void saveUserParameter(WidgetCatalogParameter newParameter) { - dataAccessService.saveDomainObject(newParameter, null); - } - - @SuppressWarnings("unchecked") - @Override - public List getUserParameterById(Long paramId) { - List restrictionsList = new ArrayList(); - Criterion paramIdCrit = Restrictions.eq("paramId", paramId); - restrictionsList.add(paramIdCrit); - List list = (List) dataAccessService - .getList(WidgetCatalogParameter.class, null, restrictionsList, null); - return list; - } - - @Override - public void deleteUserParameterById(Long paramId) { - Map params = new HashMap(); - params.put("paramId", Long.toString(paramId)); - dataAccessService.executeNamedQuery("deleteWidgetCatalogParameter", params, null); - dataAccessService.executeNamedQuery("deleteMicroserviceParameterById", params, null); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import org.hibernate.criterion.Criterion; +import org.hibernate.criterion.Restrictions; +import org.openecomp.portalapp.portal.domain.WidgetCatalogParameter; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; + +@Service("widgetParameterService") +@EnableAspectJAutoProxy +@EPMetricsLog +public class WidgetParameterServiceImpl implements WidgetParameterService{ + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WidgetParameterServiceImpl.class); + + @Autowired + private DataAccessService dataAccessService; + + @SuppressWarnings("unchecked") + @Override + public WidgetCatalogParameter getUserParamById(Long widgetId, Long userId, Long paramId) { + List restrictionsList = new ArrayList(); + Criterion widgetIdCrit = Restrictions.eq("widgetId", widgetId); + restrictionsList.add(widgetIdCrit); + Criterion attIdCrit = Restrictions.eq("userId", userId); + restrictionsList.add(attIdCrit); + Criterion paramIdCrit = Restrictions.eq("paramId", paramId); + restrictionsList.add(paramIdCrit); + + + WidgetCatalogParameter widgetParam = null; + List list = (List) dataAccessService + .getList(WidgetCatalogParameter.class, null, restrictionsList, null); + if(list.size() != 0) + widgetParam = list.get(0); + logger.debug(EELFLoggerDelegate.debugLogger, + "getUserParamById: widget parameters: " + widgetParam); + return widgetParam; + } + + @Override + public void saveUserParameter(WidgetCatalogParameter newParameter) { + dataAccessService.saveDomainObject(newParameter, null); + } + + @SuppressWarnings("unchecked") + @Override + public List getUserParameterById(Long paramId) { + List restrictionsList = new ArrayList(); + Criterion paramIdCrit = Restrictions.eq("paramId", paramId); + restrictionsList.add(paramIdCrit); + List list = (List) dataAccessService + .getList(WidgetCatalogParameter.class, null, restrictionsList, null); + return list; + } + + @Override + public void deleteUserParameterById(Long paramId) { + Map params = new HashMap(); + params.put("paramId", Long.toString(paramId)); + dataAccessService.executeNamedQuery("deleteWidgetCatalogParameter", params, null); + dataAccessService.executeNamedQuery("deleteMicroserviceParameterById", params, null); + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetService.java index b44a19f3..5c3ea768 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetService.java @@ -1,36 +1,36 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.OnboardingWidget; - -public interface WidgetService { - - List getOnboardingWidgets(EPUser user, boolean managed); - - FieldsValidator setOnboardingWidget(EPUser user, OnboardingWidget onboardingWidget); - - FieldsValidator deleteOnboardingWidget(EPUser user, Long onboardingWidgetId); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.List; + +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.OnboardingWidget; + +public interface WidgetService { + + List getOnboardingWidgets(EPUser user, boolean managed); + + FieldsValidator setOnboardingWidget(EPUser user, OnboardingWidget onboardingWidget); + + FieldsValidator deleteOnboardingWidget(EPUser user, Long onboardingWidgetId); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetServiceImpl.java index 484bef4f..c19730e0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/service/WidgetServiceImpl.java @@ -1,276 +1,276 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.ArrayList; -import java.util.List; - -import javax.annotation.PostConstruct; -import javax.servlet.http.HttpServletResponse; - -import org.hibernate.Session; -import org.hibernate.SessionFactory; -import org.hibernate.Transaction; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EPUserApp; -import org.openecomp.portalapp.portal.domain.Widget; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.transport.FieldsValidator; -import org.openecomp.portalapp.portal.transport.OnboardingWidget; -import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; - -@Service("widgetService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class WidgetServiceImpl implements WidgetService { - - private static final String baseSqlToken = " widget.WIDGET_ID, widget.WDG_NAME, widget.APP_ID, app.APP_NAME, widget.WDG_WIDTH, widget.WDG_HEIGHT, widget.WDG_URL" - + " from FN_WIDGET widget join FN_APP app ON widget.APP_ID = app.APP_ID"; - - private String validAppsFilter = ""; - - private Long LONG_ECOMP_APP_ID = 1L; - private Long ACCOUNT_ADMIN_ROLE_ID = 999L; - private static final Long DUBLICATED_FIELD_VALUE_ECOMP_ERROR = new Long(EPCommonSystemProperties.DUBLICATED_FIELD_VALUE_ECOMP_ERROR); - - private static final String urlField = "url"; - - private static final String nameField = "name"; - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WidgetServiceImpl.class); - - @Autowired - AdminRolesService adminRolesService; - @Autowired - private SessionFactory sessionFactory; - @Autowired - private DataAccessService dataAccessService; - - @PostConstruct - private void init() { - try { - validAppsFilter = " AND app.ENABLED = 'Y' AND app.APP_ID != " + SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID); - ACCOUNT_ADMIN_ROLE_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID)); - LONG_ECOMP_APP_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID)); - } catch(Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } - } - - private String sqlWidgetsForAllApps() { - return "SELECT" + baseSqlToken + validAppsFilter; - } - - private String sqlWidgetsForAllAppsWhereUserIsAdmin(Long userId) { - return "SELECT" + baseSqlToken + " join FN_USER_ROLE ON FN_USER_ROLE.APP_ID = app.APP_ID where FN_USER_ROLE.USER_ID = " + userId - + " AND FN_USER_ROLE.ROLE_ID = " + ACCOUNT_ADMIN_ROLE_ID + validAppsFilter; - } - - private String sqlWidgetsForAllAppsWhereUserHasAnyRole(Long userId) { - return "SELECT DISTINCT" + baseSqlToken + " join FN_USER_ROLE ON FN_USER_ROLE.APP_ID = app.APP_ID where FN_USER_ROLE.USER_ID = " - + userId + validAppsFilter; - } - - @SuppressWarnings("unchecked") - @Override - public List getOnboardingWidgets(EPUser user, boolean managed) { - List onboardingWidgets = new ArrayList(); - String sql = null; - if (adminRolesService.isSuperAdmin(user)) { - sql = this.sqlWidgetsForAllApps(); - } else if (managed) { - if (adminRolesService.isAccountAdmin(user)) { - sql = this.sqlWidgetsForAllAppsWhereUserIsAdmin(user.getId()); - } - } else if (adminRolesService.isAccountAdmin(user) || adminRolesService.isUser(user)) { - sql = this.sqlWidgetsForAllAppsWhereUserHasAnyRole(user.getId()); - } - if (sql != null) { - onboardingWidgets = dataAccessService.executeSQLQuery(sql, OnboardingWidget.class, null); - } - return onboardingWidgets; - } - - private static final Object syncRests = new Object(); - - private boolean isUserAdminOfAppForWidget(boolean superAdmin, Long userId, Long appId) { - if (!superAdmin) { - @SuppressWarnings("unchecked") - List userRoles = dataAccessService.getList(EPUserApp.class, - " where userId = " + userId + " and role.id = " + ACCOUNT_ADMIN_ROLE_ID + " and app.id = " + appId, null, null); - return (userRoles.size() > 0); - } - return true; - } - - private void validateOnboardingWidget(OnboardingWidget onboardingWidget, FieldsValidator fieldsValidator) { - @SuppressWarnings("unchecked") - List widgets = dataAccessService.getList(Widget.class, - " where url = '" + onboardingWidget.url + "'" + " or name = '" + onboardingWidget.name + "'", null, null); - boolean dublicatedUrl = false; - boolean dublicatedName = false; - for (Widget widget : widgets) { - if (onboardingWidget.id != null && onboardingWidget.id.equals(widget.getId())) { - // widget should not be compared with itself - continue; - } - if (!dublicatedUrl && widget.getUrl().equals(onboardingWidget.url)) { - dublicatedUrl = true; - if (dublicatedName) { - break; - } - } - if (!dublicatedName && widget.getName().equalsIgnoreCase(onboardingWidget.name) && widget.getAppId().equals(onboardingWidget.appId)) { - dublicatedName = true; - if (dublicatedUrl) { - break; - } - } - } - if (dublicatedUrl || dublicatedName) { - if (dublicatedUrl) { - fieldsValidator.addProblematicFieldName(urlField); - } - if (dublicatedName) { - fieldsValidator.addProblematicFieldName(nameField); - } - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); - fieldsValidator.errorCode = DUBLICATED_FIELD_VALUE_ECOMP_ERROR; - } - } - - private void applyOnboardingWidget(OnboardingWidget onboardingWidget, FieldsValidator fieldsValidator) { - boolean result = false; - Session localSession = null; - Transaction transaction = null; - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - Widget widget; - if (onboardingWidget.id == null) { - widget = new Widget(); - } else { - widget = (Widget) localSession.get(Widget.class, onboardingWidget.id); - } - widget.setAppId(onboardingWidget.appId); - widget.setName(onboardingWidget.name); - widget.setWidth(onboardingWidget.width); - widget.setHeight(onboardingWidget.height); - widget.setUrl(onboardingWidget.url); - localSession.saveOrUpdate(widget); - transaction.commit(); - result = true; - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - EcompPortalUtils.rollbackTransaction(transaction, "applyOnboardingWidget rollback, exception = " + e); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "applyOnboardingWidget"); - } - if (!result) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - } - - private FieldsValidator updateOrSaveWidget(boolean superAdmin, Long userId, OnboardingWidget onboardingWidget) { - FieldsValidator fieldsValidator = new FieldsValidator(); - if (!this.isUserAdminOfAppForWidget(superAdmin, userId, onboardingWidget.appId)) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_FORBIDDEN); - return fieldsValidator; - } - synchronized (syncRests) { - // onboardingWidget.id is null for POST and not null for PUT - if (onboardingWidget.id == null) { - this.validateOnboardingWidget(onboardingWidget, fieldsValidator); - } else { - Widget widget = (Widget) dataAccessService.getDomainObject(Widget.class, onboardingWidget.id, null); - if (widget == null || widget.getId() == null) { - // Widget not found - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_NOT_FOUND); - return fieldsValidator; - } - this.validateOnboardingWidget(onboardingWidget, fieldsValidator); - } - if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { - this.applyOnboardingWidget(onboardingWidget, fieldsValidator); - } - } - return fieldsValidator; - } - - @Override - public FieldsValidator setOnboardingWidget(EPUser user, OnboardingWidget onboardingWidget) { - if (onboardingWidget.name.length() == 0 || onboardingWidget.url.length() == 0 || onboardingWidget.appId == null - || onboardingWidget.appId.equals(LONG_ECOMP_APP_ID) || onboardingWidget.width.intValue() <= 0 || onboardingWidget.height.intValue() <= 0) { - if (onboardingWidget.appId.equals(LONG_ECOMP_APP_ID)) { - // logger.error("Alarm!!! Security breach attempt on user " + user.getFullName() + ", userId = " + user.getUserId()); - } - FieldsValidator fieldsValidator = new FieldsValidator(); - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); - return fieldsValidator; - } - return this.updateOrSaveWidget(adminRolesService.isSuperAdmin(user), user.getId(), onboardingWidget); - } - - @Override - public FieldsValidator deleteOnboardingWidget(EPUser user, Long onboardingWidgetId) { - FieldsValidator fieldsValidator = new FieldsValidator(); - synchronized (syncRests) { - Widget widget = (Widget) dataAccessService.getDomainObject(Widget.class, onboardingWidgetId, null); - if (widget != null && widget.getId() != null) { // widget exists - if (!this.isUserAdminOfAppForWidget(adminRolesService.isSuperAdmin(user), user.getId(), widget.getAppId())) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_FORBIDDEN); - } else { - boolean result = false; - Session localSession = null; - Transaction transaction = null; - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - localSession.delete(localSession.get(Widget.class, onboardingWidgetId)); - transaction.commit(); - result = true; - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); - EcompPortalUtils.rollbackTransaction(transaction, "deleteOnboardingWidget rollback, exception = " + e); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "deleteOnboardingWidget"); - } - if (!result) { - fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); - } - } - } - } - return fieldsValidator; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.service; + +import java.util.ArrayList; +import java.util.List; + +import javax.annotation.PostConstruct; +import javax.servlet.http.HttpServletResponse; + +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.hibernate.Transaction; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EPUserApp; +import org.openecomp.portalapp.portal.domain.Widget; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.transport.FieldsValidator; +import org.openecomp.portalapp.portal.transport.OnboardingWidget; +import org.openecomp.portalapp.portal.utils.EPCommonSystemProperties; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; + +@Service("widgetService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class WidgetServiceImpl implements WidgetService { + + private static final String baseSqlToken = " widget.WIDGET_ID, widget.WDG_NAME, widget.APP_ID, app.APP_NAME, widget.WDG_WIDTH, widget.WDG_HEIGHT, widget.WDG_URL" + + " from FN_WIDGET widget join FN_APP app ON widget.APP_ID = app.APP_ID"; + + private String validAppsFilter = ""; + + private Long LONG_ECOMP_APP_ID = 1L; + private Long ACCOUNT_ADMIN_ROLE_ID = 999L; + private static final Long DUBLICATED_FIELD_VALUE_ECOMP_ERROR = new Long(EPCommonSystemProperties.DUBLICATED_FIELD_VALUE_ECOMP_ERROR); + + private static final String urlField = "url"; + + private static final String nameField = "name"; + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(WidgetServiceImpl.class); + + @Autowired + AdminRolesService adminRolesService; + @Autowired + private SessionFactory sessionFactory; + @Autowired + private DataAccessService dataAccessService; + + @PostConstruct + private void init() { + try { + validAppsFilter = " AND app.ENABLED = 'Y' AND app.APP_ID != " + SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID); + ACCOUNT_ADMIN_ROLE_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ACCOUNT_ADMIN_ROLE_ID)); + LONG_ECOMP_APP_ID = Long.valueOf(SystemProperties.getProperty(EPCommonSystemProperties.ECOMP_APP_ID)); + } catch(Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } + } + + private String sqlWidgetsForAllApps() { + return "SELECT" + baseSqlToken + validAppsFilter; + } + + private String sqlWidgetsForAllAppsWhereUserIsAdmin(Long userId) { + return "SELECT" + baseSqlToken + " join FN_USER_ROLE ON FN_USER_ROLE.APP_ID = app.APP_ID where FN_USER_ROLE.USER_ID = " + userId + + " AND FN_USER_ROLE.ROLE_ID = " + ACCOUNT_ADMIN_ROLE_ID + validAppsFilter; + } + + private String sqlWidgetsForAllAppsWhereUserHasAnyRole(Long userId) { + return "SELECT DISTINCT" + baseSqlToken + " join FN_USER_ROLE ON FN_USER_ROLE.APP_ID = app.APP_ID where FN_USER_ROLE.USER_ID = " + + userId + validAppsFilter; + } + + @SuppressWarnings("unchecked") + @Override + public List getOnboardingWidgets(EPUser user, boolean managed) { + List onboardingWidgets = new ArrayList(); + String sql = null; + if (adminRolesService.isSuperAdmin(user)) { + sql = this.sqlWidgetsForAllApps(); + } else if (managed) { + if (adminRolesService.isAccountAdmin(user)) { + sql = this.sqlWidgetsForAllAppsWhereUserIsAdmin(user.getId()); + } + } else if (adminRolesService.isAccountAdmin(user) || adminRolesService.isUser(user)) { + sql = this.sqlWidgetsForAllAppsWhereUserHasAnyRole(user.getId()); + } + if (sql != null) { + onboardingWidgets = dataAccessService.executeSQLQuery(sql, OnboardingWidget.class, null); + } + return onboardingWidgets; + } + + private static final Object syncRests = new Object(); + + private boolean isUserAdminOfAppForWidget(boolean superAdmin, Long userId, Long appId) { + if (!superAdmin) { + @SuppressWarnings("unchecked") + List userRoles = dataAccessService.getList(EPUserApp.class, + " where userId = " + userId + " and role.id = " + ACCOUNT_ADMIN_ROLE_ID + " and app.id = " + appId, null, null); + return (userRoles.size() > 0); + } + return true; + } + + private void validateOnboardingWidget(OnboardingWidget onboardingWidget, FieldsValidator fieldsValidator) { + @SuppressWarnings("unchecked") + List widgets = dataAccessService.getList(Widget.class, + " where url = '" + onboardingWidget.url + "'" + " or name = '" + onboardingWidget.name + "'", null, null); + boolean dublicatedUrl = false; + boolean dublicatedName = false; + for (Widget widget : widgets) { + if (onboardingWidget.id != null && onboardingWidget.id.equals(widget.getId())) { + // widget should not be compared with itself + continue; + } + if (!dublicatedUrl && widget.getUrl().equals(onboardingWidget.url)) { + dublicatedUrl = true; + if (dublicatedName) { + break; + } + } + if (!dublicatedName && widget.getName().equalsIgnoreCase(onboardingWidget.name) && widget.getAppId().equals(onboardingWidget.appId)) { + dublicatedName = true; + if (dublicatedUrl) { + break; + } + } + } + if (dublicatedUrl || dublicatedName) { + if (dublicatedUrl) { + fieldsValidator.addProblematicFieldName(urlField); + } + if (dublicatedName) { + fieldsValidator.addProblematicFieldName(nameField); + } + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_CONFLICT); + fieldsValidator.errorCode = DUBLICATED_FIELD_VALUE_ECOMP_ERROR; + } + } + + private void applyOnboardingWidget(OnboardingWidget onboardingWidget, FieldsValidator fieldsValidator) { + boolean result = false; + Session localSession = null; + Transaction transaction = null; + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + Widget widget; + if (onboardingWidget.id == null) { + widget = new Widget(); + } else { + widget = (Widget) localSession.get(Widget.class, onboardingWidget.id); + } + widget.setAppId(onboardingWidget.appId); + widget.setName(onboardingWidget.name); + widget.setWidth(onboardingWidget.width); + widget.setHeight(onboardingWidget.height); + widget.setUrl(onboardingWidget.url); + localSession.saveOrUpdate(widget); + transaction.commit(); + result = true; + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + EcompPortalUtils.rollbackTransaction(transaction, "applyOnboardingWidget rollback, exception = " + e); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "applyOnboardingWidget"); + } + if (!result) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + } + + private FieldsValidator updateOrSaveWidget(boolean superAdmin, Long userId, OnboardingWidget onboardingWidget) { + FieldsValidator fieldsValidator = new FieldsValidator(); + if (!this.isUserAdminOfAppForWidget(superAdmin, userId, onboardingWidget.appId)) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_FORBIDDEN); + return fieldsValidator; + } + synchronized (syncRests) { + // onboardingWidget.id is null for POST and not null for PUT + if (onboardingWidget.id == null) { + this.validateOnboardingWidget(onboardingWidget, fieldsValidator); + } else { + Widget widget = (Widget) dataAccessService.getDomainObject(Widget.class, onboardingWidget.id, null); + if (widget == null || widget.getId() == null) { + // Widget not found + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_NOT_FOUND); + return fieldsValidator; + } + this.validateOnboardingWidget(onboardingWidget, fieldsValidator); + } + if (fieldsValidator.httpStatusCode.intValue() == HttpServletResponse.SC_OK) { + this.applyOnboardingWidget(onboardingWidget, fieldsValidator); + } + } + return fieldsValidator; + } + + @Override + public FieldsValidator setOnboardingWidget(EPUser user, OnboardingWidget onboardingWidget) { + if (onboardingWidget.name.length() == 0 || onboardingWidget.url.length() == 0 || onboardingWidget.appId == null + || onboardingWidget.appId.equals(LONG_ECOMP_APP_ID) || onboardingWidget.width.intValue() <= 0 || onboardingWidget.height.intValue() <= 0) { + if (onboardingWidget.appId.equals(LONG_ECOMP_APP_ID)) { + // logger.error("Alarm!!! Security breach attempt on user " + user.getFullName() + ", userId = " + user.getUserId()); + } + FieldsValidator fieldsValidator = new FieldsValidator(); + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_BAD_REQUEST); + return fieldsValidator; + } + return this.updateOrSaveWidget(adminRolesService.isSuperAdmin(user), user.getId(), onboardingWidget); + } + + @Override + public FieldsValidator deleteOnboardingWidget(EPUser user, Long onboardingWidgetId) { + FieldsValidator fieldsValidator = new FieldsValidator(); + synchronized (syncRests) { + Widget widget = (Widget) dataAccessService.getDomainObject(Widget.class, onboardingWidgetId, null); + if (widget != null && widget.getId() != null) { // widget exists + if (!this.isUserAdminOfAppForWidget(adminRolesService.isSuperAdmin(user), user.getId(), widget.getAppId())) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_FORBIDDEN); + } else { + boolean result = false; + Session localSession = null; + Transaction transaction = null; + try { + localSession = sessionFactory.openSession(); + transaction = localSession.beginTransaction(); + localSession.delete(localSession.get(Widget.class, onboardingWidgetId)); + transaction.commit(); + result = true; + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoSystemError, e); + EcompPortalUtils.rollbackTransaction(transaction, "deleteOnboardingWidget rollback, exception = " + e); + } finally { + EcompPortalUtils.closeLocalSession(localSession, "deleteOnboardingWidget"); + } + if (!result) { + fieldsValidator.httpStatusCode = new Long(HttpServletResponse.SC_INTERNAL_SERVER_ERROR); + } + } + } + } + return fieldsValidator; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AllAppsWithRolesForUser.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AllAppsWithRolesForUser.java index da776ded..f56d6111 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AllAppsWithRolesForUser.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AllAppsWithRolesForUser.java @@ -1,40 +1,40 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.List; - -public class AllAppsWithRolesForUser { - - public String orgUserId; - - public List apps; - - public static class AppWithUserRoles { - - public Long appId; - - public String appName; - - public List appRoles; - - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.List; + +public class AllAppsWithRolesForUser { + + public String orgUserId; + + public List apps; + + public static class AppWithUserRoles { + + public Long appId; + + public String appName; + + public List appRoles; + + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/Analytics.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/Analytics.java index adc5ad2b..059999a4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/Analytics.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/Analytics.java @@ -1,66 +1,66 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import com.fasterxml.jackson.annotation.JsonInclude; - -@JsonInclude(JsonInclude.Include.NON_NULL) -public class Analytics { - - private String action; - private String page; - private String function; - private String userId; - private String type; - - public String getType() { - return type; - } - public void setType(String type) { - this.type = type; - } - public String getAction() { - return action; - } - public void setAction(String action) { - this.action = action; - } - public String getPage() { - return page; - } - public void setPage(String page) { - this.page = page; - } - public String getFunction() { - return function; - } - public void setFunction(String function) { - this.function = function; - } - public String getUserId() { - return userId; - } - public void setUserId(String userId) { - this.userId = userId; - } - - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import com.fasterxml.jackson.annotation.JsonInclude; + +@JsonInclude(JsonInclude.Include.NON_NULL) +public class Analytics { + + private String action; + private String page; + private String function; + private String userId; + private String type; + + public String getType() { + return type; + } + public void setType(String type) { + this.type = type; + } + public String getAction() { + return action; + } + public void setAction(String action) { + this.action = action; + } + public String getPage() { + return page; + } + public void setPage(String page) { + this.page = page; + } + public String getFunction() { + return function; + } + public void setFunction(String function) { + this.function = function; + } + public String getUserId() { + return userId; + } + public void setUserId(String userId) { + this.userId = userId; + } + + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppCatalogPersonalization.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppCatalogPersonalization.java index 7c24917b..f07ae6e1 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppCatalogPersonalization.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppCatalogPersonalization.java @@ -1,94 +1,94 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -/** - * Model for the object PUT to the controller when the user takes an action on - * an application in the catalog. - */ -public class AppCatalogPersonalization { - - public Long appId; - public Boolean select; - public Boolean pending; - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public Boolean getSelect() { - return select; - } - - public void setSelect(Boolean select) { - this.select = select; - } - - public Boolean getPending() { - return pending; - } - - public void setPending(Boolean pending) { - this.pending = pending; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((appId == null) ? 0 : appId.hashCode()); - result = prime * result + ((pending == null) ? 0 : pending.hashCode()); - result = prime * result + ((select == null) ? 0 : select.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - AppCatalogPersonalization other = (AppCatalogPersonalization) obj; - if (appId == null) { - if (other.appId != null) - return false; - } else if (!appId.equals(other.appId)) - return false; - if (pending == null) { - if (other.pending != null) - return false; - } else if (!pending.equals(other.pending)) - return false; - if (select == null) { - if (other.select != null) - return false; - } else if (!select.equals(other.select)) - return false; - return true; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +/** + * Model for the object PUT to the controller when the user takes an action on + * an application in the catalog. + */ +public class AppCatalogPersonalization { + + public Long appId; + public Boolean select; + public Boolean pending; + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public Boolean getSelect() { + return select; + } + + public void setSelect(Boolean select) { + this.select = select; + } + + public Boolean getPending() { + return pending; + } + + public void setPending(Boolean pending) { + this.pending = pending; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((appId == null) ? 0 : appId.hashCode()); + result = prime * result + ((pending == null) ? 0 : pending.hashCode()); + result = prime * result + ((select == null) ? 0 : select.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + AppCatalogPersonalization other = (AppCatalogPersonalization) obj; + if (appId == null) { + if (other.appId != null) + return false; + } else if (!appId.equals(other.appId)) + return false; + if (pending == null) { + if (other.pending != null) + return false; + } else if (!pending.equals(other.pending)) + return false; + if (select == null) { + if (other.select != null) + return false; + } else if (!select.equals(other.select)) + return false; + return true; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppNameIdIsAdmin.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppNameIdIsAdmin.java index 484fffad..135b298c 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppNameIdIsAdmin.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppNameIdIsAdmin.java @@ -1,114 +1,114 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -public class AppNameIdIsAdmin { - - public Long id; - - public String appName; - - public Boolean isAdmin; - - public Boolean restrictedApp; - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getAppName() { - return appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - public Boolean getIsAdmin() { - return isAdmin; - } - - public void setIsAdmin(Boolean isAdmin) { - this.isAdmin = isAdmin; - } - - public Boolean getRestrictedApp() { - return restrictedApp; - } - - public void setRestrictedApp(Boolean restrictedApp) { - this.restrictedApp = restrictedApp; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((appName == null) ? 0 : appName.hashCode()); - result = prime * result + ((id == null) ? 0 : id.hashCode()); - result = prime * result + ((isAdmin == null) ? 0 : isAdmin.hashCode()); - result = prime * result + ((restrictedApp == null) ? 0 : restrictedApp.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - AppNameIdIsAdmin other = (AppNameIdIsAdmin) obj; - if (appName == null) { - if (other.appName != null) - return false; - } else if (!appName.equals(other.appName)) - return false; - if (id == null) { - if (other.id != null) - return false; - } else if (!id.equals(other.id)) - return false; - if (isAdmin == null) { - if (other.isAdmin != null) - return false; - } else if (!isAdmin.equals(other.isAdmin)) - return false; - if (restrictedApp == null) { - if (other.restrictedApp != null) - return false; - } else if (!restrictedApp.equals(other.restrictedApp)) - return false; - return true; - } - - @Override - public String toString() { - return "AppNameIdIsAdmin [id=" + id + ", appName=" + appName + ", isAdmin=" + isAdmin + ", restrictedApp=" - + restrictedApp + "]"; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +public class AppNameIdIsAdmin { + + public Long id; + + public String appName; + + public Boolean isAdmin; + + public Boolean restrictedApp; + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getAppName() { + return appName; + } + + public void setAppName(String appName) { + this.appName = appName; + } + + public Boolean getIsAdmin() { + return isAdmin; + } + + public void setIsAdmin(Boolean isAdmin) { + this.isAdmin = isAdmin; + } + + public Boolean getRestrictedApp() { + return restrictedApp; + } + + public void setRestrictedApp(Boolean restrictedApp) { + this.restrictedApp = restrictedApp; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((appName == null) ? 0 : appName.hashCode()); + result = prime * result + ((id == null) ? 0 : id.hashCode()); + result = prime * result + ((isAdmin == null) ? 0 : isAdmin.hashCode()); + result = prime * result + ((restrictedApp == null) ? 0 : restrictedApp.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + AppNameIdIsAdmin other = (AppNameIdIsAdmin) obj; + if (appName == null) { + if (other.appName != null) + return false; + } else if (!appName.equals(other.appName)) + return false; + if (id == null) { + if (other.id != null) + return false; + } else if (!id.equals(other.id)) + return false; + if (isAdmin == null) { + if (other.isAdmin != null) + return false; + } else if (!isAdmin.equals(other.isAdmin)) + return false; + if (restrictedApp == null) { + if (other.restrictedApp != null) + return false; + } else if (!restrictedApp.equals(other.restrictedApp)) + return false; + return true; + } + + @Override + public String toString() { + return "AppNameIdIsAdmin [id=" + id + ", appName=" + appName + ", isAdmin=" + isAdmin + ", restrictedApp=" + + restrictedApp + "]"; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppWithRolesForUser.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppWithRolesForUser.java index 4e37ee00..16ba67b5 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppWithRolesForUser.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppWithRolesForUser.java @@ -1,73 +1,72 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.List; - -public class AppWithRolesForUser { - - public String orgUserId; - - public Long appId; - - public String appName; - - public List appRoles; - - public String getOrgUserId() { - return orgUserId; - } - - public void setOrgUserId(String orgUserId) { - this.orgUserId = orgUserId; - } - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public String getAppName() { - return appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - public List getAppRoles() { - return appRoles; - } - - public void setAppRoles(List appRoles) { - this.appRoles = appRoles; - } - - @Override - public String toString() { - return "AppWithRolesForUser [orgUserId=" + orgUserId + ", appId=" + appId + ", appName=" + appName - + ", appRoles=" + appRoles + "]"; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.List; + +public class AppWithRolesForUser { + + public String orgUserId; + + public Long appId; + + public String appName; + + public List appRoles; + + public String getOrgUserId() { + return orgUserId; + } + + public void setOrgUserId(String orgUserId) { + this.orgUserId = orgUserId; + } + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public String getAppName() { + return appName; + } + + public void setAppName(String appName) { + this.appName = appName; + } + + public List getAppRoles() { + return appRoles; + } + + public void setAppRoles(List appRoles) { + this.appRoles = appRoles; + } + + @Override + public String toString() { + return "AppWithRolesForUser [orgUserId=" + orgUserId + ", appId=" + appId + ", appName=" + appName + + ", appRoles=" + appRoles + "]"; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppsListWithAdminRole.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppsListWithAdminRole.java index 0000e2a7..fc9bc88c 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppsListWithAdminRole.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/AppsListWithAdminRole.java @@ -1,86 +1,86 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.ArrayList; - -public class AppsListWithAdminRole { - - public String orgUserId; - - public ArrayList appsRoles; - - public AppsListWithAdminRole() { - appsRoles = new ArrayList(); - } - - public String getOrgUserId() { - return orgUserId; - } - - public void setOrgUserId(String orgUserId) { - this.orgUserId = orgUserId; - } - - public ArrayList getAppsRoles() { - return appsRoles; - } - - public void setAppsRoles(ArrayList appsRoles) { - this.appsRoles = appsRoles; - } - - @Override - public String toString() { - return "AppsListWithAdminRole [orgUserId=" + orgUserId + ", appsRoles=" + appsRoles + "]"; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((appsRoles == null) ? 0 : appsRoles.hashCode()); - result = prime * result + ((orgUserId == null) ? 0 : orgUserId.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - AppsListWithAdminRole other = (AppsListWithAdminRole) obj; - if (appsRoles == null) { - if (other.appsRoles != null) - return false; - } else if (!appsRoles.equals(other.appsRoles)) - return false; - if (orgUserId == null) { - if (other.orgUserId != null) - return false; - } else if (!orgUserId.equals(other.orgUserId)) - return false; - return true; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.ArrayList; + +public class AppsListWithAdminRole { + + public String orgUserId; + + public ArrayList appsRoles; + + public AppsListWithAdminRole() { + appsRoles = new ArrayList(); + } + + public String getOrgUserId() { + return orgUserId; + } + + public void setOrgUserId(String orgUserId) { + this.orgUserId = orgUserId; + } + + public ArrayList getAppsRoles() { + return appsRoles; + } + + public void setAppsRoles(ArrayList appsRoles) { + this.appsRoles = appsRoles; + } + + @Override + public String toString() { + return "AppsListWithAdminRole [orgUserId=" + orgUserId + ", appsRoles=" + appsRoles + "]"; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((appsRoles == null) ? 0 : appsRoles.hashCode()); + result = prime * result + ((orgUserId == null) ? 0 : orgUserId.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + AppsListWithAdminRole other = (AppsListWithAdminRole) obj; + if (appsRoles == null) { + if (other.appsRoles != null) + return false; + } else if (!appsRoles.equals(other.appsRoles)) + return false; + if (orgUserId == null) { + if (other.orgUserId != null) + return false; + } else if (!orgUserId.equals(other.orgUserId)) + return false; + return true; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/BusinessCardApplicationRole.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/BusinessCardApplicationRole.java index 47658786..5fb847f4 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/BusinessCardApplicationRole.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/BusinessCardApplicationRole.java @@ -1,108 +1,108 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; - -import com.fasterxml.jackson.annotation.JsonInclude; - -@Entity -@JsonInclude(JsonInclude.Include.NON_NULL) -public class BusinessCardApplicationRole implements Serializable{ - - /** - * - */ - private static final long serialVersionUID = 1L; - - - public BusinessCardApplicationRole() { - } - - - @Id - @Column(name="app_name") - private String appName; - - @Id - @Column(name="role_name") - private String roleName; - - - public String getAppName() { - return appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - - - public String getRoleName() { - return roleName; - } - - public void setRoleName(String roleName) { - this.roleName = roleName; - } - - @Override - public String toString() { - return "BusinessCardUserApplicationRoles [appName=" + appName + ", roleName=" + roleName + "]"; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((appName == null) ? 0 : appName.hashCode()); - result = prime * result + ((roleName == null) ? 0 : roleName.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - BusinessCardApplicationRole other = (BusinessCardApplicationRole) obj; - if (appName == null) { - if (other.appName != null) - return false; - } else if (!appName.equals(other.appName)) - return false; - if (roleName == null) { - if (other.roleName != null) - return false; - } else if (!roleName.equals(other.roleName)) - return false; - return true; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; + +import com.fasterxml.jackson.annotation.JsonInclude; + +@Entity +@JsonInclude(JsonInclude.Include.NON_NULL) +public class BusinessCardApplicationRole implements Serializable{ + + /** + * + */ + private static final long serialVersionUID = 1L; + + + public BusinessCardApplicationRole() { + } + + + @Id + @Column(name="app_name") + private String appName; + + @Id + @Column(name="role_name") + private String roleName; + + + public String getAppName() { + return appName; + } + + public void setAppName(String appName) { + this.appName = appName; + } + + + + public String getRoleName() { + return roleName; + } + + public void setRoleName(String roleName) { + this.roleName = roleName; + } + + @Override + public String toString() { + return "BusinessCardUserApplicationRoles [appName=" + appName + ", roleName=" + roleName + "]"; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((appName == null) ? 0 : appName.hashCode()); + result = prime * result + ((roleName == null) ? 0 : roleName.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + BusinessCardApplicationRole other = (BusinessCardApplicationRole) obj; + if (appName == null) { + if (other.appName != null) + return false; + } else if (!appName.equals(other.appName)) + return false; + if (roleName == null) { + if (other.roleName != null) + return false; + } else if (!roleName.equals(other.roleName)) + return false; + return true; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/BusinessCardApplicationRolesList.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/BusinessCardApplicationRolesList.java index 15c3aff2..51feb115 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/BusinessCardApplicationRolesList.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/BusinessCardApplicationRolesList.java @@ -1,86 +1,86 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.List; - -import com.fasterxml.jackson.annotation.JsonInclude; - -@JsonInclude(JsonInclude.Include.NON_NULL) -public class BusinessCardApplicationRolesList { - - public BusinessCardApplicationRolesList(){} - - private String appName; - private List roleNames; - - - public String getAppName() { - return appName; - } - public void setAppName(String appName) { - this.appName = appName; - } - public List getRoleNames() { - return roleNames; - } - public void setRoleNames(List roleNames) { - this.roleNames = roleNames; - } - public BusinessCardApplicationRolesList(String appName, List roleNames) { - super(); - this.appName = appName; - this.roleNames = roleNames; - } - @Override - public String toString() { - return "BusinessCardUserAppRoles [appName=" + appName + ", roleNames=" + roleNames + "]"; - } - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((appName == null) ? 0 : appName.hashCode()); - result = prime * result + ((roleNames == null) ? 0 : roleNames.hashCode()); - return result; - } - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - BusinessCardApplicationRolesList other = (BusinessCardApplicationRolesList) obj; - if (appName == null) { - if (other.appName != null) - return false; - } else if (!appName.equals(other.appName)) - return false; - if (roleNames == null) { - if (other.roleNames != null) - return false; - } else if (!roleNames.equals(other.roleNames)) - return false; - return true; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.List; + +import com.fasterxml.jackson.annotation.JsonInclude; + +@JsonInclude(JsonInclude.Include.NON_NULL) +public class BusinessCardApplicationRolesList { + + public BusinessCardApplicationRolesList(){} + + private String appName; + private List roleNames; + + + public String getAppName() { + return appName; + } + public void setAppName(String appName) { + this.appName = appName; + } + public List getRoleNames() { + return roleNames; + } + public void setRoleNames(List roleNames) { + this.roleNames = roleNames; + } + public BusinessCardApplicationRolesList(String appName, List roleNames) { + super(); + this.appName = appName; + this.roleNames = roleNames; + } + @Override + public String toString() { + return "BusinessCardUserAppRoles [appName=" + appName + ", roleNames=" + roleNames + "]"; + } + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((appName == null) ? 0 : appName.hashCode()); + result = prime * result + ((roleNames == null) ? 0 : roleNames.hashCode()); + return result; + } + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + BusinessCardApplicationRolesList other = (BusinessCardApplicationRolesList) obj; + if (appName == null) { + if (other.appName != null) + return false; + } else if (!appName.equals(other.appName)) + return false; + if (roleNames == null) { + if (other.roleNames != null) + return false; + } else if (!roleNames.equals(other.roleNames)) + return false; + return true; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/CommonWidget.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/CommonWidget.java index da2ae4ea..ceb5d46d 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/CommonWidget.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/CommonWidget.java @@ -1,139 +1,139 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Table; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; -import com.fasterxml.jackson.annotation.JsonInclude; - -/** - * This is to handle portal admins - * @author aw3218 - */ -@Entity -@Table(name="fn_common_widget_data") -@JsonInclude(JsonInclude.Include.NON_NULL) -public class CommonWidget extends DomainVo{ - - private static final long serialVersionUID = 7897021982887364557L; - - @Id - @GeneratedValue(strategy=GenerationType.AUTO) - @Column(name = "id") - private Long id; - - @Column(name = "category") - public String category; - - @Column(name = "href") - public String href; - - @Column(name = "title") - public String title; - - @Column(name = "content") - public String content; - - @Column(name = "event_date") - public String eventDate; - - @Column(name = "sort_order") - public Integer sortOrder; - - - public CommonWidget(){ - - } - - public CommonWidget(String category, String href, String title, String content, String eventDate, Integer sortOrder){ - this.category = category; - this.href = href; - this.title = title; - this.content = content; - this.eventDate = eventDate; - this.sortOrder = sortOrder; - } - - public String getCategory() { - return category; - } - - public void setCategory(String category) { - this.category = category; - } - - public String getHref() { - return href; - } - - public void setHref(String href) { - this.href = href; - } - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public Integer getSortOrder() { - return sortOrder; - } - - public void setSortOrder(Integer sortOrder) { - this.sortOrder = sortOrder; - } - - public static long getSerialversionuid() { - return serialVersionUID; - } - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public String getEventDate() { - return eventDate; - } - - public void setEventDate(String eventDate) { - this.eventDate = eventDate; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.Table; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; +import com.fasterxml.jackson.annotation.JsonInclude; + +/** + * This is to handle portal admins + * @author aw3218 + */ +@Entity +@Table(name="fn_common_widget_data") +@JsonInclude(JsonInclude.Include.NON_NULL) +public class CommonWidget extends DomainVo{ + + private static final long serialVersionUID = 7897021982887364557L; + + @Id + @GeneratedValue(strategy=GenerationType.AUTO) + @Column(name = "id") + private Long id; + + @Column(name = "category") + public String category; + + @Column(name = "href") + public String href; + + @Column(name = "title") + public String title; + + @Column(name = "content") + public String content; + + @Column(name = "event_date") + public String eventDate; + + @Column(name = "sort_order") + public Integer sortOrder; + + + public CommonWidget(){ + + } + + public CommonWidget(String category, String href, String title, String content, String eventDate, Integer sortOrder){ + this.category = category; + this.href = href; + this.title = title; + this.content = content; + this.eventDate = eventDate; + this.sortOrder = sortOrder; + } + + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + + public String getHref() { + return href; + } + + public void setHref(String href) { + this.href = href; + } + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public Integer getSortOrder() { + return sortOrder; + } + + public void setSortOrder(Integer sortOrder) { + this.sortOrder = sortOrder; + } + + public static long getSerialversionuid() { + return serialVersionUID; + } + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getEventDate() { + return eventDate; + } + + public void setEventDate(String eventDate) { + this.eventDate = eventDate; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/CommonWidgetMeta.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/CommonWidgetMeta.java index ad71b081..ebf2439b 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/CommonWidgetMeta.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/CommonWidgetMeta.java @@ -1,50 +1,50 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.List; - -public class CommonWidgetMeta { - - private String category; - private List items; - - public CommonWidgetMeta(){ - - } - - public CommonWidgetMeta(String category, List items){ - this.category = category; - this.items = items; - } - - public String getCategory() { - return category; - } - public void setCategory(String category) { - this.category = category; - } - public List getItems() { - return items; - } - public void setItems(List items) { - this.items = items; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.List; + +public class CommonWidgetMeta { + + private String category; + private List items; + + public CommonWidgetMeta(){ + + } + + public CommonWidgetMeta(String category, List items){ + this.category = category; + this.items = items; + } + + public String getCategory() { + return category; + } + public void setCategory(String category) { + this.category = category; + } + public List getItems() { + return items; + } + public void setItems(List items) { + this.items = items; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPAppsManualPreference.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPAppsManualPreference.java index 658ef51e..7d8b8cda 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPAppsManualPreference.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPAppsManualPreference.java @@ -1,114 +1,114 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -public class EPAppsManualPreference { - - private Long appid; - private int col; - private String headerText; - private String imageLink; - private int order; - private boolean restrictedApp; - private int row; - private int sizeX; - private int sizeY; - private String subHeaderText; - private String url; - private boolean addRemoveApps; - - - public boolean isAddRemoveApps() { - return addRemoveApps; - } - public void setAddRemoveApps(boolean addRemoveApps) { - this.addRemoveApps = addRemoveApps; - } - public Long getAppid() { - return appid; - } - public void setAppid(Long appid) { - this.appid = appid; - } - public int getCol() { - return col; - } - public void setCol(int col) { - this.col = col; - } - public String getHeaderText() { - return headerText; - } - public void setHeaderText(String headerText) { - this.headerText = headerText; - } - public String getImageLink() { - return imageLink; - } - public void setImageLink(String imageLink) { - this.imageLink = imageLink; - } - public int getOrder() { - return order; - } - public void setOrder(int order) { - this.order = order; - } - public boolean isRestrictedApp() { - return restrictedApp; - } - public void setRestrictedApp(boolean restrictedApp) { - this.restrictedApp = restrictedApp; - } - public int getRow() { - return row; - } - public void setRow(int row) { - this.row = row; - } - public int getSizeX() { - return sizeX; - } - public void setSizeX(int sizeX) { - this.sizeX = sizeX; - } - public int getSizeY() { - return sizeY; - } - public void setSizeY(int sizeY) { - this.sizeY = sizeY; - } - public String getSubHeaderText() { - return subHeaderText; - } - public void setSubHeaderText(String subHeaderText) { - this.subHeaderText = subHeaderText; - } - public String getUrl() { - return url; - } - public void setUrl(String url) { - this.url = url; - } - - public boolean isValid(){ - return appid != null; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +public class EPAppsManualPreference { + + private Long appid; + private int col; + private String headerText; + private String imageLink; + private int order; + private boolean restrictedApp; + private int row; + private int sizeX; + private int sizeY; + private String subHeaderText; + private String url; + private boolean addRemoveApps; + + + public boolean isAddRemoveApps() { + return addRemoveApps; + } + public void setAddRemoveApps(boolean addRemoveApps) { + this.addRemoveApps = addRemoveApps; + } + public Long getAppid() { + return appid; + } + public void setAppid(Long appid) { + this.appid = appid; + } + public int getCol() { + return col; + } + public void setCol(int col) { + this.col = col; + } + public String getHeaderText() { + return headerText; + } + public void setHeaderText(String headerText) { + this.headerText = headerText; + } + public String getImageLink() { + return imageLink; + } + public void setImageLink(String imageLink) { + this.imageLink = imageLink; + } + public int getOrder() { + return order; + } + public void setOrder(int order) { + this.order = order; + } + public boolean isRestrictedApp() { + return restrictedApp; + } + public void setRestrictedApp(boolean restrictedApp) { + this.restrictedApp = restrictedApp; + } + public int getRow() { + return row; + } + public void setRow(int row) { + this.row = row; + } + public int getSizeX() { + return sizeX; + } + public void setSizeX(int sizeX) { + this.sizeX = sizeX; + } + public int getSizeY() { + return sizeY; + } + public void setSizeY(int sizeY) { + this.sizeY = sizeY; + } + public String getSubHeaderText() { + return subHeaderText; + } + public void setSubHeaderText(String subHeaderText) { + this.subHeaderText = subHeaderText; + } + public String getUrl() { + return url; + } + public void setUrl(String url) { + this.url = url; + } + + public boolean isValid(){ + return appid != null; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPAppsSortPreference.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPAppsSortPreference.java index 8aa0860c..5e337bb8 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPAppsSortPreference.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPAppsSortPreference.java @@ -1,47 +1,47 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -public class EPAppsSortPreference { - - private int index; - private String value; - private String title; - - public int getIndex() { - return index; - } - public void setIndex(int index) { - this.index = index; - } - public String getValue() { - return value; - } - public void setValue(String value) { - this.value = value; - } - public String getTitle() { - return title; - } - public void setTitle(String title) { - this.title = title; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +public class EPAppsSortPreference { + + private int index; + private String value; + private String title; + + public int getIndex() { + return index; + } + public void setIndex(int index) { + this.index = index; + } + public String getValue() { + return value; + } + public void setValue(String value) { + this.value = value; + } + public String getTitle() { + return title; + } + public void setTitle(String title) { + this.title = title; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPDeleteAppsManualSortPref.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPDeleteAppsManualSortPref.java index 700b74b1..73a12ee5 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPDeleteAppsManualSortPref.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPDeleteAppsManualSortPref.java @@ -1,51 +1,51 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -public class EPDeleteAppsManualSortPref { - private Long appId; - private boolean select; - private boolean pending; - - public Long getAppId() { - return appId; - } - - public void setAppId(Long appId) { - this.appId = appId; - } - - public boolean isSelect() { - return select; - } - - public void setSelect(boolean select) { - this.select = select; - } - - public boolean isPending() { - return pending; - } - - public void setPending(boolean pending) { - this.pending = pending; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +public class EPDeleteAppsManualSortPref { + private Long appId; + private boolean select; + private boolean pending; + + public Long getAppId() { + return appId; + } + + public void setAppId(Long appId) { + this.appId = appId; + } + + public boolean isSelect() { + return select; + } + + public void setSelect(boolean select) { + this.select = select; + } + + public boolean isPending() { + return pending; + } + + public void setPending(boolean pending) { + this.pending = pending; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPWidgetsSortPreference.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPWidgetsSortPreference.java index 3fadf1a4..bb29ef71 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPWidgetsSortPreference.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EPWidgetsSortPreference.java @@ -1,92 +1,92 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.List; - -public class EPWidgetsSortPreference { - - private int SizeX; - private int SizeY; - private String headerText; - private String url; - private Long widgetid; - private List attrb; - private String widgetIdentifier; - private int row; - private int col; - - public String getWidgetIdentifier() { - return widgetIdentifier; - } - public List getAttrb() { - return attrb; - } - public void setAttrb(List attrb) { - this.attrb = attrb; - } - public void setWidgetIdentifier(String widgetIdentifier) { - this.widgetIdentifier = widgetIdentifier; - } - public int getSizeX() { - return SizeX; - } - public void setSizeX(int sizeX) { - SizeX = sizeX; - } - public int getSizeY() { - return SizeY; - } - public void setSizeY(int sizeY) { - SizeY = sizeY; - } - public String getHeaderText() { - return headerText; - } - public void setHeaderText(String headerText) { - this.headerText = headerText; - } - public String getUrl() { - return url; - } - public void setUrl(String url) { - this.url = url; - } - public Long getWidgetid() { - return widgetid; - } - public void setWidgetid(Long widgetid) { - this.widgetid = widgetid; - } - public int getRow() { - return row; - } - public void setRow(int row) { - this.row = row; - } - public int getCol() { - return col; - } - public void setCol(int col) { - this.col = col; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.List; + +public class EPWidgetsSortPreference { + + private int SizeX; + private int SizeY; + private String headerText; + private String url; + private Long widgetid; + private List attrb; + private String widgetIdentifier; + private int row; + private int col; + + public String getWidgetIdentifier() { + return widgetIdentifier; + } + public List getAttrb() { + return attrb; + } + public void setAttrb(List attrb) { + this.attrb = attrb; + } + public void setWidgetIdentifier(String widgetIdentifier) { + this.widgetIdentifier = widgetIdentifier; + } + public int getSizeX() { + return SizeX; + } + public void setSizeX(int sizeX) { + SizeX = sizeX; + } + public int getSizeY() { + return SizeY; + } + public void setSizeY(int sizeY) { + SizeY = sizeY; + } + public String getHeaderText() { + return headerText; + } + public void setHeaderText(String headerText) { + this.headerText = headerText; + } + public String getUrl() { + return url; + } + public void setUrl(String url) { + this.url = url; + } + public Long getWidgetid() { + return widgetid; + } + public void setWidgetid(Long widgetid) { + this.widgetid = widgetid; + } + public int getRow() { + return row; + } + public void setRow(int row) { + this.row = row; + } + public int getCol() { + return col; + } + public void setCol(int col) { + this.col = col; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItem.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItem.java index 94fbe59a..00df522a 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItem.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItem.java @@ -1,328 +1,328 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.Date; -import java.util.List; -import java.util.Set; - -import javax.persistence.CascadeType; -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.FetchType; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.JoinColumn; -import javax.persistence.OneToMany; -import javax.persistence.Table; -import javax.persistence.Transient; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - - -/** - * This is to handle notifications in notification PopUp - */ - - -@Entity -@Table(name = "ep_notification") -public class EpNotificationItem extends DomainVo { - public EpNotificationItem() { - }; - - private static final long serialVersionUID = 1L; - - @Id - @GeneratedValue(strategy = GenerationType.IDENTITY) - @Column(name = "notification_ID") - public Long notificationId; - - @Column(name = "is_for_online_users") - public String isForOnlineUsers; - - @Column(name = "is_for_all_roles") - public String isForAllRoles; - - @Column(name = "active_YN") - public String activeYn; - - @Column(name = "msg_header") - public String msgHeader; - - @Column(name = "msg_description") - public String msgDescription; - - @Column(name = "msg_source") - public String msgSource; - - @Column(name = "start_time") - public Date startTime; - - @Column(name = "end_time") - public Date endTime; - - @Column(name = "priority") - public Long priority; - - @Column(name = "creator_ID") - public Long creatorId; - - @Column(name = "created_date") - public Date createdDate; - - - @OneToMany(fetch = FetchType.LAZY, cascade = {CascadeType.ALL}, orphanRemoval = true) - @JoinColumn(name="notification_ID") - private Set roles; - - @Transient - private List roleIds; - - public Long getNotificationId() { - return notificationId; - } - - public void setNotificationId(Long notificationId) { - this.notificationId = notificationId; - } - - public String getIsForOnlineUsers() { - return isForOnlineUsers; - } - - public void setIsForOnlineUsers(String isForOnlineUsers) { - this.isForOnlineUsers = isForOnlineUsers; - } - - public String getIsForAllRoles() { - return isForAllRoles; - } - - public void setIsForAllRoles(String isForAllRoles) { - this.isForAllRoles = isForAllRoles; - } - - public String getActiveYn() { - return activeYn; - } - - public void setActiveYn(String activeYn) { - this.activeYn = activeYn; - } - - public String getMsgHeader() { - return msgHeader; - } - - public void setMsgHeader(String msgHeader) { - this.msgHeader = msgHeader; - } - - public String getMsgDescription() { - return msgDescription; - } - - public void setMsgDescription(String msgDescription) { - this.msgDescription = msgDescription; - } - - public Date getStartTime() { - return startTime; - } - - public void setStartTime(Date startTime) { - this.startTime = startTime; - } - - public Date getEndTime() { - return endTime; - } - - public void setEndTime(Date endTime) { - this.endTime = endTime; - } - - public Long getPriority() { - return priority; - } - - public void setPriority(Long priority) { - this.priority = priority; - } - - public Long getCreatorId() { - return creatorId; - } - - public void setCreatorId(Long creatorId) { - this.creatorId = creatorId; - } - - public Date getCreatedDate() { - return createdDate; - } - - public void setCreatedDate(Date createdDate) { - this.createdDate = createdDate; - } - - public static long getSerialversionuid() { - return serialVersionUID; - } - - public Set getRoles() { - return roles; - } - - public void setRoles(Set roles) { - this.roles = roles; - } - - public List getRoleIds() { - return roleIds; - } - - public void setRoleIds(List roleIds) { - this.roleIds = roleIds; - } - - public String getMsgSource() { - return msgSource; - } - - public void setMsgSource(String msgSource) { - this.msgSource = msgSource; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((activeYn == null) ? 0 : activeYn.hashCode()); - result = prime * result + ((createdDate == null) ? 0 : createdDate.hashCode()); - result = prime * result + ((creatorId == null) ? 0 : creatorId.hashCode()); - result = prime * result + ((endTime == null) ? 0 : endTime.hashCode()); - result = prime * result + ((isForAllRoles == null) ? 0 : isForAllRoles.hashCode()); - result = prime * result + ((isForOnlineUsers == null) ? 0 : isForOnlineUsers.hashCode()); - result = prime * result + ((msgDescription == null) ? 0 : msgDescription.hashCode()); - result = prime * result + ((msgHeader == null) ? 0 : msgHeader.hashCode()); - result = prime * result + ((msgSource == null) ? 0 : msgSource.hashCode()); - result = prime * result + ((notificationId == null) ? 0 : notificationId.hashCode()); - result = prime * result + ((priority == null) ? 0 : priority.hashCode()); - result = prime * result + ((roleIds == null) ? 0 : roleIds.hashCode()); - result = prime * result + ((roles == null) ? 0 : roles.hashCode()); - result = prime * result + ((startTime == null) ? 0 : startTime.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - EpNotificationItem other = (EpNotificationItem) obj; - if (activeYn == null) { - if (other.activeYn != null) - return false; - } else if (!activeYn.equals(other.activeYn)) - return false; - if (createdDate == null) { - if (other.createdDate != null) - return false; - } else if (!createdDate.equals(other.createdDate)) - return false; - if (creatorId == null) { - if (other.creatorId != null) - return false; - } else if (!creatorId.equals(other.creatorId)) - return false; - if (endTime == null) { - if (other.endTime != null) - return false; - } else if (!endTime.equals(other.endTime)) - return false; - if (isForAllRoles == null) { - if (other.isForAllRoles != null) - return false; - } else if (!isForAllRoles.equals(other.isForAllRoles)) - return false; - if (isForOnlineUsers == null) { - if (other.isForOnlineUsers != null) - return false; - } else if (!isForOnlineUsers.equals(other.isForOnlineUsers)) - return false; - if (msgDescription == null) { - if (other.msgDescription != null) - return false; - } else if (!msgDescription.equals(other.msgDescription)) - return false; - if (msgHeader == null) { - if (other.msgHeader != null) - return false; - } else if (!msgHeader.equals(other.msgHeader)) - return false; - if (msgSource == null) { - if (other.msgSource != null) - return false; - } else if (!msgSource.equals(other.msgSource)) - return false; - if (notificationId == null) { - if (other.notificationId != null) - return false; - } else if (!notificationId.equals(other.notificationId)) - return false; - if (priority == null) { - if (other.priority != null) - return false; - } else if (!priority.equals(other.priority)) - return false; - if (roleIds == null) { - if (other.roleIds != null) - return false; - } else if (!roleIds.equals(other.roleIds)) - return false; - if (roles == null) { - if (other.roles != null) - return false; - } else if (!roles.equals(other.roles)) - return false; - if (startTime == null) { - if (other.startTime != null) - return false; - } else if (!startTime.equals(other.startTime)) - return false; - return true; - } - - @Override - public String toString() { - return "EpNotificationItem [notificationId=" + notificationId + ", isForOnlineUsers=" + isForOnlineUsers - + ", isForAllRoles=" + isForAllRoles + ", activeYn=" + activeYn + ", msgHeader=" + msgHeader - + ", msgDescription=" + msgDescription + ", msgSource=" + msgSource + ", startTime=" + startTime - + ", endTime=" + endTime + ", priority=" + priority + ", creatorId=" + creatorId + ", createdDate=" - + createdDate + ", roles=" + roles + ", roleIds=" + roleIds + "]"; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.Date; +import java.util.List; +import java.util.Set; + +import javax.persistence.CascadeType; +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.FetchType; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.JoinColumn; +import javax.persistence.OneToMany; +import javax.persistence.Table; +import javax.persistence.Transient; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + + +/** + * This is to handle notifications in notification PopUp + */ + + +@Entity +@Table(name = "ep_notification") +public class EpNotificationItem extends DomainVo { + public EpNotificationItem() { + }; + + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @Column(name = "notification_ID") + public Long notificationId; + + @Column(name = "is_for_online_users") + public String isForOnlineUsers; + + @Column(name = "is_for_all_roles") + public String isForAllRoles; + + @Column(name = "active_YN") + public String activeYn; + + @Column(name = "msg_header") + public String msgHeader; + + @Column(name = "msg_description") + public String msgDescription; + + @Column(name = "msg_source") + public String msgSource; + + @Column(name = "start_time") + public Date startTime; + + @Column(name = "end_time") + public Date endTime; + + @Column(name = "priority") + public Long priority; + + @Column(name = "creator_ID") + public Long creatorId; + + @Column(name = "created_date") + public Date createdDate; + + + @OneToMany(fetch = FetchType.LAZY, cascade = {CascadeType.ALL}, orphanRemoval = true) + @JoinColumn(name="notification_ID") + private Set roles; + + @Transient + private List roleIds; + + public Long getNotificationId() { + return notificationId; + } + + public void setNotificationId(Long notificationId) { + this.notificationId = notificationId; + } + + public String getIsForOnlineUsers() { + return isForOnlineUsers; + } + + public void setIsForOnlineUsers(String isForOnlineUsers) { + this.isForOnlineUsers = isForOnlineUsers; + } + + public String getIsForAllRoles() { + return isForAllRoles; + } + + public void setIsForAllRoles(String isForAllRoles) { + this.isForAllRoles = isForAllRoles; + } + + public String getActiveYn() { + return activeYn; + } + + public void setActiveYn(String activeYn) { + this.activeYn = activeYn; + } + + public String getMsgHeader() { + return msgHeader; + } + + public void setMsgHeader(String msgHeader) { + this.msgHeader = msgHeader; + } + + public String getMsgDescription() { + return msgDescription; + } + + public void setMsgDescription(String msgDescription) { + this.msgDescription = msgDescription; + } + + public Date getStartTime() { + return startTime; + } + + public void setStartTime(Date startTime) { + this.startTime = startTime; + } + + public Date getEndTime() { + return endTime; + } + + public void setEndTime(Date endTime) { + this.endTime = endTime; + } + + public Long getPriority() { + return priority; + } + + public void setPriority(Long priority) { + this.priority = priority; + } + + public Long getCreatorId() { + return creatorId; + } + + public void setCreatorId(Long creatorId) { + this.creatorId = creatorId; + } + + public Date getCreatedDate() { + return createdDate; + } + + public void setCreatedDate(Date createdDate) { + this.createdDate = createdDate; + } + + public static long getSerialversionuid() { + return serialVersionUID; + } + + public Set getRoles() { + return roles; + } + + public void setRoles(Set roles) { + this.roles = roles; + } + + public List getRoleIds() { + return roleIds; + } + + public void setRoleIds(List roleIds) { + this.roleIds = roleIds; + } + + public String getMsgSource() { + return msgSource; + } + + public void setMsgSource(String msgSource) { + this.msgSource = msgSource; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((activeYn == null) ? 0 : activeYn.hashCode()); + result = prime * result + ((createdDate == null) ? 0 : createdDate.hashCode()); + result = prime * result + ((creatorId == null) ? 0 : creatorId.hashCode()); + result = prime * result + ((endTime == null) ? 0 : endTime.hashCode()); + result = prime * result + ((isForAllRoles == null) ? 0 : isForAllRoles.hashCode()); + result = prime * result + ((isForOnlineUsers == null) ? 0 : isForOnlineUsers.hashCode()); + result = prime * result + ((msgDescription == null) ? 0 : msgDescription.hashCode()); + result = prime * result + ((msgHeader == null) ? 0 : msgHeader.hashCode()); + result = prime * result + ((msgSource == null) ? 0 : msgSource.hashCode()); + result = prime * result + ((notificationId == null) ? 0 : notificationId.hashCode()); + result = prime * result + ((priority == null) ? 0 : priority.hashCode()); + result = prime * result + ((roleIds == null) ? 0 : roleIds.hashCode()); + result = prime * result + ((roles == null) ? 0 : roles.hashCode()); + result = prime * result + ((startTime == null) ? 0 : startTime.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + EpNotificationItem other = (EpNotificationItem) obj; + if (activeYn == null) { + if (other.activeYn != null) + return false; + } else if (!activeYn.equals(other.activeYn)) + return false; + if (createdDate == null) { + if (other.createdDate != null) + return false; + } else if (!createdDate.equals(other.createdDate)) + return false; + if (creatorId == null) { + if (other.creatorId != null) + return false; + } else if (!creatorId.equals(other.creatorId)) + return false; + if (endTime == null) { + if (other.endTime != null) + return false; + } else if (!endTime.equals(other.endTime)) + return false; + if (isForAllRoles == null) { + if (other.isForAllRoles != null) + return false; + } else if (!isForAllRoles.equals(other.isForAllRoles)) + return false; + if (isForOnlineUsers == null) { + if (other.isForOnlineUsers != null) + return false; + } else if (!isForOnlineUsers.equals(other.isForOnlineUsers)) + return false; + if (msgDescription == null) { + if (other.msgDescription != null) + return false; + } else if (!msgDescription.equals(other.msgDescription)) + return false; + if (msgHeader == null) { + if (other.msgHeader != null) + return false; + } else if (!msgHeader.equals(other.msgHeader)) + return false; + if (msgSource == null) { + if (other.msgSource != null) + return false; + } else if (!msgSource.equals(other.msgSource)) + return false; + if (notificationId == null) { + if (other.notificationId != null) + return false; + } else if (!notificationId.equals(other.notificationId)) + return false; + if (priority == null) { + if (other.priority != null) + return false; + } else if (!priority.equals(other.priority)) + return false; + if (roleIds == null) { + if (other.roleIds != null) + return false; + } else if (!roleIds.equals(other.roleIds)) + return false; + if (roles == null) { + if (other.roles != null) + return false; + } else if (!roles.equals(other.roles)) + return false; + if (startTime == null) { + if (other.startTime != null) + return false; + } else if (!startTime.equals(other.startTime)) + return false; + return true; + } + + @Override + public String toString() { + return "EpNotificationItem [notificationId=" + notificationId + ", isForOnlineUsers=" + isForOnlineUsers + + ", isForAllRoles=" + isForAllRoles + ", activeYn=" + activeYn + ", msgHeader=" + msgHeader + + ", msgDescription=" + msgDescription + ", msgSource=" + msgSource + ", startTime=" + startTime + + ", endTime=" + endTime + ", priority=" + priority + ", creatorId=" + creatorId + ", createdDate=" + + createdDate + ", roles=" + roles + ", roleIds=" + roleIds + "]"; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItemExtVO.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItemExtVO.java index 4a3dc80d..c8c466ee 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItemExtVO.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItemExtVO.java @@ -1,119 +1,119 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.Date; - -import com.fasterxml.jackson.annotation.JsonInclude; - -@JsonInclude(JsonInclude.Include.NON_NULL) -public class EpNotificationItemExtVO { - - private Character activeYn; - - private String msgHeader; - - private String msgDescription; - - private Date startTime; - - private Date endTime; - - private Integer priority; - - private Integer creatorId; - - private Date createdDate; - - private String loginId; - - public Character getActiveYn() { - return activeYn; - } - - public void setActiveYn(Character activeYn) { - this.activeYn = activeYn; - } - - public String getMsgHeader() { - return msgHeader; - } - - public void setMsgHeader(String msgHeader) { - this.msgHeader = msgHeader; - } - - public String getMsgDescription() { - return msgDescription; - } - - public void setMsgDescription(String msgDescription) { - this.msgDescription = msgDescription; - } - - public Date getStartTime() { - return startTime; - } - - public void setStartTime(Date startTime) { - this.startTime = startTime; - } - - public Date getEndTime() { - return endTime; - } - - public void setEndTime(Date endTime) { - this.endTime = endTime; - } - - public Integer getPriority() { - return priority; - } - - public void setPriority(Integer priority) { - this.priority = priority; - } - - public Integer getCreatorId() { - return creatorId; - } - - public void setCreatorId(Integer creatorId) { - this.creatorId = creatorId; - } - - public Date getCreatedDate() { - return createdDate; - } - - public void setCreatedDate(Date createdDate) { - this.createdDate = createdDate; - } - - public String getLoginId() { - return loginId; - } - - public void setLoginId(String loginId) { - this.loginId = loginId; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.Date; + +import com.fasterxml.jackson.annotation.JsonInclude; + +@JsonInclude(JsonInclude.Include.NON_NULL) +public class EpNotificationItemExtVO { + + private Character activeYn; + + private String msgHeader; + + private String msgDescription; + + private Date startTime; + + private Date endTime; + + private Integer priority; + + private Integer creatorId; + + private Date createdDate; + + private String loginId; + + public Character getActiveYn() { + return activeYn; + } + + public void setActiveYn(Character activeYn) { + this.activeYn = activeYn; + } + + public String getMsgHeader() { + return msgHeader; + } + + public void setMsgHeader(String msgHeader) { + this.msgHeader = msgHeader; + } + + public String getMsgDescription() { + return msgDescription; + } + + public void setMsgDescription(String msgDescription) { + this.msgDescription = msgDescription; + } + + public Date getStartTime() { + return startTime; + } + + public void setStartTime(Date startTime) { + this.startTime = startTime; + } + + public Date getEndTime() { + return endTime; + } + + public void setEndTime(Date endTime) { + this.endTime = endTime; + } + + public Integer getPriority() { + return priority; + } + + public void setPriority(Integer priority) { + this.priority = priority; + } + + public Integer getCreatorId() { + return creatorId; + } + + public void setCreatorId(Integer creatorId) { + this.creatorId = creatorId; + } + + public Date getCreatedDate() { + return createdDate; + } + + public void setCreatedDate(Date createdDate) { + this.createdDate = createdDate; + } + + public String getLoginId() { + return loginId; + } + + public void setLoginId(String loginId) { + this.loginId = loginId; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItemVO.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItemVO.java index d22a4b79..3cb0f3a6 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItemVO.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpNotificationItemVO.java @@ -1,191 +1,191 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.Date; - -import javax.persistence.Entity; -import javax.persistence.Id; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -/** - * This is to handle notifications in user notifications and in notification history - */ - -/** - * POJO that models a single notification with the org user ID (not integer - * user_id). - */ -@Entity -public class EpNotificationItemVO extends DomainVo { - - private static final long serialVersionUID = 9095479701352339201L; - - @Id - private Integer notificationId; - - private Character isForOnlineUsers; - - private Character isForAllRoles; - - private Character activeYn; - - private String msgHeader; - - private String msgDescription; - - private String msgSource; - - private Date startTime; - - private Date endTime; - - private Integer priority; - - private Integer creatorId; - - private Date createdDate; - - private String loginId; - - /** - * Answers whether the notification is expired. - * - * @return true if the end time is past the current time, else false. - */ - public boolean isExpired() { - boolean result = false; - if (endTime != null) { - int expired = endTime.compareTo(new Date()); - result = (expired == -1) ? true : false; - } - return result; - } - - public String getLoginId() { - return loginId; - } - - public void setLoginId(String loginId) { - this.loginId = loginId; - } - - public Integer getNotificationId() { - return notificationId; - } - - public void setNotificationId(Integer notificationId) { - this.notificationId = notificationId; - } - - public Character getIsForOnlineUsers() { - return isForOnlineUsers; - } - - public void setIsForOnlineUsers(Character isForOnlineUsers) { - this.isForOnlineUsers = isForOnlineUsers; - } - - public Character getIsForAllRoles() { - return isForAllRoles; - } - - public void setIsForAllRoles(Character isForAllRoles) { - this.isForAllRoles = isForAllRoles; - } - - public Character getActiveYn() { - return activeYn; - } - - public void setActiveYn(Character activeYn) { - this.activeYn = activeYn; - } - - public String getMsgHeader() { - return msgHeader; - } - - public void setMsgHeader(String msgHeader) { - this.msgHeader = msgHeader; - } - - public String getMsgDescription() { - return msgDescription; - } - - public void setMsgDescription(String msgDescription) { - this.msgDescription = msgDescription; - } - - public Date getStartTime() { - return startTime; - } - - public void setStartTime(Date startTime) { - this.startTime = startTime; - } - - public Date getEndTime() { - return endTime; - } - - public void setEndTime(Date endTime) { - this.endTime = endTime; - } - - public Integer getPriority() { - return priority; - } - - public void setPriority(Integer priority) { - this.priority = priority; - } - - public Integer getCreatorId() { - return creatorId; - } - - public void setCreatorId(Integer creatorId) { - this.creatorId = creatorId; - } - - public Date getCreatedDate() { - return createdDate; - } - - public void setCreatedDate(Date createdDate) { - this.createdDate = createdDate; - } - - public static long getSerialversionuid() { - return serialVersionUID; - } - - - public String getMsgSource() { - return msgSource; - } - - public void setMsgSource(String msgSource) { - this.msgSource = msgSource; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.Date; + +import javax.persistence.Entity; +import javax.persistence.Id; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +/** + * This is to handle notifications in user notifications and in notification history + */ + +/** + * POJO that models a single notification with the org user ID (not integer + * user_id). + */ +@Entity +public class EpNotificationItemVO extends DomainVo { + + private static final long serialVersionUID = 9095479701352339201L; + + @Id + private Integer notificationId; + + private Character isForOnlineUsers; + + private Character isForAllRoles; + + private Character activeYn; + + private String msgHeader; + + private String msgDescription; + + private String msgSource; + + private Date startTime; + + private Date endTime; + + private Integer priority; + + private Integer creatorId; + + private Date createdDate; + + private String loginId; + + /** + * Answers whether the notification is expired. + * + * @return true if the end time is past the current time, else false. + */ + public boolean isExpired() { + boolean result = false; + if (endTime != null) { + int expired = endTime.compareTo(new Date()); + result = (expired == -1) ? true : false; + } + return result; + } + + public String getLoginId() { + return loginId; + } + + public void setLoginId(String loginId) { + this.loginId = loginId; + } + + public Integer getNotificationId() { + return notificationId; + } + + public void setNotificationId(Integer notificationId) { + this.notificationId = notificationId; + } + + public Character getIsForOnlineUsers() { + return isForOnlineUsers; + } + + public void setIsForOnlineUsers(Character isForOnlineUsers) { + this.isForOnlineUsers = isForOnlineUsers; + } + + public Character getIsForAllRoles() { + return isForAllRoles; + } + + public void setIsForAllRoles(Character isForAllRoles) { + this.isForAllRoles = isForAllRoles; + } + + public Character getActiveYn() { + return activeYn; + } + + public void setActiveYn(Character activeYn) { + this.activeYn = activeYn; + } + + public String getMsgHeader() { + return msgHeader; + } + + public void setMsgHeader(String msgHeader) { + this.msgHeader = msgHeader; + } + + public String getMsgDescription() { + return msgDescription; + } + + public void setMsgDescription(String msgDescription) { + this.msgDescription = msgDescription; + } + + public Date getStartTime() { + return startTime; + } + + public void setStartTime(Date startTime) { + this.startTime = startTime; + } + + public Date getEndTime() { + return endTime; + } + + public void setEndTime(Date endTime) { + this.endTime = endTime; + } + + public Integer getPriority() { + return priority; + } + + public void setPriority(Integer priority) { + this.priority = priority; + } + + public Integer getCreatorId() { + return creatorId; + } + + public void setCreatorId(Integer creatorId) { + this.creatorId = creatorId; + } + + public Date getCreatedDate() { + return createdDate; + } + + public void setCreatedDate(Date createdDate) { + this.createdDate = createdDate; + } + + public static long getSerialversionuid() { + return serialVersionUID; + } + + + public String getMsgSource() { + return msgSource; + } + + public void setMsgSource(String msgSource) { + this.msgSource = msgSource; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItem.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItem.java index 66840ed7..26cf5484 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItem.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItem.java @@ -1,90 +1,90 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Table; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; - -@Entity -@Table(name="ep_role_notification") -public class EpRoleNotificationItem extends DomainVo { - public EpRoleNotificationItem(){}; - - private static final long serialVersionUID = 1L; - - @Id - @GeneratedValue(strategy=GenerationType.IDENTITY) - @Column(name = "ID") - public Long id; - - @Column(name = "notification_ID") - public Long notificationId; - - @Column(name = "role_ID") - public Integer roleId; - - @Column(name = "recv_user_id") - public Integer RecvUserId; - - - public Long getId() { - return id; - } - - public void setId(Long id) { - this.id = id; - } - - public Long getNotificationId() { - return notificationId; - } - - public void setNotificationId(Long notificationId) { - this.notificationId = notificationId; - } - - public Integer getRoleId() { - return roleId; - } - - public void setRoleId(Integer roleId) { - this.roleId = roleId; - } - - public static long getSerialversionuid() { - return serialVersionUID; - } - - public Integer getRecvUserId() { - return RecvUserId; - } - - public void setRecvUserId(Integer recvUserId) { - RecvUserId = recvUserId; - } - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.Table; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; + +@Entity +@Table(name="ep_role_notification") +public class EpRoleNotificationItem extends DomainVo { + public EpRoleNotificationItem(){}; + + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy=GenerationType.IDENTITY) + @Column(name = "ID") + public Long id; + + @Column(name = "notification_ID") + public Long notificationId; + + @Column(name = "role_ID") + public Integer roleId; + + @Column(name = "recv_user_id") + public Integer RecvUserId; + + + public Long getId() { + return id; + } + + public void setId(Long id) { + this.id = id; + } + + public Long getNotificationId() { + return notificationId; + } + + public void setNotificationId(Long notificationId) { + this.notificationId = notificationId; + } + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + public static long getSerialversionuid() { + return serialVersionUID; + } + + public Integer getRecvUserId() { + return RecvUserId; + } + + public void setRecvUserId(Integer recvUserId) { + RecvUserId = recvUserId; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EventWidget.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EventWidget.java index 569dc138..4922b03e 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EventWidget.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EventWidget.java @@ -1,138 +1,138 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/*package org.openecomp.portalapp.portal.transport; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Table; - -import org.openecomp.portalsdk.core.domain.support.DomainVo; -import com.fasterxml.jackson.annotation.JsonInclude; - -*//** - * This is to handle portal admins - * @author aw3218 - *//* -@Entity -@Table(name="fn_event_widget_data") -@JsonInclude(JsonInclude.Include.NON_NULL) -public class EventWidget extends DomainVo{ - - *//** - * - *//* - private static final long serialVersionUID = -2784849102886421352L; - - - @Id - @GeneratedValue(strategy=GenerationType.AUTO) - @Column(name = "id") - private Long id; - - @Column(name = "category") - private String category; - - @Column(name = "title") - private String title; - - @Column(name = "href") - private String href; - - @Column(name = "content") - private String content; - - @Column(name = "month_val") - private String mon; - - @Column(name = "day_val") - private Integer day; - - @Column(name = "year_val") - private Integer year; - - @Column(name = "sort_order") - private Integer sortOrder; - - public String getTitle() { - return title; - } - - public void setTitle(String title) { - this.title = title; - } - - public String getHref() { - return href; - } - - public void setHref(String href) { - this.href = href; - } - - public String getContent() { - return content; - } - - public void setContent(String content) { - this.content = content; - } - - public String getMon() { - return mon; - } - - public void setMonth(String mon) { - this.mon = mon; - } - - public Integer getDay() { - return day; - } - - public void setDay(Integer day) { - this.day = day; - } - - public Integer getYear() { - return year; - } - - public void setYear(Integer year) { - this.year = year; - } - - public Integer getSortOrder() { - return sortOrder; - } - - public String getCategory() { - return category; - } - - public void setCategory(String category) { - this.category = category; - } - - -} -*/ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/*package org.openecomp.portalapp.portal.transport; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.Table; + +import org.openecomp.portalsdk.core.domain.support.DomainVo; +import com.fasterxml.jackson.annotation.JsonInclude; + +*//** + * This is to handle portal admins + * @author aw3218 + *//* +@Entity +@Table(name="fn_event_widget_data") +@JsonInclude(JsonInclude.Include.NON_NULL) +public class EventWidget extends DomainVo{ + + *//** + * + *//* + private static final long serialVersionUID = -2784849102886421352L; + + + @Id + @GeneratedValue(strategy=GenerationType.AUTO) + @Column(name = "id") + private Long id; + + @Column(name = "category") + private String category; + + @Column(name = "title") + private String title; + + @Column(name = "href") + private String href; + + @Column(name = "content") + private String content; + + @Column(name = "month_val") + private String mon; + + @Column(name = "day_val") + private Integer day; + + @Column(name = "year_val") + private Integer year; + + @Column(name = "sort_order") + private Integer sortOrder; + + public String getTitle() { + return title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getHref() { + return href; + } + + public void setHref(String href) { + this.href = href; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content; + } + + public String getMon() { + return mon; + } + + public void setMonth(String mon) { + this.mon = mon; + } + + public Integer getDay() { + return day; + } + + public void setDay(Integer day) { + this.day = day; + } + + public Integer getYear() { + return year; + } + + public void setYear(Integer year) { + this.year = year; + } + + public Integer getSortOrder() { + return sortOrder; + } + + public String getCategory() { + return category; + } + + public void setCategory(String category) { + this.category = category; + } + + +} +*/ diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EventWidgetMeta.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EventWidgetMeta.java index 2182d7b3..39488a21 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EventWidgetMeta.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/EventWidgetMeta.java @@ -1,51 +1,51 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/*package org.openecomp.portalapp.portal.transport; - -import java.util.List; - -public class EventWidgetMeta { - - private String category; - private List items; - - public EventWidgetMeta(){ - - } - - public EventWidgetMeta(String category, List items){ - this.category = category; - this.items = items; - } - - public String getCategory() { - return category; - } - public void setCategory(String category) { - this.category = category; - } - public List getItems() { - return items; - } - public void setItems(List items) { - this.items = items; - } -} -*/ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/*package org.openecomp.portalapp.portal.transport; + +import java.util.List; + +public class EventWidgetMeta { + + private String category; + private List items; + + public EventWidgetMeta(){ + + } + + public EventWidgetMeta(String category, List items){ + this.category = category; + this.items = items; + } + + public String getCategory() { + return category; + } + public void setCategory(String category) { + this.category = category; + } + public List getItems() { + return items; + } + public void setItems(List items) { + this.items = items; + } +} +*/ diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/ExternalRequestFieldsValidator.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/ExternalRequestFieldsValidator.java new file mode 100644 index 00000000..d5122ea5 --- /dev/null +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/ExternalRequestFieldsValidator.java @@ -0,0 +1,28 @@ +package org.openecomp.portalapp.portal.transport; + +public class ExternalRequestFieldsValidator { + + private boolean result; + private String detailMessage; + + public ExternalRequestFieldsValidator(boolean result, String detailMessage) { + super(); + this.result = result; + this.detailMessage = detailMessage; + } + public boolean isResult() { + return result; + } + public void setResult(boolean result) { + this.result = result; + } + public String getDetailMessage() { + return detailMessage; + } + public void setDetailMessage(String detailMessage) { + this.detailMessage = detailMessage; + } + + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FavoritesFunctionalMenuItem.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FavoritesFunctionalMenuItem.java index d90dfc1e..606cd67e 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FavoritesFunctionalMenuItem.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FavoritesFunctionalMenuItem.java @@ -1,45 +1,45 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.persistence.Table; - - -/** - * This is to handle functional menu favorites - */ -@Entity -@Table(name="fn_menu_favorites") -public class FavoritesFunctionalMenuItem implements Serializable { - private static final long serialVersionUID = 1L; - - @Id - @Column(name = "user_id") - public Long userId; - - @Id - @Column(name = "menu_id") - public Long menuId; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; +import javax.persistence.Table; + + +/** + * This is to handle functional menu favorites + */ +@Entity +@Table(name="fn_menu_favorites") +public class FavoritesFunctionalMenuItem implements Serializable { + private static final long serialVersionUID = 1L; + + @Id + @Column(name = "user_id") + public Long userId; + + @Id + @Column(name = "menu_id") + public Long menuId; +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FavoritesFunctionalMenuItemJson.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FavoritesFunctionalMenuItemJson.java index e469e0f9..7826e6c7 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FavoritesFunctionalMenuItemJson.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FavoritesFunctionalMenuItemJson.java @@ -1,57 +1,57 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.persistence.Table; -import javax.persistence.Transient; - - - -/** - * This is to handle functional menu favorites - */ -@Entity -@Table(name="fn_menu_favorites") -public class FavoritesFunctionalMenuItemJson implements Serializable { - - private static final long serialVersionUID = 1L; - - @Id - @Column(name = "user_id") - public Long userId; - - @Id - @Column(name = "menu_id") - public Long menuId; - - @Column(name = "text") - public String text; - - @Column(name = "url") - public String url; - - @Transient - public Boolean restrictedApp; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; +import javax.persistence.Table; +import javax.persistence.Transient; + + + +/** + * This is to handle functional menu favorites + */ +@Entity +@Table(name="fn_menu_favorites") +public class FavoritesFunctionalMenuItemJson implements Serializable { + + private static final long serialVersionUID = 1L; + + @Id + @Column(name = "user_id") + public Long userId; + + @Id + @Column(name = "menu_id") + public Long menuId; + + @Column(name = "text") + public String text; + + @Column(name = "url") + public String url; + + @Transient + public Boolean restrictedApp; +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FieldsValidator.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FieldsValidator.java index ab51b7b1..fee83b2f 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FieldsValidator.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FieldsValidator.java @@ -1,125 +1,125 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.ArrayList; -import java.util.List; - -import javax.servlet.http.HttpServletResponse; - -public class FieldsValidator { - - public Long httpStatusCode = new Long(HttpServletResponse.SC_OK); - - public Long errorCode; - - public class FieldName { - - public String name; - - public FieldName(String name) { - this.name = name; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - } - - - public List fields = new ArrayList(); - - public void addProblematicFieldName(String name) { - fields.add(new FieldName(name)); - } - - public Long getHttpStatusCode() { - return httpStatusCode; - } - - public void setHttpStatusCode(Long httpStatusCode) { - this.httpStatusCode = httpStatusCode; - } - - public Long getErrorCode() { - return errorCode; - } - - public void setErrorCode(Long errorCode) { - this.errorCode = errorCode; - } - - public List getFields() { - return fields; - } - - public void setFields(List fields) { - this.fields = fields; - } - - @Override - public String toString() { - return "FieldsValidator [httpStatusCode=" + httpStatusCode + ", errorCode=" + errorCode + ", fields=" + fields - + "]"; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((errorCode == null) ? 0 : errorCode.hashCode()); - result = prime * result + ((fields == null) ? 0 : fields.hashCode()); - result = prime * result + ((httpStatusCode == null) ? 0 : httpStatusCode.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - FieldsValidator other = (FieldsValidator) obj; - if (errorCode == null) { - if (other.errorCode != null) - return false; - } else if (!errorCode.equals(other.errorCode)) - return false; - if (fields == null) { - if (other.fields != null) - return false; - } else if (!fields.equals(other.fields)) - return false; - if (httpStatusCode == null) { - if (other.httpStatusCode != null) - return false; - } else if (!httpStatusCode.equals(other.httpStatusCode)) - return false; - return true; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.ArrayList; +import java.util.List; + +import javax.servlet.http.HttpServletResponse; + +public class FieldsValidator { + + public Long httpStatusCode = new Long(HttpServletResponse.SC_OK); + + public Long errorCode; + + public class FieldName { + + public String name; + + public FieldName(String name) { + this.name = name; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + } + + + public List fields = new ArrayList(); + + public void addProblematicFieldName(String name) { + fields.add(new FieldName(name)); + } + + public Long getHttpStatusCode() { + return httpStatusCode; + } + + public void setHttpStatusCode(Long httpStatusCode) { + this.httpStatusCode = httpStatusCode; + } + + public Long getErrorCode() { + return errorCode; + } + + public void setErrorCode(Long errorCode) { + this.errorCode = errorCode; + } + + public List getFields() { + return fields; + } + + public void setFields(List fields) { + this.fields = fields; + } + + @Override + public String toString() { + return "FieldsValidator [httpStatusCode=" + httpStatusCode + ", errorCode=" + errorCode + ", fields=" + fields + + "]"; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((errorCode == null) ? 0 : errorCode.hashCode()); + result = prime * result + ((fields == null) ? 0 : fields.hashCode()); + result = prime * result + ((httpStatusCode == null) ? 0 : httpStatusCode.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + FieldsValidator other = (FieldsValidator) obj; + if (errorCode == null) { + if (other.errorCode != null) + return false; + } else if (!errorCode.equals(other.errorCode)) + return false; + if (fields == null) { + if (other.fields != null) + return false; + } else if (!fields.equals(other.fields)) + return false; + if (httpStatusCode == null) { + if (other.httpStatusCode != null) + return false; + } else if (!httpStatusCode.equals(other.httpStatusCode)) + return false; + return true; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuItem.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuItem.java index 707b08bc..93d53d04 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuItem.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuItem.java @@ -1,100 +1,100 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.io.Serializable; -import java.util.List; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Table; -import javax.persistence.Transient; - -@Entity -@Table(name="fn_menu_functional") -public class FunctionalMenuItem implements Serializable { - public FunctionalMenuItem(){}; - - private static final long serialVersionUID = 1L; - - @Id - @GeneratedValue(strategy=GenerationType.IDENTITY) - @Column(name = "MENU_ID") - public Long menuId; - - @Column(name = "COLUMN_NUM") - public Integer column; - - @Column(name = "TEXT") - public String text; - - @Column(name = "PARENT_MENU_ID") - public Integer parentMenuId; - - @Column(name = "URL") - public String url; - - @Column(name="ACTIVE_YN") - public String active_yn; - - @Transient - public Integer appid; - - public List getRoles() { - return roles; - } - - public void setRoles(List roles) { - this.roles = roles; - } - - @Transient - private List roles; - - @Transient - public Boolean restrictedApp; - - public void normalize() { - if (this.column == null) - this.column = new Integer(1); - this.text = (this.text == null) ? "" : this.text.trim(); - if (this.parentMenuId == null) - this.parentMenuId = new Integer(-1); - this.url = (this.url == null) ? "" : this.url.trim(); - } - - @Override - public String toString() { - return "FunctionalMenuItem [menuId=" + menuId + ", column=" + column + ", text=" + text + ", parentMenuId=" - + parentMenuId + ", url=" + url + ", active_yn=" + active_yn + ", appid=" + appid + ", roles=" + roles - + ", restrictedApp=" + restrictedApp + "]"; - } - - public void setUrl(String url) { - this.url = url; - } - - public void setRestrictedApp(Boolean restrictedApp) { - this.restrictedApp = restrictedApp; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.io.Serializable; +import java.util.List; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.Table; +import javax.persistence.Transient; + +@Entity +@Table(name="fn_menu_functional") +public class FunctionalMenuItem implements Serializable { + public FunctionalMenuItem(){}; + + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy=GenerationType.IDENTITY) + @Column(name = "MENU_ID") + public Long menuId; + + @Column(name = "COLUMN_NUM") + public Integer column; + + @Column(name = "TEXT") + public String text; + + @Column(name = "PARENT_MENU_ID") + public Integer parentMenuId; + + @Column(name = "URL") + public String url; + + @Column(name="ACTIVE_YN") + public String active_yn; + + @Transient + public Integer appid; + + public List getRoles() { + return roles; + } + + public void setRoles(List roles) { + this.roles = roles; + } + + @Transient + private List roles; + + @Transient + public Boolean restrictedApp; + + public void normalize() { + if (this.column == null) + this.column = new Integer(1); + this.text = (this.text == null) ? "" : this.text.trim(); + if (this.parentMenuId == null) + this.parentMenuId = new Integer(-1); + this.url = (this.url == null) ? "" : this.url.trim(); + } + + @Override + public String toString() { + return "FunctionalMenuItem [menuId=" + menuId + ", column=" + column + ", text=" + text + ", parentMenuId=" + + parentMenuId + ", url=" + url + ", active_yn=" + active_yn + ", appid=" + appid + ", roles=" + roles + + ", restrictedApp=" + restrictedApp + "]"; + } + + public void setUrl(String url) { + this.url = url; + } + + public void setRestrictedApp(Boolean restrictedApp) { + this.restrictedApp = restrictedApp; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuItemWithRoles.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuItemWithRoles.java index 8e33a5f7..e74f0844 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuItemWithRoles.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuItemWithRoles.java @@ -1,60 +1,60 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.io.Serializable; -import java.util.List; - -// This type is used to read the Json in from the API call from the Front End -public class FunctionalMenuItemWithRoles implements Serializable { - private static final long serialVersionUID = 1L; - - public Long menuId; - - public Integer column; - - public String text; - - public Integer parentMenuId; - - public String url; - - public Integer appid; - - private List roles; - - public List getRoles() { - return roles; - } - - public void setRoles(List roles) { - this.roles = roles; - } - - public void normalize() { - if (this.column == null) - this.column = new Integer(1); - this.text = (this.text == null) ? "" : this.text.trim(); - if (this.parentMenuId == null) - this.parentMenuId = new Integer(-1); - this.url = (this.url == null) ? "" : this.url.trim(); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.io.Serializable; +import java.util.List; + +// This type is used to read the Json in from the API call from the Front End +public class FunctionalMenuItemWithRoles implements Serializable { + private static final long serialVersionUID = 1L; + + public Long menuId; + + public Integer column; + + public String text; + + public Integer parentMenuId; + + public String url; + + public Integer appid; + + private List roles; + + public List getRoles() { + return roles; + } + + public void setRoles(List roles) { + this.roles = roles; + } + + public void normalize() { + if (this.column == null) + this.column = new Integer(1); + this.text = (this.text == null) ? "" : this.text.trim(); + if (this.parentMenuId == null) + this.parentMenuId = new Integer(-1); + this.url = (this.url == null) ? "" : this.url.trim(); + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuRole.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuRole.java index 0033b62a..2c2124f0 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuRole.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/FunctionalMenuRole.java @@ -1,115 +1,115 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Table; - -@Entity -@Table(name="fn_menu_functional_roles") -public class FunctionalMenuRole implements Serializable { - private static final long serialVersionUID = 1L; - - @Id - @GeneratedValue(strategy=GenerationType.IDENTITY) - @Column(name = "ID") - public Integer id; - - @Column(name = "MENU_ID") - public Long menuId; - - @Column(name = "APP_ID") - public Integer appId; - - @Column(name = "ROLE_ID") - public Integer roleId; - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public Long getMenuId() { - return menuId; - } - - public void setMenuId(Long menuId) { - this.menuId = menuId; - } - - public Integer getAppId() { - return appId; - } - - public void setAppId(Integer appId) { - this.appId = appId; - } - - public Integer getRoleId() { - return roleId; - } - - public void setRoleId(Integer roleId) { - this.roleId = roleId; - } - - @Override - public String toString() { - return "FunctionalMenuRole [id=" + id + ", menuId=" + menuId + ", appId=" + appId + ", roleId=" + roleId + "]"; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((appId == null) ? 0 : appId.hashCode()); - result = prime * result + ((id == null) ? 0 : id.hashCode()); - result = prime * result + ((menuId == null) ? 0 : menuId.hashCode()); - result = prime * result + ((roleId == null) ? 0 : roleId.hashCode()); - return result; - } - - @Override - public boolean equals(Object o) { - - if (o == this) return true; - if (!(o instanceof FunctionalMenuRole)) { - return false; - } - FunctionalMenuRole functionalMenuRole = (FunctionalMenuRole) o; - System.out.println("test"); - return id.equals(functionalMenuRole.getId()) && - menuId.equals(functionalMenuRole.menuId) && - appId.equals(functionalMenuRole.appId) && - roleId.equals(functionalMenuRole.roleId) ; - } - - - - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.Table; + +@Entity +@Table(name="fn_menu_functional_roles") +public class FunctionalMenuRole implements Serializable { + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy=GenerationType.IDENTITY) + @Column(name = "ID") + public Integer id; + + @Column(name = "MENU_ID") + public Long menuId; + + @Column(name = "APP_ID") + public Integer appId; + + @Column(name = "ROLE_ID") + public Integer roleId; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Long getMenuId() { + return menuId; + } + + public void setMenuId(Long menuId) { + this.menuId = menuId; + } + + public Integer getAppId() { + return appId; + } + + public void setAppId(Integer appId) { + this.appId = appId; + } + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + @Override + public String toString() { + return "FunctionalMenuRole [id=" + id + ", menuId=" + menuId + ", appId=" + appId + ", roleId=" + roleId + "]"; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((appId == null) ? 0 : appId.hashCode()); + result = prime * result + ((id == null) ? 0 : id.hashCode()); + result = prime * result + ((menuId == null) ? 0 : menuId.hashCode()); + result = prime * result + ((roleId == null) ? 0 : roleId.hashCode()); + return result; + } + + @Override + public boolean equals(Object o) { + + if (o == this) return true; + if (!(o instanceof FunctionalMenuRole)) { + return false; + } + FunctionalMenuRole functionalMenuRole = (FunctionalMenuRole) o; + System.out.println("test"); + return id.equals(functionalMenuRole.getId()) && + menuId.equals(functionalMenuRole.menuId) && + appId.equals(functionalMenuRole.appId) && + roleId.equals(functionalMenuRole.roleId) ; + } + + + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/LocalRole.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/LocalRole.java index 06fd6aec..4ec22281 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/LocalRole.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/LocalRole.java @@ -1,42 +1,59 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; - -@Entity -public class LocalRole implements Serializable { - private static final long serialVersionUID = 1L; - - @Id - @Column(name = "ROLE_ID") - public Integer roleId; - - @Column(name = "ROLE_NAME") - public String rolename; - - public void normalize() { - this.rolename = (this.rolename == null) ? "" : this.rolename.trim(); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; + +@Entity +public class LocalRole implements Serializable { + private static final long serialVersionUID = 1L; + + @Id + @Column(name = "ROLE_ID") + public Integer roleId; + + @Column(name = "ROLE_NAME") + public String rolename; + + public void normalize() { + this.rolename = (this.rolename == null) ? "" : this.rolename.trim(); + } + + public Integer getRoleId() { + return roleId; + } + + public void setRoleId(Integer roleId) { + this.roleId = roleId; + } + + public String getRolename() { + return rolename; + } + + public void setRolename(String rolename) { + this.rolename = rolename; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/OnboardingApp.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/OnboardingApp.java index 977269d2..a4198d1d 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/OnboardingApp.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/OnboardingApp.java @@ -1,99 +1,101 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -/** - * Model of rows in the fn_app table; serialized as a message add or update an - * on-boarded application. - */ -public class OnboardingApp { - - public Long id; - - public String name; - - public String imageUrl; - - public String description; - - public String notes; - - public String url; - - public String alternateUrl; - - public String restUrl; - - public Boolean isOpen; - - public Boolean isEnabled; - - public Long motsId; - - public String myLoginsAppName; - - public String myLoginsAppOwner; - - public String username; - - public String appPassword; - - public String thumbnail; - - public String uebTopicName; - - public String uebKey; - - public String uebSecret; - - public Boolean restrictedApp; - - /** - * Sets the name, myLoginsAppName, myLoginsAppOwner, username and - * appPassword fields to the empty string OR trims leading/trailing space, - * as appropriate. - */ - public void normalize() { - this.name = (this.name == null) ? "" : this.name.trim(); - this.myLoginsAppName = (this.myLoginsAppName == null) ? "" : this.myLoginsAppName.trim(); - this.myLoginsAppOwner = (this.myLoginsAppOwner == null) ? "" : this.myLoginsAppOwner.trim(); - this.username = (this.username == null) ? "" : this.username.trim(); - this.appPassword = (this.appPassword == null) ? "" : this.appPassword.trim(); - } - - public void setUebTopicName(String topicName) { - this.uebTopicName = topicName; - } - - public void setUebKey(String key) { - this.uebKey = key; - } - - public void setUebSecret(String secret) { - this.uebSecret = secret; - } - - // Hide the implementation of restricted and normal app from the front end. - // The json sent and received will include restrictedApp but not appType. - - public void setRestrictedApp(Boolean restrictedApp) { - this.restrictedApp = restrictedApp; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +/** + * Model of rows in the fn_app table; serialized as a message add or update an + * on-boarded application. + */ +public class OnboardingApp { + + public Long id; + + public String name; + + public String imageUrl; + + public String imageLink; + + public String description; + + public String notes; + + public String url; + + public String alternateUrl; + + public String restUrl; + + public Boolean isOpen; + + public Boolean isEnabled; + + public Long motsId; + + public String myLoginsAppName; + + public String myLoginsAppOwner; + + public String username; + + public String appPassword; + + public String thumbnail; + + public String uebTopicName; + + public String uebKey; + + public String uebSecret; + + public Boolean restrictedApp; + + /** + * Sets the name, myLoginsAppName, myLoginsAppOwner, username and + * appPassword fields to the empty string OR trims leading/trailing space, + * as appropriate. + */ + public void normalize() { + this.name = (this.name == null) ? "" : this.name.trim(); + this.myLoginsAppName = (this.myLoginsAppName == null) ? "" : this.myLoginsAppName.trim(); + this.myLoginsAppOwner = (this.myLoginsAppOwner == null) ? "" : this.myLoginsAppOwner.trim(); + this.username = (this.username == null) ? "" : this.username.trim(); + this.appPassword = (this.appPassword == null) ? "" : this.appPassword.trim(); + } + + public void setUebTopicName(String topicName) { + this.uebTopicName = topicName; + } + + public void setUebKey(String key) { + this.uebKey = key; + } + + public void setUebSecret(String secret) { + this.uebSecret = secret; + } + + // Hide the implementation of restricted and normal app from the front end. + // The json sent and received will include restrictedApp but not appType. + + public void setRestrictedApp(Boolean restrictedApp) { + this.restrictedApp = restrictedApp; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/OnboardingWidget.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/OnboardingWidget.java index 09471d7f..9c812994 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/OnboardingWidget.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/OnboardingWidget.java @@ -1,65 +1,65 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; - -@Entity -public class OnboardingWidget implements Serializable { - - private static final long serialVersionUID = 1L; - - @Id - @Column(name = "WIDGET_ID") - public Long id; - - @Column(name = "WDG_NAME") - public String name; - - @Column(name = "APP_ID") - public Long appId; - - @Column(name = "APP_NAME") - public String appName; - - @Column(name = "WDG_WIDTH") - public Integer width; - - @Column(name = "WDG_HEIGHT") - public Integer height; - - @Column(name = "WDG_URL") - public String url; - - public void normalize() { - this.name = (this.name == null) ? "" : this.name.trim(); - this.appName = (this.appName == null) ? "" : this.appName.trim(); - if (this.width == null) - this.width = new Integer(0); - if (this.height == null) - this.height = new Integer(0); - this.url = (this.url == null) ? "" : this.url.trim(); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; + +@Entity +public class OnboardingWidget implements Serializable { + + private static final long serialVersionUID = 1L; + + @Id + @Column(name = "WIDGET_ID") + public Long id; + + @Column(name = "WDG_NAME") + public String name; + + @Column(name = "APP_ID") + public Long appId; + + @Column(name = "APP_NAME") + public String appName; + + @Column(name = "WDG_WIDTH") + public Integer width; + + @Column(name = "WDG_HEIGHT") + public Integer height; + + @Column(name = "WDG_URL") + public String url; + + public void normalize() { + this.name = (this.name == null) ? "" : this.name.trim(); + this.appName = (this.appName == null) ? "" : this.appName.trim(); + if (this.width == null) + this.width = new Integer(0); + if (this.height == null) + this.height = new Integer(0); + this.url = (this.url == null) ? "" : this.url.trim(); + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/PortalAdmin.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/PortalAdmin.java index 0481eb61..294b859d 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/PortalAdmin.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/PortalAdmin.java @@ -1,53 +1,85 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.GeneratedValue; -import javax.persistence.GenerationType; -import javax.persistence.Id; -import javax.persistence.Table; - -/** - * This is to handle portal admins - */ -@Entity -@Table(name="fn_user") -public class PortalAdmin implements Serializable{ - private static final long serialVersionUID = 1L; - - @Id - @GeneratedValue(strategy=GenerationType.IDENTITY) - @Column(name = "user_id") - public Long userId; - - @Column(name = "login_id") - public String loginId; - - @Column(name = "first_name") - public String firstName; - - @Column(name = "last_name") - public String lastName; - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.Table; + +/** + * This is to handle portal admins + */ +@Entity +@Table(name = "fn_user") +public class PortalAdmin implements Serializable { + private static final long serialVersionUID = 1L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + @Column(name = "user_id") + public Long userId; + + @Column(name = "login_id") + public String loginId; + + @Column(name = "first_name") + public String firstName; + + @Column(name = "last_name") + public String lastName; + + public Long getUserId() { + return userId; + } + + public void setUserId(Long userId) { + this.userId = userId; + } + + public String getLoginId() { + return loginId; + } + + public void setLoginId(String loginId) { + this.loginId = loginId; + } + + public String getFirstName() { + return firstName; + } + + public void setFirstName(String firstName) { + this.firstName = firstName; + } + + public String getLastName() { + return lastName; + } + + public void setLastName(String lastName) { + this.lastName = lastName; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/PortalAdminUserRole.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/PortalAdminUserRole.java index 06229fc1..17306adc 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/PortalAdminUserRole.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/PortalAdminUserRole.java @@ -1,48 +1,48 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.io.Serializable; - -import javax.persistence.Column; -import javax.persistence.Entity; -import javax.persistence.Id; -import javax.persistence.Table; - -/** - * This is to handle portal admins - */ -@Entity -@Table(name="fn_user_role") -public class PortalAdminUserRole implements Serializable{ - private static final long serialVersionUID = 1L; - - @Id - @Column(name = "user_id") - public Long userId; - - @Id - @Column(name = "role_id") - public Long roleId; - - @Column(name = "app_id") - public Long appId; - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.io.Serializable; + +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.Id; +import javax.persistence.Table; + +/** + * This is to handle portal admins + */ +@Entity +@Table(name="fn_user_role") +public class PortalAdminUserRole implements Serializable{ + private static final long serialVersionUID = 1L; + + @Id + @Column(name = "user_id") + public Long userId; + + @Id + @Column(name = "role_id") + public Long roleId; + + @Column(name = "app_id") + public Long appId; + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/ProfileDetail.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/ProfileDetail.java new file mode 100644 index 00000000..11c0bada --- /dev/null +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/ProfileDetail.java @@ -0,0 +1,60 @@ +package org.openecomp.portalapp.portal.transport; + +public class ProfileDetail { + + private String firstName; + private String lastName; + private String middleName; + private String email; + private String loginId; + private String loginPassword; + + public ProfileDetail(){} + public ProfileDetail(String firstName, String lastName, String middleName, String email, String loginId, String loginPassword) { + this.firstName = firstName; + this.lastName = lastName; + this.middleName = middleName; + this.email = email; + this.loginId = loginId; + this.loginPassword = loginPassword; + } + + public String getFirstName() { + return firstName; + } + public void setFirstName(String firstName) { + this.firstName = firstName; + } + public String getLastName() { + return lastName; + } + public void setLastName(String lastName) { + this.lastName = lastName; + } + public String getMiddleName() { + return middleName; + } + public void setMiddleName(String middleName) { + this.middleName = middleName; + } + public String getEmail() { + return email; + } + public void setEmail(String email) { + this.email = email; + } + public String getLoginId() { + return loginId; + } + public void setLoginId(String loginId) { + this.loginId = loginId; + } + public String getLoginPassword() { + return loginPassword; + } + public void setLoginPassword(String loginPassword) { + this.loginPassword = loginPassword; + } + + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RemoteRole.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RemoteRole.java index 0f152772..8a2d6232 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RemoteRole.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RemoteRole.java @@ -1,44 +1,44 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -public class RemoteRole { - - private Long id; - private String name; - - public Long getId() { - return id; - } - public void setId(Long id) { - this.id = id; - } - public String getName() { - return name; - } - public void setName(String name) { - this.name = name; - } - - @Override - public String toString() { - return "RemoteRole [id=" + id + ", name=" + name + "]"; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +public class RemoteRole { + + private Long id; + private String name; + + public Long getId() { + return id; + } + public void setId(Long id) { + this.id = id; + } + public String getName() { + return name; + } + public void setName(String name) { + this.name = name; + } + + @Override + public String toString() { + return "RemoteRole [id=" + id + ", name=" + name + "]"; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RoleInAppForUser.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RoleInAppForUser.java index dad1c98b..27a34619 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RoleInAppForUser.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RoleInAppForUser.java @@ -1,105 +1,105 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -public class RoleInAppForUser { - - - public RoleInAppForUser() { - } - - public RoleInAppForUser(Long id, String name) { - this.roleId = id; - this.roleName = name; - } - - public Long roleId; - - public String roleName; - - public Boolean isApplied; - - public Long getRoleId() { - return roleId; - } - - public void setRoleId(Long roleId) { - this.roleId = roleId; - } - - public String getRoleName() { - return roleName; - } - - public void setRoleName(String roleName) { - this.roleName = roleName; - } - - public Boolean getIsApplied() { - return isApplied; - } - - public void setIsApplied(Boolean isApplied) { - this.isApplied = isApplied; - } - - @Override - public String toString() { - return "RoleInAppForUser [roleId=" + roleId + ", roleName=" + roleName + ", isApplied=" + isApplied + "]"; - } - - @Override - public int hashCode() { - final int prime = 31; - int result = 1; - result = prime * result + ((isApplied == null) ? 0 : isApplied.hashCode()); - result = prime * result + ((roleId == null) ? 0 : roleId.hashCode()); - result = prime * result + ((roleName == null) ? 0 : roleName.hashCode()); - return result; - } - - @Override - public boolean equals(Object obj) { - if (this == obj) - return true; - if (obj == null) - return false; - if (getClass() != obj.getClass()) - return false; - RoleInAppForUser other = (RoleInAppForUser) obj; - if (isApplied == null) { - if (other.isApplied != null) - return false; - } else if (!isApplied.equals(other.isApplied)) - return false; - if (roleId == null) { - if (other.roleId != null) - return false; - } else if (!roleId.equals(other.roleId)) - return false; - if (roleName == null) { - if (other.roleName != null) - return false; - } else if (!roleName.equals(other.roleName)) - return false; - return true; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +public class RoleInAppForUser { + + + public RoleInAppForUser() { + } + + public RoleInAppForUser(Long id, String name) { + this.roleId = id; + this.roleName = name; + } + + public Long roleId; + + public String roleName; + + public Boolean isApplied; + + public Long getRoleId() { + return roleId; + } + + public void setRoleId(Long roleId) { + this.roleId = roleId; + } + + public String getRoleName() { + return roleName; + } + + public void setRoleName(String roleName) { + this.roleName = roleName; + } + + public Boolean getIsApplied() { + return isApplied; + } + + public void setIsApplied(Boolean isApplied) { + this.isApplied = isApplied; + } + + @Override + public String toString() { + return "RoleInAppForUser [roleId=" + roleId + ", roleName=" + roleName + ", isApplied=" + isApplied + "]"; + } + + @Override + public int hashCode() { + final int prime = 31; + int result = 1; + result = prime * result + ((isApplied == null) ? 0 : isApplied.hashCode()); + result = prime * result + ((roleId == null) ? 0 : roleId.hashCode()); + result = prime * result + ((roleName == null) ? 0 : roleName.hashCode()); + return result; + } + + @Override + public boolean equals(Object obj) { + if (this == obj) + return true; + if (obj == null) + return false; + if (getClass() != obj.getClass()) + return false; + RoleInAppForUser other = (RoleInAppForUser) obj; + if (isApplied == null) { + if (other.isApplied != null) + return false; + } else if (!isApplied.equals(other.isApplied)) + return false; + if (roleId == null) { + if (other.roleId != null) + return false; + } else if (!roleId.equals(other.roleId)) + return false; + if (roleName == null) { + if (other.roleName != null) + return false; + } else if (!roleName.equals(other.roleName)) + return false; + return true; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RolesInAppForUser.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RolesInAppForUser.java index 8720304d..2b3b451a 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RolesInAppForUser.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/RolesInAppForUser.java @@ -1,33 +1,33 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -import java.util.ArrayList; -import java.util.List; - -public class RolesInAppForUser { - - public String orgUserId; - - public Long appId; - - public List roles = new ArrayList(); - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +import java.util.ArrayList; +import java.util.List; + +public class RolesInAppForUser { + + public String orgUserId; + + public Long appId; + + public List roles = new ArrayList(); + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/WidgetCatalogPersonalization.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/WidgetCatalogPersonalization.java index 5117e8f2..0674e446 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/WidgetCatalogPersonalization.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/transport/WidgetCatalogPersonalization.java @@ -1,57 +1,57 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.transport; - -/** - * Model for the object PUT to the controller when the user takes an action on - * a widget in the catalog. - */ - -public class WidgetCatalogPersonalization { - - public Long widgetId; - public Boolean select; - // not needed as only 'SHOW' and 'HIDE' status_cd is expected from the micro service now - //public Boolean pending; - - public Long getWidgetId() { - return widgetId; - } - - public void setWidgetId(Long widgetId) { - this.widgetId = widgetId; - } - - public Boolean getSelect() { - return select; - } - - public void setSelect(Boolean select) { - this.select = select; - } - - /*public Boolean getPending() { - return pending; - } - - public void setPending(Boolean pending) { - this.pending = pending; - }*/ -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.transport; + +/** + * Model for the object PUT to the controller when the user takes an action on + * a widget in the catalog. + */ + +public class WidgetCatalogPersonalization { + + public Long widgetId; + public Boolean select; + // not needed as only 'SHOW' and 'HIDE' status_cd is expected from the micro service now + //public Boolean pending; + + public Long getWidgetId() { + return widgetId; + } + + public void setWidgetId(Long widgetId) { + this.widgetId = widgetId; + } + + public Boolean getSelect() { + return select; + } + + public void setSelect(Boolean select) { + this.select = select; + } + + /*public Boolean getPending() { + return pending; + } + + public void setPending(Boolean pending) { + this.pending = pending; + }*/ +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ueb/EPUebHelper.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ueb/EPUebHelper.java index 3c447e2a..34be46e3 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ueb/EPUebHelper.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ueb/EPUebHelper.java @@ -1,217 +1,217 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.ueb; - -import java.net.HttpURLConnection; -import java.net.URL; -import java.util.LinkedList; -import java.util.List; - -import javax.annotation.PostConstruct; - -import org.hibernate.Session; -import org.hibernate.SessionFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Component; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.onboarding.util.PortalApiConstants; -import org.openecomp.portalsdk.core.onboarding.util.PortalApiProperties; -import org.openecomp.portalsdk.core.onboarding.ueb.Helper; -import org.openecomp.portalsdk.core.onboarding.ueb.Publisher; -import org.openecomp.portalsdk.core.onboarding.ueb.UebException; -import org.openecomp.portalsdk.core.onboarding.ueb.UebManager; -import org.openecomp.portalsdk.core.onboarding.ueb.UebMsg; -import org.openecomp.portalapp.portal.domain.EPApp; -import org.openecomp.portalapp.portal.domain.EcompApp; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.service.EPAppService; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; - -@Component -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -public class EPUebHelper { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPUebHelper.class); - - @Autowired - EPAppService appsService; - - - @Autowired - private SessionFactory sessionFactory; - - @SuppressWarnings("unused") - private Publisher epPublisher; - - public EPUebHelper() { - - } - // - // This should only be called by the ECOMP Portal App, other Apps have just one publisher and use appPublisher - // - @SuppressWarnings("unused") - @EPMetricsLog - public void refreshPublisherList() - { - Session localSession = null; - boolean addedPublisher = false; - - try { - localSession = sessionFactory.openSession(); - - List apps = appsService.getEcompAppAppsFullList(); - for (int i = 0; i < apps.size(); i++) - { - if ((apps.get(i).isEnabled()) && - (apps.get(i).getUebTopicName() != null) && - !(apps.get(i).getUebTopicName().toUpperCase().contains("ECOMP-PORTAL-INBOX"))) - { - logger.debug(EELFLoggerDelegate.debugLogger, "UEBManager adding publisher for " + apps.get(i).getUebTopicName()); - UebManager.getInstance().addPublisher(apps.get(i).getUebTopicName()); - addedPublisher = true; - } - else if ((apps.get(i).getId() != 1) && // App may have been disabled, remove the publisher - !(apps.get(i).isEnabled())) - { - if(apps.get(i).getUebTopicName()!=null){ - UebManager.getInstance().removePublisher(apps.get(i).getUebTopicName()); - } - } - } - } - catch (Exception e) - { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebSystemError, e, "add/remove Publisher"); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while refreshing the publisher list", e); - } - - //publisherList.print(); - - if (addedPublisher == true) // Give publishers time to initialize - { - Helper.sleep(400); - } - } - - @PostConstruct - @EPMetricsLog - public void initUeb() { - try { - epPublisher = new Publisher(PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), - PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), - PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME)); - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebConnectionError, e); - String stackTrace = EcompPortalUtils.getStackTrace(e); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while initializing the publisher. Details: " + stackTrace); - } - - Thread thread = new Thread("EPUebManager: postConstructMethod - refreshPublisherList") { - public void run(){ - refreshPublisherList(); - } - }; - if (thread != null) { - thread.start(); - } - } - - @EPMetricsLog - public void addPublisher(EPApp app) { - // TODO Auto-generated method stub - try { - UebManager.getInstance().addPublisher(app.getUebTopicName()); - } catch (UebException e) { - String stackTrace = EcompPortalUtils.getStackTrace(e); - logger.error(EELFLoggerDelegate.errorLogger, "Exception while adding a publisher. Details: " + stackTrace); - } - } - - public boolean checkAvailability() { - - // - // Test existence of topic at UEB url - // - // (ie http://uebsb91kcdc.it.att.com:3904/topics/ECOMP-PORTAL-INBOX) - // - boolean available = true; - LinkedList urlList = Helper.uebUrlList(); - if (!urlList.isEmpty()) { - String url = "http://" + urlList.getFirst() + ":3904/topics/" + PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME); - if (!url.isEmpty()) { - try { - URL siteURL = new URL(url); - HttpURLConnection connection = (HttpURLConnection) siteURL.openConnection(); - connection.setRequestMethod("GET"); - connection.connect(); - - int code = connection.getResponseCode(); - if (code == 200) { - available = true; - } - else { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebConnectionError, url); - available = false; - logger.warn(EELFLoggerDelegate.errorLogger, "Warning! UEB topic existence check failed, topic = " + url ); - logger.debug(EELFLoggerDelegate.debugLogger, "Warning! UEB topic existence check failed, topic = " + url ); - } - } - catch (Exception e) { - available = false; - String stackTrace = EcompPortalUtils.getStackTrace(e); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing the UEB Healthcheck. Details: " + stackTrace); - } - } - } - return available; - } - - public boolean MessageCanBeSentToTopic() { - - boolean sentMsgSuccessfully = false; - - UebMsg msg = new UebMsg(); - msg.putSourceTopicName(PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME)); - msg.putPayload("Pinging topic for health check"); - msg.putMsgType(EPUebMsgTypes.UEB_MSG_TYPE_HEALTH_CHECK); - - try { - // epPublisher.send(msg); - sentMsgSuccessfully = true; - } - catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckUebClusterError, e); - sentMsgSuccessfully = false; - logger.warn(EELFLoggerDelegate.errorLogger, "Warning! could not successfully publish a UEB msg to " - + PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME), e); - } - - return sentMsgSuccessfully; - } - -} - - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.ueb; + +import java.net.HttpURLConnection; +import java.net.URL; +import java.util.LinkedList; +import java.util.List; + +import javax.annotation.PostConstruct; + +import org.hibernate.Session; +import org.hibernate.SessionFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Component; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.onboarding.util.PortalApiConstants; +import org.openecomp.portalsdk.core.onboarding.util.PortalApiProperties; +import org.openecomp.portalsdk.core.onboarding.ueb.Helper; +import org.openecomp.portalsdk.core.onboarding.ueb.Publisher; +import org.openecomp.portalsdk.core.onboarding.ueb.UebException; +import org.openecomp.portalsdk.core.onboarding.ueb.UebManager; +import org.openecomp.portalsdk.core.onboarding.ueb.UebMsg; +import org.openecomp.portalapp.portal.domain.EPApp; +import org.openecomp.portalapp.portal.domain.EcompApp; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; +import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalapp.portal.service.EPAppService; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; + +@Component +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +public class EPUebHelper { + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPUebHelper.class); + + @Autowired + EPAppService appsService; + + + @Autowired + private SessionFactory sessionFactory; + + @SuppressWarnings("unused") + private Publisher epPublisher; + + public EPUebHelper() { + + } + // + // This should only be called by the ECOMP Portal App, other Apps have just one publisher and use appPublisher + // + @SuppressWarnings("unused") + @EPMetricsLog + public void refreshPublisherList() + { + Session localSession = null; + boolean addedPublisher = false; + + try { + localSession = sessionFactory.openSession(); + + List apps = appsService.getEcompAppAppsFullList(); + for (int i = 0; i < apps.size(); i++) + { + if ((apps.get(i).isEnabled()) && + (apps.get(i).getUebTopicName() != null) && + !(apps.get(i).getUebTopicName().toUpperCase().contains("ECOMP-PORTAL-INBOX"))) + { + logger.debug(EELFLoggerDelegate.debugLogger, "UEBManager adding publisher for " + apps.get(i).getUebTopicName()); + UebManager.getInstance().addPublisher(apps.get(i).getUebTopicName()); + addedPublisher = true; + } + else if ((apps.get(i).getId() != 1) && // App may have been disabled, remove the publisher + !(apps.get(i).isEnabled())) + { + if(apps.get(i).getUebTopicName()!=null){ + UebManager.getInstance().removePublisher(apps.get(i).getUebTopicName()); + } + } + } + } + catch (Exception e) + { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebSystemError, e, "add/remove Publisher"); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while refreshing the publisher list", e); + } + + //publisherList.print(); + + if (addedPublisher == true) // Give publishers time to initialize + { + Helper.sleep(400); + } + } + + @PostConstruct + @EPMetricsLog + public void initUeb() { + try { + epPublisher = new Publisher(PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_KEY), + PortalApiProperties.getProperty(PortalApiConstants.UEB_APP_SECRET), + PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME)); + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebConnectionError, e); + String stackTrace = EcompPortalUtils.getStackTrace(e); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while initializing the publisher. Details: " + stackTrace); + } + + Thread thread = new Thread("EPUebManager: postConstructMethod - refreshPublisherList") { + public void run(){ + refreshPublisherList(); + } + }; + if (thread != null) { + thread.start(); + } + } + + @EPMetricsLog + public void addPublisher(EPApp app) { + // TODO Auto-generated method stub + try { + UebManager.getInstance().addPublisher(app.getUebTopicName()); + } catch (UebException e) { + String stackTrace = EcompPortalUtils.getStackTrace(e); + logger.error(EELFLoggerDelegate.errorLogger, "Exception while adding a publisher. Details: " + stackTrace); + } + } + + public boolean checkAvailability() { + + // + // Test existence of topic at UEB url + // + // (ie http://uebsb91kcdc.it.att.com:3904/topics/ECOMP-PORTAL-INBOX) + // + boolean available = true; + LinkedList urlList = Helper.uebUrlList(); + if (!urlList.isEmpty()) { + String url = "http://" + urlList.getFirst() + ":3904/topics/" + PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME); + if (!url.isEmpty()) { + try { + URL siteURL = new URL(url); + HttpURLConnection connection = (HttpURLConnection) siteURL.openConnection(); + connection.setRequestMethod("GET"); + connection.connect(); + + int code = connection.getResponseCode(); + if (code == 200) { + available = true; + } + else { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeUebConnectionError, url); + available = false; + logger.warn(EELFLoggerDelegate.errorLogger, "Warning! UEB topic existence check failed, topic = " + url ); + logger.debug(EELFLoggerDelegate.debugLogger, "Warning! UEB topic existence check failed, topic = " + url ); + } + } + catch (Exception e) { + available = false; + String stackTrace = EcompPortalUtils.getStackTrace(e); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing the UEB Healthcheck. Details: " + stackTrace); + } + } + } + return available; + } + + public boolean MessageCanBeSentToTopic() { + + boolean sentMsgSuccessfully = false; + + UebMsg msg = new UebMsg(); + msg.putSourceTopicName(PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME)); + msg.putPayload("Pinging topic for health check"); + msg.putMsgType(EPUebMsgTypes.UEB_MSG_TYPE_HEALTH_CHECK); + + try { + // epPublisher.send(msg); + sentMsgSuccessfully = true; + } + catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeHealthCheckUebClusterError, e); + sentMsgSuccessfully = false; + logger.warn(EELFLoggerDelegate.errorLogger, "Warning! could not successfully publish a UEB msg to " + + PortalApiProperties.getProperty(PortalApiConstants.ECOMP_PORTAL_INBOX_NAME), e); + } + + return sentMsgSuccessfully; + } + +} + + diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ueb/EPUebMsgTypes.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ueb/EPUebMsgTypes.java index aef02545..d6eb9eb9 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ueb/EPUebMsgTypes.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/ueb/EPUebMsgTypes.java @@ -1,27 +1,27 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.ueb; - -import org.openecomp.portalsdk.core.onboarding.ueb.UebMsgTypes; - -public interface EPUebMsgTypes extends UebMsgTypes { - - public static final String UEB_MSG_TYPE_HEALTH_CHECK = "uebHealthCheckPing"; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.ueb; + +import org.openecomp.portalsdk.core.onboarding.ueb.UebMsgTypes; + +public interface EPUebMsgTypes extends UebMsgTypes { + + public static final String UEB_MSG_TYPE_HEALTH_CHECK = "uebHealthCheckPing"; +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/CustomLoggingFilter.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/CustomLoggingFilter.java index a43f5177..ac019d5f 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/CustomLoggingFilter.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/CustomLoggingFilter.java @@ -1,54 +1,54 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.utils; - -import ch.qos.logback.classic.Level; -import ch.qos.logback.classic.spi.ILoggingEvent; -import ch.qos.logback.core.filter.Filter; -import ch.qos.logback.core.spi.FilterReply; - -/** - * Custom Filter class bind with logback.xml - * configuration file to strip out certain log messages - * coming out of special packages or classes. - * - */ -public class CustomLoggingFilter extends Filter { - - /** - * Custom Filter is added to strip out the continuous U-EB logging messages - * But make sure we log the ERROR & WARNING Level messages. - */ - @Override - public FilterReply decide(ILoggingEvent event) { - try { - if ((event.getLevel() != Level.ERROR || event.getLevel() != Level.WARN) && - (event.getThreadName().equalsIgnoreCase("UEBConsumerThread")) && - (event.getLoggerName().contains("org.openecomp.nsa") || event.getLoggerName().contains("org.apache.http")) - ) { - return FilterReply.DENY; - } else { - return FilterReply.NEUTRAL; - } - } catch(Exception e) { - return FilterReply.NEUTRAL; - } - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.utils; + +import ch.qos.logback.classic.Level; +import ch.qos.logback.classic.spi.ILoggingEvent; +import ch.qos.logback.core.filter.Filter; +import ch.qos.logback.core.spi.FilterReply; + +/** + * Custom Filter class bind with logback.xml + * configuration file to strip out certain log messages + * coming out of special packages or classes. + * + */ +public class CustomLoggingFilter extends Filter { + + /** + * Custom Filter is added to strip out the continuous U-EB logging messages + * But make sure we log the ERROR & WARNING Level messages. + */ + @Override + public FilterReply decide(ILoggingEvent event) { + try { + if ((event.getLevel() != Level.ERROR || event.getLevel() != Level.WARN) && + (event.getThreadName().equalsIgnoreCase("UEBConsumerThread")) && + (event.getLoggerName().contains("org.openecomp.nsa") || event.getLoggerName().contains("org.apache.http")) + ) { + return FilterReply.DENY; + } else { + return FilterReply.NEUTRAL; + } + } catch(Exception e) { + return FilterReply.NEUTRAL; + } + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EPCommonSystemProperties.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EPCommonSystemProperties.java index 38b6608a..8ef4593f 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EPCommonSystemProperties.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EPCommonSystemProperties.java @@ -61,4 +61,5 @@ public class EPCommonSystemProperties extends SystemProperties { public static final String AUTH_USER_SERVER = "auth_user_server"; public static final String EXTERNAL_ACCESS_ENABLE = "external_access_enable"; + } \ No newline at end of file diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EcompPortalUtils.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EcompPortalUtils.java index adf36b2b..48c2dbe8 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EcompPortalUtils.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EcompPortalUtils.java @@ -1,331 +1,344 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.utils; - -import java.io.PrintWriter; -import java.io.StringWriter; -import java.net.InetAddress; -import java.net.UnknownHostException; -import java.text.SimpleDateFormat; -import java.util.ArrayList; -import java.util.Date; -import java.util.List; - -import javax.servlet.http.HttpServletResponse; - -import org.hibernate.Session; -import org.hibernate.Transaction; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.slf4j.MDC; - -import com.fasterxml.jackson.core.JsonProcessingException; -import com.fasterxml.jackson.databind.ObjectMapper; - -public class EcompPortalUtils { - - private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EcompPortalUtils.class); - - /** - * @param orgUserId - * @return true if orgUserId is not empty and contains only alphanumeric, - * false otherwise - */ - public static boolean legitimateUserId(String orgUserId) { - return orgUserId.matches("^[a-zA-Z0-9]+$"); - } - - /** - * Splits the string into a list of tokens using the specified regular - * expression - * - * @param source - * @param regex - * @return List of tokens split from the source - */ - public static List parsingByRegularExpression(String source, String regex) { - List tokens = new ArrayList(); - if (source != null && source.length() > 0) { - String[] parsed = source.split(regex); - for (String token : parsed) { - if (token.length() > 0) { - tokens.add(token); - } - } - } - return tokens; - } - - /** - * Builds a JSON object with error code and message information. - * - * @param errorCode - * @param errorMessage - * @return JSON object as a String - */ - public static String jsonErrorMessageResponse(int errorCode, String errorMessage) { - return "{\"error\":{\"code\":" + errorCode + "," + "\"message\":\"" + errorMessage + "\"}}"; - } - - /** - * Builds a JSON object with the specified message - * - * @param message - * @return JSON object as a String - */ - public static String jsonMessageResponse(String message) { - return String.format("{\"message\":\"%s\"}", message); - } - - /** - * Serializes the specified object as JSON and writes the result to the - * debug log. If serialization fails, logs a message to the error logger. - * - * @param logger - * Logger for the class where the object was built; the logger - * carries the class name. - * @param source - * First portion of the log message - * @param msg - * Second portion of the log message - * @param obj - * Object to serialize as JSON - */ - public static void logAndSerializeObject(EELFLoggerDelegate logger, String source, String msg, Object obj) { - try { - String objectAsJson = new ObjectMapper().writeValueAsString(obj); - logger.debug(EELFLoggerDelegate.debugLogger, - String.format("source= [%s]; %s [%s];", source, msg, objectAsJson)); - } catch (JsonProcessingException e) { - logger.warn(EELFLoggerDelegate.errorLogger, "logAndSerializedObject failed to serialize", e); - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeInvalidJsonInput, e); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "logAndSerializedObject failed", e); - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeInvalidJsonInput, e); - } - } - - /** - * Serializes the specified object as JSON and writes the result to the - * debug log. If serialization fails, logs a message to the error logger. - * - * @param source - * First portion of the log message - * @param msg - * Second portion of the log message - * @param obj - * Object to serialize as JSON - */ - public static void logAndSerializeObject(String source, String msg, Object obj) { - logAndSerializeObject(logger, source, msg, obj); - } - - public static void rollbackTransaction(Transaction transaction, String errorMessage) { - logger.error(EELFLoggerDelegate.errorLogger, errorMessage); - try { - if (transaction != null) { - transaction.rollback(); - } - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeExecuteRollbackError, e); - logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing a rollback transaction", - e); - } - } - - public static void closeLocalSession(Session localSession, String errorMessage) { - logger.error(EELFLoggerDelegate.errorLogger, errorMessage); - try { - if (localSession != null) { - localSession.close(); - } - } catch (Exception e) { - EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoCloseSessionError, e); - logger.error(EELFLoggerDelegate.errorLogger, errorMessage + ", closeLocalSession exception", e); - } - } - - // TODO: GLOBAL_LOGIN_URL is the same as in SessionTimeoutInterceptor. - // It should be defined in SystemProperties. - private static final String GLOBAL_LOGIN_URL = "global-login-url"; - - /** - * Set response status to Unauthorized if user == null and to Forbidden in - * all (!) other cases. Logging is not performed if invocator == null - * - * @param user - * @param response - * @param invocator - * - may be null - */ - public static void setBadPermissions(EPUser user, HttpServletResponse response, String invocator) { - if (user == null) { - String loginUrl = SystemProperties.getProperty(EPCommonSystemProperties.LOGIN_URL_NO_RET_VAL); - response.setHeader(GLOBAL_LOGIN_URL, loginUrl); - response.setStatus(HttpServletResponse.SC_UNAUTHORIZED); - MDC.put(EPCommonSystemProperties.RESPONSE_CODE, Integer.toString(HttpServletResponse.SC_UNAUTHORIZED)); - } else { - response.setStatus(HttpServletResponse.SC_FORBIDDEN); - MDC.put(EPCommonSystemProperties.RESPONSE_CODE, Integer.toString(HttpServletResponse.SC_FORBIDDEN)); - } - if (invocator != null) { - logger.warn(EELFLoggerDelegate.errorLogger, - invocator + ", permissions problem, response status = " + response.getStatus()); - } - } - - public static int getExternalAppResponseCode() { - String responseCode = MDC.get(EPCommonSystemProperties.EXTERNAL_API_RESPONSE_CODE); - int responseCodeInt = 0; - try { - if (responseCode != null && responseCode != "") { - responseCodeInt = Integer.valueOf(responseCode); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred in getResponseCode(). Details: " + EcompPortalUtils.getStackTrace(e)); - } - return responseCodeInt; - } - - // This method might be just for testing purposes. - public static void setExternalAppResponseCode(int responseCode) { - try { - String responseCodeString = String.valueOf(responseCode); - MDC.put(EPCommonSystemProperties.EXTERNAL_API_RESPONSE_CODE, responseCodeString); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred in setResponseCode(). Details: " + EcompPortalUtils.getStackTrace(e)); - } - } - - public static String getHTTPStatusString(int httpStatusCode) { - String httpStatusString = "unknown_error"; - try { - httpStatusString = org.springframework.http.HttpStatus.valueOf(httpStatusCode).name(); - if (httpStatusString != null) { - httpStatusString = httpStatusString.toLowerCase(); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred in getHTTPStatusString(). Details: " + EcompPortalUtils.getStackTrace(e)); - } - return httpStatusString; - } - - public static String getFEErrorString(Boolean internal, int responseCode) { - // Return a String like the following: - // "Internal Ecomp Error: 500 internal_server_error" or - // "External App Error: 404 not_found" - // TODO: create our own Ecomp error codes, starting with 1000 and up. - String responseString = ""; - String internalExternalString = internal ? "Ecomp Error: " : "App Error: "; - String httpStatusString = "unknown_error"; - try { - if (responseCode < 1000) { - httpStatusString = getHTTPStatusString(responseCode); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "Exception occurred in getFEErrorString(). Details: " + EcompPortalUtils.getStackTrace(e)); - } - responseString = internalExternalString + responseCode + " " + httpStatusString; - return responseString; - } - - public static boolean isProductionBuild() { - boolean productionBuild = true; - String epVersion = EcompVersion.buildNumber; - if (epVersion != null) { - int buildNum = epVersion.lastIndexOf('.'); - if (buildNum > 0) { - int buildNumber = Integer.parseInt(epVersion.substring(buildNum + 1)); - if (buildNumber < 3000) // Production versions are 3000+, (ie - // 1.0.3003) - { - productionBuild = false; - } - } - } - return productionBuild; - } - - private static final Object stackTraceLock = new Object(); - - public static String getStackTrace(Throwable t) { - synchronized (stackTraceLock) { - StringWriter sw = new StringWriter(); - PrintWriter pw = new PrintWriter(sw); - t.printStackTrace(pw); - return sw.toString(); - } - } - - public static String getMyIpAdddress() { - InetAddress ip; - String localIp; - try { - ip = InetAddress.getLocalHost(); - localIp = ip.getHostAddress(); - } catch (UnknownHostException e) { - localIp = "unknown"; - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } - return localIp; - } - - public static String getMyHostName() { - InetAddress ip; - String hostName; - try { - ip = InetAddress.getLocalHost(); - hostName = ip.getHostName(); - } catch (UnknownHostException e) { - hostName = "unknown"; - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } - return hostName; - } - - /* return a default property if the expected one is not available */ - public static String getPropertyOrDefault(String property, String defaultValue) { - return ((null == SystemProperties.getProperty(property) || SystemProperties.getProperty(property).equals("")) - ? defaultValue : SystemProperties.getProperty(property)); - } - - public static void calculateDateTimeDifferenceForLog(String beginDateTime, String endDateTime) { - if (beginDateTime != null && endDateTime != null) { - try { - SimpleDateFormat ecompLogDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX"); - - Date beginDate = ecompLogDateFormat.parse(beginDateTime); - Date endDate = ecompLogDateFormat.parse(endDateTime); - String timeDifference = String.format("%d", endDate.getTime() - beginDate.getTime()); - MDC.put(SystemProperties.MDC_TIMER, timeDifference); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } - } - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.utils; + +import java.io.PrintWriter; +import java.io.StringWriter; +import java.net.InetAddress; +import java.net.UnknownHostException; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +import javax.servlet.http.HttpServletResponse; + +import org.hibernate.Session; +import org.hibernate.Transaction; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; +import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.slf4j.MDC; + +import com.fasterxml.jackson.core.JsonProcessingException; +import com.fasterxml.jackson.databind.ObjectMapper; + +public class EcompPortalUtils { + + private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EcompPortalUtils.class); + + /** + * @param orgUserId + * @return true if orgUserId is not empty and contains only alphanumeric, + * false otherwise + */ + public static boolean legitimateUserId(String orgUserId) { + return orgUserId.matches("^[a-zA-Z0-9]+$"); + } + + /** + * Splits the string into a list of tokens using the specified regular + * expression + * + * @param source + * @param regex + * @return List of tokens split from the source + */ + public static List parsingByRegularExpression(String source, String regex) { + List tokens = new ArrayList(); + if (source != null && source.length() > 0) { + String[] parsed = source.split(regex); + for (String token : parsed) { + if (token.length() > 0) { + tokens.add(token); + } + } + } + return tokens; + } + + /** + * Builds a JSON object with error code and message information. + * + * @param errorCode + * @param errorMessage + * @return JSON object as a String + */ + public static String jsonErrorMessageResponse(int errorCode, String errorMessage) { + return "{\"error\":{\"code\":" + errorCode + "," + "\"message\":\"" + errorMessage + "\"}}"; + } + + /** + * Builds a JSON object with the specified message + * + * @param message + * @return JSON object as a String + */ + public static String jsonMessageResponse(String message) { + return String.format("{\"message\":\"%s\"}", message); + } + + /** + * Serializes the specified object as JSON and writes the result to the + * debug log. If serialization fails, logs a message to the error logger. + * + * @param logger + * Logger for the class where the object was built; the logger + * carries the class name. + * @param source + * First portion of the log message + * @param msg + * Second portion of the log message + * @param obj + * Object to serialize as JSON + */ + public static void logAndSerializeObject(EELFLoggerDelegate logger, String source, String msg, Object obj) { + try { + String objectAsJson = new ObjectMapper().writeValueAsString(obj); + logger.debug(EELFLoggerDelegate.debugLogger, + String.format("source= [%s]; %s [%s];", source, msg, objectAsJson)); + } catch (JsonProcessingException e) { + logger.warn(EELFLoggerDelegate.errorLogger, "logAndSerializedObject failed to serialize", e); + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeInvalidJsonInput, e); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "logAndSerializedObject failed", e); + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeInvalidJsonInput, e); + } + } + + /** + * Serializes the specified object as JSON and writes the result to the + * debug log. If serialization fails, logs a message to the error logger. + * + * @param source + * First portion of the log message + * @param msg + * Second portion of the log message + * @param obj + * Object to serialize as JSON + */ + public static void logAndSerializeObject(String source, String msg, Object obj) { + logAndSerializeObject(logger, source, msg, obj); + } + + public static void rollbackTransaction(Transaction transaction, String errorMessage) { + logger.error(EELFLoggerDelegate.errorLogger, errorMessage); + try { + if (transaction != null) { + transaction.rollback(); + } + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeExecuteRollbackError, e); + logger.error(EELFLoggerDelegate.errorLogger, "Exception occurred while performing a rollback transaction", + e); + } + } + + public static void closeLocalSession(Session localSession, String errorMessage) { + logger.error(EELFLoggerDelegate.errorLogger, errorMessage); + try { + if (localSession != null) { + localSession.close(); + } + } catch (Exception e) { + EPLogUtil.logEcompError(logger, EPAppMessagesEnum.BeDaoCloseSessionError, e); + logger.error(EELFLoggerDelegate.errorLogger, errorMessage + ", closeLocalSession exception", e); + } + } + + // TODO: GLOBAL_LOGIN_URL is the same as in SessionTimeoutInterceptor. + // It should be defined in SystemProperties. + private static final String GLOBAL_LOGIN_URL = "global-login-url"; + + /** + * Set response status to Unauthorized if user == null and to Forbidden in + * all (!) other cases. Logging is not performed if invocator == null + * + * @param user + * @param response + * @param invocator + * - may be null + */ + public static void setBadPermissions(EPUser user, HttpServletResponse response, String invocator) { + if (user == null) { + String loginUrl = SystemProperties.getProperty(EPCommonSystemProperties.LOGIN_URL_NO_RET_VAL); + response.setHeader(GLOBAL_LOGIN_URL, loginUrl); + response.setStatus(HttpServletResponse.SC_UNAUTHORIZED); + MDC.put(EPCommonSystemProperties.RESPONSE_CODE, Integer.toString(HttpServletResponse.SC_UNAUTHORIZED)); + } else { + response.setStatus(HttpServletResponse.SC_FORBIDDEN); + MDC.put(EPCommonSystemProperties.RESPONSE_CODE, Integer.toString(HttpServletResponse.SC_FORBIDDEN)); + } + if (invocator != null) { + logger.warn(EELFLoggerDelegate.errorLogger, + invocator + ", permissions problem, response status = " + response.getStatus()); + } + } + + public static int getExternalAppResponseCode() { + String responseCode = MDC.get(EPCommonSystemProperties.EXTERNAL_API_RESPONSE_CODE); + int responseCodeInt = 0; + try { + if (responseCode != null && responseCode != "") { + responseCodeInt = Integer.valueOf(responseCode); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred in getResponseCode(). Details: " + EcompPortalUtils.getStackTrace(e)); + } + return responseCodeInt; + } + + // This method might be just for testing purposes. + public static void setExternalAppResponseCode(int responseCode) { + try { + String responseCodeString = String.valueOf(responseCode); + MDC.put(EPCommonSystemProperties.EXTERNAL_API_RESPONSE_CODE, responseCodeString); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred in setResponseCode(). Details: " + EcompPortalUtils.getStackTrace(e)); + } + } + + public static String getHTTPStatusString(int httpStatusCode) { + String httpStatusString = "unknown_error"; + try { + httpStatusString = org.springframework.http.HttpStatus.valueOf(httpStatusCode).name(); + if (httpStatusString != null) { + httpStatusString = httpStatusString.toLowerCase(); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred in getHTTPStatusString(). Details: " + EcompPortalUtils.getStackTrace(e)); + } + return httpStatusString; + } + + public static String getFEErrorString(Boolean internal, int responseCode) { + // Return a String like the following: + // "Internal Ecomp Error: 500 internal_server_error" or + // "External App Error: 404 not_found" + // TODO: create our own Ecomp error codes, starting with 1000 and up. + String responseString = ""; + String internalExternalString = internal ? "Ecomp Error: " : "App Error: "; + String httpStatusString = "unknown_error"; + try { + if (responseCode < 1000) { + httpStatusString = getHTTPStatusString(responseCode); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, + "Exception occurred in getFEErrorString(). Details: " + EcompPortalUtils.getStackTrace(e)); + } + responseString = internalExternalString + responseCode + " " + httpStatusString; + return responseString; + } + + public static boolean isProductionBuild() { + boolean productionBuild = true; + String epVersion = EcompVersion.buildNumber; + if (epVersion != null) { + int buildNum = epVersion.lastIndexOf('.'); + if (buildNum > 0) { + int buildNumber = Integer.parseInt(epVersion.substring(buildNum + 1)); + if (buildNumber < 3000) // Production versions are 3000+, (ie + // 1.0.3003) + { + productionBuild = false; + } + } + } + return productionBuild; + } + + private static final Object stackTraceLock = new Object(); + + public static String getStackTrace(Throwable t) { + synchronized (stackTraceLock) { + StringWriter sw = new StringWriter(); + PrintWriter pw = new PrintWriter(sw); + t.printStackTrace(pw); + return sw.toString(); + } + } + + public static String getMyIpAdddress() { + InetAddress ip; + String localIp; + try { + ip = InetAddress.getLocalHost(); + localIp = ip.getHostAddress(); + } catch (UnknownHostException e) { + localIp = "unknown"; + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } + return localIp; + } + + public static String getMyHostName() { + InetAddress ip; + String hostName; + try { + ip = InetAddress.getLocalHost(); + hostName = ip.getHostName(); + } catch (UnknownHostException e) { + hostName = "unknown"; + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } + return hostName; + } + + /* return a default property if the expected one is not available */ + public static String getPropertyOrDefault(String property, String defaultValue) { + return ((null == SystemProperties.getProperty(property) || SystemProperties.getProperty(property).equals("")) + ? defaultValue : SystemProperties.getProperty(property)); + } + + /** + * Calculates the time duration of a function call for logging purpose. It + * stores the result by using "MDC.put(SystemProperties.MDC_TIMER, + * timeDifference);" It is important to call + * "MDC.remove(SystemProperties.MDC_TIMER);" after this method call to clean + * up the record in MDC + * + * @param beginDateTime + * the given begin time for the call + * @param endDateTime + * the given end time for the call + * + */ + public static void calculateDateTimeDifferenceForLog(String beginDateTime, String endDateTime) { + if (beginDateTime != null && endDateTime != null) { + try { + SimpleDateFormat ecompLogDateFormat = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSXXX"); + + Date beginDate = ecompLogDateFormat.parse(beginDateTime); + Date endDate = ecompLogDateFormat.parse(endDateTime); + String timeDifference = String.format("%d", endDate.getTime() - beginDate.getTime()); + MDC.put(SystemProperties.MDC_TIMER, timeDifference); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } + } + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EcompVersion.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EcompVersion.java index a4d5e0c1..8afde4ef 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EcompVersion.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/EcompVersion.java @@ -1,33 +1,33 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.utils; - -// -// Hardcoded for now, wanted to use maven and resource file. Possibly just read -// pom.properties file with version added, but spent several hours already running -// into issues with that and other ideas not working. So, for 1604 deadlines I -// am just putting the version in the code here... for now. -// -public final class EcompVersion { - - // TODO - not used - manifest service reads from manifest - public static final String buildNumber="1610.1.999"; - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.utils; + +// +// Hardcoded for now, wanted to use maven and resource file. Possibly just read +// pom.properties file with version added, but spent several hours already running +// into issues with that and other ideas not working. So, for 1604 deadlines I +// am just putting the version in the code here... for now. +// +public final class EcompVersion { + + // TODO - not used - manifest service reads from manifest + public static final String buildNumber="1610.1.999"; + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/HashMapFromList.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/HashMapFromList.java index 3a781af9..a953bf1e 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/HashMapFromList.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/HashMapFromList.java @@ -1,99 +1,99 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.utils; - -import java.lang.reflect.Field; -import java.lang.reflect.Method; -import java.util.HashMap; -import java.util.List; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; - -/** - * - * @author Vladimir Turovets This class is used to create HashMap - * from the list of T objects. We suppose that - * 1) T object contains field 'parmName' or getter 'getParmName()'. - * The value of object.parmName or object.getParmName() is used as - * a key in created hashMap. - * 2) for all objects in the list 'parmName' or getter - * 'getParmName().toString' has to be unique and not null. - * This class has one function only: - * HashMap hashMap(List list, String name) and returns - * hash map created from list. - * - * @param - */ -public class HashMapFromList { - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(HashMapFromList.class); - - public HashMap hashMap(List list, String name) { - HashMap result = new HashMap(); - if (list == null || list.size() == 0 || name == null) { - return result; - } - name = name.trim(); - if (name.length() > 0) { - T object = list.get(0); - try { - String parmName = name; - Field field = object.getClass().getField(parmName); - for (T obj : list) { - try { - Object o = field.get(obj); - if (o != null) - result.put(o.toString(), obj); - } catch (Exception e1) { - String stackTrace = EcompPortalUtils.getStackTrace(e1); - logger.error(EELFLoggerDelegate.errorLogger, "Object of class " + object.getClass().getName() + ", field " + parmName + ". Details: ", stackTrace); - return new HashMap(); - } - } - } catch (Exception e) { - String getterName = "get" + (name.length() == 1 ? name.toUpperCase() : (name.substring(0, 1).toUpperCase() + name.substring(1))); - try { - Class[] parmClasses = null; - Method method = object.getClass().getMethod(getterName, parmClasses); - Object[] parmValues = new Object[0]; - for (T obj : list) { - try { - Object o = method.invoke(obj, parmValues); - if (o != null) - result.put(o.toString(), obj); - } catch (Exception e2) { - String stackTrace = EcompPortalUtils.getStackTrace(e2); - logger.error(EELFLoggerDelegate.errorLogger, "Object of class " + object.getClass().getName() + ", method " + getterName + ". Details: ", stackTrace); - return new HashMap(); - } - } - } catch (Exception e3) { - String stackTrace = EcompPortalUtils.getStackTrace(e3); - logger.error(EELFLoggerDelegate.errorLogger, "Object of class " + object.getClass().getName() + ", bad field '" + name + "' or method '" + getterName + "()'. Details: " + stackTrace); - return new HashMap(); - } - } - } - if (list.size() != result.size()) { - logger.warn(EELFLoggerDelegate.errorLogger, "Duplicated or empty keys were found!!!"); - } - return result; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.utils; + +import java.lang.reflect.Field; +import java.lang.reflect.Method; +import java.util.HashMap; +import java.util.List; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; + +/** + * + * @author Vladimir Turovets This class is used to create HashMap + * from the list of T objects. We suppose that + * 1) T object contains field 'parmName' or getter 'getParmName()'. + * The value of object.parmName or object.getParmName() is used as + * a key in created hashMap. + * 2) for all objects in the list 'parmName' or getter + * 'getParmName().toString' has to be unique and not null. + * This class has one function only: + * HashMap hashMap(List list, String name) and returns + * hash map created from list. + * + * @param + */ +public class HashMapFromList { + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(HashMapFromList.class); + + public HashMap hashMap(List list, String name) { + HashMap result = new HashMap(); + if (list == null || list.size() == 0 || name == null) { + return result; + } + name = name.trim(); + if (name.length() > 0) { + T object = list.get(0); + try { + String parmName = name; + Field field = object.getClass().getField(parmName); + for (T obj : list) { + try { + Object o = field.get(obj); + if (o != null) + result.put(o.toString(), obj); + } catch (Exception e1) { + String stackTrace = EcompPortalUtils.getStackTrace(e1); + logger.error(EELFLoggerDelegate.errorLogger, "Object of class " + object.getClass().getName() + ", field " + parmName + ". Details: ", stackTrace); + return new HashMap(); + } + } + } catch (Exception e) { + String getterName = "get" + (name.length() == 1 ? name.toUpperCase() : (name.substring(0, 1).toUpperCase() + name.substring(1))); + try { + Class[] parmClasses = null; + Method method = object.getClass().getMethod(getterName, parmClasses); + Object[] parmValues = new Object[0]; + for (T obj : list) { + try { + Object o = method.invoke(obj, parmValues); + if (o != null) + result.put(o.toString(), obj); + } catch (Exception e2) { + String stackTrace = EcompPortalUtils.getStackTrace(e2); + logger.error(EELFLoggerDelegate.errorLogger, "Object of class " + object.getClass().getName() + ", method " + getterName + ". Details: ", stackTrace); + return new HashMap(); + } + } + } catch (Exception e3) { + String stackTrace = EcompPortalUtils.getStackTrace(e3); + logger.error(EELFLoggerDelegate.errorLogger, "Object of class " + object.getClass().getName() + ", bad field '" + name + "' or method '" + getterName + "()'. Details: " + stackTrace); + return new HashMap(); + } + } + } + if (list.size() != result.size()) { + logger.warn(EELFLoggerDelegate.errorLogger, "Duplicated or empty keys were found!!!"); + } + return result; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/ParallelExecutor.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/ParallelExecutor.java index 1ddb550d..0354798c 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/ParallelExecutor.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/ParallelExecutor.java @@ -1,83 +1,83 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.utils; - -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.Callable; -import java.util.concurrent.ExecutorService; -import java.util.concurrent.Executors; -import java.util.concurrent.Future; - -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; - -public abstract class ParallelExecutor { - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ParallelExecutor.class); - - protected static abstract class ThreadOperation { - public abstract T execute(List parms); - } - - protected abstract ThreadOperation getThreadOperation(); - - private static class CallableOperationThread implements Callable { - - List parms; - - private ThreadOperation operation; - - public CallableOperationThread(ThreadOperation operation, List parms) { - this.parms = parms; - this.operation = operation; - } - - @Override - public T call() throws Exception { - return this.operation.execute(this.parms); - } - - } - - public List performAllOperations(int ThreadPoolSize, List> listOfParms) { - List result = new ArrayList(); - if (ThreadPoolSize > 0 && listOfParms != null) { - ExecutorService executor = Executors.newFixedThreadPool(ThreadPoolSize); - List> list = new ArrayList>(); - for (List parms : listOfParms) { - CallableOperationThread getter = new CallableOperationThread(this.getThreadOperation(), parms); - Future submit = executor.submit(getter); - list.add(submit); - } - for (Future future : list) { - try { - if (future != null) { - result.add(future.get()); - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } - } - executor.shutdown(); - } - return result; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.utils; + +import java.util.ArrayList; +import java.util.List; +import java.util.concurrent.Callable; +import java.util.concurrent.ExecutorService; +import java.util.concurrent.Executors; +import java.util.concurrent.Future; + +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; + +public abstract class ParallelExecutor { + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ParallelExecutor.class); + + protected static abstract class ThreadOperation { + public abstract T execute(List parms); + } + + protected abstract ThreadOperation getThreadOperation(); + + private static class CallableOperationThread implements Callable { + + List parms; + + private ThreadOperation operation; + + public CallableOperationThread(ThreadOperation operation, List parms) { + this.parms = parms; + this.operation = operation; + } + + @Override + public T call() throws Exception { + return this.operation.execute(this.parms); + } + + } + + public List performAllOperations(int ThreadPoolSize, List> listOfParms) { + List result = new ArrayList(); + if (ThreadPoolSize > 0 && listOfParms != null) { + ExecutorService executor = Executors.newFixedThreadPool(ThreadPoolSize); + List> list = new ArrayList>(); + for (List parms : listOfParms) { + CallableOperationThread getter = new CallableOperationThread(this.getThreadOperation(), parms); + Future submit = executor.submit(getter); + list.add(submit); + } + for (Future future : list) { + try { + if (future != null) { + result.add(future.get()); + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); + } + } + executor.shutdown(); + } + return result; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/PortalConstants.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/PortalConstants.java index a0dc7d68..485a80f5 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/PortalConstants.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/portal/utils/PortalConstants.java @@ -1,26 +1,29 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.utils; - -public interface PortalConstants { - public static final Long PORTAL_APP_ID = 1L; - public static final Long DEFAULT_NOTIFICATION_CREATOR = 1L; - public static final String REST_AUX_API = "/auxapi"; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.utils; + +public interface PortalConstants { + public static final Long PORTAL_APP_ID = 1L; + public static final Long DEFAULT_NOTIFICATION_CREATOR = 1L; + public static final String REST_AUX_API = "/auxapi"; + public static final Long ACCOUNT_ADMIN_ROLE_ID = 999L; + public static final int SYS_ADMIN_ROLE_ID = 1; + public static final String ADMIN_ROLE = "Account Administrator"; +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/AdminAuthExtension.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/AdminAuthExtension.java index 3585f3a4..7ceca0e9 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/AdminAuthExtension.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/AdminAuthExtension.java @@ -1,36 +1,36 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.service; - -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalapp.portal.domain.EPUser; - - -@Service("adminAuthExtension") -@Transactional -public class AdminAuthExtension { - - public void saveUserExtension(EPUser user){ - //app's developer implement their own logic here, like updating app's related tables - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.service; + +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalapp.portal.domain.EPUser; + + +@Service("adminAuthExtension") +@Transactional +public class AdminAuthExtension { + + public void saveUserExtension(EPUser user){ + //app's developer implement their own logic here, like updating app's related tables + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileService.java index 0adde120..2ea5b582 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileService.java @@ -1,36 +1,36 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.service; - -import java.util.List; - -import org.openecomp.portalsdk.core.domain.Profile; -import org.openecomp.portalapp.portal.domain.EPUser; - - -public interface EPProfileService { - List findAll(); - - Profile getProfile(int id); - - EPUser getUser(String id); - - void saveUser(EPUser user); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.service; + +import java.util.List; + +import org.openecomp.portalsdk.core.domain.Profile; +import org.openecomp.portalapp.portal.domain.EPUser; + + +public interface EPProfileService { + List findAll(); + + Profile getProfile(int id); + + EPUser getUser(String id); + + void saveUser(EPUser user); +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileServiceImpl.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileServiceImpl.java index 27975971..ecd6a13c 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileServiceImpl.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/EPProfileServiceImpl.java @@ -1,77 +1,77 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.service; - -import java.util.List; - -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.EnableAspectJAutoProxy; -import org.springframework.stereotype.Service; -import org.springframework.transaction.annotation.Transactional; - -import org.openecomp.portalsdk.core.dao.ProfileDao; -import org.openecomp.portalsdk.core.domain.Profile; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; - -@Service("epProfileService") -@Transactional -@org.springframework.context.annotation.Configuration -@EnableAspectJAutoProxy -@EPMetricsLog -public class EPProfileServiceImpl implements EPProfileService { - - EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPProfileServiceImpl.class); - - @Autowired - private ProfileDao profileDao; - - @Autowired - private DataAccessService dataAccessService; - - @SuppressWarnings("unchecked") - public List findAll() { - // List msgDB = getDataAccessService().getList(Profile.class, null); - return getDataAccessService().getList(Profile.class, null); - } - - public EPUser getUser(String userId) { - return (EPUser) getDataAccessService().getDomainObject(EPUser.class, Long.parseLong(userId), null); - } - - public void saveUser(EPUser user) { - - getDataAccessService().saveDomainObject(user, null); - } - - public Profile getProfile(int id) { - return profileDao.getProfile(id); - } - - public DataAccessService getDataAccessService() { - return dataAccessService; - } - - public void setDataAccessService(DataAccessService dataAccessService) { - this.dataAccessService = dataAccessService; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.service; + +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.EnableAspectJAutoProxy; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import org.openecomp.portalsdk.core.dao.ProfileDao; +import org.openecomp.portalsdk.core.domain.Profile; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; + +@Service("epProfileService") +@Transactional +@org.springframework.context.annotation.Configuration +@EnableAspectJAutoProxy +@EPMetricsLog +public class EPProfileServiceImpl implements EPProfileService { + + EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPProfileServiceImpl.class); + + @Autowired + private ProfileDao profileDao; + + @Autowired + private DataAccessService dataAccessService; + + @SuppressWarnings("unchecked") + public List findAll() { + // List msgDB = getDataAccessService().getList(Profile.class, null); + return getDataAccessService().getList(Profile.class, null); + } + + public EPUser getUser(String userId) { + return (EPUser) getDataAccessService().getDomainObject(EPUser.class, Long.parseLong(userId), null); + } + + public void saveUser(EPUser user) { + + getDataAccessService().saveDomainObject(user, null); + } + + public Profile getProfile(int id) { + return profileDao.getProfile(id); + } + + public DataAccessService getDataAccessService() { + return dataAccessService; + } + + public void setDataAccessService(DataAccessService dataAccessService) { + this.dataAccessService = dataAccessService; + } +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/RemoteWebServiceCallService.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/RemoteWebServiceCallService.java index 71d9dd12..1fd36aee 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/RemoteWebServiceCallService.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/service/RemoteWebServiceCallService.java @@ -1,48 +1,54 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.service; - -public interface RemoteWebServiceCallService { - - /** - * Answers whether the specified credentials match application information - * in the database. - * - * @param secretKey - * Key used to decrypt passwords; ignored if null. - * @param requestUebKey - * UEB key that identifies the application - * @param requesUserName - * User name for the application - * @param requestPassword - * Password for the application - * @return True if the UEB key and the credentials match the database - * entries; else false. - * @throws Exception - * If decryption fails. - */ - public boolean verifyRESTCredential(String secretKey, String requestUebKey, String requestUserName, - String requestPassword) throws Exception; - - - - public boolean verifyAppKeyCredential(String requestUebKey) throws Exception; - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.service; + +public interface RemoteWebServiceCallService { + + /** + * Answers whether the specified credentials match application information + * in the database. + * + * @param secretKey + * Key used to decrypt passwords; ignored if null. + * @param requestUebKey + * UEB key that identifies the application + * @param requestUserName + * User name for the application + * @param requestPassword + * Password for the application + * @return True if the UEB key and the credentials match the database + * entries; else false. + * @throws Exception + * If decryption fails. + */ + public boolean verifyRESTCredential(String secretKey, String requestUebKey, String requestUserName, + String requestPassword) throws Exception; + + /** + * + * @param requestUebKey + * UEB key + * @return boolean + * @throws Exception + * on error + */ + public boolean verifyAppKeyCredential(String requestUebKey) throws Exception; + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/EPUserUtils.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/EPUserUtils.java index a14bbe81..7dcf0e95 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/EPUserUtils.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/EPUserUtils.java @@ -1,407 +1,407 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.util; - -import java.util.Enumeration; -import java.util.HashMap; -import java.util.HashSet; -import java.util.Iterator; -import java.util.List; -import java.util.Set; -import java.util.UUID; - -import javax.servlet.ServletContext; -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpSession; - -import org.openecomp.portalapp.portal.domain.EPRole; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EPUserApp; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; -import org.openecomp.portalsdk.core.domain.RoleFunction; -import org.openecomp.portalsdk.core.exception.SessionExpiredException; -import org.openecomp.portalsdk.core.lm.FusionLicenseManager; -import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.menu.MenuBuilder; -import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.util.SystemProperties; -import org.openecomp.portalsdk.core.web.support.AppUtils; -import org.springframework.beans.factory.annotation.Autowired; - -public class EPUserUtils { - - private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPUserUtils.class); - - private final static Long ACCOUNT_ADMIN_ROLE_ID = 999L; - - public static final String ALL_ROLE_FUNCTIONS = "allRoleFunctions"; - - private static DataAccessService dataAccessService; - - /** - * Gets the EPUser object from the session. - * - * @param request - * HttpServletRequest - * @return EPUser object that was created upon login - * @throws SessionExpiredException - * if no session exists. - */ - public static EPUser getUserSession(HttpServletRequest request) { - HttpSession session = AppUtils.getSession(request); - if (session == null) - throw new SessionExpiredException(); - return (EPUser) session.getAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME)); - } - - /** - * Establishes the user's portal session - * - * @param request - * HttpServletRequest - * @param user - * EPUser - * @param applicationMenuData - * Menu data - * @param businessDirectMenuData - * Menu data - * @param loginMethod_ignored - * How the user authenticated; ignored - * @param allRoleFunctions - * Set of user's roles - */ - @SuppressWarnings("rawtypes") - public static void setUserSession(HttpServletRequest request, EPUser user, Set applicationMenuData, - Set businessDirectMenuData, String loginMethod_ignored, List allRoleFunctions) { - HttpSession session = request.getSession(true); - - // clear the current user session to avoid any conflicts - EPUserUtils.clearUserSession(request); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); - - getAllRoleFunctions(allRoleFunctions, session); - - getRoleFunctions(request); - - // truncate the role (and therefore the role function) data to save - // memory in the session - user.setEPRoles(null); - session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_NAME), user.getFullName()); - - ServletContext context = session.getServletContext(); - int licenseVerificationFlag = 3; - try { - licenseVerificationFlag = (Integer) context.getAttribute("licenseVerification"); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "setUserSession failed to get licenseVerification attribute", - e); - } - switch (licenseVerificationFlag) { - case FusionLicenseManager.DEVELOPER_LICENSE: - session.setAttribute(SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME), - "My Portal [Development Version]"); - break; - case FusionLicenseManager.EXPIRED_LICENSE: - session.setAttribute(SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME), - "My Portal [LICENSE EXPIRED]"); - break; - case FusionLicenseManager.VALID_LICENSE: - session.setAttribute(SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME), "My Portal"); - break; - default: - session.setAttribute(SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME), - "My Portal [INVALID LICENSE]"); - break; - } - - session.setAttribute(SystemProperties.getProperty(SystemProperties.APPLICATION_MENU_ATTRIBUTE_NAME), - MenuBuilder.filterMenu(applicationMenuData, request)); - session.setAttribute(SystemProperties.getProperty(SystemProperties.BUSINESS_DIRECT_MENU_ATTRIBUTE_NAME), - MenuBuilder.filterMenu(businessDirectMenuData, request)); - } - - /** - * Creates a set of role function names and stores the set as a session - * attribute. - * - * @param allRoleFunctions - * List of role functions. - * @param session - * HttpSession - */ - private static void getAllRoleFunctions(List allRoleFunctions, HttpSession session) { - if (allRoleFunctions == null) - return; - Set roleFnSet = new HashSet(); - for (RoleFunction roleFn : allRoleFunctions) - roleFnSet.add(roleFn.getCode()); - session.setAttribute(ALL_ROLE_FUNCTIONS, roleFnSet); - } - - /** - * Removes all stored attributes from the user's session - * - * @param request - * HttpServletRequest - * @throws SessionExpiredException - * if no session exists - */ - private static void clearUserSession(HttpServletRequest request) { - HttpSession session = AppUtils.getSession(request); - if (session == null) - throw new SessionExpiredException(); - - // removes all stored attributes from the current user's session - session.removeAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME)); - session.removeAttribute(SystemProperties.getProperty(SystemProperties.APPLICATION_MENU_ATTRIBUTE_NAME)); - session.removeAttribute(SystemProperties.getProperty(SystemProperties.BUSINESS_DIRECT_MENU_ATTRIBUTE_NAME)); - session.removeAttribute(SystemProperties.getProperty(SystemProperties.ROLES_ATTRIBUTE_NAME)); - session.removeAttribute(SystemProperties.getProperty(SystemProperties.ROLE_FUNCTIONS_ATTRIBUTE_NAME)); - } - - /** - * Builds a set of role functions and sets a session attribute with it. - * - * @param request - * HttpServletRequest - * @return Set of role functions that was built. - */ - @SuppressWarnings({ "rawtypes", "unchecked" }) - private static Set getRoleFunctions(HttpServletRequest request) { - HashSet roleFunctions = null; - - HttpSession session = request.getSession(); - roleFunctions = (HashSet) session - .getAttribute(SystemProperties.getProperty(SystemProperties.ROLE_FUNCTIONS_ATTRIBUTE_NAME)); - - if (roleFunctions == null) { - HashMap roles = getRoles(request); - roleFunctions = new HashSet(); - - Iterator i = roles.keySet().iterator(); - - while (i.hasNext()) { - Long roleKey = (Long) i.next(); - EPRole role = (EPRole) roles.get(roleKey); - - Iterator j = role.getRoleFunctions().iterator(); - - while (j.hasNext()) { - RoleFunction function = (RoleFunction) j.next(); - roleFunctions.add(function.getCode()); - } - } - - session.setAttribute(SystemProperties.getProperty(SystemProperties.ROLE_FUNCTIONS_ATTRIBUTE_NAME), - roleFunctions); - } - - return roleFunctions; - } - - /** - * Gets role information from the user session, in the cached user object. - * As a side effect sets a session variable with the roles. - * - * @param request - * HttpServletRequest - * @return Map of role ID to role object - */ - @SuppressWarnings("rawtypes") - private static HashMap getRoles(HttpServletRequest request) { - HashMap roles = null; - - HttpSession session = AppUtils.getSession(request); - roles = (HashMap) session.getAttribute(SystemProperties.getProperty(SystemProperties.ROLES_ATTRIBUTE_NAME)); - - // if roles are not already cached, let's grab them from the user - // session - if (roles == null) { - EPUser user = getUserSession(request); - - // get all user roles (including the tree of child roles) - roles = getAllUserRoles(user); - - session.setAttribute(SystemProperties.getProperty(SystemProperties.ROLES_ATTRIBUTE_NAME), roles); - } - - return roles; - } - - /** - * Builds a map of role ID to role object. - * - * @param user - * EPUser - * @return Map of role ID to role object - */ - @SuppressWarnings({ "rawtypes", "unchecked" }) - private static HashMap getAllUserRoles(EPUser user) { - HashMap roles = new HashMap(); - Iterator i = user.getEPRoles().iterator(); - - while (i.hasNext()) { - EPRole role = (EPRole) i.next(); - - if (role.getActive()) { - roles.put(role.getId(), role); - - // let's take a recursive trip down the tree to add all child - // roles - addChildRoles(role, roles); - } - } - - // Additionally; the account admin role is overloaded between ecomp - // portal and partners; lets also include that - Iterator appRolesIterator = user.getEPUserApps().iterator(); - while (appRolesIterator.hasNext()) { - EPRole role = (EPRole) appRolesIterator.next().getRole(); - - if (role.getActive() && role.getId().equals(ACCOUNT_ADMIN_ROLE_ID)) { - roles.put(role.getId(), role); - - // let's take a recursive trip down the tree to add all child - // roles - addChildRoles(role, roles); - } - } - - return roles; - } - - /** - * Adds all child roles of the specified role to the map of roles. - * - * @param role - * EPRole - * @param roles - * Maps role id to role object - */ - @SuppressWarnings({ "rawtypes", "unchecked" }) - private static void addChildRoles(EPRole role, HashMap roles) { - Set childRoles = role.getChildRoles(); - - if (childRoles != null && childRoles.size() > 0) { - Iterator j = childRoles.iterator(); - while (j.hasNext()) { - EPRole childRole = (EPRole) j.next(); - - if (childRole.getActive()) { - roles.put(childRole.getId(), childRole); - - addChildRoles(childRole, roles); - } - } - } - - } - - public static boolean hasRole(EPUser user, String roleKey) { - return getAllUserRoles(user).keySet().contains(new Long(roleKey)); - } - - public static DataAccessService getDataAccessService() { - return dataAccessService; - } - - @Autowired - public void setDataAccessService(DataAccessService dataAccessService) { - EPUserUtils.dataAccessService = dataAccessService; - } - - /** - * Gets the user's ID from the user object in the session - * - * @param request - * HttpServletRequest - * @return Integer ID of current user - */ - public static int getUserId(HttpServletRequest request) { - return getUserIdAsLong(request).intValue(); - } - - /** - * Gets the user's ID from the user object in the session - * - * @param request - * HttpServletREquest - * @return Long ID of current user - */ - public static Long getUserIdAsLong(HttpServletRequest request) { - Long userId = new Long(SystemProperties.getProperty(SystemProperties.APPLICATION_USER_ID)); - if (request != null) { - if (getUserSession(request) != null) { - userId = getUserSession(request).getId(); - } - } - return userId; - } - - /** - * Gets the request ID from the request. - * - * @param request - * HttpServletRequest - * @return Request ID - */ - public static String getRequestId(HttpServletRequest request) { - Enumeration headerNames = request.getHeaderNames(); - - String requestId = ""; - try { - while (headerNames.hasMoreElements()) { - String headerName = (String) headerNames.nextElement(); - logger.debug(EELFLoggerDelegate.debugLogger, - "One header is " + headerName + " : " + request.getHeader(headerName)); - if (headerName.equalsIgnoreCase(SystemProperties.ECOMP_REQUEST_ID)) { - requestId = request.getHeader(headerName); - break; - } - } - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "HEADER!!!! Exception : " + EcompPortalUtils.getStackTrace(e)); - } - - return (requestId.isEmpty() ? UUID.randomUUID().toString() : requestId); - } - - /** - * Gets the full URL from the request. - * - * @param request - * HttpServletRequest - * @return Full URL - */ - public static String getFullURL(HttpServletRequest request) { - if (request != null) { - StringBuffer requestURL = request.getRequestURL(); - String queryString = request.getQueryString(); - - if (queryString == null) { - return requestURL.toString(); - } else { - return requestURL.append('?').append(queryString).toString(); - } - } - return ""; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.util; + +import java.util.Enumeration; +import java.util.HashMap; +import java.util.HashSet; +import java.util.Iterator; +import java.util.List; +import java.util.Set; +import java.util.UUID; + +import javax.servlet.ServletContext; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpSession; + +import org.openecomp.portalapp.portal.domain.EPRole; +import org.openecomp.portalapp.portal.domain.EPUser; +import org.openecomp.portalapp.portal.domain.EPUserApp; +import org.openecomp.portalapp.portal.utils.EcompPortalUtils; +import org.openecomp.portalsdk.core.domain.RoleFunction; +import org.openecomp.portalsdk.core.exception.SessionExpiredException; +import org.openecomp.portalsdk.core.lm.FusionLicenseManager; +import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; +import org.openecomp.portalsdk.core.menu.MenuBuilder; +import org.openecomp.portalsdk.core.service.DataAccessService; +import org.openecomp.portalsdk.core.util.SystemProperties; +import org.openecomp.portalsdk.core.web.support.AppUtils; +import org.springframework.beans.factory.annotation.Autowired; + +public class EPUserUtils { + + private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(EPUserUtils.class); + + private final static Long ACCOUNT_ADMIN_ROLE_ID = 999L; + + public static final String ALL_ROLE_FUNCTIONS = "allRoleFunctions"; + + private static DataAccessService dataAccessService; + + /** + * Gets the EPUser object from the session. + * + * @param request + * HttpServletRequest + * @return EPUser object that was created upon login + * @throws SessionExpiredException + * if no session exists. + */ + public static EPUser getUserSession(HttpServletRequest request) { + HttpSession session = AppUtils.getSession(request); + if (session == null) + throw new SessionExpiredException(); + return (EPUser) session.getAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME)); + } + + /** + * Establishes the user's portal session + * + * @param request + * HttpServletRequest + * @param user + * EPUser + * @param applicationMenuData + * Menu data + * @param businessDirectMenuData + * Menu data + * @param loginMethod_ignored + * How the user authenticated; ignored + * @param allRoleFunctions + * Set of user's roles + */ + @SuppressWarnings("rawtypes") + public static void setUserSession(HttpServletRequest request, EPUser user, Set applicationMenuData, + Set businessDirectMenuData, String loginMethod_ignored, List allRoleFunctions) { + HttpSession session = request.getSession(true); + + // clear the current user session to avoid any conflicts + EPUserUtils.clearUserSession(request); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME), user); + + getAllRoleFunctions(allRoleFunctions, session); + + getRoleFunctions(request); + + // truncate the role (and therefore the role function) data to save + // memory in the session + user.setEPRoles(null); + session.setAttribute(SystemProperties.getProperty(SystemProperties.USER_NAME), user.getFullName()); + + ServletContext context = session.getServletContext(); + int licenseVerificationFlag = 3; + try { + licenseVerificationFlag = (Integer) context.getAttribute("licenseVerification"); + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "setUserSession failed to get licenseVerification attribute", + e); + } + switch (licenseVerificationFlag) { + case FusionLicenseManager.DEVELOPER_LICENSE: + session.setAttribute(SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME), + "My Portal [Development Version]"); + break; + case FusionLicenseManager.EXPIRED_LICENSE: + session.setAttribute(SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME), + "My Portal [LICENSE EXPIRED]"); + break; + case FusionLicenseManager.VALID_LICENSE: + session.setAttribute(SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME), "My Portal"); + break; + default: + session.setAttribute(SystemProperties.getProperty(SystemProperties.APP_DISPLAY_NAME), + "My Portal [INVALID LICENSE]"); + break; + } + + session.setAttribute(SystemProperties.getProperty(SystemProperties.APPLICATION_MENU_ATTRIBUTE_NAME), + MenuBuilder.filterMenu(applicationMenuData, request)); + session.setAttribute(SystemProperties.getProperty(SystemProperties.BUSINESS_DIRECT_MENU_ATTRIBUTE_NAME), + MenuBuilder.filterMenu(businessDirectMenuData, request)); + } + + /** + * Creates a set of role function names and stores the set as a session + * attribute. + * + * @param allRoleFunctions + * List of role functions. + * @param session + * HttpSession + */ + private static void getAllRoleFunctions(List allRoleFunctions, HttpSession session) { + if (allRoleFunctions == null) + return; + Set roleFnSet = new HashSet(); + for (RoleFunction roleFn : allRoleFunctions) + roleFnSet.add(roleFn.getCode()); + session.setAttribute(ALL_ROLE_FUNCTIONS, roleFnSet); + } + + /** + * Removes all stored attributes from the user's session + * + * @param request + * HttpServletRequest + * @throws SessionExpiredException + * if no session exists + */ + private static void clearUserSession(HttpServletRequest request) { + HttpSession session = AppUtils.getSession(request); + if (session == null) + throw new SessionExpiredException(); + + // removes all stored attributes from the current user's session + session.removeAttribute(SystemProperties.getProperty(SystemProperties.USER_ATTRIBUTE_NAME)); + session.removeAttribute(SystemProperties.getProperty(SystemProperties.APPLICATION_MENU_ATTRIBUTE_NAME)); + session.removeAttribute(SystemProperties.getProperty(SystemProperties.BUSINESS_DIRECT_MENU_ATTRIBUTE_NAME)); + session.removeAttribute(SystemProperties.getProperty(SystemProperties.ROLES_ATTRIBUTE_NAME)); + session.removeAttribute(SystemProperties.getProperty(SystemProperties.ROLE_FUNCTIONS_ATTRIBUTE_NAME)); + } + + /** + * Builds a set of role functions and sets a session attribute with it. + * + * @param request + * HttpServletRequest + * @return Set of role functions that was built. + */ + @SuppressWarnings({ "rawtypes", "unchecked" }) + private static Set getRoleFunctions(HttpServletRequest request) { + HashSet roleFunctions = null; + + HttpSession session = request.getSession(); + roleFunctions = (HashSet) session + .getAttribute(SystemProperties.getProperty(SystemProperties.ROLE_FUNCTIONS_ATTRIBUTE_NAME)); + + if (roleFunctions == null) { + HashMap roles = getRoles(request); + roleFunctions = new HashSet(); + + Iterator i = roles.keySet().iterator(); + + while (i.hasNext()) { + Long roleKey = (Long) i.next(); + EPRole role = (EPRole) roles.get(roleKey); + + Iterator j = role.getRoleFunctions().iterator(); + + while (j.hasNext()) { + RoleFunction function = (RoleFunction) j.next(); + roleFunctions.add(function.getCode()); + } + } + + session.setAttribute(SystemProperties.getProperty(SystemProperties.ROLE_FUNCTIONS_ATTRIBUTE_NAME), + roleFunctions); + } + + return roleFunctions; + } + + /** + * Gets role information from the user session, in the cached user object. + * As a side effect sets a session variable with the roles. + * + * @param request + * HttpServletRequest + * @return Map of role ID to role object + */ + @SuppressWarnings("rawtypes") + private static HashMap getRoles(HttpServletRequest request) { + HashMap roles = null; + + HttpSession session = AppUtils.getSession(request); + roles = (HashMap) session.getAttribute(SystemProperties.getProperty(SystemProperties.ROLES_ATTRIBUTE_NAME)); + + // if roles are not already cached, let's grab them from the user + // session + if (roles == null) { + EPUser user = getUserSession(request); + + // get all user roles (including the tree of child roles) + roles = getAllUserRoles(user); + + session.setAttribute(SystemProperties.getProperty(SystemProperties.ROLES_ATTRIBUTE_NAME), roles); + } + + return roles; + } + + /** + * Builds a map of role ID to role object. + * + * @param user + * EPUser + * @return Map of role ID to role object + */ + @SuppressWarnings({ "rawtypes", "unchecked" }) + private static HashMap getAllUserRoles(EPUser user) { + HashMap roles = new HashMap(); + Iterator i = user.getEPRoles().iterator(); + + while (i.hasNext()) { + EPRole role = (EPRole) i.next(); + + if (role.getActive()) { + roles.put(role.getId(), role); + + // let's take a recursive trip down the tree to add all child + // roles + addChildRoles(role, roles); + } + } + + // Additionally; the account admin role is overloaded between ecomp + // portal and partners; lets also include that + Iterator appRolesIterator = user.getEPUserApps().iterator(); + while (appRolesIterator.hasNext()) { + EPRole role = (EPRole) appRolesIterator.next().getRole(); + + if (role.getActive() && role.getId().equals(ACCOUNT_ADMIN_ROLE_ID)) { + roles.put(role.getId(), role); + + // let's take a recursive trip down the tree to add all child + // roles + addChildRoles(role, roles); + } + } + + return roles; + } + + /** + * Adds all child roles of the specified role to the map of roles. + * + * @param role + * EPRole + * @param roles + * Maps role id to role object + */ + @SuppressWarnings({ "rawtypes", "unchecked" }) + private static void addChildRoles(EPRole role, HashMap roles) { + Set childRoles = role.getChildRoles(); + + if (childRoles != null && childRoles.size() > 0) { + Iterator j = childRoles.iterator(); + while (j.hasNext()) { + EPRole childRole = (EPRole) j.next(); + + if (childRole.getActive()) { + roles.put(childRole.getId(), childRole); + + addChildRoles(childRole, roles); + } + } + } + + } + + public static boolean hasRole(EPUser user, String roleKey) { + return getAllUserRoles(user).keySet().contains(new Long(roleKey)); + } + + public static DataAccessService getDataAccessService() { + return dataAccessService; + } + + @Autowired + public void setDataAccessService(DataAccessService dataAccessService) { + EPUserUtils.dataAccessService = dataAccessService; + } + + /** + * Gets the user's ID from the user object in the session + * + * @param request + * HttpServletRequest + * @return Integer ID of current user + */ + public static int getUserId(HttpServletRequest request) { + return getUserIdAsLong(request).intValue(); + } + + /** + * Gets the user's ID from the user object in the session + * + * @param request + * HttpServletREquest + * @return Long ID of current user + */ + public static Long getUserIdAsLong(HttpServletRequest request) { + Long userId = new Long(SystemProperties.getProperty(SystemProperties.APPLICATION_USER_ID)); + if (request != null) { + if (getUserSession(request) != null) { + userId = getUserSession(request).getId(); + } + } + return userId; + } + + /** + * Gets the request ID from the request. + * + * @param request + * HttpServletRequest + * @return Request ID + */ + public static String getRequestId(HttpServletRequest request) { + Enumeration headerNames = request.getHeaderNames(); + + String requestId = ""; + try { + while (headerNames.hasMoreElements()) { + String headerName = (String) headerNames.nextElement(); + logger.debug(EELFLoggerDelegate.debugLogger, + "One header is " + headerName + " : " + request.getHeader(headerName)); + if (headerName.equalsIgnoreCase(SystemProperties.ECOMP_REQUEST_ID)) { + requestId = request.getHeader(headerName); + break; + } + } + } catch (Exception e) { + logger.error(EELFLoggerDelegate.errorLogger, "HEADER!!!! Exception : " + EcompPortalUtils.getStackTrace(e)); + } + + return (requestId.isEmpty() ? UUID.randomUUID().toString() : requestId); + } + + /** + * Gets the full URL from the request. + * + * @param request + * HttpServletRequest + * @return Full URL + */ + public static String getFullURL(HttpServletRequest request) { + if (request != null) { + StringBuffer requestURL = request.getRequestURL(); + String queryString = request.getQueryString(); + + if (queryString == null) { + return requestURL.toString(); + } else { + return requestURL.append('?').append(queryString).toString(); + } + } + return ""; + } + +} diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/SystemType.java b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/SystemType.java index fb0e35fc..44b8d40b 100644 --- a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/SystemType.java +++ b/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/SystemType.java @@ -1,26 +1,26 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.util; - -public enum SystemType { - - APPLICATION, -// SYSTEM -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.util; + +public enum SystemType { + + APPLICATION, +// SYSTEM +} diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/defs/definitions.xml b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/defs/definitions.xml index 18445f20..0fa84a9c 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/defs/definitions.xml +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/defs/definitions.xml @@ -1,38 +1,38 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/defs/definitions.xml b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/defs/definitions.xml index 433fec8a..4749dbb3 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/defs/definitions.xml +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/defs/definitions.xml @@ -1,203 +1,189 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/EP.hbm.xml b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/EP.hbm.xml index bda281c2..84f7b7ed 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/EP.hbm.xml +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/EP.hbm.xml @@ -621,7 +621,8 @@ select user_id, notification_id, is_for_online_users, is_for_all_roles, msg_header, msg_description,msg_source,start_Time, end_time, priority, created_date, creator_ID,active_YN from ( - select a.*, b.role_id,b.recv_user_id + select a.notification_ID,a.is_for_online_users,a.is_for_all_roles,a.active_YN, + a.msg_header,a.msg_description,a.msg_source,a.start_time,a.end_time,a.priority,a.creator_ID,a.created_date,b.role_id,b.recv_user_id from ep_notification a, ep_role_notification b where a.notification_id = b.notification_id and (end_time is null || SYSDATE() <= end_time ) @@ -639,7 +640,23 @@ )b where ( - a.role_id = b.role_id||a.recv_user_id=:user_id + a.role_id = b.role_id + ) + union + select :user_id, notification_id, is_for_online_users, is_for_all_roles, msg_header, msg_description,msg_source,start_Time, end_time, priority, created_date, creator_ID,active_YN + from + ( + select a.notification_ID,a.is_for_online_users,a.is_for_all_roles,a.active_YN, + a.msg_header,a.msg_description,a.msg_source,a.start_time,a.end_time,a.priority,a.creator_ID,a.created_date, b.role_id,b.recv_user_id + from ep_notification a, ep_role_notification b + where a.notification_id = b.notification_id + and (end_time is null || SYSDATE() <= end_time ) + and (start_time is null || SYSDATE() >= start_time) + and a.is_for_all_roles = 'N' + ) a + where + ( + a.recv_user_id=:user_id ) union ( @@ -656,9 +673,9 @@ and not exists ( - select * from ep_user_notification m where user_id = :user_id and m.notification_id = a.notification_id and is_viewed = 'Y' + select ID,User_ID,notification_ID,is_viewed,updated_time from ep_user_notification m where user_id = :user_id and m.notification_id = a.notification_id and is_viewed = 'Y' ) - order by priority desc, start_Time desc,created_date desc + order by priority desc, created_date desc,start_Time desc ) t, @@ -682,7 +699,8 @@ @@ -757,7 +801,9 @@ where fn_role.app_id = fn_app.app_id and fn_app.enabled='Y' order by app_name creator_ID,active_YN from ( - select a.*, b.role_id,CASE WHEN a.creator_ID IS NOT NULL THEN u.org_user_id + select a.notification_ID,a.is_for_online_users,a.is_for_all_roles,a.active_YN, + a.msg_header,a.msg_description,a.msg_source,a.start_time,a.end_time,a.priority,a.creator_ID,a.created_date, + b.role_id,CASE WHEN a.creator_ID IS NOT NULL THEN u.org_user_id ELSE NULL END AS login_id,b.recv_user_id @@ -785,8 +831,38 @@ where fn_role.app_id = fn_app.app_id and fn_app.enabled='Y' order by app_name ) b where ( - a.role_id = b.role_id||a.recv_user_id=:user_id + a.role_id = b.role_id ) + UNION + select + :user_id, login_id,notification_id, is_for_online_users, is_for_all_roles, + msg_header, msg_description,msg_source, start_Time, end_time, priority, created_date, + creator_ID,active_YN + from + ( + select a.notification_ID,a.is_for_online_users,a.is_for_all_roles,a.active_YN, + a.msg_header,a.msg_description,a.msg_source,a.start_time,a.end_time,a.priority,a.creator_ID,a.created_date, + b.role_id,CASE WHEN a.creator_ID IS NOT NULL THEN u.org_user_id + + ELSE NULL + END AS login_id,b.recv_user_id + from ep_notification a, ep_role_notification b,fn_user u + where a.notification_id = b.notification_id and (u.user_id=a.creator_ID OR a.creator_ID IS NULL) + and a.is_for_all_roles = 'N' + and ( + (start_time is null and end_time is null and a.created_date >= DATE_ADD(curdate(),INTERVAL-31 DAY)) + or + (start_time is not null and end_time is null and start_time >= DATE_ADD(curdate(),INTERVAL -31 DAY)) + or + (start_time is null and end_time is not null and end_time >= DATE_ADD(curdate(),INTERVAL -31 DAY)) + or + (start_time is not null and end_time is not null and end_time >= DATE_ADD(curdate(),INTERVAL -31 DAY)) + ) + ) a + where + ( + a.recv_user_id=:user_id + ) union ( select @@ -973,6 +1049,20 @@ where fn_role.app_id = fn_app.app_id and fn_app.enabled='Y' order by app_name ]]> + + + + + + + + + + @@ -1322,7 +1412,7 @@ where fn_role.app_id = fn_app.app_id and fn_app.enabled='Y' order by app_name - - + + @@ -1374,7 +1463,6 @@ where fn_role.app_id = fn_app.app_id and fn_app.enabled='Y' order by app_name @@ -1382,7 +1470,6 @@ where fn_role.app_id = fn_app.app_id and fn_app.enabled='Y' order by app_name @@ -1390,7 +1477,6 @@ where fn_role.app_id = fn_app.app_id and fn_app.enabled='Y' order by app_name @@ -1398,7 +1484,6 @@ where fn_role.app_id = fn_app.app_id and fn_app.enabled='Y' order by app_name @@ -1408,12 +1493,20 @@ where fn_role.app_id = fn_app.app_id and fn_app.enabled='Y' order by app_name - + + + + + + + + + + + = DATE_ADD(end_time,INTERVAL 3 MONTH) + ]]> + + + + + + + = DATE_ADD(end_time,INTERVAL 3 MONTH)) + ]]> + + + + + + = DATE_ADD(end_time,INTERVAL 3 MONTH)) + ]]> + diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml index f6d22a27..c1d6fa17 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/Fusion.hbm.xml @@ -1,335 +1,335 @@ - - - - - - - - - - - - - seq_fn_user - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - seq_fn_role - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - seq_fn_menu - - - - - - - - - - - - - - - - - - - - - - - seq_fn_menu - - - - - - - - - - - - - - - - - - - - - - - - - - - - seq_fn_broadcast_message - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - seq_fn_audit_log - - - - - - - - - - - - - - - - - - - - - - - - - select distinct functionCd from MenuData - - - - from MenuData where menuSetCode = :menu_set_cd and parentMenu is null - - - FROM UrlsAccessible A where upper(A.urlsAccessibleKey.url) = upper(:current_url) - - - - select firstName, lastName from User where id = :user_id - - - - select email from User where id = :user_id - - - - select id, firstName, lastName from User where active = true order by lastName, firstName - - - - select name from Role where id = :role_id - - - - select id, name from Role order by name - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + seq_fn_user + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + seq_fn_role + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + seq_fn_menu + + + + + + + + + + + + + + + + + + + + + + + seq_fn_menu + + + + + + + + + + + + + + + + + + + + + + + + + + + + seq_fn_broadcast_message + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + seq_fn_audit_log + + + + + + + + + + + + + + + + + + + + + + + + + select distinct functionCd from MenuData + + + + from MenuData where menuSetCode = :menu_set_cd and parentMenu is null + + + FROM UrlsAccessible A where upper(A.urlsAccessibleKey.url) = upper(:current_url) + + + + select firstName, lastName from User where id = :user_id + + + + select email from User where id = :user_id + + + + select id, firstName, lastName from User where active = true order by lastName, firstName + + + + select name from Role where id = :role_id + + + + select id, name from Role order by name + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/Workflow.hbm.xml b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/Workflow.hbm.xml index 9a853e7f..b1ea7a4a 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/Workflow.hbm.xml +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/fusion/orm/Workflow.hbm.xml @@ -1,48 +1,48 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/error.jsp b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/error.jsp index 0505b68c..84d7223b 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/error.jsp +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/error.jsp @@ -1,20 +1,20 @@ -<%-- - ================================================================================ - ECOMP Portal - ================================================================================ - Copyright (C) 2017 AT&T Intellectual Property - ================================================================================ - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ================================================================================ - --%> -${errMsg} +<%-- + ================================================================================ + ECOMP Portal + ================================================================================ + Copyright (C) 2017 AT&T Intellectual Property + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ================================================================================ + --%> +${errMsg} diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/index.jsp b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/index.jsp index 39437e78..3ead17cc 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/index.jsp +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/index.jsp @@ -1,21 +1,21 @@ -<%-- - ================================================================================ - ECOMP Portal - ================================================================================ - Copyright (C) 2017 AT&T Intellectual Property - ================================================================================ - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ================================================================================ - --%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - +<%-- + ================================================================================ + ECOMP Portal + ================================================================================ + Copyright (C) 2017 AT&T Intellectual Property + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ================================================================================ + --%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> + diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/login.jsp b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/login.jsp index e10ba624..d90704c3 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/login.jsp +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/login.jsp @@ -1,120 +1,120 @@ -<%-- - ================================================================================ - ECOMP Portal - ================================================================================ - Copyright (C) 2017 AT&T Intellectual Property - ================================================================================ - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ================================================================================ - --%> -<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ page import="java.net.URLEncoder" %> -<%@ page import="org.openecomp.portalsdk.core.util.SystemProperties" %> - - - - - - - - - - - - - - - - - - - - <% - String returnUrl = request.getParameter("returnUrl"); - String redirectUrl = request.getParameter("redirectUrl"); - returnUrl = ((returnUrl == null) ? (request.isSecure() ?"https://":"http://") + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() + "/process_csp" + "?redirectUrl=" + redirectUrl: URLEncoder.encode(returnUrl)); - %> - - -
- -
- AT&T -
-
-
-
-
- -
- - Click here to login - -
-
-
-
-
-







- -
- - - - +<%-- + ================================================================================ + ECOMP Portal + ================================================================================ + Copyright (C) 2017 AT&T Intellectual Property + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ================================================================================ + --%> +<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ page import="java.net.URLEncoder" %> +<%@ page import="org.openecomp.portalsdk.core.util.SystemProperties" %> + + + + + + + + + + + + + + + + + + + + <% + String returnUrl = request.getParameter("returnUrl"); + String redirectUrl = request.getParameter("redirectUrl"); + returnUrl = ((returnUrl == null) ? (request.isSecure() ?"https://":"http://") + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() + "/process_csp" + "?redirectUrl=" + redirectUrl: URLEncoder.encode(returnUrl)); + %> + + +
+ +
+ AT&T +
+
+
+
+
+ +
+ + Click here to login + +
+
+
+
+
+







+ +
+ + + + diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/login_external.jsp b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/login_external.jsp index fe5eef06..94c2f55e 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/login_external.jsp +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/jsp/login_external.jsp @@ -1,162 +1,162 @@ -<%-- - ================================================================================ - ECOMP Portal - ================================================================================ - Copyright (C) 2017 AT&T Intellectual Property - ================================================================================ - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ================================================================================ - --%> -<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> -<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> -<%@ page import="org.openecomp.portalsdk.core.util.SystemProperties" %> - -" /> - - - - - - Login - - - - - - - - - - - - - - - - - -
- -
- AT&T -
-
- -
-
- Portal -

ECOMP Portal

- - -
-
- - -
-
-                - -
-
-
-






- -
- - - - +<%-- + ================================================================================ + ECOMP Portal + ================================================================================ + Copyright (C) 2017 AT&T Intellectual Property + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ================================================================================ + --%> +<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ page import="org.openecomp.portalsdk.core.util.SystemProperties" %> + +" /> + + + + + + Login + + + + + + + + + + + + + + + + + +
+ +
+ AT&T +
+
+ +
+
+ Portal +

ECOMP Portal

+ + +
+
+ + +
+
+                + +
+
+
+






+ +
+ + + + diff --git a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/web.xml b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/web.xml index 9c89f942..2aa2d26f 100644 --- a/ecomp-portal-BE-common/src/main/webapp/WEB-INF/web.xml +++ b/ecomp-portal-BE-common/src/main/webapp/WEB-INF/web.xml @@ -1,56 +1,56 @@ - - - - - fusion - - - - - - - - CorsFilter - org.apache.catalina.filters.CorsFilter - - cors.allowed.methods - GET,POST,HEAD,OPTIONS,PUT,DELETE - - - cors.allowed.headers - EPService,JSESSIONID,X-ECOMP-RequestID,X-Widgets-Type,Content-Type,X-Requested-With,accept,Origin,Access-Control-Request-Method,Access-Control-Request-Headers - - - - - CorsFilter - /* - - + + + + + fusion + + + + + + + + CorsFilter + org.apache.catalina.filters.CorsFilter + + cors.allowed.methods + GET,POST,HEAD,OPTIONS,PUT,DELETE + + + cors.allowed.headers + EPService,JSESSIONID,X-ECOMP-RequestID,X-Widgets-Type,Content-Type,X-Requested-With,accept,Origin,Access-Control-Request-Method,Access-Control-Request-Headers + + + + + CorsFilter + /* + + diff --git a/ecomp-portal-BE-common/src/main/webapp/index.jsp b/ecomp-portal-BE-common/src/main/webapp/index.jsp index dfff393d..c8f0a6dd 100644 --- a/ecomp-portal-BE-common/src/main/webapp/index.jsp +++ b/ecomp-portal-BE-common/src/main/webapp/index.jsp @@ -1,34 +1,34 @@ -<%-- - ================================================================================ - ECOMP Portal - ================================================================================ - Copyright (C) 2017 AT&T Intellectual Property - ================================================================================ - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ================================================================================ - --%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - -<%-- Redirected because we can't set the welcome page to a virtual URL. --%> -<%-- - --%> - - - ecompportal-BE index.jsp - - -

ECOMP Portal Core

- This is the ecompportal-BE application, page index.jsp. - - - +<%-- + ================================================================================ + ECOMP Portal + ================================================================================ + Copyright (C) 2017 AT&T Intellectual Property + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ================================================================================ + --%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> + +<%-- Redirected because we can't set the welcome page to a virtual URL. --%> +<%-- + --%> + + + ecompportal-BE index.jsp + + +

ECOMP Portal Core

+ This is the ecompportal-BE application, page index.jsp. + + + diff --git a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestClient.java b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestClient.java index fdafe5cc..8e5d3e15 100644 --- a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestClient.java +++ b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestClient.java @@ -1,281 +1,281 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.net.URI; -import java.security.cert.CertificateException; -import java.security.cert.X509Certificate; - -import javax.net.ssl.SSLContext; -import javax.servlet.http.HttpServletResponse; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.apache.http.Consts; -import org.apache.http.HttpEntity; -import org.apache.http.client.methods.CloseableHttpResponse; -import org.apache.http.client.methods.HttpGet; -import org.apache.http.client.methods.HttpPost; -import org.apache.http.client.utils.URIBuilder; -import org.apache.http.conn.ssl.NoopHostnameVerifier; -import org.apache.http.conn.ssl.SSLConnectionSocketFactory; -import org.apache.http.entity.ContentType; -import org.apache.http.entity.StringEntity; -import org.apache.http.impl.client.CloseableHttpClient; -import org.apache.http.impl.client.HttpClientBuilder; -import org.apache.http.impl.client.HttpClients; -import org.apache.http.ssl.SSLContexts; -import org.apache.http.ssl.TrustStrategy; -import org.apache.http.util.EntityUtils; - -/** - * Provides reusable features for test cases to get or post from an REST - * endpoint, allowing use of HTTPS connections to servers that use self-signed - * certificates. - */ -public class SharedContextRestClient { - - private static final Log logger = LogFactory.getLog(SharedContextRestClient.class); - - /** - * Convenience method that builds and sends a GET request using properties - * to build the URI and populate header with credentials. - * - * @param task - * last component(s) of REST endpoint name; e.g., "get". - * @param contextId - * @param contextKey - * @return JSON string fetched - * @throws Exception - * if the HTTP response code is anything other than OK. - */ - public static String getJson(final SharedContextTestProperties properties, final String task, - final String contextId, final String contextKey) throws Exception { - String requestPath = '/' + properties.getProperty(SharedContextTestProperties.APPNAME) // - + '/' + properties.getProperty(SharedContextTestProperties.RESTPATH) // - + '/' + task; - return getJson(properties.getProperty(SharedContextTestProperties.HOSTNAME), // - properties.getProperty(SharedContextTestProperties.PORT, -1), // - properties.getProperty(SharedContextTestProperties.SECURE, true), // - properties.getProperty(SharedContextTestProperties.UEBKEY), // - properties.getProperty(SharedContextTestProperties.USERNAME), // - properties.getProperty(SharedContextTestProperties.PASSWORD), requestPath, // - contextId, // - contextKey); - } - - /** - * Constructs and sends a GET request using the specified values. - * - * @param hostname - * @param port - * ignored if negative - * @param secure - * If true, uses https; else http. - * @param headerUebkey - * @param headerUsername - * @param headerPassword - * @param requestPath - * full path of the REST endpoint - * @param contextId - * @param contextKey - * Ignored if null - * @return JSON result - */ - public static String getJson(final String hostname, final int port, boolean secure, final String headerUebkey, - final String headerUsername, final String headerPassword, final String requestPath, final String contextId, - final String contextKey) throws Exception { - - URIBuilder uriBuilder = new URIBuilder(); - if (secure) - uriBuilder.setScheme("https"); - else - uriBuilder.setScheme("http"); - uriBuilder.setHost(hostname); - if (port > 0) - uriBuilder.setPort(port); - uriBuilder.setPath(requestPath); - uriBuilder.addParameter("context_id", contextId); - if (contextKey != null) - uriBuilder.addParameter("ckey", contextKey); - final URI uri = uriBuilder.build(); - - CloseableHttpClient httpClient; - if (secure) { - // Tell HttpClient to accept any server certificate for HTTPS. - // http://stackoverflow.com/questions/24720013/apache-http-client-ssl-certificate-error - SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() { - @Override - public boolean isTrusted(final X509Certificate[] chain, final String authType) - throws CertificateException { - return true; - } - }).build(); - SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext, - NoopHostnameVerifier.INSTANCE); - httpClient = HttpClientBuilder.create().setSSLSocketFactory(sslsf).build(); - } else { - httpClient = HttpClients.createDefault(); - } - - HttpGet httpGet = new HttpGet(uri); - httpGet.setHeader("uebkey", headerUebkey); - httpGet.setHeader("username", headerUsername); - httpGet.setHeader("password", headerPassword); - - String json = null; - CloseableHttpResponse response = null; - try { - logger.debug("GET from " + uri); - response = httpClient.execute(httpGet); - logger.info("Status is " + response.getStatusLine()); - if (response.getStatusLine().getStatusCode() != HttpServletResponse.SC_OK) - throw new Exception("Status is " + response.getStatusLine().toString()); - HttpEntity entity = response.getEntity(); - if (entity == null) { - logger.warn("Entity is null!"); - } else { - // entity content length is never set. - // this naively tries to read everything. - json = EntityUtils.toString(entity); - EntityUtils.consume(entity); - } - } finally { - if (response != null) - response.close(); - } - return json; - } - - /** - * Convenience method that builds and sends a POST request using properties - * to build the URI and populate header with credentials. - * - * @param path - * last component(s) of REST endpoint name; e.g., "users" or - * "user/ab1234/roles". - * @return JSON string fetched - * @throws Exception - * if the HTTP response code is anything other than OK. - */ - public static String postJson(final SharedContextTestProperties properties, final String path, final String json) - throws Exception { - String requestPath = '/' + properties.getProperty(SharedContextTestProperties.APPNAME) // - + '/' + properties.getProperty(SharedContextTestProperties.RESTPATH) // - + '/' + path; - return postJson(properties.getProperty(SharedContextTestProperties.HOSTNAME), // - properties.getProperty(SharedContextTestProperties.PORT, -1), // - properties.getProperty(SharedContextTestProperties.SECURE, true), // - properties.getProperty(SharedContextTestProperties.UEBKEY), // - properties.getProperty(SharedContextTestProperties.USERNAME), // - properties.getProperty(SharedContextTestProperties.PASSWORD), // - requestPath, // - json); - } - - /** - * Constructs and sends a POST request using the specified values. - * - * @param hostname - * @param port - * @param secure - * If true, uses https; else http. - * @param requestPath - * full path of the REST endpoint - * @param headerUebkey - * @param headerUsername - * @param headerPassword - * @param json - * Content to post - * @return JSON result - * @throws Exception - */ - public static String postJson(final String hostname, final int port, boolean secure, final String headerUebkey, - final String headerUsername, final String headerPassword, final String requestPath, final String json) - throws Exception { - - URIBuilder builder = new URIBuilder(); - if (secure) - builder.setScheme("https"); - else - builder.setScheme("http"); - builder.setHost(hostname); - if (port > 0) - builder.setPort(port); - builder.setPath(requestPath); - final URI uri = builder.build(); - - CloseableHttpClient httpClient; - if (secure) { - // Tell HttpClient to accept any server certificate for HTTPS. - // http://stackoverflow.com/questions/24720013/apache-http-client-ssl-certificate-error - SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() { - @Override - public boolean isTrusted(final X509Certificate[] chain, final String authType) - throws CertificateException { - return true; - } - }).build(); - SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext, - NoopHostnameVerifier.INSTANCE); - httpClient = HttpClientBuilder.create().setSSLSocketFactory(sslsf).build(); - } else { - httpClient = HttpClients.createDefault(); - } - HttpPost httpPost = new HttpPost(uri); - httpPost.setHeader("uebkey", headerUebkey); - httpPost.setHeader("username", headerUsername); - httpPost.setHeader("password", headerPassword); - - StringEntity postEntity = new StringEntity(json, ContentType.create("application/json", Consts.UTF_8)); - httpPost.setEntity(postEntity); - - String responseJson = null; - CloseableHttpResponse response = null; - try { - logger.debug("POST to " + uri); - response = httpClient.execute(httpPost); - logger.info("Status is " + response.getStatusLine()); - if (response.getStatusLine().getStatusCode() != HttpServletResponse.SC_OK) - throw new Exception("Status is " + response.getStatusLine().toString()); - - HttpEntity entity = response.getEntity(); - if (entity == null) { - logger.warn("Entity is null!"); - } else { - long len = entity.getContentLength(); - if (len < 0) - logger.warn("Content length is -1"); - if (len < 2048) { - responseJson = EntityUtils.toString(entity); - logger.debug(responseJson); - } else { - logger.warn("Not implemented - stream content"); - } - EntityUtils.consume(entity); - } - } finally { - if (response != null) - response.close(); - } - return responseJson; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.net.URI; +import java.security.cert.CertificateException; +import java.security.cert.X509Certificate; + +import javax.net.ssl.SSLContext; +import javax.servlet.http.HttpServletResponse; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.http.Consts; +import org.apache.http.HttpEntity; +import org.apache.http.client.methods.CloseableHttpResponse; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.client.methods.HttpPost; +import org.apache.http.client.utils.URIBuilder; +import org.apache.http.conn.ssl.NoopHostnameVerifier; +import org.apache.http.conn.ssl.SSLConnectionSocketFactory; +import org.apache.http.entity.ContentType; +import org.apache.http.entity.StringEntity; +import org.apache.http.impl.client.CloseableHttpClient; +import org.apache.http.impl.client.HttpClientBuilder; +import org.apache.http.impl.client.HttpClients; +import org.apache.http.ssl.SSLContexts; +import org.apache.http.ssl.TrustStrategy; +import org.apache.http.util.EntityUtils; + +/** + * Provides reusable features for test cases to get or post from an REST + * endpoint, allowing use of HTTPS connections to servers that use self-signed + * certificates. + */ +public class SharedContextRestClient { + + private static final Log logger = LogFactory.getLog(SharedContextRestClient.class); + + /** + * Convenience method that builds and sends a GET request using properties + * to build the URI and populate header with credentials. + * + * @param task + * last component(s) of REST endpoint name; e.g., "get". + * @param contextId + * @param contextKey + * @return JSON string fetched + * @throws Exception + * if the HTTP response code is anything other than OK. + */ + public static String getJson(final SharedContextTestProperties properties, final String task, + final String contextId, final String contextKey) throws Exception { + String requestPath = '/' + properties.getProperty(SharedContextTestProperties.APPNAME) // + + '/' + properties.getProperty(SharedContextTestProperties.RESTPATH) // + + '/' + task; + return getJson(properties.getProperty(SharedContextTestProperties.HOSTNAME), // + properties.getProperty(SharedContextTestProperties.PORT, -1), // + properties.getProperty(SharedContextTestProperties.SECURE, true), // + properties.getProperty(SharedContextTestProperties.UEBKEY), // + properties.getProperty(SharedContextTestProperties.USERNAME), // + properties.getProperty(SharedContextTestProperties.PASSWORD), requestPath, // + contextId, // + contextKey); + } + + /** + * Constructs and sends a GET request using the specified values. + * + * @param hostname + * @param port + * ignored if negative + * @param secure + * If true, uses https; else http. + * @param headerUebkey + * @param headerUsername + * @param headerPassword + * @param requestPath + * full path of the REST endpoint + * @param contextId + * @param contextKey + * Ignored if null + * @return JSON result + */ + public static String getJson(final String hostname, final int port, boolean secure, final String headerUebkey, + final String headerUsername, final String headerPassword, final String requestPath, final String contextId, + final String contextKey) throws Exception { + + URIBuilder uriBuilder = new URIBuilder(); + if (secure) + uriBuilder.setScheme("https"); + else + uriBuilder.setScheme("http"); + uriBuilder.setHost(hostname); + if (port > 0) + uriBuilder.setPort(port); + uriBuilder.setPath(requestPath); + uriBuilder.addParameter("context_id", contextId); + if (contextKey != null) + uriBuilder.addParameter("ckey", contextKey); + final URI uri = uriBuilder.build(); + + CloseableHttpClient httpClient; + if (secure) { + // Tell HttpClient to accept any server certificate for HTTPS. + // http://stackoverflow.com/questions/24720013/apache-http-client-ssl-certificate-error + SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() { + @Override + public boolean isTrusted(final X509Certificate[] chain, final String authType) + throws CertificateException { + return true; + } + }).build(); + SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext, + NoopHostnameVerifier.INSTANCE); + httpClient = HttpClientBuilder.create().setSSLSocketFactory(sslsf).build(); + } else { + httpClient = HttpClients.createDefault(); + } + + HttpGet httpGet = new HttpGet(uri); + httpGet.setHeader("uebkey", headerUebkey); + httpGet.setHeader("username", headerUsername); + httpGet.setHeader("password", headerPassword); + + String json = null; + CloseableHttpResponse response = null; + try { + logger.debug("GET from " + uri); + response = httpClient.execute(httpGet); + logger.info("Status is " + response.getStatusLine()); + if (response.getStatusLine().getStatusCode() != HttpServletResponse.SC_OK) + throw new Exception("Status is " + response.getStatusLine().toString()); + HttpEntity entity = response.getEntity(); + if (entity == null) { + logger.warn("Entity is null!"); + } else { + // entity content length is never set. + // this naively tries to read everything. + json = EntityUtils.toString(entity); + EntityUtils.consume(entity); + } + } finally { + if (response != null) + response.close(); + } + return json; + } + + /** + * Convenience method that builds and sends a POST request using properties + * to build the URI and populate header with credentials. + * + * @param path + * last component(s) of REST endpoint name; e.g., "users" or + * "user/ab1234/roles". + * @return JSON string fetched + * @throws Exception + * if the HTTP response code is anything other than OK. + */ + public static String postJson(final SharedContextTestProperties properties, final String path, final String json) + throws Exception { + String requestPath = '/' + properties.getProperty(SharedContextTestProperties.APPNAME) // + + '/' + properties.getProperty(SharedContextTestProperties.RESTPATH) // + + '/' + path; + return postJson(properties.getProperty(SharedContextTestProperties.HOSTNAME), // + properties.getProperty(SharedContextTestProperties.PORT, -1), // + properties.getProperty(SharedContextTestProperties.SECURE, true), // + properties.getProperty(SharedContextTestProperties.UEBKEY), // + properties.getProperty(SharedContextTestProperties.USERNAME), // + properties.getProperty(SharedContextTestProperties.PASSWORD), // + requestPath, // + json); + } + + /** + * Constructs and sends a POST request using the specified values. + * + * @param hostname + * @param port + * @param secure + * If true, uses https; else http. + * @param requestPath + * full path of the REST endpoint + * @param headerUebkey + * @param headerUsername + * @param headerPassword + * @param json + * Content to post + * @return JSON result + * @throws Exception + */ + public static String postJson(final String hostname, final int port, boolean secure, final String headerUebkey, + final String headerUsername, final String headerPassword, final String requestPath, final String json) + throws Exception { + + URIBuilder builder = new URIBuilder(); + if (secure) + builder.setScheme("https"); + else + builder.setScheme("http"); + builder.setHost(hostname); + if (port > 0) + builder.setPort(port); + builder.setPath(requestPath); + final URI uri = builder.build(); + + CloseableHttpClient httpClient; + if (secure) { + // Tell HttpClient to accept any server certificate for HTTPS. + // http://stackoverflow.com/questions/24720013/apache-http-client-ssl-certificate-error + SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() { + @Override + public boolean isTrusted(final X509Certificate[] chain, final String authType) + throws CertificateException { + return true; + } + }).build(); + SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext, + NoopHostnameVerifier.INSTANCE); + httpClient = HttpClientBuilder.create().setSSLSocketFactory(sslsf).build(); + } else { + httpClient = HttpClients.createDefault(); + } + HttpPost httpPost = new HttpPost(uri); + httpPost.setHeader("uebkey", headerUebkey); + httpPost.setHeader("username", headerUsername); + httpPost.setHeader("password", headerPassword); + + StringEntity postEntity = new StringEntity(json, ContentType.create("application/json", Consts.UTF_8)); + httpPost.setEntity(postEntity); + + String responseJson = null; + CloseableHttpResponse response = null; + try { + logger.debug("POST to " + uri); + response = httpClient.execute(httpPost); + logger.info("Status is " + response.getStatusLine()); + if (response.getStatusLine().getStatusCode() != HttpServletResponse.SC_OK) + throw new Exception("Status is " + response.getStatusLine().toString()); + + HttpEntity entity = response.getEntity(); + if (entity == null) { + logger.warn("Entity is null!"); + } else { + long len = entity.getContentLength(); + if (len < 0) + logger.warn("Content length is -1"); + if (len < 2048) { + responseJson = EntityUtils.toString(entity); + logger.debug(responseJson); + } else { + logger.warn("Not implemented - stream content"); + } + EntityUtils.consume(entity); + } + } finally { + if (response != null) + response.close(); + } + return responseJson; + } + +} diff --git a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestControllerTest.java b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestControllerTest.java index 723a67ab..1224898b 100644 --- a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestControllerTest.java +++ b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestControllerTest.java @@ -1,127 +1,127 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/*package org.openecomp.portalapp.portal.controller; - -import java.io.IOException; -import java.util.HashMap; -import java.util.Map; -import java.util.UUID; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.junit.Assert; - -import com.fasterxml.jackson.databind.ObjectMapper; - -*//** - * Tests the endpoints exposed by the Shared Context REST controller in Portal - * Core. - * - * @author clott - *//* -public class SharedContextRestControllerTest { - - private final Log logger = LogFactory.getLog(getClass()); - - private final SharedContextTestProperties properties; - - private final String ckey = "ckey"; - private final String cvalue = "cvalue"; - - // Supposed to be a Portal session ID - private final String cxid = UUID.randomUUID().toString(); - - private final String key = "key123"; - private final String value1 = "first value"; - private final String value2 = "second value"; - - public SharedContextRestControllerTest() throws IOException { - properties = new SharedContextTestProperties(); - } - - @SuppressWarnings("unchecked") - //@Test - public void test() throws Exception { - String response = null, val = null; - ObjectMapper mapper = new ObjectMapper(); - Map responseMap, jsonMap; - - logger.info("Get on empty context"); - response = SharedContextRestClient.getJson(properties, "get", cxid, key); - // Should not exist - just generated the UUID - Map responseMap1 = mapper.readValue(response, Map.class); - response = (String) responseMap1.get("response"); - Assert.assertNull(response); - - logger.info("Set a new context"); - response = setContext(cxid, key, value1); - Assert.assertNotNull(response); - responseMap = mapper.readValue(response, Map.class); - String responseValue = (String) responseMap.get("response"); - Assert.assertNotNull(responseValue); - Assert.assertEquals("added", responseValue); - - logger.info("Get existing context"); - response = SharedContextRestClient.getJson(properties, "get", cxid, key); - responseMap = mapper.readValue(response, Map.class); - jsonMap = (Map) responseMap.get("response"); - Assert.assertNotNull(jsonMap); - val = (String) jsonMap.get(cvalue); - Assert.assertEquals(val, value1); - - logger.info("Overwrite exiting context"); - response = setContext(cxid, key, value2); - Assert.assertNotNull(response); - responseMap = mapper.readValue(response, Map.class); - response = (String) responseMap.get("response"); - Assert.assertNotNull(responseValue); - // Assert.assertEquals("replaced", responseValue); - - logger.info("Get existing context to verify overwrite"); - response = SharedContextRestClient.getJson(properties, "get", cxid, key); - responseMap = mapper.readValue(response, Map.class); - jsonMap = (Map) responseMap.get("response"); - Assert.assertNotNull(jsonMap); - val = (String) jsonMap.get(cvalue); - Assert.assertEquals(val, value2); - - logger.info("Delete one context"); - response = SharedContextRestClient.getJson(properties, "remove", cxid, key); - responseMap = mapper.readValue(response, Map.class); - response = (String) responseMap.get("response"); - Assert.assertEquals(response, "removed"); - - logger.info("Clear the context"); - response = SharedContextRestClient.getJson(properties, "clear", cxid, null); - Assert.assertEquals("", response); - } - - private String setContext(String context, String id, String value) throws Exception { - ObjectMapper mapper = new ObjectMapper(); - HashMap stringMap = new HashMap(); - stringMap.put("context_id", cxid); - stringMap.put(ckey, key); - stringMap.put(cvalue, value2); - String json = mapper.writeValueAsString(stringMap); - String response = SharedContextRestClient.postJson(properties, "set", json); - return response; - } -} -*/ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/*package org.openecomp.portalapp.portal.controller; + +import java.io.IOException; +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.junit.Assert; + +import com.fasterxml.jackson.databind.ObjectMapper; + +*//** + * Tests the endpoints exposed by the Shared Context REST controller in Portal + * Core. + * + * @author clott + *//* +public class SharedContextRestControllerTest { + + private final Log logger = LogFactory.getLog(getClass()); + + private final SharedContextTestProperties properties; + + private final String ckey = "ckey"; + private final String cvalue = "cvalue"; + + // Supposed to be a Portal session ID + private final String cxid = UUID.randomUUID().toString(); + + private final String key = "key123"; + private final String value1 = "first value"; + private final String value2 = "second value"; + + public SharedContextRestControllerTest() throws IOException { + properties = new SharedContextTestProperties(); + } + + @SuppressWarnings("unchecked") + //@Test + public void test() throws Exception { + String response = null, val = null; + ObjectMapper mapper = new ObjectMapper(); + Map responseMap, jsonMap; + + logger.info("Get on empty context"); + response = SharedContextRestClient.getJson(properties, "get", cxid, key); + // Should not exist - just generated the UUID + Map responseMap1 = mapper.readValue(response, Map.class); + response = (String) responseMap1.get("response"); + Assert.assertNull(response); + + logger.info("Set a new context"); + response = setContext(cxid, key, value1); + Assert.assertNotNull(response); + responseMap = mapper.readValue(response, Map.class); + String responseValue = (String) responseMap.get("response"); + Assert.assertNotNull(responseValue); + Assert.assertEquals("added", responseValue); + + logger.info("Get existing context"); + response = SharedContextRestClient.getJson(properties, "get", cxid, key); + responseMap = mapper.readValue(response, Map.class); + jsonMap = (Map) responseMap.get("response"); + Assert.assertNotNull(jsonMap); + val = (String) jsonMap.get(cvalue); + Assert.assertEquals(val, value1); + + logger.info("Overwrite exiting context"); + response = setContext(cxid, key, value2); + Assert.assertNotNull(response); + responseMap = mapper.readValue(response, Map.class); + response = (String) responseMap.get("response"); + Assert.assertNotNull(responseValue); + // Assert.assertEquals("replaced", responseValue); + + logger.info("Get existing context to verify overwrite"); + response = SharedContextRestClient.getJson(properties, "get", cxid, key); + responseMap = mapper.readValue(response, Map.class); + jsonMap = (Map) responseMap.get("response"); + Assert.assertNotNull(jsonMap); + val = (String) jsonMap.get(cvalue); + Assert.assertEquals(val, value2); + + logger.info("Delete one context"); + response = SharedContextRestClient.getJson(properties, "remove", cxid, key); + responseMap = mapper.readValue(response, Map.class); + response = (String) responseMap.get("response"); + Assert.assertEquals(response, "removed"); + + logger.info("Clear the context"); + response = SharedContextRestClient.getJson(properties, "clear", cxid, null); + Assert.assertEquals("", response); + } + + private String setContext(String context, String id, String value) throws Exception { + ObjectMapper mapper = new ObjectMapper(); + HashMap stringMap = new HashMap(); + stringMap.put("context_id", cxid); + stringMap.put(ckey, key); + stringMap.put(cvalue, value2); + String json = mapper.writeValueAsString(stringMap); + String response = SharedContextRestClient.postJson(properties, "set", json); + return response; + } +} +*/ diff --git a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextTestProperties.java b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextTestProperties.java index baed554b..9344150f 100644 --- a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextTestProperties.java +++ b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextTestProperties.java @@ -1,81 +1,81 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.io.IOException; -import java.io.InputStream; -import java.util.Properties; - -/** - * Trivial extension of Properties that populates itself from a known source. - */ -public class SharedContextTestProperties extends Properties { - - private static final long serialVersionUID = -4064100267979036550L; - - // property names - public static final String HOSTNAME = "hostname"; - public static final String PORT = "port"; - public static final String SECURE = "secure"; - public static final String APPNAME = "appname"; - public static final String RESTPATH = "restpath"; - public static final String UEBKEY = "uebkey"; - public static final String USERNAME = "username"; - public static final String PASSWORD = "password"; - - /** - * Expected on the classpath - */ - private static final String propertiesFileName = "shared-context-test.properties"; - - /** - * Constructor populates itself from properties file found in same package. - * - * @throws Exception - */ - public SharedContextTestProperties() throws IOException { - InputStream inStream = getClass().getResourceAsStream(propertiesFileName); - if (inStream == null) - throw new IOException("Failed to find file on classpath: " + propertiesFileName); - super.load(inStream); - inStream.close(); - } - - public int getProperty(final String name, final int defVal) throws NumberFormatException { - String prop = getProperty(name); - if (prop == null) - return defVal; - return Integer.parseInt(prop); - } - - public boolean getProperty(final String name, final boolean defVal) { - String prop = getProperty(name); - if (prop == null) - return false; - return Boolean.parseBoolean(prop); - } - - // Test this class - public static void main(String[] args) throws Exception { - SharedContextTestProperties p = new SharedContextTestProperties(); - System.out.println("Property " + SharedContextTestProperties.HOSTNAME + " = " - + p.getProperty(SharedContextTestProperties.HOSTNAME)); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.io.IOException; +import java.io.InputStream; +import java.util.Properties; + +/** + * Trivial extension of Properties that populates itself from a known source. + */ +public class SharedContextTestProperties extends Properties { + + private static final long serialVersionUID = -4064100267979036550L; + + // property names + public static final String HOSTNAME = "hostname"; + public static final String PORT = "port"; + public static final String SECURE = "secure"; + public static final String APPNAME = "appname"; + public static final String RESTPATH = "restpath"; + public static final String UEBKEY = "uebkey"; + public static final String USERNAME = "username"; + public static final String PASSWORD = "password"; + + /** + * Expected on the classpath + */ + private static final String propertiesFileName = "shared-context-test.properties"; + + /** + * Constructor populates itself from properties file found in same package. + * + * @throws Exception + */ + public SharedContextTestProperties() throws IOException { + InputStream inStream = getClass().getResourceAsStream(propertiesFileName); + if (inStream == null) + throw new IOException("Failed to find file on classpath: " + propertiesFileName); + super.load(inStream); + inStream.close(); + } + + public int getProperty(final String name, final int defVal) throws NumberFormatException { + String prop = getProperty(name); + if (prop == null) + return defVal; + return Integer.parseInt(prop); + } + + public boolean getProperty(final String name, final boolean defVal) { + String prop = getProperty(name); + if (prop == null) + return false; + return Boolean.parseBoolean(prop); + } + + // Test this class + public static void main(String[] args) throws Exception { + SharedContextTestProperties p = new SharedContextTestProperties(); + System.out.println("Property " + SharedContextTestProperties.HOSTNAME + " = " + + p.getProperty(SharedContextTestProperties.HOSTNAME)); + } +} diff --git a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/shared-context-test.properties b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/shared-context-test.properties index cfdf3b7e..f6315ab5 100644 --- a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/shared-context-test.properties +++ b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/controller/shared-context-test.properties @@ -1,28 +1,28 @@ -### -# ================================================================================ -# ECOMP Portal -# ================================================================================ -# Copyright (C) 2017 AT&T Intellectual Property -# ================================================================================ -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ================================================================================ -### - -hostname= ecomp.homer.att.com -# port = 80 -secure = true -appname = ecompportal -restpath = context -uebkey = xgnLrmNmkfCRnIwa -username = Default -password = AppPassword!1 +### +# ================================================================================ +# ECOMP Portal +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ================================================================================ +### + +hostname= ecomp.homer.att.com +# port = 80 +secure = true +appname = ecompportal +restpath = context +uebkey = xgnLrmNmkfCRnIwa +username = Default +password = AppPassword!1 diff --git a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/listener/HealthMonitorTest.java b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/listener/HealthMonitorTest.java index 6d01f2c9..f87f5bd1 100644 --- a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/listener/HealthMonitorTest.java +++ b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/listener/HealthMonitorTest.java @@ -1,36 +1,36 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.listener; - -import static org.junit.Assert.assertEquals; - -import org.junit.Test; - -public class HealthMonitorTest { - - @Test - public void initialFlagsTest() { - assertEquals(false, HealthMonitor.isBackEndUp()); - assertEquals(false, HealthMonitor.isFrontEndUp()); - assertEquals(false, HealthMonitor.isDatabaseUp()); - assertEquals(false, HealthMonitor.isUebUp()); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.listener; + +import static org.junit.Assert.assertEquals; + +import org.junit.Test; + +public class HealthMonitorTest { + + @Test + public void initialFlagsTest() { + assertEquals(false, HealthMonitor.isBackEndUp()); + assertEquals(false, HealthMonitor.isFrontEndUp()); + assertEquals(false, HealthMonitor.isDatabaseUp()); + assertEquals(false, HealthMonitor.isUebUp()); + } + +} diff --git a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/utils/EcompPortalUtilsTest.java b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/utils/EcompPortalUtilsTest.java index b8b7bb1b..c71c8a11 100644 --- a/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/utils/EcompPortalUtilsTest.java +++ b/ecomp-portal-BE-common/src/test/java/org/openecomp/portalapp/portal/utils/EcompPortalUtilsTest.java @@ -1,37 +1,37 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.utils; - -import static org.junit.Assert.assertEquals; - -import org.junit.Test; - -public class EcompPortalUtilsTest { - - @Test - public void legitimateAttuidSuccessTest() { - assertEquals(true, EcompPortalUtils.legitimateUserId("mm016f")); - } - - @Test - public void legitimateAttuidFailureTest() { - assertEquals(false, EcompPortalUtils.legitimateUserId("1#@23456")); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.utils; + +import static org.junit.Assert.assertEquals; + +import org.junit.Test; + +public class EcompPortalUtilsTest { + + @Test + public void legitimateAttuidSuccessTest() { + assertEquals(true, EcompPortalUtils.legitimateUserId("mm016f")); + } + + @Test + public void legitimateAttuidFailureTest() { + assertEquals(false, EcompPortalUtils.legitimateUserId("1#@23456")); + } +} diff --git a/ecomp-portal-BE-os/README.md b/ecomp-portal-BE-os/README.md index 09ae55b3..6464c276 100644 --- a/ecomp-portal-BE-os/README.md +++ b/ecomp-portal-BE-os/README.md @@ -1,23 +1,22 @@ -# ECOMP Portal Web Application Back End Common Files +# ECOMP Portal Web Application Back End for Open Source ## Overview -This is a Maven overlay project with the ECOMP Portal back-end common files. -This is not a stand-alone web application. This project has common Java classes -that are used for the ECOMP Portal web application. Those specific versions are built using separate -Maven projects that copy in ("overlay") the contents of this project at package time. +This is a Maven project with the ECOMP Portal web application back-end files +for public release, containing Java files specific to requirements of the +open-source version. This project uses the Maven war plugin to copy in +("overlay") the contents of the ECOMP Portal web application back-end +common distribution at package time. +Use Apache Maven to build, package and deploy this webapp to a web container +like Apache Tomcat. Eclipse users must install the M2E-WTP connector, see +https://www.eclipse.org/m2e-wtp/ ## Release Notes -Release notes for all ECOMP Portal *COMMON* files, back-end files and front-end files, -are tracked here for convenience. +Version 1.1.0, July 2017 +- [Portal-7] Improvements added as part of the rebasing process +- [Portal-6] Updates to License and Trademark in the PORTAL Source Code -The last number in each build identifier is assigned by the Jenkins CI system to -the back-end component. - - - -Build 1.1.0-SNAPSHOT, ?? May 2017 -[ PORTAL 7] Rebase; This rebasing includes addition of common libraries and common overlays projects -and abstraction of components \ No newline at end of file +Version 1.0.0, February 2017 +- Initial release diff --git a/ecomp-portal-BE-os/pom.xml b/ecomp-portal-BE-os/pom.xml index 8ff87680..0e7eb0bd 100644 --- a/ecomp-portal-BE-os/pom.xml +++ b/ecomp-portal-BE-os/pom.xml @@ -20,7 +20,6 @@ https://nexus.onap.org content/repositories/snapshots/ content/repositories/releases/ - content/repositories/staging/ @@ -41,7 +40,6 @@ true - @@ -51,29 +49,20 @@ - - + ecomp-releases OpenECOMP - Release Repository ${nexusproxy}/${releaseNexusPath} - - ecomp-snapshots - OpenECOMP - Snapshot Repository - ${nexusproxy}/${snapshotNexusPath} - - - - ecomp-staging - OpenECOMP - Staging Repository - ${nexusproxy}/${stagingNexusPath} + ecomp-snapshots + OpenECOMP - Snapshot Repository + ${nexusproxy}/${snapshotNexusPath} - - ecomp-public - ecomp onap public Repository - https://nexus.onap.org/content/groups/public + ecomp-public + ecomp onap public Repository + https://nexus.onap.org/content/groups/public @@ -702,6 +691,16 @@ + + org.aspectj + aspectjrt + 1.8.9 + + + org.aspectj + aspectjweaver + 1.8.9 + diff --git a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/conf/ExternalAppConfig.java b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/conf/ExternalAppConfig.java index 971c671a..a16cf56b 100644 --- a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/conf/ExternalAppConfig.java +++ b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/conf/ExternalAppConfig.java @@ -97,6 +97,7 @@ public class ExternalAppConfig extends AppConfig implements Configurable { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { + registry.addResourceHandler("/app/fusion/**").addResourceLocations("/app/fusion/"); registry.addResourceHandler("/static/**").addResourceLocations("/static/"); registry.addResourceHandler("/images/**").addResourceLocations("/images/"); registry.addResourceHandler("/**").addResourceLocations("/public/"); diff --git a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/controller/ONAPLoginController.java b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/controller/ONAPLoginController.java index 1f45d982..67f79b8b 100644 --- a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/controller/ONAPLoginController.java +++ b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/controller/ONAPLoginController.java @@ -1,81 +1,81 @@ -/*- - * ================================================================================ - * ECOMP Portal SDK - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.controller; - -import java.util.HashMap; -import java.util.Map; - -import javax.servlet.http.HttpServletRequest; -import javax.servlet.http.HttpServletResponse; - -import org.openecomp.portalsdk.core.auth.LoginStrategy; -import org.openecomp.portalsdk.core.controller.UnRestrictedBaseController; -import org.openecomp.portalsdk.core.onboarding.listener.PortalTimeoutHandler; -import org.openecomp.portalsdk.core.service.LoginService; -import org.openecomp.portalsdk.core.service.ProfileService; -import org.openecomp.portalsdk.core.web.support.AppUtils; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Controller; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; -import org.springframework.web.servlet.ModelAndView; - -@Controller -@RequestMapping("/") -public class ONAPLoginController extends UnRestrictedBaseController { - @Autowired - ProfileService service; - @Autowired - private LoginService loginService; - @Autowired - private LoginStrategy loginStrategy; - String viewName; - - @RequestMapping(value = { "/doLogin" }, method = RequestMethod.GET) - public ModelAndView doLogin(HttpServletRequest request, HttpServletResponse response) throws Exception { - return loginStrategy.doLogin(request, response); - } - - public String getJessionId(HttpServletRequest request) { - return request.getSession().getId(); - } - - protected void initateSessionMgtHandler(HttpServletRequest request) { - String jSessionId = getJessionId(request); - PortalTimeoutHandler.sessionCreated(jSessionId, jSessionId, AppUtils.getSession(request)); - } - - public String getViewName() { - return viewName; - } - - public void setViewName(String viewName) { - this.viewName = viewName; - } - - public LoginService getLoginService() { - return loginService; - } - - public void setLoginService(LoginService loginService) { - this.loginService = loginService; - } - -} +/*- + * ================================================================================ + * ECOMP Portal SDK + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.controller; + +import java.util.HashMap; +import java.util.Map; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.openecomp.portalsdk.core.auth.LoginStrategy; +import org.openecomp.portalsdk.core.controller.UnRestrictedBaseController; +import org.openecomp.portalsdk.core.onboarding.listener.PortalTimeoutHandler; +import org.openecomp.portalsdk.core.service.LoginService; +import org.openecomp.portalsdk.core.service.ProfileService; +import org.openecomp.portalsdk.core.web.support.AppUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.servlet.ModelAndView; + +@Controller +@RequestMapping("/") +public class ONAPLoginController extends UnRestrictedBaseController { + @Autowired + ProfileService service; + @Autowired + private LoginService loginService; + @Autowired + private LoginStrategy loginStrategy; + String viewName; + + @RequestMapping(value = { "/doLogin" }, method = RequestMethod.GET) + public ModelAndView doLogin(HttpServletRequest request, HttpServletResponse response) throws Exception { + return loginStrategy.doLogin(request, response); + } + + public String getJessionId(HttpServletRequest request) { + return request.getSession().getId(); + } + + protected void initateSessionMgtHandler(HttpServletRequest request) { + String jSessionId = getJessionId(request); + PortalTimeoutHandler.sessionCreated(jSessionId, jSessionId, AppUtils.getSession(request)); + } + + public String getViewName() { + return viewName; + } + + public void setViewName(String viewName) { + this.viewName = viewName; + } + + public LoginService getLoginService() { + return loginService; + } + + public void setLoginService(LoginService loginService) { + this.loginService = loginService; + } + +} diff --git a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/EPAppServiceImpl.java b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/EPAppServiceImpl.java index 074821f6..1f829380 100644 --- a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/EPAppServiceImpl.java +++ b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/EPAppServiceImpl.java @@ -20,7 +20,9 @@ package org.openecomp.portalapp.portal.service; +import java.security.GeneralSecurityException; import java.util.ArrayList; +import java.util.LinkedList; import java.util.List; import java.util.TreeSet; @@ -33,6 +35,9 @@ import org.springframework.context.annotation.EnableAspectJAutoProxy; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; +import com.att.nsa.cambria.client.CambriaClientFactory; +import com.att.nsa.cambria.client.CambriaTopicManager; + @Service("epAppService") @Transactional @org.springframework.context.annotation.Configuration @@ -68,4 +73,9 @@ public class EPAppServiceImpl extends EPAppCommonServiceImpl implements EPAppSer return userApps; } + + public CambriaTopicManager getTopicManager(LinkedList urlList, String key, String secret) throws GeneralSecurityException, Exception{ + return CambriaClientFactory.createTopicManager( null, urlList, key, secret); + } + } \ No newline at end of file diff --git a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/UserRolesService.java b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/UserRolesService.java deleted file mode 100644 index b285051c..00000000 --- a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/UserRolesService.java +++ /dev/null @@ -1,58 +0,0 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.service; - -import java.util.List; - -import org.apache.cxf.transport.http.HTTPException; -import org.openecomp.portalapp.portal.domain.EPRole; -import org.openecomp.portalapp.portal.domain.EPUser; -import org.openecomp.portalapp.portal.domain.EPUserApp; -import org.openecomp.portalapp.portal.transport.AppWithRolesForUser; -import org.openecomp.portalapp.portal.transport.RoleInAppForUser; -import org.openecomp.portalapp.portal.transport.UserApplicationRoles; - -public interface UserRolesService { - - public List getAppRolesForUser(Long appId, String userId); - - public boolean setAppWithUserRoleStateForUser(EPUser user, AppWithRolesForUser newAppRolesForUser); - - public List getUsersFromAppEndpoint(Long appId) throws HTTPException; - - public List importRolesFromRemoteApplication(Long appId) throws HTTPException; - - - /** - * Gets entries from the local fn_user_role table for the specified user and - * app. - * - * @param appId - * ID of row in fn_app - * @param userid - * ID of row in fn_user - * @return List of EPRole; empty if none found. - */ - public List getCachedAppRolesForUser(Long appId, Long userId); - - public String updateRemoteUserProfile(String orgUserId, Long appId); - - -} diff --git a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/UserRolesServiceImpl.java b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/UserRolesServiceImpl.java index a0aac922..1f98e752 100644 --- a/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/UserRolesServiceImpl.java +++ b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/portal/service/UserRolesServiceImpl.java @@ -20,49 +20,23 @@ package org.openecomp.portalapp.portal.service; import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; -import java.util.HashMap; -import java.util.HashSet; import java.util.List; -import java.util.Set; -import java.util.TreeSet; -import javax.annotation.PostConstruct; - -import org.apache.commons.lang.StringUtils; import org.apache.cxf.transport.http.HTTPException; -import org.hibernate.Query; -import org.hibernate.Session; -import org.hibernate.SessionFactory; -import org.hibernate.Transaction; import org.openecomp.portalapp.portal.domain.EPApp; import org.openecomp.portalapp.portal.domain.EPRole; import org.openecomp.portalapp.portal.domain.EPUser; import org.openecomp.portalapp.portal.domain.EPUserApp; import org.openecomp.portalapp.portal.logging.aop.EPMetricsLog; -import org.openecomp.portalapp.portal.logging.format.EPAppMessagesEnum; -import org.openecomp.portalapp.portal.logging.logic.EPLogUtil; -import org.openecomp.portalapp.portal.transport.AppWithRolesForUser; -import org.openecomp.portalapp.portal.transport.FunctionalMenuItem; -import org.openecomp.portalapp.portal.transport.FunctionalMenuRole; import org.openecomp.portalapp.portal.transport.RemoteUserWithRoles; -import org.openecomp.portalapp.portal.transport.RoleInAppForUser; -import org.openecomp.portalapp.portal.transport.RolesInAppForUser; import org.openecomp.portalapp.portal.transport.UserApplicationRoles; -import org.openecomp.portalapp.portal.utils.EPSystemProperties; -import org.openecomp.portalapp.portal.utils.EcompPortalUtils; import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate; -import org.openecomp.portalsdk.core.restful.domain.EcompRole; import org.openecomp.portalsdk.core.service.DataAccessService; -import org.openecomp.portalsdk.core.service.UserProfileService; -import org.openecomp.portalsdk.core.util.SystemProperties; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.EnableAspectJAutoProxy; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; -import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.DeserializationFeature; import com.fasterxml.jackson.databind.ObjectMapper; @@ -71,398 +45,14 @@ import com.fasterxml.jackson.databind.ObjectMapper; @org.springframework.context.annotation.Configuration @EnableAspectJAutoProxy @EPMetricsLog -public class UserRolesServiceImpl implements UserRolesService { - private static Long ACCOUNT_ADMIN_ROLE_ID = 999L; +public class UserRolesServiceImpl extends UserRolesCommonServiceImpl implements UserRolesService { private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(UserRolesServiceImpl.class); - @Autowired - private SessionFactory sessionFactory; @Autowired private DataAccessService dataAccessService; @Autowired - SearchService searchService; - @Autowired - EPAppService appsService; - @Autowired - EPLdapService ldapService; - @Autowired - ApplicationsRestClientService applicationsRestClientService; - @Autowired - EPRoleService epRoleService; - @Autowired - UserProfileService userProfileService; - - @PostConstruct - private void init() { - try { - ACCOUNT_ADMIN_ROLE_ID = Long - .valueOf(SystemProperties.getProperty(EPSystemProperties.ACCOUNT_ADMIN_ROLE_ID)); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } - } - - private static HashMap hashMapFromEcompRoles(EcompRole[] ecompRoles) { - HashMap result = new HashMap(); - if (ecompRoles != null) { - for (int i = 0; i < ecompRoles.length; i++) { - if (ecompRoles[i].getId() != null) { - result.put(ecompRoles[i].getId(), ecompRoles[i]); - } - } - } - return result; - } - - private void createLocalUserIfNecessary(String orgUserId) { - if (StringUtils.isEmpty(orgUserId)) { - logger.error(EELFLoggerDelegate.errorLogger, "createLocalUserIfNecessary : empty orgUserId!"); - return; - } - Session localSession = null; - Transaction transaction = null; - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - @SuppressWarnings("unchecked") - List userList = localSession - .createQuery("from " + EPUser.class.getName() + " where org_user_id='" + orgUserId + "'").list(); - if (userList.size() == 0) { - EPUser client = searchService.searchUserByUserId(orgUserId); - if (client == null) { - String msg = "cannot create user " + orgUserId + ", because he cannot be found in phonebook"; - logger.error(EELFLoggerDelegate.errorLogger, msg); - } else { - client.setLoginId(orgUserId); - client.setActive(true); - localSession.save(client); - } - } - transaction.commit(); - } catch (Exception e) { - EPLogUtil.logEcompError(EPAppMessagesEnum.BeDaoSystemError); - EcompPortalUtils.rollbackTransaction(transaction, "searchOrCreateUser rollback, exception = " + e); - } finally { - EcompPortalUtils.closeLocalSession(localSession, "searchOrCreateUser"); - } - } - - private static void syncUserRoles(SessionFactory sessionFactory, String orgUserId, Long appId, - EcompRole[] userAppRoles) throws Exception { - HashMap newUserAppRolesMap = hashMapFromEcompRoles(userAppRoles); - boolean result = false; - Session localSession = null; - Transaction transaction = null; - - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - @SuppressWarnings("unchecked") - List userList = localSession - .createQuery("from " + EPUser.class.getName() + " where org_user_id='" + orgUserId + "'").list(); - if (userList.size() > 0) { - EPUser client = userList.get(0); - @SuppressWarnings("unchecked") - List userRoles = localSession.createQuery("from " + EPUserApp.class.getName() - + " where app.id=" + appId + " and userId=" + client.getId()).list(); - for (EPUserApp userRole : userRoles) { - if (!userRole.getRoleId().equals(ACCOUNT_ADMIN_ROLE_ID)) { - - Long userAppRoleId = userRole.getAppRoleId(); - if (!newUserAppRolesMap.containsKey(userAppRoleId)) { - localSession.delete(userRole); - } else { - newUserAppRolesMap.remove(userAppRoleId); - } - } - } - Collection newRolesToAdd = newUserAppRolesMap.values(); - if (newRolesToAdd.size() > 0) { - EPApp app = (EPApp) localSession.get(EPApp.class, appId); - @SuppressWarnings("unchecked") - List roles = localSession - .createQuery("from " + EPRole.class.getName() + " where appId=" + appId).list(); - HashMap rolesMap = new HashMap(); - for (EPRole role : roles) { - rolesMap.put(role.getAppRoleId(), role); - } - for (EcompRole userRole : newRolesToAdd) { - EPUserApp userApp = new EPUserApp(); - userApp.setUserId(client.getId()); - userApp.setApp(app); - userApp.setRole(rolesMap.get(userRole.getId())); - localSession.save(userApp); - } - } - } - transaction.commit(); - result = true; - } catch (Exception e) { - EPLogUtil.logEcompError(EPAppMessagesEnum.BeDaoSystemError); - EcompPortalUtils.rollbackTransaction(transaction, - "Exception occurred in syncUserRoles, Details: " + EcompPortalUtils.getStackTrace(e)); - } finally { - localSession.close(); - if (!result) { - throw new Exception( - "Exception occurred in syncUserRoles while closing database session for app: '" + appId + "'."); - } - } - } - - // Called when getting the list of roles for the user - private List constructRolesInAppForUserGet(EcompRole[] appRoles, EcompRole[] userAppRoles) { - List rolesInAppForUser = new ArrayList(); - - Set userAppRolesMap = new HashSet(); - if (userAppRoles != null) { - for (EcompRole ecompRole : userAppRoles) { - userAppRolesMap.add(ecompRole.getId()); - } - } else { - String message = String - .format("UserRolesServiceImpl.constructRolesInAppForUserGet has received userAppRoles list empty."); - logger.info(EELFLoggerDelegate.errorLogger, message); - } - - if (appRoles != null) { - for (EcompRole ecompRole : appRoles) { - RoleInAppForUser roleForUser = new RoleInAppForUser(ecompRole.getId(), ecompRole.getName()); - roleForUser.isApplied = userAppRolesMap.contains(ecompRole.getId()); - rolesInAppForUser.add(roleForUser); - } - } else { - String message = String - .format("UserRolesServiceImpl.constructRolesInAppForUser has received appRoles list empty."); - logger.info(EELFLoggerDelegate.errorLogger, message); - } - return rolesInAppForUser; - } - - public List getAppRolesForUser(Long appId, String orgUserId) { - List rolesInAppForUser = null; - try { - EcompRole[] appRoles = applicationsRestClientService.get(EcompRole[].class, appId, "/roles"); - - // Test this error case, for generating an internal Ecomp Portal - // error - // EcompRole[] appRoles = null; - // If there is an exception in the rest client api, then null will - // be returned. - if (appRoles != null) { - syncAppRoles(sessionFactory, appId, appRoles); - EcompRole[] userAppRoles; - try { - userAppRoles = applicationsRestClientService.get(EcompRole[].class, appId, - String.format("/user/%s/roles", orgUserId)); - if (userAppRoles == null) { - if (EcompPortalUtils.getExternalAppResponseCode() == 400) { - EcompPortalUtils.setExternalAppResponseCode(200); - logger.error(EELFLoggerDelegate.errorLogger, - "400 returned from /user/{userid}/roles, assuming user doesn't exist, app is framework SDK based, and things are ok. Overriding to 200 until framework SDK returns a useful response."); - logger.debug(EELFLoggerDelegate.debugLogger, - "400 returned from /user/{userid}/roles, assuming user doesn't exist, app is framework SDK based, and things are ok. Overriding to 200 until framework SDK returns a useful response."); - } - } - // If the remote application isn't down we MUST to sync user - // roles here in case we have this user here! - syncUserRoles(sessionFactory, orgUserId, appId, userAppRoles); - } catch (Exception e) { - // TODO: we may need to check if user exists, maybe remote - // app is down. - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - logger.error(EELFLoggerDelegate.errorLogger, - "LR: user " + orgUserId + " does not exist in remote application: " + appId + "."); - userAppRoles = new EcompRole[0]; - } - rolesInAppForUser = constructRolesInAppForUserGet(appRoles, userAppRoles); - // Test this error case, for generating an external app error - // EcompPortalUtils.setResponseCode(404); - } - } catch (Exception e) { - String message = String.format( - "Received an exception while performing getAppRolesForUser for the User %s, and for the AppId %s, Details: %s", - orgUserId, Long.toString(appId), EcompPortalUtils.getStackTrace(e)); - logger.error(EELFLoggerDelegate.errorLogger, message); - } - return rolesInAppForUser; - - } - - // copies of methods in GetAppsWithUserRoleState - private void syncAppRoles(SessionFactory sessionFactory, Long appId, EcompRole[] appRoles) throws Exception { - logger.debug(EELFLoggerDelegate.debugLogger, "entering syncAppRoles for appId: " + appId); - HashMap newRolesMap = hashMapFromEcompRoles(appRoles); - boolean result = false; - Session localSession = null; - Transaction transaction = null; - - try { - localSession = sessionFactory.openSession(); - transaction = localSession.beginTransaction(); - // Attention! All roles from remote application supposed to be - // active! - @SuppressWarnings("unchecked") - List currentAppRoles = localSession - .createQuery("from " + EPRole.class.getName() + " where appId=" + appId).list(); - List obsoleteRoles = new ArrayList(); - for (int i = 0; i < currentAppRoles.size(); i++) { - EPRole oldAppRole = currentAppRoles.get(i); - if (oldAppRole.getAppRoleId() != null) { - EcompRole role = null; - role = newRolesMap.get(oldAppRole.getAppRoleId()); - if (role != null) { - if (!(role.getName() == null || oldAppRole.getName().equals(role.getName()))) { - oldAppRole.setName(role.getName()); - localSession.update(oldAppRole); - } - newRolesMap.remove(oldAppRole.getAppRoleId()); - } else { - obsoleteRoles.add(oldAppRole); - } - } else { - obsoleteRoles.add(oldAppRole); - } - } - Collection newRolesToAdd = newRolesMap.values(); - for (EcompRole role : newRolesToAdd) { - logger.debug(EELFLoggerDelegate.debugLogger, "about to add missing role: " + role.toString()); - EPRole newRole = new EPRole(); - // Attention! All roles from remote application supposed to be - // active! - newRole.setActive(true); - newRole.setName(role.getName()); - newRole.setAppId(appId); - newRole.setAppRoleId(role.getId()); - localSession.save(newRole); - } - if (obsoleteRoles.size() > 0) { - logger.debug(EELFLoggerDelegate.debugLogger, "we have obsolete roles to delete"); - for (EPRole role : obsoleteRoles) { - logger.debug(EELFLoggerDelegate.debugLogger, "obsolete role: " + role.toString()); - Long roleId = role.getId(); - // delete obsolete roles here - // Must delete all records with foreign key constraints on - // fn_role: - // fn_user_role, fn_role_composite, fn_role_function, - // fn_user_pseudo_role, fn_menu_functional_roles. - // And for fn_menu_functional, if no other roles for that - // menu item, remove the url. - - // Delete from fn_user_role - @SuppressWarnings("unchecked") - List userRoles = localSession.createQuery( - "from " + EPUserApp.class.getName() + " where app.id=" + appId + " and role_id=" + roleId) - .list(); - - logger.debug(EELFLoggerDelegate.debugLogger, "number of userRoles to delete: " + userRoles.size()); - for (EPUserApp userRole : userRoles) { - logger.debug(EELFLoggerDelegate.debugLogger, - "about to delete userRole: " + userRole.toString()); - localSession.delete(userRole); - logger.debug(EELFLoggerDelegate.debugLogger, - "finished deleting userRole: " + userRole.toString()); - } - - // Delete from fn_menu_functional_roles - @SuppressWarnings("unchecked") - List funcMenuRoles = localSession - .createQuery("from " + FunctionalMenuRole.class.getName() + " where roleId=" + roleId) - .list(); - int numMenuRoles = funcMenuRoles.size(); - logger.debug(EELFLoggerDelegate.debugLogger, - "number of funcMenuRoles for roleId: " + roleId + ": " + numMenuRoles); - for (FunctionalMenuRole funcMenuRole : funcMenuRoles) { - Long menuId = funcMenuRole.menuId; - // If this is the only role for this menu item, then the - // app and roles will be gone, - // so must null out the url too, to be consistent - @SuppressWarnings("unchecked") - List funcMenuRoles2 = localSession - .createQuery("from " + FunctionalMenuRole.class.getName() + " where menuId=" + menuId) - .list(); - int numMenuRoles2 = funcMenuRoles2.size(); - logger.debug(EELFLoggerDelegate.debugLogger, - "number of funcMenuRoles for menuId: " + menuId + ": " + numMenuRoles2); - localSession.delete(funcMenuRole); - if (numMenuRoles2 == 1) { - // If this is the only role for this menu item, then - // the app and roles will be gone, - // so must null out the url too, to be consistent - logger.debug(EELFLoggerDelegate.debugLogger, - "There is exactly 1 menu item for this role, so emptying the url"); - @SuppressWarnings("unchecked") - List funcMenuItems = localSession - .createQuery( - "from " + FunctionalMenuItem.class.getName() + " where menuId=" + menuId) - .list(); - if (funcMenuItems.size() > 0) { - logger.debug(EELFLoggerDelegate.debugLogger, "got the menu item"); - FunctionalMenuItem funcMenuItem = funcMenuItems.get(0); - funcMenuItem.url = ""; - localSession.update(funcMenuItem); - } - } - } - - // Delete from fn_role_function - String sql = "DELETE FROM fn_role_function WHERE role_id=" + roleId; - logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); - Query query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Delete from fn_role_composite - sql = "DELETE FROM fn_role_composite WHERE parent_role_id=" + roleId + " OR child_role_id=" - + roleId; - logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - // Delete from fn_user_pseudo_role - sql = "DELETE FROM fn_user_pseudo_role WHERE pseudo_role_id=" + roleId; - logger.debug(EELFLoggerDelegate.debugLogger, "Executing query: " + sql); - query = localSession.createSQLQuery(sql); - query.executeUpdate(); - - logger.debug(EELFLoggerDelegate.debugLogger, "about to delete the role: " + role.toString()); - localSession.delete(role); - logger.debug(EELFLoggerDelegate.debugLogger, "deleted the role"); - } - } - logger.debug(EELFLoggerDelegate.debugLogger, "about to commit the transaction"); - transaction.commit(); - logger.debug(EELFLoggerDelegate.debugLogger, "committed the transaction"); - result = true; - } catch (Exception e) { - EPLogUtil.logEcompError(EPAppMessagesEnum.BeDaoSystemError); - EcompPortalUtils.rollbackTransaction(transaction, - "Exception occurred in syncAppRoles, Details: " + EcompPortalUtils.getStackTrace(e)); - } finally { - localSession.close(); - if (!result) { - throw new Exception( - "Exception occurred in syncAppRoles while closing database session for app: '" + appId + "'."); - } - } - } - - // Called when updating the list of roles for the user - private RolesInAppForUser constructRolesInAppForUserUpdate(String orgUserId, Long appId, - Set userRolesInRemoteApp) { - RolesInAppForUser result; - result = new RolesInAppForUser(); - result.appId = appId; - result.orgUserId = orgUserId; - for (EcompRole role : userRolesInRemoteApp) { - RoleInAppForUser roleInAppForUser = new RoleInAppForUser(); - roleInAppForUser.roleId = role.getId(); - roleInAppForUser.roleName = role.getName(); - roleInAppForUser.isApplied = new Boolean(true); - result.roles.add(roleInAppForUser); - } - return result; - } + private ApplicationsRestClientService applicationsRestClientService; private EPUser getUserFromRemoteApp(String orgUserId, EPApp app, ApplicationsRestClientService applicationsRestClientService) throws HTTPException { @@ -471,41 +61,6 @@ public class UserRolesServiceImpl implements UserRolesService { return user; } - private boolean remoteUserShouldBeCreated(List roleInAppForUserList) { - for (RoleInAppForUser roleInAppForUser : roleInAppForUserList) { - if (roleInAppForUser.isApplied.booleanValue()) { - return true; - } - } - return false; - } - - private Set postUsersRolesToRemoteApp(List roleInAppForUserList, ObjectMapper mapper, - ApplicationsRestClientService applicationsRestClientService, Long appId, String orgUserId) - throws JsonProcessingException, HTTPException { - Set updatedUserRoles = constructUsersEcompRoles(roleInAppForUserList); - String userRolesAsString = mapper.writeValueAsString(updatedUserRoles); - applicationsRestClientService.post(EcompRole.class, appId, userRolesAsString, - String.format("/user/%s/roles", orgUserId)); - // TODO: We should add code that verifies that the post operation did - // succeed. Because the SDK may still return 200 OK with an html page - // even when it fails! - return updatedUserRoles; - } - - private Set constructUsersEcompRoles(List roleInAppForUserList) { - Set existingUserRoles = new TreeSet(); - for (RoleInAppForUser roleInAppForUser : roleInAppForUserList) { - if (roleInAppForUser.isApplied) { - EcompRole ecompRole = new EcompRole(); - ecompRole.setId(roleInAppForUser.roleId); - ecompRole.setName(roleInAppForUser.roleName); - existingUserRoles.add(ecompRole); - } - } - return existingUserRoles; - } - private static void createNewUserOnRemoteApp(String orgUserId, EPApp app, ApplicationsRestClientService applicationsRestClientService, SearchService searchService, ObjectMapper mapper) throws Exception { @@ -527,126 +82,6 @@ public class UserRolesServiceImpl implements UserRolesService { applicationsRestClientService.post(EPUser.class, app.getId(), userAsString, String.format("/user", orgUserId)); } - public String updateRemoteUserProfile(String orgUserId, Long appId) { - - ObjectMapper mapper = new ObjectMapper(); - mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); - EPUser client = searchService.searchUserByUserId(orgUserId); - EPUser newUser = new EPUser(); - newUser.setActive(client.getActive()); - newUser.setFirstName(client.getFirstName()); - newUser.setLastName(client.getLastName()); - newUser.setLoginId(client.getLoginId()); - newUser.setLoginPwd(client.getLoginPwd()); - newUser.setMiddleInitial(client.getMiddleInitial()); - newUser.setEmail(client.getEmail()); - newUser.setOrgUserId(client.getLoginId()); - try { - String userAsString = mapper.writeValueAsString(newUser); - List appList = appsService.getUserRemoteApps(client.getId().toString()); - // applicationsRestClientService.post(EPUser.class, appId, - // userAsString, String.format("/user", orgUserId)); - for (EPApp eachApp : appList) { - try { - applicationsRestClientService.post(EPUser.class, eachApp.getId(), userAsString, - String.format("/user/%s", orgUserId)); - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, "Failed to update user: " + client.getOrgUserId() - + " in remote app. appId = " + eachApp.getId()); - } - } - } catch (Exception e) { - // TODO Auto-generated catch block - e.printStackTrace(); - return "failure"; - } - - return "success"; - - } - - private static final Object syncRests = new Object(); - - @Override - public boolean setAppWithUserRoleStateForUser(EPUser user, AppWithRolesForUser newAppRolesForUser) { - boolean result = false; - String orgUserId = ""; - if (newAppRolesForUser != null && newAppRolesForUser.orgUserId != null) { - orgUserId = newAppRolesForUser.orgUserId.trim(); - } - Long appId = newAppRolesForUser.appId; - List roleInAppForUserList = newAppRolesForUser.appRoles; - if (orgUserId.length() > 0) { - ObjectMapper mapper = new ObjectMapper(); - mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false); - - try { - EPApp app = appsService.getApp(appId); - EPUser remoteAppUser = getUserFromRemoteApp(orgUserId, app, applicationsRestClientService); - if (remoteAppUser == null) { - if (remoteUserShouldBeCreated(roleInAppForUserList)) { - createNewUserOnRemoteApp(orgUserId, app, applicationsRestClientService, searchService, mapper); - // If we succeed, we know that the new user was - // persisted on remote app. - remoteAppUser = getUserFromRemoteApp(orgUserId, app, applicationsRestClientService); - if (remoteAppUser == null) { - logger.error(EELFLoggerDelegate.errorLogger, - "Failed to persist new user: " + orgUserId + " in remote app. appId = " + appId); - // return null; - } - } - } - if (remoteAppUser != null) { - Set userRolesInRemoteApp = postUsersRolesToRemoteApp(roleInAppForUserList, mapper, - applicationsRestClientService, appId, orgUserId); - RolesInAppForUser rolesInAppForUser = constructRolesInAppForUserUpdate(orgUserId, appId, - userRolesInRemoteApp); - result = applyChangesInUserRolesForAppToEcompDB(rolesInAppForUser); - } - } catch (Exception e) { - String message = String.format( - "Failed to create user or update user roles for the User %s, and for the AppId %s, Details: %s", - orgUserId, Long.toString(appId), EcompPortalUtils.getStackTrace(e)); - logger.error(EELFLoggerDelegate.errorLogger, message); - result = false; - } - - } - return result; - } - - // This is for a single app - private boolean applyChangesInUserRolesForAppToEcompDB(RolesInAppForUser rolesInAppForUser) { - boolean result = false; - String orgUserId = rolesInAppForUser.orgUserId; - Long appId = rolesInAppForUser.appId; - synchronized (syncRests) { - if (rolesInAppForUser != null) { - createLocalUserIfNecessary(orgUserId); - } - - if (rolesInAppForUser != null) { - EcompRole[] userAppRoles = new EcompRole[rolesInAppForUser.roles.size()]; - for (int i = 0; i < rolesInAppForUser.roles.size(); i++) { - RoleInAppForUser roleInAppForUser = rolesInAppForUser.roles.get(i); - EcompRole role = new EcompRole(); - role.setId(roleInAppForUser.roleId); - role.setName(roleInAppForUser.roleName); - userAppRoles[i] = role; - } - try { - syncUserRoles(sessionFactory, orgUserId, appId, userAppRoles); - result = true; - } catch (Exception e) { - logger.error(EELFLoggerDelegate.errorLogger, - "applyChangesInUserRolesForAppToEcompDB syncUserRoles, orgUserId = " + orgUserId); - logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e)); - } - } - } - return result; - } - @Override public List getUsersFromAppEndpoint(Long appId) throws HTTPException { RemoteUserWithRoles[] remoteUsers = applicationsRestClientService.get(RemoteUserWithRoles[].class, appId, @@ -654,7 +89,7 @@ public class UserRolesServiceImpl implements UserRolesService { ArrayList userApplicationRoles = new ArrayList(); for (RemoteUserWithRoles remoteUser : remoteUsers) { UserApplicationRoles userWithRemoteAppRoles = convertToUserApplicationRoles(appId, remoteUser); - if(userWithRemoteAppRoles.getRoles()!=null && userWithRemoteAppRoles.getRoles().size()>0) { + if (userWithRemoteAppRoles.getRoles() != null && userWithRemoteAppRoles.getRoles().size() > 0) { userApplicationRoles.add(userWithRemoteAppRoles); } else { logger.debug(EELFLoggerDelegate.debugLogger, "User " + userWithRemoteAppRoles.getOrgUserId() @@ -666,16 +101,6 @@ public class UserRolesServiceImpl implements UserRolesService { return userApplicationRoles; } - private UserApplicationRoles convertToUserApplicationRoles(Long appId, RemoteUserWithRoles remoteUser) { - UserApplicationRoles userWithRemoteAppRoles = new UserApplicationRoles(); - userWithRemoteAppRoles.setAppId(appId); - userWithRemoteAppRoles.setOrgUserId(remoteUser.getLoginId()); - userWithRemoteAppRoles.setFirstName(remoteUser.getFirstName()); - userWithRemoteAppRoles.setLastName(remoteUser.getLastName()); - userWithRemoteAppRoles.setRoles(remoteUser.getRoles()); - return userWithRemoteAppRoles; - } - public static void persistExternalRoleInEcompDb(EPRole externalAppRole, Long appId, EPRoleService roleService) { externalAppRole.setAppId(appId); externalAppRole.setAppRoleId(externalAppRole.getId()); @@ -689,30 +114,6 @@ public class UserRolesServiceImpl implements UserRolesService { externalAppRole.getAppRoleId(), externalAppRole.getName())); } - @Override - public List importRolesFromRemoteApplication(Long appId) throws HTTPException { - EPRole[] appRolesFull = applicationsRestClientService.get(EPRole[].class, appId, "/rolesFull"); - List rolesList = Arrays.asList(appRolesFull); - for (EPRole externalAppRole : rolesList) { - - // Try to find an existing extern role for the app in the local - // ecomp DB. If so, then use its id to update the existing external - // application role record. - Long externAppId = externalAppRole.getId(); - EPRole existingAppRole = epRoleService.getRole(appId, externAppId); - if (existingAppRole != null) { - logger.debug(EELFLoggerDelegate.debugLogger, - String.format("ecomp role already exists for app=%s; appRoleId=%s. No need to import this one.", - appId, externAppId)); - continue; - } - // persistExternalRoleInEcompDb(externalAppRole, appId, - // roleService); - } - - return rolesList; - } - @Override public List getCachedAppRolesForUser(Long appId, Long userId) { // Find the records for this user-app combo, if any diff --git a/ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/SessionCookieUtil.java b/ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/util/SessionCookieUtil.java similarity index 100% rename from ecomp-portal-BE-common/src/main/java/org/openecomp/portalapp/util/SessionCookieUtil.java rename to ecomp-portal-BE-os/src/main/java/org/openecomp/portalapp/util/SessionCookieUtil.java diff --git a/ecomp-portal-BE-os/src/main/webapp/WEB-INF/conf/system.properties b/ecomp-portal-BE-os/src/main/webapp/WEB-INF/conf/system.properties index 8c682649..0fc2c69d 100644 --- a/ecomp-portal-BE-os/src/main/webapp/WEB-INF/conf/system.properties +++ b/ecomp-portal-BE-os/src/main/webapp/WEB-INF/conf/system.properties @@ -33,7 +33,8 @@ hb.show_sql = false hb.db_reconnect = true hb.idle_connection_test_period = 3600 -app_display_name = app_display_name +# Ecomp portal title +app_display_name = Portal files_path = /demeter/WebApps/dev/ECOMP_APP/files context_root = ECOMPPORTAL # menu settings @@ -109,10 +110,9 @@ microservices.widget.local.port = 8082 #delete auditlog from number of days ago auditlog_del_day_from = 365 - #authenticate user server authenticate_user_server=http://todo_enter_auth_server_hostname:8383/openid-connect-server-webapp/allUsers #window width threshold to collapse left/right menu when page onload window_width_threshold_left_menu = 1400 -window_width_threshold_right_menu = 1350 \ No newline at end of file +window_width_threshold_right_menu = 1350 diff --git a/ecomp-portal-BE-os/src/main/webapp/WEB-INF/defs/definitions.xml b/ecomp-portal-BE-os/src/main/webapp/WEB-INF/defs/definitions.xml index 603e1144..0fa84a9c 100644 --- a/ecomp-portal-BE-os/src/main/webapp/WEB-INF/defs/definitions.xml +++ b/ecomp-portal-BE-os/src/main/webapp/WEB-INF/defs/definitions.xml @@ -1,7 +1,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/b2b/css/b2b-angular/font_icons.css b/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/b2b/css/b2b-angular/font_icons.css new file mode 100644 index 00000000..0aa5b857 --- /dev/null +++ b/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/b2b/css/b2b-angular/font_icons.css @@ -0,0 +1 @@ +/* font_icons.css is in open source - this empty file prevents 404 error in browser */ diff --git a/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/digital-ng-library/ecomp-ionicons.css b/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/digital-ng-library/ecomp-ionicons.css new file mode 100644 index 00000000..0bbd8a3f --- /dev/null +++ b/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/digital-ng-library/ecomp-ionicons.css @@ -0,0 +1,156 @@ +@charset "UTF-8"; + +@font-face { + font-family: "Ionicons"; + src: url("../fonts/ionicons.eot?v=2.0.0"); + src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/ionicons.woff?v=2.0.0") format("woff"), url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg"); + font-weight: normal; + font-style: normal; +} + +.ionicons, .icon-arrows-download:before, +.icon-securityalerts-alertL:before, +.icon-controls-add-maximize:before, +.icon-controls-add-maximize-circle:before, .icon-misc-time:before, +.icoSecurityalerts:before, .icon-apps-marketplace:before , +.icon-content-grid:before, .icon-documents-archive:before, +.icon-arrows-vertical-arrow-down:before, .icoArrows-download:before, +.icoArrows-incoming-call:before, .icon-arrows-outgoing-call:before, +.icon-arrows-upload:before, .icon-arrows-straight-arrow:before, +.icoArrows-vertical-arrow:before, .icon-people-userbookmark:before, +.icon-controls-check:before, .icon-chevron-down:before, +.icon-controls-down:before, .icon-controls-left:before, +.icon-controls-right:before, .icon-chevron-up:before, +.icoDocuments-report:before, .icon-edit:before, .icon-misc-pen:before, +.icon-controls-up:before, .icon-overview:before, +.icon-settings:before, .icon-building-home:before, +.icon-documents-book:before, .icoDocuments-book-outline:before, +.icoDocuments-bookmarks:before, +.icoDocuments-bookmarks-outline:before, .icon-add-widget:before , +.icon-documents-copy:before, .icon-content-flag:before, +.icon-primary-accordion-minus:before, .icon-misc-piechart:before, +.icon-misc-piechart-outline:before, +.icon-primary-accordion-plus:before, .icon-star:before, +.icon-building-door:before, .icon-content-gridguide:before, +.icon-user:before, .icon-people-oneperson:before, +.icon-people-oneperson-add:before, +.icon-people-oneperson-stalker:before, .icon-controls-pointer:before, +.icon-arrows-replay-restart:before, .icon-content-star:before, +.icon-misc-trash:before, .icon-arrows-upload:before, +.icon-controls-upPRIMARY, .ion-navicon +{ + display: inline-block; + font-family: "Ionicons"; + speak: none; + font-style: normal; + font-weight: normal; + font-variant: normal; + text-transform: none; + text-rendering: auto; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: + grayscale; +} + +.icoSecurityalerts-alert:before { content: "\f100"; } + +.icon-arrows-download:before { content: "\f41f"; } + +.icon-controls-add-maximize:before { content: "\f2c7"; } + +.icon-controls-add-maximize-circle:before { content: "\f359"; } + +.icon-misc-time:before { content: "\f35a"; } + +.icoSecurityalerts:before { content: "\f35b"; } + +.icon-content-grid:before { content: "\f35c"; } + +.icon-documents-archive:before { content: "\f2c9"; } + +.icon-arrows-vertical-arrow-down:before { content: "\f35d"; } + +.icon-arrows-download:before { content: "\f35e"; } + +.icon-arrows-incoming-call:before { content: "\f360"; } + +.icoArrows-outgoing-call:before { content: "\f362"; } + +.icoArrows-upload:before { content: "\f364"; } + +.icoArrows-straight-arrow:before { content: "\f30f"; } + +.icon-arrows-vertical-arrow:before { content: "\f366"; } + +.icon-people-userbookmark:before { content: "\f39f"; } + +.icon-controls-check:before { content: "\f121"; } + +.icon-chevron-down:before { content: "\f123"; } + +.icon-controls-left:before { content: "\f124"; } + +.icon-controls-right:before { content: "\f125"; } + +.icon-chevron-up:before { content: "\f126"; } + +.icoDocuments-report:before { content: "\f274"; } + +.icon-overview:before { content: "\f133"; } + +.icon-controls-down:before { content: "\f3d0"; } + +.icon-controls-up:before { content: "\f3d8"; } + +.icon-documents-book:before { content: "\f3e8"; } + +.icoDocuments-book-outline:before { content: "\f3e7"; } + +.icoDocuments-bookmarks:before { content: "\f3ea"; } + +.icoDocuments-bookmarks-outline:before { content: "\f3e9"; } + +.icon-documents-copy:before { content: "\f41c"; } + +.icon-content-flag:before { content: "\f42d"; } + +.icon-primary-accordion-minus:before { content: "\f463"; } + +.icon-misc-piechart:before { content: "\f484"; } + +.icon-misc-piechart-outline:before { content: "\f483"; } + +.icon-primary-accordion-plus:before { content: "\f48a"; } + +.icon-building-door:before { content: "\f29f"; } + +.icon-content-gridguide:before { content: "\f20d"; } + +.icon-people-oneperson:before { content: "\f213"; } + +.icon-people-oneperson-add:before { content: "\f211"; } + +.icon-people-oneperson-stalker:before { content: "\f212"; } + +.icon-arrows-replay-restart:before { content: "\f21c"; } + +.icon-misc-trash:before { content: "\f252"; } + +.icon-arrows-upload:before { content: "\f255"; } + +.icon-user:before { content: "\f213"; } + +.icon-star:before { content: "\f4b3"; } + +.icon-edit:before { content: "\f2bf"; } + +.icon-settings:before { content: "\f13d"; } + +.icon-apps-marketplace:before { content: "\f35c"; } + +.icon-add-widget:before { content: "\f3f0"; } + +.icon-controls-upPRIMARY:before { content: "\f3d8"; } + +.ion-navicon:before { content: "\f20e"; } diff --git a/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/digital-ng-library/ionicons.css b/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/digital-ng-library/ionicons.css new file mode 100644 index 00000000..885aa6bd --- /dev/null +++ b/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/digital-ng-library/ionicons.css @@ -0,0 +1,1480 @@ +@charset "UTF-8"; +/*! + Ionicons, v2.0.0 + Created by Ben Sperry for the Ionic Framework, http://ionicons.com/ + https://twitter.com/benjsperry https://twitter.com/ionicframework + MIT License: https://github.com/driftyco/ionicons + + Android-style icons originally built by Google’s + Material Design Icons: https://github.com/google/material-design-icons + used under CC BY http://creativecommons.org/licenses/by/4.0/ + Modified icons to fit ionicon’s grid from original. +*/ +@font-face { font-family: "Ionicons"; src: url("../fonts/ionicons.eot?v=2.0.0"); src: url("../fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"), url("../fonts/ionicons.ttf?v=2.0.0") format("truetype"), url("../fonts/ionicons.woff?v=2.0.0") format("woff"), url("../fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg"); font-weight: normal; font-style: normal; } +.ion, .ionicons, .ion-alert:before, .ion-alert-circled:before, .ion-android-add:before, .ion-android-add-circle:before, .ion-android-alarm-clock:before, .ion-android-alert:before, .ion-android-apps:before, .ion-android-archive:before, .ion-android-arrow-back:before, .ion-android-arrow-down:before, .ion-android-arrow-dropdown:before, .ion-android-arrow-dropdown-circle:before, .ion-android-arrow-dropleft:before, .ion-android-arrow-dropleft-circle:before, .ion-android-arrow-dropright:before, .ion-android-arrow-dropright-circle:before, .ion-android-arrow-dropup:before, .ion-android-arrow-dropup-circle:before, .ion-android-arrow-forward:before, .ion-android-arrow-up:before, .ion-android-attach:before, .ion-android-bar:before, .ion-android-bicycle:before, .ion-android-boat:before, .ion-android-bookmark:before, .ion-android-bulb:before, .ion-android-bus:before, .ion-android-calendar:before, .ion-android-call:before, .ion-android-camera:before, .ion-android-cancel:before, .ion-android-car:before, .ion-android-cart:before, .ion-android-chat:before, .ion-android-checkbox:before, .ion-android-checkbox-blank:before, .ion-android-checkbox-outline:before, .ion-android-checkbox-outline-blank:before, .ion-android-checkmark-circle:before, .ion-android-clipboard:before, .ion-android-close:before, .ion-android-cloud:before, .ion-android-cloud-circle:before, .ion-android-cloud-done:before, .ion-android-cloud-outline:before, .ion-android-color-palette:before, .ion-android-compass:before, .ion-android-contact:before, .ion-android-contacts:before, .ion-android-contract:before, .ion-android-create:before, .ion-android-delete:before, .ion-android-desktop:before, .ion-android-document:before, .ion-android-done:before, .ion-android-done-all:before, .ion-android-download:before, .ion-android-drafts:before, .ion-android-exit:before, .ion-android-expand:before, .ion-android-favorite:before, .ion-android-favorite-outline:before, .ion-android-film:before, .ion-android-folder:before, .ion-android-folder-open:before, .ion-android-funnel:before, .ion-android-globe:before, .ion-android-hand:before, .ion-android-hangout:before, .ion-android-happy:before, .ion-android-home:before, .ion-android-image:before, .ion-android-laptop:before, .ion-android-list:before, .ion-android-locate:before, .ion-android-lock:before, .ion-android-mail:before, .ion-android-map:before, .ion-android-menu:before, .ion-android-microphone:before, .ion-android-microphone-off:before, .ion-android-more-horizontal:before, .ion-android-more-vertical:before, .ion-android-navigate:before, .ion-android-notifications:before, .ion-android-notifications-none:before, .ion-android-notifications-off:before, .ion-android-open:before, .ion-android-options:before, .ion-android-people:before, .ion-android-person:before, .ion-android-person-add:before, .ion-android-phone-landscape:before, .ion-android-phone-portrait:before, .ion-android-pin:before, .ion-android-plane:before, .ion-android-playstore:before, .ion-android-print:before, .ion-android-radio-button-off:before, .ion-android-radio-button-on:before, .ion-android-refresh:before, .ion-android-remove:before, .ion-android-remove-circle:before, .ion-android-restaurant:before, .ion-android-sad:before, .ion-android-search:before, .ion-android-send:before, .ion-android-settings:before, .ion-android-share:before, .ion-android-share-alt:before, .ion-android-star:before, .ion-android-star-half:before, .ion-android-star-outline:before, .ion-android-stopwatch:before, .ion-android-subway:before, .ion-android-sunny:before, .ion-android-sync:before, .ion-android-textsms:before, .ion-android-time:before, .ion-android-train:before, .ion-android-unlock:before, .ion-android-upload:before, .ion-android-volume-down:before, .ion-android-volume-mute:before, .ion-android-volume-off:before, .ion-android-volume-up:before, .ion-android-walk:before, .ion-android-warning:before, .ion-android-watch:before, .ion-android-wifi:before, .ion-aperture:before, .ion-archive:before, .ion-arrow-down-a:before, .ion-arrow-down-b:before, .ion-arrow-down-c:before, .ion-arrow-expand:before, .ion-arrow-graph-down-left:before, .ion-arrow-graph-down-right:before, .ion-arrow-graph-up-left:before, .ion-arrow-graph-up-right:before, .ion-arrow-left-a:before, .ion-arrow-left-b:before, .ion-arrow-left-c:before, .ion-arrow-move:before, .ion-arrow-resize:before, .ion-arrow-return-left:before, .ion-arrow-return-right:before, .ion-arrow-right-a:before, .ion-arrow-right-b:before, .ion-arrow-right-c:before, .ion-arrow-shrink:before, .ion-arrow-swap:before, .ion-arrow-up-a:before, .ion-arrow-up-b:before, .ion-arrow-up-c:before, .ion-asterisk:before, .ion-at:before, .ion-backspace:before, .ion-backspace-outline:before, .ion-bag:before, .ion-battery-charging:before, .ion-battery-empty:before, .ion-battery-full:before, .ion-battery-half:before, .ion-battery-low:before, .ion-beaker:before, .ion-beer:before, .ion-bluetooth:before, .ion-bonfire:before, .ion-bookmark:before, .ion-bowtie:before, .ion-briefcase:before, .ion-bug:before, .ion-calculator:before, .ion-calendar:before, .ion-camera:before, .ion-card:before, .ion-cash:before, .ion-chatbox:before, .ion-chatbox-working:before, .ion-chatboxes:before, .ion-chatbubble:before, .ion-chatbubble-working:before, .ion-chatbubbles:before, .ion-checkmark:before, .ion-checkmark-circled:before, .ion-checkmark-round:before, .ion-chevron-down:before, .ion-chevron-left:before, .ion-chevron-right:before, .ion-chevron-up:before, .ion-clipboard:before, .ion-clock:before, .ion-close:before, .ion-close-circled:before, .ion-close-round:before, .ion-closed-captioning:before, .ion-cloud:before, .ion-code:before, .ion-code-download:before, .ion-code-working:before, .ion-coffee:before, .ion-compass:before, .ion-compose:before, .ion-connection-bars:before, .ion-contrast:before, .ion-crop:before, .ion-cube:before, .ion-disc:before, .ion-document:before, .ion-document-text:before, .ion-drag:before, .ion-earth:before, .ion-easel:before, .ion-edit:before, .ion-egg:before, .ion-eject:before, .ion-email:before, .ion-email-unread:before, .ion-erlenmeyer-flask:before, .ion-erlenmeyer-flask-bubbles:before, .ion-eye:before, .ion-eye-disabled:before, .ion-female:before, .ion-filing:before, .ion-film-marker:before, .ion-fireball:before, .ion-flag:before, .ion-flame:before, .ion-flash:before, .ion-flash-off:before, .ion-folder:before, .ion-fork:before, .ion-fork-repo:before, .ion-forward:before, .ion-funnel:before, .ion-gear-a:before, .ion-gear-b:before, .ion-grid:before, .ion-hammer:before, .ion-happy:before, .ion-happy-outline:before, .ion-headphone:before, .ion-heart:before, .ion-heart-broken:before, .ion-help:before, .ion-help-buoy:before, .ion-help-circled:before, .ion-home:before, .ion-icecream:before, .ion-image:before, .ion-images:before, .ion-information:before, .ion-information-circled:before, .ion-ionic:before, .ion-ios-alarm:before, .ion-ios-alarm-outline:before, .ion-ios-albums:before, .ion-ios-albums-outline:before, .ion-ios-americanfootball:before, .ion-ios-americanfootball-outline:before, .ion-ios-analytics:before, .ion-ios-analytics-outline:before, .ion-ios-arrow-back:before, .ion-ios-arrow-down:before, .ion-ios-arrow-forward:before, .ion-ios-arrow-left:before, .ion-ios-arrow-right:before, .ion-ios-arrow-thin-down:before, .ion-ios-arrow-thin-left:before, .ion-ios-arrow-thin-right:before, .ion-ios-arrow-thin-up:before, .ion-ios-arrow-up:before, .ion-ios-at:before, .ion-ios-at-outline:before, .ion-ios-barcode:before, .ion-ios-barcode-outline:before, .ion-ios-baseball:before, .ion-ios-baseball-outline:before, .ion-ios-basketball:before, .ion-ios-basketball-outline:before, .ion-ios-bell:before, .ion-ios-bell-outline:before, .ion-ios-body:before, .ion-ios-body-outline:before, .ion-ios-bolt:before, .ion-ios-bolt-outline:before, .ion-ios-book:before, .ion-ios-book-outline:before, .ion-ios-bookmarks:before, .ion-ios-bookmarks-outline:before, .ion-ios-box:before, .ion-ios-box-outline:before, .ion-ios-briefcase:before, .ion-ios-briefcase-outline:before, .ion-ios-browsers:before, .ion-ios-browsers-outline:before, .ion-ios-calculator:before, .ion-ios-calculator-outline:before, .ion-ios-calendar:before, .ion-ios-calendar-outline:before, .ion-ios-camera:before, .ion-ios-camera-outline:before, .ion-ios-cart:before, .ion-ios-cart-outline:before, .ion-ios-chatboxes:before, .ion-ios-chatboxes-outline:before, .ion-ios-chatbubble:before, .ion-ios-chatbubble-outline:before, .ion-ios-checkmark:before, .ion-ios-checkmark-empty:before, .ion-ios-checkmark-outline:before, .ion-ios-circle-filled:before, .ion-ios-circle-outline:before, .ion-ios-clock:before, .ion-ios-clock-outline:before, .ion-ios-close:before, .ion-ios-close-empty:before, .ion-ios-close-outline:before, .ion-ios-cloud:before, .ion-ios-cloud-download:before, .ion-ios-cloud-download-outline:before, .ion-ios-cloud-outline:before, .ion-ios-cloud-upload:before, .ion-ios-cloud-upload-outline:before, .ion-ios-cloudy:before, .ion-ios-cloudy-night:before, .ion-ios-cloudy-night-outline:before, .ion-ios-cloudy-outline:before, .ion-ios-cog:before, .ion-ios-cog-outline:before, .ion-ios-color-filter:before, .ion-ios-color-filter-outline:before, .ion-ios-color-wand:before, .ion-ios-color-wand-outline:before, .ion-ios-compose:before, .ion-ios-compose-outline:before, .ion-ios-contact:before, .ion-ios-contact-outline:before, .ion-ios-copy:before, .ion-ios-copy-outline:before, .ion-ios-crop:before, .ion-ios-crop-strong:before, .ion-ios-download:before, .ion-ios-download-outline:before, .ion-ios-drag:before, .ion-ios-email:before, .ion-ios-email-outline:before, .ion-ios-eye:before, .ion-ios-eye-outline:before, .ion-ios-fastforward:before, .ion-ios-fastforward-outline:before, .ion-ios-filing:before, .ion-ios-filing-outline:before, .ion-ios-film:before, .ion-ios-film-outline:before, .ion-ios-flag:before, .ion-ios-flag-outline:before, .ion-ios-flame:before, .ion-ios-flame-outline:before, .ion-ios-flask:before, .ion-ios-flask-outline:before, .ion-ios-flower:before, .ion-ios-flower-outline:before, .ion-ios-folder:before, .ion-ios-folder-outline:before, .ion-ios-football:before, .ion-ios-football-outline:before, .ion-ios-game-controller-a:before, .ion-ios-game-controller-a-outline:before, .ion-ios-game-controller-b:before, .ion-ios-game-controller-b-outline:before, .ion-ios-gear:before, .ion-ios-gear-outline:before, .ion-ios-glasses:before, .ion-ios-glasses-outline:before, .ion-ios-grid-view:before, .ion-ios-grid-view-outline:before, .ion-ios-heart:before, .ion-ios-heart-outline:before, .ion-ios-help:before, .ion-ios-help-empty:before, .ion-ios-help-outline:before, .ion-ios-home:before, .ion-ios-home-outline:before, .ion-ios-infinite:before, .ion-ios-infinite-outline:before, .ion-ios-information:before, .ion-ios-information-empty:before, .ion-ios-information-outline:before, .ion-ios-ionic-outline:before, .ion-ios-keypad:before, .ion-ios-keypad-outline:before, .ion-ios-lightbulb:before, .ion-ios-lightbulb-outline:before, .ion-ios-list:before, .ion-ios-list-outline:before, .ion-ios-location:before, .ion-ios-location-outline:before, .ion-ios-locked:before, .ion-ios-locked-outline:before, .ion-ios-loop:before, .ion-ios-loop-strong:before, .ion-ios-medical:before, .ion-ios-medical-outline:before, .ion-ios-medkit:before, .ion-ios-medkit-outline:before, .ion-ios-mic:before, .ion-ios-mic-off:before, .ion-ios-mic-outline:before, .ion-ios-minus:before, .ion-ios-minus-empty:before, .ion-ios-minus-outline:before, .ion-ios-monitor:before, .ion-ios-monitor-outline:before, .ion-ios-moon:before, .ion-ios-moon-outline:before, .ion-ios-more:before, .ion-ios-more-outline:before, .ion-ios-musical-note:before, .ion-ios-musical-notes:before, .ion-ios-navigate:before, .ion-ios-navigate-outline:before, .ion-ios-nutrition:before, .ion-ios-nutrition-outline:before, .ion-ios-paper:before, .ion-ios-paper-outline:before, .ion-ios-paperplane:before, .ion-ios-paperplane-outline:before, .ion-ios-partlysunny:before, .ion-ios-partlysunny-outline:before, .ion-ios-pause:before, .ion-ios-pause-outline:before, .ion-ios-paw:before, .ion-ios-paw-outline:before, .ion-ios-people:before, .ion-ios-people-outline:before, .ion-ios-person:before, .ion-ios-person-outline:before, .ion-ios-personadd:before, .ion-ios-personadd-outline:before, .ion-ios-photos:before, .ion-ios-photos-outline:before, .ion-ios-pie:before, .ion-ios-pie-outline:before, .ion-ios-pint:before, .ion-ios-pint-outline:before, .ion-ios-play:before, .ion-ios-play-outline:before, .ion-ios-plus:before, .ion-ios-plus-empty:before, .ion-ios-plus-outline:before, .ion-ios-pricetag:before, .ion-ios-pricetag-outline:before, .ion-ios-pricetags:before, .ion-ios-pricetags-outline:before, .ion-ios-printer:before, .ion-ios-printer-outline:before, .ion-ios-pulse:before, .ion-ios-pulse-strong:before, .ion-ios-rainy:before, .ion-ios-rainy-outline:before, .ion-ios-recording:before, .ion-ios-recording-outline:before, .ion-ios-redo:before, .ion-ios-redo-outline:before, .ion-ios-refresh:before, .ion-ios-refresh-empty:before, .ion-ios-refresh-outline:before, .ion-ios-reload:before, .ion-ios-reverse-camera:before, .ion-ios-reverse-camera-outline:before, .ion-ios-rewind:before, .ion-ios-rewind-outline:before, .ion-ios-rose:before, .ion-ios-rose-outline:before, .ion-ios-search:before, .ion-ios-search-strong:before, .ion-ios-settings:before, .ion-ios-settings-strong:before, .ion-ios-shuffle:before, .ion-ios-shuffle-strong:before, .ion-ios-skipbackward:before, .ion-ios-skipbackward-outline:before, .ion-ios-skipforward:before, .ion-ios-skipforward-outline:before, .ion-ios-snowy:before, .ion-ios-speedometer:before, .ion-ios-speedometer-outline:before, .ion-ios-star:before, .ion-ios-star-half:before, .ion-ios-star-outline:before, .ion-ios-stopwatch:before, .ion-ios-stopwatch-outline:before, .ion-ios-sunny:before, .ion-ios-sunny-outline:before, .ion-ios-telephone:before, .ion-ios-telephone-outline:before, .ion-ios-tennisball:before, .ion-ios-tennisball-outline:before, .ion-ios-thunderstorm:before, .ion-ios-thunderstorm-outline:before, .ion-ios-time:before, .ion-ios-time-outline:before, .ion-ios-timer:before, .ion-ios-timer-outline:before, .ion-ios-toggle:before, .ion-ios-toggle-outline:before, .ion-ios-trash:before, .ion-ios-trash-outline:before, .ion-ios-undo:before, .ion-ios-undo-outline:before, .ion-ios-unlocked:before, .ion-ios-unlocked-outline:before, .ion-ios-upload:before, .ion-ios-upload-outline:before, .ion-ios-videocam:before, .ion-ios-videocam-outline:before, .ion-ios-volume-high:before, .ion-ios-volume-low:before, .ion-ios-wineglass:before, .ion-ios-wineglass-outline:before, .ion-ios-world:before, .ion-ios-world-outline:before, .ion-ipad:before, .ion-iphone:before, .ion-ipod:before, .ion-jet:before, .ion-key:before, .ion-knife:before, .ion-laptop:before, .ion-leaf:before, .ion-levels:before, .ion-lightbulb:before, .ion-link:before, .ion-load-a:before, .ion-load-b:before, .ion-load-c:before, .ion-load-d:before, .ion-location:before, .ion-lock-combination:before, .ion-locked:before, .ion-log-in:before, .ion-log-out:before, .ion-loop:before, .ion-magnet:before, .ion-male:before, .ion-man:before, .ion-map:before, .ion-medkit:before, .ion-merge:before, .ion-mic-a:before, .ion-mic-b:before, .ion-mic-c:before, .ion-minus:before, .ion-minus-circled:before, .ion-minus-round:before, .ion-model-s:before, .ion-monitor:before, .ion-more:before, .ion-mouse:before, .ion-music-note:before, .ion-navicon:before, .ion-navicon-round:before, .ion-navigate:before, .ion-network:before, .ion-no-smoking:before, .ion-nuclear:before, .ion-outlet:before, .ion-paintbrush:before, .ion-paintbucket:before, .ion-paper-airplane:before, .ion-paperclip:before, .ion-pause:before, .ion-person:before, .ion-person-add:before, .ion-person-stalker:before, .ion-pie-graph:before, .ion-pin:before, .ion-pinpoint:before, .ion-pizza:before, .ion-plane:before, .ion-planet:before, .ion-play:before, .ion-playstation:before, .ion-plus:before, .ion-plus-circled:before, .ion-plus-round:before, .ion-podium:before, .ion-pound:before, .ion-power:before, .ion-pricetag:before, .ion-pricetags:before, .ion-printer:before, .ion-pull-request:before, .ion-qr-scanner:before, .ion-quote:before, .ion-radio-waves:before, .ion-record:before, .ion-refresh:before, .ion-reply:before, .ion-reply-all:before, .ion-ribbon-a:before, .ion-ribbon-b:before, .ion-sad:before, .ion-sad-outline:before, .ion-scissors:before, .ion-search:before, .ion-settings:before, .ion-share:before, .ion-shuffle:before, .ion-skip-backward:before, .ion-skip-forward:before, .ion-social-android:before, .ion-social-android-outline:before, .ion-social-angular:before, .ion-social-angular-outline:before, .ion-social-apple:before, .ion-social-apple-outline:before, .ion-social-bitcoin:before, .ion-social-bitcoin-outline:before, .ion-social-buffer:before, .ion-social-buffer-outline:before, .ion-social-chrome:before, .ion-social-chrome-outline:before, .ion-social-codepen:before, .ion-social-codepen-outline:before, .ion-social-css3:before, .ion-social-css3-outline:before, .ion-social-designernews:before, .ion-social-designernews-outline:before, .ion-social-dribbble:before, .ion-social-dribbble-outline:before, .ion-social-dropbox:before, .ion-social-dropbox-outline:before, .ion-social-euro:before, .ion-social-euro-outline:before, .ion-social-facebook:before, .ion-social-facebook-outline:before, .ion-social-foursquare:before, .ion-social-foursquare-outline:before, .ion-social-freebsd-devil:before, .ion-social-github:before, .ion-social-github-outline:before, .ion-social-google:before, .ion-social-google-outline:before, .ion-social-googleplus:before, .ion-social-googleplus-outline:before, .ion-social-hackernews:before, .ion-social-hackernews-outline:before, .ion-social-html5:before, .ion-social-html5-outline:before, .ion-social-instagram:before, .ion-social-instagram-outline:before, .ion-social-javascript:before, .ion-social-javascript-outline:before, .ion-social-linkedin:before, .ion-social-linkedin-outline:before, .ion-social-markdown:before, .ion-social-nodejs:before, .ion-social-octocat:before, .ion-social-pinterest:before, .ion-social-pinterest-outline:before, .ion-social-python:before, .ion-social-reddit:before, .ion-social-reddit-outline:before, .ion-social-rss:before, .ion-social-rss-outline:before, .ion-social-sass:before, .ion-social-skype:before, .ion-social-skype-outline:before, .ion-social-snapchat:before, .ion-social-snapchat-outline:before, .ion-social-tumblr:before, .ion-social-tumblr-outline:before, .ion-social-tux:before, .ion-social-twitch:before, .ion-social-twitch-outline:before, .ion-social-twitter:before, .ion-social-twitter-outline:before, .ion-social-usd:before, .ion-social-usd-outline:before, .ion-social-vimeo:before, .ion-social-vimeo-outline:before, .ion-social-whatsapp:before, .ion-social-whatsapp-outline:before, .ion-social-windows:before, .ion-social-windows-outline:before, .ion-social-wordpress:before, .ion-social-wordpress-outline:before, .ion-social-yahoo:before, .ion-social-yahoo-outline:before, .ion-social-yen:before, .ion-social-yen-outline:before, .ion-social-youtube:before, .ion-social-youtube-outline:before, .ion-soup-can:before, .ion-soup-can-outline:before, .ion-speakerphone:before, .ion-speedometer:before, .ion-spoon:before, .ion-star:before, .ion-stats-bars:before, .ion-steam:before, .ion-stop:before, .ion-thermometer:before, .ion-thumbsdown:before, .ion-thumbsup:before, .ion-toggle:before, .ion-toggle-filled:before, .ion-transgender:before, .ion-trash-a:before, .ion-trash-b:before, .ion-trophy:before, .ion-tshirt:before, .ion-tshirt-outline:before, .ion-umbrella:before, .ion-university:before, .ion-unlocked:before, .ion-upload:before, .ion-usb:before, .ion-videocamera:before, .ion-volume-high:before, .ion-volume-low:before, .ion-volume-medium:before, .ion-volume-mute:before, .ion-wand:before, .ion-waterdrop:before, .ion-wifi:before, .ion-wineglass:before, .ion-woman:before, .ion-wrench:before, .ion-xbox:before { display: inline-block; font-family: "Ionicons"; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; text-rendering: auto; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } + +.ion-alert:before { content: "\f101"; } + +.ion-alert-circled:before { content: "\f100"; } + +.ion-android-add:before { content: "\f2c7"; } + +.ion-android-add-circle:before { content: "\f359"; } + +.ion-android-alarm-clock:before { content: "\f35a"; } + +.ion-android-alert:before { content: "\f35b"; } + +.ion-android-apps:before { content: "\f35c"; } + +.ion-android-archive:before { content: "\f2c9"; } + +.ion-android-arrow-back:before { content: "\f2ca"; } + +.ion-android-arrow-down:before { content: "\f35d"; } + +.ion-android-arrow-dropdown:before { content: "\f35f"; } + +.ion-android-arrow-dropdown-circle:before { content: "\f35e"; } + +.ion-android-arrow-dropleft:before { content: "\f361"; } + +.ion-android-arrow-dropleft-circle:before { content: "\f360"; } + +.ion-android-arrow-dropright:before { content: "\f363"; } + +.ion-android-arrow-dropright-circle:before { content: "\f362"; } + +.ion-android-arrow-dropup:before { content: "\f365"; } + +.ion-android-arrow-dropup-circle:before { content: "\f364"; } + +.ion-android-arrow-forward:before { content: "\f30f"; } + +.ion-android-arrow-up:before { content: "\f366"; } + +.ion-android-attach:before { content: "\f367"; } + +.ion-android-bar:before { content: "\f368"; } + +.ion-android-bicycle:before { content: "\f369"; } + +.ion-android-boat:before { content: "\f36a"; } + +.ion-android-bookmark:before { content: "\f36b"; } + +.ion-android-bulb:before { content: "\f36c"; } + +.ion-android-bus:before { content: "\f36d"; } + +.ion-android-calendar:before { content: "\f2d1"; } + +.ion-android-call:before { content: "\f2d2"; } + +.ion-android-camera:before { content: "\f2d3"; } + +.ion-android-cancel:before { content: "\f36e"; } + +.ion-android-car:before { content: "\f36f"; } + +.ion-android-cart:before { content: "\f370"; } + +.ion-android-chat:before { content: "\f2d4"; } + +.ion-android-checkbox:before { content: "\f374"; } + +.ion-android-checkbox-blank:before { content: "\f371"; } + +.ion-android-checkbox-outline:before { content: "\f373"; } + +.ion-android-checkbox-outline-blank:before { content: "\f372"; } + +.ion-android-checkmark-circle:before { content: "\f375"; } + +.ion-android-clipboard:before { content: "\f376"; } + +.ion-android-close:before { content: "\f2d7"; } + +.ion-android-cloud:before { content: "\f37a"; } + +.ion-android-cloud-circle:before { content: "\f377"; } + +.ion-android-cloud-done:before { content: "\f378"; } + +.ion-android-cloud-outline:before { content: "\f379"; } + +.ion-android-color-palette:before { content: "\f37b"; } + +.ion-android-compass:before { content: "\f37c"; } + +.ion-android-contact:before { content: "\f2d8"; } + +.ion-android-contacts:before { content: "\f2d9"; } + +.ion-android-contract:before { content: "\f37d"; } + +.ion-android-create:before { content: "\f37e"; } + +.ion-android-delete:before { content: "\f37f"; } + +.ion-android-desktop:before { content: "\f380"; } + +.ion-android-document:before { content: "\f381"; } + +.ion-android-done:before { content: "\f383"; } + +.ion-android-done-all:before { content: "\f382"; } + +.ion-android-download:before { content: "\f2dd"; } + +.ion-android-drafts:before { content: "\f384"; } + +.ion-android-exit:before { content: "\f385"; } + +.ion-android-expand:before { content: "\f386"; } + +.ion-android-favorite:before { content: "\f388"; } + +.ion-android-favorite-outline:before { content: "\f387"; } + +.ion-android-film:before { content: "\f389"; } + +.ion-android-folder:before { content: "\f2e0"; } + +.ion-android-folder-open:before { content: "\f38a"; } + +.ion-android-funnel:before { content: "\f38b"; } + +.ion-android-globe:before { content: "\f38c"; } + +.ion-android-hand:before { content: "\f2e3"; } + +.ion-android-hangout:before { content: "\f38d"; } + +.ion-android-happy:before { content: "\f38e"; } + +.ion-android-home:before { content: "\f38f"; } + +.ion-android-image:before { content: "\f2e4"; } + +.ion-android-laptop:before { content: "\f390"; } + +.ion-android-list:before { content: "\f391"; } + +.ion-android-locate:before { content: "\f2e9"; } + +.ion-android-lock:before { content: "\f392"; } + +.ion-android-mail:before { content: "\f2eb"; } + +.ion-android-map:before { content: "\f393"; } + +.ion-android-menu:before { content: "\f394"; } + +.ion-android-microphone:before { content: "\f2ec"; } + +.ion-android-microphone-off:before { content: "\f395"; } + +.ion-android-more-horizontal:before { content: "\f396"; } + +.ion-android-more-vertical:before { content: "\f397"; } + +.ion-android-navigate:before { content: "\f398"; } + +.ion-android-notifications:before { content: "\f39b"; } + +.ion-android-notifications-none:before { content: "\f399"; } + +.ion-android-notifications-off:before { content: "\f39a"; } + +.ion-android-open:before { content: "\f39c"; } + +.ion-android-options:before { content: "\f39d"; } + +.ion-android-people:before { content: "\f39e"; } + +.ion-android-person:before { content: "\f3a0"; } + +.ion-android-person-add:before { content: "\f39f"; } + +.ion-android-phone-landscape:before { content: "\f3a1"; } + +.ion-android-phone-portrait:before { content: "\f3a2"; } + +.ion-android-pin:before { content: "\f3a3"; } + +.ion-android-plane:before { content: "\f3a4"; } + +.ion-android-playstore:before { content: "\f2f0"; } + +.ion-android-print:before { content: "\f3a5"; } + +.ion-android-radio-button-off:before { content: "\f3a6"; } + +.ion-android-radio-button-on:before { content: "\f3a7"; } + +.ion-android-refresh:before { content: "\f3a8"; } + +.ion-android-remove:before { content: "\f2f4"; } + +.ion-android-remove-circle:before { content: "\f3a9"; } + +.ion-android-restaurant:before { content: "\f3aa"; } + +.ion-android-sad:before { content: "\f3ab"; } + +.ion-android-search:before { content: "\f2f5"; } + +.ion-android-send:before { content: "\f2f6"; } + +.ion-android-settings:before { content: "\f2f7"; } + +.ion-android-share:before { content: "\f2f8"; } + +.ion-android-share-alt:before { content: "\f3ac"; } + +.ion-android-star:before { content: "\f2fc"; } + +.ion-android-star-half:before { content: "\f3ad"; } + +.ion-android-star-outline:before { content: "\f3ae"; } + +.ion-android-stopwatch:before { content: "\f2fd"; } + +.ion-android-subway:before { content: "\f3af"; } + +.ion-android-sunny:before { content: "\f3b0"; } + +.ion-android-sync:before { content: "\f3b1"; } + +.ion-android-textsms:before { content: "\f3b2"; } + +.ion-android-time:before { content: "\f3b3"; } + +.ion-android-train:before { content: "\f3b4"; } + +.ion-android-unlock:before { content: "\f3b5"; } + +.ion-android-upload:before { content: "\f3b6"; } + +.ion-android-volume-down:before { content: "\f3b7"; } + +.ion-android-volume-mute:before { content: "\f3b8"; } + +.ion-android-volume-off:before { content: "\f3b9"; } + +.ion-android-volume-up:before { content: "\f3ba"; } + +.ion-android-walk:before { content: "\f3bb"; } + +.ion-android-warning:before { content: "\f3bc"; } + +.ion-android-watch:before { content: "\f3bd"; } + +.ion-android-wifi:before { content: "\f305"; } + +.ion-aperture:before { content: "\f313"; } + +.ion-archive:before { content: "\f102"; } + +.ion-arrow-down-a:before { content: "\f103"; } + +.ion-arrow-down-b:before { content: "\f104"; } + +.ion-arrow-down-c:before { content: "\f105"; } + +.ion-arrow-expand:before { content: "\f25e"; } + +.ion-arrow-graph-down-left:before { content: "\f25f"; } + +.ion-arrow-graph-down-right:before { content: "\f260"; } + +.ion-arrow-graph-up-left:before { content: "\f261"; } + +.ion-arrow-graph-up-right:before { content: "\f262"; } + +.ion-arrow-left-a:before { content: "\f106"; } + +.ion-arrow-left-b:before { content: "\f107"; } + +.ion-arrow-left-c:before { content: "\f108"; } + +.ion-arrow-move:before { content: "\f263"; } + +.ion-arrow-resize:before { content: "\f264"; } + +.ion-arrow-return-left:before { content: "\f265"; } + +.ion-arrow-return-right:before { content: "\f266"; } + +.ion-arrow-right-a:before { content: "\f109"; } + +.ion-arrow-right-b:before { content: "\f10a"; } + +.ion-arrow-right-c:before { content: "\f10b"; } + +.ion-arrow-shrink:before { content: "\f267"; } + +.ion-arrow-swap:before { content: "\f268"; } + +.ion-arrow-up-a:before { content: "\f10c"; } + +.ion-arrow-up-b:before { content: "\f10d"; } + +.ion-arrow-up-c:before { content: "\f10e"; } + +.ion-asterisk:before { content: "\f314"; } + +.ion-at:before { content: "\f10f"; } + +.ion-backspace:before { content: "\f3bf"; } + +.ion-backspace-outline:before { content: "\f3be"; } + +.ion-bag:before { content: "\f110"; } + +.ion-battery-charging:before { content: "\f111"; } + +.ion-battery-empty:before { content: "\f112"; } + +.ion-battery-full:before { content: "\f113"; } + +.ion-battery-half:before { content: "\f114"; } + +.ion-battery-low:before { content: "\f115"; } + +.ion-beaker:before { content: "\f269"; } + +.ion-beer:before { content: "\f26a"; } + +.ion-bluetooth:before { content: "\f116"; } + +.ion-bonfire:before { content: "\f315"; } + +.ion-bookmark:before { content: "\f26b"; } + +.ion-bowtie:before { content: "\f3c0"; } + +.ion-briefcase:before { content: "\f26c"; } + +.ion-bug:before { content: "\f2be"; } + +.ion-calculator:before { content: "\f26d"; } + +.ion-calendar:before { content: "\f117"; } + +.ion-camera:before { content: "\f118"; } + +.ion-card:before { content: "\f119"; } + +.ion-cash:before { content: "\f316"; } + +.ion-chatbox:before { content: "\f11b"; } + +.ion-chatbox-working:before { content: "\f11a"; } + +.ion-chatboxes:before { content: "\f11c"; } + +.ion-chatbubble:before { content: "\f11e"; } + +.ion-chatbubble-working:before { content: "\f11d"; } + +.ion-chatbubbles:before { content: "\f11f"; } + +.ion-checkmark:before { content: "\f122"; } + +.ion-checkmark-circled:before { content: "\f120"; } + +.ion-checkmark-round:before { content: "\f121"; } + +.ion-chevron-down:before { content: "\f123"; } + +.ion-chevron-left:before { content: "\f124"; } + +.ion-chevron-right:before { content: "\f125"; } + +.ion-chevron-up:before { content: "\f126"; } + +.ion-clipboard:before { content: "\f127"; } + +.ion-clock:before { content: "\f26e"; } + +.ion-close:before { content: "\f12a"; } + +.ion-close-circled:before { content: "\f128"; } + +.ion-close-round:before { content: "\f129"; } + +.ion-closed-captioning:before { content: "\f317"; } + +.ion-cloud:before { content: "\f12b"; } + +.ion-code:before { content: "\f271"; } + +.ion-code-download:before { content: "\f26f"; } + +.ion-code-working:before { content: "\f270"; } + +.ion-coffee:before { content: "\f272"; } + +.ion-compass:before { content: "\f273"; } + +.ion-compose:before { content: "\f12c"; } + +.ion-connection-bars:before { content: "\f274"; } + +.ion-contrast:before { content: "\f275"; } + +.ion-crop:before { content: "\f3c1"; } + +.ion-cube:before { content: "\f318"; } + +.ion-disc:before { content: "\f12d"; } + +.ion-document:before { content: "\f12f"; } + +.ion-document-text:before { content: "\f12e"; } + +.ion-drag:before { content: "\f130"; } + +.ion-earth:before { content: "\f276"; } + +.ion-easel:before { content: "\f3c2"; } + +.ion-edit:before { content: "\f2bf"; } + +.ion-egg:before { content: "\f277"; } + +.ion-eject:before { content: "\f131"; } + +.ion-email:before { content: "\f132"; } + +.ion-email-unread:before { content: "\f3c3"; } + +.ion-erlenmeyer-flask:before { content: "\f3c5"; } + +.ion-erlenmeyer-flask-bubbles:before { content: "\f3c4"; } + +.ion-eye:before { content: "\f133"; } + +.ion-eye-disabled:before { content: "\f306"; } + +.ion-female:before { content: "\f278"; } + +.ion-filing:before { content: "\f134"; } + +.ion-film-marker:before { content: "\f135"; } + +.ion-fireball:before { content: "\f319"; } + +.ion-flag:before { content: "\f279"; } + +.ion-flame:before { content: "\f31a"; } + +.ion-flash:before { content: "\f137"; } + +.ion-flash-off:before { content: "\f136"; } + +.ion-folder:before { content: "\f139"; } + +.ion-fork:before { content: "\f27a"; } + +.ion-fork-repo:before { content: "\f2c0"; } + +.ion-forward:before { content: "\f13a"; } + +.ion-funnel:before { content: "\f31b"; } + +.ion-gear-a:before { content: "\f13d"; } + +.ion-gear-b:before { content: "\f13e"; } + +.ion-grid:before { content: "\f13f"; } + +.ion-hammer:before { content: "\f27b"; } + +.ion-happy:before { content: "\f31c"; } + +.ion-happy-outline:before { content: "\f3c6"; } + +.ion-headphone:before { content: "\f140"; } + +.ion-heart:before { content: "\f141"; } + +.ion-heart-broken:before { content: "\f31d"; } + +.ion-help:before { content: "\f143"; } + +.ion-help-buoy:before { content: "\f27c"; } + +.ion-help-circled:before { content: "\f142"; } + +.ion-home:before { content: "\f144"; } + +.ion-icecream:before { content: "\f27d"; } + +.ion-image:before { content: "\f147"; } + +.ion-images:before { content: "\f148"; } + +.ion-information:before { content: "\f14a"; } + +.ion-information-circled:before { content: "\f149"; } + +.ion-ionic:before { content: "\f14b"; } + +.ion-ios-alarm:before { content: "\f3c8"; } + +.ion-ios-alarm-outline:before { content: "\f3c7"; } + +.ion-ios-albums:before { content: "\f3ca"; } + +.ion-ios-albums-outline:before { content: "\f3c9"; } + +.ion-ios-americanfootball:before { content: "\f3cc"; } + +.ion-ios-americanfootball-outline:before { content: "\f3cb"; } + +.ion-ios-analytics:before { content: "\f3ce"; } + +.ion-ios-analytics-outline:before { content: "\f3cd"; } + +.ion-ios-arrow-back:before { content: "\f3cf"; } + +.ion-ios-arrow-down:before { content: "\f3d0"; } + +.ion-ios-arrow-forward:before { content: "\f3d1"; } + +.ion-ios-arrow-left:before { content: "\f3d2"; } + +.ion-ios-arrow-right:before { content: "\f3d3"; } + +.ion-ios-arrow-thin-down:before { content: "\f3d4"; } + +.ion-ios-arrow-thin-left:before { content: "\f3d5"; } + +.ion-ios-arrow-thin-right:before { content: "\f3d6"; } + +.ion-ios-arrow-thin-up:before { content: "\f3d7"; } + +.ion-ios-arrow-up:before { content: "\f3d8"; } + +.ion-ios-at:before { content: "\f3da"; } + +.ion-ios-at-outline:before { content: "\f3d9"; } + +.ion-ios-barcode:before { content: "\f3dc"; } + +.ion-ios-barcode-outline:before { content: "\f3db"; } + +.ion-ios-baseball:before { content: "\f3de"; } + +.ion-ios-baseball-outline:before { content: "\f3dd"; } + +.ion-ios-basketball:before { content: "\f3e0"; } + +.ion-ios-basketball-outline:before { content: "\f3df"; } + +.ion-ios-bell:before { content: "\f3e2"; } + +.ion-ios-bell-outline:before { content: "\f3e1"; } + +.ion-ios-body:before { content: "\f3e4"; } + +.ion-ios-body-outline:before { content: "\f3e3"; } + +.ion-ios-bolt:before { content: "\f3e6"; } + +.ion-ios-bolt-outline:before { content: "\f3e5"; } + +.ion-ios-book:before { content: "\f3e8"; } + +.ion-ios-book-outline:before { content: "\f3e7"; } + +.ion-ios-bookmarks:before { content: "\f3ea"; } + +.ion-ios-bookmarks-outline:before { content: "\f3e9"; } + +.ion-ios-box:before { content: "\f3ec"; } + +.ion-ios-box-outline:before { content: "\f3eb"; } + +.ion-ios-briefcase:before { content: "\f3ee"; } + +.ion-ios-briefcase-outline:before { content: "\f3ed"; } + +.ion-ios-browsers:before { content: "\f3f0"; } + +.ion-ios-browsers-outline:before { content: "\f3ef"; } + +.ion-ios-calculator:before { content: "\f3f2"; } + +.ion-ios-calculator-outline:before { content: "\f3f1"; } + +.ion-ios-calendar:before { content: "\f3f4"; } + +.ion-ios-calendar-outline:before { content: "\f3f3"; } + +.ion-ios-camera:before { content: "\f3f6"; } + +.ion-ios-camera-outline:before { content: "\f3f5"; } + +.ion-ios-cart:before { content: "\f3f8"; } + +.ion-ios-cart-outline:before { content: "\f3f7"; } + +.ion-ios-chatboxes:before { content: "\f3fa"; } + +.ion-ios-chatboxes-outline:before { content: "\f3f9"; } + +.ion-ios-chatbubble:before { content: "\f3fc"; } + +.ion-ios-chatbubble-outline:before { content: "\f3fb"; } + +.ion-ios-checkmark:before { content: "\f3ff"; } + +.ion-ios-checkmark-empty:before { content: "\f3fd"; } + +.ion-ios-checkmark-outline:before { content: "\f3fe"; } + +.ion-ios-circle-filled:before { content: "\f400"; } + +.ion-ios-circle-outline:before { content: "\f401"; } + +.ion-ios-clock:before { content: "\f403"; } + +.ion-ios-clock-outline:before { content: "\f402"; } + +.ion-ios-close:before { content: "\f406"; } + +.ion-ios-close-empty:before { content: "\f404"; } + +.ion-ios-close-outline:before { content: "\f405"; } + +.ion-ios-cloud:before { content: "\f40c"; } + +.ion-ios-cloud-download:before { content: "\f408"; } + +.ion-ios-cloud-download-outline:before { content: "\f407"; } + +.ion-ios-cloud-outline:before { content: "\f409"; } + +.ion-ios-cloud-upload:before { content: "\f40b"; } + +.ion-ios-cloud-upload-outline:before { content: "\f40a"; } + +.ion-ios-cloudy:before { content: "\f410"; } + +.ion-ios-cloudy-night:before { content: "\f40e"; } + +.ion-ios-cloudy-night-outline:before { content: "\f40d"; } + +.ion-ios-cloudy-outline:before { content: "\f40f"; } + +.ion-ios-cog:before { content: "\f412"; } + +.ion-ios-cog-outline:before { content: "\f411"; } + +.ion-ios-color-filter:before { content: "\f414"; } + +.ion-ios-color-filter-outline:before { content: "\f413"; } + +.ion-ios-color-wand:before { content: "\f416"; } + +.ion-ios-color-wand-outline:before { content: "\f415"; } + +.ion-ios-compose:before { content: "\f418"; } + +.ion-ios-compose-outline:before { content: "\f417"; } + +.ion-ios-contact:before { content: "\f41a"; } + +.ion-ios-contact-outline:before { content: "\f419"; } + +.ion-ios-copy:before { content: "\f41c"; } + +.ion-ios-copy-outline:before { content: "\f41b"; } + +.ion-ios-crop:before { content: "\f41e"; } + +.ion-ios-crop-strong:before { content: "\f41d"; } + +.ion-ios-download:before { content: "\f420"; } + +.ion-ios-download-outline:before { content: "\f41f"; } + +.ion-ios-drag:before { content: "\f421"; } + +.ion-ios-email:before { content: "\f423"; } + +.ion-ios-email-outline:before { content: "\f422"; } + +.ion-ios-eye:before { content: "\f425"; } + +.ion-ios-eye-outline:before { content: "\f424"; } + +.ion-ios-fastforward:before { content: "\f427"; } + +.ion-ios-fastforward-outline:before { content: "\f426"; } + +.ion-ios-filing:before { content: "\f429"; } + +.ion-ios-filing-outline:before { content: "\f428"; } + +.ion-ios-film:before { content: "\f42b"; } + +.ion-ios-film-outline:before { content: "\f42a"; } + +.ion-ios-flag:before { content: "\f42d"; } + +.ion-ios-flag-outline:before { content: "\f42c"; } + +.ion-ios-flame:before { content: "\f42f"; } + +.ion-ios-flame-outline:before { content: "\f42e"; } + +.ion-ios-flask:before { content: "\f431"; } + +.ion-ios-flask-outline:before { content: "\f430"; } + +.ion-ios-flower:before { content: "\f433"; } + +.ion-ios-flower-outline:before { content: "\f432"; } + +.ion-ios-folder:before { content: "\f435"; } + +.ion-ios-folder-outline:before { content: "\f434"; } + +.ion-ios-football:before { content: "\f437"; } + +.ion-ios-football-outline:before { content: "\f436"; } + +.ion-ios-game-controller-a:before { content: "\f439"; } + +.ion-ios-game-controller-a-outline:before { content: "\f438"; } + +.ion-ios-game-controller-b:before { content: "\f43b"; } + +.ion-ios-game-controller-b-outline:before { content: "\f43a"; } + +.ion-ios-gear:before { content: "\f43d"; } + +.ion-ios-gear-outline:before { content: "\f43c"; } + +.ion-ios-glasses:before { content: "\f43f"; } + +.ion-ios-glasses-outline:before { content: "\f43e"; } + +.ion-ios-grid-view:before { content: "\f441"; } + +.ion-ios-grid-view-outline:before { content: "\f440"; } + +.ion-ios-heart:before { content: "\f443"; } + +.ion-ios-heart-outline:before { content: "\f442"; } + +.ion-ios-help:before { content: "\f446"; } + +.ion-ios-help-empty:before { content: "\f444"; } + +.ion-ios-help-outline:before { content: "\f445"; } + +.ion-ios-home:before { content: "\f448"; } + +.ion-ios-home-outline:before { content: "\f447"; } + +.ion-ios-infinite:before { content: "\f44a"; } + +.ion-ios-infinite-outline:before { content: "\f449"; } + +.ion-ios-information:before { content: "\f44d"; } + +.ion-ios-information-empty:before { content: "\f44b"; } + +.ion-ios-information-outline:before { content: "\f44c"; } + +.ion-ios-ionic-outline:before { content: "\f44e"; } + +.ion-ios-keypad:before { content: "\f450"; } + +.ion-ios-keypad-outline:before { content: "\f44f"; } + +.ion-ios-lightbulb:before { content: "\f452"; } + +.ion-ios-lightbulb-outline:before { content: "\f451"; } + +.ion-ios-list:before { content: "\f454"; } + +.ion-ios-list-outline:before { content: "\f453"; } + +.ion-ios-location:before { content: "\f456"; } + +.ion-ios-location-outline:before { content: "\f455"; } + +.ion-ios-locked:before { content: "\f458"; } + +.ion-ios-locked-outline:before { content: "\f457"; } + +.ion-ios-loop:before { content: "\f45a"; } + +.ion-ios-loop-strong:before { content: "\f459"; } + +.ion-ios-medical:before { content: "\f45c"; } + +.ion-ios-medical-outline:before { content: "\f45b"; } + +.ion-ios-medkit:before { content: "\f45e"; } + +.ion-ios-medkit-outline:before { content: "\f45d"; } + +.ion-ios-mic:before { content: "\f461"; } + +.ion-ios-mic-off:before { content: "\f45f"; } + +.ion-ios-mic-outline:before { content: "\f460"; } + +.ion-ios-minus:before { content: "\f464"; } + +.ion-ios-minus-empty:before { content: "\f462"; } + +.ion-ios-minus-outline:before { content: "\f463"; } + +.ion-ios-monitor:before { content: "\f466"; } + +.ion-ios-monitor-outline:before { content: "\f465"; } + +.ion-ios-moon:before { content: "\f468"; } + +.ion-ios-moon-outline:before { content: "\f467"; } + +.ion-ios-more:before { content: "\f46a"; } + +.ion-ios-more-outline:before { content: "\f469"; } + +.ion-ios-musical-note:before { content: "\f46b"; } + +.ion-ios-musical-notes:before { content: "\f46c"; } + +.ion-ios-navigate:before { content: "\f46e"; } + +.ion-ios-navigate-outline:before { content: "\f46d"; } + +.ion-ios-nutrition:before { content: "\f470"; } + +.ion-ios-nutrition-outline:before { content: "\f46f"; } + +.ion-ios-paper:before { content: "\f472"; } + +.ion-ios-paper-outline:before { content: "\f471"; } + +.ion-ios-paperplane:before { content: "\f474"; } + +.ion-ios-paperplane-outline:before { content: "\f473"; } + +.ion-ios-partlysunny:before { content: "\f476"; } + +.ion-ios-partlysunny-outline:before { content: "\f475"; } + +.ion-ios-pause:before { content: "\f478"; } + +.ion-ios-pause-outline:before { content: "\f477"; } + +.ion-ios-paw:before { content: "\f47a"; } + +.ion-ios-paw-outline:before { content: "\f479"; } + +.ion-ios-people:before { content: "\f47c"; } + +.ion-ios-people-outline:before { content: "\f47b"; } + +.ion-ios-person:before { content: "\f47e"; } + +.ion-ios-person-outline:before { content: "\f47d"; } + +.ion-ios-personadd:before { content: "\f480"; } + +.ion-ios-personadd-outline:before { content: "\f47f"; } + +.ion-ios-photos:before { content: "\f482"; } + +.ion-ios-photos-outline:before { content: "\f481"; } + +.ion-ios-pie:before { content: "\f484"; } + +.ion-ios-pie-outline:before { content: "\f483"; } + +.ion-ios-pint:before { content: "\f486"; } + +.ion-ios-pint-outline:before { content: "\f485"; } + +.ion-ios-play:before { content: "\f488"; } + +.ion-ios-play-outline:before { content: "\f487"; } + +.ion-ios-plus:before { content: "\f48b"; } + +.ion-ios-plus-empty:before { content: "\f489"; } + +.ion-ios-plus-outline:before { content: "\f48a"; } + +.ion-ios-pricetag:before { content: "\f48d"; } + +.ion-ios-pricetag-outline:before { content: "\f48c"; } + +.ion-ios-pricetags:before { content: "\f48f"; } + +.ion-ios-pricetags-outline:before { content: "\f48e"; } + +.ion-ios-printer:before { content: "\f491"; } + +.ion-ios-printer-outline:before { content: "\f490"; } + +.ion-ios-pulse:before { content: "\f493"; } + +.ion-ios-pulse-strong:before { content: "\f492"; } + +.ion-ios-rainy:before { content: "\f495"; } + +.ion-ios-rainy-outline:before { content: "\f494"; } + +.ion-ios-recording:before { content: "\f497"; } + +.ion-ios-recording-outline:before { content: "\f496"; } + +.ion-ios-redo:before { content: "\f499"; } + +.ion-ios-redo-outline:before { content: "\f498"; } + +.ion-ios-refresh:before { content: "\f49c"; } + +.ion-ios-refresh-empty:before { content: "\f49a"; } + +.ion-ios-refresh-outline:before { content: "\f49b"; } + +.ion-ios-reload:before { content: "\f49d"; } + +.ion-ios-reverse-camera:before { content: "\f49f"; } + +.ion-ios-reverse-camera-outline:before { content: "\f49e"; } + +.ion-ios-rewind:before { content: "\f4a1"; } + +.ion-ios-rewind-outline:before { content: "\f4a0"; } + +.ion-ios-rose:before { content: "\f4a3"; } + +.ion-ios-rose-outline:before { content: "\f4a2"; } + +.ion-ios-search:before { content: "\f4a5"; } + +.ion-ios-search-strong:before { content: "\f4a4"; } + +.ion-ios-settings:before { content: "\f4a7"; } + +.ion-ios-settings-strong:before { content: "\f4a6"; } + +.ion-ios-shuffle:before { content: "\f4a9"; } + +.ion-ios-shuffle-strong:before { content: "\f4a8"; } + +.ion-ios-skipbackward:before { content: "\f4ab"; } + +.ion-ios-skipbackward-outline:before { content: "\f4aa"; } + +.ion-ios-skipforward:before { content: "\f4ad"; } + +.ion-ios-skipforward-outline:before { content: "\f4ac"; } + +.ion-ios-snowy:before { content: "\f4ae"; } + +.ion-ios-speedometer:before { content: "\f4b0"; } + +.ion-ios-speedometer-outline:before { content: "\f4af"; } + +.ion-ios-star:before { content: "\f4b3"; } + +.ion-ios-star-half:before { content: "\f4b1"; } + +.ion-ios-star-outline:before { content: "\f4b2"; } + +.ion-ios-stopwatch:before { content: "\f4b5"; } + +.ion-ios-stopwatch-outline:before { content: "\f4b4"; } + +.ion-ios-sunny:before { content: "\f4b7"; } + +.ion-ios-sunny-outline:before { content: "\f4b6"; } + +.ion-ios-telephone:before { content: "\f4b9"; } + +.ion-ios-telephone-outline:before { content: "\f4b8"; } + +.ion-ios-tennisball:before { content: "\f4bb"; } + +.ion-ios-tennisball-outline:before { content: "\f4ba"; } + +.ion-ios-thunderstorm:before { content: "\f4bd"; } + +.ion-ios-thunderstorm-outline:before { content: "\f4bc"; } + +.ion-ios-time:before { content: "\f4bf"; } + +.ion-ios-time-outline:before { content: "\f4be"; } + +.ion-ios-timer:before { content: "\f4c1"; } + +.ion-ios-timer-outline:before { content: "\f4c0"; } + +.ion-ios-toggle:before { content: "\f4c3"; } + +.ion-ios-toggle-outline:before { content: "\f4c2"; } + +.ion-ios-trash:before { content: "\f4c5"; } + +.ion-ios-trash-outline:before { content: "\f4c4"; } + +.ion-ios-undo:before { content: "\f4c7"; } + +.ion-ios-undo-outline:before { content: "\f4c6"; } + +.ion-ios-unlocked:before { content: "\f4c9"; } + +.ion-ios-unlocked-outline:before { content: "\f4c8"; } + +.ion-ios-upload:before { content: "\f4cb"; } + +.ion-ios-upload-outline:before { content: "\f4ca"; } + +.ion-ios-videocam:before { content: "\f4cd"; } + +.ion-ios-videocam-outline:before { content: "\f4cc"; } + +.ion-ios-volume-high:before { content: "\f4ce"; } + +.ion-ios-volume-low:before { content: "\f4cf"; } + +.ion-ios-wineglass:before { content: "\f4d1"; } + +.ion-ios-wineglass-outline:before { content: "\f4d0"; } + +.ion-ios-world:before { content: "\f4d3"; } + +.ion-ios-world-outline:before { content: "\f4d2"; } + +.ion-ipad:before { content: "\f1f9"; } + +.ion-iphone:before { content: "\f1fa"; } + +.ion-ipod:before { content: "\f1fb"; } + +.ion-jet:before { content: "\f295"; } + +.ion-key:before { content: "\f296"; } + +.ion-knife:before { content: "\f297"; } + +.ion-laptop:before { content: "\f1fc"; } + +.ion-leaf:before { content: "\f1fd"; } + +.ion-levels:before { content: "\f298"; } + +.ion-lightbulb:before { content: "\f299"; } + +.ion-link:before { content: "\f1fe"; } + +.ion-load-a:before { content: "\f29a"; } + +.ion-load-b:before { content: "\f29b"; } + +.ion-load-c:before { content: "\f29c"; } + +.ion-load-d:before { content: "\f29d"; } + +.ion-location:before { content: "\f1ff"; } + +.ion-lock-combination:before { content: "\f4d4"; } + +.ion-locked:before { content: "\f200"; } + +.ion-log-in:before { content: "\f29e"; } + +.ion-log-out:before { content: "\f29f"; } + +.ion-loop:before { content: "\f201"; } + +.ion-magnet:before { content: "\f2a0"; } + +.ion-male:before { content: "\f2a1"; } + +.ion-man:before { content: "\f202"; } + +.ion-map:before { content: "\f203"; } + +.ion-medkit:before { content: "\f2a2"; } + +.ion-merge:before { content: "\f33f"; } + +.ion-mic-a:before { content: "\f204"; } + +.ion-mic-b:before { content: "\f205"; } + +.ion-mic-c:before { content: "\f206"; } + +.ion-minus:before { content: "\f209"; } + +.ion-minus-circled:before { content: "\f207"; } + +.ion-minus-round:before { content: "\f208"; } + +.ion-model-s:before { content: "\f2c1"; } + +.ion-monitor:before { content: "\f20a"; } + +.ion-more:before { content: "\f20b"; } + +.ion-mouse:before { content: "\f340"; } + +.ion-music-note:before { content: "\f20c"; } + +.ion-navicon:before { content: "\f20e"; } + +.ion-navicon-round:before { content: "\f20d"; } + +.ion-navigate:before { content: "\f2a3"; } + +.ion-network:before { content: "\f341"; } + +.ion-no-smoking:before { content: "\f2c2"; } + +.ion-nuclear:before { content: "\f2a4"; } + +.ion-outlet:before { content: "\f342"; } + +.ion-paintbrush:before { content: "\f4d5"; } + +.ion-paintbucket:before { content: "\f4d6"; } + +.ion-paper-airplane:before { content: "\f2c3"; } + +.ion-paperclip:before { content: "\f20f"; } + +.ion-pause:before { content: "\f210"; } + +.ion-person:before { content: "\f213"; } + +.ion-person-add:before { content: "\f211"; } + +.ion-person-stalker:before { content: "\f212"; } + +.ion-pie-graph:before { content: "\f2a5"; } + +.ion-pin:before { content: "\f2a6"; } + +.ion-pinpoint:before { content: "\f2a7"; } + +.ion-pizza:before { content: "\f2a8"; } + +.ion-plane:before { content: "\f214"; } + +.ion-planet:before { content: "\f343"; } + +.ion-play:before { content: "\f215"; } + +.ion-playstation:before { content: "\f30a"; } + +.ion-plus:before { content: "\f218"; } + +.ion-plus-circled:before { content: "\f216"; } + +.ion-plus-round:before { content: "\f217"; } + +.ion-podium:before { content: "\f344"; } + +.ion-pound:before { content: "\f219"; } + +.ion-power:before { content: "\f2a9"; } + +.ion-pricetag:before { content: "\f2aa"; } + +.ion-pricetags:before { content: "\f2ab"; } + +.ion-printer:before { content: "\f21a"; } + +.ion-pull-request:before { content: "\f345"; } + +.ion-qr-scanner:before { content: "\f346"; } + +.ion-quote:before { content: "\f347"; } + +.ion-radio-waves:before { content: "\f2ac"; } + +.ion-record:before { content: "\f21b"; } + +.ion-refresh:before { content: "\f21c"; } + +.ion-reply:before { content: "\f21e"; } + +.ion-reply-all:before { content: "\f21d"; } + +.ion-ribbon-a:before { content: "\f348"; } + +.ion-ribbon-b:before { content: "\f349"; } + +.ion-sad:before { content: "\f34a"; } + +.ion-sad-outline:before { content: "\f4d7"; } + +.ion-scissors:before { content: "\f34b"; } + +.ion-search:before { content: "\f21f"; } + +.ion-settings:before { content: "\f2ad"; } + +.ion-share:before { content: "\f220"; } + +.ion-shuffle:before { content: "\f221"; } + +.ion-skip-backward:before { content: "\f222"; } + +.ion-skip-forward:before { content: "\f223"; } + +.ion-social-android:before { content: "\f225"; } + +.ion-social-android-outline:before { content: "\f224"; } + +.ion-social-angular:before { content: "\f4d9"; } + +.ion-social-angular-outline:before { content: "\f4d8"; } + +.ion-social-apple:before { content: "\f227"; } + +.ion-social-apple-outline:before { content: "\f226"; } + +.ion-social-bitcoin:before { content: "\f2af"; } + +.ion-social-bitcoin-outline:before { content: "\f2ae"; } + +.ion-social-buffer:before { content: "\f229"; } + +.ion-social-buffer-outline:before { content: "\f228"; } + +.ion-social-chrome:before { content: "\f4db"; } + +.ion-social-chrome-outline:before { content: "\f4da"; } + +.ion-social-codepen:before { content: "\f4dd"; } + +.ion-social-codepen-outline:before { content: "\f4dc"; } + +.ion-social-css3:before { content: "\f4df"; } + +.ion-social-css3-outline:before { content: "\f4de"; } + +.ion-social-designernews:before { content: "\f22b"; } + +.ion-social-designernews-outline:before { content: "\f22a"; } + +.ion-social-dribbble:before { content: "\f22d"; } + +.ion-social-dribbble-outline:before { content: "\f22c"; } + +.ion-social-dropbox:before { content: "\f22f"; } + +.ion-social-dropbox-outline:before { content: "\f22e"; } + +.ion-social-euro:before { content: "\f4e1"; } + +.ion-social-euro-outline:before { content: "\f4e0"; } + +.ion-social-facebook:before { content: "\f231"; } + +.ion-social-facebook-outline:before { content: "\f230"; } + +.ion-social-foursquare:before { content: "\f34d"; } + +.ion-social-foursquare-outline:before { content: "\f34c"; } + +.ion-social-freebsd-devil:before { content: "\f2c4"; } + +.ion-social-github:before { content: "\f233"; } + +.ion-social-github-outline:before { content: "\f232"; } + +.ion-social-google:before { content: "\f34f"; } + +.ion-social-google-outline:before { content: "\f34e"; } + +.ion-social-googleplus:before { content: "\f235"; } + +.ion-social-googleplus-outline:before { content: "\f234"; } + +.ion-social-hackernews:before { content: "\f237"; } + +.ion-social-hackernews-outline:before { content: "\f236"; } + +.ion-social-html5:before { content: "\f4e3"; } + +.ion-social-html5-outline:before { content: "\f4e2"; } + +.ion-social-instagram:before { content: "\f351"; } + +.ion-social-instagram-outline:before { content: "\f350"; } + +.ion-social-javascript:before { content: "\f4e5"; } + +.ion-social-javascript-outline:before { content: "\f4e4"; } + +.ion-social-linkedin:before { content: "\f239"; } + +.ion-social-linkedin-outline:before { content: "\f238"; } + +.ion-social-markdown:before { content: "\f4e6"; } + +.ion-social-nodejs:before { content: "\f4e7"; } + +.ion-social-octocat:before { content: "\f4e8"; } + +.ion-social-pinterest:before { content: "\f2b1"; } + +.ion-social-pinterest-outline:before { content: "\f2b0"; } + +.ion-social-python:before { content: "\f4e9"; } + +.ion-social-reddit:before { content: "\f23b"; } + +.ion-social-reddit-outline:before { content: "\f23a"; } + +.ion-social-rss:before { content: "\f23d"; } + +.ion-social-rss-outline:before { content: "\f23c"; } + +.ion-social-sass:before { content: "\f4ea"; } + +.ion-social-skype:before { content: "\f23f"; } + +.ion-social-skype-outline:before { content: "\f23e"; } + +.ion-social-snapchat:before { content: "\f4ec"; } + +.ion-social-snapchat-outline:before { content: "\f4eb"; } + +.ion-social-tumblr:before { content: "\f241"; } + +.ion-social-tumblr-outline:before { content: "\f240"; } + +.ion-social-tux:before { content: "\f2c5"; } + +.ion-social-twitch:before { content: "\f4ee"; } + +.ion-social-twitch-outline:before { content: "\f4ed"; } + +.ion-social-twitter:before { content: "\f243"; } + +.ion-social-twitter-outline:before { content: "\f242"; } + +.ion-social-usd:before { content: "\f353"; } + +.ion-social-usd-outline:before { content: "\f352"; } + +.ion-social-vimeo:before { content: "\f245"; } + +.ion-social-vimeo-outline:before { content: "\f244"; } + +.ion-social-whatsapp:before { content: "\f4f0"; } + +.ion-social-whatsapp-outline:before { content: "\f4ef"; } + +.ion-social-windows:before { content: "\f247"; } + +.ion-social-windows-outline:before { content: "\f246"; } + +.ion-social-wordpress:before { content: "\f249"; } + +.ion-social-wordpress-outline:before { content: "\f248"; } + +.ion-social-yahoo:before { content: "\f24b"; } + +.ion-social-yahoo-outline:before { content: "\f24a"; } + +.ion-social-yen:before { content: "\f4f2"; } + +.ion-social-yen-outline:before { content: "\f4f1"; } + +.ion-social-youtube:before { content: "\f24d"; } + +.ion-social-youtube-outline:before { content: "\f24c"; } + +.ion-soup-can:before { content: "\f4f4"; } + +.ion-soup-can-outline:before { content: "\f4f3"; } + +.ion-speakerphone:before { content: "\f2b2"; } + +.ion-speedometer:before { content: "\f2b3"; } + +.ion-spoon:before { content: "\f2b4"; } + +.ion-star:before { content: "\f24e"; } + +.ion-stats-bars:before { content: "\f2b5"; } + +.ion-steam:before { content: "\f30b"; } + +.ion-stop:before { content: "\f24f"; } + +.ion-thermometer:before { content: "\f2b6"; } + +.ion-thumbsdown:before { content: "\f250"; } + +.ion-thumbsup:before { content: "\f251"; } + +.ion-toggle:before { content: "\f355"; } + +.ion-toggle-filled:before { content: "\f354"; } + +.ion-transgender:before { content: "\f4f5"; } + +.ion-trash-a:before { content: "\f252"; } + +.ion-trash-b:before { content: "\f253"; } + +.ion-trophy:before { content: "\f356"; } + +.ion-tshirt:before { content: "\f4f7"; } + +.ion-tshirt-outline:before { content: "\f4f6"; } + +.ion-umbrella:before { content: "\f2b7"; } + +.ion-university:before { content: "\f357"; } + +.ion-unlocked:before { content: "\f254"; } + +.ion-upload:before { content: "\f255"; } + +.ion-usb:before { content: "\f2b8"; } + +.ion-videocamera:before { content: "\f256"; } + +.ion-volume-high:before { content: "\f257"; } + +.ion-volume-low:before { content: "\f258"; } + +.ion-volume-medium:before { content: "\f259"; } + +.ion-volume-mute:before { content: "\f25a"; } + +.ion-wand:before { content: "\f358"; } + +.ion-waterdrop:before { content: "\f25b"; } + +.ion-wifi:before { content: "\f25c"; } + +.ion-wineglass:before { content: "\f2b9"; } + +.ion-woman:before { content: "\f25d"; } + +.ion-wrench:before { content: "\f2ba"; } + +.ion-xbox:before { content: "\f30c"; } diff --git a/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.eot b/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.eot new file mode 100644 index 0000000000000000000000000000000000000000..92a3f20a39267ae7f45144f412a995a663730360 GIT binary patch literal 120724 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

@FHUiu&=5w(f-3S1h*&)&h2 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 + + + + +Created by FontForge 20120731 at Thu Dec 4 09:51:48 2014 + By Adam Bradley +Created by Adam Bradley with FontForge 2.0 (http://fontforge.sf.net) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.ttf b/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.ttf new file mode 100644 index 0000000000000000000000000000000000000000..c4e4632486d863337c1c73478ddb3c20726c55a0 GIT binary patch literal 188508 zcmdqKd3YSxbtign?ORt@^;W&_3xLMn=x&lAfC5MmBta73YC&8CYN067k||lTWXX~t zQE_C)9xI6*JGK&YGLG%UPNFP!?D$K}?6D`AIL_uIZ{DMw_kGD^@@8b(aXfh$=>1ML zK!TF&*vWkJ#{;^%s;jH2?>+b2v;59Ew;5-Qh1nVt*`+;ujvc)J9r`zM)(9tW6xatHO9n;nec*i{+_dU3l~575hi>H_hX&&I3T_x zUBUYo@xFTg{)Zo%HP}A9{}aZ{r(XYtyUvO~`q^J(!pHG_=Ck*oee9C_I`bhWeCo?M zzxcq}`|tUQ@c;1u-hYcR;rlMV;f)Xf=x_Y#Uozn{YiQmVEO z0#E8a`~9h(_(R%$@guDt+StB_N&GGR8%)M22lzQ0UD(+E152@Iad)PObZ+m@+1$Z) z`P}^7?CRIpH~x`defcUI=2w}I!@)OgoK_6p(e?DqZhZC)yrZ+SOk&iZaaP1$sD4uU-GYum6|pe}Da@>)*QmKfkVg-THd? z>$z|I;L?9`RfL* ziGF?N<(I=^SO_zF-9BvZu)B80ZrdaFkUe1c*>$^Ym+ZWqv6HrI+qPxvp})PQKWOZC z_s5l+gx~_Mq371WtyJ22{QqD30&~%!ALYj};wtO+>v$&$Ok80C=fXiI2>h^wJwDHv zs>l*f6J6P9w%nH6Xt@>lxkt~PPF)&Ez+zdRHafXH|pJJXWWanEAcL#{8tr8 z*4NMIvZVZ>9FZfw@25>w(^Qk6*7fzzjE*ip|9mi-FJEJ8{7TTTlAp&`;G(cX+`sNfO*$-9Vy!MD(zOIBDU7n)|^#mt+?v*BDxcBMUh|St4zThc*7?dS7bi7_@cdh zo8O1)`2_*pV;3|o$ zo@{m-t#&Kk@)BWAv>4&_8QxM`;|1R8b|!hFb!}~Vb@^~a)Wy{LJ5t!Vdk3b+B_Z;$ zh#gs()VplA-D`9k}#i1c_nkay-uVIW7mhhu^KeO39b{1bOMw+eO7hk=4 z>B^<6SFiS_$}0DH5u=*-GbV`1_#BRNwnTS3N_SZBCIq(`t+yvSt^)E7R77hmCgCg|Eh>e^xI+PoV<*V^59D_)6%A^~OSQ#^}|_~Sd# zrB))kbXuT^8>40m^@$n&(H>`ZPz3WN5esvCOH65U53fX@_C)u7Jsr`TMVNGF}j< z@u^#QqjD?fY_xAHO+bzdbi0cn1P{1`9|L(f(ZnN~c*KTWDHFl*T@y5Ih-be33XT}l zBWdoxnsZ)3liqysiTg1aoNvsRs8@+s+LeGS0!rXA>M*-?&b$^Kf;m$|D`|#fv}Oci zXg+l-H@x{4y7caS>zpCx#hk$m;lg>GAOsUrIEn+p=A4OkiO{^q8TiI>eTu6@o7b2! zTzm}*;b!dRYmkRm*jcv5F8KF8!8P+N7a;cyL7Zc%tjMZzo++lRnCFm>Bf}shgn8BE_#0-Pj!e9$`-TBa^JJ;@7J9FyLfrc9$C`Xz@Wjood z*%-b?o&GV|yZCR7=Y@DoRp_6%sM0$F{J!zAm+)HM7JVF#C0gU%PJ5zvgG#w~RXm1M z@K2w08(RMvvsPQ8zidcdVYyxl!Fny5V#t+e{}@(MZTL3_JOtrP{J-r!)Q4 zY$_4c^-w64&X+3#`C`JeEGLxzWz95=NXRu5O;rp{3ENiK3Ms0g%CIb<9XH1{#5~qw z$NeK?eYLElseI1hxJ1=3ssfX_AfJ>hQRJpBs2W#SphQ@p>`0+140b|md}y#yFBLQC zR5B5D!Y~CwE!Pc2nmk&HwlI8?oTPOlj{SO*mld%jR^l`TXabO$-?GoI6xaQtzptgW z_FcQ$scZGlDgIch;zY6$=W6g;;l=f<+?QJW_O&GZ)jOT_PjOZ?A~r0Gh*7<{NAnUq z%zW^$&!VuPeSazjf#Gq8RuWPe40(k~B9mbKfG&b~l1UOfs*s*v;0%3=JGQB-5{vSP z8g6#WQ+xvYE(e~;@mQ0`W0i*5Qo9wyF!+;3&A{U$cTZ*Rp7M>qH;j()dOWYa;qV(? z(Ut;R@OR@IWhTli8l;D$GHFHUDvS=5pJa+41catJtq2RT7-z9UET09Py|`x>X^OY_r>ITqmxK0&!^QQV+SBu4-oY|z+ z0L&Po$C8A$LB60#qDYMq1<>VY1LW6kz%5_8^~*qpTgK#n2OTP2>ow?bxH$IOWOzmU z=6uqHk^rj~pQwruOaoC?z$=(d@6ofLF3FZ4vqOQ2Ah42YPpb2PNXJa zVLEoS86ox9Gc03?E&JVZSaDF+uv;cE*%RX(uu`C6uoHDl?o-(agwuZtUiWI+`m&~N z%hhvh`Di5PtY6`N#4eI#+WIoAtzXhK{=C-jc%IYWdtHB?Gx*TG{<0#!!dGDn7Fm@I zvL*ijQ)Eq6wDW=iny4~UF(Db4P(H~trb`+WE;Ng@1o=f)k;M0MHqc+MRV(FEK9^3# zBaW>rEXk85O<9QKo)JR5o`f+CG3||c%6Mm@URGkA@rklRwk7NZ{*)by+3O#s*ZGF- z919u!KX{9Eu6EPjgL2 zq%N=6=qLJ&jYM9F#1{qz>h*Ftla5Bv{h@)O!DhX`-rv_K*UBIT2vN!u6Y)qYnglUi z?nDA&1eQ8kWMl3a>{G9-#!Kyb#U1aqOYuaj3&%_)=L}E&Vasu>^~dPdMPt_l(-hY6 z8ohdT^@`6|@!_}VL#|m)(Tc^amznkO!1IC$z$iKEQYAwH}9iMn6Uq zXFwcowoxJ>7|gI++xUvM-1^P*Jz(~Y?@6*@qEi{lNaS;nw=+xt$grexN#U|6VImOJ zumnBDjzSCqYDlLV)lwlfoE~b`DlIMA?0Pnb4HD*U7?C~B$6N;MM{f|WK}Je_N&p*t zGcD$$x2sCqiDffUp`Lz3e`C5>fpFR=^yW-HO7kN6Gz9&`Y+bgM$r7HeT zsgk;LPr6L)C)w2-Ynsb_Y?K}I58D>BJD&@q4;XCN>>@m0uB(EKo}7fGtl*F$1bYfQ zYH~~;5Oa9w=J1n_iMqgOFrlq*(<5((yl~a#aV73G>acsuv5NBTnBa>i9)J83kC(V0 zC5}m&sBvDK+rk1pcHobEYx8#%qKW74_3UVLazrU2O`D%-3-+j}m{x#-R- zcq?d5+}nGPXsvGNLS?`oNLcfCDQyroF(dO+cg>G9IXnkte;T9~CFRcfh`XJ@?x6oY zpG}2i>G~6;JUkRx!jwT5p<$)-&=Z0LaGCS_aQ-c>W2V+0b>vtxvLX6qxKXeJs7tU6 zuo2Kzm=0cIynFdqF5|&5)e7KY{)RzdKU_?qUBV%>N#s|8Ga?v&4r;%90H5PioXQum zi?%|Bpb=O2TVb2q0KKl#Ft3^5(8bmYb5k55IkLjSXi+Hatgw*B5jU_`n64=L64Q0% zC{uK0A>#ub24E53C;yA@z2eU;E-ozW+BGwiN=74$Ego7tbnw8!{)PSf_U_uVYtQ`d znYo#{S$}d{dwgWDzfsO7r&H63Sj3BZpo1GvrU^m>EpOPQUMt}>%CXisZ1@0JYzi<} z0H%>u3WZ;W2?N!NBZ2zjWUkP&vGH8S+>2-GnYfS?SAj}=zv(#Ud*5TauDQ?DYL>}$ z)2eCKXD?m4a^>l#zsQRv0NmktG?R(O9a$}{X0xzt-XB;t=K(TkW@!C0mc1QDN8!ClMnc!ws8F!>yXBLiQ-}o3f|T z?SP?3_5`AbD+SxG3)5ADp##09=p|gaeCsi;3NvCp1~s0@(rECKC(6*+%Qpc64qD8^F`B zFn~|TlCdb^(>;_efY)Yvm}8*_P=`5xlM&0CmoJ;yg!#-fW+F@b`IvEeDtNuT@hKhY z?FVwP_x&}7@2_Q}`nUW3YO`AFeLrR#LFAi2Ikf@=A_Q;)2SiKW0=NVUPr7`WUh9(d z?6bfI6llTAm+2Mg#j{hACDkN41shAc{ET7X#AlwtrH1}Y(6&*G?J|6mrBA}h23;0k zG%-~(&@aGei9}~Wz75R@SA=l{Mbev}Lj1ns!B@F&1~7QBoJe@v60 zB<+x?i!!A692x|T6gU=})*@ZDP%V+~9&=%;lKcYqd8!xYGr%2tZ3-rvTG^aw{E1Mg z*e!&tx$e*V_LqtwWBorFp^)+U;(JYlhjf0*3KhD=P^iEAGdAYM=jlT}ZiI@)`ZoZ9 zZuM(b#KJvRU~PXK79)@#cz0+Ntdf%;C|3kRgk)J+VgL}~&noglwD;#|-i;ZvY2?>8 zwD;!wPcLuZzPx>@nod{KV}aKGnR9#hp4-byIJ|xN7!Iea*Mr&dWgOmn4&P1w8skOG zff(%8LHOLe5fT5urxsigkA{30L%z-A2=oZXDrhPia9hw=O&7FNOowfy!y<B}9Yghc}p85HGd-m;~Z3TbbcH2r~%zB>Brc?yd0eKOR z!MKMIg;2!DH}<{u%_H3{`;As39^-i-q<>wvZT*S@JLcGb6&FN$JRt~Ah*yLUisA=_ zqVQQ!{H!ptbAfw`^bdw@8+_TY1wlOJ7>I$1mxI@XTlNnfnzJ_fljs`93@WjX-*UOk z6EMW&fH!4yj8Fi(k{nd@J2%_G6wSq8g}Vozlz+45in7&VNeMJkLs z0kL99mVuT^l6)9iSd!;84IV1fOwBZONtF;d#^s``J53kPv%K*X*g85zPwo_ptHFa< z4B~MI~7i9DhmlAxC=EPGh_yl z%>n0!piqD{81NP!S^uglz5_wXcZil{t$*3F)*MOtoUZ>G;P;}{XW`NNejj$C&mwG! zwfxZ?^(d_Vi6Ky?pIR`729o!Ju|Pw}yWBuQ$42*gyQK(1ppANGQW!@FoBklnL*s zPUfmRcb3bu_r&+N+xy$MM{GcbgZX>{u$cdJ#vYBtB7=p>?95+v_IEn_=k189CJKeY z0?AE`26*PJ;28s+LzMxct(L$td`<7&@#{&LqRO z8MPwdRfFqjIv>yT94}EYy9WnTY0G^O+EVlbPL!Gh1am=XT{Y3vSKKQ{0!H9v611ZB~@B6UE%EN%j_yX6Yzw_;H#LoC3fD|Ll$|U;P=HBV^G6I zMpOL^lr7YTa62I@u)eU_Ox4Kv1)Kuo?AxBP;yYlmeAwm zm4ICc(4jO6*zgA|m0J|qUH?r>;~^o&Zxhx(rhq-n#h7B6R^;6Pfi&Y+R74?-Pshee zR!fH(u|g8jgpHz4%dpZA$H1(FRbg=MTd;b1$p>5V2RsLHjBZ&`r=?cgQ?K22S4~h$ zL&qnsT=|i@ujLlHL(9*<4Y%BwV{6c_O++>!8Jhj+WK0rNK_p{Un5$Kad5QZ7ziLwO zMUa+(;R4H^rd==ZWNdV3uw2SWPO}>G6txZkj@PnUZ*=PPf=F?vo9K4vb-bJKAm8bA zL+J67HQ6j@Q+mQl97sgs`e@xyYBg0aXOnt7(mR&SmQDF@mv`(~-tpDlI8n={YNlMP zDMo#iPO6s^2}jE&gG+HRnbi``2XOX|CiDg97egQyoJ`gvWxObS9wFx>9%N0{Dheh|15u$$yWUV6-FgE#ABdS_ zZV?ck@VcIgX#0)Mt_>2hvulQ#6&qCY<|D&P^Rixw%f>l$(DxSS$_}KM;)- zJ4H<$9@bRs#G(f>HqJBD{(jZKiLv-8oK+m8aisi|Vqh0g%%_4rPO=3I&K=19IOH!v zVn7=r90x;zg42YVhE(OG8x}&A6W*z}MVaBZ|L1LJ~3X*gCmjn zlTd&xZ-C~I#Q@2G%{53ckg)9~S-=IwNth~m7@v^XJsnl9g5plgy2O!S=VTLwaxz`CRiHr=Q90z)Z>z&V zcP75nxGOnYtRyd_%1Jd`D!5^oMux~;B@~h)9CuNauv;vurXVD7TC!3cP2Sa5*%lKG zEf!Nv)!9b;M)HUSx;e~T-?k)3A)?9ISPG&ifX9$ZgboCLJ%6fP{@I@`m-Da7XR`Sd ze6?~<<&&SpOR<>E7U@>7wLtHyptlOkvdi}Py9T)`YnXwUkFc>|X`N@J4pnluBmmCj zB?+R6G#Ly-U}=)ECGx$K(P*Pmi*9xGybfrN@J?$SBSC2^Gy?G!HIVG!z!Fu--=Pc{ z*vCDXCLbfk0WcVBN z?Lyj2*_NZn6nQviBvn;c+;GBgd%gSJu|9Tmugf&wvN7;yx;5-Z1+;-$ZhlR7_DY zXd@4G1X(!<|E|Ko5>;gt_$BB@o+5aagdr>{G4Ql09aTj->f(zjjL0Zm27{Okv+wRY zf9%#v#Pk2+cde}WFHKY5dGm&xGV{Kxc48dMi~CVhaA^P0#iI-J zbNRMW74S#>4FZt5Wp@nc~7t!>J=HVi`SKbu~bF` zMAgGQ9*i*(Km!1m@W}>o2ed^@;XiGJFjH+~{ZrTx!g`3uk$cAbup_U(#6!kkQI_5M z|7$oAe%vs3raH{o;U*t9_y(I61J{*UG-tSe?<_rClRTSHEP zjtIiA-z3i+I))%Pq_>GHB#}8gh|Ok}bCiUV>!^t)VhEJhi)Vdfrmhy(0MS^%M0A{& zoY7#eZP1|?&vqg2+ibT#TTGdRR>7F)rAZMA2!Tc50dfXqg&aIMIOO0FIglnbK0e+a zZ$~rUV7U_06Hu=k00CJR1o*}T5QY*s6_^}QVdT#RrbP_41qC1L6XP-dSRX>zkDr+D zXhtYHGZ7Al4O3G?QOS*04^=C4AUsjQ?#Hk4$FP4d;J8Vijc)7^mm?}U3}5S+^xZng1@i|$u1Gh4H`3|vB;%m%Dm|%p->F~&I3^> zri=?n#lPm6E5F=oRU)l1Kzc6a6>cOOb)dJQ(nU8=;XzDC2Pf<6*Y#(zx@_O6{IRP3 zvBDq4p&tU<+Msl0{r`bE9|h71YUA%J+D@o)2DoyCy?gORhx7mh0356{k|_{c58NRD zY;U)?4$YxssBSn0=!(Ljp-1QvcHz6e0>Yz+Oc&0Il_L2h`5YxJCLPZKSOf$EK4plo zqFxk>Z>WL<^>m`i2Y75eg5;wv%1u5-ubBcgQNnFsi zW?!|E%chcBlo%!4E0`XyY4LXZQFX-moIT(p9vTB+d@M8%DC76wERbJH5&p1gy3o zvOS|p(;}{o_?%`&#$6ThZDgqtZ>fM{>1l)J{Mx#2@J|@U^)+8$-MhbVH$SodPh2rx z`r;Scvh0`;DKw2ippPIvpN4f8@xzr|CI!gM$7g3_2>I6XTxsARQ!{V_5HbPS3AK<= zJMCd{gu~N*L6ZzMKHzwf&PsKE#)iPI-Fr{2e^8SLjiKY)2TenATJ5EI9*=Myikh01 zDDL{uiI^ldGETDez?fzkcDOl!7^M}(1$gIXjPil ziK~}NBO|3tt%N!nu`f~9pd&iKPLx~Tjs_}=`;^4Y)N*nB^(8tQd>8zmHTXYiHo#{6>HfY-8NOT) zMOCpCl#?JlX`?0D!tF##SCA3ZK+<9%8v|)WR)Bb>kV1c1Q;lf z)4>LejWHM)N&@Ndx)?n%J$)kBUH?b-gOO~euP>7=hV(ztLxuTMr{)X6E-w@c1pMZB zo+tzQpv{NSW)FE<4ZqqPfXR~pghj4$o^u~r*n~~>vPW{+Xhc9>TYMS-C3F=4Ahd`a zU^PC%y8yxA^|lKf=|D)zqVfZkpvm^9Yh#86b`VN@YRq#Eqz9kkGh;CqJChurDdLF0 zOYhmCY;VN9u+Ze<;5Mm!%+>hzU0&m^&M{XF_F6lX9rc745|MeshdaIYf0cawDQaA!8G5%odJOz8I1hj51I|h8`9(F%_lwD>&>i@{)r`H~T^XXH!-*)uy z@_~_|up+U+7RJi9} z7l#3+fhq7A%KXYm+Mtg+Iz2wef%*g)iu+6ffGWRlA6G0SE(!8JxGqrdFD?kk zy8zn$Embu&+(hR5qagwM;t#@-91`z9H4pM8M2r84X&9z~S`s{Y7p0hgV*qrUn*-2~ zr>ygoE-&=ntbgVD`1SFzr;$ezlEwSS?ooJ%^G}T351i3dI8qxQ9lI3f4_zO-jl&q{ z{O!*QGMXg_kT05GX>tl-P)pM(tYsnJRW!Mbau*9QGQAS3^yX&~{M`Vzpq8UtOnE@Q z`5gEg_B2z^gRh|qD9H`)01Ut{22#F^`AhL1E-l0p_>0FQ06HN_0yc+eBaZH|yjr2b z=v7O>qp2YH(B1qDri$g5(14tR7`*SY0TW_V3#> zKRYu$wUZ`Ddt$u5QJO2yxzSy2(s6@C8?P6%q(o6wK}HdzSb3tdsml>f#bM~D5k3L1 zuMLFMgVb%ob?c5JnAcU?6BJg50W_d#ifBquD2fz|a!3m#<#JUrMMcvtS^(m5A%_d9 zE+B-0!QeUym$2bHi_(@W#Z0mg3M(*cxD1;Vu6a0ANM_z{2``~;NfPBd-jWq8O0VPm zaLF`F0Y5;nL0&V^ugU)X;)^=$+b+{oRl5VmAktl6J|RO~2vIObT(P(WmICrdspP7v z9K=RZkD_EiQDNqGaHV$fd%keRuX9Ek3(^MOF>FQ;N;A-1h=-$=3T8j7S~swGq5cE^ zj(j|r2ao`S1d(P7oG)^~@PvZS|4r5hX9aTxOtyj<0ej~lHX?Z_B42=bz zK(_!f!pqtW_Xbtk3qU(jOOQ!9l}H6eaIh(QO@&DTxPP;>qs7s8uTt(#ObhMqB>AJ{ zXR7>@rn!Cs!tcH7Yya(3g=?ul&>RG`2_g|jKI()vkGKKS%27&eh4Qs{p%CBsML;$}*sI0!`S=tMn}3NE zU`t>BqlOdD3}mj>|JH*T;6em%c;1MLCE_a@+am15Rqz(Yd0;7S2JvCBpiktV(NF?7 z#%2>ZP9;MaR#fm*Qst;)d7;FOVMT2G1_y54hkbqH_*Ty3b2qtk>;4AEuJsuAWwyb< z8*N_VJ|98rH}hmDJqD9)B}kY-o40sn|6-mDae565NE49z>sNcvpDPwudxd#KCz^qe zQSFo823g>b-w5bJO@Qr@13~}`MGRyr{TUr87jv0JOjFndpFrhelyYMNX%1xvGbIsM zL5`kP9n>;X5iCAx)Kzj~drI-WX3{GaM|1g1j-!4krb(s=Kgo@_Zh5%OYu0ZzlHN%F z-_;%0ja0u9OM3C2ku>XP;*x57C8ZmNp8C52ThCF%m^Cms$T;8(-5QZE0_(? zc9;wyt2dynF&Q!60N1D5tMPbHiUt0It<_q!_F8znhhFH9pQl%(r_vr#E0};AGGiy9 zbjxH5 zp<9k34qgMUTbXDexd$Dd7I&ien|+_Cw}Z~dC>`Tw?>8t#blN=g)l|yD2L_SwALnmx z3BsLFROyr$0+=gtON3AdP{p%5bMRiUpa>U3vQYgGKOso7eTE~UNPs>TYKQ80g_ehi za1<*fI!o(bLC&w*QT}S_M^~`m$V2H0UdBXqA@}i+1NZZmQpUyjK{Zck3V=>NsWatiF-8m zL1So8KSu92YRu@fg<6ePr9c6POtLHpDxqql4XyomsF#GVIXQ0p5-G7t_3 z>p?iQ+MD*%rQ)Sa#TzCR_Ag!9>|I_${vFLr=wwK7neZ1`fI*e?U_@ex z0A!wLcn0!2P-TG|PBI&v4fJx)HR-7{6rn|*CS685q`hvu>FsRLlD^+$O$2EPwLYjI z=u2`S01_oi2ay6R%wzyA@uwnaiOy|GK(ffLT=B2b%atpE+<^^F^dy`a8HGUGLvt!1IE2!CLJc>#X6gx8cSyS}Y9u zx)+zHF(6#L0pDQ+-sB7Zk0R7$D29o8Fd2xCtgWDwm>FOIi`G1_5^!j(&`L~~A_%E) zZqta_9uGTqc!fDh?y8Qv5{0WPs0Xo8g~Ldi73N1r2M7E5s#Qu2fL?Bmw#LT>M+QfR zhx(d*&4K=EqYD3_2bT9}K}#vPVOxjp#@MHVOe})BF#1jDX5}KR1rdygun{bWN>J^w zS@pr6^GfAJpQc?i<-SC@+p_orR?odSL6C@Ui*x-vbHVbXEG%=3I zz07zalTO4!Ocj_7o)9S$0vV{Qh+M<#V*>nlNKiQHh#?VJMIa2~*n+rs7BNVId1{ri zi^{uNqlF6BUIqlJK?1v`G0}kiG6p{t`e;g-fZslas&}!|MmTb8+=E#UJ=5Z==l9Et z!wa;jB3|6;I68PQC5<=bziYv>Vmc zMC&cNbQJ0Dt>Z)Key_@&7u53H41Y!A(Mpw)9jFY9P%@IuB&py;Yz8~|ld9Sj zk)U?0J}`Uc%rmFsXQ>up8&YfsMe&4p`q|T`=LV`j7gQ*qe`L=U13w|kifrDWL+&gu zdWf!}3BYCn<$-@7%#ra6!6r-a9^hNtvho;XxokX!&O~F?2?R!JSmKG&#R<@y1aKP$ z@j&1ZmkBY=ZUO+;u>nRyZw zz{Fuov=um3AweG(`ujQS@Ah{_hAPMbP9|*2)LE8iY3Yx$EvUAL6(m~Y(*l%V>9f$*#+w8rB#H8y0GrF7#X-JmJ@`1*Q<^y>xKsgf$cI1v z_=9i^DBVApE4}trsC~tB7#U`0A7bTbCZ)~N4iaaPr-kFt#Q7{1wsAuy9Lx$YqkREx zfJV@AN?1T6cqN|%sSNGSSNFFz0ESa4YvG)>>cbq>;?8a{%^kH?N7oue(tF^KP)BE!rbFLg>2$f zI)w}sNaWLrlSQ5{RD_(D&z*#?m36%A3L@Bfka{@}ZR;63kr&*f*{ z^2B40yz!w+Z@75jo(Io8xO&I!D<_U0IecJo&-~o%^i*+Yap(5#L~C>ep|XlwinXF; zr;4?mDmf$%6KXgmObXbdvT>4+(K|q`cpum}ATPzxDBRF9ccz4505wi=R5y__3}&tL z8ppaQ7*y02rK42F8Z8g-#kdF7_f*Kb%CtxrI*B9jS3EY3@)6qM&ef#jxMN`e6arV> zgk$7Tt%co0BY{hX69D*CVJ6(bT~;871lk&0o;MiUv8Ujy2h zbfbbNLygPYo#~LQy|i;BJfUgGOPGLi!*=Dsf!o6^!4h>-$wj3itOpl9I;)Q~-ApMm=q5(QHah2>UfeS7cOo>N4?@LNA>7iDc0PWk0b~ z-0)-j_RdU6rZqpivn|=CFz0j2@8PF2%rdPD%tZR|83)W_Uw}wOpYEWQ4noXOLdNYd zqJY_H$b{!Th@GZO0Bj*$pjQhx{hGHCE`GOn@uxO#U|zV{jPLq-BrsKuA6wji`)$Wg z9Y3{^#Y&|Bf$PE(O9eEMqysITi=%9+8Y6ZfX}L1c&zA(JvU;xYf4nMF|;vIdERa^`xEd;ZU0^EUyDND~0WqL{w{+dL7X^!#H&EX%pvcNp*eUo31eim)GY$9z<&LYW zNV-Z4Kyy)DIDEJtcIDxf!z(9_&F`8+IWwXRV|{!2_s|+hNcO<8j|3J^bXdzGr z5DAjyJjCi5e6O!0!kmIxWjm-fe(=EN$?A>mL{rR zI{z(<()Ca>fxK1}^vF^no8XEa8;#j=BCl&vEGq!#J)B7O=kt+l!3dpyFb!Iw4}1F)87dxa_4kYLP%lGnN@|jSiuJK^e7O(@kaaUc`zy4cFgk zrDNM1r#*hD0E>B#W*Z@7poQ&5F`v&B@~~Mp>7U04kZ(j_51*q|iURyeMp5T^h;9TR zVGM4hV$*xZkHM-$;cTG*l(SL5YDMsnl2~62A#tpYkcaY*erHnMB+z&6xN)Pu^;dQ2 z_Kl9*kR@y2r7#iz$51PGoSkLA>la57F6{H|6EJLcw9vbw(1)jQ6D0M_>jVVzfIU&( z)GlNfNhk%y;uCOb&oE?9B3J7?ibJ&1xI3Y6ls1M`baI0c%#%?xO86m_>>EdsNogQP zbL(C7b2o3JVJVC6?k+37dv^8Y?aNDvcpCU<+>4`lG#ad>fQcL|gHUdCRV0~F33VBK z40QtYgOb041suS(fKSzK1GRn#{szTI|MEGis{WJ`Q+}$qQD1lg^X!EeB;(g`Kyx%4 z&mbE01WtJ~5>npvLi7nEZ9Eah8NYPn$_y0A)-$j!LvRMqVlmhwA|Ao!!;6bpK4DS# z7y^b^aO*HOfYYR%qBsfuyL(Zel;uf%Q3&6>%0~Xvq$uvd=XWjYJ8?2T2MUV60N)CO ze`gq~lWXA0DT3nW=p$H6RH917T)oH(LC_n8c9~4Z^WunUypp!xhN7Fae>J6V^q&a$ z`PZaZ<;FQ%Y4i%Zprqh6=<&#FQX$ZtMfk6);7SqMGGlBKG1_1C%UCtSh&o)X+D}+iVgd_n+s0Xo8 z33XNh6(WL(>yYPsKDdyd`);pX@e5NsC&oQ*c4p_?)LgecJ~=Uo6}`q96WbzQDG^4R zWxS!*ym+MnNlNRwc=1-lgQwGOv~xmJpaV@|iekPbTfGJ@AnAH+cX1 zzV&-Em4UEW>lbFK-~VX1rb{L6^ka<(E8@nT5B)G=Os1lEjlL)!Zr}Ui4?p_(7lvy2 zxR|?m=bgu{{lY0ea@5tv2OI~LKenpA<)5}IYB=W%4I+3F@Z2Wdf=wh03mqBG zd=6l(2uBYN9*PYEN`eUw5=Ehgu*>F474((34$W`9x~l-Q$X9|%4R1rK zYkxNFc&-PjZ{7^j))drUbv(rBY1^%1tT0A(#OLr1@1Y^fbq_}n%BO)$&_SGEfb2!VtZB2Z%>qJkun7`jC(c3L=D#ust+~CQDRG ziYglQ94sqcR-ppGGPEuXm_kP}HKt0?1tq2^&PZj3D<#0rJ&L}BtIs^U7zst<#ma5b zP&vhoM4!XAy`fbUin>}5!7hfJi4*PL zICSWthwxmA-g#$q>A{KP?N0mn#1alnoR~Py-#E80BMh{MADL-2=6AyqUYN6Dlan!P zu07Zt9NgAi#*w*+0aR9zBXYBy6u5?@lE)@Tws1ISP4=H6n>AG-3)3@?29+ zLXLoMOs1}2)j_~=9M#|}46ABcz;`XeYb{|Ox%y+V(cz(He_y>+s8vf9!lRuqtb~@j z34{~)9*21fGSW(`unpk7l5q<`iiAY?w=E=ftohouqeDXjW82D6b3ht$bu%658+5|q zd_IhIADDmjs^1)F`j&m7=+o z&_m=Br=dn1wjyL-&`{*_zg9zUY0K7c4sxb9F#H+#35VGS`HJ5{ewOI|&=bhai7FxS zQLco3$Fgael(7|>*P?miCdjsb>;2$vHfH^Q_pW!o`F04iy(SIm(Qwq#cr*yrl-rPh?a>z?1%^I{0Y0k???O z*Rcs)rwJ1KLHa3VRp4AvF&r)<(S-^eV$3nTqaunKVI0y8PAkB0>?B&SxsbLQQxiFX zDg;mLf(CPjw|j_?dgWXvSN4#C=WQD{MaxdvfC^(_sH;pA$!*f^<3ALOL{oApiZnwM zUGmSRqkWEDNcZ&}>FY}uLrz~9u@Wo?6O-i_kA`Y-s*VEsmoBF>8N6Us5>>R+_$fKd zuYCUFx8w^=dJL08%7Vs?>+)x5r(>iXp4e33ID7ThA5>n!poSD2fYep_r}T z7Yn&9WlJs@#j$4Czw;x+_5cEFHe!NZXmk;NOdt4g6dX)TfS~>kQNvydr`Rju>?PwN z11{iSj&x?gBXC;Af=dw3Ku+R!cMX0R;s(p$haq}t*#Byl`Q8WidmoLBx{Dy*(*Wwd zhaF*``lQEYladdpBydk7-C#2R0O5%bV{e5h@^bf~Fc~A?6><1d4}m9_elknO?0n!!|Mk?S0ej?R~j< z2VF%LMX|i<R_4ia7xAhyr?%P$ln$%yJ$T8i_-Z<>d%}AYX5kPzI-C0r#v^-#(D9 zCtW2TlEZwo(8y*Z*SO|XGnGOzl6o|hEbeqd$-<<)J97AN0C^-(6}S#^ZkIw_$Dl|$4GQ5v0tN-HilWgXPE^&l#BLO|9Y1#T z1~F@;M191q57eP10g%0da3sr!ij!QeK!_ke1}1vUYd}tII2ZxxJdklKS-X@cxe<8& z5^A*e&u-f}Q0O4XV<45R)V9BEXUM}!2c~h+c2X|NxLhx4=x;{qo-CwN^}%YP^5H{= z%FD~;Pgr)|?VB7f^rfPbZK+~9Swb>hDN~3R0MeOQ@&562Dq|WkthFC9zh&c>MKn9> zWs~15A3j_LC2#t|WN$eXfpS6y;!G52Lk$>~HbLANehRH0ij#xF9Kw?6=Vyc?q`UV> z5`uuHj-5XwVOSFiz*P_)H;IZ&kO8-Jt&VL#5`{qXag7>TIYkcjF$M)`h z4C|u=5i|_?i-a7DH`R;P>&h z^|e3qhw6PJbA7b`Q;!`x_SjzBo9s0f`1~SlwK5yWnvAda?<+x;aiE0;3yDSuPQQ(` z4s!d$9F3K6isIVOV21Wc=Lg-(5vy1e8aL3$i#+w+mcE z7tdoYlg(m3q%vYnrWLF;f)!gR1-G|{0wl`9-J8!-om_r2KRP_vha`YX3F~ynoT!5= zh+d@}3ZIa-cuQ|7-rosi4$RM(+!H%EhTm5pm^8;Xk{g5Wp6H^69}mtd*?g?q6|`8E zuietes~`XPZ*P#|&+e|(v&oO2HKbS##f?3`?bpF;GSJ{{>;Su+J;I)1&$0LTKUn6b zIx{&uRFN%n3@fI|PaYOn=uK}pvy`*}XMW$aYj2ezTtTi~l$(}{YG?~4xTS$n6lTkc z4F^~T{EVLoIf+Ocs1qSHDZ<=v#6>bYCJQCA6Pgs37ItiZ?roQ!e#_&Jyz#z!j~$uc zwf(@30~6z;BNZelHHgDwh%8M2rYJXp*BXqP8$u}HCD=)=ZeaHGgnC1T{|svgb`*SR za+Q0+9I~E7xlH~vq!N8#^B^v_>w{%_lEQ$;gwJWzp#r#T=e~CeV@-| z_`^qzKFl-uzEF3+nmb|TBI$G_nx0P{XxlNvwiIO+umr@Xg3rYlwo z<0kQ14Y_cZqK}np@7M9m8jAOTmCsvA!l_6`5MMMARoWS7`%~;5_78s5OJD|6D}tss z5J%>B4-2MxdJqeI80O*S{rjYlL5MId7rD%IQImj=Ar(?1e9R1)M(8{XS!T$hTKXU& z4s6k+nkAHss3xaM;xMvw@S`#iE{yeL4625}TPWr`Lbn7k2Ur>Rln6Tex84+}+TMk` z&aT{c?C8P8g(G{9%wy%Nos)?gmSSy{`x00_W`orNJApWjEbM^Q5aB?^F~u?9X9vud zkb688k5wtb7AvzOU36nA1G8x;ur}!2o6|esMPe`h>lyyYhl!aGEAQ?X3b)%S9!;g9 z+)eXci34NdXe_sWR*S2e5vG;>@Jlf-AqNaq;%C7lslG^2RYUoEf+H`O_yG|${@cVY z+Yk4+C7uJf+#5-PTRhj^FIPgjelH@2jqrbqpz4u7L(3>@53*(y(Bu3 z-2=70{dY=NKlGL57uWv!b;_vnAK(4trQqBdoR}geF$V2K5Ef}-e znf6A5H@Cg^1`Q1w*K5?zQ**vZEublW)8?r%pS_QL(0_je77ir8_;v*gEA8aEJ)9H_ z9qChA8;Nh~9J4~G+O*FzT67ucoNk14?Zon-J-fGcCdLQ)YJS}><|!?MRe3cC zFhYET(RxC>w?HuDILhYm+7sFsx}M)l9&ex=f(Zw;Nz*n8nI8Ductd)$mzKO~p5ofz zpFX2cNo`QN;^sBI$Y$Vp!(R_RL>+WIcA?NTuoS{=Gd6xj$cYu28h#0Hu<1uo)EtfH z(?;UJMai5V%qE-&_QKO&HPc?Dk&c=`?<@l^s%C`~VOpj@LS9G0Fs+amD`&zn)1qIF z0*Izcx@yGn<4{=cfmDSYONA4L` zfJqEaS>lC7E15|TPObkf>}cBzJ1#PTk#nv|GOd$=H8pT&3?>X?#{s6MB0`~ChKfBE ziw_`93hhB@o~Yl#AuSuZk(0g#J&{38=j;4qad`hW*JLcPg5R3rx-Q1~z2mkMyJoj_Mu*FN<*GqzFTZLm1CRp@A43^> zfZ<~75LY56~j` zIuyb1%s9ztnuZufnwS|-+qSA8Xd*j0YBI5MqpazU6HC}g6_&whQ0O*-;KUcWvkutO zw2{RcV57+8WLO`h!WJlU5dqS^9pgZ0mo=DVRZ%b%pzR`lOh(k-ps*W)V=ia$PbuG_nUh?m$>-c%JN)9n* z$Lf2ecqtc8g~M9mg|vm5CJYXOn?e3-k7m1kA9r(S-?p7h2TU;kyyw*mHguKAq?*Og8!Cu;iM9j)Ph%-Yvq zY+}I!)#H+J7;($v(Xc3*K&pgQpUbp zM9?_|S8SUD1_Q#b(2xBw1EPXvE((O8&O`8cLx>97jM+=fw#i7d$w)i#FW(odbyNNB z_jKbG-@EJV$(7q)w|t0Toy24;o~XFx8t@2M>pcmP02@JB_cl{J(IQbFV53Mx>2wkE zQIRC64)96?Yo^)cE5o!8^hzKoum^U8lAvW9Ao(e$jQEsp7_jsdZ}2Zi^6z_cdAFnP zY8S?JK;celD3NIXf4sd3oE`U7=Ue}(y0zV{?!NY2yYKCN-?Vh=swKH4*|OTUtksrV zwj;}S?8r&%IKd>HIJ>h4hn*)Nc}Z}>h-5-M*(@eNLVy`3I1mN~oR|5)gZBUrZ(#Bu zbmn{N-j-yO4F>4t-nvzFYx&pzfBt9ro!^NbdX>I-V_&7_)vI-U&d~RUGBHS10C-t> zfQ@=6yR@w}p!e6Ki;;-c$Sy5;;X-??S*mC4;o+s3@n$7Wvd@j>Y~=1IM)hGe&_@(` zuBjsBxkBzXVyHul)ljOLg6SWHITQuG!#rA?tXq)``M0Toh&@usSw^O6dKsgk${CQ% zv3#aopBW#IVC>O(FZZ9d&LQGReLzz}7QH2uiUUxUj)Kf)6^O$Sh6_GTW)?#~%kxL{ z^SosM1jL;@Z>8<;Jq2PC|AeRTgS6of(hhPvdT>vlWlSu=DR825^xk{si(t-y-~xZ* zvMuDMs8V2V>Bdm6qpXTrLf&=&Zg9c|6A~gc5P3pi6xLRM_=g^N$(^?k&kXht54MJf z0{ZcwD_kY$q|1n{2$B54mcr1r7^Snwyu{4Hl5Dfdr|GH?wvdA4&?_X5swWh?YNtd8 zZ1BE0;gz^@z$=GTpY?L7+H|u~i^M4w>BVy)GEsR-p>pQNO42FCBUZwuVkZtL%dGiE zENsUUvBADpG}cI`-B7`e5^(S>Cy^zMifmWIjrs^#fbNhkcwsmdODflhked(btLsM0 zaHtsZ{8+*Z=LhP*XRaTg86MkLtA|6Se0$+=EERGMBUxH4=-E{3OaYG>@Y>dh%f%@h z!cQ~u$oNo!O2&z*$|bUq;Snl}IlTfmmG6sB{HtE^1Lg)tE{iAM4MhO{ZSj zH`MK~A?lF41}hZK#_?>%zcKO$9j#I%)|yW+x*6ryY^dKcO41^cO5FFT6ZTRi3GY? z@3xgQUx}kzah(jgUffN5iV_=55gnDhl$$zhB;=9<#5`(t0ArFh0Af_zg|CsOU_71> zQ&$Gtp_^F-1Rp49tnI+f|YPe5W@`K2bfO;XMMC$C!k;N!Jl`@Q~;`wwS-=9fzE`@QOq{l@SAawhvjKmYL`4}8lnxPJKC z;}JL|^bUF`Zc$h_bWMk53U{b>24+1?6czD*qGte=BekfF>#9A6znmQ7=A63pO-?T_ zpX98Z@y~w$mkl{rC>X~ZjN>S+R0%xUXfbQ3CkJNI6S&`1`6g5aK{as=o)THt7*afF@XzU9@d2J3ce*K2|8w6 zfg#Y{TROhGc0M&fdQ<%K`7oL2sZ81NmlM$#{YIZ&xpjszHRHhOP0!oaDkWJk%ZYIW zu<6Y~@K7vquS*daiij{5Wi z2SGNA`$zrB@J+rm+O{Hn^#^z)`~<#VpBBDdd#v;3L)Y!Z;uG`zdM2&il-~0aj(0AO zXC>^N)-YKY-?vxhm5dhpgRz4XOhqr1@llH)ZJRb2`APx zsIhMHRX7n|Jq3pJrW@BFXF0I{nmsGKcP-6K4z>y9B@zRvWR{{w>0IE96PZYmU;(Qf z5|yq=J~t~yK=5=Lpa^i*jT32*nOkf$8T8ZerCQB)!^-j;a-bc86(ikZPlyAt_C7y{ zYf`0Q{4C}Xc!hW4L%NkoZIY5(>VDi=+o0l6*>+S>ADl5Aizb#~sS26p;W#&C9Ow+BVv8MefcB z%8o$xmz1g}qZ{6+C;#i~-tm{HxOYOyJ`0Yt z!JKeJJEl>?;@Hufhlk*Okn@ogBDfS8x``MIee_pCLdi;n@zQ@SI5=73WL&!8xp zn4ZW6V=f0Q!rgnPQi+0Lz%Q%Rx#e(p=RNp1Bj7L#=y(Tid)Y#D#4tvx2W|_8Z#%%U zIb6Nzm^<}uwQly&V`k>(X6Q$L)HI_$C5>n1pxe;XeMZfgXw1*g%{L}Ylcl-l{>G%S z`A5HY2kjs9o1kr|i6%@Q(3MEi3u-^({wlilH{UGTXk^vOEy!@Yas#^DUTC4M{y{G9 z&~F{;UfY2)u6u^--2BSB->pXG@45Q?awUItI~TxNdh-Ps=1z(1rw%G4dZV@r-yRbL z*XU|)7V?h)J4dE*8;`xZ^w`4N-nQ`AM`q`~dG6x*^B2#3=tCl=g8sC@bN>FEB+n!I zc#z!S_hGxj-XU-IFruVgz+-W&VQ^_MXTS^(T{`W8s*7h0C0OXnIHzRHijs&uDO3-d z&=_l>)kJzspf}_A+k!x`JZ|wdfD=Ya5wdE|p@xXJNaPimk07et-$+mAlW8j*@>6pM zyoK=j^L^n#)9c5Jr<-@h(rUd{`@EY5haTo1s}!Byu07}Lk>Qn!=@m1PVxnlJW5xH^ zy3dw-c;xDP5V?(1Cm@M0g=_%4`clzDhxt9kZHMs3;k5zwWa;~^x`#lRN)P5=)F;F( zcOZc`Ca#5fk(Tfq1o<;2RE_G~_qvJA3$@y3f54lN77d>3I?tjGnr#dm*PLiWtPi4$ z*xvYr4iRzF$X0S4%{>v1#=>Ccb>~ob$Qo=M~v z6TXj8$V0K>x+Kq0umtB2Tu-p?$n-6qQi-Oq#hAe{Be69Sj;YM)GUY;U3{;)TyMC_A;llN4#`cb!r6E|2xVK8B|{Mui-GS^$96$UtfIlnIHxC zQtz29bFWq6iRexRR`rG>+8l7TAPJVYtqM5x+HkuD|KE~uV~|!^Z%C0Z{uY)^F1%t$ z(Ib3Vs2@_gfjbbt7ouU=G&a8i|D|d8bEJBKKQ@iKq-q2i+V&hgF?DKQP)^UbpQfT- z3dS(CBdoiKX@dV?zAPQQR}@Ys%Wy)oA@8q&#PCXxlArFl-cZ8J1>0u1l+8fYLf7Mk z06F!U$qgjR6@r72eH9#xykF+~t5+rWJGI64*H*26%=gC>4K3ANkK>O@E!~8i<`uTT zkv?zE@dKVe1S}kYm)ZWtE3=hEK=L=;rTyz&GdZ(T$E+%xDh0G0PjuCub<3!R3=Rr! zt{qMB5N{w#iL3)DZMN&lM8ELnl9SH}5lAsL;DG}MV_r&@VWS0EWkKDt`zP1dCeOaG zc3Go2wRYsl+6(KKi7fKDuJcIfY3+@j2$C^qJnHcDB4;Bw$zj!9XJm`Vm2QI92JT^t z&?>_xbeOl0_*+8aZyD|G4Lacm*qz#1wQ5iuyIGyCO*HGxfdvofS%$>Cc91K(WRNP0 z#T4MEiOhqR?eU+I6xA&?yhB%qA9%ps{JiTvZ5tOqR%*?<_r)`rN+!HF%xfkdxlP$C z%@fC)yD=gco^V@+J=rSOK9H%TDU}yymx^#MV=mBJE-^krX#E+Y?%*AA*;JAUpshNk zVjO2Ea-o~zEIQlEs$7mdpFveq$AfEX zc4}OUp*mcL*q+k6zxQ?Y&RZ_0>)mq=9v|dfd|QtD(%x}1TD#L9+-HbVC32U{kw3uE zx9;+)vvlw7>T_+~mz=XVABV6zXQWzg3x(AR;mgfqB{3RsRDoF&Yzq!(suN2u3W|;+ z{RjjD_P{l)2T&~$ySBb+ArdCX2l^W|u#Dt-5TRi(L7W0VYKBL$(5v7x5#Slck&)VR z(qlFe`(U07yzr=3?YUR%JpoUQBuHX+jO-)GZZtxu8$qKu0JT=Q>iYDrT=v1 z-_KnC(?MyTk_z6+o4-FkM>QT>g=+_!y+S?VS{i1@;J!P^E2+bTHrlLZQ9}?|3~w3n zJmzkdM+T9u?Jt)~)FZ04O^R|>jKG%|coPH^&M)G3nt-4fb@*(u|1Lc^S3A8jyqa0g)0c0idR5J32rxN$Mmp+8iEp97jjKhLc1TbXi z`&)^2U#?qQ6FO2b47jBx^o0=YqFc-OsHUcER`NuIvh>bxp7gw$=kEK=K9_e--4XWc zt~Yq+py$@T@V0B+8*cDs!;xyG32bUktsn7RcJFl9+x4#FyROr0I;`_%jNkQUJujX1 zyjhx4ef#U$Q?&g6vpf6F{&8UCM65++lyLGrck0DVOE# z&a0OHGFa{e>pNF1b4el-v=05GgXUc7P#8~&{!p%)m25i0Ry1lDe3n#>Q*xf%(xdl2 z{`kG8mpd1h-hO`LH}AcD`JZx}0j{|%hsvnh@@YBJqf4FT+wc9&jq`6`y6`=&r&~?s z^7W)_4#J`AxeHr|QQz%2nGS)-?v3FB;}Bs^o5?L%RCRv-a!>Ph5iMcOSe zeKW!Xk_viAw`W}1n07x&f7qbwU0&p1^4x3a`|BX4zyy#;tdZ!7TwqIwZH6ukMxwi5 zzrZCCc)1eInL2$ih3<|Wi}n~0U&y^|d=nD&ryb{;mpEj{dCqYrosG`=KRORbM+GMc zM&lVBky4zPO3Iu<>_?dcl)lPoq_0zin8tbDsno{CrL9vbZN0O>c{p3AH`i}4*Kdt4 zY8V9Liw;fNhSq@^s5j0$gAktV#cT$Z=Z zuUz#(-5Gq?{Hb8mjllo@9*cCPdaP< zv$CU7#n|S>VyjhDGkMR56(@aVwKjiS;6}8=6(9MCHV-Gpy7r{@AGKfCzNA0dS#DH{ zM%w%#a25~0T+e0RrYg0cKcn|mKKu?n(s%4o+Nj1)C@r>o`+^~Jlw)`+FIAZjs=i@W zHHdRcMTB3_@DipoxpM`TtEF?bvs$Ir2YdB7tqi+w**~ZGaS{m5YVm3$UOlTNqxERA zj(fQT3-3D7&P4e1Act-kPD83a==UP246~Te8tIIgKBd*PNV!IB@@gzvJ&X<;)B0kk zhFe4ZW;Cfq4-YikjG}r%tDgePRWcISYb6)EvIIz`p;Y6r)@aD^Z3N^BMXvaX|J^I* z%Fq5=U2^9m|NN^hd6ETd{2N{_nLO)X_`>HuPXI~#!k51ArQi7C=YRe4zy52#`YTU; z?lVt*{1-p+f4=|1&%E#P_q_W}Z+P@|8?S!FgXizR_ny06w0_&^TW>iPpy98-?%*m! z6H7a$CPyg-IY1&FH52k=yLkX2@FtD~fL^38qp539F{qYwu^a<%Qcg5t{sY%b#+KT} zG8iRR6~LGRpEj!ToM0qy(aJym8S&HDSYv=+XT(d>LYKB|VRDubWEZAH{!s9ly!BpO z8$YEuG-sCdUI2S5m?+^zwq-dH2bfd55YCxPwACuDZjEIgSO^>Tl3T8Cd{T2 zU<+YENePB99a(gsXQU>y086D5N-7<4(#^q)>n7qj#qs(@*8GjC0!0X(lPD{s+W2VU zW5?M>CMd9sP(Bp%V@x!RKl~`*tb_@pK|_68v`L*Eq$3z^86G@u4MTeY#$<3$NIlRomeESk}XIQJlW(U#=R2AjI*9qLpj4fzON$NNic1XRUk@3t( zK_JfBEeM2s(G<+9ng%P~K&3=hGZ1tHUp-pqpkWG$#F9dn((AG_kg*CXU;KhHyDbwR zpe!hXJn;1YHRtL7+j+Y7wDYhkXHRC!surHFinxbLA12{FYZaC!R7z&_gPK)KEnj= zP5D9V2;RG|wOa4}S#`nRTqmS+!N15(!5^Et3%p*sdU<_)Blx(swifiop3ZIaY>ukM z&P=<%uSok3w+70koD~Zlxq*_w$Tue*yJp|c9U@@_92fDTt9zHW(@jG-x+IfyFX~Lp z46SQ`NL}Vy-0&t{S1P&S%A`>2317v*BgL6rV_MXUMNdhpx^fTm<_ZqWrN+y(7c(4d z-&M!LSUdO6JXq(N?r{JpaZ&&L12NI`?ccxu=>DTO-FS$YC;f(s%87DcFBl>+yc+|RAa7<#{iFq%)huZ z14^PU-HW(&g!}~`me8;Z8w~s4d|;izj^}I`Jp71LSn0dM;ZQ8pBrCPad-(ln`@GFx zI%eN?oBea$w^(=O`>}<$es)E|p-|%?8|D0=Mko}1SiZwQyYf9Di|W32R|j^1)@`RQ zW~7W41*}%1fH>b`7Gi=_*1cqv1XGK=14@j9&{rk)x!-XFh|z9U`ZDP#^#O&ZL?9W& zx&UP)qW%aF>tKqPY5w~+#>Qlx-(UP5H~gW=;OG4Jxi^_7yZ7d6b*~|jK(ah5RYWcNU|28x`-LimeQI2 zP|b+XrF|fSj{karB^b4a>(gVzM(@e?1fJ6du~Mr4L4~6YHL2zi!kMvh73e^4N|4g? zwgo#Vm8itfC^f2;LM|S~R86RaBRWoyZ_$gHiu!ABC0}X1kOJU*q2~-pET6sgQG{5j zgzlN1c~dl11b~)QzOb8|zc`rm$)T9ktN7qLS^C0$XcQU!gmTdyJvUjf)Fffazd>JF;z zoc)i6R79#-2t9P~A7!q?WE%W-Ha4DpRv7;SJ@N9~8P%@T?;yfM-!~46r&kn`ZvBp^ z6Q#Q9RrNchv6_jVfS){neyt~usyP%!d68IfVe4P&1{cxbeMzs$@`g%9*1KLyEwe*R<)jmuV`6LoM#Tsz?+JA@F zMYfvSUui2W31P+mi_QKd!I?Cl2q0+R(0)_~_f?yMq9*>qXX?>S4P(twkNpiAot^+tW@{j|BAkSqit3 zxO|q_1ssfEREb?0XSJ9SH)8Q~8i>}ofRgmPIWi?ey%QY42r`@v>S8#CkWch;syn~y zsT|D)>+~;mt`W}lqUW6px|=Ka^)Gp{&e`sHT)aope*ao0I)S27{np?Ar{DhRpMoCa zEpK|mt6urg%Wgk&^O3c~*B#uxEmh9@WI=<}6j9i2TBHVG=1LSB%EiEupUMT%poL)U z698CNA~V~w7Dx(94BQ1_zLoVL6A&I1*giqiQn-mq76PPYkD28Vhu^}A%}k?70c?Re zm#@#G31sa?Oa2hA*x7;^i&2#p44H@>UN{OLAk(erwuKn4a4s$jRZDPVy`38DDtnVp z$~KA1bD<*QMZ>^n#;YttC&b-l$PwbZY9Ck+;X{WDgD|e?6n1Pr_bHKYZ>NxKDnHgL zQTT}g4>zG`&76tFC)K|6 zLd`U7%xFG<03ecY$4#=6DTJ+b&x%3L03eEE>Ln||B*#9k=pf$>hlDe|fOCPu zPB1*Of}j^?$5!XKDr)PQI^U z2TS}L#$pl077+sgG30;s;5>N9iNO1ed8_V0w3qH! zI54X8csLciV`_w$f$xwhsGG^;)KU@h&XDMQgBF4oY_Nl^-%_JSkQb!vihz1k|gu#LV%S@@HX8!Te=Z9IQdYr-K!95i)-tyT;+jI_7N zfVpP)MSXpibo>a|E1_t*H? zFepr(xo%K&aX_F@D}0UThhH2CpkEc%N|jS$3~X7Z9xhhwZ+)1zvL!J2fk-({WrGO^mM9BtGD8Dc3)ikQt#_a zf48;%zO6M}ba&iz=$AUy+Jl|s=wMBl=s~O_^Hvx$ySfgKe(p~NMF+YBztcy-su@NZB!CtUY$rx1iOi+bO!UHDZXI*+qSA!F1wi&XM!P zTorhn$&=2Bmw*zF^{t{ zQX7TsFJ_vp#lbiX35Z~BJ?PVy)HUi7&)E8SDx?NSV4Abr^2-C^%*@=oRJLmTkv^9^ zm`oi=&LKfwT12jz6#FT^)L4sdFS!c~ZfSe8Id|7bQ^`^&6d$~F*PI+bXj^=%!rQbe z{RiMUnTS%4Z>y+CIE6r3;Y#rIO6TEA(wvgY!>Hf4cXwyUwlsoiLE0zql%Ryj@W3z6 z5Sim|p7BpIu_2WLxMW`2b6B3dFG$N>)z{uNNr#xULt&XS1un`jGl$94YPfC;CMsKB z2&zNBw{L!MadB|5>=z&bN;An~L&$tBYCgNmA82Kp*tDrr{yO-SOo8A_-?01_LG|}u z`#!5l-%4r4P7aUmR$LTKUQGIwN(Fvo3E&~hNI}kI4HRZT6jliao6^R>5;*v5M+@XWH5MXT#*ogjUFsur3*%d zD_NywHO4S-jPH2zDNbSXxOG)mLoL^yrt&&eyB6YQQCPbO=zSZzHXuO$*SoRc;F z&IhmRR%h7R{0sb*S+FWu-~X!D@NV|~BhH}njPKv%^?P5HmHpmLI6uG9?`3>H!zV?) z|K?wG`%o~)_G!0kztX7{!I+UNLPyt*9lh~}L)Yzxn{$Yg;MI!Hl#hF|4^_R5_5x>z zzRt8_ng)a^5u)iO-?@^j5)>oO1fB+_eeuo99F_{WmjZ6m|PXg5$W^Hj8 z;&T9Vd1Yxy?Nk6{87Jrp^lxj-F%l;ehBHR)xB47fod8w|`b0@qvK)K@i0`PuwB6fe z8ZWigg#$AHX-VqJoLYb)NG+Vo2sLlWo!R`a=$}DPNBT+J2oWdMgP`0E#*^W&p1j*Y z^sy00X&?keS~9GO74rx-7z5% zl#qT*Dw+rh2@!Kj0>wSDS*6TRG!|!lBzhD1Hj(J6l=G1Qz?SJ>Yu1{Ldbfbj)z17# zih6eOf8-L#`y)xbYbO8VZEJOnoq73e_5NGDziVUjx%IF4zf-9US1>$k$0k4Ad2&tF zHa6b1zW!srzeCm!S3X{=y>fDLq0<=@A3W{Q^CNU?Dozk9Sw-C4rajboSsWD_$GCQm zM0`fLW1fp9^)TqMuzn637gJqYrvtJ(XXb`7aI=+MXE70uUZ~J z4EMZxSY-HHd!G>*U3Vn0()Lx$N(;ncay$^M&kA&a09-P5>GF~)x}~JMS6-g!z3*|K zbCV_3@$x1&S$6lxlB!+)&bPJRVb)_W?H<4T8oj*pL9*-h4zhyfPM}vDLF7+d*J02KWatEIDH&oD?m6^LF4 zXuan<-vyQk#5 zFTT7ak0sFK=zbS?E;S8~LP-3~KC(Njv{as{hI|SgdJ4EL;4c7ZV_~Qp@VBC-NK8;3 z8nT=Mp5iHGMD-k{N-Gmrl?NrspH$P!Q7NP6b0#d-7Os}SOkkummsLvQY(&j$@iO1K z`qF$OR#+6~?8QQ?k$-7+_8Z@r&7L|HSOIIDYGD!A>SCeVS=;=>+1hOG6tm0K_u_Cb z_>mnL>XlqSiK6n~h|%fi*7( z#H|a2xEY3mKy;#jHUmV5kWs3`y=&B+q3W4MxsAm$)gfo`@ER`R!;f??bIci?#qBaX z>c|~%%?P5NZ9k)J*LI8b%wSj|hK*W*^3!V60ei(f7w*&`BBKj!E_Wk%x1IqyUK#G$ zVc5;$uNU0|r8!U_I82LrZHO9CJ>n*~6@jCmkF>;ETgU|_S?2CvygN?X8O0)yDAUaE zWjDI#_B~OzjA}5=I->V}?7pHm9LbG5UGzr6d3E8wQ=LxVwpdjBK52Yu^nu;|3-|2X zch5rqZgH*|tY+iH%Fex~Hov?u5}8^^B$h@Z6En2?@lO>oPz?&he9mqWpQAOfAeg=o zhxjoMAr3=FaD;{SYg!>Ez#itpaALqFOGa!#v05~RiRq<5(k6ehar z7)($IUG+~n$cavT`{LAOLrN{AQi(wj7brJ|E(*)c^p-=eJL6jE`JRJL9y`iVFp0&L z#PoUg?5}pjtsi-3$cisrf89?6y8Vq;y}nU^AFj3c@O7(@xZoTmPswF;!d-mft3tYRc6s72Qn{JPFmWdiKI_I@{seYxs(l_=@SW_==^ABLGOC z1>+}5pv-orzB*QE6*H1lGar-)3*aN^g&@1B>t&HqB@Sd;?#(8;&)sfm-@%ys%iv~C zO$hh;{Dk8Qa~DdqZ%&Ulg$? zq=v+V)FaiYAQlrY#w)Tx`U<(F_~{LJ8kn+~&cquou~LG$5>poFzNi|?SWTr5W$>j^ zQkeu&nY^hNfxl49{@ip`@9#Y^^-0(LfCF>Oe?q&rqf?QTd1o@Be`WIngXQvI`O|K} z{h&h(MJ94LRF+T zVfr%(bDj9UG%A1q4#geH1Cc6G5Y7dULzn_hYxThDN@v?#V$bfPU@heGY3(VI93o6? zA)n4o=b*f|W!oH;&bl`z9zCObcLeVOK5s#!5jl{ls?TvgN2%ZFNz?brk+^vhB}08~ z)Nx*1)T4>C@hRYfR)kuf;b5D-ktrl|F}s-bzU<`qcFuW?K2XqFerl4_+1WELPV*wM0iHUdGpT`@mektDp1(MFN7kwNQ{Ix zqGcObuQ#K)T6|+;%@|MB-ozMGpaB!ee$a_|?J#b{8U9`Nsm+-Q%zHMLI z+Rz#rW=klXFEpedamTz|fCK1$?Sanyr?-)}_@X<{tV>_H@5OhY(+T|_!4-PLVc;-I zYgA&)Pw22FT$R8AsJI7PtgsIvBGGK6hNb`lK)0cQli4Y#9*hfHL_Ku=_ug~rWKE>(ua#BOB7P;Wvm6xek%T@cP@(1>+6E&*hM!sxqF$4-8;bg(VM5796I!vs6P zAQQY$##oF($+M@ErmG<;k?HC^Oi4MVw->}O-hZ!YPMgN))GgsUOxtH72>DbtUds3s z8wx?!<|Qi-0i{97QG&-{UwL(44={~7+`lT)0-KZQ*YkZ&-k202qU%Fw&1em}n)iy; zoKgb`q)B_-FlP*7VfOY2EY1z@)(HHLkYlS-df2kO$>vx^La#2)uNw#IFt1&wy+M16_IB-k+WYmJJM|w@#q|5$ z@ya7+p?GphFBg7vUGFQyf7|!cLf%M~ghp8E3OrcJ>sc+DJ&k@ARUkiL-7EK%&S|Mq z$WBQ&C`n0oV)WK&<_oM~XPttlvG}dIj2;C;3LHwE)J!d1Bw3@XidvyuES#vRvQ|o! zODDpR3dLgf_401VZcO@m%#K}yOIHA@FAGkdB@YRF%01ur)G;T1j&sNF{@*;c;8|b( zT~A#~2^0MbZ~I^7+`Z=hPIvtL)0QkL(L{6qi=0LR==rAc7QAk@<>}CbdXzx|eey1l;gkHsWMsuYmb9n?VRY9_ zPWb?;6Y)|m8V5W|K+Q6t_%A|6N|-CYYZs;MlJN=&9HK2#F*{MJrqcwscVo06UMPY5 zu^)a-9(>iwlMg`~9Em!vG0zBey%?pD5YJnBuE>Kq>QyX(CA(33r1Q!WbxLFbVkJ^*P|uH%@tC!VsSrqj-E#J?2u-`aDG@uY62I%9i_CB7WX4@(BZ($;6Flx z6L}s0goCO{j@marzjk>h#Ls)M%Tn^`d5=|~ z)mM4}y! zlXCNvnFF3?n9u?xSg#h5u}(ncN{$U%*lsV;6%^6;s3xB z^ss>R8+F0fZQ0Pac2GOoxoLI^Sdp<8_QU-N9d@u4Oh<6mXk93iaK;GIL@M40k&F$4 zAY>DgJ_FeV<~oiBM}Wo7LFYjKME~Fz$V4x9IU?VKaneGw*mFIDGpGXsA6I~EZFb4J z@ET<-aSC;HXG=VE!2p{HFhY+iV2wE3k`-O`Igr}>HVHVHWOZSz+#F}0e&lKwEm|JXk$-=(r*2J#SViM#`3}19=&)l&? zvwM#Eky$Tp3RZ!B+4DE7X!|-V+sXwgJg)T6GUeTLS_bmn}$VtRR zlm}g{5*Xz%3R$5;M)RqRCH5uhFUp+@W?&g+NdN$e!M-u zXKnf5(Q&92xu*Ei)adkJHJLS`-Uk_5Af{Zvo3`^{&=79TUoIcrGkfUR+@6%_amRq8 zile(GTGRUqNv~0KW9fRq#S%G}%$G{{@1;De=<3e~x_U-Cil6+|ogX>^9lwCdcPJC> z7ogb+qjwo=aW|CTf+s|)!gLM;uS7f010A0Ig-61)?!^QJJxg3I$W8*Z1fn!z)3qQk zB6;0M<({#ri8vZ0B3aX5AK5KlW2NhN(p&&K1Z z`_XtjR#D#eG998__G5Z&Bs{a!nw}YO)3Fo?X(EtmuheKx5TkUl7{UCwp2|pKgIV5Q znF*WYy5;*2^L%Vzc4nZjZ(wG2pe{p`|E{eN)|RykoyzD?qlynoKoBFt^_qCUNr8p+ z5DUscX%gjOQm|t%$N=)w3@j>f4+aER_`ZZahLkphC28G6@}>Jr6|3%7Lf}Pz!0%9K zcgJ>!6z3$TC7Dh%rO@s`j+nnh^RT!mOQAn|$vI+TK2t2|(Oaj-M@LC=iAQ~Cq_56^frw2W z6DcsGqvO-Ja?|vAZG(BJqBWtK&*vgi-bby_9?!S85`7ILIg%2K(E=GtSSARoXW`Qj zJs&dw!mo|~a%n(i;7#=5Q->4Z_Y@HO+Vu6;Pp4Xd5RET{*~0p-00glI(mYngh&<(gss5zcgLhJfJ3M4nX0<~>zxaojZUpo6FB<% z`h^S6J}cKiJ6xb0;vf*E&g8+)s!O*E(G*u8HPU}hhzp9~jCsOglGQ?#h!;*e zK8$UWDwR^x)3IkkfOI-n$tUTo3)-GeXCgr>K^(wEk|YmXaS;2La1nI|hzbf!1I$X` zj1nbcq$NP;@0K5nf&|AjAN!y?_-Q zthHbonCCyszyBOOH@3Ik4#NZ->l^ON6R;>$shp}Ps8I%%X5&1^3m@kLSdEa^7KF5H zdahPm5B~n!Ek2|O^+a(nmTFL~gd%ClOkZC{mEv|d8uNUp-t({lkbRa!^Mo8A8LLEo z6_20fwy~BKyXtvNX}jT%eVg zVTtM{!d6P3FKgnZbjZO4Kuu->6JSsWok$kh2Mi%RjVCxR)q*W*A|cRqiURApFnB>e zgsCY>|GTa}3I^>z`7n$Vu7h#`)J@?+{uzhB2rJA?pMS~S=WeHf`jMLs?BBj^diTuk zq1Jd9^jr+HDd-k-3|zV5aN?JTFEehpV~7(@GRp&>Qkw$nqUGxP_ku@DJ)W2A`QxNe5VsC+=aU)oB>s*auiSl)K3)GXT3 zE=#pX@0S4CXHBF05SW2bZY66`P6pjgS3j;Z$`Ar?X*x)S+~~zYo4O+xxv(xgGtF zer)G#pP{E07ro6t$x4+r&L{E{!Ffq-AS*lM0=>8MuDejZn7uulNP&9UsIEE3uPgax zBy@BQ8Y3fOuAEt>xpv3V`z5S>j`~bM`fUsS0A_n~3@8*pz$wzj66yHQaX=FYI1EcO zx-*o5Az1^MC`ywUV22)h@Fn-(a_Z!X!`B}?u)1&e!z&MGiF#LHCxKA_vcoPoZGKv! zDH$;fXdz0PQc;PZnn-5RDTo@#3RX#TVVCnhTcF&sc(UP;Vh=eC$?J%E zc9HJb{gNe6xbAN1n421S@j%L*c-LTfC z)WAS0zw2;gRR6j$10usu*1)r*{gDYH7fTBXc^%H*sP5&`VZMv!Xbzc@}3s*B4IbJUt4NBW`xFZ@T*Zuc)78DGH!7+X1mgbb;PVj|k$b zL6@}Km@ACYHoXxTg{^-0?@s;w$V2F~B0ek5Q zjzCO~x@sE zV1iD#JUL;mFY9!nWxWMhK_WKP%ng7Gsx#S{6cgLeX6BQ46ypb(f*~6sh z6^iM?DXmDQO3KbSMQTkmK+%WQ;a~xqKontZ^}l`N>(Bo2AN|f(zVsVUefBe-{tuu0 z(9i$$PrQ>V$dA3{p_fY~j-xm4+q*|VB=hxpbvltvB)3&itorn{=n**FK!8AyyCCG< z*_ruV7pdB6FX;p95ojAtl0+DcqFO_8(y-dRvPxX!*u)Yf41OCtEE(I~6(}8LRJR<- z8o}lszOAC?7FvjeKyN`@@D+wV9|xF#g1m1@)8ZFtg5fAqByh`D^zCTy1jwi9^@w4a z&KiLl#COS+Xt7MNsR|1cMWbL}QU4%`PxgqXYU!x4iCG>^*OWJ6i;egX5=rK>U9=KW zQ(v3EfpWMBt6r>hCt`x?jTa(+lun5Zjqd6ew0;oB`FySM3AOrAxi?5 zM_S35GOj9GB;+honuBY%?Vr?rH=_Gt0uCI5`P#T%&ro}gAcskzI#9&7l=O%hCG8pI zN`S(`ez!HxiVf8O@3$A&!L{1UwYTey&hRo(jUB3x+^h1bmP+SeOw{4kr%oEV;y%p0 z*|7ntfJ`dab5Z6b>-0^4>ZN28yhM>?B%C~_Q6n)~IIE=!`9dmxPD|&Dne=*A`3WuO z!(72r61E8f)M#D!HZTq7@2x)tmnbmy_^``2MS1PvlyVgI zh$WzaWgwSG%vJDYG z$+#u|)AWtnJew00$r@$I>xCBn-b5khzDw8}{zpKnN|L1IUS8UKOYJYm7ADuSD9#Kw zFcI?*t_moD54C?k%-2rY0Jsu3tt0T-t8gisC4v@7kSmF|)v<;e#EQv5O^_Z|iTl|& z)819OvDBS)K7j?R^udw20i$iVbE!~n!B&?5Gx|@hZGP^iOB)xT+w9=lJ)`z~wE7bl zxAd8Bqi?)kdzbd}+Dkew{;_wz^DS?F`Mr1TwkcE9*-3)i^b~0t6q}fw7$P=u5^cn| zv0A|)8Csb~yzGATem&H|odJ4AV!~Jfz-PMnrLNa9s7eRla7f$t%2zBejg9cAz(`8o zU62wC?N&BTy&g&TWumFiQ$3amX|BywMF?revV~s@53t-6Rekhv7)hjF5EGSXSve-J zpi9UsC59CF%SI5XC#W2xJjYDFMURtoWV+mhqP{36!#Y5@na>eGmg9)6%~qMQ)c=e{ zvXP3*lte|>6v8}|GdG`$XEC@@LsHRdqUJc`OjF@7^j)ER+;20N%9KHX0-tv%Ru*@z zp0L7M>|@+kmL3OklC$#6POh61ge1~;Y>Iq>fWc}oIbH%NUM6hRzxjWW8mUtph*Sn^ z-mK~bpKRNYmkYj2X4s+fj!cB0b0|YCy^NQX-kO4j3&$r$8&{X|2wyOR7)I6{AjC`! zb00}*TBEvKOS=iN?Q}DOw3ccc*dS3-fGKYlv7!z1(_vKhaNq8j}S1weckC5T2OV;{RE|XgI6> zZ1?rr=P=%|>3EHTqnSZh(}j~rdq(?J?W5?`4zZ};7Pkvaf2Mt1`ySojQ-!(Baa^v0%w&!#z0lQG zwBHKO@IQF)zb z9!i)nAW@GpgZ^0*QP;;;k)RtS1cqY@<~o4oXuWbSR1J(6K?02#L_EZSuao-Jd9Zt0 zj3%iG`fqjK6T64iBEQGf&FTiV#?mhSmq}m3?XPCll$wN3;;-SVcuxB~n)M~^DeafF zPrzmIA?=4@!FT}vi)*$0u=0;z^8Xp397SGZ&;<~-V1R=ZV_kz8g_Rlng-{+N z0K_sy-zBuz5)vo|d)JM^A!R0!U(P@+gE`(S_@K~DMJjNtjOfmk7#nA8Rf%HDu_!(# zVud3H*UufuX}Io%Y4{Eh78Z^ej>1g_e!mRDOneYlu7XZSyaYKVU*}gW2)REaGmY#) z{4FrkO(PB=Y;KQ>Yn0`fAsRXdM%m{WLfG(Gpo#iNa|~8I0#z>&$%Z3FbJX%84D5oh z*B!X7(ef~n&_$y*Mm0(wWljvw(Q^c^^lB+qZlZIBoB=6A%Df}0qIw1wgNI@owQvKI zk&n+o+4x{}yB&7l05T|I*g3q_=%UPcB^(y`+yxtGMkIbsWpl@HoG1|EL{rY*EyaD0eerJt3(xuXS%RvT|h!!79Go|f-&R>&5@JQL_3kZ>Hi z&(j-9_+di&=6{L0BnyOuQ->Qtw5kxHaE?uzpsnHsHQCJM49bv{V8g4~B~LHd$pNQM zBy_OPpo~y_(!)yS{*kNM@P0I+xS66Z4f(%F0WKwD;r$_;gqfk#(UR0_H8~9?N+Vf? z9b;JR1Rw-`g_uXR(quS6Q5$X`PAJQ_(KJko$~mD(I;3K>r4#ol083lz9`Jq1c1^?S zD9|CEG}(jb`w&^sd^`dH@#hFo;{i5^)xg6+u05QQ)=)KS#uLeuU5erDqe_J#xk7rF zGKVT5eM?9kFb8Z#?dB!dB``rp!f0SKGkn+%K z*C!wfCzImZi!p?AKkAlXGS}Ht*l0)&A(cgZk5aYCxIqFGl)fJ5?Y0Ho{LcHG=(uuC zsf9TyyC@XBL7@N|c>+QOFpI1t4ekN7&>K@s%zW0IG+;GbcHMNx8 z{D0IfUTX7?CDfwoDX$%kZhr1H_Hi0rQ4^8@V-3tzdcY2B<%BBl9U z#*gC2A&L(Z8njJPmre@R64AKQjEHcFn5E|G88x}ynaun7yubOhyyhn_?B9GEQ2*1E z0pEO1R^eaH*J_(zeC8RNA!s`-$U!R$DmP0f$a6P3pj=I-_COF_47@F120(KvEgpe6 zwyesM645%th(2YMBE>JCgNTTvc_~LCU2dvW9Vu2nE-1 z>GE|n@YE7#8~|T72|>xYaznMUZn;IQf#3oyVvbRQj7}Jud5xKdEA}c*M|q01RM|Gm*`V*$)U(V5Njx^U zej+1tF_POwa@Ux9u^EkZX#|MjsS3vE?c%Y60bJ_TgI%PTez$#2e3FvY?b%=!={g$f z-4ueLjF3$UNm@%i+MeGrwE3;+YnI1St0VI_erWHVckb={slIJ+Xva0v<9kB`qxOjdNlIMjRPINqulFCY2Ij-=`M`+o#GX+fLnjJHu}av5rv zQY}j9pawXfVhZCWuoVO%plhrB&01wZrU+4q#YQIcV3r8+GUOms*y}E+X{phLY{_K> zSAiZ$d`y<-)w@gi^~%`7P$#0cn_f0;Hk8Wh(QH~T;DN{{kQF&S84ja27@=5VIRA^K z{9Vb$o9sjR}RT|jbjs_ z8IY`vQowMgBh)&+{u3*M&Zroo2b&Th&B1?0f=o6UsmdfSFRJF)q@LF)}Cikp9P zPz|pi9NGF@OnhQ}W1S};dc(6poKSL;+S)apJ$*&pwG%Nyk~F4`-DkU}nDbChnE0eB z9q~BCH5PZkWoO=?k)^$Fpg)~X@RtIacZFRx1Thr4KC>KdZLlDS5vDfG^Ip{Bselhk z#p`u@eb4Zob$e^!Zyz~!?2%*25164MS8oY+`3p84dxUF|_UhKN68y+;r=1Cyr9o$? z715>Wjl6BqVG(b#L^>NHou4;>%!KCbb|$ADmlo>vx))u%cu}3_6I0(fF-N zrTv}ppL*Rp->C*~`>ASW{c9sjOC#5hqkR1N&43Byjwgq6|7copX#4&$wxyMMwmM@(nF5QZ1*X3VH~X5KMJLN>`iuBKA(Q%~kat9CHm2_EZ+B7U1$E4c0aQN=Qp-+DCy~k&_eYtpZ@Ldf#F1P^e+SFiBLoFa2=+{&#QN_U`-Z*IxUM^~f9F7+HS@ZH`jNxZ6PXOYV~3#g2Dw_Ay9} z1Qadgc4^pSxD8PU4AB$F+!qBiM3e*IAEk$wD?0!)e7A zjf5ahkW>rO%H8giTgYvtS{rQn(B#ITAb!_&&sFOWA3y%c@#Ff&+aG=OEpxj`guifp zuu|Xrs;qtFxH>yIDgA}9N`qbCer>LMPI`OnwE7*Zy_Ay0QYy#? z?CC8zWQJf?WUO|ReP!qds7E#gPFdNK4f23zpK25ejlu_;<@C_h-l?H4IPjCNym|3-xj%E=*xoZ| z_Ksbf?Ju8Rym{-ME^$v;*e-TT~8MdxQm8R$2*9+V{7A> z_PBx%PGDA=E1(ZM2dFe}h~Q(!*Ft3e;D^OU1)L5$RRG@tDFoDV>#3V>nw}gUMCKv< z#H|--Hf=O0++>m(pJ*rW{&jyr&EJ5QiE&11mTiQG%Gr^zG>#e50Nv&!U$U&; z0f%8M^29Aego1+oqKPwOStmEv2)VJa^EcUW(hEbM`6#gh&o(xnDXOz(ECsZPFzBbn zGa|ph!G}#1voW*azv9mtn1IdG2AXB=m?ZfQlZO35wW*jC0|%|>bZw7oY414n6U5x8;UQDeoyMJIK4&*8_5Lg5>Q!dJ(A4x<6KX#(Gw1)`iMNj(Pe zAyh4oFjzg!hNN#vAd&e83IL*+esUpiGbe>EJ>RI8aJOVJolYvh`AsSI`X=2@Sx zS%|WAt{KXOQ{Mki4Bn4W;65iD$a%JE->%5fvbCXd-_T^bluul5SBI;)$&DMZ3a)_{J+UfIzNb(U51I;QMwq*AuWVi4Mw0IJ&PIGpkTF%6ww4}GA&}^9x zUGK!`NTrYBa!{4iN(HUptc0SH85OQlshFxWDa-2d-H=97wtCwu9%@va(;8T?`#O7@D6iOoYP&-8pc}Uj+vf6B)N6 zuBwhWt-2YsT~6=IdQi_@g&u?jkML4v*ID(%ma~d(ds#1+`dkIH^8qC6g!YQg%ge>A zj~8NexYYmO=>=JlL!htyrvBd07na8U0BjW5HLIF1%zc>7=Z~jB9SEP zCK$B_fKYTqOg2NZY$nDA+jSz=!XOF#P@H6&aPo!8HrW&fSwl^kAd$XwQhUbcArXtV zxF!1U)fqMC^Na5-sm$5^^~I^{eS7Ecv-CAqJsW&_eg@5Xb@b@+&%AbcA@SJBSL++H z@WG?YCd)H)G2^~0?7@7%8G|0>cG6X|q zy0GVRT&H*nFMaCV;?bjv=RWo6`*t2Zy7RtgJKitUE?%ttg4eM>C=0k?@Vsp49WgAk zDw2E@YKcV-eo_$A+C81SUUJ{Lv$usDdu*@&=L2=30tH7V?b>BaI%ZcN2v-Q#Xs9*hG#JvfaTxWUjdA?Is z=hVLM)m=+hcUASiR4;0^mZR2cOR`#$C0mv(w~Z|u8L*65j03pAHeoSFIA922>EseZ zFmo~C0h2rlQ8Lfu<_?7Tk_pLO=018z!et1_IFm^(H#bwB-}{}aR!cG%$lPaospZtE zvwX|@z03dozwt^w+sK5V+RV91iB6lBYMPR6P3!~J5!G-e+tf@Dn1 zZ!40s9S-{jBEfF~L#hIqCPo~O+<6M48ECZ6JQGRPE%FQDPhR#%tx4}fL?vMXNO~E^ zF=8xsk^qLEhURw}GL`{gi^`lG@RgGFjPl0Q^>l7#aK3-bXPsg)g`+N4tn9QhfzgDw zFO>5}BQlP_?HE<$|0?QMj6OWaD*HO)?Z(d=@ALewGyN!T;K#OYh4;FT26J}gJrO+r zrO1O1q&?Bn8xNSd=)-T`x5rz|`IpJ%RRlpLTlklZkV#;Ox=6u3GkDhM^P7D#^9cHQ z&QWLz7U#1RptrLD9H0chbVM|gwSXi>O4&&1oKcEqOHnxFb7ZBTGm1Gb-g{p)V|sxh zoh7+9?u(r@;yzy-R}1yDLvXO-6!7s^zQim-;{Ug66xh)x{zqP8&Ko=TFKtLk&i>R@7uk32sjcN?l2f$VpQM!oG zLBlqf9!=B|wFNNkRIRILkZlsDMl+IM#Ny(*^;~ z?;N5;Zz3EsH-l8n&7rSRjl{-HB8BRz{5RP{V&yTDLnD4MLox#3vWefA055*8R=cxN zO!xf?NZL@dd@{`qE3FRftOxhh(P;D-p>V1cXf~ zCI^Xwz=;7L@u{jyK-JX$* zC>C1Rw((H!V;{JNU;D~=>>67f*eRyTQUtPlDp;)QI(A;fmaBM#l?6j6&~-hZaQ?sfxWxysfl{F zxGzD-OplTwJuYAolL6p%KgQ9*Jk^rvPyrO^QP9N!ixq^EPG@VucFri8fxPA?-BX5w zdckYW4W6^@bAxk04?J61-)e2~c+bqG$nZ-<$(`~+a2bgv5<}_KY&?|1W1(W9(ieL> zK$P0up^@6WgIepXT^bvl=b+a7;8=9oeYG6*w(tjoj?3iw`tw;hE`6Ew2)Rw=P_i!) z?^mzzx%e!)dT0iHXW2O9+|VlFpKxkra0$ki1*x3OsPQZVxD%t)Fz;hX340$eHB+KE zTRcJ^zjOOsdu+5?2~+M?Wo+$(#p!QnY*9Zn_qAufDauXEL!OQ)mJtaUZOV=5*Z|J4 zIoS(kvtp_*`TWr@U_et-*oNhUMT}(9zKU*gdbQG5f*B5vr!GeUoJN59y4R7jvyuvdBP)&7 z5b#tp1n|PZoIV`-*puhaKY3oQPu9XgPpddq8!Gv|#}oN{;+BE0L_)Qr{f++q#%9~n z#*aLMUVf8vFapy*l8am#(YAoofRr{!4uUf7G^HygE!hJrCb*x#5o4pG-`?FM6>Qrw zKRsEmHwFiigQ3Il^V@2PvRlL^l+cG>F#dPvVp$tzPs`j*C^WW1+NVXihMaA z*@FGhIjJf79T^zeHq_V_7IaC>jvtzwxUtsVA#&wAU3=*^BzDm9P%|MH-V+5UQ!JMY zppK#gt>ziMHK_NHIm`fF$N$t%6@;C}u+!L9WB|q^_#H7-CkJX((24*n80NZ6_|6@} ztpc&K1(v^zU_x2>ECvlUSNv+iIpiZtqb-=T1~Jm?g3w;cf~r?lcAKM>zU(!BabTc) z9DvL)fWHF8V-&C+>vW+1KK!*14o$pmU|>&t)QS~lF(YFsRla5Ycs`i zGt*R%7)JZ36``d9+UPX~)nG(pD8#GNe!d>iXt15f_m-?XP!cz=M9=>2Y6FG)!)E7J%kDmY|2WzW0H?fOwly1k(;7ofl`O;LDix@7y^+PFF@p5X)-E3_h zKx)DrLA|+ki7^y2YT#Fw4eotQPF%CxFb-@~N&HW&yS{S>7tsua+XbJP&V?5rlTRH$ zgWbL`J2~3G`Ik+(F@M?eQRo4im4aD=4_`KjTbsA$%p3{v;^w~cu{t*4 zI1_&<54EsAmo$0shaVxR5%yD|^WLyOFWd6)cdjo_{^!YM{qP^p`6Frb9(c&Z{)_#I zLLt%b4<~*_A4);NNS>Wua0fYH#aX!grJCy(pYVVp=rYLiQ6 zX>oFVpxPYr!HX(pg=jrmqN34cb9xSFh0}*)0Qn(&ZnBrnU5duw{w}#vc7Aoofqh#> z7o9VVvuIgfzyav>hj#8fp`b{x8pl8M>i7EXp?U+Bv@F?BW}<)l9m_lB2leZ`?<)<; zP1J9B-13zR^;>oZD}BHMy~)zx_(Cb+Ox#<{`g{>jidE92bkayab+vhwh<4YLORCB% z;f>htY~@acBLcWM+!4$g>KO`xQR;-rLDgQD%=Wr61%WuBRg5c`B7`MEhVR-Xj@-Gt zwkER#T}I|v$|xCiV=JTWm~&(n{jEJd7>@zx1jo5N$7nK`N07WAtaZ6OAVPRF=@M9k zv>w6}EIFuprrPi9+_sd?=a_VbLL357S0A}rSobDW@7Z@{LSi!1Gfjw>SQ>i)SebHq z-c@Jx{L-@}sdm=*pc0BSS67{CW!#;5Ym%b*8@>4^FFK#m`>Uva`VUD=uSRhw`ElUN z4&Q_xcJ}Y}N8BZ{r@NM;L>pD&8Be)Dp(&c4Fq$D5(w5(EofYmm3B)S%G%2w7)BH!| z*>B%WfYfgT&6&RHDd!_GCY;T|z4h^?h_eKXstCYYY08bWhC=<@q>QclzB^HuM z^!k8?6Y>snvJ{;wB73eqQv(tr^P3G*Q-g)wd%|kAP@jtIUYV*F_Us9FzOiR_VQ@4x*BsCf~Js;ld?8J$T-&Ew#p{?HlF(uFN;LenAyH z&=KcQEsy1o8`LudqTRDRNRh&wfHj%fHiRd({c5>C;_1RouRu#&cYn$BpkCqPEN{Ic zTD@!U>HRu3OL9_uC|Bo(=YL6Gb$!!)L`IiWF=EoIYWz5~)#Fw5u)gxso9<=jNq_kYI(mf)^idXFiRM*`FP~DH% z=ads}gD)Iz)~bZ%byXbQ8##1eH}j#{&=FVON^TZuc%m|k*?_diYp)H63B6JFccr^) zAUp_pWi!0GV4q}hORH*NGgz$ zf$dU~y@L{6#6?H|4nSrSV~z403xH%#Lys?5{zBNY?W5jUUoysKR&0PmVbTz|+WfRXjr$0IPHlKf13 zS5lz0edQYel5@7xlQp{Pk8r!#teix1rtJ*TevRGKODSlQ_5zEite;X9kkjx`p%m|yR$4#iH^2dj~CWDp*NBJ!V>^~LR>;8N~Vq4O5a7XAKe;NkwI z!f$wU%J*7!DW-?Z$pp?AER(>HKQ70Mtm<8*FJxYR2Q;F{odRB%Y2zm2cIUQfmh=hA zJ6Hf9UFE}bKcIDHqK@lz8DAvOL@qW%oV|ozx;w;S%l7Txvvb?x{LD@5!xYu2SNdXb z>{|H{qKDj()QoO*gf<`m3maYFg}HgrxDcCZhOwqwA!r1s&z@l)K0!4T+_<>Y-0z{S zx7CC%f)+6yhN`&auN?4r9ttI5ne5;A?Ck%X@ms~4(4Karg5Is3usQ)Pj~O`V_dECy z0fYN@1nqf7PG5fCut!A~?RMflby7Km68 zzjrVh@KXu>zYw|;{jJxAS#*i*1}1)q_L~|MQN1&HEigd6(%z?>v|;R7-o7+5H9E|xn?tqYWH3d6Hqme;6}fC`6pmQN z^8(djAx0&TcT3FkhWJ!m4lERWjd0r7vhce@qcQS5qtP37%q_P1_X1l8nazpXz~cGZ z9Qu}8YttmcwJ?vS&LE2IU0`j#T$zwuKo!$f)y7`q*3Xprb_6mOZi%t9fqd_W?yR7g=T z8L-qVl4dkCG*+6=Z|oncWrrpcjgbcH-@@Va`!n} zLZ{hvTjpD_SnS}gElVT)TOcnPDdg)zTc6k#$zgzog7=f&mIwvQg=8r3mNb=a%wl0^ zY_L-Qd^lQ8w3a3+twO>Vjo1(+)JFRIYo$u662&=U+5Sh0g;FS(F3m?mKLq9j$8KM) zPpE_V(fXEDHmcJe*nKRXl0qQBEs1Jl=HY$G84VV7ZhNWie!1T!1GLanoX&_(^0Q zNh`tzz!F%8@2-aiV@QeknYUT1bxYP5duZZ%s9jk9RK`9Lg#)sh>bu#_(01SS`xdp>pSeSNgp-;Sx+~vP>#(w#ePrd%!t0WZUfB!@9U|GJe9-kh>75baUW;{mF zyZj|(eO-l@QCX^Z*vajU8b@-zW2ZcTaqd(R0PC0#l{LMf5#_#{$^Iuv2)Q3Ox z-uJxjwfEe8_|QJ6YU%^H2U839Q{4%V$~VVQ>II&(`OiBLcUl$f1udZrl3zXaWpBZW zOJE9LD_C)MozouI-Z9yg&UKZ^oD6_wrc6Gl{L<}65%;$~Y0l}5If|9*UxF)jnC9Kz zjZo+``N2Ym)%}+H6|`64q587s-BcDFI*{rjg*&F`pF;ryz+>2a^fQ8w^A} zIm;i71a3g)WJ|eF(lLwWOtz@@Mx)V0sZb5US`sEkm9yebzAp_RR_*m=Vm4I~QXYsi zSplJ)wir-QFMBiaTPA~9e*>!ML@FP*BNXnma>-PHJXgOj87{CQ5?BrAAfSO40NiOJ z(H{#%t1&xONGH`P&tsN96fdQssJrLR5C#o`n5NoMtP~GL$WX_U`yf6$`-VV>&2aVK zFY!}rPa<5VXiJ=^T)l4D@%T(RUF7qJEh`-%IX7NHeiMN*Yc=jSmQ5F{#F@^c*HI28 z7z#yhNfjblys2=%v2=LeL%i3Hl%xJk2)-?4R-h~}t#Bk3&xgW+FibEukyp=0s4x|P z#3z{vKbbXgtfLGy+1B zaEPXx5JmhPVw=POinf50mU1(aP3bZA&d-gHWfLU?;N=@5_PC#ZCUF{>-B zSlQ;5JaF6ivSjx`s{?<@0_jM^5$4sUY<9RllFO-3a=0(@k`X!W&*jEy!{l?Vd_bwE zO!H{xp<=s4dRCigcEW5cPpmYjP8}W}FBgJ&yJp%1(5lsmK|3GHm&ZpILK&yO{?J@u z`lLTOIXF1!OL$LClLq7ZsxF~N`a#M2zZ?rNY+59};qSRiw>Iy?~yO$?8E0za?T9@uu`+#kfho>@6&R>~NbgXM~O>{eMDtuaSD#nUFdA*L zpfbe6h!_Kj6)Io+_EhGgLW1F0hFFYk|LZbH~l|cNv?RJG7CMs654F=R$nuDPd)z zfEZ7`3Sz?5e1)f(Ci7px^Y-YF-RAlpUDj=@ueDmYuB~x&jg@4LS=DV7BJy*k@-bZP zVR9L;wUVr8I6GPJAnVBn$U?+#b1IHkRK}J(Gr9_iv@b;$d-l5ZjpOkijdZnMtzTW= zSVn3*6;CDMJPm{My)JlAjE^Q{H1aPr(=rkzh(JEQIGXi#fIOL%*2*8Qtnf(j;)ms7 z1&8U%i#+p|ANi0M{Bf^10syDD+ym4**E0oj4+BR65DGp7xeX#cm0&8+wTVkExq!OA z^Un`gpc!~G9?;F>I%w3LDhWu0$8ZLNieZxJ1X=Sa`nAvEY#g@cwv=tg8Jn% ztNNPOkbE*@qE3ietvNHv{0GE@|BTPpxUy@`3rYodpr?yZkwj^30fQ81aVlvhB>6xR zn`Z1Bfza-$R94R!&MwE3ws1JQ!;!5oaRJDzM01S|FXd~wd_)n@}bM^a%! zpXSBY)wn)!aCPJ z6E}5qq{ekjbP{{OdS|1XSEO>6MDtY(u`_W$H#rku_hh?!9Zz%)WMIqFfCp zBRug&Ie$I9XV3IM)@Nqw|Cp_mb6@|u@Hgm}dZV;8H@e1}CG(wXt;iNUa<{l# zSYEVmTqw&<2>{zvv_8+r*wNgl8A6h<2T-f92Ea?x+Ql5zjROQW6d zKl{1S(a$~BYAMf%wh=j}tdnm1VFVn{R^uM$u7dI#C6I~Y$?z-}#oH_miN1rcC8{K^ zfto82#<*b?*Z|z-)PJ?W989ib$cps0JS|d zu+;gpLtC~ST3DWMHs>2^drJ2IFdG&Q-OJ9+`A?3IS1+7wMEU}I1MzLup-mr2H!z1^ z`kwk-^-*JhQL|)x$w@7?s3TMDOIZPrH8Tm#o{4)Rf^obk4WrHyBEa__21X{Xh5!s) zHgQ2>H3$#fSGX*0gP$v)DQ*MDA=e7v@%^X31DQX~$)|>Sv zms=a4(#IJL-Oqy)7}nnUS3BpZ1#5cxs2L95 zR4IpgF*E@86bVuoW&k7*AHu_d3&}Vg4ulBzpyWukX*f*PVFb7DC=d$Y-ie8kkwju* zdIIqC$oL2~a|i3?{sf8lgk zU-?(IOvND`E*>0tw%jOp{;5%Jtlf9WS?jN>Ri|^wQQ0l6Eu~;`|Ndk!JXUJ`zT?cZ zV}rl!q1hXU?!7m$RG+Pk@IxDL6SU(h?bsw&X@Svtz}Z`;9ucxbbSwOX5>fL93_nvg zfX+hrgpjTH50CIfcmgRx2yV-kElXRL(oD~MJGC9lcNDR72?sKP$mb$FhRNsfE$e{%xAY@R+Uhq-^|)ol>!oj4 zAsh%z5sBHXJT^V>Vg+;zUJ89A`(AyX%*@T}U&?4XL#Qe`AqmwHhzZC#nxadGK^VbM z`ymOq5-9XR-(ojyxEU96?y9f096Z?H`|Ga%zubGz2i^8%l&V!CK{Y+T9A|qPq3l=7 zVk#MeyJguAoWlP_+1M8tr7^og#6%X+{%AH-}yVKftvb%^yBx{NcH>b;G5Q^;qZO(xc;Who z>F?FLdOx#9PNT^P3y6M~GL(5V~VJPb~!d}`^2i1=g7ojyrh7;M^V58uIzrb9D{3kp|OQY_agN!6bE6)OwK#f*zovD(LQ@H|1mK0V`6ZJ|sj= zZK4EGCtxjr17w2_MBbm+c*iH)0|)P(&xhn%b^wE-rL&o67)vL15bF>!5mkk4*cqn; z)&tImC$DHHUUk5-th|*^47GFADPLez+f5((_mxYLo=CiU`T6pnuEJN{yMjOc)Bi(n zTL0YVG|vVXG}`(0Ro4`AF&;lFw?|4(w9U9$CMm3w? zdnbwb-*bM0?ZJ~`yvC~*TkfPSJlf7*LvPH0;vF)+>7ssSB%omUR^e!|Y$?{RDG$g& zLpidTIl^EDx>+-rN#HjCw&CD&F%*UN=5LZ#@e_U3nU!yWy8=%waO$7zYvlNpp=346 zLuHEJ4Uk$|0)9;Sswl`mG6AUmLdPp5tRLgyZT&j^C;*xMdyv!xR)F7>+qn^FyxsI92Td3Cy zWoM$XH5iqWO;=y)pVVjS!3k%)j=NFob-n8qPMV*peXcw4)hCiM<&y_3r`>ruPF6d$ zrpZF&-%8bo5H(2tP=GCYhsm1R_LnaK8Aww}Ixs3xNNN>2lN#^V%epY)ro3Ij{GJ%kanV ze##jPhY4C6(&DLPI1$#G9eSbYc1T>qN9B(MIw`)V?WQ=O#N|{6Psq#mTD!f5Q|9pD zwf5om+Tri=-1#G3E4I6H*ietCN4UGNk#u6@_)$&FaA@N@Q}_??HQ04=ACk|V{lUr) zR@5VSucEPbl-EB{Bl0HN?s1vZ-VW^(pmlER;@faldc0?;8L3xr^ETZjnu5U9LrYFY zyV-yA9;Y1e5fsN3qR)21W+6kBcGX1fX2*uBDx;WS$p)=^X{B_&H2M$!fcRDWs{Am| zBrYXmMXI`?-GxajRHEJ~^M2`>p34&3=CDi!t@r!X{w$Q0Qo}8ui$Uo|NFbxq{*47f zlvNlr1uY_WnBt;b%C7g0d~W2uTKb>wJfqgpExwy5PF1TA$EhOxXP5usAM`c7NLyXR z-y0X%8JCfxmc@H(pxVt#Sbmy)^W7INsEcdZgII$rScMnd zd18#4q5z_bbFSd?5sW>ihVV85=FEvxSo}lk@h2-!zO~Z%;UncUKde4dQM2!>ysy&v zZ$DQ#y{+B=<-`WxR!Uw-!4XaDi*(tuwtgzvd0w07YH zT6%A+u5nzyQ5CE!LxzY8%Zi`Smlw5=N>RL*5^y-7aowY%TDX4EQ|V+lRIkv?!t3et z90&%aW+Y2i2H0UWSV<%T3GRtmBTb@>Y*%BHxrI7Qf78<+S@`B3ZzCr_MEBPYkFJe%qmVN+8;0tEZ?Hw+QzGONzL(sxcd&>UPVKeX_`oDt~}g|bIP##~CA*L7in zZD%}Md?*nbA~U}0KDT+TidVL6^vgQ;CV81i;xQQNz2;5~X}P5%@@$yc(!2$|HaJl3 zOC@AQ@wsye6Pnn>gh$$TCO1#Ejf5qH??)CPz0_391vN3XoLQQfEth8}mNLszi$g>C zJNjBv10#L;eBa2xRIBd}X!*fQPxsI58JjAVrpETn^-nL4jdh;Cbzo+sK2-x=G*us& z8MxK!2N%Vl;K99as*;5mxUOq`poMANzH&u)hzO>e_6t`|z35)dm2-5@Du*Nv#&I3m z<4SCz2|E69=N%Ny!jEcDNYzd&5CqXvrA*!fy+48W@Tp=d=ZVCjAdLi16%ttwWuk>S zhy)565d1iSa;WQCt-(PzVv$a_Mq8sJfXoJ|-gMS~Qqv(GGQ-|ID>G(2`T;izX4*AF%_vtTIYMZ!7A00>W!Of+Pj2 zUUMDLOR9p#R%d|#ceI&8@x7y$LY?=8)cKIw#NavgSHBhdUtH{hF~#++ASWf7g_oI2 z5iA|fFxCXb31BLe3B7V1B?L%M$RKhfLE?7jo1TQ<8JJ+;^> zTQma!I37%$d0;ri2`2%aWWdwT=fDAKioeW!dmhw{u<6^D90*E+vSxD;5`O(V@7fQ) zW!hel#=rm|_Kw?8=xzj0j8!u-JNobH;S_{xrb((+L_(ZFZ*|NY4FrQxCIivADD3C9 z%BTQ%kzm#fiiKoIp&_uUvElHbuNDnteG!tRBL4ZVVbb|;Ui3yUsi!G35DN$4i19|O zq8aIr+sUatH_ncZ0yD~I0*zpx>a+VK2n`S@KzTZ9_XXi7;#3rGAv)~|c`{}O=CCAL z{ys9x$(vJlHB=V*7R!^d({yt%73%imDr~xD3)d_sUyW?3! zJ4e%oAq812t_q%du8NXF78HBwY_%V~8!WX65=Rp0tb|;2q7ViB(7$EIw(Yh|Sf1{E z`rdmE-f-_{c2qKzdv{boxL&+x|DGoY_n&*}*!JzM7XM65M#~lZQ&5z`=pL2r6@nqz2^$U2$g-0Y~R8q@Lvl~HY0n}c;hDG?->wTGIJf>CnAon1IR;Ut|AONMaQ5|*q`$q`j~xg4#e zry!a`%i6s@`=K?p7V3P>Zw`+Si|(P8tCbe`>ub+{CnKMwuv@T#{?(rAFM zNiD;{BHq~R)=4i-E9&N^dSk4ULcBY~8ac#TDH=uZ-x(dfe`MstqcXOz+dit+jT+k1 zH25sW))2YPgl;COfTt!X1!{WQGa)HsAVz?98Iyq9!A&eifVjpGT(qJHE`b!nz&18E zHa#{y+^P?x3w8?5+olAiG?bNK6fjm`TM`8%h|^rCc$#SdGcFA`uSolCs%=}hZXL+q zQR~-)$kUZ#H4^R{{`vd^Px=CJ^&Z%g&y-5BV*|IdUoC$}$_q#Gt&20eqcvZvzyDqN z*RkJWzxO=_VNt#~(dg^z`?s}j+kTXm{T?kVGP&lIL8@pEhCE}$xf-CGqrI7awFlOkZwB(mKBJo9{9xzX!||PYHS|I*#i}~KL{3IR z9qRmhKFSO~R4Y6AkDUEu$X+1emaEosr`zrlcNlYqv$0UnX5o{t*pIj@;LKMp3#i#f z^K~yL^Lt#+S+~tLuHx=1?c<(%a+AzUBJ&P92XdeU3S@p7<}%5i$ZK4@j8DUR4y6jA z!&OPyT+yp|>giR6Q7VeZOneXof)W8HJJwEjNyKHNLqI99a`A-J)rk$W{fQ^OygvG8 zM~QIPC}P={TW=$6eVeuk9Ol~nRD5-1)eVq#)>l?p z?7QL8^-Z5t^^b5QuFAv8kA16k1lP6-&{`$tG05;C(J+@$20+ZvlOl7-xA01S4t4Kz znvUKpwk)l@-gn#Goy%%^=JvH{(*AQC^&5Xs|}1gh*4y(I!r2_r!8W z@pfNx#_wG@$>ziBdFS?%=yL9HB}rD2#=E5+!0eGBn@G*gaNKUK2gGK#)rd1>ldb8U#Z07mCEaPBidE(JiTa9?|i>{ay#`Wk{UPa8ndd!hV3VRRbPo~z)BbKA4hk& zfN$UiXJ3*sCO)+c8Lxvzf`Wphnox_*dXZ?ZpkqW$CD6-sa0jC@GN9(+#=>WB}oSs~tYPZKAQ|08Rnf(4q(u z*R;94LxSg!ZLI01P@Ba#TYV$-p%XM)9cj;@|;F)u( zF*}G|X?`?SC=#|Wq&{Mj)ZfrA%wN2Zj|PjD|JDQ>6So9?u)F9N!QidE{&Q-u#4DLyVCm;)T zen;+~@kS%K$L;@d$BlU^iH9W z<&;yR-HVOk#&D}Cv2>~Jkxpfj$xNKuUyM2Jw$^I0*3x?XKH|vhjYN5U=Cfx;tEHEW zQgzft30}DHEf*(9xNo5S?aF8g+~{cK+wIP`wBq*m)zyo=7t-`JNmpNW^E5;Us~B~| z)mfi#-WeyrRVK<|!0BY6L?;tZfNZ`2DT|Tiq0*5KXQtT;duns#)l+0f}m>vWE}#;gc3)N5Zax z6-70=8Yp_`zC+5ziM|d*Xa{8Iza3F-_SaV(XKVv0df%Z#_i2#m6YN&zFX%Y5lgP!( z*rcK(^c%Y!2YNuGkdKGqqNRE!{#(y7E1(1CwSjZwWMPz%-{UpQp$NKXH z5t*W@Xs-d`EO?p{b2;(YGJ|0-OlQ}Z&ldWl`=`nISaDyfSFP@zYL<(YnFHI89qoLE zhwZDoXNL3^1cjV+4fz@-W-O>)vV?$CQ5sM){)h+<*+DXhwHWWd?1}PBCXt9lSWxmA z0-l1?O(i4o2p~}c+hG-Q{cLV11z<5{-0>%O|GQ4M?>W_TjfeOZ7aQIzz{aiL&=Dc+ zQG^LW>W4w9?!%{DL~YvHkO)= zDWTJr-uB$v_)r8&LEavraTsisVPai6TVn0YnV!!5Zr z0kJj^q*4>G#@z_Y%VV5p4hRSajRqJ6rmS2t{CXv)di6dYYRFu@%PZ6bY&UIe*XsaK z_q|L_zz3uzAdQFKRYmXeF;mbdS!@l5S`%peS3-C!%WAI%K_}V^3CNx(VFVlZiTm$A zp{o6PICYE*o%IV&|5WIU;b{)(>T|{=eOwn`>oA~x+%fgR^kL-tSLSaB2~$P>GD8OI zdE|&%9;#N#WJi(O1mrp2< zlAd#I@dSzAvP{|HZIjN4d^P$^`_J?F*5E`XbI1KBP6STp$zN&b`!BVRMaN^W**iZ{ zEr092cISueR11y=lXrad!dmcj{&!+_dmFdUoZ|E%d!$YC2Gs!bR8aC7PAVC|-}>WP zq1&<)-IgZaAzrpCtvu(PIN?k#Elpn4+@FrU=Dn|pjYp52I~LXR<+6$+mu;hL+~V8} zUK1Y>x}F8Yh&Xx4T=0^IgD$P4SUV+0Y(xzqQ&TDoGl{T`E!);voAyyAy=4=;^_TtS zBw?(ao3`0i_RvywmW^Fc3B7?ZWJ#vYSM|JZrPGUznZ?%8;noA*Kq@?bK)D{zi;W$t zYpZ)ct(^GEg@#J*MIyR#=n{H}q*4V9(DA6(4s+adp75c>yL;chyH(_4Qx82fB@YMX{XTtPMjV&z z1)~O|?Jm)2w@uaxaQ}#0V1R(Vv`*9dET5E~6E+gB&KwixmhIg?+g?~om(m%+m_x$U z3%@o!BIV`;7vCVci57>k7r+^5zCAE5MMWsWPEg;IAiNJa1WpOHTGruTiBR`RlbBn==K zM3$4&ta(iOBZ5j7$F0}c&t1ctifOq~s(RzD1Yt)DXwVA}76y|=@HRUm2q_-sXVu?d zcPj_3yWK-qHHW(EsvG#{Yi{q*RX4Baxa*@Q^Di4Or@GGo=BL9QW)O(WYZ=sSjGNJx?0KP4~4y)C>qVAve*TC zW8nHod{>EMKLAq}A82QVl@In^Pq-4pT|2OH%i@+>mn&7RTX`dRogvT-`mE30x@GZ} zouoU!VMm>MSU~fE0TbdOD;T9h!Lo==#>$4jIA!d0aANzc^Vk{~7~s|jR^aTQF*iXY zk4o8ZsZzN)jb{U7LP0=DX5g;|m5{`WY|hQ^ zMQX(cc-VPkC}G+W`~D>EOo{ZLf@OfQYI=#|K{M>bFCFI*G2}T-dbJgaScm1=iX2TT z$j$avk&F_;MNAo0t>9N6Al~eub{%-sx{vvUvDK4E3rePzS&-l)a~U_DhEL`om!y=_ zLaLpsO9u6nS|uf}vx*b&VrMPhU+Mc)!bv<<>94L=FI>9xV*DjT`v+e#E?-_Fm73iD z&czjO-IY?=lO1o`jL`j~C5kTzczC&?p0q2zqzO>AIQhyv1Ovd9`P)}~vu5j+0MHvn1Q z_sU-ZeY|xslNuV#)a#Ai_>81zvu^R7sM&1_srP~p)cYll=*luFw4gt<+fqfM(N!+g z+qq8v7k|ShJozT@e}Pb(N_VzdKTs?r;fIUHCgv)hnq-SaU?W6j@&B7=qR|y!JR9>> zOz%>#lqjT3&&Q(CXZFt9!O|y5IT0j=Ps^A!wT_0=HkOSQH_3#aZh zC@|I-@@3^|HjDEg zH9TsEqo={xblp}mWn$=CacW3LVn=w2MUEShSVTH%;{Xc1_@_StjBoq)?K`~h@QpX@ zUKTR_1?X)Cr6NVWJ~WunvqC$iCAS(BuN0(VwFgVVY$1tSxQ4I6$Ld{@W{geXL#!H^Pn z0CU6@K*?tW?NIPGS)293Lh(-&W@G=+l_NJDKGaBMA(7pYD24&;;@m~ni;-8Kb}P(^ z8`u_Evp{RxKzhX1&t!88O=gK0hC>TdiZYY-iYox^K9v(xb+dsjExN+md|+{OFkGMA zw{Nx{9voc^%%>*?eEo&_(8yFU9GD&n%@_K80~4Kho{psYhSY6@zs^3MJ8cd1rOw4K ztSVzRFniOk>G9y`^z>+Oe0upX8*(75RdO~|5#~?JTM5l36}W4KlA~J1=x;xM=FH<~ z)T>TKqs5j|w_fb((i`o(Xx!%9GFD->jgGYHZsSrrDo1S9CuuJdauQy30U-!24>1dj zE5Z1SE61<_0N8e~A!lc27iSj}DymE8>R{Z*w*>%%K z%ghC@Zkh7CE^2#1);vS!Ot`qJm_&?p{b*znK@6ri^PihU2J;UjL`x$1hb zUExv2XV3$B;SI%h)y@f?dX?ONG_}594mU0UM0D@mD5#syD|60`1*Y)9P8wT`yT#(a z`&D<{xq8Rh+s~Z7?bNMq-8FZX9K7*{1N(*1aCw*1_}I3zb#bmRag`Z{GK&=k+i=$i z+cKZXwVFN(HkUoD97v@Jk0#U*wMl9;PY=K&D6g9CugyEDtHUI0&onXAuKm|(^O8D$ z)jyR~4^~?6UYo_{7f)=w`YS**>d}$G^5W#-aOx>5lpW~3P)B>8y{RwUpWF1G?GNp~ zc1yV5-Kv%E6@P)>OMx0e>ANKayPN_!z0_*z zcUYk3U9$k2KrhKp9oC8kA#*HaMW zb*p%~*OG(DP^OT)sv!ev{ju9g`Sjhmx^~*EVSB{691a7Q_+%$V~l&SOljET>ch9?U>6vFZ zk~;kU_jBB9_d`3?$K!DNbn37^ImZ&`sC&G$@LMD!q`|$6P|0TzDhmX|v7p7NNaAW@ z7Ei;%{MStL7Su5FR&3H6<2PDw=k*a5(iPtCR{ef|=P!1XXWMIsGBLKgQ$^X9vvBhJ z^{OkgQ(}Gi5^AFfve_4;;<3xhgmbGlgVmDDo_)Dv-*wFeTz4+Qi*hbpYn+QuEX6=kkf9;w>Qf~QWPQ1~6?l{7U0){{&H{(e6_^R%HJ!g$Y z<0ZA z8Kfi{oYxohz-jEqM~1%_1S6GFDP(Css;o$quTiDdPNa*uI?R$VwFdnDXegg31uZ@kI)xbb@Dfqg1$J@yV*wtw-% zPd$0iXNShIoiGb5U)X0sz#W3JICRxW3HVGZ=n=jO`NF5kv6Z0`l%ayJHF(5;f}f!h zRQo^r%)1_6d;9Az+_hTErY9TY6D_H^NI&cD{IO$2{B?RLvFnu~rI+3Am~sz8a^l8# z`0?YVH(H>f*cdJ`mCjgKjjF%w^Mt}7N*-M`T+s2ddAPV3E>@O|9q0xq?wg=616Gue zP7ip)@kEA%Dce_QN`PEycEQi)v*?p(B9khlGSL`0MInd~(r{%*BKdt@=t8N=$Ift? zM?+DLgxdpy*pi~Sc$3yF0Lc)R%797sik z>r3zzj~%|xCm}Bm9R`q)$c9q^oQMqeSUQt0r3x@_!h!0KP5Pn>+yR#iAtr+gzokmY zEz}N{TgJZF)P|#2+IY3u-~Be{5zwX>qhb8o(9xwsDNi5)XP*(zDJDhY6!7hAEaQoo zz_$s`G5&Pq>k*z7S_q{4#HGcwc^Qji0Kdv&Cig zbh!%Md+phdf=PeLv@;1i1;8-ML+IyCe=?cwyOZ*g%!XGN?k8aHPrAyVdwN3WU06w3Gj4v4L z&L>Lfk)Qm;$A0mnANlap7eDaS`>757?sq-$_+#(bw^#gO+qN!l0m9p!nScl{H*9-8 z{`Lo6vwsiM;a~qxpMUn(Kl^K+`Sic~m0$kU+M{p%xkuje<~O|VwfCO8=WelS#iW&J zz9 zX2PuJIJSQM@(*0eHRss$R(;BU{su7RsO8Fk@)2d)@rI^-EJq%qX{jK5 zMX@+SE9@ao5w&AhI;cADyl}+p$@+5S`*>A4kO{^Up+q zk_p88=}asV%|*!;h=nsy#MuR35irv2b~eDSIk;vbnHWciBWKb9JLk)rzpie$*H(|5 z#M2_zXx?z%&%3CVK5{{YK!n>-8~)-*L?|slA0z__=84w>l`xlY9=T9ZcHH*I&44F@ z0hEx-<5JS>py~3hE8W0_Kx>pIA#^mB%FHkl@t^1rmVWL%xFN0FLYmL!Sq1em7>?H*tNXzKgRl3^t6#mqFblkC z<>VvhZ$j)7r=~k>x;@1rC^evZjT|8M8wz-(xycSU8C%(~jFF&pBWs;>&c`wll@7{i z@H6ljq|_ah;gAXtTl9FzvN6pN5Vk8FWF$QS*WZZw#`A1H!yeXhM z4|1s9a7@dHAq|Vpw`H80;3_e#eR+hlPewe76eA)TjYK>FGwx@wsb3(69(-HMmnLTI zQ;9$_6qTz

8E#xmG!w{$tO5=<$!EHPzZXo}IBc1_sqA&q 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 literal 0 HcmV?d00001 diff --git a/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.woff b/ecomp-portal-BE-os/src/main/webapp/app/fusion/external/ds2/css/fonts/ionicons.woff new file mode 100644 index 0000000000000000000000000000000000000000..5f3a14e0a5ca6d20cc4fac708979e807b0d51bc3 GIT binary patch literal 67904 zcmZs8V{|4>+wC3O$;7suiEZ1qZQHhO+n(6Y#FI>H+_AoS-gSPS?zOAewQKLItGckd zJQT#m0U!VX00c%5fbidQ?eJgu|GmV;RptKa$o^I0{sW#}G|ZEN3M0!uQ{lf@`X3C1 zxQv!f?2H@%0C3%Z@!Y?z8=FNXdP-`@Z* z3tKO9000&U0Ne!uK#Cn-Nhpvl&5TU{&hty8$H9I5Ef9(Sa{O2S34`93?CH6*k zW&ps)e}0{R{;*=CZF@%t7gqq_bLC$y@qgW&${JqX^xQNtG&M8?7^A6iJ$w4+G{A4m z!V@_fW!<5Je|`hd!2W^|WrTpxApoAnVO#)!|EK4@{RV^(pn*XHq{Jc72VDsPN-kjO z|6cyzw+HO9Wq z%*b|e&wxgh{gGT@6k@Sf;xaJK1JF|dI5=XYpqQW%gS{Y2EW9obRzU zR?ojoUyA0-1^>Y#+lX*4wj$Gw zspW2nxtTfEW=Pyl+3L1z3fE0wJI)7g!Q#v-%q8$DXVHJ6(@H&h5bvfh@#@nN0ZRYM zJ8Rxq0J_%$Q&3w>YjR3y!4n?WPd>paiq~wQy=&U*&wR+sY>(CAVk;EACp?9Zcpv&k zJ#aJDDe5B^lN6e6vj-e|v6sHg@e6ReF;Uh_G4@?Q<0H*JT?T`=tZ)iW4upbbZR^h99yzvgS(c(et2B>6HtxiYNz zwC`*!+Uz`ijcL+gR?9x~t<#teeCRA3_p{KgK%UnH$KVhe3Vh~o2}c(!`}=sxHT)nvhm+urR`1M|0AC`9%kofst zf%nTf3WWThFTiKkEsOm5j{>s+-|z2&pncL`64MFoggXLXA8e1y{Dt``1q}Y(h-(j6 zl_%_q^BD>O{4M^+pyw!Gw%^|Z0;~dP0$_Ur{et|o{4V^g{3`r@{CfQK{0RK){N(&% z{9OE2{4o4N{QUd`{PMe)ia%4Ju{N;&;9zG3f}?eVh8rRM+m_V(|EW-BOYmgy_VBj|<_Mt(YltL>9EiS%A4m*H(nz^TQ^){hVPtdUY7|fuDilMM zT9k9tR@4tPQ?zWfX0$1^HFQLD4s>VqYV;8dcnl_t=pT4LEPvGgnEG*!iHb>qsg9YC z*@y*>MTI4d<%m^`1;nPp*2W>g$;KtX)x`zkY2vlx9pcO5_Y*)9a1gi?q!L;Z4im8u zl@m=69T0O8`;!QgERm9tN|WJ{wUgtKE0bSSFj3r7N>c_>=2PKORZ|^M1E}q(^Ql{@ zr)UsqlxYfSE@??Nhw_c8Yq4-=0jPd3j2FAc9RZz~@jUnW1l0G>dyz=xo=;Hi+P zkgHIlP`@y|aJC4qh^HunsH$kY*qivU_^!l~)QZ%pG@dkzw6S!e^sw}`473cJOr%V+ z%z`Y1tgLLLY`yGnIZ!!7Ic_;=xn{XBxovqwd42g#1$l)9MH)qZ#dyU=C1Yg@HD$GGb%461y1)9a295^5MzF@PCW~gj7L!)A)}^+xcCq%GE`x5b z?x`M`UZ7sJ-XDE{K8L=lezbm}ey9G3{fXsl&K-9q7Ak*O1P|{G}u-5R) zh|I{+sM=`E=-e39nA_OgxX^gY7-+&^B5#swGH7yW3NR%yl{U3BjWo?R?KQnNLpRel z^EK-=J2nTHcbgwr5LmES*ji*;tXP6u5?I<=rdsw|&RHQ_iCfuQWn0}^(^;!qJ6oq( zw_9&pf7y`P2-{fOB->Qm{I*56m9=%Xt+YM0Q5OSbE@JGRHO7q>UGceHP|-*rHA zpm30OsCNW7hB}ry{&BK(8gv$Q?sQ>s33sV<8F4jsU30T^TXH*edvb?%$8o1|mv?t| zPj~NipYy2ojP)G$y!1Nvp72riS@I?DRrh`KQ}%Q83-tT#kLd5{-|BxE02?435E@V! z&>zSj7#-Lf_$Np;s5A%|%o3~}>>4~50ti755ezX5i3}+ZnF%=#1%$GMYKFFl-i8T> z6^3nwgNFx(&qe%*;D}_19EsA60!DL0J4csCFT_yAc*m5-OvPNsqQ-K>s>eFUX2y2L z;lydixyMDu4aQx^3&zLBFC_pHbQ59|J`&ZFol|^MCQ{x~LsPfY6w?~hP183snllkI zjWY`~r!qgXbh9F}+Os~gIkT;^qqEm?h;le{%yZ&%L320rS(M9z|V?~F>(8c`4#>KV8E5&amG$ryS=B0S0wxzYD zyQME>uw~I@hvksvSQT^?-Br@n9MvB+lC^lX?zP#q&2^AXrjNH_R4bT-^Jnm4vL;WSw`Wj3`oEj2?ovoz~BAGC0{Xt&t5;`?G^B0H~ z5*H2@@fJD%`wyz^gGn`&aHIGj*+q5O%h-M}GdDB8lBr*nQ8Vl4F56wHPS=iePt&f$ z7m^`L991X6CpF<@`wfZ>r(yvwt{I4H8^UCw!Z8MEJ3qmKb*nwdHNf{_qVvm>H+DSb z&0%D^cFH;w-r}oz#`CUS(_VD@eFyg^3D*o4-uNeIcluwh;aPuJCzp2tIq+*joPy+$ zfz59#0+G~rbOpv3;C)3@=$GAh1xnwpYqosfnQHF1LBL7g>E;(JqP4I!Zv-czA4r`G zWGR88E<2fWnQHxdw|)hR*Ol}_7~`9r6mr@ZeKeKix0b6|$NGgC8_Be&$WL17Z_$rz41?fW+DA!n&t zk!QUSSJf3$*l@*GF5RDsyj^Vk-0U7xr)hn=zvJ2Pa!FIB5kPtrdNLgt6#5_9Y;2w@ z_s#kPv?|>*UbC?Mv6~CoLk#iHDV%g!C(T?QKE_^WXJ_|6*+pf*T_3Hl)GM^CLxUWQ zV5Em0XoMh&?_ZooH3%d^Ga`$TlTHehQ!B!6wkE_*y3iL8Cd8+A&jp8wtHd)U^q~Dp zw@Wg^of{60Q^PavaHQw_mbt{ZDoXXtzI4JbaQ3n_wt?hFb{-+-iZC2!gy>$G1~W?C zi}&u?it6JPT?g7W5Podb1tTWf{I0C%1K)X92S|H2#q6%B>FXtCEy!dCGAdNTiRt}2 z=erH2x@JZdx{8VrkK!^&Zp^Yr$@l6~xSQQ^YaY_QHNARNmUUNvI9xGV7x|lF3$veX zjMO%wIuKH3+6t28Vm%OLz<`0!c(~{sp+3U$XL7U0VrfMy4NYdPAjUH|wTXClF`{wU z@~fzHca?_<{eDJIJ#CrP1@vT^^>pN-vVf@iz?Y25Uxs)?SQ~%r|E?8@QmpjomwYdD zbmM0Wfk5#moeGrMl6!&TI6CscmY8=)IY9aUwsqyXQco5v%k9N@xrP2%_Stzm9R)RB z=jOR7G{ENR`JI_XgKlR*H#aXkE0@15P;T80H(vqUt2`|)npCW5PBZmVPfya6G7LSf zJ=N?+4;vjeO9i~Gy1QJ z%Yz1{bAC#;K(pfXA-;l=N_^VnaXCv>>j_SGb#@h$t8sL8)}(yw(Na+ZRd~`I`c&Ga zFrIj~J#N_iRCalHc!@MilB!m-?9LKGRHZ0-kP3p8og)gAE{YdcQ-7OhGc`w|gM){?Ypn~0FSq`;{ao8mElnY(0JO)@tz)-!;|lD;mQd7poQedAEmGt~7M8}J z5?aIQ7|#I+dC@52%BEHgj|ZNt@md9hvtqetfb9EmnnA%k2_JS$BXDAtW? zU|NQw90^F$Infxm9k*w<(C;8mxEI<~;;31Yonxdsk~Oh?VkL?Sh<&ysLKIQ_7{?us zS6uLY?~wq2JRGlqq8iRUNp?pV80c}qaP@7V-~_c$q5{f&V&OrBXMV)4SxU!Ru3cbc5C_OuACe^|2loP2 zY=Pj2i}YNM3xn&`_sB45^R_|S(Wo!|fd1`v@6Mhe-+HW70Re*f(U+H&IOZV?PxNIJ z*`^p@U*s9@m%C9>eQ1_rtOL?F0jt0PVEVgo|atpb;?#XUb);2O& z_pcf72DkP^%3Dt^T1e|GNYo9Jsx{arorc>udTgbiR=Hr^;^=~kxe~JIl0qY7#v2Wi0@3mFd0vM}2?EN(n$QYxER3Y8 zd@mxcqDY@p7y2Hv{Scu^vh}pav9%5Z;6jU%UjD99`Xu8Sk_EVbuE_e}*CF24er&1| zAeizumUu&;wkdWTv7;ih&p;Q$I9s}9DB+a-2<1r-9hy1XAVCG!*IxPln8@P_^*m_= zuh47{Ii0}o?Qe(LpE7k|SwY%kXmgAGg@Ll;`o7;q4W6vSogS2Y7wr1fcyYa6x8#05ldBLU0=z=8nM4h)p20b)J_9A+-kyd?c(c|0~2`kBr zZe9%(6?eRnw|w^!S1m0%YcWZ80>5RLy%08$y_^g-i<7glUDY6qn~UOQlRgnNVpd zVqB@X%W1^<{p5|Fa#n(~szvBmGvwze$VTf7{vpFjyc1>BOjv9Ck@5x&rS6u7wX zvB2LJOyb`^#s(t_-C0RZ3U{yI#|8~~e+bDGmJ~JxQ_)qt6tQC=P{tP|mL{Gs2ONNd z`w~e}${XStViPJb+@6YDZd4=?W|Rh=B;cDU;0pwq;u-rMaOMgdY?onLRMr1#MNg*E zcoYq|qL?D~&O66!l^|SoE_!P3uri7tgX@1gMTH~8-` zytky#1M5R6Y$TE%E=gEwq<~J~gA9~KJ;lHQ<@K?ZS_rEaBn%2+;C-IE}2)Y1xgfvNoFbOu$%+F`Mf46NiScEB8<{anWf0*rQR;FTduMX#; z9!nK@dj@TYS@P`$?gH$}m%A5|g+s*1nipURDCWKKs^EKYy+e#fc8ZG#Fa4`6_z7{X zzXhtoi~Py`g;kP@3Ugdbe#ar06u-luagS@9%B?8IXdYfjfP=sit&&Fg$PM_Sn$vCEZLHuf`NfoB`=*O4mR{a%Pc z9t@Iq1i!3Jw)D2qI?%pI1(JWn@N&qlvkyOElSiYQ^v=75;H5GU;b?%iyvkN`uvOuE z-~)sAvlry=&s*FVOs_9Yr&xjchk|jJ_XfcvvJa$HHnrC3Y^;Z$8#GA12TDKmxljeX z?hEJaI*{lC0QCBADC9^&9;CD2HmZWTr-~%g#pKBg>>sl}-_92-vtG2(o@WJWTk4By z(J;bC6#XstpC|ZN=R*87gXJe#d@_GIp%U{sUySSL$qh`$?{MDXfpu6QBVc~0t{pUk zCu@Ny!Ic%>6N1x1E}u7?A3W#=UQi7e-rqUh{q}IfnCM3yg2eHUPWb#Hd6124C(be} z%4!X6Py6DTmX|B4>rylc*yYi%oFvMkZio~LJbH?!LCbU|3P(+qzWZ>|kzS9a!MRCc z^ucuZUGtOe!wQ7A4Isocg)Kqg9i@NhBx$~^2Y$wti%Ow_E3P^W1_#au_J2{1uuT?F zfzB!5{#03vsb}^YM4*VYquaKXJwe+f@5Z{CbffYjWeJn^`mvs|*!b*@t!U)UX2)T5 zp@w8$*Jtv6Z}R?}F%5MM9pAP!zWKA0!cuTKOc**^4kAqOZS3%>}eJuKF;_A9lv3ej?=st9Hfj+5XO3scpzgP-Al zv!%>^*r3TGGZ&kI0%EmUBC+Fzi>C#HreT9E|Lj> z+sS&;Y;(VwU#rKsf2P~}sDzAE#2zz+iJNyl)({bF`L_VJ32tUwf5=0i%FpSb4SWqU z@-q#x>M;3pa3=lTB(S>QsXLyxWB-ZV@k-Lcg=KKD(EkJX6~R&(O+_0lD`&M5Jo1Oi z7J@1v;;9<95chEP_IEJ@DcJid_jZ6b=tm9yGr8RIj)zWU%IY48sPd}CXIS#CD)fPy z2-ZZJTOuv@Y5-X?9orVlM)&m-4Mka&jSepEP0i!s2gXj;DxAP9!W&3hfXYfT+pz>{ z)sSUqqpbC#d>rJJdfzfa4?Ye@w-IsH4#8g{CPjF9oPg)PsOE{7*{um0IIr3*@=gappE8h~)t=68KXVUv!Lov4$2~UB- zH3~>x_g@Sc{1Q1#f33{ZybdSB#$0JpawH~2 zM^WK=J@t^o+xC101AOd+8p_Y*)6~Xk(eV(?LPtrY*x{!nl48kpl<`sFPOt+vkXll-@2~ACn5{(_tFu&0WLTt?FGR_c;SFLUq=Y1#EuX`z&ITtvI0P!e=&a;T_W!;1j%_@bV6`%XA-ZnbHz zE(js&EtYiF!Q(J)XqizUr1r@TZhf9ptp}I>qzi%rabm4vhMQ0`9VsPrcI`wo*WkxD z0uFFzn-j`&$>fzaji)fLPR@vWnV=&^%SuUf1~W0re39i%eMcoai2U9(%P{1SO%Ba< zcB+)#`N-AZ{md|NsOt`Xu6P}Nb2K)c!%gRo+-XfiC6p@JB&7eG`{~L~qHEZl_ za)ydu<7}d0nFzQgcJW|iWAl)Mi+gc_t0Usu1~ZR>mC!OciK-K}hu;*uxPiy)tnDbA zYtPcMYIb!KB)~a~dG{%OM>@?i@NO2T-C%T%@O`DbjD%@XoPuO!8zP82*;w%3tz5 zptdEpUcI^dL0FSXxs;b&8>!L@NL)f8&zk2>C(OJRqc^4b{4P765bx%WNu>DJ*bt=V zbXOf+h?Yde0G_dc-9_g!Z0OCz9u-NyW~L7roEQT-0ECS3p7YR7}x5zhdiguKFE zvEIx1b-NO8;GecY0#SoerfLe@|EK@`@ELRgnZaMghx# zwR|6BqvWe?!|n^beIX?bI80)V;Ayt@q@|y3R+Xa&r{o;^J=p}?XV^xA>}QU4b%AI8 z)a0}X264f-aWsg+8#0m2?Hk|c94!aDK83}(jR7_EP)3ss)64^$%ztP?UKvK9N2_0f&~o0mj}H;a>j+R zY$DklrMyue;aiqzJ@TVo+15OmmW@=U;KXIq&G6um@z8p=2Z|Wc`_|tZzjxc?T(;K? zWq*JeIp%?!^sq^IMAi!xYm|!8^GtUS+f>E@wdbwz$T2>ae2tOnXWns54$9ftjcp5paqn+Z$AjpbZaypXj>T@_|PK zeM+sRD8*zYVSn=0WTJ%@Ztz&obC0&%%vm?5+hd`v0@1V4f6fG}8w#(Ga>UesDPrLp z)L?O?dZq@~T%WzRVyd=IHo(UtP&ax1t?ht(`2OZoG|mSr*^(S_bnQijOe01#hF?;^cfa1 zmY?_H4^2@{)Vf;Qakve1i!~w!2(5Fj5mM%H=4ykg0h)!XSfH@z3o&kgs^A7C$`qO5 z!=C5p7z>ORzrJ1l7iZ1J$6LC7EB2RTjsE(%GNsMDxy)-rJ=Rshd87Fg7>s-MA`+< z_AaY-$sRZU-V6tvNT@?fA#NKCsZkH2WF8mTu2@V#y3fATbg!3FM&+`axo3ktAOr#M$sskNIy&ubxqTRKMA>r{D zGd7YdYHCn&iQyssI3fX+D){w$xtMmBzYEBfi&ABEc>sQ@f*03_Hy}uBc6P5b&E^*} zE?Bg^_7}auciT&5tbH3ByE6~X<&(!F_xGWb#&F|qfH@yCy^Lqj)U^ag-N*`yXw2y4 zWwEJ}+Zdf~MjxHqb%uZ2kxVFUrD*r~dyL=TSpkjXr*70|LGglswRkS?jT zFUUM0@~a>0Yarv9sb*2@;GiRDzDPotn1%b1g?Gtxdlg`X^SB(tqCAPWzmh#elcu;78BfE>ZV&1lW{mRW-H2SPORdQ5D)+$NDoWzy zKF9~jUz?={rHxxmpiOTf%7JNAyW?L6m5$}eqYBLfoWi(aOd5H?-;<4wM`>Y>$$5vv z!}YI}b|X)S$<~Hi20lr+hVSoC{0OSF8^sD5XUphk!n>y&=XuND_&D~=T4x9+;mIdL z$%;s@t^JD^aR(L%i9%u8)a@2aInd4tG)ML}*d0CZRK~@Uk%fCJtzX!u-wMF>@4Ir? zWPFI(8KO}XAatG0XF!ln^%F@)Tbn!+z|!Ab_)iopAMNA~=;71wp#6*+q%K|Wq35V6 zzd%-iAzANW;`XV<7G%rZzXSbo4wI))7l9)Nhgp})sL>{Tw+6Foi6TPusNuIuU~vQrf~WbChz7#+E>Ba6%kL?PVJ{3xF4Jmro5ui;|uEM80JiS%5M<&wxRl`7Zke? z#C})b1@nu^eKGrmP_}^@MWk7TtDaVb8nAbUbEN?Mw@-HSEi(cNFnn0;PosLVcg9#! zjil`kX0OA|az?o9F}UKt-11)SvDI&w z7gd(_2R`guPTNfm?^RSUp+px2(BQ@XJav`T$zS?S=$HeXBiA#YjdPY`Zdt)+Og4}Y zdy?`wHg72S`~nJKZxPq!M&D9DwxlS}THdSNC&cwr;$>LEP{&zlnyV%gvq`w^szaD~ zS_zdU1rpbQgnc&68=(nJT~T4QZj{M-C?Vj;K?n+aYzRdYa4bLcVCId!r1y>9ZVy?p zm*?RMmBK*RN_wk%qT}o+tvg7eNTO?MUL_f!e+yCF+%UMr@JO(e1{&AB(Un8!9zU1l zHMd*ascRN!3wcQMRBo_%cWECX;}-%21O=8yUg(5lU*dJ(JqF8C0SIPd^i#mOdwp?X)QZaW2C=mw>4D!d2-A*J<@G_;k>D0w*hWX zSEkq3Y}1dVsBuPVKlw=50uyl1Uc!6KW!V!m(*gmhgoW;uw<3j!EMFs%hi!ua*YTT| zihX|p27LkettPCTA`#*Gi9Aft2~yhFTkosx>MQY4+uTnl;7=C;p_;766K_Xl00YD6 z5qpxhJ>#+U)jYaK|{yI4%a=Arz2}hdmPpkLh?Ra*abHijm zz<3$<98SAG>v4{30JHDY;NQ@{#n~TvRu)%&-+DDgSi@YL3DAF>2TCuGN0P` z7aV*h9V%GK!-YtXDYw4D0O+Yo6Y;mXw=C+fQ5Sj~>D=z-rf~a%!pu6><9(Jy$-(PG z+9hstmwrRQ-GNvux4>S@6b1zbo;ED$BpdBkY8x;k^ypc5}tR zYz|0#!+udP;M7fX!pEldiE~z`}gu`C6`ND z95wsUr5X~M?zm*x8To#;&J$|#2<-9r-`u5g(#qxX15Ts9eo0WGvw`g`oN?Xa;NWr2 zZq=ksg3RYcbT4qhWX#&{lT??+CDD zZ)MW#49bhdVEdvHsrAucmfI%5I=1iIb3(RGeSrt4#LK(^6y2{)IS%}sTu(N(>DgQP zKg*i;N-jXFuNWSn>X@f{Va^T73t5@!%<|=j3OkPAiW_Vb@CKYz0 z!9t9S)FvbGE>f;n$=^W8Ikj%kbnatfU!Iwt^%`X+gMr6Y?3O)c1oN)sp!QhIX`rHh3RlP2l}=Js~l}r!R^6^mj>!;sNyp)s;BFLu?M%RNF===#7irGJdBs|khnX<*&A2kLy-H_E3l(_AH83+QT_YK?+Yrj7OHF} zCeHE>@l_pfCov+-Syvp^19!y+(IYz5uDKJJksNRS_~-jX8^`i)MpRNXhd%F*G+7X8 z7g`i5BJjFLv}aCnnCK2Os~8AA<5cS|NQGu}u9^AU%UKiE)2-y7JirHv$3g=irdSkK zw}TKkZ*h+}9w>#M%%|G(AYv*^(m9Ljju9{>MYWjxSSv`k+V%EAJ-@?@F4r#=>!=3G zR8@a=f_f?aC|l--H)otdZ4CpbKl0>6#Xu&x--soiV!RyKwVrgIZr0{a*!TR5Li?#H zw~8LMYpV=qxZJ%T+DkEQL#?7$g1M&ZJNcSTriu2qod|_3DX-&YNm4X5H1eF z-$7?U*xtZ@OcvCqfw+7ymt98I>z8A43lqqVQ}mca^wM z86tk1H;9B#3qg>m!}^vNZ`fHFb#LhJ+iYPa{LW>=SLKlC9*zT~4}xsZZ>0WS<*e41 zb8vlZpZANpYLe7MJ|nOJ$GpL>g?VEA1v2XD1Ru+Gzx4=#kGBS1b`^SX->?1_3k3(i zHwre7IMSaKc03KJDTzP7E(oGDy?o5y-tc)um7fAj;hpfJZkW!wVZS$`u44G*(T9IkM3cmHF52duMbN`u2(DNt zE=YO7G)I=?OmEGkE;fn26mx6o>Hn8kZ>jxfp8-h>{#S^+W+cy9R>xB>Flh9H^l#g8 zF$v7O0_>N{Xlx~HHv>UJ#hzE~^Rq#ue>8qj|GloZlP-C!=s3}F)NOs)N`yxc& zEK1a)8X{BfC>{6@8F(+ZARlCBl<$hzG4Sb+&nteS16EfKKnni2c6a(Lpq)FEK-*x5ytKQjfr`zNf^2p?G|1R z+3ys)TbIso zPep0wpSQ%w%^G+spMLMYpN2l&JbZneZLk`M?G%_B+kfS=T1T!WrqKk6E9Y1yveIdb zyF`8<^WOsa>eC5*8)sO2mhX?Cko5a~FOi6M2Kceck?^G>LcGf5!XK)>g;U_wq>fDx zP{C-V)-Bpjt#dij%9uQr1c&hS8rybLFdMS6vUD}+d^Ss&{!(d=;TN>i*C;k-BOZ9? zHG(pW=JCOO8TBp)o)FVA<$>>^*{8gQScUH=8G+NbT;sNakcM;DK$$1TOE zy2&n`3c*?OutVFKBpc31#(E%k4k?LI#*|P6HC+|o zSmq2l$60(qS9iU5y`Z!0+atP4@?L3UO%#gMsi9!Q#j~B`hlSp_Q%jk&-P3LUppu(` zXty14pKD<{?GLk9VJTP?icwCDp7Ec#<)sL=Gg3UCd+iGf^5X@)_ju!RFU2cDKE1g; z-ltn484c)}2A*76p)$YjZ*2)J8;(ZiBZy6{JujF>cy;r6tZO##a++n=S!PS7ulWAH z{%W7F>Ey@Fc;40F4uvUza&s}RCFl|_L&nzbLIz~=oYmKNpQ?pv_nA_M8=tGs)n8@N zttiK%V-<%T$2{uJ?FcvXrPraW*uOoB)9gCnRvqv^B>J4E`rIE{eo_Sb5JHrWxdl{e z{|XyhdBmr20KF*b8@QI(f{U{nC8<2LEbE!g{vEM>vII&bO{{shJfOtL*L);%|vs*q1ph&QI2;tBd&n5S)MMOF z<0y_v(A&Q?i`Aael=pl>vy;pC*M2>KHRtU&oA11+4Ayf1;X|JVOT0a2d=ZaPo%eNm zHDhH5U&>V9IP;qUlkc7&6nw=%(4xQRm&`{YBN=Dv8~*H#KA2RD5Q01YT3!(OyYW&< z6`^vDR|~>yx)j%(>s2fm;fR_u#K6{QbAiZ356hnKaTX)O)XT|9b(`*a)|To}!!FAp z<^Y@-iqI0hGi4`kXGG^umjoBxHi*tfT??aC%6)eWGa$J5&ZT%%0%o6XMIwz>TTja| z-{OZQyC`f^rLbt_k;Ek(b3m$AZ=Z2|aH9}og&P747?oaU=!^bMlRgsuO!2zD->i*N zJCnU@Led8|-;Fs-eFj%9_acYi>I%8DY^tXcfVWI2y4UcTF;iPyDT)lnHSBj4Bx))^ zhQ!{$tJw}B8gS)zKee7&Uqqc15j(u?J0vL=>wq5P1i$x7OhxsnzW!QCtmPCl7AIhB z(#$%s#*5s5HL^5k0DL=}p<&TBpR&1hgRrGdm~3&?Dj6v1C6okgjUfY3tLe^JBR4D3 z^;33|(}>nD!-Vy=j?@Xrc;)Em{EU6y8QB4$PgL~FIh`e5eJ&a)mZL02>y9uM-W?>w zt!*L$PH-a=ZF;j<$qnbpx5-%nd$fQH5!8Bq>*oZ&Msa7@?w72PxUgNdJdKC$KYYJA zxQLpq7t8Rft^5C&@%}v7g*=o_=wT)n-$!&mqMltbMfHtBwV$sFbrd3i_Q=Qq9TtoC zlC8yhjheuqUwt#nPJeq}A%yCF$O**hCOZpLbGOcfQ0$;zJaRwlhC!@n(zbiILSS~x zqZg@ED>nTqBS2RiL23w7LSuk5vT6q}xZ_NVR(ayPG0@ZT3+mVrNm;!!u?U+*^7DB- zc=IqIo|OpzUjNLqn6EEAZQ1kv=Bu&6MKei>(2XfTno{)5vE0K?=jE@&54>sZ`W9dcveX-=;%fpaW}ZLhOV zZ(-vLV_r1I-E-k>{lvT)GA`I**Tr|9=X{<9L)U|52BDElVs6@kj2`_i_hxQ zXkU|xY^<@&VL@Y;Wv7-fx>cZC!COO)%>*aRcL#DzV`FLEr=}Om6Gg!VF<Pm^8}UnK0d`M92A52&yzJ!uuzwnIgSU%> zwzX+0B8i>G{`Y_v%s`w3CU*0_9F^QnqP{$8t-FShal&ttX9O!sIp| zGlNG&TSd7|vE3%gs#kbuCrX)UP|(CiV6%Z#l9Ajx!go~=1zG&zJgam?+;8PNp5Hm@ zNE?UE?oCCf$<`U>!;Vv(_b9!dZvDtLWyUbnl7Vw5nV?jPn(4}})E!t1S5<0vnvpO^)EUUqz0%Ybx3fY$vSo_?bj004YK&h8Y74(PjB0y>wo?4D4Mc|`&rV*5&y=))Oh&DJ z1DsEG@sT!DblNf^BY`5yUnj1&Q;B-KJMBq#HCi-H1Hcv4_2)d8)`DKoIZ~2LE3k-Q ztG5bentA+z{TJPPKS?ENs zHviD0vtPCjB7UNsdxWQM68pt1yiQVW7j3w@OEMR;c#qaIfV8Nvxd_tzWEv0QbN8x9 zcem4&Q8H~qZ_&RZknq6s>&ce9MyE@ZZta=a;{I5GJVN;Rb9SCwiMz68>R1cPco}SO zR&*H2;Qx^Ggmgez&{}{WpK5=96{T-F5cLP@>>B=M-w?&KP7WuLGezDnaro|#9Ko+?8NfUu;QHV z2axid%qdn=Nw>EjuvT}PDebwqlxpEC0rs?)>pxqYQvb|6evFROkF&$=Q+j!04ZfXOhcGe` zdAV=sNl4c9%nXeSzTk?@>{Bh)`<)%H~x`u{o>t@ zID_W~>T}d|h4NfM9Jedy45NF9WK_(;9fWlufPt5?Ko}ALo%->K#gq{9L?)yjdSMnY zcKT|q-fzSv*5vXPLXdgAFKoI;sq+hH2>R5P?fGDxjG8@XX;Z_V3)zX0=ocWJf^5lC|^3lK}+h`@G9(=zY`d!}(@iljvUBeJ}%))*+d4Mp} z_y4Xd`4(vzxKC)1z32DNDc*)WIu-cNe=e+=>nk~1{w)o008tnq=$y!O zCaM0bL*OYhioD@H!Nd8$D4r(zi|%Fi+R>-v7*ioRuhnjk_)B`2r8K%iyU!) zr&M|>WjLJSgQeD=_xb4+fn|HNg?*;m%AQkyD3W8Ttz##tjKa{l3UAIYUfegxWZ zS-Be$A}2*)pfzf;rJe zq?$+hI;d!AOLrc?01p%7DHX!fe5;GZtJMwAI|3NCU9(EZQ9iWEek2wCd54grU9ga_ z{Y@hI9$24wsq9d1uX@vZzOz6`;Pvu<05d?$zY>W5;jMSyee0s1&HANsFf|p-i~h=r zzjyq)_3Qr4uH96#XJ2`fz307q?1LK!S+98h71mY1Kd9?CiqUl}pG)!>q?yb4r6is4 z>&79Sp*$W(4-Vc7epKm3Qbc4s4 zMBpu4!M4#EnZKu2_F0PcipawC8mKRGxGP3GanNNJ8iYouo12Bs{on>wjaB9Fe>|+f zQAM|FYDrPY&yA}}N!9ioS5BQ$Tbf=hRI-}dMr)^41s?D9;AurY0q-hur6R*MwaNdv z+EP{DSJf61Z!dnE`vTCSO80^CKg|4ZHAW=vuT6*-pC!VW$zH}$lhm7S z<`N5sZbYRN+FZLIomg8t@yfNeSF+>gNSq!AK9$Kn7M#cEnb2`_y`g*-D62bucGz!&EczvTkEaE zd+>H|XAU#j3whA?h_!atOIjNs7Nr)S^aQkiH5B&hT#g?4&ySp-bL^!56g#_`1?U_* z*^#%&UIPJLN0+$PR?6)vbvdMzZ3OZU)}fAQJvlxs_tv1Ao5>+rUpbWL?*xQ*h@I_O%RZcxx_mdb=qTd{?_?bR3T=j?CV^zRPpSZ&lY&t+;# zRH(q%@Bb5z1lN4ta1gg;+ehXpy;tom=7EheX8&TQR?DDfO6ASWyp5z<|4-klk2U%HG+>HzFpf zp@BMMt%l#AOZ3-i)nofb&h~S5t>rrz&-J3LM<+~teNnarq#~Y9CZ@jy`= z3$f*a`l`KNM6PM5q9$v=#&iR4o+N@UhXhGgY%wL8w&@~Xw=IBjk`&5B=LH!_f<{x& zqd=1d09^C>A=jkKqx)O-1slb+%vz?lYTJLC_d19b$2U#eu4SAYZ(pE2e_q7s1Zdny zrYmud#HNxi@v1J9tia684dVWc;*$0Cid zt*x`j>gwulOhlmEXLh{Mgu%u}bZZN`+0iUYwmf1=T0|%WVVfZV9%dUK6;QJM5mTP( zj3W*vPT1B+gT+19#cEd0g2;+d01-8IY||c}uqVdh=)By`iHB6jbnTdkgQY?L%nL_m`x)JI^xlNs%cl}gB6iS0V8k5~0 zqh!(O_NI_*N64v_!6Frm*-{mRS2RsD#foAo6*y`i_Q`nyAKxUm-b(&MaxjyNA6`M* ze=E8sisjc4RVA-0i=y^0eFwhqD7-*@#FJxkndy~DeG=PWjv}befHl$YzhCzC`4s$r z@@2~R^gR1J|MEp)<2xyfP4^$`{JS~7_hs^2eEH0FWatvzpRr0Y{lJKxIBySr5@25f z^1Gl#!2?a;;)C-bxzH$JpCo=qY}y2^vmC>uJ&6lD1e;!M7f%7BnGd_u+=mra|Jl(zIh(A`*$-K%bOm>GII1fQba1v4GfI1aL`e^&LD^W-CbP+KM`LiG-n18%`Z}I{?Zcth4+i zs9n%xucN~fj}^KVphR~U5ajf}{tJwL?~*0KOU=}>Hc!Q}EMmGHHNu*K^?(=X-UQSP z1A!wDi-$8o;zcDCiGU0`MGlxm0!+fT9VB!&3Y?AwfdImQ6CR65;)x|F0w&l%Sd~mo zM1p`IO`Me+tRXsSFR3n%44zP?XG)?{m#`+F0MZe$j@Zw7Xs{KuJdY*HN&yA!$$TW~B>w`1CA?@T8uqbNk|os;d0(Py zi-GY5e8h(uMhfGnbySA_o^;s1>fEbd@!nUUjgQ`NC{KquOFa`GPmn@kT}NUBAQhmC7vn^)PJ(eW|m;Y0?wlVzYBm0 zMlEoi@MNPZO12_frmWgpm2Hxu$Ut2c`nsG#Q_h3~T^@beumHQN=GP_BnXqcv8Ra2O zMGrlMRPCYrM(Mq8`xiCgtkAfAmH=Eop=(Ml^0#pj@a{YBfSzv_(ac&<5OzkhgT zmrV;(6w)mbkJ(ZA!4C#?+XF#H*sd6fV-4HhK1SU7&l#>R{2Rzilj;w6I#x`9a)-j) z_@W3J%H|eo%9d_Bnh7IZBuLWZX`u+>SEwzHTNVslkQB6SH__#2lkRujrI3~W14)=M z8?p_H{NLcVd(8EYx@~+n|6m4F24IM}2l-WFZ&vAcmF!-l(!T2xo|_d#Ykc#r_ORb3 zKH1doW!tZ>!xlTY=npfjpf-Fu(1Y8pIljjF4%_0Q4M2#k2xvA&+v~zS5Oto28fBiq z7zOwT79s$T&B)TuUS^?IPn_$ zjgR;|3(?K;q}=}pP;){xRzutVx>{DRwe8dLxcoKSzD6BWzfLcXsn>wc^xZKvunMjsK09^*-N?(aAAu55Lmmz z_Wat3EusCW!?vpdW(!Rz&B(lSgTu=+bPM0#0Z9fj1FMKPcq~h@uZW;+8$6<-gxwPO z2MO9Z+Ehed<#BLh7wJ0c-WbqjWunsT|23i$E6}JI0@mJGrh7}vD(gDDjA_RK*+PFr z0XhR_G0ZmANPH0(Rv!8X>}ax_3mSp|U#cx^FEvTrNxH6&_ta zJM@VK9#I*ISCcLHsTu*`Yy0=kI>X;)qZXt3NE~s=&x*{laEqFu)@ZP~9YYx<>new6 z@U_A5GUWxu%|aZ4x6|JtyNt$Ay#3CL+#s@MJ~;a0CC2u{PqjQqDc?QrMWOPyiZLfy{DFP}ViU(6=GrdTa%Eh!S*-So=|xca7SqMvYX7fVaVxs<#@+kI$ZW5RVVY65X(l_rP#IdO57*SA zs|Lwpd7^mRBF%a6w&H}mc-1OsmshQu-}|wTz2*{L&*W> zZeXfWrEK&5j5?`DQ_p48DJ_LI?!U3u%kMD_s*3oa-hr-hV61!Z;luZK#||KN!KZr4 z+`;{aZtVYQcS>LAI?mFRKG#GebfUtlyk`seAjyHAYRT0^c%S2v>3Upb@pRm|+GK@-4EZ3@$U zKBJKhebBSX51mmv>LmTTlnVBJaqKlw;xxWR9Ks>OuX0ut8m|Opt-S6$p`6s?? z9O9i4+T5fY(e-=D%14p;>~5k9OqMwy$I6Mls|??6vX^ze)2^3EogvK{@#)@;?Tc$` zYZommosF+5^;~PUvu}UDjqdO~UaMyd?&EH)r@W(B_*tb_b0069Ti)F# zb@rQstpvt~%{-zD6`Jj#qc=j2oB^fx3o{eK-}V|OA31aTCY+vm1jS!?Z=?6O!ouG~d{L*y+mDzz^C(0rcb(0WNhlnh`&XDk>`!f|s?K9nao7sLV z%;Fm`RiZi6AG&9yl@;mi6`<=~u@fEIaK3lx4Hg~FRngxrQaP7dxAroN4v#6LY&N7z zep{?FTo9f7Fjpm+yczrqE8RqUpC$eLyG6-bI(gy)ObA~+68^Lb`nVz;y6VIg5+E(4 zUU~g>XjwA*pFus%ka9OLx&0Bg&)ph}zmrNhPr-!(Ry@orVri5p1-ig+^`@Y}0wXa=E@6}aZRcbA*a!ZzFEv7A5E!mds_JV9|FwJI+19lVJ5Nt5Q zfFZy@Cqn|kBna||31R6Z^AZvWn9U){@69O75QdP9^D-nPVaoG;=iaKWZi$3n-jlj+ z-MY)U_iW$!*8k@i8^~R37{8LgZ8ws!-M8iOgoHdK(ZpE{(4Ix)BSyetw)G*lX_!^W zK+;uf*Jx&yJtS!6nXy5Bf@fs;m!zc3eifE%QJ>RX?hZ#|zR~|B3UByZa#H??L?rg> zykao7ah^U0i#YSmD+kbrlxF^QgpIX_YF+V(P~kZotvGD5&hzVF!f>qxy)N+uK`RjXWAsig!Zq1Z~?2;#e!2PdlI6L5xC6UkBtiAZw{JQTY( z@}(}(yqx7Ks_7{^Q={tEC@mG$atcAbTpH$20EVhKfE}Y~Ukc zL7$+OZ#L4=piF%%_Gs)avA4yZihUS(q;i%ZSOiQV>JcStWiHQs+~vMXaMKCgAwVE49-&dGZKi| z)aO@_ITmUR>x9l8fI|gKGV_VRP@(liLo{Y41p%9!kyOu0!l?9;I-KKqRgz@Omqdm! ztZbrOFN~j-GQ5DIDaf>D=JYr+r-ubezzi~sCQ6E?q89r+qR+vHhP^>^Xeu_x?MIG$>xTQ5SXoNQ>Tg0bDzN-BCm4R)dVgfQ zJtpLD=Yj2r_!=6yE=1w@k*fuDA*l^7p!|OrXS8L^0e0TWF(fOc9K#Y-hVz|#eQs)Q zAIh8@E6uDNSzJEQaq@!3@=TBzwf%sU;8?7}K4ALEqG!mdlHw$59&xD?e0AyM{|?Qhvj-9B|LmnDd+H( zS?e5FUOcigBeN`Fcyr&}RI{FU;vA!jmf<8hh9rU2-+P4CKrUE|nUw?c$4|EpxSRs7 zDhN($YX5Atd1ca3N-5d!ib)w3{=1w+I(_fKo3`2E{n!e|3cFrVf_1cnR;d!rJ&M?V zm5>EO0gL)8hTvKO+AgWidXYs$&~7I*TXnj7fa*3otx)LqFiF7tR^(^1)NmY4G z)P%co99>N`*RdofZkn*V z>ZWPrh_X8a)4i6l45l!tw)RzWw}K7RAs(Z$!069`ARXuJKUtcV!(h`0&$oIts1h!KiN%zYP*Mi3dlo~T~ZI( zJcGOSvk%9|k^`>*BjJy@4EP#w9#V$-3?#?mo6>chLDfeO-_)F$nu3c=-SQL0s9%Ah zS=b0r#MIPG^QMTeN0~AQ{TU80>c{AZ-b!=G@*q0gB5ALWWzrSmn?$h`bWVmZVnNBx zYp!X!RgsA7@2eKV;alHe;aA1Gye+nCx9oCz%O1Ph+vu&MF&53RtE(Fu7cWM(<=6(i zmkFaSNo_|%{k2W?aMahlH1I}w2u(x9bUnS8%jGT0S_{T8E5igVshH@q*)-5ag$it2 z;~4phE=D(XF{vEI2=%G|RcM&6qWU*VkiB(M5OLJvDRSodpF90JHs{83xp;$f+;pl^ zaCE~Vc@GbHIp%ez3mgAac;tG`E1*~B^qbR;TTNM(?mEVsoD3c-c+Q!J1VY`7BKjVq z?{;JCme}pFJJFjHK}kY`EOjUg;{HGZxg(M~%8rB)Bxv!$HK5$yI*xXtZkUrHx>{(? zmoVve96r|b2Fr-bZc$Yj$;eJ*6S5*E^D;>FEM~peI1z+Xi6tidFc_9sYG}sAQ_l}_ zCjQk~OC>_lPSp*!l+XksS&pC0`Xp_Ns%|KjpEMH^t2ih**udVxUQYWjgeB-Z14m_s zeX9s7KtXonM4;E*3WcJ+%x%NdnU5jcu!4&bCyjQ~P(uwvBUHl%VxGi0h;vSU&12ZC z-^-}VAL_M?@imK2HPh9Ex1eXqqNkB#z1aOUE|!`oI!zSUeO#H*Ujj{Th?OQph{+(WhA@saH72a-u=v6Ci-eEX z&T1KX8FbD;mk2DT4da_$g8dxcB$Pvz2QDM0Ww-LuiYw2a{{#Dq+P+DJ)eURRVj01Q zMbc#A2u8_jh6)P@3z94YTuk6n1HFLoy+`nT94_RNJ|2L34V_gc_tmbjNyyBD*yaX` z>Y>=nYQVx98o46jRw`~{|BFgf%%8I@Ni;2|;IPEACTH2e@Gy+CD6xXhD1oQKy_hH) zSkjlnseqlGv^>JX4VEcNE%wiusS*P#I$Q$H3|9vVqYJE5EO5erzWp}&1=!Om9*$T8 z4nx3rzeN&|KqPPYmmB}}-7-<8Z=6$-e zI$Mwgp8eSolL%SE>l=*?zBK7L=#Ak7=)*eZe#0FLcQ$y;WWk8M;Qelx66?v(iilVz z784_DF*jC;y*u`?*l)+a8T&5K{Vd}lT@CGOouJvpc*%IH6Znxk);^}<(P%FqEmg4u z;|Lc3in58WyKtyRP5%*w1^h2nOTqwC2{Rv&46H1{BD2k~kz;~xwKD`;z*|CSj0&cY zME5=Ptr@_PQM)*mRddX4ScnnUa}ftP_52AFaMA3r?P};+l_$+k6UaZX@&6mWRm4e! z6g-{n18=B%1)@xf$R+)67(n=2ObNEmG0UB68BVu_q=?tT*b~?QNIb|VjKBvVfU*e* z1S*+G3UAunRHHFBJH^>1uSf(Af=J6N0WUDcXM5_qfvv#Ho_1>J3FUdy8y zU|Gb}8BP1zy(Hsnt%c65wGeWO+UI~M4itNS2~z>&aVf;ngll3sya=U>8e+x38GINy zZ1sP1L*te0t;DfpD~asc?)2Y{s!9vI;WD(kxNu@PL)+`6J z4JZO*=&9Lojhc?fEymDnfrTMyNWyqYGbD}?ZNav3rWH3wb&-fe6>C>m3|DdapevHi zwY6pIi_85loZMW$@O-}q!rraqz^~@tcVR$ZUx51_iJg!AXIw=?pGGh48H^}|OH{E_ zn_(!U72+VZfXPQzazAqafe0i4(=#Cg15g7b&Os+!tEl%~m!eh8uvBBWpUhBaK!bz3 zs8y8q{49y{m?ja{X&?cepcAL%#KQy_NEXOH8CqP+$uRF_2gDl%cm%Hhycq{B4=AOp z=k0LQol|sPefS5jtF+VKh+`Ei;p}WS1w$Gkbi^hMDTC zp5ZGF4jNZ59FVVoTY|T96-DASlx zk~CJ8G(j)HvNi!rx|+ShW2CqnM;Ly>CJm93l9&usd<5yw9-eikGkH}MZ7U-R498V7 zxiZV-j41EHpOXja__!tZMi2qIz*C$9ISJu9=Alf39aynpDZs8rMkNdkuFb=02CE+e z(RZqyYRGltrZzvYk_4U*M%YuGOq^;gI?%1y?V{jOB`3|{;e#a6qQe6D85;D9id!5& z5m#H?5(D4~r5OfsD|5IoggR?f4pIC*%seX!dBnfOvV0g*)KVX(?+-P=$H04cn_>tY zFpExR@zA`F`Z#nVt#)CQvdFP@VDv^S9}GSU{=xdq4pNnP7syZ(n#RSI3WX-vH&`TX zP%x~sIMSg-KF={c^Q!@Lp`ehwVry|#W6M*5qCs~jEv6``=<=iE80~!4HZ)a7<*QdbVk5TDI~7Jq9Zcsfy!FEBys4GDFOYL1(7h;m1Df?zmmKllV@jQ!xFAA?hpGZ88dnh@pFeP#$PDQ5wr@G9FFehyZSX2!r z9N}f?Sq0lf)f^DWI1wEV2@mxUTvjQFX@yCOPDLupsZu@5X5+fqP=LLH`onCCtA`!i zG&xr@SlQq#24BS&FtI5V$>@Zvq$LsB2p$96LCMLBLT&<=XqJ<+NkidO!%=O6g~gXO zc~P=NSOz#5CM%EFq6W03WLg5pLR&M6P6Tuc^DxI8B}5qK14}K#3DA7d1!!Roh{%C3 z%38Wf{2VW+IuM`nyv~`n@P#xSC_Js1I3M9;xu zGhn+^KU*u-isUIJ?e;(Crj?>%k+`M&(nHsty|zI1#ruCl&MI#IzoFKG6kVmJ>-{f0 zG&A#y!609iPgcl1=&e-oiwM~P{QOG)$FI#j{dE5RZ%^D0-?{s@V}-C0iVJGiTNEl_ z1o&|e!TPwEBdf96Yb2~h!s~qq78TV?b zkA&@l31UxC%!$ySlZG3SiPye1H~1snksl*{g*kfz8XXc8F-J+0*}@y_mg7X7UR3() z%HnkC#Ol4rkKcRz#fwe#GwQv@?rL?n;gRZbJo>(JCKDUvw2kC$EVqOh4&7nd)oo=5 z6wSMZY3yqh&O1_1cPZlQ*NW3}|4-%VVs`P!%KrT;`>$=*<#)+nPnAsF_w(5U-mmJ- z!ouYK{gWmTT-8X{<-3$U>$(<5mUrwkdopuyl(%Fq6OZ(# z7ikP^GK!4}J34|fh>PU_rw@6!*4Z=O|8eus;W@QX9C7iRiI%kZ`c!wUrQ(MbV`j1t`(nG5=A08nSt4AgW zzf<<7SJzi}#@gi(!(!;U-SW%mgIY%aQ=ow`e1L2KUl+~4FH(PfVit?y>Vb&^tKwki zA76j^^y^O(i+b*Bqi5*O-=4EUadqg*F&9mJa*^op+`VR>1UHew{9q!G1;Ah|d zc2d9P1Nq$QcP97ko4jTQNYM9BT^G^vr%5mN?P0#j-qRBkqy34VCumEkg+fGR4ibaX zK#k(uTYQ;VZ|^yIa`&E-CGq_ycJDs1@b-I)_u4|~-iiSd7I++#*1E3AAjac z?>sZV@b%QGLA$(*(#Tj>?AG=pE@AM8Zz$gTj)jGH+*>?)^odpNO>fdxpNRBfp#M%H$m%51I;H!oK=M-k0o{5L2zF0~oOUaLvGv4^z z!MSlSQ@;AHtH1g22Nq`i>h!IT-8xPN+uws{FNzhHtxmY9{>2E1Hm=HucQ-c*^K8Em1moFXT4L&Bw9oi<9Q)%<2#cG zlL|9~-yZrhN2qCGK5+C5v}^XzeVLCE3bm+rn=h0Fs&4B>I48akmSB?h(DwmdzS<-1 z%j7&Tt%9Z)aZeVAC@*Jb_xq}%@pAtU6lCOiSusUc9nZukr#;NK!U~EbIWJ!%Pw;|e zXiuLVR|Jk;r`xwq$E9Gp#LI>%{V=XNiYf^5!wg2FGVi; zmKlf7)b9Ft<^YrR+zj_$R1-7LIM%#U*Dt4MdsC=bSo|pkC3f;M- zIenZBW;Crz7N(m{O;IOW?D78p7|-u|Vpn!jPm5COjgv03^oL8to$}^QYvD^*AKG{1 z+yNq$biH`s$i72Yr)CtT>5v0gyK=22fnX^J@!y}{#UDAscRI;gRjphi8^C%(^Otl9 z7fJ?C4WQ|9RfF#ZEGLA?EJA5qSZcy&YOUJL}-Jc))Js_==f1binYY9 zcczJd?r?F}+%=ZC_fKH&J8@T^YL}c4zF>h?_VtSkSO84DO}|DZ~f^o-SUaBz>05p_W9PqZ$_KFdsxd z^a7Fs*Fzo94A)&`5e7VR=Ae1RFoc)XFc*%&e9a_o$|WYJ8I{v8`+R{gbG#w<29<}Fe5B(TJable%YrX~^v^CyhA_)@b>avT<8Zvhm<}U~4q+IHmw*&V zON6yc4k}pYOMKcX`-HQ+vKKVRI@w(x?WG)75V#xjXfB9bL{ajgF?4D-z@{B@S$l&4ArRHF1K@}6%ShTl&GRuJeqkWRB^Zb z(0*GUfG+#3b`vdFZRoZ#^cV16h-gxPPc8BiGno=Xp5rRy<02@6Sj)uvvEMEhZ>^@h z%%5@u{g{BL3KZQJfh{>!lQ`C4FnpE;YRmGhfM;pstH*JIBnpfJq*?l0s(Nd&_=-&b z)jbmHeS)Jgyb>DxgfSv9y!3r+ju&Eu>Z_}%>T<^0!z)l2!=aWN$Ogm7*y0R>s3R=T zqm_$C1Uf>>s4fxUArwRf&kO7_6!Pk-m$A@m%7+UCEQo`GCK)b8;HCc`%wo+A@fKN- z#1ElW99zEbv0N>Q-P6XC>3kP^$xT3HzO9b{{nS@t6O(5-p*?m^6wi&d z1&(8P)xS~S#d2rct~2S{h6==06jTIFt$6Odr3PpUH`Vkf2N$T^;DV|c zK%qisY|2;)_m&K<4$=*$YkrW)CgQ5j@xC`fOed#08Qsc~f9HH`hfmWq&1lvPogPI$ z%KW{b?I0GcV6sAKmV*84XF9DwjMN>oq#fl4&okuLdCB+$15-?AKh7|U#4*e>j9>`N zGr0R{Rj_At3A+0ehQz~&c$y?c{ux~+X9*Gc-!vrVdP3${0gZFFqQPmE7jZzI;Q5P^ z@teHJoF%gU3=a~<_1j{wry`Wdxj|5RMCv6@Le(}2=Tw&0m~Yf3XU7kVikZk1G7~4cbR#pSB@$XXtGS2w5>~tO zD#wl|(-|r^gnk(oYJ$4ePFKjWKC%ZhOn~lcp|wIF(&|;BQ79(JEd{kSSvuh<%DAs6 z_4VT)Y}Xej#`o8cpEU9ZiC0&Yu_?N})Mq@3dJ)igOM3{1=D-ghecRZAUxpX0&R5^9 zzVEGf-~HCR$;NC^Q`mZHs#r-&+(|o;uuqqMLsyH}W~eYHzJ+PG*-f+jIM}wiE20Aig(cso_f#FeBwa4p)Q~1n4d3|awqewFfOY~QiO4- z1Kqn(&faBn=p;S!hEnOEH7S@WB#AaGZMoAMCliYQq4JB%c_tT6a7jfJQ8f=NucWcs zF4udhBPNB(+ll;Pxag3vSF}wrC5RrUrQO2N{{YwVF&O3ZG?#s(mV!V3GEN6H2WV%f z!@)41pcgs|C^sz?20jOIBWUy#_p77s24SG&MZDz5s|Fqhk*h(@Eu`9ojZq(idk68# zTRuumED_7Wcs+!k)ihac=+GRJ6>8G$vS>*15&NA*2Q>7U^aYW6NmBPCOx#&3%_C~) ze5bok_}2nOY>Q&5+&&5{{@&N`-3Qz&j3Y(t%^wC5!xVvUunVHXw2EjOJ<=u{zd$bR zE^;iu)=7VptURbA%9&T4x@vHyUkvNzq!^U47b8qUk2d&=j-89^7G{VEeXycQa zu=Tg*uo)}H8e7zyM&(i>9YUd%M4%lZf?PmlW^{|&!!!|uZu@C+Vy4%d`77KMH7Rfy z*hty~AT(=|?|XM@QUZ@9B#mq=&HmTfCA#^ubCT{cFD960{(RO>Che@GIqw`fO6Ac4 zd4cLCG8oI(jq)Q_2a9YxpyP!uy?i`Efuq3+0wz%l&4yvdTRK-etBZ#Z?V4QZofQdZ zm2`8!h_n#u%^^#CM`L35dCW)1DmC-73f$)r--FM5D}lsidy^Ac+r&NF7}W_BB0taAT!gfP#uDuJ z^-Vb0zqr0WiUWvw$IG$ZkuNk3qHPm;=K$ij&Z3Jjq7EXg%@9js;6qesjs!cC{Y5yI zSM}QJYOj!=4iB#5aQf6>T;Wdtm&3ti(62vrs(7m6d?2oB2w=$MGxPs29A^=2MJ&Vu z$jC7l8KN+qVI@lVHA&ho;=WN#-e!?v@*)h8*Jz9-4;<9Ue6rlo4=gvz$%6;A{#Onj zNRBng!Gj0kaCofI|NH?sI5!8^AJ8trV8rY^=t>L2y1TWzzPPlpnk!ulzsUO1;tMd; zO1a)(XMoXxv27gi@ED6(h}AJGstAiTjILU@h2UZ>VMn5)ff|Zf%e~6t%T6v;nMFNj@&2Z?dI zBl_l@S(d2U$RxFLB`CuicHU1PQyzJ+KDp$YrAA|wOrKnB)TayNe)^~zM;_j3a!2l7 ze)7rXGq>qG*8CPy>fxGCeKA744%Gv}PxR*~g-}Six>JQm$P>(vP*pTYhEmoAitjml!yL;ATWS!?E-fj3LLEt5>VexV^VZ!n)3yLi9tRzHh{u?!x z6?owLb=h<>CUA}H30db%&oeo+^d>by6tCsXjAO!KblPB9O=Owapr5gQv45vx-Pozv zO;mGjGNHrDFg!WWpx4NLHXa-H^?V6wPZwohAG6pEp?+)oNvj)yL?P5ow=?J?a!S~p zP8IU5WOE#!bAn6t{ z9N}FMlVBY(C3-bEX0DXS3VKc-Q&leolNsvCTVh4o6Kp2?ucJ|sZ!5_6XZIvO#RY_a z8C;U`#&eDhA^;;3xguFup1w*irQ_}|$RZv8Ns4QJ4Ymp+x=q?DxLnYPGHQAVI#fC6 z+a8ska9Kb*PgiV)SHjwX=FTv~G2Vx^Lo&nbKqu!kqOoZyf0$)orP`(+|65*+|E@0y zscS$MTyzy~H>;6T3L`P{QAz4?A`t{uT2#aiQAs9oXq+X+g4nX(Qf433MQGvIo5@}v zOJ4tvtNH5*qk1p1TcW5=$-1CR+?XRv`w97LmC7|?9pgY__u)#24jvQ-eXDNnBGVOz z^^2-UgHNi_l8L`ba!%uXn=rg%3~TZ|V*6YR2L2ZXnK>lMMo(j9LL}jYq&TZOLpB!d zm!05cP2YO+{{PFLc$qE12p9U_VVLU_Rb!?(;8-Qy)&^@xjOOF)AP4@_X5;)flW~5r za@ho&#nQsv#ep(?w0T4SHx;tAaF3p(s1ySDqe&{1Gj&V2WB~Sx4ng(4{ zeEkqdHyGfn(ySVoOhfG8;w)lqXqGS9`fD2>^2Jkz<&uJ%xlZ)qt-dPpRUpu;P!(8i zxv*^LSP#RzwosgzUE6>gQft0$WW2SMU*u}MB=I#KJy(9CFnivy48wHK!)wQe^teZL z$^lU1ZtM-QZ^0<<`djLipgp1mi(+!o#y}UAVSrxfa5X%S7R^#9uC=IpXgkWuH1tY_ zx<>3`nHGTA5vbeQR*tw@d6sF1*R+OdhzdY&X1?am4;#1>108b zc}~;(AP}rxBIEg*O0ML6Q{*hgWi8tRDx*r00PQQ4p5YbA^cDGL zGi|B5Dx<6LJ9t(Qua;Ff%oFh*)aD5XZ7mnXb&F@1a#;{9tC{msaQ=Ql@N~t}tTfDU z1MV&sp}uC^OBD=>xtk!~5wEDKe%ejyaaC4iRP71uTM!aU&l!@BiJb_O&!ZQ!rkhqm z)nrZ7Kz;@R`aJ|V1>F`LUrnewx@8wZ-s1#K9qP1joLw1PM)ab}{|_UjHZm}`k3+KO zKi-GWL<8h)BSYdH|6iN*MO)qXf$hB&(&rFIUZm1TYyikPisUrpXQn91Km)M{H*piv zt>-Daz)LAxdGy&3k&qjft5Sa@;A9DfdqI8yrr2od1K5ZGJKftvpftJ}KFOm`zBY8K zC{W&YS0Q}jGJX8s@VQ(1%L$4bgc5qx(_W4Rfuz_*+`qwW#dL;y*tpo@qx9yO!?lcY zvcPd{#^dAVi69`VGoI03i0L;Puk9*AW+X;DsVXp1JD%DDxglRG49-CNY3oo*eq{zD|4x#&kEX*CG@6n z17Pj_TD!&vXis5l-QeQIvyW^P3gn!^PL9v0>dg2gE5DhnzkKhhbH8VO*VLg9(&VCJ8v!9KGfj>h&`ysYf;*>i@ViCtNuev#~vCPNbG!i=sKZEguD5dR&Cha(($r%geB> zFE8JZn`ICmm!F4k_zC~M6z;&^cKfAkQ|o15Z-!<|a!>!q_vc~nwS?Qz{>n&=y5+Dk z&#rDpb$M!aU>jX0p%XyNE{X(ytzS}3ERsFNpiMTS+ev&-;vl~T+}p!DUAwjpyDvaN zJIdiA30CaZNR{6H{OYPj3shEDca~!ZB9^oMliw$(iP8JO?a>Q8j|FY3SGyamh~Dlfp%YdNLS|UoKpE+rj3cR(>W| z&>S7U;0Njb&D_C*bN^UwHp~AQ&*y?Ke;NHc=`KAuqQ3~^fNSldk2zI=M6s=I@#&|@ z`qTHk5WDB-=4Ai-Pk(H3@?#Iz>x7-y%Ei1n#7UcoH4%{~HqaF8&=$-h4p6yG;XtT$ zx8-v?E+GpU&&#;xv2OR+t^=KFwNo>5leNM=S3V3&t6JLA|Knr3b{*?3b!xRvmF#oz z`giZb>+h`Mu@6p97uHs)dPcrdw)Pe(Bd1Wm_rmwc7s-2LC1}|_Sleodk`%hFQfEY5 zS4|RSf)L8C-woOTrN{CL~4YG=!jOR~V}x7n$7J7wRdgPbKkJ~=rtLHz5+$FJ)@ zFZyFC-%k}RD?RXmDp1`LqNVwEO++65M^@te`GiH*6ITDDy&gGZB}VA174u?=SSHF2 z2E9RrHHr^HgHSNUJr7h3UD)EGf{*&%&GYbG#2k;(@~(!}v*M|v6Hn)=x&FUYbJg{` zj`h~FWwP4qZ}v!hSAADnajv?`QM9Ra{dao34qRA;zxc8FBb7VvwD*+f^Ai&j6I(LD zDwQE;X|{tH4BbVhnZqz)kbwPxHn=?8n_=TS(44yPa_KfKx$QJB=&UCDvi>n0wi>Go z{1R0meuHjd@~?g+UB=`R<@8qs6}ZeA4*Pf4JbRe1z@@g;ZP{gc-YgnX@uh#MC~ zYsapmN3(;!h@Abx$f03;J^HvMqbzMP5)5lr9PUxcp4(B)TCr9pC#T_UW$lF+{hAgM z-%s@a9`z*d|EAmTlZnFj$9Pm@~j>Hj4?HR6wMUg|+gPEp^{&;@pzGwcXmVzEC+(JtDT+}(dJ zbd-(m!{4X2l`^WI%ELmtV@T>Xua;<%>ClA+zwaYZ^Oakx!ATflc$();rq3Qj*DUlP}uDJOz+pT z&)!556FA~l>eWI#apkSIK6dN(dY^*h$_kE6t02IUTess9BF1;+k~iH$V^)I+5{^9A zrePHJ=$oJB%Tr~(?P!{#JzT$7r;fe9N9(ZLPWkDy59^HX^gm2`hY$BRx6h%}$Q;6v zJxM~Ch7fKsno2VW$e_-ZGSecPtX5Ldbo!OtRIc18r>o7%HXroF<$ch@Cg16T{_Ahc zy?iRS-39&k;MjC-Tbb3%mKlVv+#Y@BOP;_b%jIOQH&flM7zk^z{aN2EH_OUQZ@LUJ z!O-tDeCFkzcuDEoOB>0r8}{ckdcV0*e!)TV*wE`w*a3gHlaOw{=oR~?s=6!5j+aK`4+|$_8>k3jNLH^xf&nAN~-g1383XOWS-R5FKSO z<0c6O&nge77RK~YpZUioJ~r_folbZ6pCTJDxxQRk=2Xm@NecUaS z$^2pVtqyQ3wM}3GXdunct*w#s>p!9~HOs&ttc7y*G!r8yVNb^F8Q2J|0EHPEp!CRF z^KX59zW<{Ka%X>3cpy*aAJ0FY@Bj1938$}e|;doO=dLc$o7Z99B>1jn`AQ#5AeS774PEHPe1*SU&cCrIjOz)#p?RnsZ*mg znqsx?ClOYwyG62a9KaGlEqbl@biewwUAcSi*%;8ONpzV9%KfTc6L_2qiTJ5gWa88* zTnH{RwklLga#2t!SE#(i(!oV=Na2Y3Zus4T4@qqu8;Mc!>Do?_t{4y!XV@sg3fqZv z#wHmi8Ot+WGSgV{_sq=aa`Q8L{H4Z1rINTMQ*V?eGKoZHqSUBoZsBB^tS`-F+Xtr_ z>2zc2U^_dvG&R+K=1i$MQEn8o*tv3kaw;1u+tw$|{58o;? zdJ4s22*>^Q+*C1wpg`piz|4-of!Lprb&4eF_4-DgZoY(H_2=mp9mOW$AHnSlvB}Am ziHTE_lTQzJqA@gx2}%$B0|qfcdk7{`D#KiC6`P~cCXY>Ss{O|?OE4LU6KeeT&#M17 zwY5ZfSR>mvD$#)VDh4qBF0A&SC!77=GAW>ZU1+?n+1w$M*JE$kTEW~!W}YhOsPS=z zp=ulWHD3#n!8+X#fqRCcKfvwvnF6zog+L^xWW`?$cke4 z3D)8mgLp(FK9N%lQR18-FbdD0@1#&L$F(uOXvlG1Cz7U1ooLnV|1$@qo-;(oWn@!R zIL+X6A;sufOLQ6skIYX_mS>rSFIN@0z>66Xo*xL3th0*7vxWG20LR9{@zmq^=Wr^d!o^=&+TR2Qg{To{b zdL5PLL^EmdJ;{>U(gLA2G(kGcjX-bx!m*lCE9naX)z-e!c@0mWF zC?&{YUR)S^rLIVlqQ7!%LF5lRx~X10`^pL5pLpf$)vBrYKY;#X(L219%4!aBDsh~) z9!o%EqfhMCy1ZY*=XSz(`TbJj#4nSYmKf_lH*W1ukjk@xYvT)8N!upJ`hNna{P9;6 zbG^iSZvL9VnYu%t9`Svv1GzAKQg@_g(G&dNhDY2SR%cl79b2y+7B{;selZ>LK072} z7nvVm5XWY z9TlpRF8ch)F;qJ4ypC9_%OR|`)8ANL1%ei-H#SDjgn2B7xiyym&7YJGhCG2x?Mx{9 zMPX9jFks3v=r}62=Lb$>)mn$lCCA2+Kz}}mGzj(&-Ec?$BAIL6v~D=!cR673waQ5BHH}Lywu@vlVfUXzcWiR6o#>xO7s2cC z=T~v_&F@5VPJ#M#x{+pbL@IIZvi(mZ*OQG)%NvOYHqh1-uKFgK;kMkyZ+_(F<$7K8 zyA$P~YZQx(BH1{5#r%`AGh*`a!Ik0_uPe?Ji!+hW{qxWk=V_!hFkXI5glQtS2h$`V z>l=;b<;KPah^-rIjaTOLmX*)HvQfY56*xm)ao31%whnxVAFX3$m~T|%!1d9E9|RNO zz7Sikrk>xt_(BX*<34`s)Z?k@3$gWevKr<_Ww!AkmvA4We8x7eBDRAE4QcC7@V)z` zm3{kG_Bo?v)%W4CU)ok8p)uU6WQ}USnw^pK7c}{Fs9w4-aln|dZrXeGop)Y+cz*tU zhpL_K@#A}Es=E#Y+l2?}$L~G9vu^4(8=F6{tvxris}19(KRDFCp|^WJ!e8iMRKj8i z)b#2blgXc7DL$2Z>Z#m+ZfJHYf4rgOlf92#pS&{pu6X_(xhJ2@eW;OGOy<R?)r&cDa;ePXF&e#Im|f#cgKXS2lp3H)9--hKe%?On04p{*K;zc6gr z(C0der}e~uz*-Be4f9?%nW|P&N%uVrth!aY!~FbRaB3_iNM~#~XrEU2R5jdDlrvj- zzQb5(9N}V6qXE%@7|fFWWR~^GyY4N%Aq^;FvP#A6&!2sBDa9#1TWKJGzun z%Hs?qwq5ae@d9AWRwnOBaL1dPmZqCHs*7ugDXInvyG*jlUd`c zIkeG+yX5xO1C3fPm2V#2cjDUqFT-Zv>Vam39@)65=j0fxOu?c{H`@CNvM;)&aDf8zE}uUc#5 z-SkMmf5%(zxZ|xCUcQhz@X!cP7e(!F894{TqcdXs85s{7lyUs%3$YhJ*D7rd1%~pN z>)89uP%as0zjsO{7?xk&E}M+VB)2hhB(fy7*56p`WgF@zwYiYi$2RFb z(H-er6fU(U&{Hhq|c63hAO;_CY9!4H$3 zwY*j(&Xx6OtYW?(CMFMTQDE?IjXeqvG%RH6MRmh~BlId%*-KFc0EE(r0#@3sQEx%NzaYJZ*JVcgckDYF1$540HTA!^C0t*fG2v@5Y;t{i5!@ z5c9IKsFNq(mFa(-#7t{_-3rGut%n2k*h1nOz9Z`Ap*~b&ir&ze-UU;7Hc^j^@X+(* zA1-;Z!dVR@LcpKd(cuU&|Jp0${lqbig9jOg@5UvDxzh9`(_lqnpZEdKh*qf;Cm56}v8

  • F(S(gioucm()OHA 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 E0LEz`i~s-t literal 0 HcmV?d00001 diff --git a/ecomp-portal-BE-os/src/main/webapp/index.jsp b/ecomp-portal-BE-os/src/main/webapp/index.jsp index 2811bb4b..2ccd977a 100644 --- a/ecomp-portal-BE-os/src/main/webapp/index.jsp +++ b/ecomp-portal-BE-os/src/main/webapp/index.jsp @@ -1,41 +1,41 @@ -<%-- - ================================================================================ - ECOMP Portal - ================================================================================ - Copyright (C) 2017 AT&T Intellectual Property - ================================================================================ - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. - ================================================================================ - --%> -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> - -<%-- Redirected because we can't set the welcome page to a virtual URL. --%> -<%-- - --%> - - - ecompportal-BE index.jsp - - -

    ECOMP Portal Core

    - This is the ecompportal-BE application, page index.jsp. - - <% - - response.sendRedirect("welcome.htm"); - - %> - - - - +<%-- + ================================================================================ + ECOMP Portal + ================================================================================ + Copyright (C) 2017 AT&T Intellectual Property + ================================================================================ + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + ================================================================================ + --%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> + +<%-- Redirected because we can't set the welcome page to a virtual URL. --%> +<%-- + --%> + + + ecompportal-BE index.jsp + + +

    ECOMP Portal Core

    + This is the ecompportal-BE application, page index.jsp. + + <% + + response.sendRedirect("welcome.htm"); + + %> + + + + diff --git a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestClient.java b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestClient.java index 49686c80..c3ca2430 100644 --- a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestClient.java +++ b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestClient.java @@ -1,280 +1,280 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.net.URI; -import java.security.cert.CertificateException; -import java.security.cert.X509Certificate; - -import javax.net.ssl.SSLContext; -import javax.servlet.http.HttpServletResponse; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.apache.http.Consts; -import org.apache.http.HttpEntity; -import org.apache.http.client.methods.CloseableHttpResponse; -import org.apache.http.client.methods.HttpGet; -import org.apache.http.client.methods.HttpPost; -import org.apache.http.client.utils.URIBuilder; -import org.apache.http.conn.ssl.NoopHostnameVerifier; -import org.apache.http.conn.ssl.SSLConnectionSocketFactory; -import org.apache.http.entity.ContentType; -import org.apache.http.entity.StringEntity; -import org.apache.http.impl.client.CloseableHttpClient; -import org.apache.http.impl.client.HttpClientBuilder; -import org.apache.http.impl.client.HttpClients; -import org.apache.http.ssl.SSLContexts; -import org.apache.http.ssl.TrustStrategy; -import org.apache.http.util.EntityUtils; -/** - * Provides reusable features for test cases to get or post from an REST - * endpoint, allowing use of HTTPS connections to servers that use self-signed - * certificates. - */ -public class SharedContextRestClient { - - private static final Log logger = LogFactory.getLog(SharedContextRestClient.class); - - /** - * Convenience method that builds and sends a GET request using properties - * to build the URI and populate header with credentials. - * - * @param task - * last component(s) of REST endpoint name; e.g., "get". - * @param contextId - * @param contextKey - * @return JSON string fetched - * @throws Exception - * if the HTTP response code is anything other than OK. - */ - public static String getJson(final SharedContextTestProperties properties, final String task, - final String contextId, final String contextKey) throws Exception { - String requestPath = '/' + properties.getProperty(SharedContextTestProperties.APPNAME) // - + '/' + properties.getProperty(SharedContextTestProperties.RESTPATH) // - + '/' + task; - return getJson(properties.getProperty(SharedContextTestProperties.HOSTNAME), // - properties.getProperty(SharedContextTestProperties.PORT, -1), // - properties.getProperty(SharedContextTestProperties.SECURE, true), // - properties.getProperty(SharedContextTestProperties.UEBKEY), // - properties.getProperty(SharedContextTestProperties.USERNAME), // - properties.getProperty(SharedContextTestProperties.PASSWORD), requestPath, // - contextId, // - contextKey); - } - - /** - * Constructs and sends a GET request using the specified values. - * - * @param hostname - * @param port - * ignored if negative - * @param secure - * If true, uses https; else http. - * @param headerUebkey - * @param headerUsername - * @param headerPassword - * @param requestPath - * full path of the REST endpoint - * @param contextId - * @param contextKey - * Ignored if null - * @return JSON result - */ - public static String getJson(final String hostname, final int port, boolean secure, final String headerUebkey, - final String headerUsername, final String headerPassword, final String requestPath, final String contextId, - final String contextKey) throws Exception { - - URIBuilder uriBuilder = new URIBuilder(); - if (secure) - uriBuilder.setScheme("https"); - else - uriBuilder.setScheme("http"); - uriBuilder.setHost(hostname); - if (port > 0) - uriBuilder.setPort(port); - uriBuilder.setPath(requestPath); - uriBuilder.addParameter("context_id", contextId); - if (contextKey != null) - uriBuilder.addParameter("ckey", contextKey); - final URI uri = uriBuilder.build(); - - CloseableHttpClient httpClient; - if (secure) { - // Tell HttpClient to accept any server certificate for HTTPS. - // http://stackoverflow.com/questions/24720013/apache-http-client-ssl-certificate-error - SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() { - @Override - public boolean isTrusted(final X509Certificate[] chain, final String authType) - throws CertificateException { - return true; - } - }).build(); - SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext, - NoopHostnameVerifier.INSTANCE); - httpClient = HttpClientBuilder.create().setSSLSocketFactory(sslsf).build(); - } else { - httpClient = HttpClients.createDefault(); - } - - HttpGet httpGet = new HttpGet(uri); - httpGet.setHeader("uebkey", headerUebkey); - httpGet.setHeader("username", headerUsername); - httpGet.setHeader("password", headerPassword); - - String json = null; - CloseableHttpResponse response = null; - try { - logger.debug("GET from " + uri); - response = httpClient.execute(httpGet); - logger.info("Status is " + response.getStatusLine()); - if (response.getStatusLine().getStatusCode() != HttpServletResponse.SC_OK) - throw new Exception("Status is " + response.getStatusLine().toString()); - HttpEntity entity = response.getEntity(); - if (entity == null) { - logger.warn("Entity is null!"); - } else { - // entity content length is never set. - // this naively tries to read everything. - json = EntityUtils.toString(entity); - EntityUtils.consume(entity); - } - } finally { - if (response != null) - response.close(); - } - return json; - } - - /** - * Convenience method that builds and sends a POST request using properties - * to build the URI and populate header with credentials. - * - * @param path - * last component(s) of REST endpoint name; e.g., "users" or - * "user/{userid}/roles". - * @return JSON string fetched - * @throws Exception - * if the HTTP response code is anything other than OK. - */ - public static String postJson(final SharedContextTestProperties properties, final String path, final String json) - throws Exception { - String requestPath = '/' + properties.getProperty(SharedContextTestProperties.APPNAME) // - + '/' + properties.getProperty(SharedContextTestProperties.RESTPATH) // - + '/' + path; - return postJson(properties.getProperty(SharedContextTestProperties.HOSTNAME), // - properties.getProperty(SharedContextTestProperties.PORT, -1), // - properties.getProperty(SharedContextTestProperties.SECURE, true), // - properties.getProperty(SharedContextTestProperties.UEBKEY), // - properties.getProperty(SharedContextTestProperties.USERNAME), // - properties.getProperty(SharedContextTestProperties.PASSWORD), // - requestPath, // - json); - } - - /** - * Constructs and sends a POST request using the specified values. - * - * @param hostname - * @param port - * @param secure - * If true, uses https; else http. - * @param requestPath - * full path of the REST endpoint - * @param headerUebkey - * @param headerUsername - * @param headerPassword - * @param json - * Content to post - * @return JSON result - * @throws Exception - */ - public static String postJson(final String hostname, final int port, boolean secure, final String headerUebkey, - final String headerUsername, final String headerPassword, final String requestPath, final String json) - throws Exception { - - URIBuilder builder = new URIBuilder(); - if (secure) - builder.setScheme("https"); - else - builder.setScheme("http"); - builder.setHost(hostname); - if (port > 0) - builder.setPort(port); - builder.setPath(requestPath); - final URI uri = builder.build(); - - CloseableHttpClient httpClient; - if (secure) { - // Tell HttpClient to accept any server certificate for HTTPS. - // http://stackoverflow.com/questions/24720013/apache-http-client-ssl-certificate-error - SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() { - @Override - public boolean isTrusted(final X509Certificate[] chain, final String authType) - throws CertificateException { - return true; - } - }).build(); - SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext, - NoopHostnameVerifier.INSTANCE); - httpClient = HttpClientBuilder.create().setSSLSocketFactory(sslsf).build(); - } else { - httpClient = HttpClients.createDefault(); - } - HttpPost httpPost = new HttpPost(uri); - httpPost.setHeader("uebkey", headerUebkey); - httpPost.setHeader("username", headerUsername); - httpPost.setHeader("password", headerPassword); - - StringEntity postEntity = new StringEntity(json, ContentType.create("application/json", Consts.UTF_8)); - httpPost.setEntity(postEntity); - - String responseJson = null; - CloseableHttpResponse response = null; - try { - logger.debug("POST to " + uri); - response = httpClient.execute(httpPost); - logger.info("Status is " + response.getStatusLine()); - if (response.getStatusLine().getStatusCode() != HttpServletResponse.SC_OK) - throw new Exception("Status is " + response.getStatusLine().toString()); - - HttpEntity entity = response.getEntity(); - if (entity == null) { - logger.warn("Entity is null!"); - } else { - long len = entity.getContentLength(); - if (len < 0) - logger.warn("Content length is -1"); - if (len < 2048) { - responseJson = EntityUtils.toString(entity); - logger.debug(responseJson); - } else { - logger.warn("Not implemented - stream content"); - } - EntityUtils.consume(entity); - } - } finally { - if (response != null) - response.close(); - } - return responseJson; - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.net.URI; +import java.security.cert.CertificateException; +import java.security.cert.X509Certificate; + +import javax.net.ssl.SSLContext; +import javax.servlet.http.HttpServletResponse; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.apache.http.Consts; +import org.apache.http.HttpEntity; +import org.apache.http.client.methods.CloseableHttpResponse; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.client.methods.HttpPost; +import org.apache.http.client.utils.URIBuilder; +import org.apache.http.conn.ssl.NoopHostnameVerifier; +import org.apache.http.conn.ssl.SSLConnectionSocketFactory; +import org.apache.http.entity.ContentType; +import org.apache.http.entity.StringEntity; +import org.apache.http.impl.client.CloseableHttpClient; +import org.apache.http.impl.client.HttpClientBuilder; +import org.apache.http.impl.client.HttpClients; +import org.apache.http.ssl.SSLContexts; +import org.apache.http.ssl.TrustStrategy; +import org.apache.http.util.EntityUtils; +/** + * Provides reusable features for test cases to get or post from an REST + * endpoint, allowing use of HTTPS connections to servers that use self-signed + * certificates. + */ +public class SharedContextRestClient { + + private static final Log logger = LogFactory.getLog(SharedContextRestClient.class); + + /** + * Convenience method that builds and sends a GET request using properties + * to build the URI and populate header with credentials. + * + * @param task + * last component(s) of REST endpoint name; e.g., "get". + * @param contextId + * @param contextKey + * @return JSON string fetched + * @throws Exception + * if the HTTP response code is anything other than OK. + */ + public static String getJson(final SharedContextTestProperties properties, final String task, + final String contextId, final String contextKey) throws Exception { + String requestPath = '/' + properties.getProperty(SharedContextTestProperties.APPNAME) // + + '/' + properties.getProperty(SharedContextTestProperties.RESTPATH) // + + '/' + task; + return getJson(properties.getProperty(SharedContextTestProperties.HOSTNAME), // + properties.getProperty(SharedContextTestProperties.PORT, -1), // + properties.getProperty(SharedContextTestProperties.SECURE, true), // + properties.getProperty(SharedContextTestProperties.UEBKEY), // + properties.getProperty(SharedContextTestProperties.USERNAME), // + properties.getProperty(SharedContextTestProperties.PASSWORD), requestPath, // + contextId, // + contextKey); + } + + /** + * Constructs and sends a GET request using the specified values. + * + * @param hostname + * @param port + * ignored if negative + * @param secure + * If true, uses https; else http. + * @param headerUebkey + * @param headerUsername + * @param headerPassword + * @param requestPath + * full path of the REST endpoint + * @param contextId + * @param contextKey + * Ignored if null + * @return JSON result + */ + public static String getJson(final String hostname, final int port, boolean secure, final String headerUebkey, + final String headerUsername, final String headerPassword, final String requestPath, final String contextId, + final String contextKey) throws Exception { + + URIBuilder uriBuilder = new URIBuilder(); + if (secure) + uriBuilder.setScheme("https"); + else + uriBuilder.setScheme("http"); + uriBuilder.setHost(hostname); + if (port > 0) + uriBuilder.setPort(port); + uriBuilder.setPath(requestPath); + uriBuilder.addParameter("context_id", contextId); + if (contextKey != null) + uriBuilder.addParameter("ckey", contextKey); + final URI uri = uriBuilder.build(); + + CloseableHttpClient httpClient; + if (secure) { + // Tell HttpClient to accept any server certificate for HTTPS. + // http://stackoverflow.com/questions/24720013/apache-http-client-ssl-certificate-error + SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() { + @Override + public boolean isTrusted(final X509Certificate[] chain, final String authType) + throws CertificateException { + return true; + } + }).build(); + SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext, + NoopHostnameVerifier.INSTANCE); + httpClient = HttpClientBuilder.create().setSSLSocketFactory(sslsf).build(); + } else { + httpClient = HttpClients.createDefault(); + } + + HttpGet httpGet = new HttpGet(uri); + httpGet.setHeader("uebkey", headerUebkey); + httpGet.setHeader("username", headerUsername); + httpGet.setHeader("password", headerPassword); + + String json = null; + CloseableHttpResponse response = null; + try { + logger.debug("GET from " + uri); + response = httpClient.execute(httpGet); + logger.info("Status is " + response.getStatusLine()); + if (response.getStatusLine().getStatusCode() != HttpServletResponse.SC_OK) + throw new Exception("Status is " + response.getStatusLine().toString()); + HttpEntity entity = response.getEntity(); + if (entity == null) { + logger.warn("Entity is null!"); + } else { + // entity content length is never set. + // this naively tries to read everything. + json = EntityUtils.toString(entity); + EntityUtils.consume(entity); + } + } finally { + if (response != null) + response.close(); + } + return json; + } + + /** + * Convenience method that builds and sends a POST request using properties + * to build the URI and populate header with credentials. + * + * @param path + * last component(s) of REST endpoint name; e.g., "users" or + * "user/{userid}/roles". + * @return JSON string fetched + * @throws Exception + * if the HTTP response code is anything other than OK. + */ + public static String postJson(final SharedContextTestProperties properties, final String path, final String json) + throws Exception { + String requestPath = '/' + properties.getProperty(SharedContextTestProperties.APPNAME) // + + '/' + properties.getProperty(SharedContextTestProperties.RESTPATH) // + + '/' + path; + return postJson(properties.getProperty(SharedContextTestProperties.HOSTNAME), // + properties.getProperty(SharedContextTestProperties.PORT, -1), // + properties.getProperty(SharedContextTestProperties.SECURE, true), // + properties.getProperty(SharedContextTestProperties.UEBKEY), // + properties.getProperty(SharedContextTestProperties.USERNAME), // + properties.getProperty(SharedContextTestProperties.PASSWORD), // + requestPath, // + json); + } + + /** + * Constructs and sends a POST request using the specified values. + * + * @param hostname + * @param port + * @param secure + * If true, uses https; else http. + * @param requestPath + * full path of the REST endpoint + * @param headerUebkey + * @param headerUsername + * @param headerPassword + * @param json + * Content to post + * @return JSON result + * @throws Exception + */ + public static String postJson(final String hostname, final int port, boolean secure, final String headerUebkey, + final String headerUsername, final String headerPassword, final String requestPath, final String json) + throws Exception { + + URIBuilder builder = new URIBuilder(); + if (secure) + builder.setScheme("https"); + else + builder.setScheme("http"); + builder.setHost(hostname); + if (port > 0) + builder.setPort(port); + builder.setPath(requestPath); + final URI uri = builder.build(); + + CloseableHttpClient httpClient; + if (secure) { + // Tell HttpClient to accept any server certificate for HTTPS. + // http://stackoverflow.com/questions/24720013/apache-http-client-ssl-certificate-error + SSLContext sslContext = SSLContexts.custom().loadTrustMaterial(null, new TrustStrategy() { + @Override + public boolean isTrusted(final X509Certificate[] chain, final String authType) + throws CertificateException { + return true; + } + }).build(); + SSLConnectionSocketFactory sslsf = new SSLConnectionSocketFactory(sslContext, + NoopHostnameVerifier.INSTANCE); + httpClient = HttpClientBuilder.create().setSSLSocketFactory(sslsf).build(); + } else { + httpClient = HttpClients.createDefault(); + } + HttpPost httpPost = new HttpPost(uri); + httpPost.setHeader("uebkey", headerUebkey); + httpPost.setHeader("username", headerUsername); + httpPost.setHeader("password", headerPassword); + + StringEntity postEntity = new StringEntity(json, ContentType.create("application/json", Consts.UTF_8)); + httpPost.setEntity(postEntity); + + String responseJson = null; + CloseableHttpResponse response = null; + try { + logger.debug("POST to " + uri); + response = httpClient.execute(httpPost); + logger.info("Status is " + response.getStatusLine()); + if (response.getStatusLine().getStatusCode() != HttpServletResponse.SC_OK) + throw new Exception("Status is " + response.getStatusLine().toString()); + + HttpEntity entity = response.getEntity(); + if (entity == null) { + logger.warn("Entity is null!"); + } else { + long len = entity.getContentLength(); + if (len < 0) + logger.warn("Content length is -1"); + if (len < 2048) { + responseJson = EntityUtils.toString(entity); + logger.debug(responseJson); + } else { + logger.warn("Not implemented - stream content"); + } + EntityUtils.consume(entity); + } + } finally { + if (response != null) + response.close(); + } + return responseJson; + } + +} diff --git a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestControllerTest.java b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestControllerTest.java index a7a86e8c..5bb7a456 100644 --- a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestControllerTest.java +++ b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextRestControllerTest.java @@ -1,125 +1,125 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.io.IOException; -import java.util.HashMap; -import java.util.Map; -import java.util.UUID; - -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; -import org.junit.Assert; -import com.fasterxml.jackson.databind.ObjectMapper; - -/** - * Tests the endpoints exposed by the Shared Context REST controller in Portal - * Core. - * - * @author clott - */ -public class SharedContextRestControllerTest { - - private final Log logger = LogFactory.getLog(getClass()); - - private final SharedContextTestProperties properties; - - private final String ckey = "ckey"; - private final String cvalue = "cvalue"; - - // Supposed to be a Portal session ID - private final String cxid = UUID.randomUUID().toString(); - - private final String key = "key123"; - private final String value1 = "first value"; - private final String value2 = "second value"; - - public SharedContextRestControllerTest() throws IOException { - properties = new SharedContextTestProperties(); - } - - @SuppressWarnings("unchecked") - //@Test - public void test() throws Exception { - String response = null, val = null; - ObjectMapper mapper = new ObjectMapper(); - Map responseMap, jsonMap; - - logger.info("Get on empty context"); - response = SharedContextRestClient.getJson(properties, "get", cxid, key); - // Should not exist - just generated the UUID - Map responseMap1 = mapper.readValue(response, Map.class); - response = (String) responseMap1.get("response"); - Assert.assertNull(response); - - logger.info("Set a new context"); - response = setContext(cxid, key, value1); - Assert.assertNotNull(response); - responseMap = mapper.readValue(response, Map.class); - String responseValue = (String) responseMap.get("response"); - Assert.assertNotNull(responseValue); - Assert.assertEquals("added", responseValue); - - logger.info("Get existing context"); - response = SharedContextRestClient.getJson(properties, "get", cxid, key); - responseMap = mapper.readValue(response, Map.class); - jsonMap = (Map) responseMap.get("response"); - Assert.assertNotNull(jsonMap); - val = (String) jsonMap.get(cvalue); - Assert.assertEquals(val, value1); - - logger.info("Overwrite exiting context"); - response = setContext(cxid, key, value2); - Assert.assertNotNull(response); - responseMap = mapper.readValue(response, Map.class); - response = (String) responseMap.get("response"); - Assert.assertNotNull(responseValue); - // Assert.assertEquals("replaced", responseValue); - - logger.info("Get existing context to verify overwrite"); - response = SharedContextRestClient.getJson(properties, "get", cxid, key); - responseMap = mapper.readValue(response, Map.class); - jsonMap = (Map) responseMap.get("response"); - Assert.assertNotNull(jsonMap); - val = (String) jsonMap.get(cvalue); - Assert.assertEquals(val, value2); - - logger.info("Delete one context"); - response = SharedContextRestClient.getJson(properties, "remove", cxid, key); - responseMap = mapper.readValue(response, Map.class); - response = (String) responseMap.get("response"); - Assert.assertEquals(response, "removed"); - - logger.info("Clear the context"); - response = SharedContextRestClient.getJson(properties, "clear", cxid, null); - Assert.assertEquals("", response); - } - - private String setContext(String context, String id, String value) throws Exception { - ObjectMapper mapper = new ObjectMapper(); - HashMap stringMap = new HashMap(); - stringMap.put("context_id", cxid); - stringMap.put(ckey, key); - stringMap.put(cvalue, value2); - String json = mapper.writeValueAsString(stringMap); - String response = SharedContextRestClient.postJson(properties, "set", json); - return response; - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.io.IOException; +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.junit.Assert; +import com.fasterxml.jackson.databind.ObjectMapper; + +/** + * Tests the endpoints exposed by the Shared Context REST controller in Portal + * Core. + * + * @author clott + */ +public class SharedContextRestControllerTest { + + private final Log logger = LogFactory.getLog(getClass()); + + private final SharedContextTestProperties properties; + + private final String ckey = "ckey"; + private final String cvalue = "cvalue"; + + // Supposed to be a Portal session ID + private final String cxid = UUID.randomUUID().toString(); + + private final String key = "key123"; + private final String value1 = "first value"; + private final String value2 = "second value"; + + public SharedContextRestControllerTest() throws IOException { + properties = new SharedContextTestProperties(); + } + + @SuppressWarnings("unchecked") + //@Test + public void test() throws Exception { + String response = null, val = null; + ObjectMapper mapper = new ObjectMapper(); + Map responseMap, jsonMap; + + logger.info("Get on empty context"); + response = SharedContextRestClient.getJson(properties, "get", cxid, key); + // Should not exist - just generated the UUID + Map responseMap1 = mapper.readValue(response, Map.class); + response = (String) responseMap1.get("response"); + Assert.assertNull(response); + + logger.info("Set a new context"); + response = setContext(cxid, key, value1); + Assert.assertNotNull(response); + responseMap = mapper.readValue(response, Map.class); + String responseValue = (String) responseMap.get("response"); + Assert.assertNotNull(responseValue); + Assert.assertEquals("added", responseValue); + + logger.info("Get existing context"); + response = SharedContextRestClient.getJson(properties, "get", cxid, key); + responseMap = mapper.readValue(response, Map.class); + jsonMap = (Map) responseMap.get("response"); + Assert.assertNotNull(jsonMap); + val = (String) jsonMap.get(cvalue); + Assert.assertEquals(val, value1); + + logger.info("Overwrite exiting context"); + response = setContext(cxid, key, value2); + Assert.assertNotNull(response); + responseMap = mapper.readValue(response, Map.class); + response = (String) responseMap.get("response"); + Assert.assertNotNull(responseValue); + // Assert.assertEquals("replaced", responseValue); + + logger.info("Get existing context to verify overwrite"); + response = SharedContextRestClient.getJson(properties, "get", cxid, key); + responseMap = mapper.readValue(response, Map.class); + jsonMap = (Map) responseMap.get("response"); + Assert.assertNotNull(jsonMap); + val = (String) jsonMap.get(cvalue); + Assert.assertEquals(val, value2); + + logger.info("Delete one context"); + response = SharedContextRestClient.getJson(properties, "remove", cxid, key); + responseMap = mapper.readValue(response, Map.class); + response = (String) responseMap.get("response"); + Assert.assertEquals(response, "removed"); + + logger.info("Clear the context"); + response = SharedContextRestClient.getJson(properties, "clear", cxid, null); + Assert.assertEquals("", response); + } + + private String setContext(String context, String id, String value) throws Exception { + ObjectMapper mapper = new ObjectMapper(); + HashMap stringMap = new HashMap(); + stringMap.put("context_id", cxid); + stringMap.put(ckey, key); + stringMap.put(cvalue, value2); + String json = mapper.writeValueAsString(stringMap); + String response = SharedContextRestClient.postJson(properties, "set", json); + return response; + } +} diff --git a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextTestProperties.java b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextTestProperties.java index baed554b..9344150f 100644 --- a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextTestProperties.java +++ b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/SharedContextTestProperties.java @@ -1,81 +1,81 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.controller; - -import java.io.IOException; -import java.io.InputStream; -import java.util.Properties; - -/** - * Trivial extension of Properties that populates itself from a known source. - */ -public class SharedContextTestProperties extends Properties { - - private static final long serialVersionUID = -4064100267979036550L; - - // property names - public static final String HOSTNAME = "hostname"; - public static final String PORT = "port"; - public static final String SECURE = "secure"; - public static final String APPNAME = "appname"; - public static final String RESTPATH = "restpath"; - public static final String UEBKEY = "uebkey"; - public static final String USERNAME = "username"; - public static final String PASSWORD = "password"; - - /** - * Expected on the classpath - */ - private static final String propertiesFileName = "shared-context-test.properties"; - - /** - * Constructor populates itself from properties file found in same package. - * - * @throws Exception - */ - public SharedContextTestProperties() throws IOException { - InputStream inStream = getClass().getResourceAsStream(propertiesFileName); - if (inStream == null) - throw new IOException("Failed to find file on classpath: " + propertiesFileName); - super.load(inStream); - inStream.close(); - } - - public int getProperty(final String name, final int defVal) throws NumberFormatException { - String prop = getProperty(name); - if (prop == null) - return defVal; - return Integer.parseInt(prop); - } - - public boolean getProperty(final String name, final boolean defVal) { - String prop = getProperty(name); - if (prop == null) - return false; - return Boolean.parseBoolean(prop); - } - - // Test this class - public static void main(String[] args) throws Exception { - SharedContextTestProperties p = new SharedContextTestProperties(); - System.out.println("Property " + SharedContextTestProperties.HOSTNAME + " = " - + p.getProperty(SharedContextTestProperties.HOSTNAME)); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.controller; + +import java.io.IOException; +import java.io.InputStream; +import java.util.Properties; + +/** + * Trivial extension of Properties that populates itself from a known source. + */ +public class SharedContextTestProperties extends Properties { + + private static final long serialVersionUID = -4064100267979036550L; + + // property names + public static final String HOSTNAME = "hostname"; + public static final String PORT = "port"; + public static final String SECURE = "secure"; + public static final String APPNAME = "appname"; + public static final String RESTPATH = "restpath"; + public static final String UEBKEY = "uebkey"; + public static final String USERNAME = "username"; + public static final String PASSWORD = "password"; + + /** + * Expected on the classpath + */ + private static final String propertiesFileName = "shared-context-test.properties"; + + /** + * Constructor populates itself from properties file found in same package. + * + * @throws Exception + */ + public SharedContextTestProperties() throws IOException { + InputStream inStream = getClass().getResourceAsStream(propertiesFileName); + if (inStream == null) + throw new IOException("Failed to find file on classpath: " + propertiesFileName); + super.load(inStream); + inStream.close(); + } + + public int getProperty(final String name, final int defVal) throws NumberFormatException { + String prop = getProperty(name); + if (prop == null) + return defVal; + return Integer.parseInt(prop); + } + + public boolean getProperty(final String name, final boolean defVal) { + String prop = getProperty(name); + if (prop == null) + return false; + return Boolean.parseBoolean(prop); + } + + // Test this class + public static void main(String[] args) throws Exception { + SharedContextTestProperties p = new SharedContextTestProperties(); + System.out.println("Property " + SharedContextTestProperties.HOSTNAME + " = " + + p.getProperty(SharedContextTestProperties.HOSTNAME)); + } +} diff --git a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/shared-context-test.properties b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/shared-context-test.properties index 3e44a781..934779d9 100644 --- a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/shared-context-test.properties +++ b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/controller/shared-context-test.properties @@ -1,28 +1,28 @@ -### -# ================================================================================ -# ECOMP Portal -# ================================================================================ -# Copyright (C) 2017 AT&T Intellectual Property -# ================================================================================ -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# ================================================================================ -### - -hostname= localhost -# port = 80 -secure = true -appname = ecompportal -restpath = context -uebkey = xgnLrmNmkfCRnIwa -username = Default -password = AppPassword!1 +### +# ================================================================================ +# ECOMP Portal +# ================================================================================ +# Copyright (C) 2017 AT&T Intellectual Property +# ================================================================================ +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ================================================================================ +### + +hostname= localhost +# port = 80 +secure = true +appname = ecompportal +restpath = context +uebkey = xgnLrmNmkfCRnIwa +username = Default +password = AppPassword!1 diff --git a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/listener/HealthMonitorTest.java b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/listener/HealthMonitorTest.java index 6d01f2c9..f87f5bd1 100644 --- a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/listener/HealthMonitorTest.java +++ b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/listener/HealthMonitorTest.java @@ -1,36 +1,36 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.listener; - -import static org.junit.Assert.assertEquals; - -import org.junit.Test; - -public class HealthMonitorTest { - - @Test - public void initialFlagsTest() { - assertEquals(false, HealthMonitor.isBackEndUp()); - assertEquals(false, HealthMonitor.isFrontEndUp()); - assertEquals(false, HealthMonitor.isDatabaseUp()); - assertEquals(false, HealthMonitor.isUebUp()); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.listener; + +import static org.junit.Assert.assertEquals; + +import org.junit.Test; + +public class HealthMonitorTest { + + @Test + public void initialFlagsTest() { + assertEquals(false, HealthMonitor.isBackEndUp()); + assertEquals(false, HealthMonitor.isFrontEndUp()); + assertEquals(false, HealthMonitor.isDatabaseUp()); + assertEquals(false, HealthMonitor.isUebUp()); + } + +} diff --git a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/utils/EcompPortalUtilsTest.java b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/utils/EcompPortalUtilsTest.java index 4df4f761..b1dd853f 100644 --- a/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/utils/EcompPortalUtilsTest.java +++ b/ecomp-portal-BE-os/src/test/java/org/openecomp/portalapp/portal/utils/EcompPortalUtilsTest.java @@ -1,33 +1,33 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -package org.openecomp.portalapp.portal.utils; - -import static org.junit.Assert.assertEquals; - -import org.junit.Test; - -public class EcompPortalUtilsTest { - - - @Test - public void legitimateUserIdFailureTest() { - assertEquals(false, EcompPortalUtils.legitimateUserId("1#@23456")); - } -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +package org.openecomp.portalapp.portal.utils; + +import static org.junit.Assert.assertEquals; + +import org.junit.Test; + +public class EcompPortalUtilsTest { + + + @Test + public void legitimateUserIdFailureTest() { + assertEquals(false, EcompPortalUtils.legitimateUserId("1#@23456")); + } +} diff --git a/ecomp-portal-FE-common/.gitignore b/ecomp-portal-FE-common/.gitignore new file mode 100644 index 00000000..a82f9459 --- /dev/null +++ b/ecomp-portal-FE-common/.gitignore @@ -0,0 +1,3 @@ +.classpath +.project +/target/ diff --git a/ecomp-portal-FE-common/README.md b/ecomp-portal-FE-common/README.md index 81d98365..c4ac1e87 100644 --- a/ecomp-portal-FE-common/README.md +++ b/ecomp-portal-FE-common/README.md @@ -3,15 +3,10 @@ ## Overview This project contains the ECOMP Portal Front End common files: CSS, JavaScript, -HTML and other static files that are used in the AT&T internal version and the -open-source versions of the ECOMP Portal web application. Those specific versions -are built using separate Maven projects that copy in ("overlay") the contents of -this project at package time. - -## Release Notes - -Release notes for all ECOMP Portal *COMMON* files, including front-end files, -are tracked in file ecomp-portal-BE-common/README.md +HTML and other static files that are used in the internal and ONAP versions of +of the ECOMP Portal web application. Those specific versions are built using +separate Maven projects that copy in ("overlay") the contents of this project +at package time. ## Static files diff --git a/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.directive.js b/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.directive.js index 7284e4db..b60ffb27 100644 --- a/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.directive.js +++ b/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.directive.js @@ -1,68 +1,68 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -(function () { - /* - * Custom version of b2b-left-navigation directive: - * 1. Make parent menu a link if no child menus. - * 2. Add unique IDs to all items. - * 3. Hide icon if no child menus. - * 4. Add arrow toggle button. - * 5. Adjust the page on collapse/expand. - */ - class B2BLeftMenu { - constructor($rootScope) { - this.templateUrl = 'app/directives/b2b-leftnav-ext/b2b-leftnav-ext.tpl.html'; - this.restrict = 'EA'; - this.$rootScope = $rootScope; - this.link = this._link.bind(this); - this.scope = { - menuData: '=' - } - } - _link(scope) { - scope.idx = -1; - scope.itemIdx = -1; - scope.navIdx = -1; - scope.toggleNav = function (val,link) { - if (val === scope.idx) { - scope.idx = -1; - return; - } - scope.idx = val; - }; - /*New function for ECOMP sdk*/ - scope.toggleDrawer = function(showmenu){ - scope.idx=-1; /*hide the sunmenus*/ - if(showmenu){ - document.getElementById('page-content').style.paddingLeft = "50px"; - } - else - document.getElementById('page-content').style.paddingLeft = "230px"; - }; - scope.liveLink = function (evt, val1, val2) { - scope.itemIdx = val1; - scope.navIdx = val2; - evt.stopPropagation(); - }; - } - } - angular.module('ecompApp').directive('leftMenuEcomp', ($rootScope) => new B2BLeftMenu($rootScope)); -})(); - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +(function () { + /* + * Custom version of b2b-left-navigation directive: + * 1. Make parent menu a link if no child menus. + * 2. Add unique IDs to all items. + * 3. Hide icon if no child menus. + * 4. Add arrow toggle button. + * 5. Adjust the page on collapse/expand. + */ + class B2BLeftMenu { + constructor($rootScope) { + this.templateUrl = 'app/directives/b2b-leftnav-ext/b2b-leftnav-ext.tpl.html'; + this.restrict = 'EA'; + this.$rootScope = $rootScope; + this.link = this._link.bind(this); + this.scope = { + menuData: '=' + } + } + _link(scope) { + scope.idx = -1; + scope.itemIdx = -1; + scope.navIdx = -1; + scope.toggleNav = function (val,link) { + if (val === scope.idx) { + scope.idx = -1; + return; + } + scope.idx = val; + }; + /*New function for ECOMP sdk*/ + scope.toggleDrawer = function(showmenu){ + scope.idx=-1; /*hide the sunmenus*/ + if(showmenu){ + document.getElementById('page-content').style.paddingLeft = "50px"; + } + else + document.getElementById('page-content').style.paddingLeft = "230px"; + }; + scope.liveLink = function (evt, val1, val2) { + scope.itemIdx = val1; + scope.navIdx = val2; + evt.stopPropagation(); + }; + } + } + angular.module('ecompApp').directive('leftMenuEcomp', ($rootScope) => new B2BLeftMenu($rootScope)); +})(); + diff --git a/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.less b/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.less index 91a10aa2..c6e2d6d3 100644 --- a/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.less +++ b/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.less @@ -1,4 +1,4 @@ -.b2b-nav-menu .b2b-subnav-container li{ - background-color:white; - z-index:10; +.b2b-nav-menu .b2b-subnav-container li{ + background-color:white; + z-index:10; } \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.tpl.html b/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.tpl.html index 240c8c9b..9fa796c7 100644 --- a/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.tpl.html +++ b/ecomp-portal-FE-common/client/app/directives/b2b-leftnav-ext/b2b-leftnav-ext.tpl.html @@ -1,62 +1,62 @@ - -
    + +
    +
    + +
    +
    diff --git a/ecomp-portal-FE-common/client/app/directives/file-upload/file-upload.directive.js b/ecomp-portal-FE-common/client/app/directives/file-upload/file-upload.directive.js index bfedcd75..bab1fcec 100644 --- a/ecomp-portal-FE-common/client/app/directives/file-upload/file-upload.directive.js +++ b/ecomp-portal-FE-common/client/app/directives/file-upload/file-upload.directive.js @@ -1,39 +1,39 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by Rui Lu on 12/12/16. - */ -'use strict'; - -angular.module('ecompApp').directive('fileModel', [ '$parse', function($parse) { - return { - restrict : 'A', - link : function(scope, element, attrs) { - var model = $parse(attrs.fileModel); - var modelSetter = model.assign; - - element.bind('change', function() { - scope.$apply(function() { - modelSetter(scope, element[0].files[0]); - }); - }); - } - }; -} ]); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by Rui Lu on 12/12/16. + */ +'use strict'; + +angular.module('ecompApp').directive('fileModel', [ '$parse', function($parse) { + return { + restrict : 'A', + link : function(scope, element, attrs) { + var model = $parse(attrs.fileModel); + var modelSetter = model.assign; + + element.bind('change', function() { + scope.$apply(function() { + modelSetter(scope, element[0].files[0]); + }); + }); + } + }; +} ]); diff --git a/ecomp-portal-FE-common/client/app/directives/left-menu/left-menu.directive.js b/ecomp-portal-FE-common/client/app/directives/left-menu/left-menu.directive.js index 98979e2c..e481f4be 100644 --- a/ecomp-portal-FE-common/client/app/directives/left-menu/left-menu.directive.js +++ b/ecomp-portal-FE-common/client/app/directives/left-menu/left-menu.directive.js @@ -1,90 +1,90 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 1/28/16. - */ -(function () { - class LeftMenu { - constructor($rootScope, userbarUpdateService,notificationService,auditLogService) { - this.templateUrl = 'app/directives/left-menu/left-menu.tpl.html'; - this.restrict = 'AE'; - this.$rootScope = $rootScope; - this.userbarUpdateService = userbarUpdateService; - this.notificationService = notificationService; - this.auditLogService= auditLogService; - this.link = this._link.bind(this); - this.scope = { - sidebarModel: '=' - } - } - _link(scope) { - let init = () => { - scope.isOpen = true; - }; - - init(); - - scope.refreshOnlineUsers = () => { - this.userbarUpdateService.setRefreshCount(this.userbarUpdateService.maxCount); - }; - - scope.refreshNotification = () => { - this.notificationService.setRefreshCount(this.notificationService.maxCount); - }; - - scope.toggleSidebar = () => { - scope.isOpen = !scope.isOpen; - if(scope.isOpen==true) - setContentPos(1); - else - setContentPos(0); - }; - scope.auditLog =(name) => { - this.auditLogService.storeAudit(1,'leftMenu',name); - }; - - - scope.isBrowserInternetExplorer = false; - scope.browserName = bowser.name; - - if (bowser.msie || bowser.msedge) { - scope.isBrowserInternetExplorer = true; - } else { - scope.isBrowserInternetExplorer = false; - } - - - this.$rootScope.$on('$stateChangeStart', () => { - scope.isOpen = true; - }); - } - } - angular.module('ecompApp').directive('leftMenu', ($rootScope,userbarUpdateService,notificationService,auditLogService) => new LeftMenu($rootScope,userbarUpdateService,notificationService,auditLogService)); -})(); - -function setContentPos(open) { - // console.log("*******************************************"); - if(open==1){ - $("#page-content" ).css( "padding-left", "210px" ); - }else{ - $("#page-content" ).css( "padding-left", "50px" ); - } - -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 1/28/16. + */ +(function () { + class LeftMenu { + constructor($rootScope, userbarUpdateService,notificationService,auditLogService) { + this.templateUrl = 'app/directives/left-menu/left-menu.tpl.html'; + this.restrict = 'AE'; + this.$rootScope = $rootScope; + this.userbarUpdateService = userbarUpdateService; + this.notificationService = notificationService; + this.auditLogService= auditLogService; + this.link = this._link.bind(this); + this.scope = { + sidebarModel: '=' + } + } + _link(scope) { + let init = () => { + scope.isOpen = true; + }; + + init(); + + scope.refreshOnlineUsers = () => { + this.userbarUpdateService.setRefreshCount(this.userbarUpdateService.maxCount); + }; + + scope.refreshNotification = () => { + this.notificationService.setRefreshCount(this.notificationService.maxCount); + }; + + scope.toggleSidebar = () => { + scope.isOpen = !scope.isOpen; + if(scope.isOpen==true) + setContentPos(1); + else + setContentPos(0); + }; + scope.auditLog =(name) => { + this.auditLogService.storeAudit(1,'leftMenu',name); + }; + + + scope.isBrowserInternetExplorer = false; + scope.browserName = bowser.name; + + if (bowser.msie || bowser.msedge) { + scope.isBrowserInternetExplorer = true; + } else { + scope.isBrowserInternetExplorer = false; + } + + + this.$rootScope.$on('$stateChangeStart', () => { + scope.isOpen = true; + }); + } + } + angular.module('ecompApp').directive('leftMenu', ($rootScope,userbarUpdateService,notificationService,auditLogService) => new LeftMenu($rootScope,userbarUpdateService,notificationService,auditLogService)); +})(); + +function setContentPos(open) { + // console.log("*******************************************"); + if(open==1){ + $("#page-content" ).css( "padding-left", "210px" ); + }else{ + $("#page-content" ).css( "padding-left", "50px" ); + } + +} diff --git a/ecomp-portal-FE-common/client/app/directives/left-menu/left-menu.tpl.html b/ecomp-portal-FE-common/client/app/directives/left-menu/left-menu.tpl.html index 4478bc8f..f43f75ad 100644 --- a/ecomp-portal-FE-common/client/app/directives/left-menu/left-menu.tpl.html +++ b/ecomp-portal-FE-common/client/app/directives/left-menu/left-menu.tpl.html @@ -1,22 +1,22 @@ - -
    - -
    + +
    + +
    diff --git a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.directive.js b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.directive.js index fb56d438..f73793be 100644 --- a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.directive.js +++ b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.directive.js @@ -1,113 +1,113 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 12/21/15.+ - */ -angular.module('ecompApp') - .directive('multipleSelect', function ($window) { - return { - restrict: 'E', - templateUrl: 'app/directives/multiple-select/multiple-select.tpl.html', - scope: { - onChange: '&', - nameAttr: '@', - valueAttr: '@', - ngModel: '=', - placeholder: '@', - uniqueData: '@?', - onDropdownClose: '&?' - }, - link: function(scope, elm, attrs){ - scope.isExpanded = false; - - scope.isDisabled = !scope.ngModel || !scope.ngModel.length; - scope.$watch('ngModel', function(newVal){ - scope.isDisabled = !newVal || !newVal.length; - }); - - - let startListening = () => { - console.log('listening on $window!'); - angular.element($window).on('click', function () { - stopListening(); - }); - - angular.element('multiple-select').on('click', function(e) { - if($(e.target).closest('multiple-select')[0].attributes['unique-data'].value === attrs.uniqueData){ - console.log('ignored that..:', attrs.uniqueData); - e.stopPropagation(); - }else{ - console.log('shouldnt ignore, close expanded!:', attrs.uniqueData); - scope.isExpanded = false; - scope.$applyAsync(); - } - }); - }; - - let stopListening = function() { - if(scope.onDropdownClose){ - scope.onDropdownClose(); - } - scope.isExpanded = false; - scope.$applyAsync(); - console.log('stop listening on $window and multiple-element!'); - angular.element($window).off('click'); - angular.element('multiple-select').off('click'); - }; - - scope.showCheckboxes = function(){ - scope.isExpanded = !scope.isExpanded; - if(scope.isExpanded){ - startListening(); - }else{ - stopListening(); - if(scope.onDropdownClose){ - scope.onDropdownClose(); - } - } - }; - - scope.onCheckboxClicked = function() { - console.log('checkbox clicked; unique data: ',attrs.uniqueData); - if(scope.onChange) { - scope.onChange(); - } - } - - scope.getTitle = function(){ - var disp = ''; - if(!scope.ngModel || !scope.ngModel.length) { - return disp; - } - scope.ngModel.forEach(function(item){ - if(item[scope.valueAttr]){ - disp+=item[scope.nameAttr] + ','; - } - }); - if(disp!==''){ - disp = disp.slice(0,disp.length-1); - }else{ - disp = scope.placeholder; - } - return disp; - }; - } - }; - }); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 12/21/15.+ + */ +angular.module('ecompApp') + .directive('multipleSelect', function ($window) { + return { + restrict: 'E', + templateUrl: 'app/directives/multiple-select/multiple-select.tpl.html', + scope: { + onChange: '&', + nameAttr: '@', + valueAttr: '@', + ngModel: '=', + placeholder: '@', + uniqueData: '@?', + onDropdownClose: '&?' + }, + link: function(scope, elm, attrs){ + scope.isExpanded = false; + + scope.isDisabled = !scope.ngModel || !scope.ngModel.length; + scope.$watch('ngModel', function(newVal){ + scope.isDisabled = !newVal || !newVal.length; + }); + + + let startListening = () => { + console.log('listening on $window!'); + angular.element($window).on('click', function () { + stopListening(); + }); + + angular.element('multiple-select').on('click', function(e) { + if($(e.target).closest('multiple-select')[0].attributes['unique-data'].value === attrs.uniqueData){ + console.log('ignored that..:', attrs.uniqueData); + e.stopPropagation(); + }else{ + console.log('shouldnt ignore, close expanded!:', attrs.uniqueData); + scope.isExpanded = false; + scope.$applyAsync(); + } + }); + }; + + let stopListening = function() { + if(scope.onDropdownClose){ + scope.onDropdownClose(); + } + scope.isExpanded = false; + scope.$applyAsync(); + console.log('stop listening on $window and multiple-element!'); + angular.element($window).off('click'); + angular.element('multiple-select').off('click'); + }; + + scope.showCheckboxes = function(){ + scope.isExpanded = !scope.isExpanded; + if(scope.isExpanded){ + startListening(); + }else{ + stopListening(); + if(scope.onDropdownClose){ + scope.onDropdownClose(); + } + } + }; + + scope.onCheckboxClicked = function() { + console.log('checkbox clicked; unique data: ',attrs.uniqueData); + if(scope.onChange) { + scope.onChange(); + } + } + + scope.getTitle = function(){ + var disp = ''; + if(!scope.ngModel || !scope.ngModel.length) { + return disp; + } + scope.ngModel.forEach(function(item){ + if(item[scope.valueAttr]){ + disp+=item[scope.nameAttr] + ','; + } + }); + if(disp!==''){ + disp = disp.slice(0,disp.length-1); + }else{ + disp = scope.placeholder; + } + return disp; + }; + } + }; + }); diff --git a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.tpl.html b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.tpl.html index 3896bf2d..73136fe1 100644 --- a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.tpl.html +++ b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select.tpl.html @@ -1,36 +1,36 @@ - -
    -
    - -
    -
    - -
    -
    -
    + +
    +
    + +
    +
    + +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select2.directive.js b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select2.directive.js index e0471631..f49848ce 100644 --- a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select2.directive.js +++ b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select2.directive.js @@ -1,113 +1,113 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 12/21/15.+ - */ -angular.module('ecompApp') - .directive('multipleSelect2', function ($window) { - return { - restrict: 'E', - templateUrl: 'app/directives/multiple-select/multiple-select2.tpl.html', - scope: { - onChange: '&', - nameAttr: '@', - valueAttr: '@', - ngModel: '=', - placeholder: '@', - uniqueData: '@?', - onDropdownClose: '&?' - }, - link: function(scope, elm, attrs){ - scope.isExpanded = false; - - scope.isDisabled = !scope.ngModel || !scope.ngModel.length; - scope.$watch('ngModel', function(newVal){ - scope.isDisabled = !newVal || !newVal.length; - }); - - - let startListening = () => { - console.log('listening on $window!'); - angular.element($window).on('click', function () { - stopListening(); - }); - - angular.element('multiple-select2').on('click', function(e) { - if($(e.target).closest('multiple-select2')[0].attributes['unique-data'].value === attrs.uniqueData){ - console.log('ignored that..:', attrs.uniqueData); - e.stopPropagation(); - }else{ - console.log('shouldnt ignore, close expanded!:', attrs.uniqueData); - scope.isExpanded = false; - scope.$applyAsync(); - } - }); - }; - - let stopListening = function() { - if(scope.onDropdownClose){ - scope.onDropdownClose(); - } - scope.isExpanded = false; - scope.$applyAsync(); - console.log('stop listening on $window and multiple-element!'); - angular.element($window).off('click'); - angular.element('multiple-select2').off('click'); - }; - - scope.showCheckboxes = function(){ - scope.isExpanded = !scope.isExpanded; - if(scope.isExpanded){ - startListening(); - }else{ - stopListening(); - if(scope.onDropdownClose){ - scope.onDropdownClose(); - } - } - }; - - scope.onCheckboxClicked = function() { - console.log('checkbox clicked; unique data: ',attrs.uniqueData); - if(scope.onChange) { - scope.onChange(); - } - } - - scope.getTitle = function(){ - var disp = ''; - if(!scope.ngModel || !scope.ngModel.length) { - return disp; - } - scope.ngModel.forEach(function(item){ - if(item[scope.valueAttr]){ - disp+=item[scope.nameAttr] + ','; - } - }); - if(disp!==''){ - disp = disp.slice(0,disp.length-1); - }else{ - disp = scope.placeholder; - } - return disp; - }; - } - }; - }); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 12/21/15.+ + */ +angular.module('ecompApp') + .directive('multipleSelect2', function ($window) { + return { + restrict: 'E', + templateUrl: 'app/directives/multiple-select/multiple-select2.tpl.html', + scope: { + onChange: '&', + nameAttr: '@', + valueAttr: '@', + ngModel: '=', + placeholder: '@', + uniqueData: '@?', + onDropdownClose: '&?' + }, + link: function(scope, elm, attrs){ + scope.isExpanded = false; + + scope.isDisabled = !scope.ngModel || !scope.ngModel.length; + scope.$watch('ngModel', function(newVal){ + scope.isDisabled = !newVal || !newVal.length; + }); + + + let startListening = () => { + console.log('listening on $window!'); + angular.element($window).on('click', function () { + stopListening(); + }); + + angular.element('multiple-select2').on('click', function(e) { + if($(e.target).closest('multiple-select2')[0].attributes['unique-data'].value === attrs.uniqueData){ + console.log('ignored that..:', attrs.uniqueData); + e.stopPropagation(); + }else{ + console.log('shouldnt ignore, close expanded!:', attrs.uniqueData); + scope.isExpanded = false; + scope.$applyAsync(); + } + }); + }; + + let stopListening = function() { + if(scope.onDropdownClose){ + scope.onDropdownClose(); + } + scope.isExpanded = false; + scope.$applyAsync(); + console.log('stop listening on $window and multiple-element!'); + angular.element($window).off('click'); + angular.element('multiple-select2').off('click'); + }; + + scope.showCheckboxes = function(){ + scope.isExpanded = !scope.isExpanded; + if(scope.isExpanded){ + startListening(); + }else{ + stopListening(); + if(scope.onDropdownClose){ + scope.onDropdownClose(); + } + } + }; + + scope.onCheckboxClicked = function() { + console.log('checkbox clicked; unique data: ',attrs.uniqueData); + if(scope.onChange) { + scope.onChange(); + } + } + + scope.getTitle = function(){ + var disp = ''; + if(!scope.ngModel || !scope.ngModel.length) { + return disp; + } + scope.ngModel.forEach(function(item){ + if(item[scope.valueAttr]){ + disp+=item[scope.nameAttr] + ','; + } + }); + if(disp!==''){ + disp = disp.slice(0,disp.length-1); + }else{ + disp = scope.placeholder; + } + return disp; + }; + } + }; + }); diff --git a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select2.tpl.html b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select2.tpl.html index 34a6cea0..80c03cd3 100644 --- a/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select2.tpl.html +++ b/ecomp-portal-FE-common/client/app/directives/multiple-select/multiple-select2.tpl.html @@ -1,36 +1,36 @@ - -
    -
    - -
    -
    - -
    -
    -
    + +
    +
    + +
    +
    + +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/directives/right-click/ng-right-click-directive.js b/ecomp-portal-FE-common/client/app/directives/right-click/ng-right-click-directive.js index b8af5ebe..d6bf3d6d 100644 --- a/ecomp-portal-FE-common/client/app/directives/right-click/ng-right-click-directive.js +++ b/ecomp-portal-FE-common/client/app/directives/right-click/ng-right-click-directive.js @@ -1,32 +1,32 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -angular.module('ecompApp'). - directive('ngRightClick', function($parse) { - return function(scope, element, attrs) - { - var fn = $parse(attrs.ngRightClick); - element.bind('contextmenu', function(event) { - scope.$apply(function() { - event.preventDefault(); - fn(scope, {$event:event}); - }); - }); - }; - }); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +angular.module('ecompApp'). + directive('ngRightClick', function($parse) { + return function(scope, element, attrs) + { + var fn = $parse(attrs.ngRightClick); + element.bind('contextmenu', function(event) { + scope.$apply(function() { + event.preventDefault(); + fn(scope, {$event:event}); + }); + }); + }; + }); diff --git a/ecomp-portal-FE-common/client/app/router.js b/ecomp-portal-FE-common/client/app/router.js index 9fa71d2c..190ed579 100644 --- a/ecomp-portal-FE-common/client/app/router.js +++ b/ecomp-portal-FE-common/client/app/router.js @@ -69,15 +69,6 @@ angular.module('ecompApp') controllerAs: 'catalog' } } - }).state('root.accountOnboarding', { - url: '/accountOnboarding', - views: { - 'content@': { - templateUrl: 'app/views/account-onboarding/account-onboarding.tpl.html', - controller: 'AccountOnboardingCtrl', - controllerAs: 'accountOnboarding' - } - } }).state('root.widgetCatalog', { url: '/widgetCatalog', views: { @@ -106,7 +97,10 @@ angular.module('ecompApp') } } }).state('root.role', { - url: '/role/:roleId', + url: '/role', + params: { + roleId: 0, + }, views: { 'content@': { templateUrl: 'app/views/role/role.html', @@ -141,6 +135,15 @@ angular.module('ecompApp') controllerAs: 'apps' } } + }).state('root.microserviceOnboarding', { + url: '/microserviceOnboarding', + views: { + 'content@': { + templateUrl: 'app/views/microservice-onboarding/microservice-onboarding.tpl.html', + controller: 'MicroserviceOnboardingCtrl', + controllerAs: 'microserviceOnboarding' + } + } }).state('root.widgetOnboarding', { url: '/widgetOnboarding', views: { @@ -150,6 +153,15 @@ angular.module('ecompApp') controllerAs: 'widgetOnboarding' } } + }).state('root.accountOnboarding', { + url: '/accountOnboarding', + views: { + 'content@': { + templateUrl: 'app/views/account-onboarding/account-onboarding.tpl.html', + controller: 'AccountOnboardingCtrl', + controllerAs: 'accountOnboarding' + } + } }).state('root.functionalMenu', { url: '/functionalMenu', views: { @@ -207,6 +219,24 @@ angular.module('ecompApp') controllerAs: 'portalAdmin' } } + }).state('root.webAnalytics', { + url: '/webAnalytics', + views: { + 'content@': { + templateUrl: 'app/views/webAnalytics/webAnalytics.tpl.html', + controller: 'WebAnalyticsCtrl', + controllerAs: 'webAnalytics' + } + } + }).state('root.webAnlayticsSource', { + url: '/addWebAnalyticsSource', + views: { + 'content@': { + templateUrl: 'app/views/webAnalytics/webAnalyticsList.tpl.html', + controller: 'WebAnalyticsCtrl', + controllerAs: 'webAnalytics' + } + } }).state('root.error404', { url: '/error404', views: { diff --git a/ecomp-portal-FE-common/client/app/services/admins/admins.service.js b/ecomp-portal-FE-common/client/app/services/admins/admins.service.js index 3658052c..60a99f55 100644 --- a/ecomp-portal-FE-common/client/app/services/admins/admins.service.js +++ b/ecomp-portal-FE-common/client/app/services/admins/admins.service.js @@ -1,221 +1,221 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 11/22/2015. - */ -'use strict'; - -(function () { - class AdminsService { - constructor($q, $log, $http, conf, uuid, utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.utilsService = utilsService; - } - - getAccountAdmins() { - let deferred = this.$q.defer(); - //this.$log.info('AdminsService::get all applications admins list'); - this.$http({ - method: "GET", - cache: false, - url: this.conf.api.accountAdmins, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)=== false) { - this.$log.error('AdminsService::getAccountAdmins Failed'); - deferred.reject("AdminsService::getAccountAdmins Failed"); - } else { - // this.$log.info('AdminsService::getAccountAdmins Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - this.$log.error('AdminsService::getAccountAdmins Failed', status); - deferred.reject(status); - }); - - return deferred.promise; - } - - getAdminAppsRoles(orgUserId) { - let deferred = this.$q.defer(); - //this.$log.info('AdminsService::getAdminAppsRoles.adminAppsRoles'); - - this.$http({ - method: "GET", - url: this.conf.api.adminAppsRoles, - params: {user: orgUserId}, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)=== false) { - this.$log.error('AdminsService::getAdminAppsRoles.adminAppsRoles Failed'); - deferred.reject("AdminsService::getAdminAppsRoles.adminAppsRoles Failed"); - } else { - // this.$log.info('AdminsService::getAdminAppsRoles.adminAppsRoles Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - this.$log.error('AdminsService::getAdminAppsRoles.adminAppsRoles Failed', status); - deferred.reject(status); - }); - - return deferred.promise; - } - /*Author: Rui*/ - getRolesByApp(appId) { - let deferred = this.$q.defer(); - this.$log.info('AdminsService::getRolesByApp'); - let url = this.conf.api.adminAppsRoles + '/' + appId; - this.$http({ - method: "GET", - url: url, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (Object.keys(res.data).length == 0) { - deferred.reject("AdminsService::getAdminAppsRoles.getRolesByApp Failed"); - } else { - this.$log.info('AdminsService::getAdminAppsRoles.getRolesByApp Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - deferred.reject(status); - }); - - return deferred.promise; - } - - updateAdminAppsRoles(newAdminAppRoles) { - let deferred = this.$q.defer(); - // this.$log.info('AdminsService::updateAdminAppsRoles'); - this.$http({ - method: "PUT", - url: this.conf.api.adminAppsRoles, - data: newAdminAppRoles, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - if (this.utilsService.isValidJSON(res)=== false) { - this.$log.error('AdminsService::updateAdminAppsRoles Failed'); - deferred.reject("AdminsService::updateAdminAppsRoles Failed"); - } else { - //this.$log.info('AdminsService::updateAdminAppsRoles success:'); - deferred.resolve(res.data); - } - - }) - .catch( status => { - this.$log.error('AdminsService::updateAdminAppsRoles: rejection:' + status); - deferred.reject(status); - }); - - return deferred.promise; - } - - /** - * Tests the specified password against complexity requirements. - * Returns an explanation message if the test fails; null if it passes. - */ - isComplexPassword(str) { - let minLength = 8; - let message = 'Password is too simple. Minimum length is '+ minLength + ', ' - + 'and it must use letters, digits and special characters.'; - if (str == null) - return message; - - let hasLetter = false; - let hasDigit = false; - let hasSpecial = false; - var code, i, len; - for (i = 0, len = str.length; i < len; i++) { - code = str.charCodeAt(i); - if (code > 47 && code < 58) // numeric (0-9) - hasDigit = true; - else if ((code > 64 && code < 91) || (code > 96 && code < 123)) // A-Z, a-z - hasLetter = true; - else - hasSpecial = true; - } // for - - if (str.length < minLength || !hasLetter || !hasDigit || !hasSpecial) - return message; - - // All is well. - return null; - } - - addNewUser(newUser,checkDuplicate) { - // this.$log.info(newContactUs) - let deferred = this.$q.defer(); - // this.$log.info('ContactUsService:: add Contact Us' + JSON.stringify(newContactUs)); - - var newUserObj={ - firstName:newUser.firstName, - middleInitial:newUser.middleName, - lastName:newUser.lastName, - email:newUser.emailAddress, - loginId:newUser.loginId, - loginPwd:newUser.loginPwd, - }; - this.$http({ - url: this.conf.api.saveNewUser + "?isCheck=" + checkDuplicate, - method: 'POST', - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - }, - data: newUserObj - }).then(res => { - // this.$log.info('ContactUsService:: add Contact Us res' ,res); - // If response comes back as a redirected HTML page which IS NOT a success - if (res==null || Object.keys(res.data).length == 0 || res.data.message == 'failure') { - deferred.reject("Add new User failed"); - this.$log.error('adminService:: add New User failed'); - } else { - deferred.resolve(res.data); - } - }).catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - } - AdminsService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; - angular.module('ecompApp').service('adminsService', AdminsService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 11/22/2015. + */ +'use strict'; + +(function () { + class AdminsService { + constructor($q, $log, $http, conf, uuid, utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.utilsService = utilsService; + } + + getAccountAdmins() { + let deferred = this.$q.defer(); + //this.$log.info('AdminsService::get all applications admins list'); + this.$http({ + method: "GET", + cache: false, + url: this.conf.api.accountAdmins, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)=== false) { + this.$log.error('AdminsService::getAccountAdmins Failed'); + deferred.reject("AdminsService::getAccountAdmins Failed"); + } else { + // this.$log.info('AdminsService::getAccountAdmins Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('AdminsService::getAccountAdmins Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + } + + getAdminAppsRoles(orgUserId) { + let deferred = this.$q.defer(); + //this.$log.info('AdminsService::getAdminAppsRoles.adminAppsRoles'); + + this.$http({ + method: "GET", + url: this.conf.api.adminAppsRoles, + params: {user: orgUserId}, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)=== false) { + this.$log.error('AdminsService::getAdminAppsRoles.adminAppsRoles Failed'); + deferred.reject("AdminsService::getAdminAppsRoles.adminAppsRoles Failed"); + } else { + // this.$log.info('AdminsService::getAdminAppsRoles.adminAppsRoles Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('AdminsService::getAdminAppsRoles.adminAppsRoles Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + } + /*Author: Rui*/ + getRolesByApp(appId) { + let deferred = this.$q.defer(); + this.$log.info('AdminsService::getRolesByApp'); + let url = this.conf.api.adminAppsRoles + '/' + appId; + this.$http({ + method: "GET", + url: url, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (Object.keys(res.data).length == 0) { + deferred.reject("AdminsService::getAdminAppsRoles.getRolesByApp Failed"); + } else { + this.$log.info('AdminsService::getAdminAppsRoles.getRolesByApp Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + deferred.reject(status); + }); + + return deferred.promise; + } + + updateAdminAppsRoles(newAdminAppRoles) { + let deferred = this.$q.defer(); + // this.$log.info('AdminsService::updateAdminAppsRoles'); + this.$http({ + method: "PUT", + url: this.conf.api.adminAppsRoles, + data: newAdminAppRoles, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + if (this.utilsService.isValidJSON(res)=== false) { + this.$log.error('AdminsService::updateAdminAppsRoles Failed'); + deferred.reject("AdminsService::updateAdminAppsRoles Failed"); + } else { + //this.$log.info('AdminsService::updateAdminAppsRoles success:'); + deferred.resolve(res.data); + } + + }) + .catch( status => { + this.$log.error('AdminsService::updateAdminAppsRoles: rejection:' + status); + deferred.reject(status); + }); + + return deferred.promise; + } + + /** + * Tests the specified password against complexity requirements. + * Returns an explanation message if the test fails; null if it passes. + */ + isComplexPassword(str) { + let minLength = 8; + let message = 'Password is too simple. Minimum length is '+ minLength + ', ' + + 'and it must use letters, digits and special characters.'; + if (str == null) + return message; + + let hasLetter = false; + let hasDigit = false; + let hasSpecial = false; + var code, i, len; + for (i = 0, len = str.length; i < len; i++) { + code = str.charCodeAt(i); + if (code > 47 && code < 58) // numeric (0-9) + hasDigit = true; + else if ((code > 64 && code < 91) || (code > 96 && code < 123)) // A-Z, a-z + hasLetter = true; + else + hasSpecial = true; + } // for + + if (str.length < minLength || !hasLetter || !hasDigit || !hasSpecial) + return message; + + // All is well. + return null; + } + + addNewUser(newUser,checkDuplicate) { + // this.$log.info(newContactUs) + let deferred = this.$q.defer(); + // this.$log.info('ContactUsService:: add Contact Us' + JSON.stringify(newContactUs)); + + var newUserObj={ + firstName:newUser.firstName, + middleInitial:newUser.middleName, + lastName:newUser.lastName, + email:newUser.emailAddress, + loginId:newUser.loginId, + loginPwd:newUser.loginPwd, + }; + this.$http({ + url: this.conf.api.saveNewUser + "?isCheck=" + checkDuplicate, + method: 'POST', + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + }, + data: newUserObj + }).then(res => { + // this.$log.info('ContactUsService:: add Contact Us res' ,res); + // If response comes back as a redirected HTML page which IS NOT a success + if (res==null || Object.keys(res.data).length == 0 || res.data.message == 'failure') { + deferred.reject("Add new User failed"); + this.$log.error('adminService:: add New User failed'); + } else { + deferred.resolve(res.data); + } + }).catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + } + AdminsService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; + angular.module('ecompApp').service('adminsService', AdminsService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/audit-log/audit-log.service.js b/ecomp-portal-FE-common/client/app/services/audit-log/audit-log.service.js index 93a61310..af48fd64 100644 --- a/ecomp-portal-FE-common/client/app/services/audit-log/audit-log.service.js +++ b/ecomp-portal-FE-common/client/app/services/audit-log/audit-log.service.js @@ -1,92 +1,92 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by robertlo on 11/18/2016. - */ -'use strict'; - -(function () { - class AuditLogService { - constructor($q, $log, $http, conf, uuid) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - - this.uuid = uuid; - } - storeAudit(affectedAppId) { - // this.$log.error('ecomp::storeAudit storeAudit',affectedAppId); - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - url: this.conf.api.storeAuditLog+'?affectedAppId=' + affectedAppId +"&type=''&comment=''", - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - return deferred.promise; - } - - storeAudit(affectedAppId,type) { - // this.$log.error('ecomp::storeAudit storeAudit',affectedAppId + " " +type); - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - url: this.conf.api.storeAuditLog+'?affectedAppId=' + affectedAppId + '&type='+type+"&comment=''", - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - return deferred.promise; - } - storeAudit(affectedAppId,type,comment) { - comment = filterDummyValue(comment); - let deferred = this.$q.defer(); - var url =this.conf.api.storeAuditLog+'?affectedAppId=' + affectedAppId; - if(type!=''){ - url= url+'&type='+type; - } - if(comment!=''){ - url= url+'&comment='+comment; - } - this.$http({ - method: "GET", - url: url, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - return deferred.promise; - } - } - AuditLogService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4']; - angular.module('ecompApp').service('auditLogService', AuditLogService) -})(); - -function filterDummyValue(comment){ - var n = comment.indexOf("?dummyVar"); - if(n!=-1) - comment = comment.substring(0, n); - return comment; -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by robertlo on 11/18/2016. + */ +'use strict'; + +(function () { + class AuditLogService { + constructor($q, $log, $http, conf, uuid) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + + this.uuid = uuid; + } + storeAudit(affectedAppId) { + // this.$log.error('ecomp::storeAudit storeAudit',affectedAppId); + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.storeAuditLog+'?affectedAppId=' + affectedAppId +"&type=''&comment=''", + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + return deferred.promise; + } + + storeAudit(affectedAppId,type) { + // this.$log.error('ecomp::storeAudit storeAudit',affectedAppId + " " +type); + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.storeAuditLog+'?affectedAppId=' + affectedAppId + '&type='+type+"&comment=''", + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + return deferred.promise; + } + storeAudit(affectedAppId,type,comment) { + comment = filterDummyValue(comment); + let deferred = this.$q.defer(); + var url =this.conf.api.storeAuditLog+'?affectedAppId=' + affectedAppId; + if(type!=''){ + url= url+'&type='+type; + } + if(comment!=''){ + url= url+'&comment='+comment; + } + this.$http({ + method: "GET", + url: url, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + return deferred.promise; + } + } + AuditLogService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4']; + angular.module('ecompApp').service('auditLogService', AuditLogService) +})(); + +function filterDummyValue(comment){ + var n = comment.indexOf("?dummyVar"); + if(n!=-1) + comment = comment.substring(0, n); + return comment; +} diff --git a/ecomp-portal-FE-common/client/app/services/base64/base64.service.js b/ecomp-portal-FE-common/client/app/services/base64/base64.service.js index 5a684784..dccc5b20 100644 --- a/ecomp-portal-FE-common/client/app/services/base64/base64.service.js +++ b/ecomp-portal-FE-common/client/app/services/base64/base64.service.js @@ -1,69 +1,69 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Author: Rui Lu - * 12/15/2016 - */ -(function () { - class Base64Service { - constructor(){ - - } - encode(input) { - var keyStr = 'ABCDEFGHIJKLMNOP' + - 'QRSTUVWXYZabcdef' + - 'ghijklmnopqrstuv' + - 'wxyz0123456789+/' + - '='; - var output = ""; - var chr1, chr2, chr3 = ""; - var enc1, enc2, enc3, enc4 = ""; - var i = 0; - - do { - chr1 = input.charCodeAt(i++); - chr2 = input.charCodeAt(i++); - chr3 = input.charCodeAt(i++); - - enc1 = chr1 >> 2; - enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); - enc3 = ((chr2 & 15) << 2) | (chr3 >> 6); - enc4 = chr3 & 63; - - if (isNaN(chr2)) { - enc3 = enc4 = 64; - } else if (isNaN(chr3)) { - enc4 = 64; - } - - output = output + - keyStr.charAt(enc1) + - keyStr.charAt(enc2) + - keyStr.charAt(enc3) + - keyStr.charAt(enc4); - chr1 = chr2 = chr3 = ""; - enc1 = enc2 = enc3 = enc4 = ""; - } while (i < input.length); - - return output; - } - } - angular.module('ecompApp').service('base64Service', Base64Service) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Author: Rui Lu + * 12/15/2016 + */ +(function () { + class Base64Service { + constructor(){ + + } + encode(input) { + var keyStr = 'ABCDEFGHIJKLMNOP' + + 'QRSTUVWXYZabcdef' + + 'ghijklmnopqrstuv' + + 'wxyz0123456789+/' + + '='; + var output = ""; + var chr1, chr2, chr3 = ""; + var enc1, enc2, enc3, enc4 = ""; + var i = 0; + + do { + chr1 = input.charCodeAt(i++); + chr2 = input.charCodeAt(i++); + chr3 = input.charCodeAt(i++); + + enc1 = chr1 >> 2; + enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); + enc3 = ((chr2 & 15) << 2) | (chr3 >> 6); + enc4 = chr3 & 63; + + if (isNaN(chr2)) { + enc3 = enc4 = 64; + } else if (isNaN(chr3)) { + enc4 = 64; + } + + output = output + + keyStr.charAt(enc1) + + keyStr.charAt(enc2) + + keyStr.charAt(enc3) + + keyStr.charAt(enc4); + chr1 = chr2 = chr3 = ""; + enc1 = enc2 = enc3 = enc4 = ""; + } while (i < input.length); + + return output; + } + } + angular.module('ecompApp').service('base64Service', Base64Service) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/be-property-reader/be-property-reader.service.js b/ecomp-portal-FE-common/client/app/services/be-property-reader/be-property-reader.service.js index b3ad6b36..8e30aa2e 100644 --- a/ecomp-portal-FE-common/client/app/services/be-property-reader/be-property-reader.service.js +++ b/ecomp-portal-FE-common/client/app/services/be-property-reader/be-property-reader.service.js @@ -1,70 +1,70 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 11/22/2015. - */ -'use strict'; - -(function () { - class BeReaderService { - constructor($q, $log, $http, conf, uuid, utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.utilsService = utilsService; - } - - getProperty(property) { - let deferred = this.$q.defer(); - //this.$log.info('BeReaderService::get all applications admins list'); - - let url = this.conf.api.beProperty + "?key=" + property; - this.$http({ - method: "GET", - cache: false, - url: url, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - //if (this.utilsService.isValidJSON(res)=== false) { - // this.$log.error('BeReaderService::getAccountAdmins Failed'); - // deferred.reject("BeReaderService::getAccountAdmins Failed"); - //} else { - // this.$log.info('BeReaderService::getAccountAdmins Succeeded'); - deferred.resolve(res.data); - //} - }) - .catch( status => { - this.$log.error('BeReaderService::getAccountAdmins Failed', status); - deferred.reject(status); - }); - - return deferred.promise; - - } - } - BeReaderService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; - angular.module('ecompApp').service('beReaderService', BeReaderService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 11/22/2015. + */ +'use strict'; + +(function () { + class BeReaderService { + constructor($q, $log, $http, conf, uuid, utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.utilsService = utilsService; + } + + getProperty(property) { + let deferred = this.$q.defer(); + //this.$log.info('BeReaderService::get all applications admins list'); + + let url = this.conf.api.beProperty + "?key=" + property; + this.$http({ + method: "GET", + cache: false, + url: url, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + //if (this.utilsService.isValidJSON(res)=== false) { + // this.$log.error('BeReaderService::getAccountAdmins Failed'); + // deferred.reject("BeReaderService::getAccountAdmins Failed"); + //} else { + // this.$log.info('BeReaderService::getAccountAdmins Succeeded'); + deferred.resolve(res.data); + //} + }) + .catch( status => { + this.$log.error('BeReaderService::getAccountAdmins Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + + } + } + BeReaderService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; + angular.module('ecompApp').service('beReaderService', BeReaderService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/catalog/catalog.service.js b/ecomp-portal-FE-common/client/app/services/catalog/catalog.service.js index 63d5b966..6b89341d 100644 --- a/ecomp-portal-FE-common/client/app/services/catalog/catalog.service.js +++ b/ecomp-portal-FE-common/client/app/services/catalog/catalog.service.js @@ -1,172 +1,202 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - class CatalogService { - - constructor($q, $log, $http, conf, uuid, utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.debug = false; - this.utilsService = utilsService; - } - - getAppCatalog() { - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - url: this.conf.api.appCatalog, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - if (this.debug) - this.$log.debug('CatalogService::getAppCatalog: result is ' + JSON.stringify(res)); - // Res is always JSON, but the data object might be an HTML error page. - if (! this.utilsService.isValidJSON(res.data)) { - var msg = 'CatalogService::getAppCatalog: result data is not JSON'; - if (this.debug) - this.$log.debug(msg); - deferred.reject(msg); - } else { - if (this.debug) - this.$log.debug('CatalogService::getAppCatalog: success'); - deferred.resolve(res.data); - } - }) - .catch( status => { - this.$log.error('CatalogService:getAppCatalog failed: ' + status); - deferred.reject(status); - }); - return deferred.promise; - } - - // Expects an object with fields matching model class AppCatalogSelection: - // appId (number), select (boolean), pending (boolean). - updateAppCatalog(appData) { - let deferred = this.$q.defer(); - // Validate the request, maybe this is overkill - if (appData == null || appData.appId == null || appData.select == null) { - var msg = 'CatalogService::updateAppCatalog: field appId and/or select not found'; - this.$log.error(msg); - return deferred.reject(msg); - } - this.$http({ - method: "PUT", - url: this.conf.api.appCatalog, - data: appData, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // Detect missing result - if (res == null || res.data == null) { - deferred.reject("CatalogService::updateAppCatalog Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch( status => { - this.$log.error('CatalogService:updateAppCatalog failed: ' + status); - deferred.reject(status); - }); - return deferred.promise; - } - - // Expects an object with fields and used to update records for ep_pers_user_app_man_sort table: - // appId (number), select (boolean). - updateManualAppSort(appData) { - let deferred = this.$q.defer(); - - // Validate the request, maybe this is overkill - if (appData == null || appData.appId == null || appData.select == null) { - var msg = 'CatalogService::updateManualAppSort: field appId and/or select not found'; - this.$log.error(msg); - return deferred.reject(msg); - } - this.$http({ - method: "PUT", - url: this.conf.api.UpdateUserAppsSortManual, - data: appData, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // Detect missing result - if (res == null || res.data == null) { - deferred.reject("CatalogService::updateManualAppSort Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch( status => { - this.$log.error('CatalogService:updateManualAppSort failed: ' + status); - deferred.reject(status); - }); - - return deferred.promise; - } - - getuserAppRolesCatalog(item) { - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - url: this.conf.api.appCatalogRoles, - params:{appName:item}, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - if (this.debug) - this.$log.debug('CatalogService::getAppCatalog: result is ' + JSON.stringify(res)); - // Res is always JSON, but the data object might be an HTML error page. - if (! this.utilsService.isValidJSON(res.data)) { - var msg = 'CatalogService::getAppCatalog: result data is not JSON'; - if (this.debug) - this.$log.debug(msg); - deferred.reject(msg); - } else { - if (this.debug) - this.$log.debug('CatalogService::getAppCatalog: success'); - deferred.resolve(res.data); - } - }) - .catch( status => { - this.$log.error('CatalogService:getAppCatalog failed: ' + status); - deferred.reject(status); - }); - return deferred.promise; - } - - - - } - - CatalogService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; - angular.module('ecompApp').service('catalogService', CatalogService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + class CatalogService { + + constructor($q, $log, $http, conf, uuid, utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.debug = false; + this.utilsService = utilsService; + } + + getAppCatalog() { + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.appCatalog, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + if (this.debug) + this.$log.debug('CatalogService::getAppCatalog: result is ' + JSON.stringify(res)); + // Res is always JSON, but the data object might be an HTML error page. + if (! this.utilsService.isValidJSON(res.data)) { + var msg = 'CatalogService::getAppCatalog: result data is not JSON'; + if (this.debug) + this.$log.debug(msg); + deferred.reject(msg); + } else { + if (this.debug) + this.$log.debug('CatalogService::getAppCatalog: success'); + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('CatalogService:getAppCatalog failed: ' + status); + deferred.reject(status); + }); + return deferred.promise; + } + + // Expects an object with fields matching model class AppCatalogSelection: + // appId (number), select (boolean), pending (boolean). + updateAppCatalog(appData) { + let deferred = this.$q.defer(); + // Validate the request, maybe this is overkill + if (appData == null || appData.appId == null || appData.select == null) { + var msg = 'CatalogService::updateAppCatalog: field appId and/or select not found'; + this.$log.error(msg); + return deferred.reject(msg); + } + this.$http({ + method: "PUT", + url: this.conf.api.appCatalog, + data: appData, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // Detect missing result + if (res == null || res.data == null) { + deferred.reject("CatalogService::updateAppCatalog Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('CatalogService:updateAppCatalog failed: ' + status); + deferred.reject(status); + }); + return deferred.promise; + } + + // Expects an object with fields and used to update records for ep_pers_user_app_man_sort table: + // appId (number), select (boolean). + updateManualAppSort(appData) { + let deferred = this.$q.defer(); + + // Validate the request, maybe this is overkill + if (appData == null || appData.appId == null || appData.select == null) { + var msg = 'CatalogService::updateManualAppSort: field appId and/or select not found'; + this.$log.error(msg); + return deferred.reject(msg); + } + this.$http({ + method: "PUT", + url: this.conf.api.UpdateUserAppsSortManual, + data: appData, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // Detect missing result + if (res == null || res.data == null) { + deferred.reject("CatalogService::updateManualAppSort Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('CatalogService:updateManualAppSort failed: ' + status); + deferred.reject(status); + }); + + return deferred.promise; + } + + getuserAppRolesCatalog(item) { + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.appCatalogRoles, + params:{appName:item}, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + if (this.debug) + this.$log.debug('CatalogService::getAppCatalog: result is ' + JSON.stringify(res)); + // Res is always JSON, but the data object might be an HTML error page. + if (! this.utilsService.isValidJSON(res.data)) { + var msg = 'CatalogService::getAppCatalog: result data is not JSON'; + if (this.debug) + this.$log.debug(msg); + deferred.reject(msg); + } else { + if (this.debug) + this.$log.debug('CatalogService::getAppCatalog: success'); + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('CatalogService:getAppCatalog failed: ' + status); + deferred.reject(status); + }); + return deferred.promise; + } + + getAppsFullList() { + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.appsFullList, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + if (this.debug) + this.$log.debug('CatalogService::getAppsFullList: result is ' + JSON.stringify(res)); + // Res is always JSON, but the data object might be an HTML error page. + if (! this.utilsService.isValidJSON(res.data)) { + var msg = 'CatalogService::getAppsFullList: result data is not JSON'; + if (this.debug) + this.$log.error(msg); + deferred.reject(msg); + } else { + if (this.debug) + this.$log.debug('CatalogService::getAppsFullList: success'); + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('CatalogService:getAppsFullList failed: ' + status); + deferred.reject(status); + }); + return deferred.promise; + } + + } + + CatalogService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; + angular.module('ecompApp').service('catalogService', CatalogService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/confirm-box/confirm-box.service.js b/ecomp-portal-FE-common/client/app/services/confirm-box/confirm-box.service.js index 97ebb1e5..7379a29e 100644 --- a/ecomp-portal-FE-common/client/app/services/confirm-box/confirm-box.service.js +++ b/ecomp-portal-FE-common/client/app/services/confirm-box/confirm-box.service.js @@ -1,236 +1,236 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 1/18/16. - */ -'use strict'; - -(function () { - class ConfirmBoxService { - constructor($q, $log, ngDialog) { - this.$q = $q; - this.$log = $log; - this.ngDialog = ngDialog; - } - - showInformation(message) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: 'app/views/confirmation-box/information-box.tpl.html', - controller: 'ConfirmationBoxCtrl', - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - message: message - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - editItem(message) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: 'app/views/confirmation-box/confirmation-box.tpl.html', - controller: 'ConfirmationBoxCtrl', - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - message: message - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - - showDynamicInformation(message, templatePath, controller) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: templatePath, - controller: controller, - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - message: message - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - confirm(message) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: 'app/views/confirmation-box/confirmation-box.tpl.html', - controller: 'ConfirmationBoxCtrl', - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - message: message - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - deleteItem(item) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: 'app/views/confirmation-box/confirmation-box.tpl.html', - controller: 'ConfirmationBoxCtrl', - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - item: item, - title: 'Functional Menu - Delete' - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - moveMenuItem(message) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: 'app/views/confirmation-box/dragdrop-confirmation-box.tpl.html', - controller: 'ConfirmationBoxCtrl', - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - message: message, - title:'Functional Menu - Move' - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - makeAdminChanges(message) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: 'app/views/confirmation-box/admin-confirmation-box.tpl.html', - controller: 'ConfirmationBoxCtrl', - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - message: message, - title: 'Admin Update' - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - - makeUserAppRoleCatalogChanges(message) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: 'app/views/confirmation-box/admin-confirmation-box.tpl.html', - controller: 'ConfirmationBoxCtrl', - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - message: message, - title: 'UserRoles Update' - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - - webAnalyticsChanges(message) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: 'app/views/confirmation-box/admin-confirmation-box.tpl.html', - controller: 'ConfirmationBoxCtrl', - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - message: message, - title: 'Add WebAnalytics Source' - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - - updateWebAnalyticsReport(message) { - let deferred = this.$q.defer(); - this.ngDialog.open({ - templateUrl: 'app/views/confirmation-box/admin-confirmation-box.tpl.html', - controller: 'ConfirmationBoxCtrl', - controllerAs: 'confirmBox', - className: 'confirm-box ngdialog-theme-default', - showClose: false, - data: { - message: message, - title: 'Update WebAnalytics Source' - } - }).closePromise.then(confirmed => { - deferred.resolve(confirmed.value); - }).catch(err => { - deferred.reject(err); - }); - return deferred.promise; - }; - - } - ConfirmBoxService.$inject = ['$q', '$log', 'ngDialog']; - angular.module('ecompApp').service('confirmBoxService', ConfirmBoxService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 1/18/16. + */ +'use strict'; + +(function () { + class ConfirmBoxService { + constructor($q, $log, ngDialog) { + this.$q = $q; + this.$log = $log; + this.ngDialog = ngDialog; + } + + showInformation(message) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: 'app/views/confirmation-box/information-box.tpl.html', + controller: 'ConfirmationBoxCtrl', + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + message: message + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + editItem(message) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: 'app/views/confirmation-box/confirmation-box.tpl.html', + controller: 'ConfirmationBoxCtrl', + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + message: message + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + + showDynamicInformation(message, templatePath, controller) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: templatePath, + controller: controller, + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + message: message + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + confirm(message) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: 'app/views/confirmation-box/confirmation-box.tpl.html', + controller: 'ConfirmationBoxCtrl', + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + message: message + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + deleteItem(item) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: 'app/views/confirmation-box/confirmation-box.tpl.html', + controller: 'ConfirmationBoxCtrl', + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + item: item, + title: 'Functional Menu - Delete' + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + moveMenuItem(message) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: 'app/views/confirmation-box/dragdrop-confirmation-box.tpl.html', + controller: 'ConfirmationBoxCtrl', + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + message: message, + title:'Functional Menu - Move' + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + makeAdminChanges(message) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: 'app/views/confirmation-box/admin-confirmation-box.tpl.html', + controller: 'ConfirmationBoxCtrl', + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + message: message, + title: 'Admin Update' + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + + makeUserAppRoleCatalogChanges(message) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: 'app/views/confirmation-box/admin-confirmation-box.tpl.html', + controller: 'ConfirmationBoxCtrl', + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + message: message, + title: 'UserRoles Update' + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + + webAnalyticsChanges(message) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: 'app/views/confirmation-box/admin-confirmation-box.tpl.html', + controller: 'ConfirmationBoxCtrl', + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + message: message, + title: 'Add WebAnalytics Source' + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + + updateWebAnalyticsReport(message) { + let deferred = this.$q.defer(); + this.ngDialog.open({ + templateUrl: 'app/views/confirmation-box/admin-confirmation-box.tpl.html', + controller: 'ConfirmationBoxCtrl', + controllerAs: 'confirmBox', + className: 'confirm-box ngdialog-theme-default', + showClose: false, + data: { + message: message, + title: 'Update WebAnalytics Source' + } + }).closePromise.then(confirmed => { + deferred.resolve(confirmed.value); + }).catch(err => { + deferred.reject(err); + }); + return deferred.promise; + }; + + } + ConfirmBoxService.$inject = ['$q', '$log', 'ngDialog']; + angular.module('ecompApp').service('confirmBoxService', ConfirmBoxService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/contact-us/contact-us.service.js b/ecomp-portal-FE-common/client/app/services/contact-us/contact-us.service.js index 45c95e9c..6158498f 100644 --- a/ecomp-portal-FE-common/client/app/services/contact-us/contact-us.service.js +++ b/ecomp-portal-FE-common/client/app/services/contact-us/contact-us.service.js @@ -1,247 +1,247 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by robertlo on 10/10/2016. - */ -'use strict'; - -(function () { - class ContactUsService { - constructor($q, $log, $http, conf, uuid) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - } - getListOfApp() { - // this.$log.info('ContactUsService::getListOfavailableApps: get all app list'); - let deferred = this.$q.defer(); - // this.$log.info('ContactUsService::getListOfavailableApps: ', this.conf.api.listOfApp); - this.$http({ - method: "GET", - url: this.conf.api.availableApps, - cache: false - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - // this.$log.info('ContactUsService::getListOfavailableApps availableApps response: ', res); - if (Object.keys(res).length == 0) { - deferred.reject("ContactUsService::getListOfavailableApps: Failed"); - } else { - // this.$log.debug('ContactUsService::getListOfavailableApps: Succeeded results: ', res); - deferred.resolve(res); - } - }).catch( status => { - this.$log.error('ContactUsService::getListOfavailableApps: query error: ',status); - deferred.reject(status); - }); - return deferred.promise; - } - - getContactUs() { - let deferred = this.$q.defer(); - // this.$log.info('ContactUsService::get all Contact Us list'); - this.$http({ - url: this.conf.api.getContactUS, - method: 'GET', - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (Object.keys(res.data).length == 0) { - deferred.reject("ContactUsService::getContactUs Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - getAppsAndContacts() { - let deferred = this.$q.defer(); - // this.$log.info('ContactUsService::getAppsAndContacts'); - this.$http({ - url: this.conf.api.getAppsAndContacts, - method: 'GET', - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (Object.keys(res.data).length == 0) { - deferred.reject("ContactUsService::getAppsAndContacts Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - getContactUSPortalDetails(){ - let deferred = this.$q.defer(); - // this.$log.info('ContactUsService::get all Contact Us Portal Details'); - this.$http({ - url: this.conf.api.getContactUSPortalDetails, - method: 'GET', - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (Object.keys(res.data).length == 0) { - deferred.reject("ContactUsService::getContactUSPortalDetails Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - getAppCategoryFunctions(){ - let deferred = this.$q.defer(); - // this.$log.info('ContactUsService::get all App Category Functions'); - this.$http({ - url: this.conf.api.getAppCategoryFunctions, - method: 'GET', - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (Object.keys(res.data).length == 0) { - deferred.reject("ContactUsService::getAppCategoryFunctions Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - addContactUs(newContactUs) { - // this.$log.info('ContactUsService::add a new Contact Us'); - // this.$log.info(newContactUs) - let deferred = this.$q.defer(); - // this.$log.info('ContactUsService:: add Contact Us' + JSON.stringify(newContactUs)); - - var contactUsObj={ - appId:newContactUs.app.value, - appName:newContactUs.app.title, - description:newContactUs.desc, - contactName:newContactUs.name, - contactEmail:newContactUs.email, - url:newContactUs.url, - }; - this.$http({ - url: this.conf.api.saveContactUS, - method: 'POST', - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - }, - data: contactUsObj - }).then(res => { - // this.$log.info('ContactUsService:: add Contact Us res' ,res); - // If response comes back as a redirected HTML page which IS NOT a success - if (res==null || Object.keys(res.data).length == 0 || res.data.message == 'failure') { - deferred.reject("Add Contact Us failed"); - this.$log.error('ContactUsService:: add Contact Us failed'); - } else { - deferred.resolve(res.data); - } - }).catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - modifyContactUs(contactUsObj) { - // this.$log.info('ContactUsService::edit Contact Us',contactUsObj); - let deferred = this.$q.defer(); - this.$http({ - url: this.conf.api.saveContactUS, - method: 'POST', - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - }, - data: contactUsObj - }).then(res => { - // this.$log.info('ContactUsService:: edit Contact Us res' ,res); - // If response comes back as a redirected HTML page which IS NOT a success - if (res==null || Object.keys(res.data).length == 0 || res.data.message == 'failure') { - deferred.reject("Edit Contact Us failed"); - this.$log.error('ContactUsService:: edit Contact Us failed'); - } else { - deferred.resolve(res.data); - } - }).catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - removeContactUs(id) { - let deferred = this.$q.defer(); - let url = this.conf.api.deleteContactUS + '/' + id; - // this.$log.info('ContactUsService:: remove Contact Us'); - this.$http({ - url: url, - method: 'POST', - cache: false, - data: '', - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - // this.$log.info("ContactUsService::removeContactUs res",res); - deferred.resolve(res.data); - if (Object.keys(res.data).length == 0) { - deferred.reject("ContactUsService::removeContactUs Failed"); - } else { - deferred.resolve(res.data); - } - }).catch(errRes => { - deferred.reject(errRes); - }); - - return deferred.promise; - } - } - ContactUsService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4']; - angular.module('ecompApp').service('contactUsService', ContactUsService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by robertlo on 10/10/2016. + */ +'use strict'; + +(function () { + class ContactUsService { + constructor($q, $log, $http, conf, uuid) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + } + getListOfApp() { + // this.$log.info('ContactUsService::getListOfavailableApps: get all app list'); + let deferred = this.$q.defer(); + // this.$log.info('ContactUsService::getListOfavailableApps: ', this.conf.api.listOfApp); + this.$http({ + method: "GET", + url: this.conf.api.availableApps, + cache: false + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + // this.$log.info('ContactUsService::getListOfavailableApps availableApps response: ', res); + if (Object.keys(res).length == 0) { + deferred.reject("ContactUsService::getListOfavailableApps: Failed"); + } else { + // this.$log.debug('ContactUsService::getListOfavailableApps: Succeeded results: ', res); + deferred.resolve(res); + } + }).catch( status => { + this.$log.error('ContactUsService::getListOfavailableApps: query error: ',status); + deferred.reject(status); + }); + return deferred.promise; + } + + getContactUs() { + let deferred = this.$q.defer(); + // this.$log.info('ContactUsService::get all Contact Us list'); + this.$http({ + url: this.conf.api.getContactUS, + method: 'GET', + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (Object.keys(res.data).length == 0) { + deferred.reject("ContactUsService::getContactUs Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + getAppsAndContacts() { + let deferred = this.$q.defer(); + // this.$log.info('ContactUsService::getAppsAndContacts'); + this.$http({ + url: this.conf.api.getAppsAndContacts, + method: 'GET', + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (Object.keys(res.data).length == 0) { + deferred.reject("ContactUsService::getAppsAndContacts Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + getContactUSPortalDetails(){ + let deferred = this.$q.defer(); + // this.$log.info('ContactUsService::get all Contact Us Portal Details'); + this.$http({ + url: this.conf.api.getContactUSPortalDetails, + method: 'GET', + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (Object.keys(res.data).length == 0) { + deferred.reject("ContactUsService::getContactUSPortalDetails Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + getAppCategoryFunctions(){ + let deferred = this.$q.defer(); + // this.$log.info('ContactUsService::get all App Category Functions'); + this.$http({ + url: this.conf.api.getAppCategoryFunctions, + method: 'GET', + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (Object.keys(res.data).length == 0) { + deferred.reject("ContactUsService::getAppCategoryFunctions Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + addContactUs(newContactUs) { + // this.$log.info('ContactUsService::add a new Contact Us'); + // this.$log.info(newContactUs) + let deferred = this.$q.defer(); + // this.$log.info('ContactUsService:: add Contact Us' + JSON.stringify(newContactUs)); + + var contactUsObj={ + appId:newContactUs.app.value, + appName:newContactUs.app.title, + description:newContactUs.desc, + contactName:newContactUs.name, + contactEmail:newContactUs.email, + url:newContactUs.url, + }; + this.$http({ + url: this.conf.api.saveContactUS, + method: 'POST', + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + }, + data: contactUsObj + }).then(res => { + // this.$log.info('ContactUsService:: add Contact Us res' ,res); + // If response comes back as a redirected HTML page which IS NOT a success + if (res==null || Object.keys(res.data).length == 0 || res.data.message == 'failure') { + deferred.reject("Add Contact Us failed"); + this.$log.error('ContactUsService:: add Contact Us failed'); + } else { + deferred.resolve(res.data); + } + }).catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + modifyContactUs(contactUsObj) { + // this.$log.info('ContactUsService::edit Contact Us',contactUsObj); + let deferred = this.$q.defer(); + this.$http({ + url: this.conf.api.saveContactUS, + method: 'POST', + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + }, + data: contactUsObj + }).then(res => { + // this.$log.info('ContactUsService:: edit Contact Us res' ,res); + // If response comes back as a redirected HTML page which IS NOT a success + if (res==null || Object.keys(res.data).length == 0 || res.data.message == 'failure') { + deferred.reject("Edit Contact Us failed"); + this.$log.error('ContactUsService:: edit Contact Us failed'); + } else { + deferred.resolve(res.data); + } + }).catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + removeContactUs(id) { + let deferred = this.$q.defer(); + let url = this.conf.api.deleteContactUS + '/' + id; + // this.$log.info('ContactUsService:: remove Contact Us'); + this.$http({ + url: url, + method: 'POST', + cache: false, + data: '', + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + // this.$log.info("ContactUsService::removeContactUs res",res); + deferred.resolve(res.data); + if (Object.keys(res.data).length == 0) { + deferred.reject("ContactUsService::removeContactUs Failed"); + } else { + deferred.resolve(res.data); + } + }).catch(errRes => { + deferred.reject(errRes); + }); + + return deferred.promise; + } + } + ContactUsService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4']; + angular.module('ecompApp').service('contactUsService', ContactUsService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/dashboard/dashboard.service.js b/ecomp-portal-FE-common/client/app/services/dashboard/dashboard.service.js index c4b2e578..9e5e69be 100644 --- a/ecomp-portal-FE-common/client/app/services/dashboard/dashboard.service.js +++ b/ecomp-portal-FE-common/client/app/services/dashboard/dashboard.service.js @@ -1,185 +1,185 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by robertlo on 09/26/2016. - */ -'use strict'; - -(function () { - class DashboardService { - constructor($q, $log, $http, conf, uuid) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.dashboardService = null; - this.uuid = uuid; - } - - getCommonWidgetData(widgetType) { - // this.$log.info('ecomp::dashboard-service::getting news data'); - let deferred = this.$q.defer(); - let url = this.conf.api.commonWidget + '?resourceType=' + widgetType; - - this.$http({ - method: "GET", - url: url, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // this.$log.info('ecomp::dashboard-service::getting news data',res); - // If response comes back as a redirected HTML page which IS NOT a success - if (Object.keys(res.data).length == 0 || Object.keys(res.data.response) ==null || Object.keys(res.data.response.items) ==null) { - deferred.reject("ecomp::dashboard-service::getNewsData Failed"); - } else { - this.userProfile = res.data; - // this.$log.info('ecomp::dashboard-service::getNewsData Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - deferred.reject(status); - }); - return deferred.promise; - } - - saveCommonWidgetData(newData){ - let deferred = this.$q.defer(); - //this.$log.info('ecomp::dashboard-service::saveCommonWidgetData'); - //this.$log.debug('ecomp::dashboard-service::saveCommonWidgetData with:', newData); - - this.$http({ - method: "POST", - url: this.conf.api.commonWidget, - data: newData, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - // this.$log.info(res.data); - if (Object.keys(res.data).length == 0) { - deferred.reject("ecomp::dashboard-service::saveCommonWidgetData Failed"); - } else { - // this.$log.info('ecomp::dashboard-service::saveCommonWidgetData Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - deferred.reject(status); - }); - return deferred.promise; - } - - - - removeCommonWidgetData(widgetToRemove){ - let deferred = this.$q.defer(); - // this.$log.info('ecomp::dashboard-service::removeCommonWidgetData'); - // this.$log.debug('ecomp::dashboard-service::removeCommonWidgetData with:', widgetToRemove); - this.$http({ - method: "POST", - url: this.conf.api.deleteCommonWidget, - data: widgetToRemove, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - // this.$log.info(res.data); - if (Object.keys(res.data).length == 0) { - deferred.reject("ecomp::dashboard-service::saveCommonWidgetData Failed"); - } else { - // this.$log.info('ecomp::dashboard-service::saveCommonWidgetData Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - deferred.reject(status); - }); - return deferred.promise; - } - - getSearchAllByStringResults(searchStr) { - // this.$log.info('ecomp::getSearchAllByStringResults::getting search by string results'); - let deferred = this.$q.defer(); - let url = this.conf.api.getSearchAllByStringResults; - - this.$http({ - method: "GET", - url : url, - params : { - 'searchString' : searchStr - }, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (Object.keys(res.data).length == 0) { - deferred.reject("ecomp::dashboard-service::getSearchAllByStringResults Failed"); - } else { - //this.searchResults = res.data; - // this.$log.info('ecomp::dashboard-service::getSearchAllByStringResults Succeeded'); - deferred.resolve(res.data.response); - } - }).catch( status => { - this.$log.error('ecomp::getSearchAllByStringResults error'); - deferred.reject(status); - }); - return deferred.promise; - - } - - getOnlineUserUpdateRate() { - let deferred = this.$q.defer(); - let url = this.conf.api.onlineUserUpdateRate; - this.$http({ - method: "GET", - url: url, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (Object.keys(res.data).length == 0) { - deferred.reject("ecomp::dashboard-service::getOnlineUserUpdateRate Failed"); - } else { - // this.$log.info('ecomp::dashboard-service::getOnlineUserUpdateRate Succeeded',res); - deferred.resolve(res.data); - } - }).catch( status => { - deferred.reject(status); - }); - return deferred.promise; - } - - } - - DashboardService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4']; - angular.module('ecompApp').service('dashboardService', DashboardService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by robertlo on 09/26/2016. + */ +'use strict'; + +(function () { + class DashboardService { + constructor($q, $log, $http, conf, uuid) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.dashboardService = null; + this.uuid = uuid; + } + + getCommonWidgetData(widgetType) { + // this.$log.info('ecomp::dashboard-service::getting news data'); + let deferred = this.$q.defer(); + let url = this.conf.api.commonWidget + '?resourceType=' + widgetType; + + this.$http({ + method: "GET", + url: url, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // this.$log.info('ecomp::dashboard-service::getting news data',res); + // If response comes back as a redirected HTML page which IS NOT a success + if (Object.keys(res.data).length == 0 || Object.keys(res.data.response) ==null || Object.keys(res.data.response.items) ==null) { + deferred.reject("ecomp::dashboard-service::getNewsData Failed"); + } else { + this.userProfile = res.data; + // this.$log.info('ecomp::dashboard-service::getNewsData Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + deferred.reject(status); + }); + return deferred.promise; + } + + saveCommonWidgetData(newData){ + let deferred = this.$q.defer(); + //this.$log.info('ecomp::dashboard-service::saveCommonWidgetData'); + //this.$log.debug('ecomp::dashboard-service::saveCommonWidgetData with:', newData); + + this.$http({ + method: "POST", + url: this.conf.api.commonWidget, + data: newData, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + // this.$log.info(res.data); + if (Object.keys(res.data).length == 0) { + deferred.reject("ecomp::dashboard-service::saveCommonWidgetData Failed"); + } else { + // this.$log.info('ecomp::dashboard-service::saveCommonWidgetData Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + deferred.reject(status); + }); + return deferred.promise; + } + + + + removeCommonWidgetData(widgetToRemove){ + let deferred = this.$q.defer(); + // this.$log.info('ecomp::dashboard-service::removeCommonWidgetData'); + // this.$log.debug('ecomp::dashboard-service::removeCommonWidgetData with:', widgetToRemove); + this.$http({ + method: "POST", + url: this.conf.api.deleteCommonWidget, + data: widgetToRemove, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + // this.$log.info(res.data); + if (Object.keys(res.data).length == 0) { + deferred.reject("ecomp::dashboard-service::saveCommonWidgetData Failed"); + } else { + // this.$log.info('ecomp::dashboard-service::saveCommonWidgetData Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + deferred.reject(status); + }); + return deferred.promise; + } + + getSearchAllByStringResults(searchStr) { + // this.$log.info('ecomp::getSearchAllByStringResults::getting search by string results'); + let deferred = this.$q.defer(); + let url = this.conf.api.getSearchAllByStringResults; + + this.$http({ + method: "GET", + url : url, + params : { + 'searchString' : searchStr + }, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (Object.keys(res.data).length == 0) { + deferred.reject("ecomp::dashboard-service::getSearchAllByStringResults Failed"); + } else { + //this.searchResults = res.data; + // this.$log.info('ecomp::dashboard-service::getSearchAllByStringResults Succeeded'); + deferred.resolve(res.data.response); + } + }).catch( status => { + this.$log.error('ecomp::getSearchAllByStringResults error'); + deferred.reject(status); + }); + return deferred.promise; + + } + + getOnlineUserUpdateRate() { + let deferred = this.$q.defer(); + let url = this.conf.api.onlineUserUpdateRate; + this.$http({ + method: "GET", + url: url, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (Object.keys(res.data).length == 0) { + deferred.reject("ecomp::dashboard-service::getOnlineUserUpdateRate Failed"); + } else { + // this.$log.info('ecomp::dashboard-service::getOnlineUserUpdateRate Succeeded',res); + deferred.resolve(res.data); + } + }).catch( status => { + deferred.reject(status); + }); + return deferred.promise; + } + + } + + DashboardService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4']; + angular.module('ecompApp').service('dashboardService', DashboardService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/external-request-access-service/external-request-access-service.js b/ecomp-portal-FE-common/client/app/services/external-request-access-service/external-request-access-service.js index 0ef930c6..3be977b9 100644 --- a/ecomp-portal-FE-common/client/app/services/external-request-access-service/external-request-access-service.js +++ b/ecomp-portal-FE-common/client/app/services/external-request-access-service/external-request-access-service.js @@ -1,63 +1,63 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - class ExternalRequestAccessService { - constructor($q, $log, $http, conf, uuid, utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.utilsService = utilsService; - } - - getExternalRequestAccessServiceInfo() { - let deferred = this.$q.defer(); - var _this = this; - let url = this.conf.api.externalRequestAccessSystem; - this.$http({ - method: "GET", - cache: false, - url: url, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - if (res == null || res.data == null || _this.utilsService.isValidJSON(res.data) == false) { - deferred.reject("ExternalRequestAccessService::getExternalRequestAccessServiceInfo Failed"); - }else{ - deferred.resolve(res.data); - } - }) - .catch( status => { - this.$log.error('ExternalRequestAccessService::getExternalRequestAccessServiceInfo Failed', status); - deferred.reject(status); - }); - - return deferred.promise; - - } - } - ExternalRequestAccessService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; - angular.module('ecompApp').service('ExternalRequestAccessService', ExternalRequestAccessService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + class ExternalRequestAccessService { + constructor($q, $log, $http, conf, uuid, utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.utilsService = utilsService; + } + + getExternalRequestAccessServiceInfo() { + let deferred = this.$q.defer(); + var _this = this; + let url = this.conf.api.externalRequestAccessSystem; + this.$http({ + method: "GET", + cache: false, + url: url, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + if (res == null || res.data == null || _this.utilsService.isValidJSON(res.data) == false) { + deferred.reject("ExternalRequestAccessService::getExternalRequestAccessServiceInfo Failed"); + }else{ + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('ExternalRequestAccessService::getExternalRequestAccessServiceInfo Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + + } + } + ExternalRequestAccessService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; + angular.module('ecompApp').service('ExternalRequestAccessService', ExternalRequestAccessService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/global-constants/global-constants.js b/ecomp-portal-FE-common/client/app/services/global-constants/global-constants.js index 3e3e1a5f..0bfbe531 100644 --- a/ecomp-portal-FE-common/client/app/services/global-constants/global-constants.js +++ b/ecomp-portal-FE-common/client/app/services/global-constants/global-constants.js @@ -1,23 +1,23 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 1/21/16. - */ -angular.module('ecompApp').value('ECOMP_URL_REGEX', /^((?:https?\:\/\/|ftp?\:\/\/)?(w{3}.)?(?:[-a-z0-9]+\.)*[-a-z0-9]+.*)[^-_.]$/i); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 1/21/16. + */ +angular.module('ecompApp').value('ECOMP_URL_REGEX', /^((?:https?\:\/\/|ftp?\:\/\/)?(w{3}.)?(?:[-a-z0-9]+\.)*[-a-z0-9]+.*)[^-_.]$/i); diff --git a/ecomp-portal-FE-common/client/app/services/manifest/manifest.service.js b/ecomp-portal-FE-common/client/app/services/manifest/manifest.service.js index 120cb640..89709a84 100644 --- a/ecomp-portal-FE-common/client/app/services/manifest/manifest.service.js +++ b/ecomp-portal-FE-common/client/app/services/manifest/manifest.service.js @@ -1,64 +1,64 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by mlittle on 9/9/2016. - */ -'use strict'; - -(function () { - class ManifestService { - constructor($q, $log, $http, conf, uuid, utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.utilsService = utilsService; - } - - getManifest() { - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - url: this.conf.api.getManifest, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - if (this.utilsService.isValidJSON(res)== false) { - this.$log.error('ManifestService.getManifest failed: '); - deferred.reject('ManifestService.getManifest: response.data null or not object'); - } else { - // this.$log.info('ManifestService.getManifest Succeeded'); - // this.$log.debug('ManifestService.getManifest: ', JSON.stringify(res)) - deferred.resolve(res.data); - } - }).catch( status => { - this.$log.error('ManifestService.getManifest failed: ' + status.data); - deferred.reject(status); - }); - return deferred.promise; - } - - } - ManifestService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4', 'utilsService']; - angular.module('ecompApp').service('manifestService', ManifestService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by mlittle on 9/9/2016. + */ +'use strict'; + +(function () { + class ManifestService { + constructor($q, $log, $http, conf, uuid, utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.utilsService = utilsService; + } + + getManifest() { + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.getManifest, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + if (this.utilsService.isValidJSON(res)== false) { + this.$log.error('ManifestService.getManifest failed: '); + deferred.reject('ManifestService.getManifest: response.data null or not object'); + } else { + // this.$log.info('ManifestService.getManifest Succeeded'); + // this.$log.debug('ManifestService.getManifest: ', JSON.stringify(res)) + deferred.resolve(res.data); + } + }).catch( status => { + this.$log.error('ManifestService.getManifest failed: ' + status.data); + deferred.reject(status); + }); + return deferred.promise; + } + + } + ManifestService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4', 'utilsService']; + angular.module('ecompApp').service('manifestService', ManifestService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/menus/menus.service.js b/ecomp-portal-FE-common/client/app/services/menus/menus.service.js index 6cc0eff9..957cb6d8 100644 --- a/ecomp-portal-FE-common/client/app/services/menus/menus.service.js +++ b/ecomp-portal-FE-common/client/app/services/menus/menus.service.js @@ -56,7 +56,34 @@ return deferred.promise; } - + + getEcompPortalTitle () { + let deferred = this.$q.defer(); + this.$http({ + method: 'GET', + url: this.conf.api.ecompTitle, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + if (res.data==null || !this.utilsService.isValidJSON(res.data)) { + deferred.reject('MenusService::getEcompPortalTitle rest call failed'); + } else { + if(res.data.status!='OK' && res.data.message!=null) + deferred.reject('MenusService::getEcompPortalTitle rest call failed ' + res.data.message); + else + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('MenusService::getEcompPortalTitle rejection:' + status); + deferred.reject(status); + }); + + return deferred.promise; + } + getFavoriteItems() { let deferred = this.$q.defer(); // this.$log.info('MenusService::getFavoriteItems via REST API'); diff --git a/ecomp-portal-FE-common/client/app/services/microservice/microservice.service.js b/ecomp-portal-FE-common/client/app/services/microservice/microservice.service.js index cb27cd4c..393e7ccb 100644 --- a/ecomp-portal-FE-common/client/app/services/microservice/microservice.service.js +++ b/ecomp-portal-FE-common/client/app/services/microservice/microservice.service.js @@ -1,218 +1,218 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - class MicroserviceService { - constructor($q, $log, $http, conf,uuid, utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.utilsService = utilsService; - } - - createService(newService) { - let deferred = this.$q.defer(); - this.$http({ - method: "POST", - url: this.conf.api.widgetCommon, - data: newService, - cache: false, - headers:{ - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - this.$log.error('MicroserviceService::createService Failed: Result or result.data is null'); - deferred.reject("MicroserviceService::createService Failed: Result or result.data is null"); - } else if (!this.utilsService.isValidJSON(res.data)) { - this.$log.error('MicroserviceService::createService Failed: Invalid JSON format'); - deferred.reject("MicroserviceService::createService Failed: Invalid JSON format"); - } else { - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - - updateService(serviceId, newService) { - let deferred = this.$q.defer(); - this.$http({ - method: "PUT", - url: this.conf.api.widgetCommon + "/" + serviceId, - data: newService, - cache: false, - headers:{ - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - this.$log.error('MicroserviceService::updateService Failed: Result or result.data is null'); - deferred.reject("MicroserviceService::updateService Failed: Result or result.data is null"); - } else if (!this.utilsService.isValidJSON(res.data)) { - this.$log.error('MicroserviceService::updateService Failed: Invalid JSON format'); - deferred.reject("MicroserviceService::updateService Failed: Invalid JSON format"); - } else { - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - deleteService(serviceId) { - let deferred = this.$q.defer(); - this.$http({ - method: "DELETE", - url: this.conf.api.widgetCommon + "/" + serviceId, - cache: false, - headers:{ - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - this.$log.error('MicroserviceService::deleteService Failed: Result or result.data is null'); - deferred.reject("MicroserviceService::deleteService Failed: Result or result.data is null"); - } else if (!this.utilsService.isValidJSON(res.data)) { - this.$log.error('MicroserviceService::deleteService Failed: Invalid JSON format'); - deferred.reject("MicroserviceService::deleteService Failed: Invalid JSON format"); - } else { - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - getServiceList() { - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - url: this.conf.api.widgetCommon, - cache: false, - headers:{ - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - this.$log.error('MicroserviceService::getServiceList Failed: Result or result.data is null'); - deferred.reject("MicroserviceService::getServiceList Failed: Result or result.data is null"); - } else if (!this.utilsService.isValidJSON(res.data)) { - this.$log.error('MicroserviceService::getServiceList Failed: Invalid JSON format'); - deferred.reject("MicroserviceService::getServiceList Failed: Invalid JSON format"); - } else { - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - getWidgetListByService(serviceId) { - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - url: this.conf.api.widgetCommon + '/' + serviceId, - cache: false, - headers:{ - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - this.$log.error('MicroserviceService::getWidgetListByService Failed: Result or result.data is null'); - deferred.reject("MicroserviceService::getWidgetListByService Failed: Result or result.data is null"); - } else if (!this.utilsService.isValidJSON(res.data)) { - this.$log.error('MicroserviceService::getWidgetListByService Failed: Invalid JSON format'); - deferred.reject("MicroserviceService::getWidgetListByService Failed: Invalid JSON format"); - } else { - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - getUserParameterById(paramId){ - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - url: this.conf.api.widgetCommon + '/services/' + paramId, - cache: false, - headers:{ - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - this.$log.error('MicroserviceService::getUserParameterById Failed: Result or result.data is null'); - deferred.reject("MicroserviceService::getUserParameterById Failed: Result or result.data is null"); - } else if (!this.utilsService.isValidJSON(res.data)) { - this.$log.error('MicroserviceService::getUserParameterById Failed: Invalid JSON format'); - deferred.reject("MicroserviceService::getUserParameterById Failed: Invalid JSON format"); - } else { - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - deleteUserParameterById(paramId){ - let deferred = this.$q.defer(); - this.$http({ - method: "DELETE", - url: this.conf.api.widgetCommon + '/services/' + paramId, - cache: false, - headers:{ - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - this.$log.error('MicroserviceService::deleteUserParameterById Failed: Result or result.data is null'); - deferred.reject("MicroserviceService::deleteUserParameterById Failed: Result or result.data is null"); - } else { - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - } - - MicroserviceService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; - angular.module('ecompApp').service('microserviceService', MicroserviceService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + class MicroserviceService { + constructor($q, $log, $http, conf,uuid, utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.utilsService = utilsService; + } + + createService(newService) { + let deferred = this.$q.defer(); + this.$http({ + method: "POST", + url: this.conf.api.widgetCommon, + data: newService, + cache: false, + headers:{ + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + this.$log.error('MicroserviceService::createService Failed: Result or result.data is null'); + deferred.reject("MicroserviceService::createService Failed: Result or result.data is null"); + } else if (!this.utilsService.isValidJSON(res.data)) { + this.$log.error('MicroserviceService::createService Failed: Invalid JSON format'); + deferred.reject("MicroserviceService::createService Failed: Invalid JSON format"); + } else { + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + + updateService(serviceId, newService) { + let deferred = this.$q.defer(); + this.$http({ + method: "PUT", + url: this.conf.api.widgetCommon + "/" + serviceId, + data: newService, + cache: false, + headers:{ + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + this.$log.error('MicroserviceService::updateService Failed: Result or result.data is null'); + deferred.reject("MicroserviceService::updateService Failed: Result or result.data is null"); + } else if (!this.utilsService.isValidJSON(res.data)) { + this.$log.error('MicroserviceService::updateService Failed: Invalid JSON format'); + deferred.reject("MicroserviceService::updateService Failed: Invalid JSON format"); + } else { + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + deleteService(serviceId) { + let deferred = this.$q.defer(); + this.$http({ + method: "DELETE", + url: this.conf.api.widgetCommon + "/" + serviceId, + cache: false, + headers:{ + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + this.$log.error('MicroserviceService::deleteService Failed: Result or result.data is null'); + deferred.reject("MicroserviceService::deleteService Failed: Result or result.data is null"); + } else if (!this.utilsService.isValidJSON(res.data)) { + this.$log.error('MicroserviceService::deleteService Failed: Invalid JSON format'); + deferred.reject("MicroserviceService::deleteService Failed: Invalid JSON format"); + } else { + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + getServiceList() { + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.widgetCommon, + cache: false, + headers:{ + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + this.$log.error('MicroserviceService::getServiceList Failed: Result or result.data is null'); + deferred.reject("MicroserviceService::getServiceList Failed: Result or result.data is null"); + } else if (!this.utilsService.isValidJSON(res.data)) { + this.$log.error('MicroserviceService::getServiceList Failed: Invalid JSON format'); + deferred.reject("MicroserviceService::getServiceList Failed: Invalid JSON format"); + } else { + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + getWidgetListByService(serviceId) { + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.widgetCommon + '/' + serviceId, + cache: false, + headers:{ + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + this.$log.error('MicroserviceService::getWidgetListByService Failed: Result or result.data is null'); + deferred.reject("MicroserviceService::getWidgetListByService Failed: Result or result.data is null"); + } else if (!this.utilsService.isValidJSON(res.data)) { + this.$log.error('MicroserviceService::getWidgetListByService Failed: Invalid JSON format'); + deferred.reject("MicroserviceService::getWidgetListByService Failed: Invalid JSON format"); + } else { + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + getUserParameterById(paramId){ + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.widgetCommon + '/services/' + paramId, + cache: false, + headers:{ + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + this.$log.error('MicroserviceService::getUserParameterById Failed: Result or result.data is null'); + deferred.reject("MicroserviceService::getUserParameterById Failed: Result or result.data is null"); + } else if (!this.utilsService.isValidJSON(res.data)) { + this.$log.error('MicroserviceService::getUserParameterById Failed: Invalid JSON format'); + deferred.reject("MicroserviceService::getUserParameterById Failed: Invalid JSON format"); + } else { + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + deleteUserParameterById(paramId){ + let deferred = this.$q.defer(); + this.$http({ + method: "DELETE", + url: this.conf.api.widgetCommon + '/services/' + paramId, + cache: false, + headers:{ + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + this.$log.error('MicroserviceService::deleteUserParameterById Failed: Result or result.data is null'); + deferred.reject("MicroserviceService::deleteUserParameterById Failed: Result or result.data is null"); + } else { + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + } + + MicroserviceService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; + angular.module('ecompApp').service('microserviceService', MicroserviceService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/notification/notification.service.js b/ecomp-portal-FE-common/client/app/services/notification/notification.service.js index cf180e83..d7d46079 100644 --- a/ecomp-portal-FE-common/client/app/services/notification/notification.service.js +++ b/ecomp-portal-FE-common/client/app/services/notification/notification.service.js @@ -1,322 +1,322 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by wl849v on 12/14/2016. - */ -'use strict'; -(function () { - class NotificationService { - constructor($q, $log, $http, conf, uuid,utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.notificationCount = {count:0}; - this.refreshCount = 0; - this.maxCount = 0; - this.utilsService = utilsService; - } - getNotificationCount() { - return this.notificationCount; - } - setNotificationCount(count) { - this.notificationCount.count = count; - } - getRefreshCount() { - return this.refreshCount; - } - setRefreshCount(count){ - this.refreshCount = count; - } - setMaxRefreshCount(count){ - this.maxCount = count; - } - decrementRefreshCount(){ - this.refreshCount = this.refreshCount - 1; - } - - getNotificationRate() { - let deferred = this.$q.defer(); - let url = this.conf.api.notificationUpdateRate; - this.$http({ - method: "GET", - url: url, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (Object.keys(res.data).length == 0) { - deferred.reject("ecomp::NotificationService::getNotificationRate Failed"); - } else { - deferred.resolve(res.data); - } - }).catch( status => { - deferred.reject(status); - }); - return deferred.promise; - } - - getNotification(){ - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - cache: false, - url: this.conf.api.getNotifications, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)=== false) { - this.$log.error('NotificationService::getNotification Failed'); - deferred.reject("NotificationService::getNotification Failed"); - } else { - deferred.resolve(res); - } - }) - .catch( status => { - this.$log.error('NotificationService::getNotification Failed', status); - deferred.reject(status); - }); - - return deferred.promise; - } - getNotificationHistory(){ - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - cache: false, - url: this.conf.api.getNotificationHistory, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)=== false) { - this.$log.error('NotificationService::getNotification Failed'); - deferred.reject("NotificationService::getNotification Failed"); - } else { - deferred.resolve(res); - } - }) - .catch( status => { - this.$log.error('NotificationService::getNotification Failed', status); - deferred.reject(status); - }); - - return deferred.promise; - } - - getAdminNotification(){ - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - cache: false, - url: this.conf.api.getAdminNotifications, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)=== false) { - this.$log.error('NotificationService::getAdminNotification Failed'); - deferred.reject("NotificationService::getAdminNotification Failed"); - } else { - deferred.resolve(res); - } - }) - .catch( status => { - this.$log.error('NotificationService::getAdminNotification Failed', status); - deferred.reject(status); - }); - - return deferred.promise; - } - - - getMessageRecipients(notificationId){ - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - cache: false, - url: this.conf.api.getMessageRecipients+"?notificationId="+notificationId, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res.data)=== false) { - this.$log.error('NotificationService::getMessageRecipients Failed'); - deferred.reject("NotificationService::getMessageRecipients Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch( status => { - this.$log.error('NotificationService::getMappedRecipients Failed', status); - deferred.reject(status); - }); - - return deferred.promise; - } - - getAppRoleIds(){ - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - cache: false, - url: this.conf.api.getAllAppRoleIds, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)=== false) { - this.$log.error('NotificationService::getAppRoleIds Failed'); - deferred.reject("NotificationService::getAppRoleIds Failed"); - } else { - deferred.resolve(res); - } - }) - .catch( status => { - this.$log.error('NotificationService::getAppRoleIds Failed', status); - deferred.reject(status); - }); - return deferred.promise; - } - - getNotificationRoles(notificationId){ - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - cache: false, - url: this.conf.api.getNotificationRoles + '/'+notificationId+'/roles', - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)=== false) { - this.$log.error('NotificationService::getAdminNotification Failed'); - deferred.reject("NotificationService::getAdminNotification Failed"); - } else { - deferred.resolve(res); - } - }) - .catch( status => { - this.$log.error('NotificationService::getAdminNotification Failed', status); - deferred.reject(status); - }); - return deferred.promise; - } - - addAdminNotification(newAdminNotif){ - let deferred = this.$q.defer(); - // this.$log.debug('applications-service::addOnboardingApp with:', newApp); - - this.$http({ - method: "POST", - url: this.conf.api.saveNotification, - data: newAdminNotif, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - // But don't declare an empty list to be an error. - if (res == null || res.data == null) { - deferred.reject("NotificationService::addAdminNotification Failed"); - } else { - // this.$log.info('NotificationService::addAdminNotification Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - deferred.reject(status); - }); - return deferred.promise; - } - - updateAdminNotification(adminNotif){ - let deferred = this.$q.defer(); - this.$http({ - method: "POST", - url: this.conf.api.saveNotification, - data: adminNotif, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - // But don't declare an empty list to be an error. - if (res == null || res.data == null) { - deferred.reject("NotificationService::updateAdminNotification Failed"); - } else { - // this.$log.info('NotificationService::updateAdminNotification Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - deferred.reject(status); - }); - return deferred.promise; - } - - setNotificationRead(notificationId){ - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - cache: false, - url: this.conf.api.notificationRead+"?notificationId="+notificationId, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)=== false) { - this.$log.error('NotificationService::setNotificationRead Failed'); - deferred.reject("NotificationService::setNotificationRead Failed"); - } else { - deferred.resolve(res); - } - }) - .catch( status => { - this.$log.error('NotificationService::setNotificationRead Failed', status); - deferred.reject(status); - }); - - return deferred.promise; - } - } - NotificationService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4','utilsService']; - angular.module('ecompApp').service('notificationService', NotificationService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by wl849v on 12/14/2016. + */ +'use strict'; +(function () { + class NotificationService { + constructor($q, $log, $http, conf, uuid,utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.notificationCount = {count:0}; + this.refreshCount = 0; + this.maxCount = 0; + this.utilsService = utilsService; + } + getNotificationCount() { + return this.notificationCount; + } + setNotificationCount(count) { + this.notificationCount.count = count; + } + getRefreshCount() { + return this.refreshCount; + } + setRefreshCount(count){ + this.refreshCount = count; + } + setMaxRefreshCount(count){ + this.maxCount = count; + } + decrementRefreshCount(){ + this.refreshCount = this.refreshCount - 1; + } + + getNotificationRate() { + let deferred = this.$q.defer(); + let url = this.conf.api.notificationUpdateRate; + this.$http({ + method: "GET", + url: url, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (Object.keys(res.data).length == 0) { + deferred.reject("ecomp::NotificationService::getNotificationRate Failed"); + } else { + deferred.resolve(res.data); + } + }).catch( status => { + deferred.reject(status); + }); + return deferred.promise; + } + + getNotification(){ + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + cache: false, + url: this.conf.api.getNotifications, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)=== false) { + this.$log.error('NotificationService::getNotification Failed'); + deferred.reject("NotificationService::getNotification Failed"); + } else { + deferred.resolve(res); + } + }) + .catch( status => { + this.$log.error('NotificationService::getNotification Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + } + getNotificationHistory(){ + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + cache: false, + url: this.conf.api.getNotificationHistory, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)=== false) { + this.$log.error('NotificationService::getNotification Failed'); + deferred.reject("NotificationService::getNotification Failed"); + } else { + deferred.resolve(res); + } + }) + .catch( status => { + this.$log.error('NotificationService::getNotification Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + } + + getAdminNotification(){ + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + cache: false, + url: this.conf.api.getAdminNotifications, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)=== false) { + this.$log.error('NotificationService::getAdminNotification Failed'); + deferred.reject("NotificationService::getAdminNotification Failed"); + } else { + deferred.resolve(res); + } + }) + .catch( status => { + this.$log.error('NotificationService::getAdminNotification Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + } + + + getMessageRecipients(notificationId){ + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + cache: false, + url: this.conf.api.getMessageRecipients+"?notificationId="+notificationId, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res.data)=== false) { + this.$log.error('NotificationService::getMessageRecipients Failed'); + deferred.reject("NotificationService::getMessageRecipients Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('NotificationService::getMappedRecipients Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + } + + getAppRoleIds(){ + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + cache: false, + url: this.conf.api.getAllAppRoleIds, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)=== false) { + this.$log.error('NotificationService::getAppRoleIds Failed'); + deferred.reject("NotificationService::getAppRoleIds Failed"); + } else { + deferred.resolve(res); + } + }) + .catch( status => { + this.$log.error('NotificationService::getAppRoleIds Failed', status); + deferred.reject(status); + }); + return deferred.promise; + } + + getNotificationRoles(notificationId){ + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + cache: false, + url: this.conf.api.getNotificationRoles + '/'+notificationId+'/roles', + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)=== false) { + this.$log.error('NotificationService::getAdminNotification Failed'); + deferred.reject("NotificationService::getAdminNotification Failed"); + } else { + deferred.resolve(res); + } + }) + .catch( status => { + this.$log.error('NotificationService::getAdminNotification Failed', status); + deferred.reject(status); + }); + return deferred.promise; + } + + addAdminNotification(newAdminNotif){ + let deferred = this.$q.defer(); + // this.$log.debug('applications-service::addOnboardingApp with:', newApp); + + this.$http({ + method: "POST", + url: this.conf.api.saveNotification, + data: newAdminNotif, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + // But don't declare an empty list to be an error. + if (res == null || res.data == null) { + deferred.reject("NotificationService::addAdminNotification Failed"); + } else { + // this.$log.info('NotificationService::addAdminNotification Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + deferred.reject(status); + }); + return deferred.promise; + } + + updateAdminNotification(adminNotif){ + let deferred = this.$q.defer(); + this.$http({ + method: "POST", + url: this.conf.api.saveNotification, + data: adminNotif, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + // But don't declare an empty list to be an error. + if (res == null || res.data == null) { + deferred.reject("NotificationService::updateAdminNotification Failed"); + } else { + // this.$log.info('NotificationService::updateAdminNotification Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + deferred.reject(status); + }); + return deferred.promise; + } + + setNotificationRead(notificationId){ + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + cache: false, + url: this.conf.api.notificationRead+"?notificationId="+notificationId, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)=== false) { + this.$log.error('NotificationService::setNotificationRead Failed'); + deferred.reject("NotificationService::setNotificationRead Failed"); + } else { + deferred.resolve(res); + } + }) + .catch( status => { + this.$log.error('NotificationService::setNotificationRead Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + } + } + NotificationService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4','utilsService']; + angular.module('ecompApp').service('notificationService', NotificationService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/recommendation/recommendation.service.js b/ecomp-portal-FE-common/client/app/services/recommendation/recommendation.service.js new file mode 100644 index 00000000..aa2a4631 --- /dev/null +++ b/ecomp-portal-FE-common/client/app/services/recommendation/recommendation.service.js @@ -0,0 +1,88 @@ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by wl849v on 12/14/2016. + */ +'use strict'; +(function () { + class RecommendationService { + constructor($q, $log, $http, conf, uuid,utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.recommendationCount = {count:0}; + this.refreshCount = 0; + this.maxCount = 0; + this.utilsService = utilsService; + } + getRecommendationCount() { + return this.recommendationCount; + } + setRecommendationCount(count) { + this.recommendationCount.count = count; + } + getRefreshCount() { + return this.refreshCount; + } + setRefreshCount(count){ + this.refreshCount = count; + } + setMaxRefreshCount(count){ + this.maxCount = count; + } + decrementRefreshCount(){ + this.refreshCount = this.refreshCount - 1; + } + + + getRecommendations(){ + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + cache: false, + url: this.conf.api.getRecommendations, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res.data)=== false) { + this.$log.error('NotificationService::getRecommendations Failed'); + deferred.reject("NotificationService::getRecommendations Failed"); + } else { + deferred.resolve(res); + } + }) + .catch( status => { + this.$log.error('NotificationService::getRecommendations Failed', status); + deferred.reject(status); + }); + + return deferred.promise; + } + + + } + RecommendationService.$inject = ['$q', '$log', '$http', 'conf', 'uuid4','utilsService']; + angular.module('ecompApp').service('recommendationService', RecommendationService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/role/role.service.js b/ecomp-portal-FE-common/client/app/services/role/role.service.js index f8fee136..ee2cd536 100644 --- a/ecomp-portal-FE-common/client/app/services/role/role.service.js +++ b/ecomp-portal-FE-common/client/app/services/role/role.service.js @@ -1,190 +1,190 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -app.factory('RoleService', function ($http, $q, conf,uuid4) { - return { - getRoles: function() { - return $http.get(conf.api.getRoles,{ - cache: false, - headers: { - 'X-ECOMP-RequestID':uuid4.generate() - } - }) - .then(function(response) { - if (typeof response.data === 'object') { - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - }, - - saveRoleFunction: function() { - return $http.post(conf.api.saveRoleFuncion) - .then(function(response) { - if (typeof response.data === 'object') { - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - }, - - getRoleFunctionList: function() { - return $http.get(conf.api.getRoleFunctions,{ - cache: false, - headers: { - 'X-ECOMP-RequestID':uuid4.generate() - } - }) - .then(function(response) { - if (typeof response.data === 'object') { - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - }, - - getFnMenuItems: function(){ - - return $http.get('admin_fn_menu') - .then(function(response) { - if (typeof response.data === 'object') { - - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - }, - - getCacheRegions: function() { - return $http.get('get_regions') - .then(function(response) { - if (typeof response.data === 'object') { - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - }, - - getUsageList: function() { - return $http.get('get_usage_list') - .then(function(response) { - if (typeof response.data === 'object') { - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - }, - - getBroadcastList: function() { - return $http.get('get_broadcast_list') - .then(function(response) { - if (typeof response.data === 'object') { - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - }, - - getBroadcast: function(messageLocationId, messageLocation, messageId) { - return $http.get('get_broadcast?message_location_id='+messageLocationId + '&message_location=' + messageLocation + ((messageId != null) ? '&message_id=' + messageId : '')) - .then(function(response) { - if (typeof response.data === 'object') { - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - }, - - getCollaborateList: function() { - return $http.get('get_collaborate_list') - .then(function(response) { - if (typeof response.data === 'object') { - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - }, - - getRole: function(roleId) { - - return $http.get(conf.api.getRole + '?role_id=' + roleId,{ - cache: false, - headers: { - 'X-ECOMP-RequestID':uuid4.generate() - } - }) - .then(function(response) { - if (typeof response.data === 'object') { - return response.data; - } else { - return $q.reject(response.data); - } - - }, function(response) { - // something went wrong - return $q.reject(response.data); - }); - } - }; -}); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +app.factory('RoleService', function ($http, $q, conf,uuid4) { + return { + getRoles: function() { + return $http.get(conf.api.getRoles,{ + cache: false, + headers: { + 'X-ECOMP-RequestID':uuid4.generate() + } + }) + .then(function(response) { + if (typeof response.data === 'object') { + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + }, + + saveRoleFunction: function() { + return $http.post(conf.api.saveRoleFuncion) + .then(function(response) { + if (typeof response.data === 'object') { + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + }, + + getRoleFunctionList: function() { + return $http.get(conf.api.getRoleFunctions,{ + cache: false, + headers: { + 'X-ECOMP-RequestID':uuid4.generate() + } + }) + .then(function(response) { + if (typeof response.data === 'object') { + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + }, + + getFnMenuItems: function(){ + + return $http.get('admin_fn_menu') + .then(function(response) { + if (typeof response.data === 'object') { + + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + }, + + getCacheRegions: function() { + return $http.get('get_regions') + .then(function(response) { + if (typeof response.data === 'object') { + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + }, + + getUsageList: function() { + return $http.get('get_usage_list') + .then(function(response) { + if (typeof response.data === 'object') { + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + }, + + getBroadcastList: function() { + return $http.get('get_broadcast_list') + .then(function(response) { + if (typeof response.data === 'object') { + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + }, + + getBroadcast: function(messageLocationId, messageLocation, messageId) { + return $http.get('get_broadcast?message_location_id='+messageLocationId + '&message_location=' + messageLocation + ((messageId != null) ? '&message_id=' + messageId : '')) + .then(function(response) { + if (typeof response.data === 'object') { + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + }, + + getCollaborateList: function() { + return $http.get('get_collaborate_list') + .then(function(response) { + if (typeof response.data === 'object') { + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + }, + + getRole: function(roleId) { + + return $http.get(conf.api.getRole + '?role_id=' + roleId,{ + cache: false, + headers: { + 'X-ECOMP-RequestID':uuid4.generate() + } + }) + .then(function(response) { + if (typeof response.data === 'object') { + return response.data; + } else { + return $q.reject(response.data); + } + + }, function(response) { + // something went wrong + return $q.reject(response.data); + }); + } + }; +}); diff --git a/ecomp-portal-FE-common/client/app/services/users/users.service.js b/ecomp-portal-FE-common/client/app/services/users/users.service.js index 894aac0d..808a6632 100644 --- a/ecomp-portal-FE-common/client/app/services/users/users.service.js +++ b/ecomp-portal-FE-common/client/app/services/users/users.service.js @@ -1,215 +1,268 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by doritrieur on 12/8/15. - */ -'use strict'; - -(function () { - class UsersService { - constructor($q, $log, $http, conf, uuid, utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.utilsService = utilsService; - } - - - searchUsers(queryString) { - let canceller = this.$q.defer(); - let isActive = false; - - let cancel = () => { - if(isActive){ - this.$log.debug('UsersService::searchUsers: canceling the request'); - canceller.resolve(); - } - }; - - let promise = () => { - let deferred = this.$q.defer(); - if(!queryString){ - return deferred.reject(new Error('query string is mandatory')); - } - isActive = true; - this.$http({ - method: 'GET', - url: this.conf.api.queryUsers, - params: {search: queryString}, - cache: false, - timeout: canceller.promise, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)== false) { - deferred.reject('UsersService::queryUsers Failed'); - } else { - //this.$log.info('UsersService::queryUsers Succeeded'); - isActive = false; - deferred.resolve(res.data); - } - }).catch( status => { - isActive = false; - deferred.reject('UsersService::searchUsers:: API Failed with status: ' + status); - }); - return deferred.promise; - }; - - return { - cancel: cancel, - promise: promise - }; - - } - - getAccountUsers(appId) { - let deferred = this.$q.defer(); - let log = this.$log; - // this.$log.debug('UsersService::getAccountUsers for appId: ' + appId); - - let url = this.conf.api.accountUsers.replace(':appId', appId); - this.$http({ - method: 'GET', - url: url, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)== false) { - deferred.reject('UsersService::getAccountUsers for appId Failed'); - } else { - // log.info('UsersService::getAccountUsers(appId) Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - log.error('getAccountUsers(appId) $http error = ', status); - deferred.reject(status); - }); - - return deferred.promise; - } - - getUserAppRoles(appid, orgUserId){ -// let deferred = this.$q.defer(); - let canceller = this.$q.defer(); - let isActive = false; - - let cancel = () => { - if(isActive){ - this.$log.debug('UsersService::getUserAppRoles: canceling the request'); - canceller.resolve(); - } - }; - - // this.$log.info('UsersService::getUserAppRoles'); - - let promise = () => { - let deferred = this.$q.defer(); - isActive = false; - this.$http({ - method: 'GET', - url: this.conf.api.userAppRoles, - params: {user: orgUserId, app: appid}, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - //this.$log.debug('getUserAppRoles response: ', JSON.stringify(res)) - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)== false) { - deferred.reject('UsersService::getUserAppRoles: Failed'); - } else { - isActive = false; - //this.$log.info('UsersService::getUserAppRoles: Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - isActive = false; - deferred.reject(status); - }); - - return deferred.promise; - }; - - return { - cancel: cancel, - promise: promise - }; - } - - updateUserAppRoles(newUserAppRoles) { -// let deferred = this.$q.defer(); - let canceller = this.$q.defer(); - let isActive = false; - - let cancel = () => { - if(isActive){ - this.$log.debug('UsersService::updateUserAppRoles: canceling the request'); - canceller.resolve(); - } - }; - - // this.$log.info('UsersService::updateUserAppRoles'); - let promise = () => { - let deferred = this.$q.defer(); - this.$http({ - method: 'PUT', - url: this.conf.api.userAppRoles, - data: newUserAppRoles, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // this.$log.debug('getUserAppRoles response: ', JSON.stringify(res)) - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)== false) { - deferred.reject('UsersService::updateUserAppRoles: Failed'); - } else { - // this.$log.info('UsersService::updateUserAppRoles: Succeeded'); - deferred.resolve(res.data); - } - }) - .catch( status => { - deferred.reject(status); - }); - - return deferred.promise; - }; - - return { - cancel: cancel, - promise: promise - }; - - } - - } - UsersService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; - angular.module('ecompApp').service('usersService', UsersService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by doritrieur on 12/8/15. + */ +'use strict'; + +(function () { + class UsersService { + constructor($q, $log, $http, conf, uuid, utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.utilsService = utilsService; + } + + + searchUsers(queryString) { + let canceller = this.$q.defer(); + let isActive = false; + + let cancel = () => { + if(isActive){ + this.$log.debug('UsersService::searchUsers: canceling the request'); + canceller.resolve(); + } + }; + + let promise = () => { + let deferred = this.$q.defer(); + if(!queryString){ + return deferred.reject(new Error('query string is mandatory')); + } + isActive = true; + this.$http({ + method: 'GET', + url: this.conf.api.queryUsers, + params: {search: queryString}, + cache: false, + timeout: canceller.promise, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)== false) { + deferred.reject('UsersService::queryUsers Failed'); + } else { + //this.$log.info('UsersService::queryUsers Succeeded'); + isActive = false; + deferred.resolve(res.data); + } + }).catch( status => { + isActive = false; + deferred.reject('UsersService::searchUsers:: API Failed with status: ' + status); + }); + return deferred.promise; + }; + + return { + cancel: cancel, + promise: promise + }; + + } + + getAccountUsers(appId) { + let deferred = this.$q.defer(); + let log = this.$log; + // this.$log.debug('UsersService::getAccountUsers for appId: ' + appId); + + let url = this.conf.api.accountUsers.replace(':appId', appId); + this.$http({ + method: 'GET', + url: url, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)== false) { + deferred.reject('UsersService::getAccountUsers for appId Failed'); + } else { + // log.info('UsersService::getAccountUsers(appId) Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + log.error('getAccountUsers(appId) $http error = ', status); + deferred.reject(status); + }); + + return deferred.promise; + } + + getUserAppRoles(appid, orgUserId, extRequestValue){ + let canceller = this.$q.defer(); + let isActive = false; + + let cancel = () => { + if(isActive){ + this.$log.debug('UsersService::getUserAppRoles: canceling the request'); + canceller.resolve(); + } + }; + + let promise = () => { + let deferred = this.$q.defer(); + isActive = false; + this.$http({ + method: 'GET', + url: this.conf.api.userAppRoles, + params: {user: orgUserId, app: appid, externalRequest: extRequestValue}, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + if (!this.utilsService.isValidJSON(res.data)) { + deferred.reject('UsersService::getUserAppRoles: Failed'); + } else { + isActive = false; + deferred.resolve(res.data); + } + }) + .catch( status => { + isActive = false; + deferred.reject(status); + }); + + return deferred.promise; + }; + + return { + cancel: cancel, + promise: promise + }; + } + + updateUserAppRoles(newUserAppRoles) { +// let deferred = this.$q.defer(); + let canceller = this.$q.defer(); + let isActive = false; + + let cancel = () => { + if(isActive){ + this.$log.debug('UsersService::updateUserAppRoles: canceling the request'); + canceller.resolve(); + } + }; + + // this.$log.info('UsersService::updateUserAppRoles'); + let promise = () => { + let deferred = this.$q.defer(); + this.$http({ + method: 'PUT', + url: this.conf.api.userAppRoles, + data: newUserAppRoles, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // this.$log.debug('getUserAppRoles response: ', JSON.stringify(res)) + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)== false) { + deferred.reject('UsersService::updateUserAppRoles: Failed'); + } else { + // this.$log.info('UsersService::updateUserAppRoles: Succeeded'); + deferred.resolve(res.data); + } + }) + .catch( status => { + deferred.reject(status); + }); + + return deferred.promise; + }; + + return { + cancel: cancel, + promise: promise + }; + + } + + getLoggedInUser () { + let deferred = this.$q.defer(); + this.$http({ + method: 'GET', + url: this.conf.api.loggedinUser, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate(), + 'Content-Type': 'application/json' + }, + data: '' + }).then( res => { + if (res.data==null || !this.utilsService.isValidJSON(res.data)) { + deferred.reject('MenusService::getLoggedInUser rest call failed'); + } else { + if(res.data.status!='OK' && res.data.message!=null) + deferred.reject('MenusService::getLoggedInUser rest call failed ' + res.data.message); + else + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('MenusService::getLoggedInUser rejection:' + status); + deferred.reject(status); + }); + + return deferred.promise; + } + + modifyLoggedInUser (profileDetail) { + let deferred = this.$q.defer(); + this.$http({ + method: 'PUT', + url: this.conf.api.modifyLoggedinUser, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate(), + 'Content-Type': 'application/json' + }, + data: profileDetail + }).then( res => { + if (res.data==null || !this.utilsService.isValidJSON(res.data)) { + deferred.reject('MenusService::getLoggedInUser rest call failed'); + } else { + if(res.data.status!='OK' && res.data.message!=null) + deferred.reject('MenusService::getLoggedInUser rest call failed ' + res.data.message); + else + deferred.resolve(res.data); + } + }) + .catch( status => { + console.log(status); + this.$log.error('MenusService::getLoggedInUser rejection:' + status); + deferred.reject(status); + }); + + return deferred.promise; + } + + } + UsersService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; + angular.module('ecompApp').service('usersService', UsersService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/widgets-catalog/widgets-catalog.service.js b/ecomp-portal-FE-common/client/app/services/widgets-catalog/widgets-catalog.service.js index 99ace1cb..c3b57e37 100644 --- a/ecomp-portal-FE-common/client/app/services/widgets-catalog/widgets-catalog.service.js +++ b/ecomp-portal-FE-common/client/app/services/widgets-catalog/widgets-catalog.service.js @@ -1,358 +1,358 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - class WidgetsCatalogService { - constructor($q, $log, $http, conf,uuid,base64Service, beReaderService, utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.base64Service = base64Service; - this.beReaderService = beReaderService; - this.utilsService = utilsService; - } - - getUserWidgets(loginName) { - let deferred = this.$q.defer(); - this.$http({ - method: "GET", - url: this.conf.api.widgetCommon + '/widgetCatalog' + '/' + loginName, - cache: false, - headers: { - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - deferred.reject("WidgetsCatalogService::getUserWidgets Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - getManagedWidgets() { - let deferred = this.$q.defer(); - let url = this.conf.api.widgetCommon + '/widgetCatalog'; - this.$http({ - method: "GET", - url: url, - cache: false, - headers: { - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - deferred.reject("WidgetsCatalogService::getManagedWidgets Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - createWidget(newWidget, file) { - console.log(newWidget); - let deferred = this.$q.defer(); - var formData = new FormData(); - formData.append('file', file); - this.$http({ - method: "POST", - url: this.conf.api.widgetCommon + '/widgetCatalog', - transformRequest: angular.identity, - data: formData, - headers:{ - 'Content-Type': undefined, - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - }, - params:{ - 'newWidget': newWidget - } - }).then(res => { - if (res == null || res.data == null) { - deferred.reject("WidgetsCatalogService::getManagedWidgets Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - updateWidgetWithFile(file, widgetId, newWidget){ - console.log(widgetId); - let deferred = this.$q.defer(); - var formData = new FormData(); - formData.append('file', file); - let url = this.conf.api.widgetCommon + '/widgetCatalog/' + widgetId; - this.$http({ - method: 'POST', - url: url, - transformRequest: angular.identity, - data: formData, - headers: { - 'Content-Type': undefined, - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - }, - params:{ - 'newWidget': newWidget - } - }) - .then(res => { - if (res == null || res.data == null) - deferred.reject("WidgetsCatalogService::saveWidgetFile Failed"); - else - deferred.resolve(res.data); - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - updateWidget(widgetId, widgetData) { - let deferred = this.$q.defer(); - let url = this.conf.api.widgetCommon + '/widgetCatalog' + '/' + widgetId; - this.$http({ - method: 'PUT', - url: url, - cache: false, - data: widgetData, - headers: { - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }) - .then(res => { - deferred.resolve(res.data); - }) - .catch(errRes => { - deferred.reject(errRes); - }); - - return deferred.promise; - } - - - deleteWidgetFile(widgetName) { - let deferred = this.$q.defer(); - this.$log.info('WidgetsCatalogService::deleteWidgetCatalog'); - let url = this.conf.api.widgetCommon + '/doUpload' + '/' + widgetName; - this.$http({ - method: "DELETE", - url: url, - cache: false, - headers:{ - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - deferred.resolve(res.data); - }) - .catch(status => { - deferred.reject(status); - }); - - return deferred.promise; - } - - deleteWidget(widgetId) { - let deferred = this.$q.defer(); - this.$log.info('WidgetsCatalogService::deleteWidgetCatalog'); - let url = this.conf.api.widgetCommon + '/widgetCatalog' + '/' + widgetId; - this.$http({ - method: "DELETE", - url: url, - cache: false, - headers:{ - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - deferred.resolve(res.data); - }) - .catch(status => { - deferred.reject(status); - }); - - return deferred.promise; - } - - downloadWidgetFile(widgetId) { - let deferred = this.$q.defer(); - this.$log.info('WidgetsCatalogService::downloadWidgetFile'); - let url = this.conf.api.widgetCommon + '/download/' + widgetId; - console.log(url); - this.$http({ - method: "GET", - url: url, - cache: false, - responseType: "arraybuffer", - headers:{ - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - deferred.resolve(res.data); - }) - .catch(status => { - deferred.reject(status); - }); - - return deferred.promise; - } - - updateWidgetCatalog(appData){ - let deferred = this.$q.defer(); - // Validate the request, maybe this is overkill - if (appData == null || appData.widgetId == null || appData.select == null) { - var msg = 'WidgetCatalogService::updateAppCatalog: field appId and/or select not found'; - this.$log.error(msg); - return deferred.reject(msg); - } - this.$http({ - method: "PUT", - url: this.conf.api.widgetCatalogSelection, - data: appData, - headers: { - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then( res => { - // Detect non-JSON - if (res == null || res.data == null) { - deferred.reject("WidgetCatalogService::updateAppCatalog Failed"); - } else { - deferred.resolve(res.data); - } - }) - .catch( status => { - this.$log.error('WidgetCatalogService:updateAppCatalog failed: ' + status); - deferred.reject(status); - }); - return deferred.promise; - } - - getServiceJSON(serviceId){ - let deferred = this.$q.defer(); - this.$log.info('WidgetsCatalogService::getServiceJSON'); - let url = this.conf.api.microserviceProxy + "/" + serviceId; - console.log(url); - this.$http({ - method: "GET", - url: url, - cache: false, - headers:{ - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res == null) { - this.$log.error('WidgetCatalogService::getServiceJSON Failed: Result or result.data is null'); - deferred.reject("WidgetCatalogService::getServiceJSON Failed: Result or result.data is null"); - } else{ - deferred.resolve(res.data); - } - - }) - .catch(status => { - deferred.reject(status); - }); - - return deferred.promise; - } - - getWidgetCatalogParameters(widgetId){ - let deferred = this.$q.defer(); - this.$log.info('WidgetsCatalogService::getWidgetCatalogParameters'); - let url = this.conf.api.widgetCommon + "/parameters/" + widgetId; - console.log(url); - this.$http({ - method: "GET", - url: url, - cache: false, - headers:{ - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - this.$log.error('WidgetCatalogService::getWidgetCatalogParameters Failed: Result or result.data is null'); - deferred.reject("WidgetCatalogService::getWidgetCatalogParameters Failed: Result or result.data is null"); - } else { - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - - return deferred.promise; - } - - - saveWidgetParameter(widgetParamObject){ - let deferred = this.$q.defer(); - this.$log.info('WidgetsCatalogService::saveWidgetParameter'); - let url = this.conf.api.widgetCommon + "/parameters"; - this.$http({ - method: "POST", - url: url, - cache: false, - data: widgetParamObject, - headers:{ - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - if (res == null || res.data == null) { - this.$log.error('WidgetCatalogService::getWidgetCatalogParameters Failed: Result or result.data is null'); - deferred.reject("WidgetCatalogService::getWidgetCatalogParameters Failed: Result or result.data is null"); - } else { - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - - return deferred.promise; - } - - } - - WidgetsCatalogService.$inject = ['$q', '$log', '$http', 'conf','uuid4','base64Service', 'beReaderService', 'utilsService']; - angular.module('ecompApp').service('widgetsCatalogService', WidgetsCatalogService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + class WidgetsCatalogService { + constructor($q, $log, $http, conf,uuid,base64Service, beReaderService, utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.base64Service = base64Service; + this.beReaderService = beReaderService; + this.utilsService = utilsService; + } + + getUserWidgets(loginName) { + let deferred = this.$q.defer(); + this.$http({ + method: "GET", + url: this.conf.api.widgetCommon + '/widgetCatalog' + '/' + loginName, + cache: false, + headers: { + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + deferred.reject("WidgetsCatalogService::getUserWidgets Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + getManagedWidgets() { + let deferred = this.$q.defer(); + let url = this.conf.api.widgetCommon + '/widgetCatalog'; + this.$http({ + method: "GET", + url: url, + cache: false, + headers: { + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + deferred.reject("WidgetsCatalogService::getManagedWidgets Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + createWidget(newWidget, file) { + console.log(newWidget); + let deferred = this.$q.defer(); + var formData = new FormData(); + formData.append('file', file); + this.$http({ + method: "POST", + url: this.conf.api.widgetCommon + '/widgetCatalog', + transformRequest: angular.identity, + data: formData, + headers:{ + 'Content-Type': undefined, + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + }, + params:{ + 'newWidget': newWidget + } + }).then(res => { + if (res == null || res.data == null) { + deferred.reject("WidgetsCatalogService::getManagedWidgets Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + updateWidgetWithFile(file, widgetId, newWidget){ + console.log(widgetId); + let deferred = this.$q.defer(); + var formData = new FormData(); + formData.append('file', file); + let url = this.conf.api.widgetCommon + '/widgetCatalog/' + widgetId; + this.$http({ + method: 'POST', + url: url, + transformRequest: angular.identity, + data: formData, + headers: { + 'Content-Type': undefined, + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + }, + params:{ + 'newWidget': newWidget + } + }) + .then(res => { + if (res == null || res.data == null) + deferred.reject("WidgetsCatalogService::saveWidgetFile Failed"); + else + deferred.resolve(res.data); + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + updateWidget(widgetId, widgetData) { + let deferred = this.$q.defer(); + let url = this.conf.api.widgetCommon + '/widgetCatalog' + '/' + widgetId; + this.$http({ + method: 'PUT', + url: url, + cache: false, + data: widgetData, + headers: { + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }) + .then(res => { + deferred.resolve(res.data); + }) + .catch(errRes => { + deferred.reject(errRes); + }); + + return deferred.promise; + } + + + deleteWidgetFile(widgetName) { + let deferred = this.$q.defer(); + this.$log.info('WidgetsCatalogService::deleteWidgetCatalog'); + let url = this.conf.api.widgetCommon + '/doUpload' + '/' + widgetName; + this.$http({ + method: "DELETE", + url: url, + cache: false, + headers:{ + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + deferred.resolve(res.data); + }) + .catch(status => { + deferred.reject(status); + }); + + return deferred.promise; + } + + deleteWidget(widgetId) { + let deferred = this.$q.defer(); + this.$log.info('WidgetsCatalogService::deleteWidgetCatalog'); + let url = this.conf.api.widgetCommon + '/widgetCatalog' + '/' + widgetId; + this.$http({ + method: "DELETE", + url: url, + cache: false, + headers:{ + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + deferred.resolve(res.data); + }) + .catch(status => { + deferred.reject(status); + }); + + return deferred.promise; + } + + downloadWidgetFile(widgetId) { + let deferred = this.$q.defer(); + this.$log.info('WidgetsCatalogService::downloadWidgetFile'); + let url = this.conf.api.widgetCommon + '/download/' + widgetId; + console.log(url); + this.$http({ + method: "GET", + url: url, + cache: false, + responseType: "arraybuffer", + headers:{ + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + deferred.resolve(res.data); + }) + .catch(status => { + deferred.reject(status); + }); + + return deferred.promise; + } + + updateWidgetCatalog(appData){ + let deferred = this.$q.defer(); + // Validate the request, maybe this is overkill + if (appData == null || appData.widgetId == null || appData.select == null) { + var msg = 'WidgetCatalogService::updateAppCatalog: field appId and/or select not found'; + this.$log.error(msg); + return deferred.reject(msg); + } + this.$http({ + method: "PUT", + url: this.conf.api.widgetCatalogSelection, + data: appData, + headers: { + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then( res => { + // Detect non-JSON + if (res == null || res.data == null) { + deferred.reject("WidgetCatalogService::updateAppCatalog Failed"); + } else { + deferred.resolve(res.data); + } + }) + .catch( status => { + this.$log.error('WidgetCatalogService:updateAppCatalog failed: ' + status); + deferred.reject(status); + }); + return deferred.promise; + } + + getServiceJSON(serviceId){ + let deferred = this.$q.defer(); + this.$log.info('WidgetsCatalogService::getServiceJSON'); + let url = this.conf.api.microserviceProxy + "/" + serviceId; + console.log(url); + this.$http({ + method: "GET", + url: url, + cache: false, + headers:{ + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res == null) { + this.$log.error('WidgetCatalogService::getServiceJSON Failed: Result or result.data is null'); + deferred.reject("WidgetCatalogService::getServiceJSON Failed: Result or result.data is null"); + } else{ + deferred.resolve(res.data); + } + + }) + .catch(status => { + deferred.reject(status); + }); + + return deferred.promise; + } + + getWidgetCatalogParameters(widgetId){ + let deferred = this.$q.defer(); + this.$log.info('WidgetsCatalogService::getWidgetCatalogParameters'); + let url = this.conf.api.widgetCommon + "/parameters/" + widgetId; + console.log(url); + this.$http({ + method: "GET", + url: url, + cache: false, + headers:{ + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + this.$log.error('WidgetCatalogService::getWidgetCatalogParameters Failed: Result or result.data is null'); + deferred.reject("WidgetCatalogService::getWidgetCatalogParameters Failed: Result or result.data is null"); + } else { + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + + return deferred.promise; + } + + + saveWidgetParameter(widgetParamObject){ + let deferred = this.$q.defer(); + this.$log.info('WidgetsCatalogService::saveWidgetParameter'); + let url = this.conf.api.widgetCommon + "/parameters"; + this.$http({ + method: "POST", + url: url, + cache: false, + data: widgetParamObject, + headers:{ + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + if (res == null || res.data == null) { + this.$log.error('WidgetCatalogService::getWidgetCatalogParameters Failed: Result or result.data is null'); + deferred.reject("WidgetCatalogService::getWidgetCatalogParameters Failed: Result or result.data is null"); + } else { + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + + return deferred.promise; + } + + } + + WidgetsCatalogService.$inject = ['$q', '$log', '$http', 'conf','uuid4','base64Service', 'beReaderService', 'utilsService']; + angular.module('ecompApp').service('widgetsCatalogService', WidgetsCatalogService) +})(); diff --git a/ecomp-portal-FE-common/client/app/services/widgets/widgets.service.js b/ecomp-portal-FE-common/client/app/services/widgets/widgets.service.js index 735a7319..601c9ff9 100644 --- a/ecomp-portal-FE-common/client/app/services/widgets/widgets.service.js +++ b/ecomp-portal-FE-common/client/app/services/widgets/widgets.service.js @@ -1,206 +1,206 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by doritrieur on 12/3/15. - */ -'use strict'; - -(function () { - class WidgetsService { - constructor($q, $log, $http, conf, uuid, utilsService) { - this.$q = $q; - this.$log = $log; - this.$http = $http; - this.conf = conf; - this.uuid = uuid; - this.utilsService = utilsService; - } - - getUserWidgets() { - let deferred = this.$q.defer(); - this.$log.info('WidgetsService::getUserWidgets'); - this.$http({ - method: 'GET', - url: this.conf.api.widgets, - cache: false, - headers: { - 'X-Widgets-Type': 'all', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res) == false) { - var msg = 'WidgetsService::getUserWidgets Failed'; - this.$log.error(msg); - deferred.reject(msg); - } else { - // this.$log.info('WidgetsService::getUserWidgets Succeeded'); - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - getManagedWidgets() { - let deferred = this.$q.defer(); - this.$log.info('WidgetsService::getManagedWidgets'); - this.$http({ - method: 'GET', - url: this.conf.api.widgets, - cache: false, - headers: { - 'X-Widgets-Type': 'managed', - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)== false) { - deferred.reject('WidgetsService::getManagedWidgets Failed'); - } else if(Object.keys(res).length == 0 && this.utilsService.isValidJSON(res)) { - deferred.resolve(null); - } else { - this.$log.info('WidgetsService::getManagedWidgets Succeeded'); - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - createWidget(widgetData) { - let deferred = this.$q.defer(); - this.$log.info('WidgetsService::createWidget'); - this.$http({ - method: 'POST', - url: this.conf.api.widgets, - cache: false, - data: widgetData, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)== false) { - deferred.reject('WidgetsService::createWidget Failed'); - } else { - this.$log.info('WidgetsService::createWidget Succeeded'); - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - updateWidget(widgetId, widgetData) { - let deferred = this.$q.defer(); - this.$log.info('WidgetsService::updateWidget'); - let url = this.conf.api.widgets + '/' + widgetId; - this.$http({ - method: 'PUT', - url: url, - cache: false, - data: widgetData, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)== false) { - deferred.reject('WidgetsService::updateWidget Failed'); - } else { - this.$log.info('WidgetsService::updateWidget Succeeded'); - deferred.resolve(res.data); - } - }) - .catch(errRes => { - deferred.reject(errRes); - }); - return deferred.promise; - } - - deleteWidget(widgetId) { - let deferred = this.$q.defer(); - this.$log.info('WidgetsService::deleteWidget'); - let url = this.conf.api.widgets + '/' + widgetId; - this.$http({ - method: 'DELETE', - url: url, - cache: false, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(res => { - // If response comes back as a redirected HTML page which IS NOT a success - if (this.utilsService.isValidJSON(res)== false) { - deferred.reject('WidgetsService::deleteWidget Failed'); - } else { - this.$log.info('WidgetsService::deleteWidget Succeeded'); - deferred.resolve(res.data); - } - }) - .catch(status => { - deferred.reject(status); - }); - return deferred.promise; - } - - checkIfWidgetUrlExists(urlToValidate) { - let deferred = this.$q.defer(); - this.$log.info('WidgetsService::checkIfWidgetUrlExists:' + urlToValidate); - let reqBody = { - url: urlToValidate - }; - this.$http({ - method: 'POST', - url: this.conf.api.widgetsValidation, - cache: false, - data: reqBody, - headers: { - 'X-ECOMP-RequestID':this.uuid.generate() - } - }).then(() => { - //if exists return true - deferred.resolve(true); - }) - .catch(response => { - if (this.utilsService.isValidJSON(res)== false) { - deferred.reject('WidgetsService::checkIfWidgetUrlExists Failed'); - } else { - if (response.data.status === 404) { - deferred.resolve(false); - } else { - deferred.reject(response.data); - } - } - }); - return deferred.promise; - } - - } - WidgetsService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; - angular.module('ecompApp').service('widgetsService', WidgetsService) -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by doritrieur on 12/3/15. + */ +'use strict'; + +(function () { + class WidgetsService { + constructor($q, $log, $http, conf, uuid, utilsService) { + this.$q = $q; + this.$log = $log; + this.$http = $http; + this.conf = conf; + this.uuid = uuid; + this.utilsService = utilsService; + } + + getUserWidgets() { + let deferred = this.$q.defer(); + this.$log.info('WidgetsService::getUserWidgets'); + this.$http({ + method: 'GET', + url: this.conf.api.widgets, + cache: false, + headers: { + 'X-Widgets-Type': 'all', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res) == false) { + var msg = 'WidgetsService::getUserWidgets Failed'; + this.$log.error(msg); + deferred.reject(msg); + } else { + // this.$log.info('WidgetsService::getUserWidgets Succeeded'); + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + getManagedWidgets() { + let deferred = this.$q.defer(); + this.$log.info('WidgetsService::getManagedWidgets'); + this.$http({ + method: 'GET', + url: this.conf.api.widgets, + cache: false, + headers: { + 'X-Widgets-Type': 'managed', + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)== false) { + deferred.reject('WidgetsService::getManagedWidgets Failed'); + } else if(Object.keys(res).length == 0 && this.utilsService.isValidJSON(res)) { + deferred.resolve(null); + } else { + this.$log.info('WidgetsService::getManagedWidgets Succeeded'); + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + createWidget(widgetData) { + let deferred = this.$q.defer(); + this.$log.info('WidgetsService::createWidget'); + this.$http({ + method: 'POST', + url: this.conf.api.widgets, + cache: false, + data: widgetData, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)== false) { + deferred.reject('WidgetsService::createWidget Failed'); + } else { + this.$log.info('WidgetsService::createWidget Succeeded'); + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + updateWidget(widgetId, widgetData) { + let deferred = this.$q.defer(); + this.$log.info('WidgetsService::updateWidget'); + let url = this.conf.api.widgets + '/' + widgetId; + this.$http({ + method: 'PUT', + url: url, + cache: false, + data: widgetData, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)== false) { + deferred.reject('WidgetsService::updateWidget Failed'); + } else { + this.$log.info('WidgetsService::updateWidget Succeeded'); + deferred.resolve(res.data); + } + }) + .catch(errRes => { + deferred.reject(errRes); + }); + return deferred.promise; + } + + deleteWidget(widgetId) { + let deferred = this.$q.defer(); + this.$log.info('WidgetsService::deleteWidget'); + let url = this.conf.api.widgets + '/' + widgetId; + this.$http({ + method: 'DELETE', + url: url, + cache: false, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(res => { + // If response comes back as a redirected HTML page which IS NOT a success + if (this.utilsService.isValidJSON(res)== false) { + deferred.reject('WidgetsService::deleteWidget Failed'); + } else { + this.$log.info('WidgetsService::deleteWidget Succeeded'); + deferred.resolve(res.data); + } + }) + .catch(status => { + deferred.reject(status); + }); + return deferred.promise; + } + + checkIfWidgetUrlExists(urlToValidate) { + let deferred = this.$q.defer(); + this.$log.info('WidgetsService::checkIfWidgetUrlExists:' + urlToValidate); + let reqBody = { + url: urlToValidate + }; + this.$http({ + method: 'POST', + url: this.conf.api.widgetsValidation, + cache: false, + data: reqBody, + headers: { + 'X-ECOMP-RequestID':this.uuid.generate() + } + }).then(() => { + //if exists return true + deferred.resolve(true); + }) + .catch(response => { + if (this.utilsService.isValidJSON(res)== false) { + deferred.reject('WidgetsService::checkIfWidgetUrlExists Failed'); + } else { + if (response.data.status === 404) { + deferred.resolve(false); + } else { + deferred.reject(response.data); + } + } + }); + return deferred.promise; + } + + } + WidgetsService.$inject = ['$q', '$log', '$http', 'conf','uuid4', 'utilsService']; + angular.module('ecompApp').service('widgetsService', WidgetsService) +})(); diff --git a/ecomp-portal-FE-common/client/app/views/account-onboarding/account-add-details/account-add-details.html b/ecomp-portal-FE-common/client/app/views/account-onboarding/account-add-details/account-add-details.html index 91027f9e..3ecb47d0 100644 --- a/ecomp-portal-FE-common/client/app/views/account-onboarding/account-add-details/account-add-details.html +++ b/ecomp-portal-FE-common/client/app/views/account-onboarding/account-add-details/account-add-details.html @@ -123,3 +123,9 @@
  • + + diff --git a/ecomp-portal-FE-common/client/app/views/account-onboarding/account-add-details/account-add-details.js b/ecomp-portal-FE-common/client/app/views/account-onboarding/account-add-details/account-add-details.js index ff89dce3..2f9afd39 100644 --- a/ecomp-portal-FE-common/client/app/views/account-onboarding/account-add-details/account-add-details.js +++ b/ecomp-portal-FE-common/client/app/views/account-onboarding/account-add-details/account-add-details.js @@ -1,9 +1,8 @@ 'use strict'; (function () { class AccountAddDetailsCtrl { - constructor($scope, $log, $interval, basicAuthAccountSerivce, errorMessageByCode, ECOMP_URL_REGEX, $window, confirmBoxService, $cookies) { - - + constructor($scope, $log, $interval, basicAuthAccountService, errorMessageByCode, ECOMP_URL_REGEX, $window, confirmBoxService, $cookies) { + this.addEndpoint = () => { this.account.endpointList.push({ valid: true @@ -144,28 +143,24 @@ var message = "Are you sure you want to change '" + this.account.applicationName + "'?" confirmBoxService.editItem(message).then(isConfirmed => { if(isConfirmed){ - basicAuthAccountSerivce.updateAccount(this.account.id, newAccount).then(() => { + basicAuthAccountService.updateAccount(this.account.id, newAccount).then(() => { $scope.closeThisDialog(true); }); } }); }else{ - basicAuthAccountSerivce.createAccount(newAccount).then(() => { + basicAuthAccountService.createAccount(newAccount).then(() => { $scope.closeThisDialog(true); }); } - - - } - init(); $scope.$on('$stateChangeStart', e => { e.preventDefault(); }); } } - AccountAddDetailsCtrl.$inject = ['$scope', '$log', '$interval', 'basicAuthAccountSerivce', 'errorMessageByCode', 'ECOMP_URL_REGEX', '$window', 'confirmBoxService', '$cookies']; + AccountAddDetailsCtrl.$inject = ['$scope', '$log', '$interval', 'basicAuthAccountService', 'errorMessageByCode', 'ECOMP_URL_REGEX', '$window', 'confirmBoxService', '$cookies']; angular.module('ecompApp').controller('AccountAddDetailsCtrl', AccountAddDetailsCtrl); })(); \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/account-onboarding/account-onboarding.less b/ecomp-portal-FE-common/client/app/views/account-onboarding/account-onboarding.less index 8d3663c3..7c01a5ae 100644 --- a/ecomp-portal-FE-common/client/app/views/account-onboarding/account-onboarding.less +++ b/ecomp-portal-FE-common/client/app/views/account-onboarding/account-onboarding.less @@ -1,12 +1,14 @@ .account-onboarding{ - position: @page-main-position; - top: @page-main-top; - left: @page-main-left; - right: @page-main-right; - bottom: @page-main-bottom; - padding-top: @padding-top; - overflow-y: @page-main-overflow-y; - padding-left: @padding-left-side; + .bg_portalWhite;//white for 1702 + //.bg_portalGray; // gray for 1610 + position: @page-main-position; + top: @page-main-top; + left: @page-main-left; + right: @page-main-right; + bottom: @page-main-bottom; + padding-top: @padding-top; + overflow-y: @page-main-overflow-y; + padding-left: @padding-left-side; .account-table { width: @table-width; @@ -17,8 +19,4 @@ } } - .delete-account{ - .ico_trash_default; - } - } \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/account-onboarding/account-onboarding.tpl.html b/ecomp-portal-FE-common/client/app/views/account-onboarding/account-onboarding.tpl.html index 5f46a1cc..d5a3c245 100644 --- a/ecomp-portal-FE-common/client/app/views/account-onboarding/account-onboarding.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/account-onboarding/account-onboarding.tpl.html @@ -61,7 +61,7 @@ diff --git a/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.controller.js b/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.controller.js index 5a164e1a..9aec9b4f 100644 --- a/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.controller.js +++ b/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.controller.js @@ -1,252 +1,253 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ - -'use strict'; -(function () { - class NewAdminModalCtrl { - constructor($log, adminsService, $scope, confirmBoxService, utilsService, $location) { - - let init = () => { - this.isSaving = false; - this.originalApps = []; - /* istanbul ignore if */ - if ($scope.ngDialogData && $scope.ngDialogData.selectedUser && $scope.ngDialogData.dialogState) { - this.selectedUser = $scope.ngDialogData.selectedUser; - this.dialogState = $scope.ngDialogData.dialogState; - this.isShowBack = false; - if (this.dialogState === 2) { - this.getAdminAppsRoles(); - } - } else { - this.isShowBack = true; - this.selectedUser = null; - this.dialogState = 1; - } - - //this.searchUsersInProgress = false; - //this.showNewAdminAppDropdown = false; - $log.info('NewAdminModalCtrl::initiated'); - this.appsOrder = []; - }; - - let orderList = (apps) => { - this.appsOrder = []; - for (var i = 0; i < apps.length; i++) { - if (apps[i].isAdmin) { - this.appsOrder.push(apps[i].id); - } - } - }; - - this.orderFilter = app => { - if (!app || !app.id || !this.appsOrder.length) { - return; - } - return this.appsOrder.indexOf(app.id); - }; - - /** - * this function get the selected admin apps roles - */ - this.getAdminAppsRoles = () => { - if (!this.selectedUser || !this.selectedUser.orgUserId) { - $log.error('No user is selected / searchUsers is InProgress'); - this.dialogState = 1; - return; - } - adminsService.getAdminAppsRoles(this.selectedUser.orgUserId).then(roles => { - $log.debug('apps roles res: ', JSON.stringify(roles)); - if (!roles.appsRoles) { - return; - } - - this.adminAppsRoles = []; - for (var i = 0; i < roles.appsRoles.length; i++) { - if (!roles.appsRoles[i].restrictedApp) { - $log.debug('pushing: {id: ', roles.appsRoles[i].id, - 'name: ', roles.appsRoles[i].appName, - 'restrictedApp: ', roles.appsRoles[i].restrictedApp, - 'isAdmin: ', roles.appsRoles[i].isAdmin, '}'); - this.adminAppsRoles.push({ - id: roles.appsRoles[i].id, - appName: roles.appsRoles[i].appName, - isAdmin: roles.appsRoles[i].isAdmin, - restrictedApp: roles.appsRoles[i].restrictedApp - }); - } - } - this.dialogState = 2; - this.adminAppsRoles = this.adminAppsRoles.sort(getSortOrder("appName")); - - orderList(roles.appsRoles); - if (this.appsOrder != null) { - for (var j = 0; j < this.appsOrder.length; j++) { - this.originalApps.push(this.appsOrder[j]); - } - } - }).catch(err => { - $log.error(err); - }); - }; - - // Refactor this into a directive - let getSortOrder = (prop) => { - return function (a, b) { - if (a[prop].toLowerCase() > b[prop].toLowerCase()) { - return 1; - } else if (a[prop].toLowerCase() < b[prop].toLowerCase()) { - return -1; - } - return 0; - } - } - - /** - * this function set the selected user - * @param user: selected user object - */ - this.setSelectedUser = (user) => { - $log.debug('selected user: ', user); - this.selectedUser = user; - }; - - /** - * Mark the user as not admin of the selected app - * @param app: selected app object - */ - this.unadminApp = (app) => { - confirmBoxService.deleteItem(app.appName).then(confirmed => { - if (confirmed === true) { - app.isAdmin = false; - this.appsOrder.splice(this.appsOrder.indexOf(app.id), 1); - } - }).catch(err => { - $log(err); - }); - }; - - /** - * update the selected admin app with the new roles - */ - this.updateAdminAppsRoles = () => { - if (!this.selectedUser || !this.selectedUser.orgUserId || !this.adminAppsRoles) { - return; - } - this.isSaving = true; - $log.debug('going to update user: ' + this.selectedUser.orgUserId + ' with app roles: ' + JSON.stringify(this.adminAppsRoles)); - confirmBoxService.makeAdminChanges('Are you sure you want to make these admin changes?') - .then(confirmed => { - if(confirmed === true){ - adminsService.updateAdminAppsRoles({ - orgUserId: this.selectedUser.orgUserId, - appsRoles: this.adminAppsRoles - }) - .then(res => { - $log.debug('Admin apps roles updated successfully!', res); - //close and resolve dialog promise with true (to update the table) - this.remindToAddUserIfNecessary(); - $scope.closeThisDialog(true); - }).catch(err => { - $log.error('NewAdminModalCtrl.updateAdminAppsRoles:: Failed - ' + err); - }).finally(()=> { - this.isSaving = false; - }) - }else{ - this.isSaving = false; - } - }); - }; - - /** - * Navigate between dialog screens using step number: 1,2,... - */ - this.navigateBack = () => { - if (this.dialogState === 1) { - //back from 1st screen? - } - if (this.dialogState === 2) { - this.dialogState = 1; - } - }; - - init(); - - /** - * each time new app is selected in the drop down, - * add it to the user administrated apps list - */ - $scope.$watch('newAdmin.selectedNewApp', (newVal) => { - if (!newVal || newVal.isAdmin === undefined) { - return; - } - //newVal.isAdmin = true; - track by ruined this, here is the workaround: - let app = _.find(this.adminAppsRoles, {id: newVal.id}); - if (app) { - app.isAdmin = true; - this.appsOrder.push(app.id); - } - this.selectedNewApp = null; - //this.showNewAdminAppDropdown = false; - }); - - $scope.$on('$stateChangeStart', e => { - //Disable navigation when modal is opened - //**Nabil - note: this will cause the history back state to be replaced with current state - e.preventDefault(); - }); - - /** - * If an Admin was added for an application remind the portal admin to add the admin as a user - */ - this.remindToAddUserIfNecessary = () => { - - var adminAddedToNewApp = false; - if ((this.originalApps != null) && (this.originalApps.length > 0)) { - for (var i = 0; i < this.appsOrder.length; i++) { - var foundApp = false; - for (var j = 0; j < this.originalApps.length; j++) { - if (this.originalApps[j] === this.appsOrder[i]) { - foundApp = true; - } - } - if (foundApp === false) { - adminAddedToNewApp = true; - break; - } - } - } else { - adminAddedToNewApp = true; - } - - if (adminAddedToNewApp === true) { - confirmBoxService.confirm('Add this person as an application user? This allows them to access the application from ECOMP Portal. Press OK to go to the Add Users page.') - .then(confirmed => { - if (confirmed === true) { - $location.path('/users'); - } - }); - } - } - - } - } - NewAdminModalCtrl.$inject = ['$log', 'adminsService', '$scope', 'confirmBoxService', 'utilsService', '$location']; - angular.module('ecompApp').controller('NewAdminModalCtrl', NewAdminModalCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ + +'use strict'; +(function () { + class NewAdminModalCtrl { + constructor($log, adminsService, $scope, confirmBoxService, utilsService, $location) { + + let init = () => { + this.isSaving = false; + this.originalApps = []; + /* istanbul ignore if */ + if ($scope.ngDialogData && $scope.ngDialogData.selectedUser && $scope.ngDialogData.dialogState) { + this.selectedUser = $scope.ngDialogData.selectedUser; + this.dialogState = $scope.ngDialogData.dialogState; + this.isShowBack = false; + if (this.dialogState === 2) { + this.getAdminAppsRoles(); + } + } else { + this.isShowBack = true; + this.selectedUser = null; + this.dialogState = 1; + } + + //this.searchUsersInProgress = false; + //this.showNewAdminAppDropdown = false; + $log.info('NewAdminModalCtrl::initiated'); + this.appsOrder = []; + }; + + let orderList = (apps) => { + this.appsOrder = []; + for (var i = 0; i < apps.length; i++) { + if (apps[i].isAdmin) { + this.appsOrder.push(apps[i].id); + } + } + }; + + this.orderFilter = app => { + if (!app || !app.id || !this.appsOrder.length) { + return; + } + return this.appsOrder.indexOf(app.id); + }; + + /** + * this function get the selected admin apps roles + */ + this.getAdminAppsRoles = () => { + if (!this.selectedUser || !this.selectedUser.orgUserId) { + $log.error('No user is selected / searchUsers is InProgress'); + this.dialogState = 1; + return; + } + adminsService.getAdminAppsRoles(this.selectedUser.orgUserId).then(roles => { + $log.debug('apps roles res: ', JSON.stringify(roles)); + if (!roles.appsRoles) { + return; + } + + this.adminAppsRoles = []; + for (var i = 0; i < roles.appsRoles.length; i++) { + if (!roles.appsRoles[i].restrictedApp) { + $log.debug('pushing: {id: ', roles.appsRoles[i].id, + 'name: ', roles.appsRoles[i].appName, + 'restrictedApp: ', roles.appsRoles[i].restrictedApp, + 'isAdmin: ', roles.appsRoles[i].isAdmin, '}'); + this.adminAppsRoles.push({ + id: roles.appsRoles[i].id, + appName: roles.appsRoles[i].appName, + isAdmin: roles.appsRoles[i].isAdmin, + restrictedApp: roles.appsRoles[i].restrictedApp + }); + } + } + this.dialogState = 2; + this.adminAppsRoles = this.adminAppsRoles.sort(getSortOrder("appName")); + + orderList(roles.appsRoles); + if (this.appsOrder != null) { + for (var j = 0; j < this.appsOrder.length; j++) { + this.originalApps.push(this.appsOrder[j]); + } + } + }).catch(err => { + $log.error(err); + }); + }; + + // Refactor this into a directive + let getSortOrder = (prop) => { + return function (a, b) { + if (a[prop].toLowerCase() > b[prop].toLowerCase()) { + return 1; + } else if (a[prop].toLowerCase() < b[prop].toLowerCase()) { + return -1; + } + return 0; + } + } + + /** + * this function set the selected user + * @param user: selected user object + */ + this.setSelectedUser = (user) => { + $log.debug('selected user: ', user); + this.selectedUser = user; + }; + + /** + * Mark the user as not admin of the selected app + * @param app: selected app object + */ + this.unadminApp = (app) => { + confirmBoxService.deleteItem(app.appName).then(confirmed => { + if (confirmed === true) { + app.isAdmin = false; + this.appsOrder.splice(this.appsOrder.indexOf(app.id), 1); + } + }).catch(err => { + $log(err); + }); + }; + + /** + * update the selected admin app with the new roles + */ + this.updateAdminAppsRoles = () => { + if (!this.selectedUser || !this.selectedUser.orgUserId || !this.adminAppsRoles) { + return; + } + this.isSaving = true; + $log.debug('going to update user: ' + this.selectedUser.orgUserId + ' with app roles: ' + JSON.stringify(this.adminAppsRoles)); + confirmBoxService.makeAdminChanges('Are you sure you want to make these admin changes?') + .then(confirmed => { + if(confirmed === true){ + adminsService.updateAdminAppsRoles({ + orgUserId: this.selectedUser.orgUserId, + appsRoles: this.adminAppsRoles + }) + .then(res => { + $log.debug('Admin apps roles updated successfully!', res); + //close and resolve dialog promise with true (to update the table) + this.remindToAddUserIfNecessary(); + $scope.closeThisDialog(true); + }).catch(err => { + $log.error('NewAdminModalCtrl.updateAdminAppsRoles:: Failed - ' + err); + }).finally(()=> { + this.isSaving = false; + }) + }else{ + this.isSaving = false; + } + }); + }; + + /** + * Navigate between dialog screens using step number: 1,2,... + */ + this.navigateBack = () => { + if (this.dialogState === 1) { + //back from 1st screen? + } + if (this.dialogState === 2) { + this.dialogState = 1; + } + }; + + init(); + + /** + * each time new app is selected in the drop down, + * add it to the user administrated apps list + */ + $scope.$watch('newAdmin.selectedNewApp.value', (newVal) => { + var newVal= JSON.parse(newVal); + if (!newVal || newVal.isAdmin === undefined) { + return; + } + //newVal.isAdmin = true; - track by ruined this, here is the workaround: + let app = _.find(this.adminAppsRoles, {id: newVal.id}); + if (app) { + app.isAdmin = true; + this.appsOrder.push(app.id); + } + this.selectedNewApp = null; + //this.showNewAdminAppDropdown = false; + }); + + $scope.$on('$stateChangeStart', e => { + //Disable navigation when modal is opened + //**Nabil - note: this will cause the history back state to be replaced with current state + e.preventDefault(); + }); + + /** + * If an Admin was added for an application remind the portal admin to add the admin as a user + */ + this.remindToAddUserIfNecessary = () => { + + var adminAddedToNewApp = false; + if ((this.originalApps != null) && (this.originalApps.length > 0)) { + for (var i = 0; i < this.appsOrder.length; i++) { + var foundApp = false; + for (var j = 0; j < this.originalApps.length; j++) { + if (this.originalApps[j] === this.appsOrder[i]) { + foundApp = true; + } + } + if (foundApp === false) { + adminAddedToNewApp = true; + break; + } + } + } else { + adminAddedToNewApp = true; + } + + if (adminAddedToNewApp === true) { + confirmBoxService.confirm('Add this person as an application user? This allows them to access the application from ECOMP Portal. Press OK to go to the Add Users page.') + .then(confirmed => { + if (confirmed === true) { + $location.path('/users'); + } + }); + } + } + + } + } + NewAdminModalCtrl.$inject = ['$log', 'adminsService', '$scope', 'confirmBoxService', 'utilsService', '$location']; + angular.module('ecompApp').controller('NewAdminModalCtrl', NewAdminModalCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.controller.spec.js b/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.controller.spec.js index 540459ed..c6011d18 100644 --- a/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.controller.spec.js @@ -1,134 +1,134 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 12/8/15. - */ -'use strict'; - -describe('Controller: NewAdminCtrl ', () => { - beforeEach(module('ecompApp')); - - //destroy $http default cache before starting to prevent the error 'default cache already exists' - beforeEach(inject((_CacheFactory_)=> { - _CacheFactory_.destroyAll(); - })); - - - let newCtrl, $controller, $q, $rootScope, $log; - - beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { - [$controller, $q, $rootScope, $log] = [_$controller_, _$q_, _$rootScope_, _$log_]; - })); - - let deferredAdminAppsRoles, deferredUpdateRolesRes; - let adminsServiceMock; - beforeEach(()=> { - [deferredAdminAppsRoles, deferredUpdateRolesRes] = [$q.defer(), $q.defer()]; - - adminsServiceMock = jasmine.createSpyObj('adminsServiceMock', ['getAdminAppsRoles', 'updateAdminAppsRoles']); - - adminsServiceMock.getAdminAppsRoles.and.returnValue(deferredAdminAppsRoles.promise); - adminsServiceMock.updateAdminAppsRoles.and.returnValue(deferredUpdateRolesRes.promise); - - newCtrl = $controller('NewAdminModalCtrl', { - $log: $log, - adminsService: adminsServiceMock, - $scope: $rootScope - }); - }); - - it('should init default values when loading the controller', ()=> { - expect(newCtrl.dialogState).toBe(1); - expect(newCtrl.selectedUser).toBe(null); - }); - - it('should populate admin apps roles and move to the next screen when adminsService.getAdminAppsRoles succeeded', ()=> { - let userApps = {appsRoles: [{id: 1, isAdmin: false}, {id: 2, isAdmin: true}]}; - deferredAdminAppsRoles.resolve(userApps); - - newCtrl.selectedUser = {orgUserId: 'orgUserId'}; - - newCtrl.getAdminAppsRoles(); - $rootScope.$apply(); - - expect(adminsServiceMock.getAdminAppsRoles).toHaveBeenCalledWith(newCtrl.selectedUser.orgUserId); - expect(newCtrl.adminAppsRoles).toEqual(userApps.appsRoles); - expect(newCtrl.dialogState).toBe(2); - }); - - it('should log the error when adminsService.getAdminAppsRoles fails', ()=> { - spyOn($log, 'error'); - deferredAdminAppsRoles.reject('some error'); - - newCtrl.searchUsersInProgress = false; - newCtrl.selectedUser = {orgUserId: 'orgUserId'}; - - newCtrl.getAdminAppsRoles(); - $rootScope.$apply(); - - expect($log.error).toHaveBeenCalled(); - }); - it('should log the error when trying to getAdminAppsRoles without selecting user ', ()=> { - spyOn($log, 'error'); - - newCtrl.searchUsersInProgress = false; - newCtrl.selectedUser = null; - - newCtrl.getAdminAppsRoles(); - $rootScope.$apply(); - - expect($log.error).toHaveBeenCalled(); - }); - - it('should set isAdmin as true when adding app via the dropdown menu', ()=> { - newCtrl.adminAppsRoles = [{id: 1, isAdmin: false},{id: 2, isAdmin: true}]; - //simulate UI change - $rootScope.$apply('newAdmin.selectedNewApp = null'); - $rootScope.$apply('newAdmin.selectedNewApp = {id: 1, isAdmin: true}'); - - expect(newCtrl.adminAppsRoles[0].isAdmin).toBe(true); - expect(newCtrl.selectedNewApp).toBe(null); - }); - - it('should close the modal when updating apps roles succeeded', ()=> { - $rootScope.closeThisDialog = () => {}; - spyOn($rootScope,'closeThisDialog'); - - newCtrl.selectedUser = {orgUserId: 'orgUserId'}; - newCtrl.adminAppsRoles = [{id: 1}]; - - deferredUpdateRolesRes.resolve(); - newCtrl.updateAdminAppsRoles(); - $rootScope.$apply(); - - expect(adminsServiceMock.updateAdminAppsRoles).toHaveBeenCalledWith({orgUserId: newCtrl.selectedUser.orgUserId, appsRoles: newCtrl.adminAppsRoles}); - expect($rootScope.closeThisDialog).toHaveBeenCalled(); - }); - it('should log the error when updating apps roles fails', ()=> { - newCtrl.selectedUser = {orgUserId: 'orgUserId'}; - newCtrl.adminAppsRoles = [{id: 1}]; - - spyOn($log,'error'); - deferredUpdateRolesRes.reject(); - newCtrl.updateAdminAppsRoles(); - $rootScope.$apply(); - expect($log.error).toHaveBeenCalled(); - }); -}); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 12/8/15. + */ +'use strict'; + +describe('Controller: NewAdminCtrl ', () => { + beforeEach(module('ecompApp')); + + //destroy $http default cache before starting to prevent the error 'default cache already exists' + beforeEach(inject((_CacheFactory_)=> { + _CacheFactory_.destroyAll(); + })); + + + let newCtrl, $controller, $q, $rootScope, $log; + + beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { + [$controller, $q, $rootScope, $log] = [_$controller_, _$q_, _$rootScope_, _$log_]; + })); + + let deferredAdminAppsRoles, deferredUpdateRolesRes; + let adminsServiceMock; + beforeEach(()=> { + [deferredAdminAppsRoles, deferredUpdateRolesRes] = [$q.defer(), $q.defer()]; + + adminsServiceMock = jasmine.createSpyObj('adminsServiceMock', ['getAdminAppsRoles', 'updateAdminAppsRoles']); + + adminsServiceMock.getAdminAppsRoles.and.returnValue(deferredAdminAppsRoles.promise); + adminsServiceMock.updateAdminAppsRoles.and.returnValue(deferredUpdateRolesRes.promise); + + newCtrl = $controller('NewAdminModalCtrl', { + $log: $log, + adminsService: adminsServiceMock, + $scope: $rootScope + }); + }); + + it('should init default values when loading the controller', ()=> { + expect(newCtrl.dialogState).toBe(1); + expect(newCtrl.selectedUser).toBe(null); + }); + + it('should populate admin apps roles and move to the next screen when adminsService.getAdminAppsRoles succeeded', ()=> { + let userApps = {appsRoles: [{id: 1, isAdmin: false}, {id: 2, isAdmin: true}]}; + deferredAdminAppsRoles.resolve(userApps); + + newCtrl.selectedUser = {orgUserId: 'orgUserId'}; + + newCtrl.getAdminAppsRoles(); + $rootScope.$apply(); + + expect(adminsServiceMock.getAdminAppsRoles).toHaveBeenCalledWith(newCtrl.selectedUser.orgUserId); + expect(newCtrl.adminAppsRoles).toEqual(userApps.appsRoles); + expect(newCtrl.dialogState).toBe(2); + }); + + it('should log the error when adminsService.getAdminAppsRoles fails', ()=> { + spyOn($log, 'error'); + deferredAdminAppsRoles.reject('some error'); + + newCtrl.searchUsersInProgress = false; + newCtrl.selectedUser = {orgUserId: 'orgUserId'}; + + newCtrl.getAdminAppsRoles(); + $rootScope.$apply(); + + expect($log.error).toHaveBeenCalled(); + }); + it('should log the error when trying to getAdminAppsRoles without selecting user ', ()=> { + spyOn($log, 'error'); + + newCtrl.searchUsersInProgress = false; + newCtrl.selectedUser = null; + + newCtrl.getAdminAppsRoles(); + $rootScope.$apply(); + + expect($log.error).toHaveBeenCalled(); + }); + + it('should set isAdmin as true when adding app via the dropdown menu', ()=> { + newCtrl.adminAppsRoles = [{id: 1, isAdmin: false},{id: 2, isAdmin: true}]; + //simulate UI change + $rootScope.$apply('newAdmin.selectedNewApp = null'); + $rootScope.$apply('newAdmin.selectedNewApp = {id: 1, isAdmin: true}'); + + expect(newCtrl.adminAppsRoles[0].isAdmin).toBe(true); + expect(newCtrl.selectedNewApp).toBe(null); + }); + + it('should close the modal when updating apps roles succeeded', ()=> { + $rootScope.closeThisDialog = () => {}; + spyOn($rootScope,'closeThisDialog'); + + newCtrl.selectedUser = {orgUserId: 'orgUserId'}; + newCtrl.adminAppsRoles = [{id: 1}]; + + deferredUpdateRolesRes.resolve(); + newCtrl.updateAdminAppsRoles(); + $rootScope.$apply(); + + expect(adminsServiceMock.updateAdminAppsRoles).toHaveBeenCalledWith({orgUserId: newCtrl.selectedUser.orgUserId, appsRoles: newCtrl.adminAppsRoles}); + expect($rootScope.closeThisDialog).toHaveBeenCalled(); + }); + it('should log the error when updating apps roles fails', ()=> { + newCtrl.selectedUser = {orgUserId: 'orgUserId'}; + newCtrl.adminAppsRoles = [{id: 1}]; + + spyOn($log,'error'); + deferredUpdateRolesRes.reject(); + newCtrl.updateAdminAppsRoles(); + $rootScope.$apply(); + expect($log.error).toHaveBeenCalled(); + }); +}); diff --git a/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.modal.html b/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.modal.html index 1b1b9de8..a18b8f60 100644 --- a/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.modal.html +++ b/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.modal.html @@ -31,8 +31,7 @@ - - +
    @@ -43,16 +42,14 @@
    -
    - +
    +
    - +
    @@ -75,3 +72,9 @@
    + + diff --git a/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.modal.less b/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.modal.less index 8b304b43..f7c1111d 100644 --- a/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.modal.less +++ b/ecomp-portal-FE-common/client/app/views/admins/add-admin-dialogs/new-admin.modal.less @@ -47,7 +47,7 @@ } .admin-roles-list { - height: 240px; + height: 185px; overflow-y: auto; } @@ -73,6 +73,10 @@ color: transparent; margin-left: 8px; } + + .awd-select-list { + max-height: 205px; + } } diff --git a/ecomp-portal-FE-common/client/app/views/admins/admins.controller.spec.js b/ecomp-portal-FE-common/client/app/views/admins/admins.controller.spec.js index 3841a2b3..32cc3a1f 100644 --- a/ecomp-portal-FE-common/client/app/views/admins/admins.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/admins/admins.controller.spec.js @@ -1,19 +1,19 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ diff --git a/ecomp-portal-FE-common/client/app/views/admins/admins.less b/ecomp-portal-FE-common/client/app/views/admins/admins.less index 729ef693..38760ca3 100644 --- a/ecomp-portal-FE-common/client/app/views/admins/admins.less +++ b/ecomp-portal-FE-common/client/app/views/admins/admins.less @@ -1,6 +1,7 @@ .w-ecomp-admins-page-main { + .bg_portalWhite;//white for 1702 - position: @page-main-position; + position: @page-main-position; top: @page-main-top; left: @page-main-left; right: @page-main-right; @@ -8,38 +9,42 @@ padding-top: @padding-top; overflow-y: @page-main-overflow-y; padding-left: @padding-left-side; -#input-table-search::-webkit-input-placeholder, -{ -font-style: italic; - color: #D7D7D7; - -} + #input-table-search::-webkit-input-placeholder, + { + font-style: italic; + color: #D7D7D7; + + } .ecomp-spinner{ top: 255px; } + .table-admins-div{ + width:15px; + font-size:23px; + cursor: pointer; + } .admins-home-container { - position: relative; - padding-right: 0; - padding-left: 0; - padding-bottom: @container-bottom; + position: relative; + padding-right: 0; + padding-left: 0; + padding-bottom: @container-bottom; - .admins-table { - width: @table-width; - //margin-left: @table-margin-left; - margin: 0 auto; + .admins-table { + width: @table-width; + //margin-left: @table-margin-left; + margin: 0 auto; - .table-control { - .table-dropdown-filter { - width: @table-dropdown-filter-width; - display: @table-dropdown-filter-display; - } - } + .table-control { + .table-dropdown-filter { + width: @table-dropdown-filter-width; + display: @table-dropdown-filter-display; + } + } - .table-body { - cursor: pointer; - } - } + .table-body { + cursor: pointer; + } + } } } - diff --git a/ecomp-portal-FE-common/client/app/views/admins/admins.tpl.html b/ecomp-portal-FE-common/client/app/views/admins/admins.tpl.html index 907bf323..f9ea3ff9 100644 --- a/ecomp-portal-FE-common/client/app/views/admins/admins.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/admins/admins.tpl.html @@ -1,66 +1,66 @@ - -
    -
    -
    -

    Admins

    -
    -
    -
    -
    -
    - -
    -
    - -
    - -
    -
    - -
    - - - - - - - - - - - - - - - - - -
    First NameLast NameUser IDApplications
    -
    -
    -
    -
    -
    -
    - -
    + +
    +
    +
    +

    Admins

    +
    +
    +
    +
    +
    + +
    +
    + +
    + +
    +
    + +
    + + + + + + + + + + + + + + + + + +
    First NameLast NameUser IDApplications
    +
    +
    +
    +
    +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/catalog/add-catalog-dialogs/new-catalog.modal.less b/ecomp-portal-FE-common/client/app/views/catalog/add-catalog-dialogs/new-catalog.modal.less index b98289e7..5568ca8e 100644 --- a/ecomp-portal-FE-common/client/app/views/catalog/add-catalog-dialogs/new-catalog.modal.less +++ b/ecomp-portal-FE-common/client/app/views/catalog/add-catalog-dialogs/new-catalog.modal.less @@ -1,125 +1,125 @@ -.new-catalog-modal { - height: 430px; - - .user-catalog-roles{ - .title{ - //.n18r; - .dGray18r; //AT&T Dark Gray - border-bottom: @portalDBlue 3px solid; - } - - input:not([type="button"]) { - height: 13px; -} - .display-userApp-Catalog-Roles - { - padding-left: 16px; - padding-top: 10px; - font-family: Omnes-ECOMP-W02,Arial; - font-size: 18px; - color: #5a5a5a; - } - - #pending-checkbox{ - font-family: Omnes-ECOMP-W02,Arial; - font-size: 15px; - color: #5a5a5a; - } - .app-catalog-roles-list{ - height: 286px; - - - .app-catalog-item{ - border: 1px solid @portalLGray; - border-radius: 2px; - background-color: @funcBkgGray; - - padding: 10px; - margin-top: 8px; - //margin-right: 6px; - //margin-left: 6px; - - .app-catalog-item-left{ - padding-top: 0; - line-height: 30px; - height: 30px; - vertical-align: middle; - display:inline-block; - width: 45%; - border-radius: 2px; - border: 1px solid @portalLGray; - margin-right: 10px; - padding-left: 4px; - background: @portalWhite; - white-space: nowrap; - - } - .app-catalog-item-right{ - display:inline-block; - width: 45%; - border-radius: 2px; - border: 1px solid @portalLGray; - background: @portalWhite; - vertical-align: middle; - } - - .app-catalog-item-right-error{ - .portalRed; - padding: 7px 7px 7px 7px; - display:inline-block; - width: 45%; - border-radius: 2px; - border: 1px solid @portalLGray; - background: @portalWhite; - vertical-align: middle; - } - - .app-catalog-item-right-contacting{ - .portalGreen; - padding: 7px 7px 7px 7px; - display:inline-block; - width: 45%; - border-radius: 2px; - border: 1px solid @portalLGray; - background: @portalWhite; - vertical-align: middle; - } - - .app-select-left{ - width: 45%; - margin-right: 10px; - vertical-align: middle; - - - .select-field{ - padding-top: 0; - line-height: 30px; - height: 30px; - vertical-align: middle; - border-radius: 2px; - border: 1px solid @portalLGray; - margin-right: 10px; - padding-left: 4px; - background: @portalWhite; - display:inline-block; - } - } - - - .app-item-delete{ - .ico_trash_default; - display: inline-block; - vertical-align: 2px; - cursor: pointer; - position: relative; - top: 6px; - color: transparent; - margin-left: 8px; - - } - - } - } - - } -} +.new-catalog-modal { + height: 430px; + + .user-catalog-roles{ + .title{ + //.n18r; + .dGray18r; //AT&T Dark Gray + border-bottom: @portalDBlue 3px solid; + } + + input:not([type="button"]) { + height: 13px; +} + .display-userApp-Catalog-Roles + { + padding-left: 16px; + padding-top: 10px; + font-family: Omnes-ECOMP-W02,Arial; + font-size: 18px; + color: #5a5a5a; + } + + #pending-checkbox{ + font-family: Omnes-ECOMP-W02,Arial; + font-size: 15px; + color: #5a5a5a; + } + .app-catalog-roles-list{ + height: 286px; + + + .app-catalog-item{ + border: 1px solid @portalLGray; + border-radius: 2px; + background-color: @funcBkgGray; + + padding: 10px; + margin-top: 8px; + //margin-right: 6px; + //margin-left: 6px; + + .app-catalog-item-left{ + padding-top: 0; + line-height: 30px; + height: 30px; + vertical-align: middle; + display:inline-block; + width: 45%; + border-radius: 2px; + border: 1px solid @portalLGray; + margin-right: 10px; + padding-left: 4px; + background: @portalWhite; + white-space: nowrap; + + } + .app-catalog-item-right{ + display:inline-block; + width: 45%; + border-radius: 2px; + border: 1px solid @portalLGray; + background: @portalWhite; + vertical-align: middle; + } + + .app-catalog-item-right-error{ + .portalRed; + padding: 7px 7px 7px 7px; + display:inline-block; + width: 45%; + border-radius: 2px; + border: 1px solid @portalLGray; + background: @portalWhite; + vertical-align: middle; + } + + .app-catalog-item-right-contacting{ + .portalGreen; + padding: 7px 7px 7px 7px; + display:inline-block; + width: 45%; + border-radius: 2px; + border: 1px solid @portalLGray; + background: @portalWhite; + vertical-align: middle; + } + + .app-select-left{ + width: 45%; + margin-right: 10px; + vertical-align: middle; + + + .select-field{ + padding-top: 0; + line-height: 30px; + height: 30px; + vertical-align: middle; + border-radius: 2px; + border: 1px solid @portalLGray; + margin-right: 10px; + padding-left: 4px; + background: @portalWhite; + display:inline-block; + } + } + + + .app-item-delete{ + .ico_trash_default; + display: inline-block; + vertical-align: 2px; + cursor: pointer; + position: relative; + top: 6px; + color: transparent; + margin-left: 8px; + + } + + } + } + + } +} diff --git a/ecomp-portal-FE-common/client/app/views/catalog/catalog.controller.js b/ecomp-portal-FE-common/client/app/views/catalog/catalog.controller.js index ad34b08d..150a305e 100644 --- a/ecomp-portal-FE-common/client/app/views/catalog/catalog.controller.js +++ b/ecomp-portal-FE-common/client/app/views/catalog/catalog.controller.js @@ -1,238 +1,245 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -function _classCallCheck(instance, Constructor) { - if (!(instance instanceof Constructor)) { - throw new TypeError('Cannot call a class as a function'); - } -} - -(function() { - var HTTP_PROTOCOL_RGX = /https?:\/\//; - - var CatalogCtrl = function CatalogCtrl(conf, catalogService, confirmBoxService, ExternalRequestAccessService, - $log, $window, userProfileService, applicationsService, $scope, $state, - $timeout, $interval, $modal, ngDialog) { - - this.conf = conf; - var _this = this; - _classCallCheck(this, CatalogCtrl); - - // activate spinner - this.isLoading = true; - $scope.getAppCatalogIsDone = false; - $scope.radioValue = 'All'; - $scope.$watch('radioValue', function(newValue, oldValue) { - var appCatalog = $scope.appCatalog; - $scope.appCatalog = []; - $scope.appCatalog = appCatalog; - - - }); - - this.catalogService = catalogService; - this.userProfileService = userProfileService; - this.applicationsService = applicationsService; - var resultAccessValue = null; - $scope.demoNum = 1; - $scope.appRoles = []; - - let init = () => { - getExternalAccess(); - }; - - var getExternalAccess = () => { - ExternalRequestAccessService.getExternalRequestAccessServiceInfo().then( - function(property) { - resultAccessValue = property.accessValue; - // $log.info(res); - }).catch(err => { - $log.error('CatalogCtrl: failed getExternalRequestAccessServiceInfo: ' + JSON.stringify(err)); - }); - }; - - - - $scope.applyPresentationDetailsToAppsCatalog = function(res, value) { - - _this.apps = res; - var rowNo = 0; - - // defend against error string result - - // a huge list that should never happen. - var maxItems = 333; - if (_this.apps.length < maxItems) - maxItems = _this.apps.length; - for (var i = 0; i < maxItems; i++) { - let imgLnk = ''; - if (_this.apps[i].imageUrl) - imgLnk = conf.api.appThumbnail.replace(':appId', _this.apps[i].id); - //$log.debug('CatalogCtlr::applyPresn: imgLink = ' + imgLnk); - $scope.appCatalog[i] = { - sizeX : 2, - sizeY : 2, - id : _this.apps[i].id, - headerText : _this.apps[i].name, - imageLink : imgLnk, - restricted : _this.apps[i].restricted, - select : _this.apps[i].select, - access : _this.apps[i].access, - pending: _this.apps[i].pending, - mlproperty: value - }; - } - //$log.debug('CatalogCtrl: getAppCatalog count : ' - // + $scope.appCatalog.length); - _this.isLoading = false; - $scope.getAppCatalogIsDone = true; - } - - let getAppsCatalog = () => { - catalogService.getAppCatalog() - .then(appsList => { - $scope.applyPresentationDetailsToAppsCatalog(appsList); - }).catch(err => { - confirmBoxService.showInformation('There was a problem retrieving the Applications. ' + - 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); - $log.error('CatalogCtrl:openAddRoleModal: Error: ', err); - }); - }; - - this.openAddRoleModal = (item) => { - let data = null; - - if((!item.restricted) && (item.mlproperty)){ - data = { - dialogState: 2, - selectedUser:{ - attuid: $scope.attuid, - firstName: $scope.firstName, - lastName: $scope.lastName, - headerText: item.headerText, - item: item - - } - } - ngDialog.open({ - templateUrl: 'app/views/catalog/add-catalog-dialogs/new-catalog.modal.html', - controller: 'NewCatalogModalCtrl', - controllerAs: 'userInfo', - data: data - }).closePromise.then(needUpdate => { - if(needUpdate.value === true){ - getAppsCatalog(); - } - - }); - } - }; - - // Run this function when user clicks on checkbox. - this.storeSelection = function(item) { - // $log.debug('CatalogCtrl:storeSelection: item.id is ' + item.id + ', select is ' + item.select); - var pendingFlag = false; - - if(item.access) - pendingFlag = false; - else - pendingFlag = item.pending; - - var appData = { - appId : item.id, - select : item.select, - pending : pendingFlag // TODO - }; - - catalogService.updateManualAppSort(appData).then( - function(result) { - // $log.debug('CatalogCtrl:storeSelection result is ', result); - })['catch'](function(err) { - $log.error('CatalogCtrl:storeSelection: exception: ', err); - }); - catalogService.updateAppCatalog(appData).then( - function(result) { - // $log.debug('CatalogCtrl:storeSelection result is ', result); - })['catch'](function(err) { - $log.error('CatalogCtrl:storeSelection: exception: ', err); - }); - }; - - userProfileService - .getUserProfile() - .then( - function(profile) { - $scope.attuid = profile.orgUserId; - $scope.firstName = profile.firstName; - $scope.lastName = profile.lastName; - $scope.appCatalog = []; - - catalogService.getAppCatalog().then( - function(res) { - $scope.applyPresentationDetailsToAppsCatalog(res, resultAccessValue); - })['catch'](function(err) { - $log.error('CatalogCtrl: failed getAppCatalog: ', JSON.stringify(err)); - _this.isLoading = false; - $scope.getAppCatalogIsDone = true; - }); - }); - - // applicationsService.getUserApps() - - - this.gridsterOpts = { - columns : 12, - colWidth : 95, - rowHeight : 95, - margins : [ 20, 20 ], - outerMargin : true, - pushing : true, - floating : true, - swapping : true, - }; - - if (getParameterByName('noUserError') != null) { - if (getParameterByName('noUserError') == "Show") { - $("#errorInfo").show(); - } - - } - - init(); - }; - - CatalogCtrl.$inject = [ 'conf', 'catalogService', 'confirmBoxService', 'ExternalRequestAccessService', '$log', - '$window', 'userProfileService', 'applicationsService', '$scope', - '$state', '$timeout', '$interval', '$modal', 'ngDialog' ]; - angular.module('ecompApp').controller('CatalogCtrl', CatalogCtrl); -})(); - -function getParameterByName(name, url) { - if (!url) - url = window.location.href; - name = name.replace(/[\[\]]/g, "\\$&"); - var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), results = regex - .exec(url); - if (!results) - return ''; - if (!results[2]) - return ''; - return results[2].replace(/\+/g, " "); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError('Cannot call a class as a function'); + } +} + +(function() { + var HTTP_PROTOCOL_RGX = /https?:\/\//; + + var CatalogCtrl = function CatalogCtrl(conf, catalogService, confirmBoxService, ExternalRequestAccessService, + $log, $window, userProfileService, applicationsService, $scope, $state, + $timeout, $interval, $modal, ngDialog) { + + this.conf = conf; + var _this = this; + var externalRequest = true; + _classCallCheck(this, CatalogCtrl); + + // activate spinner + this.isLoading = true; + $scope.getAppCatalogIsDone = false; + $scope.radioValue = 'All'; + $scope.$watch('radioValue', function(newValue, oldValue) { + var appCatalog = $scope.appCatalog; + $scope.appCatalog = []; + $scope.appCatalog = appCatalog; + + + }); + + this.catalogService = catalogService; + this.userProfileService = userProfileService; + this.applicationsService = applicationsService; + var resultAccessValue = null; + $scope.demoNum = 1; + $scope.appRoles = []; + + let init = () => { + getExternalAccess(); + }; + + var getExternalAccess = () => { + ExternalRequestAccessService.getExternalRequestAccessServiceInfo().then( + function(property) { + resultAccessValue = property.accessValue; + // $log.info(res); + }).catch(err => { + $log.error('CatalogCtrl: failed getExternalRequestAccessServiceInfo: ' + JSON.stringify(err)); + }); + }; + + + + $scope.applyPresentationDetailsToAppsCatalog = function(res, value) { + + _this.apps = res; + var rowNo = 0; + + // defend against error string result - + // a huge list that should never happen. + var maxItems = 333; + if (_this.apps.length < maxItems) + maxItems = _this.apps.length; + for (var i = 0; i < maxItems; i++) { + let imgLnk = ''; + if (_this.apps[i].imageUrl) + imgLnk = conf.api.appThumbnail.replace(':appId', _this.apps[i].id); + //$log.debug('CatalogCtlr::applyPresn: imgLink = ' + imgLnk); + $scope.appCatalog[i] = { + sizeX : 2, + sizeY : 2, + id : _this.apps[i].id, + headerText : _this.apps[i].name, + mlAppName: _this.apps[i].mlAppName, + imageLink : imgLnk, + restricted : _this.apps[i].restricted, + select : _this.apps[i].select, + access : _this.apps[i].access, + pending: _this.apps[i].pending, + mlproperty: value + }; + } + //$log.debug('CatalogCtrl: getAppCatalog count : ' + // + $scope.appCatalog.length); + _this.isLoading = false; + $scope.getAppCatalogIsDone = true; + } + + let getAppsCatalog = () => { + catalogService.getAppCatalog() + .then(appsList => { + $scope.applyPresentationDetailsToAppsCatalog(appsList); + }).catch(err => { + confirmBoxService.showInformation('There was a problem retrieving the Applications. ' + + 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); + $log.error('CatalogCtrl:openAddRoleModal: Error: ', err); + }); + }; + + this.openAddRoleModal = (item) => { + let data = null; + + if((!item.restricted) && (item.mlproperty)){ + data = { + dialogState: 2, + selectedUser:{ + attuid: $scope.attuid, + firstName: $scope.firstName, + lastName: $scope.lastName, + headerText: item.headerText, + haloAppName : item.mlAppName, + item: item, + extReqValue : externalRequest + + } + } + ngDialog.open({ + templateUrl: 'app/views/catalog/add-catalog-dialogs/new-catalog.modal.html', + controller: 'NewCatalogModalCtrl', + controllerAs: 'userInfo', + data: data + }).closePromise.then(needUpdate => { + if(needUpdate.value === true){ + getAppsCatalog(); + } + + }); + } + }; + + // Run this function when user clicks on checkbox. + this.storeSelection = function(item) { + // $log.debug('CatalogCtrl:storeSelection: item.id is ' + item.id + ', select is ' + item.select); + var pendingFlag = false; + + if(item.access) + pendingFlag = false; + else + pendingFlag = item.pending; + + var appData = { + appId : item.id, + select : item.select, + pending : pendingFlag // TODO + }; + + catalogService.updateManualAppSort(appData).then( + function(result) { + // $log.debug('CatalogCtrl:storeSelection result is ', result); + })['catch'](function(err) { + $log.error('CatalogCtrl:storeSelection: exception: ', err); + }); + catalogService.updateAppCatalog(appData).then( + function(result) { + // $log.debug('CatalogCtrl:storeSelection result is ', result); + })['catch'](function(err) { + $log.error('CatalogCtrl:storeSelection: exception: ', err); + }); + }; + + userProfileService + .getUserProfile() + .then( + function(profile) { + $scope.attuid = profile.orgUserId; + $scope.firstName = profile.firstName; + $scope.lastName = profile.lastName; + $scope.appCatalog = []; + + catalogService.getAppCatalog().then( + function(res) { + $scope.applyPresentationDetailsToAppsCatalog(res, resultAccessValue); + })['catch'](function(err) { + $log.error('CatalogCtrl: failed getAppCatalog: ', JSON.stringify(err)); + _this.isLoading = false; + $scope.getAppCatalogIsDone = true; + }); + }); + + // applicationsService.getUserApps() + + + this.gridsterOpts = { + columns : 12, + colWidth : 95, + rowHeight : 95, + margins : [ 20, 20 ], + outerMargin : true, + pushing : true, + floating : true, + swapping : true, + resizable: { + enabled: false, + }, + }; + + if (getParameterByName('noUserError') != null) { + if (getParameterByName('noUserError') == "Show") { + $("#errorInfo").show(); + } + + } + + init(); + }; + + CatalogCtrl.$inject = [ 'conf', 'catalogService', 'confirmBoxService', 'ExternalRequestAccessService', '$log', + '$window', 'userProfileService', 'applicationsService', '$scope', + '$state', '$timeout', '$interval', '$modal', 'ngDialog' ]; + angular.module('ecompApp').controller('CatalogCtrl', CatalogCtrl); +})(); + +function getParameterByName(name, url) { + if (!url) + url = window.location.href; + name = name.replace(/[\[\]]/g, "\\$&"); + var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), results = regex + .exec(url); + if (!results) + return ''; + if (!results[2]) + return ''; + return results[2].replace(/\+/g, " "); +} diff --git a/ecomp-portal-FE-common/client/app/views/catalog/catalog.tpl.html b/ecomp-portal-FE-common/client/app/views/catalog/catalog.tpl.html index 68bf9ef2..b4063ad6 100644 --- a/ecomp-portal-FE-common/client/app/views/catalog/catalog.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/catalog/catalog.tpl.html @@ -1,90 +1,90 @@ - -
    -
    -
    -

    Application Catalog

    -
    -
    -
    - Click the check - boxes below to choose which applications are shown on the home page. -

    - -
    -
    -
    -
      -
    • -
      -
      - -

      {{item.headerText | - elipsis: 13}}

      -
      - - -
      -
      -
      -
      -
      -
    • -
    -
    -
    - -
    - -
    - To request access to an application, please visit the Get Access page. -
    - -
    -
    - -
    -
    + +
    +
    +
    +

    Application Catalog

    +
    +
    +
    + Click the check + boxes below to choose which applications are shown on the home page. +

    + +
    +
    +
    +
      +
    • +
      +
      + +

      {{item.headerText | + elipsis: 13}}

      +
      + + +
      +
      +
      +
      +
      +
    • +
    +
    +
    + +
    + +
    + To request access to an application, please visit the Get Access page. +
    + +
    +
    + +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/catalog/information-box.tpl.html b/ecomp-portal-FE-common/client/app/views/catalog/information-box.tpl.html index a5b754f6..8a848545 100644 --- a/ecomp-portal-FE-common/client/app/views/catalog/information-box.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/catalog/information-box.tpl.html @@ -1,42 +1,42 @@ - -
    -
    -
    -
    - You do not have access to this application. - See the - - Get Access page and request access at MyLogins. -

    - You may check this box if access is pending: - -
    - -
    -
    -
    -
    Close
    -
    -
    + +
    +
    +
    +
    + You do not have access to this application. + See the + + Get Access page and request access at MyLogins. +

    + You may check this box if access is pending: + +
    + +
    +
    +
    +
    Close
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/confirmation-box/admin-confirmation-box.tpl.html b/ecomp-portal-FE-common/client/app/views/confirmation-box/admin-confirmation-box.tpl.html index 01b48de4..69f9af84 100644 --- a/ecomp-portal-FE-common/client/app/views/confirmation-box/admin-confirmation-box.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/confirmation-box/admin-confirmation-box.tpl.html @@ -1,31 +1,31 @@ - -
    -
    -
    -
    -
    -
    -
    -
    -
    Confirm
    -
    Cancel
    -
    -
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    Confirm
    +
    Cancel
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/confirmation-box/confirmation-box.controller.js b/ecomp-portal-FE-common/client/app/views/confirmation-box/confirmation-box.controller.js index 26d39a76..36eb04a8 100644 --- a/ecomp-portal-FE-common/client/app/views/confirmation-box/confirmation-box.controller.js +++ b/ecomp-portal-FE-common/client/app/views/confirmation-box/confirmation-box.controller.js @@ -1,49 +1,49 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 1/18/16. - */ -'use strict'; -(function () { - class ConfirmationBoxCtrl { - constructor($scope,$state) { - - let init = () => { - let item = ($scope.ngDialogData && $scope.ngDialogData.item) || 'this'; - this.message = $scope.ngDialogData.message ? $scope.ngDialogData.message : `Are you sure you want to delete "${item}"?`; - this.title = $scope.ngDialogData.title ? $scope.ngDialogData.title : ''; - }; - - this.closeBox = isConfirmed => { - $scope.closeThisDialog(isConfirmed); - }; - - this.goTo = (state, params) => { - $scope.closeThisDialog(false); - $state.go(state,params); - - }; - - init(); - } - } - ConfirmationBoxCtrl.$inject = ['$scope','$state']; - angular.module('ecompApp').controller('ConfirmationBoxCtrl', ConfirmationBoxCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 1/18/16. + */ +'use strict'; +(function () { + class ConfirmationBoxCtrl { + constructor($scope,$state) { + + let init = () => { + let item = ($scope.ngDialogData && $scope.ngDialogData.item) || 'this'; + this.message = $scope.ngDialogData.message ? $scope.ngDialogData.message : `Are you sure you want to delete "${item}"?`; + this.title = $scope.ngDialogData.title ? $scope.ngDialogData.title : ''; + }; + + this.closeBox = isConfirmed => { + $scope.closeThisDialog(isConfirmed); + }; + + this.goTo = (state, params) => { + $scope.closeThisDialog(false); + $state.go(state,params); + + }; + + init(); + } + } + ConfirmationBoxCtrl.$inject = ['$scope','$state']; + angular.module('ecompApp').controller('ConfirmationBoxCtrl', ConfirmationBoxCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/confirmation-box/confirmation-box.tpl.html b/ecomp-portal-FE-common/client/app/views/confirmation-box/confirmation-box.tpl.html index 01313079..8f880ef4 100644 --- a/ecomp-portal-FE-common/client/app/views/confirmation-box/confirmation-box.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/confirmation-box/confirmation-box.tpl.html @@ -1,28 +1,28 @@ - -
    -
    -
    -
    -
    -
    OK
    -
    Cancel
    -
    -
    + +
    +
    +
    +
    +
    +
    OK
    +
    Cancel
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/confirmation-box/dragdrop-confirmation-box.tpl.html b/ecomp-portal-FE-common/client/app/views/confirmation-box/dragdrop-confirmation-box.tpl.html index a7a3fd46..f6a1a29b 100644 --- a/ecomp-portal-FE-common/client/app/views/confirmation-box/dragdrop-confirmation-box.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/confirmation-box/dragdrop-confirmation-box.tpl.html @@ -1,31 +1,31 @@ - -
    -
    -
    -
    -
    -
    -
    -
    -
    Confirm
    -
    Cancel
    -
    -
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    Confirm
    +
    Cancel
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/confirmation-box/information-box.tpl.html b/ecomp-portal-FE-common/client/app/views/confirmation-box/information-box.tpl.html index 912b971b..1eaa2819 100644 --- a/ecomp-portal-FE-common/client/app/views/confirmation-box/information-box.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/confirmation-box/information-box.tpl.html @@ -1,27 +1,27 @@ - -
    -
    -
    {{confirmBox.message}}
    -
    -
    -
    Close
    -
    -
    + +
    +
    +
    {{confirmBox.message}}
    +
    +
    +
    Close
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-manage.html b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-manage.html index 9883bd14..f47e17c2 100644 --- a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-manage.html +++ b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-manage.html @@ -1,152 +1,153 @@ - -
    -

    -
    -
    - -
    -
    Manage {{widgetTypeDisplay}} Widgets
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    TitleURLDateContentOrderEditDelete
    -
    - -
    -
    - -
    -
    - -
    -
    {{rowData.content | cut:true:20:' ...'}}
    - -
    -
    - -
    -
    - -
    - - Save - -
    -
    - -
    -
    -
    - -
    -
    -
    -
    -

    Add

    -
    {{errMsg}}
    -
    -
    -
    -
    -
    -
    -
    Title
    - -
    -
    -
    URL
    - -
    -
    -
    Sort Order
    - -
    -
    -
    -

    Event Date

    -
    -
    -

    - -

    -
    -
    -
    - -
    -
    Content
    - -
    -
    -
    - Add New - -
    - -
    - -
    -
    -
    -
    - Close -
    -
    -
    -
    -
    - - + +
    +

    +
    +
    + +
    +
    Manage {{widgetTypeDisplay}} Widgets
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    TitleURLDateContentOrderEditDelete
    +
    + +
    +
    + +
    +
    + +
    +
    {{rowData.content | cut:true:20:' ...'}}
    + +
    +
    + +
    +
    + +
    + + Save + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +

    Add

    +
    {{errMsg}}
    +
    +
    +
    +
    +
    +
    +
    Title
    + +
    +
    +
    URL
    + +
    +
    +
    Sort Order
    + +
    +
    +
    +

    Event Date

    +
    +
    +

    + +

    +
    +
    +
    + +
    +
    Content
    + +
    +
    +
    + Add New + +
    + +
    + +
    +
    +
    +
    + Close +
    +
    +
    +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameter-manage.html b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameter-manage.html index 59e6f4fa..1f958b7f 100644 --- a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameter-manage.html +++ b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameter-manage.html @@ -1,86 +1,92 @@ - -
    -
    Manage - Widgets Parameters Page
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - -
    Parameter - KeyMy ValueDefault ValueEditReset to Default
    -
    -
    -
    - -
    -
    -
    -
    - -
    Save - -
    -
    - -
    - -
    -
    - There is no parameter assoicated with this widget! -
    - -
    - -
    -
    -
    + +
    +
    Manage + Widgets Parameters Page
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + +
    Parameter + KeyMy ValueDefault ValueEditReset to Default
    +
    +
    +
    + +
    +
    +
    +
    + +
    Save + +
    +
    + +
    + +
    +
    + There is no parameter assoicated with this widget! +
    + +
    + +
    +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameters.controller.js b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameters.controller.js index 460618ea..fb9a254f 100644 --- a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameters.controller.js +++ b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameters.controller.js @@ -1,81 +1,81 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - class WidgetParameterController { - constructor($scope, widgetsCatalogService, userProfileService) { - let widgetId = $scope.ngDialogData.widgetId; - $scope.modflag = false; - $scope.isLoadingTable = false; - $scope.messageInfo = false; - - widgetsCatalogService.getWidgetCatalogParameters(widgetId).then(res => { - if(res.status == 'OK'){ - $scope.isLoadingTable = true; - $scope.widgetParam = res.response; - }else if(res.status == 'WARN'){ - $scope.messageInfo = true; - } - }).catch(err => { - $log.error('WidgetParameterController::init error: ' + err); - }) - - $scope.setEdit = function(index) { - if($scope.modflag === false){ - $scope.widgetParam[index].showEdit = true; - $scope.modflag = true; - } - } - - $scope.resetDefault = function(index) { - var widgetParamObject = {}; - widgetParamObject.user_value = $scope.widgetParam[parseInt(index)].default_value; - widgetParamObject.paramId = $scope.widgetParam[parseInt(index)].param_id; - widgetParamObject.widgetId = widgetId; - widgetsCatalogService.saveWidgetParameter(widgetParamObject) - .then(function(res){ - if(res.status == 'OK'){ - $scope.widgetParam[index].user_value = $scope.widgetParam[index].default_value; - } - }); - } - - $scope.modify = function(index) { - - var widgetParamObject = {}; - widgetParamObject.user_value = $scope.widgetParam[parseInt(index)].user_value; - widgetParamObject.paramId = $scope.widgetParam[parseInt(index)].param_id; - widgetParamObject.widgetId = widgetId; - - widgetsCatalogService.saveWidgetParameter(widgetParamObject) - .then(function(res){ - if(res.status == 'OK'){ - $scope.modflag = false; - $scope.widgetParam[index].showEdit = false; - } - }); - - }; - } - } - WidgetParameterController.$inject = ['$scope', 'widgetsCatalogService', 'userProfileService']; - angular.module('ecompApp').controller('WidgetParameterController', WidgetParameterController); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + class WidgetParameterController { + constructor($scope, widgetsCatalogService, userProfileService) { + let widgetId = $scope.ngDialogData.widgetId; + $scope.modflag = false; + $scope.isLoadingTable = false; + $scope.messageInfo = false; + + widgetsCatalogService.getWidgetCatalogParameters(widgetId).then(res => { + if(res.status == 'OK'){ + $scope.isLoadingTable = true; + $scope.widgetParam = res.response; + }else if(res.status == 'WARN'){ + $scope.messageInfo = true; + } + }).catch(err => { + $log.error('WidgetParameterController::init error: ' + err); + }) + + $scope.setEdit = function(index) { + if($scope.modflag === false){ + $scope.widgetParam[index].showEdit = true; + $scope.modflag = true; + } + } + + $scope.resetDefault = function(index) { + var widgetParamObject = {}; + widgetParamObject.user_value = $scope.widgetParam[parseInt(index)].default_value; + widgetParamObject.paramId = $scope.widgetParam[parseInt(index)].param_id; + widgetParamObject.widgetId = widgetId; + widgetsCatalogService.saveWidgetParameter(widgetParamObject) + .then(function(res){ + if(res.status == 'OK'){ + $scope.widgetParam[index].user_value = $scope.widgetParam[index].default_value; + } + }); + } + + $scope.modify = function(index) { + + var widgetParamObject = {}; + widgetParamObject.user_value = $scope.widgetParam[parseInt(index)].user_value; + widgetParamObject.paramId = $scope.widgetParam[parseInt(index)].param_id; + widgetParamObject.widgetId = widgetId; + + widgetsCatalogService.saveWidgetParameter(widgetParamObject) + .then(function(res){ + if(res.status == 'OK'){ + $scope.modflag = false; + $scope.widgetParam[index].showEdit = false; + } + }); + + }; + } + } + WidgetParameterController.$inject = ['$scope', 'widgetsCatalogService', 'userProfileService']; + angular.module('ecompApp').controller('WidgetParameterController', WidgetParameterController); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameters.controller.less b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameters.controller.less index ce63acd4..76521f9b 100644 --- a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameters.controller.less +++ b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget-parameters.controller.less @@ -1,28 +1,28 @@ -.manage-widget-parameters-title{ - color: #067ab4; - font-family: "Omnes-ECOMP-W02", Arial;; - font-size: 24px; - margin-left: 30px; - width: 1170px; - margin-top: 20px; - margin-bottom: 10px; -} - -.manage-widget-parameters-table{ - margin: 30px; -} - -.manage-widget-parameters-table-details{ - height: 300px; - background-color: #ffffff; -} - -.manage-widget-parameters-header{ - margin-top: 20px; - margin-bottom: 20px; - height:20px; -} - -.ngdialog-content{ - width: 40%; +.manage-widget-parameters-title{ + color: #067ab4; + font-family: "Omnes-ECOMP-W02", Arial;; + font-size: 24px; + margin-left: 30px; + width: 1170px; + margin-top: 20px; + margin-bottom: 10px; +} + +.manage-widget-parameters-table{ + margin: 30px; +} + +.manage-widget-parameters-table-details{ + height: 300px; + background-color: #ffffff; +} + +.manage-widget-parameters-header{ + margin-top: 20px; + margin-bottom: 20px; + height:20px; +} + +.ngdialog-content{ + width: 40%; } \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.js b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.js index fe0bf453..aff4e0c1 100644 --- a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.js +++ b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard-widget.controller.js @@ -1,422 +1,422 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - class CommonWidgetController { - constructor(dashboardService, $scope, message, $q, $http, conf, $filter,confirmBoxService,$log) { - $scope.widgetType = message.type; - $scope.widgetTypeDisplay = message.type; - $scope.modflag = false; - - switch (message.type) { - case 'EVENTS': - $scope.widgetTypeDisplay = 'Events' - break; - case 'NEWS': - $scope.widgetTypeDisplay = 'News' - break; - case 'IMPORTANTRESOURCES': - $scope.widgetTypeDisplay = 'Resources' - break; - } - - $scope.widgetData = []; - dashboardService.getCommonWidgetData(message.type) - .then(function (res) { - // console.log('CommonWidgetController: result is ' + res); - $scope.widgetData = res.response.items; - }); - - - - $scope.setEdit = function(index) { - - //for(var i=0; i<$scope.widgetData ) - - if($scope.modflag === false){ - $scope.widgetData[index].showEdit = true; - $scope.modflag = true; - } - } - - $scope.modify = function(index) { - - $scope.widgetObject = {}; - $scope.widgetObject.id = $scope.widgetData[parseInt(index)].id; - $scope.widgetObject.category = $scope.widgetData[parseInt(index)].category; - $scope.widgetObject.title = $scope.widgetData[parseInt(index)].title; - $scope.widgetObject.href = $scope.widgetData[parseInt(index)].href; - $scope.widgetObject.eventDate = $scope.widgetData[parseInt(index)].eventDate; - $scope.widgetObject.content = $scope.widgetData[parseInt(index)].content; - $scope.widgetObject.sortOrder = $scope.widgetData[parseInt(index)].sortOrder; - - var validateMsg = $scope.validateWidgetObject($scope.widgetObject); - if (validateMsg) { - confirmBoxService.showInformation(validateMsg).then(isConfirmed => {return;}); - return; - } - - dashboardService.saveCommonWidgetData($scope.widgetObject) - .then(function(res){ - if (res.status == 'OK') { - dashboardService.getCommonWidgetData(message.type) - .then(function(res){ - $scope.widgetData = res.response.items; - $scope.modflag = false; - $scope.cancelEdit(index); - }); - } - else { - // Save failed - confirmBoxService.showInformation("Save failed").then(isConfirmed => {return;}); - return; - } - }); - - }; - - $scope.newWidgetObject = {}; - - // Answers string error if validation fails; - // answers null if all is well. - $scope.validateWidgetObject = function(wo) { - if (wo.title == null || wo.title == '') - return "Please enter a title."; - if (wo.href == null || wo.href == '' || !validateUrl(wo.href)) - return "Please enter a valid URL that starts with http."; - if (wo.sortOrder == null || wo.sortOrder == '' || isNaN(parseInt(wo.sortOrder))) - return "Please enter a number for the sort order."; - if (wo.category=='EVENTS') { - if (wo.eventDate == null || wo.eventDate == '') - return "Please enter a date for the event."; - // Parses and normalizes the date with rollover. - var filteredDate = $filter('date')(wo.eventDate, "yyyy-MM-dd"); - // $log.debug('dashboard-widget-controller: date filter yields ' + filteredDate); - // The date picker shows mm/dd/yy. - if (filteredDate == null || filteredDate.length != 10) - return "Please enter a valid date as YYYY-MM-DD"; - if (wo.content==null || wo.content=='') - return "Please enter content for the event."; - } - return null; - }; - - $scope.saveNew = function() { - $scope.newWidgetObject.category = message.type; - // $log.info($scope.newWidgetObject); - var validateMsg = $scope.validateWidgetObject($scope.newWidgetObject); - if (validateMsg) { - confirmBoxService.showInformation(validateMsg).then(isConfirmed => {return;}); - return; - } - // Transform date into expected storage format - $scope.newWidgetObject.eventDate = $filter('date')($scope.newWidgetObject.eventDate, "yyyy-MM-dd"); - - dashboardService.saveCommonWidgetData($scope.newWidgetObject) - .then(function(res){ - if (res.status == 'OK') { - $scope.widgetForm.$setPristine(); - confirmBoxService.showInformation('You have added a new item').then(isConfirmed => { - }); - dashboardService.getCommonWidgetData(message.type) - .then(function(res){ - $scope.widgetData = res.response.items; - $scope.newWidgetObject = {}; - }); - } - else { - confirmBoxService.showInformation("Save failed").then(isConfirmed => {return;}); - return; - } - }); - }; - - $scope.remove = function(index) { - var confirmMsg = 'Are you sure you want to delete this item from the list?' + ' Press OK to delete.'; - confirmBoxService.confirm(confirmMsg).then(function (confirmed) { - if (confirmed == true) { - $scope.widgetObject = {}; - $scope.widgetObject.id = $scope.widgetData[parseInt(index)].id; - $scope.widgetObject.category = $scope.widgetData[parseInt(index)].category; - $scope.widgetObject.title = $scope.widgetData[parseInt(index)].title; - $scope.widgetObject.href = $scope.widgetData[parseInt(index)].href; - $scope.widgetObject.sortOrder = $scope.widgetData[parseInt(index)].sortOrder; - - - dashboardService.removeCommonWidgetData($scope.widgetObject) - .then(function(res){ - dashboardService.getCommonWidgetData(message.type) - .then(function(res){ - $scope.widgetData = res.response.items; - $scope.cancelEdit(index); - }); - }); - } - }); - - }; - $scope.closeDialog = function(){ - $scope.closeThisDialog( $scope.widgetData); - } - $scope.deleteSpeedDial = function(widget){ - - } - - $scope.manage = function(index) { - $scope.modflag = true; - - var thisdata = $scope.widgetData[index]; - $scope.editMode=true; - var category = "#category"+index; - var categoryEdit = "#categoryEdit"+index; - - var title = "#title"+index; - var titleEdit = "#titleEdit"+index; - - var url = "#href"+index; - var urlEdit = "#hrefEdit"+index; - - var order = "#order"+index; - var orderEdit = "#orderEdit"+index; - - var eventDate = "#eventDate"+index; - var eventDateEdit = "#eventDateEdit"+index; - - - var dsavebutton ="#savebutton"+index; - var dremovebutton="#removebutton"+index; - var dmanagebutton="#managebutton"+index; - var deditRbutton="#editRbutton"+index; - - $(title).css('display', 'none'); - $(titleEdit).css('display', 'inherit'); - $(url).css('display', 'none'); - $(urlEdit).css('display', 'inherit'); - $(order).css('display', 'none'); - $(orderEdit).css('display', 'inherit'); - $(eventDate).css('display', 'none'); - $(eventDateEdit).css('display', 'inherit'); - - $(dsavebutton).css('display', 'inherit'); - $(dremovebutton).css('display', 'inherit'); - $(dmanagebutton).css('display', 'none'); - $(deditRbutton).css('display', 'inherit'); - - }; - - $scope.cancelEdit = function(index) { - - $scope.editMode=false; - var category = "#category"+index; - var categoryEdit = "#categoryEdit"+index; - - var title = "#title"+index; - var titleEdit = "#titleEdit"+index; - - var url = "#href"+index; - var urlEdit = "#hrefEdit"+index; - - var order = "#order"+index; - var orderEdit = "#orderEdit"+index; - - var eventDate = "#eventDate"+index; - var eventDateEdit = "#eventDateEdit"+index; - - var dsavebutton ="#savebutton"+index; - var dremovebutton ="#removebutton"+index; - var dmanagebutton="#managebutton"+index; - var deditRbutton="#editRbutton"+index; - - $(title).css('display', 'inherit'); - $(titleEdit).css('display', 'none'); - - $(url).css('display', 'inherit'); - $(urlEdit).css('display', 'none'); - - $(order).css('display', 'inherit'); - $(orderEdit).css('display', 'none'); - - $(eventDate).css('display', 'inherit'); - $(eventDateEdit).css('display', 'none'); - - $(dsavebutton).css('display', 'none'); - $(dremovebutton).css('display', 'none'); - $(dmanagebutton).css('display', 'inherit'); - $(deditRbutton).css('display', 'none'); - - }; - - $scope.popupConfirmWin = function(title, msgBody, callback){ - modalService.popupConfirmWin.apply(null, arguments); - }; - } - } - CommonWidgetController.$inject = ['dashboardService', '$scope', 'message', '$q', '$http', 'conf', '$filter','confirmBoxService','$log']; - angular.module('ecompApp').controller('CommonWidgetController', CommonWidgetController); -})(); - -angular.module('ecompApp').filter('cut', function () { - return function (value, wordwise, max, tail) { - if (!value) return ''; - - max = parseInt(max, 10); - if (!max) return value; - if (value.length <= max) return value; - - value = value.substr(0, max); - if (wordwise) { - var lastspace = value.lastIndexOf(' '); - if (lastspace != -1) { - //Also remove . and , so its gives a cleaner result. - if (value.charAt(lastspace-1) == '.' || value.charAt(lastspace-1) == ',') { - lastspace = lastspace - 1; - } - value = value.substr(0, lastspace); - } - } - - return value + (tail || ' …'); - }; -}); - -angular.module('ecompApp').controller('DatePickerController', function ($scope, uibDateParser) { - $scope.today = function() { - $scope.dt = new Date(); - }; - $scope.today(); - - $scope.clear = function() { - $scope.dt = null; - }; - - $scope.inlineOptions = { - customClass: getDayClass, - minDate: new Date(), - showWeeks: true - }; - - $scope.dateOptions = { - dateDisabled: disabled, - formatYear: 'yy', - minDate: new Date(), - startingDay: 1 - }; - - // Disable weekend selection - function disabled(data) { - var date = data.date, - mode = data.mode; - return mode === 'day' && (date.getDay() === 0 || date.getDay() === 6); - } - - $scope.toggleMin = function() { - $scope.inlineOptions.minDate = $scope.inlineOptions.minDate ? null : new Date(); - $scope.dateOptions.minDate = $scope.inlineOptions.minDate; - }; - - $scope.toggleMin(); - - $scope.open1 = function() { - // console.log('In open1'); - $scope.popup1.opened = true; - }; - - $scope.open2 = function() { - // console.log('In open2'); - $scope.popup2.opened = true; - }; - - - $scope.setDate = function(year, month, day) { - $scope.dt = new Date(year, month, day); - }; - - $scope.formats = ['dd-MMMM-yyyy', 'yyyy/MM/dd', 'dd.MM.yyyy', 'shortDate']; - $scope.format = $scope.formats[3]; - $scope.altInputFormats = ['M!/d!/yyyy']; - - $scope.popup1 = { - opened: false - }; - - $scope.popup2 = { - opened: false - }; - - var tomorrow = new Date(); - tomorrow.setDate(tomorrow.getDate() + 1); - var afterTomorrow = new Date(); - afterTomorrow.setDate(tomorrow.getDate() + 1); - $scope.events = [ - { - date: tomorrow, - status: 'full' - }, - { - date: afterTomorrow, - status: 'partially' - } - ]; - - function getDayClass(data) { - var date = data.date, - mode = data.mode; - if (mode === 'day') { - var dayToCheck = new Date(date).setHours(0,0,0,0); - - for (var i = 0; i < $scope.events.length; i++) { - var currentDay = new Date($scope.events[i].date).setHours(0,0,0,0); - - if (dayToCheck === currentDay) { - return $scope.events[i].status; - } - } - } - - return ''; - } -}); - - - -function toggleCollapsible(id, clickedIconId, subtitutingIconId){ - $("#"+id).toggle(); - $("#"+clickedIconId).toggle(); - $("#"+subtitutingIconId).toggle(); - setTimeout(function(){focusFirstEle(id);}, 1000); -} - -function focusFirstEle(id){ - var focusItems = $("#"+id).find(":focusable"); - for(var i=0; i {return;}); + return; + } + + dashboardService.saveCommonWidgetData($scope.widgetObject) + .then(function(res){ + if (res.status == 'OK') { + dashboardService.getCommonWidgetData(message.type) + .then(function(res){ + $scope.widgetData = res.response.items; + $scope.modflag = false; + $scope.cancelEdit(index); + }); + } + else { + // Save failed + confirmBoxService.showInformation("Save failed").then(isConfirmed => {return;}); + return; + } + }); + + }; + + $scope.newWidgetObject = {}; + + // Answers string error if validation fails; + // answers null if all is well. + $scope.validateWidgetObject = function(wo) { + if (wo.title == null || wo.title == '') + return "Please enter a title."; + if (wo.href == null || wo.href == '' || !validateUrl(wo.href)) + return "Please enter a valid URL that starts with http."; + if (wo.sortOrder == null || wo.sortOrder == '' || isNaN(parseInt(wo.sortOrder))) + return "Please enter a number for the sort order."; + if (wo.category=='EVENTS') { + if (wo.eventDate == null || wo.eventDate == '') + return "Please enter a date for the event."; + // Parses and normalizes the date with rollover. + var filteredDate = $filter('date')(wo.eventDate, "yyyy-MM-dd"); + // $log.debug('dashboard-widget-controller: date filter yields ' + filteredDate); + // The date picker shows mm/dd/yy. + if (filteredDate == null || filteredDate.length != 10) + return "Please enter a valid date as YYYY-MM-DD"; + if (wo.content==null || wo.content=='') + return "Please enter content for the event."; + } + return null; + }; + + $scope.saveNew = function() { + $scope.newWidgetObject.category = message.type; + // $log.info($scope.newWidgetObject); + var validateMsg = $scope.validateWidgetObject($scope.newWidgetObject); + if (validateMsg) { + confirmBoxService.showInformation(validateMsg).then(isConfirmed => {return;}); + return; + } + // Transform date into expected storage format + $scope.newWidgetObject.eventDate = $filter('date')($scope.newWidgetObject.eventDate, "yyyy-MM-dd"); + + dashboardService.saveCommonWidgetData($scope.newWidgetObject) + .then(function(res){ + if (res.status == 'OK') { + $scope.widgetForm.$setPristine(); + confirmBoxService.showInformation('You have added a new item').then(isConfirmed => { + }); + dashboardService.getCommonWidgetData(message.type) + .then(function(res){ + $scope.widgetData = res.response.items; + $scope.newWidgetObject = {}; + }); + } + else { + confirmBoxService.showInformation("Save failed").then(isConfirmed => {return;}); + return; + } + }); + }; + + $scope.remove = function(index) { + var confirmMsg = 'Are you sure you want to delete this item from the list?' + ' Press OK to delete.'; + confirmBoxService.confirm(confirmMsg).then(function (confirmed) { + if (confirmed == true) { + $scope.widgetObject = {}; + $scope.widgetObject.id = $scope.widgetData[parseInt(index)].id; + $scope.widgetObject.category = $scope.widgetData[parseInt(index)].category; + $scope.widgetObject.title = $scope.widgetData[parseInt(index)].title; + $scope.widgetObject.href = $scope.widgetData[parseInt(index)].href; + $scope.widgetObject.sortOrder = $scope.widgetData[parseInt(index)].sortOrder; + + + dashboardService.removeCommonWidgetData($scope.widgetObject) + .then(function(res){ + dashboardService.getCommonWidgetData(message.type) + .then(function(res){ + $scope.widgetData = res.response.items; + $scope.cancelEdit(index); + }); + }); + } + }); + + }; + $scope.closeDialog = function(){ + $scope.closeThisDialog( $scope.widgetData); + } + $scope.deleteSpeedDial = function(widget){ + + } + + $scope.manage = function(index) { + $scope.modflag = true; + + var thisdata = $scope.widgetData[index]; + $scope.editMode=true; + var category = "#category"+index; + var categoryEdit = "#categoryEdit"+index; + + var title = "#title"+index; + var titleEdit = "#titleEdit"+index; + + var url = "#href"+index; + var urlEdit = "#hrefEdit"+index; + + var order = "#order"+index; + var orderEdit = "#orderEdit"+index; + + var eventDate = "#eventDate"+index; + var eventDateEdit = "#eventDateEdit"+index; + + + var dsavebutton ="#savebutton"+index; + var dremovebutton="#removebutton"+index; + var dmanagebutton="#managebutton"+index; + var deditRbutton="#editRbutton"+index; + + $(title).css('display', 'none'); + $(titleEdit).css('display', 'inherit'); + $(url).css('display', 'none'); + $(urlEdit).css('display', 'inherit'); + $(order).css('display', 'none'); + $(orderEdit).css('display', 'inherit'); + $(eventDate).css('display', 'none'); + $(eventDateEdit).css('display', 'inherit'); + + $(dsavebutton).css('display', 'inherit'); + $(dremovebutton).css('display', 'inherit'); + $(dmanagebutton).css('display', 'none'); + $(deditRbutton).css('display', 'inherit'); + + }; + + $scope.cancelEdit = function(index) { + + $scope.editMode=false; + var category = "#category"+index; + var categoryEdit = "#categoryEdit"+index; + + var title = "#title"+index; + var titleEdit = "#titleEdit"+index; + + var url = "#href"+index; + var urlEdit = "#hrefEdit"+index; + + var order = "#order"+index; + var orderEdit = "#orderEdit"+index; + + var eventDate = "#eventDate"+index; + var eventDateEdit = "#eventDateEdit"+index; + + var dsavebutton ="#savebutton"+index; + var dremovebutton ="#removebutton"+index; + var dmanagebutton="#managebutton"+index; + var deditRbutton="#editRbutton"+index; + + $(title).css('display', 'inherit'); + $(titleEdit).css('display', 'none'); + + $(url).css('display', 'inherit'); + $(urlEdit).css('display', 'none'); + + $(order).css('display', 'inherit'); + $(orderEdit).css('display', 'none'); + + $(eventDate).css('display', 'inherit'); + $(eventDateEdit).css('display', 'none'); + + $(dsavebutton).css('display', 'none'); + $(dremovebutton).css('display', 'none'); + $(dmanagebutton).css('display', 'inherit'); + $(deditRbutton).css('display', 'none'); + + }; + + $scope.popupConfirmWin = function(title, msgBody, callback){ + modalService.popupConfirmWin.apply(null, arguments); + }; + } + } + CommonWidgetController.$inject = ['dashboardService', '$scope', 'message', '$q', '$http', 'conf', '$filter','confirmBoxService','$log']; + angular.module('ecompApp').controller('CommonWidgetController', CommonWidgetController); +})(); + +angular.module('ecompApp').filter('cut', function () { + return function (value, wordwise, max, tail) { + if (!value) return ''; + + max = parseInt(max, 10); + if (!max) return value; + if (value.length <= max) return value; + + value = value.substr(0, max); + if (wordwise) { + var lastspace = value.lastIndexOf(' '); + if (lastspace != -1) { + //Also remove . and , so its gives a cleaner result. + if (value.charAt(lastspace-1) == '.' || value.charAt(lastspace-1) == ',') { + lastspace = lastspace - 1; + } + value = value.substr(0, lastspace); + } + } + + return value + (tail || ' …'); + }; +}); + +angular.module('ecompApp').controller('DatePickerController', function ($scope, uibDateParser) { + $scope.today = function() { + $scope.dt = new Date(); + }; + $scope.today(); + + $scope.clear = function() { + $scope.dt = null; + }; + + $scope.inlineOptions = { + customClass: getDayClass, + minDate: new Date(), + showWeeks: true + }; + + $scope.dateOptions = { + dateDisabled: disabled, + formatYear: 'yy', + minDate: new Date(), + startingDay: 1 + }; + + // Disable weekend selection + function disabled(data) { + var date = data.date, + mode = data.mode; + return mode === 'day' && (date.getDay() === 0 || date.getDay() === 6); + } + + $scope.toggleMin = function() { + $scope.inlineOptions.minDate = $scope.inlineOptions.minDate ? null : new Date(); + $scope.dateOptions.minDate = $scope.inlineOptions.minDate; + }; + + $scope.toggleMin(); + + $scope.open1 = function() { + // console.log('In open1'); + $scope.popup1.opened = true; + }; + + $scope.open2 = function() { + // console.log('In open2'); + $scope.popup2.opened = true; + }; + + + $scope.setDate = function(year, month, day) { + $scope.dt = new Date(year, month, day); + }; + + $scope.formats = ['dd-MMMM-yyyy', 'yyyy/MM/dd', 'dd.MM.yyyy', 'shortDate']; + $scope.format = $scope.formats[3]; + $scope.altInputFormats = ['M!/d!/yyyy']; + + $scope.popup1 = { + opened: false + }; + + $scope.popup2 = { + opened: false + }; + + var tomorrow = new Date(); + tomorrow.setDate(tomorrow.getDate() + 1); + var afterTomorrow = new Date(); + afterTomorrow.setDate(tomorrow.getDate() + 1); + $scope.events = [ + { + date: tomorrow, + status: 'full' + }, + { + date: afterTomorrow, + status: 'partially' + } + ]; + + function getDayClass(data) { + var date = data.date, + mode = data.mode; + if (mode === 'day') { + var dayToCheck = new Date(date).setHours(0,0,0,0); + + for (var i = 0; i < $scope.events.length; i++) { + var currentDay = new Date($scope.events[i].date).setHours(0,0,0,0); + + if (dayToCheck === currentDay) { + return $scope.events[i].status; + } + } + } + + return ''; + } +}); + + + +function toggleCollapsible(id, clickedIconId, subtitutingIconId){ + $("#"+id).toggle(); + $("#"+clickedIconId).toggle(); + $("#"+subtitutingIconId).toggle(); + setTimeout(function(){focusFirstEle(id);}, 1000); +} + +function focusFirstEle(id){ + var focusItems = $("#"+id).find(":focusable"); + for(var i=0; i { - if(resourceType=='NEWS'){ - $scope.updateNews(); - }else if(resourceType=='EVENTS'){ - $scope.updateEvents(); - }else if(resourceType=='IMPORTANTRESOURCES'){ - $scope.updateImportRes(); - } - }); - }; - - $scope.editWidgetParameters = function(widgetId) { - let data = { - widgetId: widgetId - } - ngDialog.open({ - templateUrl : 'app/views/dashboard/dashboard-widget-parameter-manage.html', - controller : 'WidgetParameterController', - data: data - }).closePromise.then(needUpdate => { - - }); - }; - - $scope.sort_options = [ - {index: 0, value: 'N', title: 'Name'}, - {index: 1, value: 'L', title: 'Last used'}, - {index: 2, value: 'F', title: 'Most used'}, - {index: 3, value: 'M', title: 'Manual'} - ]; - - $scope.selectedSortTypeChanged = function(userAppSortTypePref) { - $scope.appsViewData = []; - $scope.appsView = []; - - $scope.sort_type = userAppSortTypePref; - - applicationsService - .getAppsOrderBySortPref(userAppSortTypePref) - .then(function(res) { - _this.apps = res; - $scope.applyPresentationDetailsToApps(_this.apps); - }) - applicationsService - .saveAppsSortTypePreference($scope.selectedSortType) - .then(function(res) { - // Nothing to do - }) - - } - $scope.$watch('selectedSortType.value', (newVal, oldVal) => { - for(var i=0;i<$scope.sort_options.length;i++){ - if($scope.sort_options[i].value==newVal){ - $scope.selectedSortType=angular.copy($scope.sort_options[i]);; - } - } - }); - - $scope.restoreSortSelected = function(){ - confirmBoxService.confirm("Restore the default size and position of all widgets?").then( - function(confirmed){ - var checkConfirm = confirmed; - if(checkConfirm === true){ - applicationsService - .delWidgetsSortPref($scope.widgetsViewData).then(function(){ - $state.reload(); - }); - } - }); - /* if(confirm('Restore the default size and position of all widgets?') == true) - { - applicationsService - .delWidgetsSortPref($scope.widgetsViewData).then(function(){ - $state.reload(); - }) - }*/ - - } - - $scope.applyPresentationDetailsToApps = function(appsReturned) { - var rowNo = 0; - for (var i = 0; i < _this.apps.length; i++) { - $scope.appsView[i] = { - sizeX : 1, - sizeY : 1, - headerText : '', - subHeaderText : '', - imageLink : '', - order : '', - url : '', - appid: '', - }; - $scope.appsView[i].headerText = appsReturned[i].name; - $scope.appsView[i].subHeaderText = appsReturned[i].notes; - let imgLnk = ''; - if (appsReturned[i].imageUrl) - imgLnk = conf.api.appThumbnail.replace(':appId', appsReturned[i].id); - //$log.debug('DashboardCtlr::applyPresn: imgLink = ' + imgLnk); - $scope.appsView[i].imageLink = imgLnk; - $scope.appsView[i].order = appsReturned[i].order; - $scope.appsView[i].url = appsReturned[i].url; - $scope.appsView[i].restrictedApp = appsReturned[i].restrictedApp; - $scope.appsView[i].appid = appsReturned[i].id; - } - $scope.appsView[_this.apps.length] = { - addRemoveApps : true, - sizeX : 1, - sizeY : 1, - headerText : 'Add/Remove Applications', - subHeaderText : '', - imageLink : 'assets/images/cloud.png', - order : '', - restrictedApp : false, - url : '', - }; - if($scope.appsView.length>6){ - $(".dashboard-boarder").css({ - "height" : "400px" - }); - }else{ - $(".dashboard-boarder").css({ - "height" : "210px" - }); - } - - if ($scope.appsView != undefined - && $scope.appsView != null - && $scope.appsView.length > 0) { - $scope.appsViewData = $scope.appsView; - } - } - -$scope.widgetsView = []; - - $scope.applyPresentationDetailsToWidgets = function(widgetsReturned){ - var rowNo = 0; - for (var i = 0; i < widgetsReturned.length; i++) { - $scope.widgetsView[i] = { - sizeX : '', - sizeY :'', - headerText:'', - widgetText:'', - widgetIdentifier : '', - url : '', - widgetid: '', - attrb:'', - row:'', - col:'', - }; - $scope.widgetsView[i].widgetid = widgetsReturned[i].id; - $scope.widgetsView[i].headerText = widgetsReturned[i].headerName; - $scope.widgetsView[i].widgetText = widgetsReturned[i].name; - - if(widgetsReturned[i].headerName.toLowerCase() === 'news'){ - $scope.widgetsView[i].widgetIdentifier = 'NEWS'; - } - else - if(widgetsReturned[i].headerName.toLowerCase() === 'resources'){ - $scope.widgetsView[i].widgetIdentifier = 'IMPORTANTRESOURCES'; - } - else - if(widgetsReturned[i].headerName.toLowerCase() === 'events'){ - $scope.widgetsView[i].widgetIdentifier = 'EVENTS'; - } - - $scope.widgetsView[i].url = widgetsReturned[i].url; - $scope.widgetsView[i].attrb = widgetsReturned[i].attrs; - if(widgetsReturned[i].width === null){ - $scope.widgetsView[i].sizeX = 2; - }else{ - $scope.widgetsView[i].sizeX = widgetsReturned[i].width; - } - if(widgetsReturned[i].height === null){ - $scope.widgetsView[i].sizeY = 2; - }else{ - $scope.widgetsView[i].sizeY = widgetsReturned[i].height; - } - $scope.widgetsView[i].row = widgetsReturned[i].x; - $scope.widgetsView[i].col = widgetsReturned[i].y; - } - if ($scope.widgetsView != undefined - && $scope.widgetsView != null - && $scope.widgetsView.length > 0) { - $scope.widgetsViewData = $scope.widgetsView; - } - } - - applicationsService - .getUserAppsSortTypePreference().then(function(res) { - var resJson = {}; - resJson.value = res; - if (resJson.value==="N" || resJson.value==="") { - resJson.index = 0; - resJson.title = 'Name'; - }else if (resJson.value==="L") { - resJson.index = 1; - resJson.title = 'Last used'; - }else if(resJson.value==="F"){ - resJson.index = 2; - resJson.title = 'Most used'; - }else { - resJson.index = 3; - resJson.title = 'Manual'; - } - $scope.selectedSortType = resJson; - $scope.selectedSortTypeChanged(res); - - - }); - - $scope.widgetsList = []; - - let getUserWidgets = (loginName) => { - var conf = this.conf; - widgetsCatalogService.getUserWidgets(loginName).then(res => { - if(!(res instanceof Array)){ - this.isCommError = true; - return; - } - for(var i = 0; i < res.length; i++){ - var widget_id = res[i][0]; - var widget_name = res[i][1]; - let url = this.conf.api.widgetCommon + "/" + widget_id + "/framework.js"; - var header_name = widget_name; - if(res[i][7] == 1){ - header_name = (widget_name.length > 9) ?widget_name.substring(0, 8) + '...' : widget_name; - } - if(res[i][4] === "S" || res[i][4] === null ){ - $scope.widgetsList.push({ - id: widget_id, - headerName: header_name, - name: widget_name, - url: url, - attrs: [{attr: 'data-' + res[i][0], value: ''}], - x: res[i][3], - y: res[i][5], - height: res[i][6], - width: res[i][7] - }); - } - var script = document - .createElement('script'); - script.src = url; - script.async = false; - var entry = document - .getElementsByTagName('script')[0]; - entry.parentNode - .insertBefore(script, entry); - } - $scope.applyPresentationDetailsToWidgets($scope.widgetsList); - }).catch(err => { - $log.error('WidgetsHomeCtrl::getUserWidgets error: ' + err); - }).finally(()=> { - - }); - }; - - userProfileService.getUserProfile().then( - function(profile) { - $scope.orgUserId = profile.orgUserId; - getUserWidgets($scope.orgUserId); - }); - - /* Widget Gridster Section */ - $scope.newsGridsterItem = { - sizeX : 1, - sizeY : 1, - headerText : 'News', - subHeaderText : '', - imageLink : '', - order : '', - url : '' - }; - - $scope.eventsGridsterItem = { - sizeX : 1, - sizeY : 1, - headerText : 'Events', - subHeaderText : '', - imageLink : '', - order : '', - url : '' - }; - - $scope.impoResGridsterItem = { - sizeX : 1, - sizeY : 1, - headerText : 'Resources', - subHeaderText : '', - imageLink : '', - order : '', - url : '' - }; - - this.gridsterAppOpts = { - columns : 6, - colWidth : 190, - rowHeight : 190, - margins : [ 20, 20 ], - outerMargin : true, - pushing : true, - floating : true, - swapping : true, - resizable: { - enabled: false, - }, - draggable : { - handle:'.icon-content-gridguide', - stop: function stop() { - $scope.defaultSortBy = function() { - var resJson = {}; - resJson.value = 'M'; - resJson.index = 3; - resJson.title = 'Manual'; - $scope.selectedSortType = resJson; - applicationsService.saveAppsSortTypeManual($scope.appsViewData) - applicationsService.saveAppsSortTypePreference($scope.selectedSortType) - } - $scope.defaultSortBy(); - } - } - }; - - this.gridsterWidgetOpts = { - columns : 6, - colWidth : 190, - rowHeight : 190, - margins : [ 20, 20 ], - outerMargin : true, - pushing : true, - floating : true, - swapping : true, - resizable: { - enabled: true, - stop: function stop(event, uiWidget, $element){ - if($element.sizeX == 1) - $element.headerText = ($element.widgetText.length > 9) ? $element.widgetText.substring(0, 8) + '...' : $element.widgetText; - if($element.sizeX >= 2) - $element.headerText = $element.widgetText; - - applicationsService - .saveWidgetsSortManual($scope.widgetsViewData) - - } - }, - draggable : { - handle:'.icon-content-gridguide', - stop: function stop(){ - applicationsService - .saveWidgetsSortManual($scope.widgetsViewData) - - } - } - }; - - this.goToCatalog = function(item) { - $state.go('root.appCatalog'); - } - - this.goToWidgetCatLog = function(item) { - $state.go('root.widgetCatalog'); - } - - // navigate to application url in new tab - this.goToPortal = function(item) { - if (!item.url) { - $log.error('No URL found for this application, doing nothing!'); - return; - } - if (item.restrictedApp) { - // Link-based apps open in their own browser tab - $window.open(item.url, '_blank'); - } else { - // cache control so browsers load app page every time - var ccParam = 'cc=' + new Date().getTime(); - var urlParts = item.url.split('#'); - var appUrl = null; - if (urlParts.length < 2) { - // no # - let urlLastChar = item.url.charAt(item.url.length - 1); - if (item.url.includes("?")) - appUrl = (urlLastChar === '&' ? item.url + ccParam : item.url + '&' + ccParam); - else - appUrl = item.url + '?' + ccParam; - } else { - // has # - let urlLastChar = urlParts[0].charAt(urlParts[0].length - 1); - if (item.url.includes("?")) - appUrl = (urlLastChar === '&' ? urlParts[0] + ccParam + '#' + urlParts[1] : urlParts[0] + '&' + ccParam + '#' + urlParts[1]); - else - appUrl = urlParts[0] + '?' + ccParam + "#" + urlParts[1]; - } - // $log.debug('DashboardCtrlr::goToPortal: opening tab with URL - // ' + appUrl); - var tabContent = { - id: new Date(), - title: item.headerText, - url: appUrl, - appId: item.appId - }; - $cookies.putObject('addTab', tabContent); - } - - }; - - this.auditLog = function(app) { - console.log(app); - auditLogService.storeAudit(app.appid,'app',app.url); - }; - - if (getParameterByName('noUserError') != null) { - if (getParameterByName('noUserError') == "Show") { - $("#errorInfo").show(); - } - } - }; - - DashboardCtrl.$inject = [ 'conf', 'applicationsService', '$log', '$window', - 'userProfileService', '$scope', '$cookies', '$timeout', '$interval', - '$modal', '$state', 'beReaderService', 'dashboardService', 'confirmBoxService', - 'auditLogService', 'ngDialog', '$compile', 'widgetsCatalogService' ]; - angular.module('ecompApp').controller('DashboardCtrl', DashboardCtrl); -})(); - -function getParameterByName(name, url) { - if (!url) - url = window.location.href; - name = name.replace(/[\[\]]/g, "\\$&"); - var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), results = regex - .exec(url); - if (!results) - return ''; - if (!results[2]) - return ''; - return results[2].replace(/\+/g, " "); -} +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +function _classCallCheck(instance, Constructor) { + if (!(instance instanceof Constructor)) { + throw new TypeError('Cannot call a class as a function'); + } +} + +(function() { + var HTTP_PROTOCOL_RGX = /https?:\/\//; + + var DashboardCtrl = function DashboardCtrl(conf, applicationsService, $log, + $window, userProfileService, $scope, $cookies, $timeout, $interval, + $modal, $state, beReaderService, dashboardService, confirmBoxService, + auditLogService,ngDialog, $compile, widgetsCatalogService) { + + this.conf = conf; + var _this = this; + + _classCallCheck(this, DashboardCtrl); + + // activate spinner + this.isLoading = true; + this.isCommError = false; + $scope.getUserAppsIsDone = false; + this.userProfileService = userProfileService; + $scope.demoNum = 1; + $scope.event_content_show = false; + $scope.widgetData = []; + $scope.activateThis = function(ele){ + $compile(ele.contents())($scope); + $scope.$apply(); + }; + + $scope.editWidgetModalPopup = function(availableData, resourceType) { + $scope.editData = JSON.stringify(availableData); + $scope.availableDataTemp = $scope.availableData; + ngDialog.open({ + templateUrl : 'app/views/dashboard/dashboard-widget-manage.html', + controller : 'CommonWidgetController', + resolve : { + message : function message() { + var message = { + type : resourceType, + availableData : $scope.editData + }; + return message; + } + } + }).closePromise.then(needUpdate => { + if(resourceType=='NEWS'){ + $scope.updateNews(); + }else if(resourceType=='EVENTS'){ + $scope.updateEvents(); + }else if(resourceType=='IMPORTANTRESOURCES'){ + $scope.updateImportRes(); + } + }); + }; + + $scope.editWidgetParameters = function(widgetId) { + let data = { + widgetId: widgetId + } + ngDialog.open({ + templateUrl : 'app/views/dashboard/dashboard-widget-parameter-manage.html', + controller : 'WidgetParameterController', + data: data + }).closePromise.then(needUpdate => { + + }); + }; + + $scope.sort_options = [ + {index: 0, value: 'N', title: 'Name'}, + {index: 1, value: 'L', title: 'Last used'}, + {index: 2, value: 'F', title: 'Most used'}, + {index: 3, value: 'M', title: 'Manual'} + ]; + + $scope.selectedSortTypeChanged = function(userAppSortTypePref) { + $scope.appsViewData = []; + $scope.appsView = []; + + $scope.sort_type = userAppSortTypePref; + + applicationsService + .getAppsOrderBySortPref(userAppSortTypePref) + .then(function(res) { + _this.apps = res; + $scope.applyPresentationDetailsToApps(_this.apps); + }) + applicationsService + .saveAppsSortTypePreference($scope.selectedSortType) + .then(function(res) { + // Nothing to do + }) + + } + $scope.$watch('selectedSortType.value', (newVal, oldVal) => { + for(var i=0;i<$scope.sort_options.length;i++){ + if($scope.sort_options[i].value==newVal){ + $scope.selectedSortType=angular.copy($scope.sort_options[i]);; + } + } + }); + + $scope.restoreSortSelected = function(){ + confirmBoxService.confirm("Restore the default size and position of all widgets?").then( + function(confirmed){ + var checkConfirm = confirmed; + if(checkConfirm === true){ + applicationsService + .delWidgetsSortPref($scope.widgetsViewData).then(function(){ + $state.reload(); + }); + } + }); + /* if(confirm('Restore the default size and position of all widgets?') == true) + { + applicationsService + .delWidgetsSortPref($scope.widgetsViewData).then(function(){ + $state.reload(); + }) + }*/ + + } + + $scope.applyPresentationDetailsToApps = function(appsReturned) { + var rowNo = 0; + for (var i = 0; i < _this.apps.length; i++) { + $scope.appsView[i] = { + sizeX : 1, + sizeY : 1, + headerText : '', + subHeaderText : '', + imageLink : '', + order : '', + url : '', + appid: '', + }; + $scope.appsView[i].headerText = appsReturned[i].name; + $scope.appsView[i].subHeaderText = appsReturned[i].notes; + let imgLnk = ''; + if (appsReturned[i].imageUrl) + imgLnk = conf.api.appThumbnail.replace(':appId', appsReturned[i].id); + //$log.debug('DashboardCtlr::applyPresn: imgLink = ' + imgLnk); + $scope.appsView[i].imageLink = imgLnk; + $scope.appsView[i].order = appsReturned[i].order; + $scope.appsView[i].url = appsReturned[i].url; + $scope.appsView[i].restrictedApp = appsReturned[i].restrictedApp; + $scope.appsView[i].appid = appsReturned[i].id; + } + $scope.appsView[_this.apps.length] = { + addRemoveApps : true, + sizeX : 1, + sizeY : 1, + headerText : 'Add/Remove Applications', + subHeaderText : '', + imageLink : 'assets/images/cloud.png', + order : '', + restrictedApp : false, + url : '', + }; + if($scope.appsView.length>6){ + $(".dashboard-boarder").css({ + "height" : "400px" + }); + }else{ + $(".dashboard-boarder").css({ + "height" : "210px" + }); + } + + if ($scope.appsView != undefined + && $scope.appsView != null + && $scope.appsView.length > 0) { + $scope.appsViewData = $scope.appsView; + } + } + +$scope.widgetsView = []; + + $scope.applyPresentationDetailsToWidgets = function(widgetsReturned){ + var rowNo = 0; + for (var i = 0; i < widgetsReturned.length; i++) { + $scope.widgetsView[i] = { + sizeX : '', + sizeY :'', + headerText:'', + widgetText:'', + widgetIdentifier : '', + url : '', + widgetid: '', + attrb:'', + row:'', + col:'', + }; + $scope.widgetsView[i].widgetid = widgetsReturned[i].id; + $scope.widgetsView[i].headerText = widgetsReturned[i].headerName; + $scope.widgetsView[i].widgetText = widgetsReturned[i].name; + + if(widgetsReturned[i].headerName.toLowerCase() === 'news'){ + $scope.widgetsView[i].widgetIdentifier = 'NEWS'; + } + else + if(widgetsReturned[i].headerName.toLowerCase() === 'resources'){ + $scope.widgetsView[i].widgetIdentifier = 'IMPORTANTRESOURCES'; + } + else + if(widgetsReturned[i].headerName.toLowerCase() === 'events'){ + $scope.widgetsView[i].widgetIdentifier = 'EVENTS'; + } + + $scope.widgetsView[i].url = widgetsReturned[i].url; + $scope.widgetsView[i].attrb = widgetsReturned[i].attrs; + if(widgetsReturned[i].width === null){ + $scope.widgetsView[i].sizeX = 2; + }else{ + $scope.widgetsView[i].sizeX = widgetsReturned[i].width; + } + if(widgetsReturned[i].height === null){ + $scope.widgetsView[i].sizeY = 2; + }else{ + $scope.widgetsView[i].sizeY = widgetsReturned[i].height; + } + $scope.widgetsView[i].row = widgetsReturned[i].x; + $scope.widgetsView[i].col = widgetsReturned[i].y; + } + if ($scope.widgetsView != undefined + && $scope.widgetsView != null + && $scope.widgetsView.length > 0) { + $scope.widgetsViewData = $scope.widgetsView; + } + } + + applicationsService + .getUserAppsSortTypePreference().then(function(res) { + var resJson = {}; + resJson.value = res; + if (resJson.value==="N" || resJson.value==="") { + resJson.index = 0; + resJson.title = 'Name'; + }else if (resJson.value==="L") { + resJson.index = 1; + resJson.title = 'Last used'; + }else if(resJson.value==="F"){ + resJson.index = 2; + resJson.title = 'Most used'; + }else { + resJson.index = 3; + resJson.title = 'Manual'; + } + $scope.selectedSortType = resJson; + $scope.selectedSortTypeChanged(res); + + + }); + + $scope.widgetsList = []; + + let getUserWidgets = (loginName) => { + var conf = this.conf; + widgetsCatalogService.getUserWidgets(loginName).then(res => { + if(!(res instanceof Array)){ + this.isCommError = true; + return; + } + for(var i = 0; i < res.length; i++){ + var widget_id = res[i][0]; + var widget_name = res[i][1]; + let url = this.conf.api.widgetCommon + "/" + widget_id + "/framework.js"; + var header_name = widget_name; + if(res[i][7] == 1){ + header_name = (widget_name.length > 9) ?widget_name.substring(0, 8) + '...' : widget_name; + } + if(res[i][4] === "S" || res[i][4] === null ){ + $scope.widgetsList.push({ + id: widget_id, + headerName: header_name, + name: widget_name, + url: url, + attrs: [{attr: 'data-' + res[i][0], value: ''}], + x: res[i][3], + y: res[i][5], + height: res[i][6], + width: res[i][7] + }); + } + var script = document + .createElement('script'); + script.src = url; + script.async = false; + var entry = document + .getElementsByTagName('script')[0]; + entry.parentNode + .insertBefore(script, entry); + } + $scope.applyPresentationDetailsToWidgets($scope.widgetsList); + }).catch(err => { + $log.error('WidgetsHomeCtrl::getUserWidgets error: ' + err); + }).finally(()=> { + + }); + }; + + userProfileService.getUserProfile().then( + function(profile) { + $scope.orgUserId = profile.orgUserId; + getUserWidgets($scope.orgUserId); + }); + + /* Widget Gridster Section */ + $scope.newsGridsterItem = { + sizeX : 1, + sizeY : 1, + headerText : 'News', + subHeaderText : '', + imageLink : '', + order : '', + url : '' + }; + + $scope.eventsGridsterItem = { + sizeX : 1, + sizeY : 1, + headerText : 'Events', + subHeaderText : '', + imageLink : '', + order : '', + url : '' + }; + + $scope.impoResGridsterItem = { + sizeX : 1, + sizeY : 1, + headerText : 'Resources', + subHeaderText : '', + imageLink : '', + order : '', + url : '' + }; + + this.gridsterAppOpts = { + columns : 6, + colWidth : 190, + rowHeight : 190, + margins : [ 20, 20 ], + outerMargin : true, + pushing : true, + floating : true, + swapping : true, + resizable: { + enabled: false, + }, + draggable : { + handle:'.icon-content-gridguide', + stop: function stop() { + $scope.defaultSortBy = function() { + var resJson = {}; + resJson.value = 'M'; + resJson.index = 3; + resJson.title = 'Manual'; + $scope.selectedSortType = resJson; + applicationsService.saveAppsSortTypeManual($scope.appsViewData) + applicationsService.saveAppsSortTypePreference($scope.selectedSortType) + } + $scope.defaultSortBy(); + } + } + }; + + this.gridsterWidgetOpts = { + columns : 6, + colWidth : 190, + rowHeight : 190, + margins : [ 20, 20 ], + outerMargin : true, + pushing : true, + floating : true, + swapping : true, + resizable: { + enabled: true, + stop: function stop(event, uiWidget, $element){ + if($element.sizeX == 1) + $element.headerText = ($element.widgetText.length > 9) ? $element.widgetText.substring(0, 8) + '...' : $element.widgetText; + if($element.sizeX >= 2) + $element.headerText = $element.widgetText; + + applicationsService + .saveWidgetsSortManual($scope.widgetsViewData) + + } + }, + draggable : { + handle:'.icon-content-gridguide', + stop: function stop(){ + applicationsService + .saveWidgetsSortManual($scope.widgetsViewData) + + } + } + }; + + this.goToCatalog = function(item) { + $state.go('root.appCatalog'); + } + + this.goToWidgetCatLog = function(item) { + $state.go('root.widgetCatalog'); + } + + // navigate to application url in new tab + this.goToPortal = function(item) { + userProfileService.getUserRolesForApplication($scope.orgUserId,item.appid) + .then(res=>{ + var count = 0; + for(var i=0;i0 && res.length == count)||res.length==0) + { + confirmBoxService.showInformation('You have no roles assigned to this application to access.').then(isConfirmed => {}); + + } + else{ + if (!item.url) { + $log.error('No URL found for this application, doing nothing!'); + return; + } + if (item.restrictedApp) { + // Link-based apps open in their own browser tab + $window.open(item.url, '_blank'); + } else { + // cache control so browsers load app page every time + var ccParam = 'cc=' + new Date().getTime(); + var urlParts = item.url.split('#'); + var appUrl = null; + if (urlParts.length < 2) { + // no # + let urlLastChar = item.url.charAt(item.url.length - 1); + if (item.url.includes("?")) + appUrl = (urlLastChar === '&' ? item.url + ccParam : item.url + '&' + ccParam); + else + appUrl = item.url + '?' + ccParam; + } else { + // has # + let urlLastChar = urlParts[0].charAt(urlParts[0].length - 1); + if (item.url.includes("?")) + appUrl = (urlLastChar === '&' ? urlParts[0] + ccParam + '#' + urlParts[1] : urlParts[0] + '&' + ccParam + '#' + urlParts[1]); + else + appUrl = urlParts[0] + '?' + ccParam + "#" + urlParts[1]; + } + // $log.debug('DashboardCtrlr::goToPortal: opening tab with URL + // ' + appUrl); + var tabContent = { + id: new Date(), + title: item.headerText, + url: appUrl, + appId: item.appId + }; + $cookies.putObject('addTab', tabContent); + } + + } + }); + + + + + }; + + this.auditLog = function(app) { + console.log(app); + auditLogService.storeAudit(app.appid,'app',app.url); + }; + + if (getParameterByName('noUserError') != null) { + if (getParameterByName('noUserError') == "Show") { + $("#errorInfo").show(); + } + } + }; + + DashboardCtrl.$inject = [ 'conf', 'applicationsService', '$log', '$window', + 'userProfileService', '$scope', '$cookies', '$timeout', '$interval', + '$modal', '$state', 'beReaderService', 'dashboardService', 'confirmBoxService', + 'auditLogService', 'ngDialog', '$compile', 'widgetsCatalogService' ]; + angular.module('ecompApp').controller('DashboardCtrl', DashboardCtrl); +})(); + +function getParameterByName(name, url) { + if (!url) + url = window.location.href; + name = name.replace(/[\[\]]/g, "\\$&"); + var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), results = regex + .exec(url); + if (!results) + return ''; + if (!results[2]) + return ''; + return results[2].replace(/\+/g, " "); +} diff --git a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard.less b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard.less index bf6530b4..ac2a3cba 100644 --- a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard.less +++ b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard.less @@ -1,901 +1,910 @@ -.w-ecomp-dashboard-home { - .bg_portalWhite;//white for 1702 - position: @page-main-position; - top: @page-main-top; - left: @page-main-left; - right: @page-main-right; - bottom: @page-main-bottom; - padding-top: @padding-top; - overflow-y: @page-main-overflow-y; - padding-left: @padding-left-side; - - .gridster-item-container .gridster-item-body { - overflow-y:auto; - overflow-x:hidden; - } - - .dashboard-home-container { - position: relative; - padding-right: 0; - padding-left: 0; - padding-bottom: @container-bottom; - - .dashboard-home-title { - .blackText24m; - margin: auto; - .content_justify; - } - - .portals-list { - min-height: 70vh; - //display: flex; - justify-content: center; - flex-flow: row wrap; - width: @table-width; - //margin-left: 230px; - margin-bottom: 63px; - margin:auto; - .app-gridster-header { - background-color: @u; - font-size:12px; - overflow:hidden - } - - .app-gridster-footer { - background-color: @u; - } - - .portals-list-item { - background-color: @u; - border-radius: 2px; - box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.1); - display: inline-block; - width: 360px; - height: 300px; - background-size: cover; - cursor: pointer; - margin: 15px; - overflow: hidden; - - .portals-item-info { - background-color: @u; - height: 120px; - top: 180px; - position: relative; - box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.1); - padding: 16px; - - .info-title { - .blackText24m; - margin-bottom: 4px; - - text-overflow: ellipsis; - overflow: hidden; - } - .info-description { - .portalDBlue16r; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; - } - .info-button { - .btn-green; - width: 96px; - position: absolute; - bottom: 16px; - left: 16px; - } - - &:hover { - opacity: .93; - z-index: 3; - } - } - } - } - } -} -.w-ecomp-main-error{ - .portalRed; - position: absolute; - width: 100%; - line-height: 1.5em; -} -.w-ecomp-main-disclaimer { - text-align: center; - .dGray14r; - //position: absolute; - bottom: -75px; - line-height: 1.5em; - margin: 0 auto; - width:1170px; - position: relative; - -} - -@keyframes fadein { - from { - opacity: 0; - } - to { - opacity: 1; - } -} - -.slide.ng-hide-add, -.slide.ng-hide-remove, -.slide.ng-enter, -.slide.ng-leave { - transition: all 0.5s ease; -} -.slide.ng-hide, -.slide.ng-enter { - transform: translate(-100%, 0); -} -.slide.ng-enter-active { - transform: translate(0, 0); -} -.slide.ng-leave { - transform: translate(0, 0); -} -.slide.ng-leave-active { - transform: translate(+100%, 0); -} -.dashboard-boarder{ - // border: 2px solid #ccc!important; - // border-radius: 16px!important; - height: 210px; - overflow: auto; -} -.dashboard-information-boarder{ - border: 2px solid #ccc!important; - border-radius: 16px!important; -} - -#information-section { - margin-top:50px; -} - -.information-section-title{ - color: #0574ac; - font-family: Omnes-ECOMP-W02-Bold,Arial; - font-size: 25px; - margin: 20px; - width: 1170px; -} -#left { - float: left; - width: 33%; - height:300px; - background-color: white; -} - -#center { - float: right; - width: 33%; - height:300px; - background: white; -} -#right { - margin-left:34%; - margin-right:34%; - height:300px; - background:white; -} - - -/*hover*/ - - -.dock ul{ -display: inline-block; - -width: auto; -margin: 0px; -padding: 0px; -list-style: none; - -} -.dock ul li { -width: auto; -height: auto; -display: inline-block; -bottom: 0; -vertical-align: bottom; -margin-top: -43px; -} -.dock ul li a { -display: block; -height: 150px; -width: 150px; -position: relative; --webkit-transition-property: width, height,margin-top; --webkit-transition-duration: 0.5s; --o-transition-property: width, height,margin-top; --o-transition-duration: 0.5s; --moz-transition-property: width, height,margin-top; --moz-transition-duration: 0.5s; -} -.dock ul li a:hover { -width: 200px; -height: 200px; -margin-top: -50px; -} -.dock ul li a img { -width: 100%; -position: absolute; -bottom: 0; -left: 0; -border: none; -padding: 0px 0px 0px 30px; -} -.dock_left{ -width: 31px; --webkit-transform: rotate(33deg); --moz-transform: rotate(33deg); --o-transform: rotate(33deg); -position: relative; -background: #EEE; -overflow: hidden; -float: left; -height: 100px; -z-index: 2; -margin: -18px; -} -.dock_right{ -width: 36px; --webkit-transform: rotate(-33deg); --moz-transform: rotate(-33deg); --o-transform: rotate(-33deg); -position: relative; -background: #EEE; -overflow: hidden; -float: left; -height: 100px; -z-index: 2; -margin: -18px; -} - - - - -/*Time for the CSS*/ -* {margin: 0; padding: 0;} -body {background: #ccc;} - -.slider{ - width: 640px; /*Same as width of the large image*/ - position: relative; - /*Instead of height we will use padding*/ - padding-top: 320px; /*That helps bring the labels down*/ - - margin: 50px auto; - - /*Lets add a shadow*/ - box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.75); -} - - -/*Last thing remaining is to add transitions*/ -.slider>img{ - position: absolute; - left: 0; top: 0; - transition: all 0.5s; -} - -.slider input[name='slide_switch'] { - display: none; -} - -.slider label { - /*Lets add some spacing for the thumbnails*/ - margin: 18px 0 0 18px; - border: 3px solid #999; - - float: left; - cursor: pointer; - transition: all 0.5s; - - /*Default style = low opacity*/ - opacity: 0.6; -} - -.slider label img{ - display: block; -} - -/*Time to add the click effects*/ -.slider input[name='slide_switch']:checked+label { - border-color: #666; - opacity: 1; -} -/*Clicking any thumbnail now should change its opacity(style)*/ -/*Time to work on the main images*/ -.slider input[name='slide_switch'] ~ img { - opacity: 0; - transform: scale(1.1); -} -/*That hides all main images at a 110% size -On click the images will be displayed at normal size to complete the effect -*/ -.slider input[name='slide_switch']:checked+label+img { - opacity: 1; - transform: scale(1); -} -/*Clicking on any thumbnail now should activate the image related to it*/ - -/*We are done :)*/ - - - -.accordion { - width: 895px; height: 320px; - overflow: hidden; - box-shadow: 0 10px 6px -6px #111; - margin: 20px auto -} -.accordion ul { width: 200% } - -.accordion li { - position: relative; - display: block; - width: 160px; - float: left; - box-shadow: 0 0 30px 8px #222; - transition: all 0.4s ease .300ms; -} - -.accordion ul:hover li {width: 40px } -.accordion ul li:hover {width: 640px } - -.caption { - background: rgba(0, 0, 0, 0.5); - position: absolute; - bottom: 0; - width: 640px -} - -.caption a { - display: block; - color: #fff; - text-decoration: none; - font: normal 16px 'Lato', Helvetica, Arial, sans-serif; - -webkit-font-smoothing: antialiased; - padding: 15px; -} - - -/*events*/ -.events-date{ - margin-left: 10px; - float:left; - white-space: normal; - display: inline-block; - vertical-align: middle; - width: 55px; -} -.event-title-div{ - float: left; - width: 235px; - line-height: 20px; - padding: 5px; - font-size: 14px; - margin-left: 4px; -} -.events-date{ - height: 20px; - margin-left: 4px; - font-size: 14px; -} -.events-content{ - font-size: 14px; - color: #444; - margin-right: 10px; -} -.events-content-body{ - margin-top:5px; - color:#444; - margin-left:12px; - line-height:1.5; -} -.events { - border-radius: 4px; - padding: 3px; - -webkit-user-select: none; -} -.events ul { - float: left; - width:100%; - -webkit-user-select: none -} -.events ul li { - line-height: 30px; - list-style: none; - border-bottom: 2px solid grey; - height: 100%; - min-height: 42px; -} -.events ul li:hover { - background: #ddd; - cursor: pointer; -} -.events ul li a { - color: black; - text-decoration: none; - font: 14px Helvetica, Arial, sans-serif; - -webkit-font-smoothing: antialiased; - -webkit-user-select: none; - font-family: "Omnes-ECOMP-W02", Arial; -} -.events-link{ - color: #067ab4 !important; -} - - -/*widgets*/ - -.handle-e{ - width: 5px; -} - -.singleBtnBorder { - border-radius: 6px 6px 6px 6px; -} - -.widgetHeaderBtn{ - - height: 30px; - background-color: #FFFFFF; - position: relative; - display: inline-block; - -moz-background-clip: padding-box; - -webkit-background-clip: padding-box; - background-clip: padding-box; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 8px 20px; - font-size: 14px; - line-height: 14px; - min-width: 60px; - border: none; - border-radius: 6px; - background-color: #ffffff; - background-image: none; - color: #ffffff; - vertical-align: middle; - text-align: center; - text-decoration: none; - text-transform: capitalize; - text-shadow: none !important; - white-space: nowrap; - cursor: pointer; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; - -webkit-transition: background-color 0.3s ease-out; - -moz-transition: background-color 0.3s ease-out; - transition: background-color 0.3s ease-out; - } - -.widgetHeaderBtnPosition { - width: 30px; - min-width: 0px; - border: 1px solid #AAAAAA; - padding-left: 3px; - padding-right: 5px; - } - -.icon-anchor { - color: #888; -} - -.widgetHeaderBtn:hover, .widgetHeaderBtn:focus { - background: rgba(0, 0, 0, 0); - color: #3a7999; - box-shadow: inset 0 0 0 2px #3a7999; -} -/*news*/ - -@keyframes ticker { - 0% {margin-top: 0} - 25% {margin-top: -55px} - 50% {margin-top: -110px} - 75% {margin-top: -165px} - 100% {margin-top: 0} -} - -body { background: #333; width: 100%; height: 100% } - -.news { - - width: 350px; - height: 250px; - margin: 0px auto; - // overflow: auto; - border-radius: 4px; - padding: 3px; - -webkit-user-select: none; - -} - - - -.news ul { - float: left; - width:100%; - // animation: ticker 25s cubic-bezier(1, 0, .5, 0) infinite; - -webkit-user-select: none -} - -.news ul li {line-height: 30px; list-style: none; - border-bottom: 2px solid grey; - min-height: 42px; - } - -.news ul li:hover { - background: #ddd; - cursor: pointer; -} - -.news ul li a { - color: black; - text-decoration: none; - font-size: 14px; - line-height: 1.5; - display: inline-block; - width:100%; - min-height:40px; - padding-top: 5px; - padding-bottom: 5px; - -webkit-font-smoothing: antialiased; - -webkit-user-select: none; -} - -.news ul:hover { animation-play-state: paused } -.news span:hover+ul { animation-play-state: paused } -/*resources*/ -.resources { - - width: 100%; - height: 200px; - margin-left: 5px; - border-radius: 4px; - padding: 3px; - -webkit-user-select: none; - -} - - - -.resources ul { - float: left; - width:100%; - - -webkit-user-select: none -} - -.resources ul li {line-height: 30px; list-style: none; - border-bottom: 2px solid grey; - min-height: 42px; - } - -.resources ul li:hover { - background: #ddd; - cursor: pointer; -} - -.resources ul li a { - color: black; - text-decoration: none; - font-size: 14px; - line-height: 1.5; - width:100%; - min-height:40px; - display: inline-block; - padding-top: 5px; - padding-bottom: 5px; - -webkit-font-smoothing: antialiased; - -webkit-user-select: none; -} - - -/* OTHER COLORS */ -.blue { background: #347fd0 } -.blue span { background: #2c66be } -.red { background: #d23435 } -.red span { background: #c22b2c } -.green { background: #699B67 } -.green span { background: #547d52 } -.magenta { background: #b63ace } -.magenta span { background: #842696 } - - -/*broadcast*/ - -.box-one { - -webkit-transition:all linear 0.4s; - transition:all linear 0.4s; - height:100px; width:200px; background:white; border: 2px solid #ccc!important; - border-radius: 16px!important; -} -.box-one.ng-hide { -display: block!important; - opacity:0; -} - -.gridsterContent{ - height:120px; -} - -.gridster-item{ - z-index:0 !important; -} -.gridsterAppContent{ - height:120px; - -} - - .gridsterImage{ - height:84px; - width:168px; - } - .grider-content-ecomp{ - transition: transform 0.5s ease-out; - } - .grider-content-ecomp:hover{ - transform: scale(1.1); -} - - -/*information section*/ - -.information-section{ - /*margin-top:25px;*/ -} -.information-section-gridsterContent{ - /*height:300px;*/ -} -.information-sections-gridster-header{ - color: #0574ac; - font-family: Omnes-ECOMP-W02-Bold,Arial; - font-size: 25px; - -} -/*application empty div*/ -.app-error-block { - padding-top: 10px; - -} -/*news empty div*/ -.activity-error-block { - padding-top: 60px; - -} - -.activity-error-msg1{ - text-align: center; - margin-top: 20px; - font-family: "Omnes-ECOMP-W02", Arial; - color: #444; - font-size: 20px; - -} - -.newstape { - background: white; - color: black; - height: 400px; - overflow: hidden; -} - -.newstape-content { - position: relative; - padding: 15px; -} - -.newstape-drag { cursor: ns-resize; } - -.text-center { text-align: center; } - -.text-right { text-align: right; } - -.text-justify { text-align: justify; } - -// #newsContainer{ -// overflow:auto; -// height: 100%; -// } - -/*widget header*/ -.optionsMenu{ - position: absolute; - list-style: none; - top: 25px; - right: 10px; - border: 1px solid #067ab4; - display: none; - z-index: 2; - border-radius: 6px 0px 6px 6px; - background: #fff; - width: 130px; -} - -.optionsMenuLink { - position: relative; - padding-left: 8px; - padding-right: 2px; - font-size: 12px; - line-height: 30px; - color: #444444; -} -.optionsMenu > li:hover a { - color: #ffffff !important; -} -.optionsMenu > li { - width: 100%; - text-align: left; -} -.optionsMenu > li:hover { - background-color: #0faaf7; - border-color: none !important; - cursor: pointer; -} - -.dashboardSortHeader{ - margin-left: 756px; -} - -#dashboardAddWidgetPreference{ - display: inline-block; - font-size: 14px; - color: #3e3e3e; - width: 69%; - text-align: center; - padding: 15px 0px 15px 0px; - font-family: "Omnes-ECOMP-W02", Arial; -} - -#dashboardAddWidgetPreference:hover{ - background-color: #0568ae; - color:white !important; -} - -#dashboardDefaultPreference{ - display: inline-block; - font-size: 14px; - color: #3e3e3e; - width: 30%; - text-align: center; - padding: 15px 0px 15px 0px; - font-family: "Omnes-ECOMP-W02", Arial; -} - -#dashboardDefaultPreference:hover{ - background-color: #0568ae; - color:white !important; -} - -.simulateGridHeader{ - position: relative; - height: 50px !important; - border: 1px solid #d3d3d3; - border-bottom: 0; - background-color: #E5E5E5; - white-space: nowrap; - text-overflow: ellipsis; - z-index: 1; -} - -.simulateGridHeaderTitle{ - line-height: 44px; - margin-left: 26px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 18px; - color: #444444; - float: left; -} - -.simulateGridHeaderHandle{ - cursor: move; - margin: 12px; - position: absolute; - top: 0; - left: 0; - border: 0; - vertical-align: middle; - -ms-interpolation-mode: bicubic; - display: block; -} - -/* apps gridsters */ -ul { - list-style: none; -} -.gridster-box { - height: 100%; - border: 1px solid #ccc; - background-color: #fff; - transition: transform 0.5s ease-out; -} -.gridster-box-header { - background-color: #fff; - padding: 0 0px 0 10px; - border-bottom: 1px solid #ccc; - position: relative; - height: 50px !important; -} -.gridster-box-header h3 { - margin-top: 15px; - display: inline-block; - font-family: "Omnes-ECOMP-W02", Arial; -} - -.gridster-box-header i { -font-size: 22px; -} - -.gridster-box-content { - padding: 59px; -} -.gridster-box:hover{ - transform: scale(1.1); -} -.gridster-box-header-btns { - top: 15px; - right: 10px; - position: absolute; -} - -/*** widgets ***/ -ul { - list-style: none; -} -.box { - height: 100%; - border: 1px solid #ccc; - background-color: #fff; - font-family: "Omnes-ECOMP-W02", Arial; -} -.box-header { - height : 50px; - background-color: #fff; - padding: 0 30px 0 10px; - border-bottom: 1px solid #ccc; - position: relative; -} -.box-header h3 { - margin-top: 15px; - display: inline-block; - font-size: 16px; -} -.box-content { - position: absolute; - width: 100%; - top: 50px; - left: 0; - right: 0; - bottom: 29px; - border: 1px solid #d3d3d3; - box-sizing: border-box; - overflow-y: auto; - overflow-x: hidden; - color: #444444; - bottom: 0px; -} -.box-header-btns { - top: 10px; - right: 10px; - cursor: pointer; - position: absolute; -} - -#widget-boarder{ - background-color: #eee; - border: 1px dashed white; -} -.icon-content-gridguide{ -cursor:move; +.w-ecomp-dashboard-home { + .bg_portalWhite;//white for 1702 + position: @page-main-position; + top: @page-main-top; + left: @page-main-left; + right: @page-main-right; + bottom: @page-main-bottom; + padding-top: @padding-top; + overflow-y: @page-main-overflow-y; + padding-left: @padding-left-side; + + .gridster-item-container .gridster-item-body { + overflow-y:auto; + overflow-x:hidden; + } + + .dashboard-home-container { + position: relative; + padding-right: 0; + padding-left: 0; + padding-bottom: @container-bottom; + + .dashboard-home-title { + .blackText24m; + margin: auto; + .content_justify; + } + + .portals-list { + min-height: 70vh; + //display: flex; + justify-content: center; + flex-flow: row wrap; + width: @table-width; + //margin-left: 230px; + margin-bottom: 63px; + margin:auto; + .app-gridster-header { + background-color: @u; + font-size:12px; + overflow:hidden + } + + .app-gridster-footer { + background-color: @u; + } + + .portals-list-item { + background-color: @u; + border-radius: 2px; + box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.1); + display: inline-block; + width: 360px; + height: 300px; + background-size: cover; + cursor: pointer; + margin: 15px; + overflow: hidden; + + .portals-item-info { + background-color: @u; + height: 120px; + top: 180px; + position: relative; + box-shadow: 0px -1px 2px 0px rgba(0, 0, 0, 0.1); + padding: 16px; + + .info-title { + .blackText24m; + margin-bottom: 4px; + + text-overflow: ellipsis; + overflow: hidden; + } + .info-description { + .portalDBlue16r; + text-overflow: ellipsis; + white-space: nowrap; + overflow: hidden; + } + .info-button { + .btn-green; + width: 96px; + position: absolute; + bottom: 16px; + left: 16px; + } + + &:hover { + opacity: .93; + z-index: 3; + } + } + } + } + } +} +.w-ecomp-main-error{ + .portalRed; + position: absolute; + width: 100%; + line-height: 1.5em; +} +.w-ecomp-main-disclaimer { + text-align: center; + .dGray14r; + //position: absolute; + bottom: -75px; + line-height: 1.5em; + margin: 0 auto; + width:1170px; + position: relative; + +} + +@keyframes fadein { + from { + opacity: 0; + } + to { + opacity: 1; + } +} + +.slide.ng-hide-add, +.slide.ng-hide-remove, +.slide.ng-enter, +.slide.ng-leave { + transition: all 0.5s ease; +} +.slide.ng-hide, +.slide.ng-enter { + transform: translate(-100%, 0); +} +.slide.ng-enter-active { + transform: translate(0, 0); +} +.slide.ng-leave { + transform: translate(0, 0); +} +.slide.ng-leave-active { + transform: translate(+100%, 0); +} +.dashboard-boarder{ + // border: 2px solid #ccc!important; + // border-radius: 16px!important; + height: 210px; + overflow: auto; +} +.dashboard-information-boarder{ + border: 2px solid #ccc!important; + border-radius: 16px!important; +} + +#information-section { + margin-top:50px; +} + +.information-section-title{ + color: #0574ac; + font-family: Omnes-ECOMP-W02-Bold,Arial; + font-size: 25px; + margin: 20px; + width: 1170px; +} +#left { + float: left; + width: 33%; + height:300px; + background-color: white; +} + +#center { + float: right; + width: 33%; + height:300px; + background: white; +} +#right { + margin-left:34%; + margin-right:34%; + height:300px; + background:white; +} + + +/*hover*/ + + +.dock ul{ +display: inline-block; + +width: auto; +margin: 0px; +padding: 0px; +list-style: none; + +} +.dock ul li { +width: auto; +height: auto; +display: inline-block; +bottom: 0; +vertical-align: bottom; +margin-top: -43px; +} +.dock ul li a { +display: block; +height: 150px; +width: 150px; +position: relative; +-webkit-transition-property: width, height,margin-top; +-webkit-transition-duration: 0.5s; +-o-transition-property: width, height,margin-top; +-o-transition-duration: 0.5s; +-moz-transition-property: width, height,margin-top; +-moz-transition-duration: 0.5s; +} +.dock ul li a:hover { +width: 200px; +height: 200px; +margin-top: -50px; +} +.dock ul li a img { +width: 100%; +position: absolute; +bottom: 0; +left: 0; +border: none; +padding: 0px 0px 0px 30px; +} +.dock_left{ +width: 31px; +-webkit-transform: rotate(33deg); +-moz-transform: rotate(33deg); +-o-transform: rotate(33deg); +position: relative; +background: #EEE; +overflow: hidden; +float: left; +height: 100px; +z-index: 2; +margin: -18px; +} +.dock_right{ +width: 36px; +-webkit-transform: rotate(-33deg); +-moz-transform: rotate(-33deg); +-o-transform: rotate(-33deg); +position: relative; +background: #EEE; +overflow: hidden; +float: left; +height: 100px; +z-index: 2; +margin: -18px; +} + + + + +/*Time for the CSS*/ +* {margin: 0; padding: 0;} +body {background: #ccc;} + +.slider{ + width: 640px; /*Same as width of the large image*/ + position: relative; + /*Instead of height we will use padding*/ + padding-top: 320px; /*That helps bring the labels down*/ + + margin: 50px auto; + + /*Lets add a shadow*/ + box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.75); +} + + +/*Last thing remaining is to add transitions*/ +.slider>img{ + position: absolute; + left: 0; top: 0; + transition: all 0.5s; +} + +.slider input[name='slide_switch'] { + display: none; +} + +.slider label { + /*Lets add some spacing for the thumbnails*/ + margin: 18px 0 0 18px; + border: 3px solid #999; + + float: left; + cursor: pointer; + transition: all 0.5s; + + /*Default style = low opacity*/ + opacity: 0.6; +} + +.slider label img{ + display: block; +} + +/*Time to add the click effects*/ +.slider input[name='slide_switch']:checked+label { + border-color: #666; + opacity: 1; +} +/*Clicking any thumbnail now should change its opacity(style)*/ +/*Time to work on the main images*/ +.slider input[name='slide_switch'] ~ img { + opacity: 0; + transform: scale(1.1); +} +/*That hides all main images at a 110% size +On click the images will be displayed at normal size to complete the effect +*/ +.slider input[name='slide_switch']:checked+label+img { + opacity: 1; + transform: scale(1); +} +/*Clicking on any thumbnail now should activate the image related to it*/ + +/*We are done :)*/ + + + +.accordion { + width: 895px; height: 320px; + overflow: hidden; + box-shadow: 0 10px 6px -6px #111; + margin: 20px auto +} +.accordion ul { width: 200% } + +.accordion li { + position: relative; + display: block; + width: 160px; + float: left; + box-shadow: 0 0 30px 8px #222; + transition: all 0.4s ease .300ms; +} + +.accordion ul:hover li {width: 40px } +.accordion ul li:hover {width: 640px } + +.caption { + background: rgba(0, 0, 0, 0.5); + position: absolute; + bottom: 0; + width: 640px +} + +.caption a { + display: block; + color: #fff; + text-decoration: none; + font: normal 16px 'Lato', Helvetica, Arial, sans-serif; + -webkit-font-smoothing: antialiased; + padding: 15px; +} + + +/*events*/ +.events-date{ + margin-left: 10px; + float:left; + white-space: normal; + display: inline-block; + vertical-align: middle; + width: 55px; +} +.event-title-div{ + float: left; + width: 235px; + line-height: 20px; + padding: 5px; + font-size: 14px; + margin-left: 4px; +} +.events-date{ + height: 20px; + margin-left: 4px; + font-size: 14px; +} +.events-content{ + font-size: 14px; + color: #444; + margin-right: 10px; +} +.events-content-body{ + margin-top:5px; + color:#444; + margin-left:12px; + line-height:1.5; +} +.events { + border-radius: 4px; + padding: 3px; + -webkit-user-select: none; +} +.events ul { + float: left; + width:100%; + -webkit-user-select: none +} +.events ul li { + line-height: 30px; + list-style: none; + border-bottom: 2px solid grey; + height: 100%; + min-height: 42px; +} +.events ul li:hover { + background: #ddd; + cursor: pointer; +} +.events ul li a { + color: black; + text-decoration: none; + font: 14px Helvetica, Arial, sans-serif; + -webkit-font-smoothing: antialiased; + -webkit-user-select: none; + font-family: "Omnes-ECOMP-W02", Arial; +} +.events-link{ + color: #067ab4 !important; +} + + +/*widgets*/ + +.handle-e{ + width: 5px; +} + +.singleBtnBorder { + border-radius: 6px 6px 6px 6px; +} + +.widgetHeaderBtn{ + + height: 30px; + background-color: #FFFFFF; + position: relative; + display: inline-block; + -moz-background-clip: padding-box; + -webkit-background-clip: padding-box; + background-clip: padding-box; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 8px 20px; + font-size: 14px; + line-height: 14px; + min-width: 60px; + border: none; + border-radius: 6px; + background-color: #ffffff; + background-image: none; + color: #ffffff; + vertical-align: middle; + text-align: center; + text-decoration: none; + text-transform: capitalize; + text-shadow: none !important; + white-space: nowrap; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; + -webkit-transition: background-color 0.3s ease-out; + -moz-transition: background-color 0.3s ease-out; + transition: background-color 0.3s ease-out; + } + +.widgetHeaderBtnPosition { + width: 30px; + min-width: 0px; + border: 1px solid #AAAAAA; + padding-left: 3px; + padding-right: 5px; + } + +.icon-anchor { + color: #888; +} + +.widgetHeaderBtn:hover, .widgetHeaderBtn:focus { + background: rgba(0, 0, 0, 0); + color: #3a7999; + box-shadow: inset 0 0 0 2px #3a7999; +} +/*news*/ + +@keyframes ticker { + 0% {margin-top: 0} + 25% {margin-top: -55px} + 50% {margin-top: -110px} + 75% {margin-top: -165px} + 100% {margin-top: 0} +} + +body { background: #333; width: 100%; height: 100% } + +.news { + + width: 350px; + height: 250px; + margin: 0px auto; + // overflow: auto; + border-radius: 4px; + padding: 3px; + -webkit-user-select: none; + +} + + + +.news ul { + float: left; + width:100%; + // animation: ticker 25s cubic-bezier(1, 0, .5, 0) infinite; + -webkit-user-select: none +} + +.news ul li {line-height: 30px; list-style: none; + border-bottom: 2px solid grey; + min-height: 42px; + } + +.news ul li:hover { + background: #ddd; + cursor: pointer; +} + +.news ul li a { + color: black; + text-decoration: none; + font-size: 14px; + line-height: 1.5; + display: inline-block; + width:100%; + min-height:40px; + padding-top: 5px; + padding-bottom: 5px; + -webkit-font-smoothing: antialiased; + -webkit-user-select: none; +} + +.news ul:hover { animation-play-state: paused } +.news span:hover+ul { animation-play-state: paused } +/*resources*/ +.resources { + + width: 100%; + height: 200px; + margin-left: 5px; + border-radius: 4px; + padding: 3px; + -webkit-user-select: none; + +} + + + +.resources ul { + float: left; + width:100%; + + -webkit-user-select: none +} + +.resources ul li {line-height: 30px; list-style: none; + border-bottom: 2px solid grey; + min-height: 42px; + } + +.resources ul li:hover { + background: #ddd; + cursor: pointer; +} + +.resources ul li a { + color: black; + text-decoration: none; + font-size: 14px; + line-height: 1.5; + width:100%; + min-height:40px; + display: inline-block; + padding-top: 5px; + padding-bottom: 5px; + -webkit-font-smoothing: antialiased; + -webkit-user-select: none; +} + + +/* OTHER COLORS */ +.blue { background: #347fd0 } +.blue span { background: #2c66be } +.red { background: #d23435 } +.red span { background: #c22b2c } +.green { background: #699B67 } +.green span { background: #547d52 } +.magenta { background: #b63ace } +.magenta span { background: #842696 } + + +/*broadcast*/ + +.box-one { + -webkit-transition:all linear 0.4s; + transition:all linear 0.4s; + height:100px; width:200px; background:white; border: 2px solid #ccc!important; + border-radius: 16px!important; +} +.box-one.ng-hide { +display: block!important; + opacity:0; +} + +.gridsterContent{ + height:120px; +} + +.gridster-item{ + z-index:0 !important; +} +.gridsterAppContent{ + height:120px; + +} + + .gridsterImage{ + height:84px; + width:168px; + } + .grider-content-ecomp{ + transition: transform 0.5s ease-out; + } + .grider-content-ecomp:hover{ + transform: scale(1.1); +} + + +/*information section*/ + +.information-section{ + /*margin-top:25px;*/ +} +.information-section-gridsterContent{ + /*height:300px;*/ +} +.information-sections-gridster-header{ + color: #0574ac; + font-family: Omnes-ECOMP-W02-Bold,Arial; + font-size: 25px; + +} +/*application empty div*/ +.app-error-block { + padding-top: 10px; + +} +/*news empty div*/ +.activity-error-block { + padding-top: 60px; + +} + +.activity-error-msg1{ + text-align: center; + margin-top: 20px; + font-family: "Omnes-ECOMP-W02", Arial; + color: #444; + font-size: 20px; + +} + +.newstape { + background: white; + color: black; + height: 400px; + overflow: hidden; +} + +.newstape-content { + position: relative; + padding: 15px; +} + +.newstape-drag { cursor: ns-resize; } + +.text-center { text-align: center; } + +.text-right { text-align: right; } + +.text-justify { text-align: justify; } + +// #newsContainer{ +// overflow:auto; +// height: 100%; +// } + +/*widget header*/ +.optionsMenu{ + position: absolute; + list-style: none; + top: 25px; + right: 10px; + border: 1px solid #067ab4; + display: none; + z-index: 2; + border-radius: 6px 0px 6px 6px; + background: #fff; + width: 130px; +} + +.optionsMenuLink { + position: relative; + padding-left: 8px; + padding-right: 2px; + font-size: 12px; + line-height: 30px; + color: #444444; +} +.optionsMenu > li:hover a { + color: #ffffff !important; +} +.optionsMenu > li { + width: 100%; + text-align: left; +} +.optionsMenu > li:hover { + background-color: #0faaf7; + border-color: none !important; + cursor: pointer; +} + +.dashboardSortHeader{ + margin-top: -44px; +margin-left: 735px; +} + +#dashboard-dropdown +{ +position: absolute; +margin-top: -37px; +left: 80%; +top: 42px; +} + +#dashboardAddWidgetPreference{ + display: inline-block; + font-size: 14px; + color: #3e3e3e; + width: 69%; + text-align: center; + padding: 15px 0px 15px 0px; + font-family: "Omnes-ECOMP-W02", Arial; +} + +#dashboardAddWidgetPreference:hover{ + background-color: #0568ae; + color:white !important; +} + +#dashboardDefaultPreference{ + display: inline-block; + font-size: 14px; + color: #3e3e3e; + width: 30%; + text-align: center; + padding: 15px 0px 15px 0px; + font-family: "Omnes-ECOMP-W02", Arial; +} + +#dashboardDefaultPreference:hover{ + background-color: #0568ae; + color:white !important; +} + +.simulateGridHeader{ + position: relative; + height: 50px !important; + border: 1px solid #d3d3d3; + border-bottom: 0; + background-color: #E5E5E5; + white-space: nowrap; + text-overflow: ellipsis; + z-index: 1; +} + +.simulateGridHeaderTitle{ + line-height: 44px; + margin-left: 26px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 18px; + color: #444444; + float: left; +} + +.simulateGridHeaderHandle{ + cursor: move; + margin: 12px; + position: absolute; + top: 0; + left: 0; + border: 0; + vertical-align: middle; + -ms-interpolation-mode: bicubic; + display: block; +} + +/* apps gridsters */ +ul { + list-style: none; +} +.gridster-box { + height: 100%; + border: 1px solid #ccc; + background-color: #fff; + transition: transform 0.5s ease-out; +} +.gridster-box-header { + background-color: #fff; + padding: 0 0px 0 10px; + border-bottom: 1px solid #ccc; + position: relative; + height: 50px !important; +} +.gridster-box-header h3 { + margin-top: 15px; + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; +} + +.gridster-box-header i { +font-size: 22px; +} + +.gridster-box-content { + padding: 59px; +} +.gridster-box:hover{ + transform: scale(1.1); +} +.gridster-box-header-btns { + top: 15px; + right: 10px; + position: absolute; +} + +/*** widgets ***/ +ul { + list-style: none; +} +.box { + height: 100%; + border: 1px solid #ccc; + background-color: #fff; + font-family: "Omnes-ECOMP-W02", Arial; +} +.box-header { + height : 50px; + background-color: #fff; + padding: 0 30px 0 10px; + border-bottom: 1px solid #ccc; + position: relative; +} +.box-header h3 { + margin-top: 15px; + display: inline-block; + font-size: 16px; +} +.box-content { + position: absolute; + width: 100%; + top: 50px; + left: 0; + right: 0; + bottom: 29px; + border: 1px solid #d3d3d3; + box-sizing: border-box; + overflow-y: auto; + overflow-x: hidden; + color: #444444; + bottom: 0px; +} +.box-header-btns { + top: 10px; + right: 10px; + cursor: pointer; + position: absolute; +} + +#widget-boarder{ + background-color: #eee; + border: 1px dashed white; +} +.icon-content-gridguide{ +cursor:move; } \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard.tpl.html b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard.tpl.html index 5e67526e..9a87c0ba 100644 --- a/ecomp-portal-FE-common/client/app/views/dashboard/dashboard.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/dashboard/dashboard.tpl.html @@ -1,179 +1,183 @@ - -
    -
    - -
    -
    -
    - Applications Sort by: -
    -
    -
    -
    -
    -
    -
    -
    - You do not have access to any application or function in ECOMP - Portal.
    Please request access via MyLogins. -
    -
    -
    - -
    -
      -
    • -
      -
      - -

      {{item.headerText | - elipsis: 14}}

      -
      -
      -
      -
      -
      -
      - -

      Select applications...

      - -
      -
      - -
      -
      -
    • -
    -
    - -
    - -
    -
    - -

    - - -
    Failed to communicate with the - widget microservice.
    - -
    -
      -
    • -
      -
      - -

      {{ widget.headerText}}

      -
      - ... - - - -
      -
      -
      -
      -
      -
      -
    • -
    -
    -
    -
    -
    - Add Widget -
    -   -
    - Reset Widget Layout -
    -
    -
    - -
    -
    + +
    +
    + +
    +
    +
    + Applications Sort by: + +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +
    + You do not have access to any application or function in ECOMP + Portal. +
    +
    +
    +
    + +
    +
      +
    • +
      +
      + +

      {{item.headerText | + elipsis: 14}}

      +
      + +
      +
      +
      + +

      Select applications...

      + +
      +
      + +
      +
      +
    • +
    +
    + +
    + +
    +
    + +

    + + +
    Failed to communicate with the + widget microservice.
    + +
    +
      +
    • +
      +
      + +

      {{ widget.headerText}}

      +
      + ... + + + +
      +
      +
      +
      +
      +
      +
    • +
    +
    +
    +
    +
    + Add Widget +
    +   +
    + Reset Widget Layout +
    +
    +
    + +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.controller.js b/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.controller.js new file mode 100644 index 00000000..69fe6e4d --- /dev/null +++ b/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.controller.js @@ -0,0 +1,400 @@ +/** + * Created by nnaffar on 12/20/15. + */ +'use strict'; +(function () { + class MenuDetailsModalCtrl { + constructor($scope, $log, functionalMenuService, errorMessageByCode, ECOMP_URL_REGEX,$rootScope,confirmBoxService) { + + $scope.isAllApplications = false; + let newMenuModel = { + name: null, + menuId: null, + parentMenuId: null, + url: null + }; + + let getAvailableRoles = (appid) => { + this.isSaving = true; + if (appid != null) { + $log.debug("MenuDetailsModalCtrl::getAvailableRoles: About to call getManagedRolesMenu"); + functionalMenuService.getManagedRolesMenu(appid).then(rolesObj => { + $log.debug("MenuDetailsModalCtrl::getAvailableRoles: Roles returned = " + JSON.stringify(rolesObj)) + this.availableRoles = rolesObj; + this.preSelectedRoles = {roles:[]}; + + if(($scope.ngDialogData.source==='edit') && this.isMidLevelMenuItem()){ + // in Edit flow , for Midlevel menu item no need to preSelect. + this.preSelectedRoles = {roles:[]}; + }else if(!angular.isUndefined(this.menuItem.menuDetails) && + $scope.ngDialogData.source==='edit' && this.isLeafMenuItem() && + this.menuItem.menuDetails.appid!=appid) { + // in Edit flow , for LeafMenuItem, if appid changed then no need to preSelect. + this.preSelectedRoles = {roles:[]}; + }else{ + if((!angular.isUndefined(this.menuItem.menuDetails)) && + (!angular.isUndefined(this.menuItem.menuDetails.roles))){ + $log.debug('menuDetails.roles: ' + this.menuItem.menuDetails.roles); + for(var i=0; i { + $log.error("MenuDetailsModalCtrl::getAvailableRoles: error: " + err); + }); + } else { + $log.debug("MenuDetailsModalCtrl::getAvailableRoles: appid was null"); + } + }; + + let getAvailableApps = () => { + $scope.isAllApplications = true; + functionalMenuService.getAvailableApplications().then(apps => { + $log.debug("MenuDetailsModalCtrl::getAvailableApps: Apps returned = " + JSON.stringify(apps)) + this.availableApps = apps; + // Keep track of whether or not the selected app is disabled + if (angular.isDefined(this.selectedApp) && angular.isDefined(this.selectedApp.index)) { + for (var i = 0; i < apps.length; i++) { + if (apps[i].index === this.selectedApp.index) { + $log.debug("MenuDetailsModalCtrl::getAvailableApps: found app with index: " + this.selectedApp.index); + $log.debug("MenuDetailsModalCtrl::getAvailableApps: setting isDisabled to: " + !apps[i].enabled); + this.selectedApp.isDisabled = !apps[i].enabled; + break; + } + } + $log.debug("didn't find index: " + this.selectedApp.index); + } + })['catch'](function (err) { + confirmBoxService.showInformation('There was a problem retrieving the Applications. ' + + 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); + $log.error("MenuDetailsModalCtrl::getAvailableApps: getAvailableApps error: " + err); + $scope.isAllApplications = false; + }).finally(()=>{ + this.isSaving = false; + $scope.isAllApplications = false; + }); + }; + + let init = () => { + $scope.isAllApplications = false; + $log.info('MenuDetailsModalCtrl::init'); + this.saveOrContinueBtnText = "Save"; + this.isSaving = false; + this.displayRoles = $scope.ngDialogData.source==='view' ? true : false; + this.formEditable = $scope.ngDialogData.source==='view' ? false : true; + this.selectedRole = []; + this.availableRoles = []; + this.menuItem = _.clone($scope.ngDialogData.menuItem); + $log.info('MenuDetailsModalCtrl::getAvailableApps: Within init, about to check menuDetails for defined'); + if(!angular.isUndefined(this.menuItem.menuDetails) && + ($scope.ngDialogData.source==='view' || + ($scope.ngDialogData.source==='edit') && this.isLeafMenuItem() )){ + + $log.debug("MenuDetailsModalCtrl::init: menuItem: "); + $log.debug('MenuDetailsModalCtrl::init: ',this.menuItem); + this.menuItem.menu.url = this.menuItem.menuDetails.url; + this.selectedApp={}; + this.selectedApp.index = this.menuItem.menuDetails.appid; + getAvailableRoles(this.selectedApp.index); + + } + + if($scope.ngDialogData.source==='view' || $scope.ngDialogData.source==='edit'){ + this.menutitle = this.menuItem.menu.name; + this.menuLocation = this.isParentMenuItem() ? this.menuItem.menu.name : this.menuItem.menu.parent.name; + }else{ + this.menutitle = ''; + this.menuLocation = this.menuItem.menu.name; + } + // Temporarily passing 0 as dummy for getAvailableRoles incase of this.selectedApp is not there i.e., in Add flow + // getAvailableRoles(angular.isUndefined(this.selectedApp) ? 0: this.selectedApp.index ); + getAvailableApps(); + $log.debug("MenuDetailsModalCtrl::init: Menu details: " + JSON.stringify(this.menuItem.menuDetails)); + }; + + + this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; + + //This part handles conflict errors (409) + this.conflictMessages = {}; + this.scrollApi = {}; + let handleConflictErrors = err => { + if(!err.data){ + return; + } + if(!err.data.length){ //support objects + err.data = [err.data] + } + $log.debug('MenuDetailsModalCtrl::handleConflictErrors: err.data = ' + JSON.stringify(err.data)); + _.forEach(err.data, item => { + _.forEach(item.fields, field => { + //set conflict message + this.conflictMessages[field.name] = errorMessageByCode[item.errorCode]; + //set field as invalid + $log.debug('MenuDetailsModalCtrl::handleConflictErrors: fieldName = ' + field.name); + $scope.functionalMenuForm[field.name].$setValidity('conflict', false); + //set watch once to clear error after user correction + watchOnce[field.name](); + }); + }); + this.scrollApi.scrollTop(); + }; + + let resetConflict = fieldName => { + delete this.conflictMessages[fieldName]; + $log.debug('MenuDetailsModalCtrl::resetConflict: $setValidity(true) = ' + fieldName); + if($scope.functionalMenuForm[fieldName]){ + $scope.functionalMenuForm[fieldName].$setValidity('conflict', true); + } + }; + + let watchOnce = { + text: () => { + let unregisterName = $scope.$watch('functionalMenuDetails.menutitle', (newVal, oldVal) => { + // $log.debug('title:: newVal, oldVal = ' + newVal.toLowerCase() + " | " + oldVal.toLowerCase()); + if(newVal.toLowerCase() !== oldVal.toLowerCase()){ + resetConflict('text'); + unregisterName(); + } + }); + }, + url: () => { + let unregisterUrl = $scope.$watch('functionalMenuDetails.menuItem.menu.url', (newVal, oldVal) => { + if(newVal.toLowerCase() !== oldVal.toLowerCase()){ + resetConflict('url'); + unregisterUrl(); + } + }); + } + }; + + //*************************** + + this.isLeafMenuItem = () => { + return this.menuItem.menu.children.length>0 ? false : true; + }; + + this.isMidLevelMenuItem = () => { + return this.menuItem.menu.parentMenuId!=null && this.menuItem.menu.children.length>0 ? true : false; + }; + + this.isParentMenuItem = () => { + return this.menuItem.menu.parentMenuId!=null ? false : true; + }; + + this.updateSelectedApp = (appItem) => { + if (!appItem) { + return; + } + $log.debug('MenuDetailsModalCtrl::updateSelectedApp: drop down app item = ' + JSON.stringify(appItem.index)); + $log.debug("MenuDetailsModalCtrl::updateSelectedApp: appItem in updateSelectedApp: "); + $log.debug('MenuDetailsModalCtrl::updateSelectedApp: ',appItem); + this.selectedApp.isDisabled = ! appItem.enabled; + $log.debug("MenuDetailsModalCtrl::updateSelectedApp: isDisabled: "+this.selectedApp.isDisabled); + getAvailableRoles(appItem.index); + }; + + this.continue = () => { + this.displayRoles = true; + this.formEditable = false; + }; + + this.saveChanges = () => { + + //todo : form validation was commented as dialog message is kept for error validations + /*if($scope.functionalMenuForm.$invalid){ + return; + }*/ + + if(!!this.menuItem.menu.url && (angular.isUndefined(this.selectedApp) || !this.selectedApp.index>0)) { + confirmBoxService.showInformation('Please select the appropriate app, or remove the url').then(isConfirmed => {}); + return; + }else if(!this.menuItem.menu.url && !angular.isUndefined(this.selectedApp) && this.selectedApp.index>0){ + confirmBoxService.showInformation('Please enter url, or select "No Application"').then(isConfirmed => {}); + return; + }else if(!this.menutitle){ + confirmBoxService.showInformation('Please enter the Menu title').then(isConfirmed => {}); + return; + } + + this.isSaving = true; + var activeMenuItem = {}; + + if ($scope.ngDialogData.source === 'edit') { // Edit Menu Item + $log.debug('MenuDetailsModalCtrl::saveChanges: Will be saving an edit menu item'); + activeMenuItem = { + menuId:this.menuItem.menu.menuId, + column:this.menuItem.menu.column, + text:this.menutitle, + parentMenuId:this.menuItem.menu.parentMenuId, + url:this.menuItem.menu.url, + appid: angular.isUndefined(this.selectedApp) ? null:this.selectedApp.index, + roles:this.selectedRole + }; + // If we have removed the url and appid, we must remove the roles + if (!activeMenuItem.appid && !activeMenuItem.url) { + activeMenuItem.roles = null; + } + functionalMenuService.saveEditedMenuItem(activeMenuItem) + .then(() => { + $log.debug('MenuDetailsModalCtrl::saveChanges: Menu Item saved'); + $scope.closeThisDialog(true); + }).catch(err => { + if(err.status === 409){//Conflict + handleConflictErrors(err); + } else { + confirmBoxService.showInformation('There was a problem saving your change. ' + + 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); + } + $log.error('MenuDetailsModalCtrl::saveChanges: error - ',err); + }).finally(()=>{ + this.isSaving = false; + }); + + $log.debug("MenuDetailsModalCtrl::saveChanges: Edit Menu output will be: " + JSON.stringify(activeMenuItem)); + } else { // New Menu Item + $log.debug('MenuDetailsModalCtrl::saveChanges: Will be saving a New menu item'); + var newMenuItem = { + menuId:null, // this is a new menu item + column:this.menuItem.menu.column, + text:this.menutitle, + // We are creating this new menu item under the menu item that was clicked on. + parentMenuId:this.menuItem.menu.menuId, + url:this.menuItem.menu.url, + appid: angular.isUndefined(this.selectedApp) ? null:this.selectedApp.index, + roles:this.selectedRole + }; + + $log.debug("MenuDetailsModalCtrl::saveChanges: New Menu output will be: " + JSON.stringify(newMenuItem)); + functionalMenuService.saveMenuItem(newMenuItem) + .then(() => { + $log.debug('MenuDetailsModalCtrl::saveChanges: Menu Item saved'); + $scope.closeThisDialog(true); + }).catch(err => { + if(err.status === 409){//Conflict + handleConflictErrors(err); + } else { + confirmBoxService.showInformation('There was a problem saving your menu. ' + + 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); + } + $log.error('MenuDetailsModalCtrl::saveChanges error: ', err); + }).finally(()=>{ + this.isSaving = false; + }); + + } + }; + + init(); + + $scope.$on('$stateChangeStart', e => { + //Disable navigation when modal is opened + e.preventDefault(); + }); + } + } + MenuDetailsModalCtrl.$inject = ['$scope', '$log', 'functionalMenuService', 'errorMessageByCode', 'ECOMP_URL_REGEX','$rootScope','confirmBoxService']; + angular.module('ecompApp').controller('MenuDetailsModalCtrl', MenuDetailsModalCtrl); + + angular.module('ecompApp').directive('dropdownMultiselect', ['functionalMenuService',function(){ + return { + restrict: 'E', + scope: { + model: '=', + options: '=', + populated_roles: '=preSelected', + dropdownTitle: '@', + source: '=' + }, + template: "
    " + + "" + + "" + + "" + + "
    ", + controller: function ($scope) { + $scope.selectedItems = {}; + $scope.checkAll = false; + $scope.$on('availableRolesReady', function() { + init(); + }); + + function init() { + console.log('dropdownMultiselect init'); + $scope.dropdownTitle = $scope.source ==='view' ? 'View Roles' : 'Select Roles'; + console.log('$scope.populated_roles = ' + $scope.populated_roles); + } + + $scope.$watch('populated_roles', function(){ + if ($scope.populated_roles && $scope.populated_roles.length>0) { + for (var i = 0; i < $scope.populated_roles.length; i++) { + $scope.model.push($scope.populated_roles[i].roleId); + $scope.selectedItems[$scope.populated_roles[i].roleId] = true; + } + if ($scope.populated_roles.length === $scope.options.length) { + $scope.checkAll = true; + } + }else{ + deselectAll(); + } + }); + + $scope.openDropDown = function () { + + }; + + $scope.checkAllClicked = function () { + if ($scope.checkAll) { + selectAll(); + } else { + deselectAll(); + } + }; + + function selectAll() { + $scope.model = []; + $scope.selectedItems = {}; + angular.forEach($scope.options, function (option) { + $scope.model.push(option.roleId); + }); + angular.forEach($scope.model, function (id) { + $scope.selectedItems[id] = true; + }); + console.log($scope.model); + }; + + function deselectAll() { + $scope.model = []; + $scope.selectedItems = {}; + console.log($scope.model); + }; + + $scope.setSelectedItem = function (id) { + var filteredArray = []; + if ($scope.selectedItems[id] === true) { + $scope.model.push(id); + } else { + filteredArray = $scope.model.filter(function (value) { + return value != id; + }); + $scope.model = filteredArray; + $scope.checkAll = false; + } + console.log(filteredArray); + return false; + }; + + $scope.setDisable = function(source){ + return source ==='view' ? true : false; + } + } + } + }]); + +})(); \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.delete.modal.html b/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.delete.modal.html new file mode 100644 index 00000000..e80a0265 --- /dev/null +++ b/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.delete.modal.html @@ -0,0 +1,18 @@ +
    +
    Delete Menu Item
    + +
    +
    + +
    +
    +
    +
    +
    +
    + + + +
    +
    \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html b/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html new file mode 100644 index 00000000..7ba444eb --- /dev/null +++ b/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html @@ -0,0 +1,97 @@ +
    +
    {{ngDialogData.title}}
    + + +
    +
    + +
    +
    Parent
    + +
    + +
    +
    Title
    + +
    + +
    +
    + + +
    +
    +
    URL
    + +
    + Not valid URL! +
    +
    +
    +
    +
    App
    +
    +
    +
    + +
    +
    + + +
    + + +
    +
    Roles
    + + +
    +
    Application is disabled
    +
    + +
    +
    +
    + + + + + + + + + + +
    +
    +
    Close
    +
    +
    + \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/modal-details.modal.less b/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/modal-details.modal.less index 0d5e98fc..ce434b47 100644 --- a/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/modal-details.modal.less +++ b/ecomp-portal-FE-common/client/app/views/functionalMenu/functionalMenu-dialog/modal-details.modal.less @@ -1,38 +1,101 @@ .functionalMenu-details-modal { - height: 430px; + height: 520px; - input:not([type="button"]) { - height: 13px; - } - + .title { //.n18r; - .dGray18r; //AT&T Dark Gray + .dGray18r; //ECOMP Dark Gray border-bottom: @blue-active 3px solid; + } - } + .span6{ +padding-top: 10px; + } + .right-item{ + padding-top: 10px; + + } + + .item{ + padding-top: 10px; + + } +.functionalMenu-height{ +height:35px; +width:140%; + +} + + select { + max-width: 150%; + width: 380px; + } +.btn{ +font-family: clearview_att_regular; + font-size: 14px !important; +} +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0,0,0,.125); + box-shadow: inset 0 0px 0px rgba(0,0,0,.125); +} .btn-group { - display: table-cell; - max-width: 250px; - min-width: 290px; - background-color: #f2f2f2; - } + cursor: pointer; + position: relative; + border: 1px solid #5a5a5a; + white-space: nowrap; + text-overflow: ellipsis; + line-height: 30px; + height: 40px; + padding-left: 10px; + padding-right: 10px; + width: 70%; + min-width:50%; + background-color: #f2f2f2; + } + + .btn-group>.btn+.dropdown-toggle{ + + margin-left: 80px; + padding-top: 10px; + } .btn-medium{ width:168px; + margin-right: 86px; } - - + .caret { + margin-left: 75px; +} +.custom-select-wrap { + width: 86%; + } + .custom-select-wrap::after { + right: 101px; + } .dropdown-menu-medium{ - width:236px; - max-height: 200px; + max-height: 123px; overflow-y: auto; + z-index: 99999; + padding-left: 8px; + padding-right: 8px; + position: absolute; + top: 39px; + width: 100%; + background: #fff; + border: 1px #d2d2d2 solid; + left: 0px; } .functionalMenu-properties-main { padding: 16px; height: 306px; overflow-y: visible; + input[type=checkbox][disabled]{ + height:13px; + } + input[type=checkbox] { + height: 13px !important; + } .item{ position: relative; diff --git a/ecomp-portal-FE-common/client/app/views/header/header.controller.js b/ecomp-portal-FE-common/client/app/views/header/header.controller.js index 961362a5..33cb8454 100644 --- a/ecomp-portal-FE-common/client/app/views/header/header.controller.js +++ b/ecomp-portal-FE-common/client/app/views/header/header.controller.js @@ -1,449 +1,558 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class HeaderCtrl { - constructor($log, $window, userProfileService, menusService, $scope, ECOMP_URL_REGEX, $cookies, $state,auditLogService,notificationService) { - this.firstName = ''; - this.lastName = ''; - this.$log = $log; - this.menusService = menusService; - this.$scope = $scope; - this.favoritesMenuItems = ''; - $scope.favoriteItemsCount = 0; - $scope.favoritesMenuItems = ''; - $scope.showFavorites = false; - $scope.emptyFavorites = false; - $scope.favoritesWindow = false; - $scope.notificationCount=0; - $scope.showNotification = true; - - $scope.hideMenus = false; - - $scope.menuItems = []; - $scope.activeClickSubMenu = { - x: '' - }; - $scope.activeClickMenu = { - x: '' - }; - $scope.megaMenuDataObject =[]; - $scope.notificationCount= notificationService.notificationCount; - this.isLoading = true; - this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; - - var unflatten = function( array, parent, tree ){ - - tree = typeof tree !== 'undefined' ? tree : []; - parent = typeof parent !== 'undefined' ? parent : { menuId: null }; - var children = _.filter( array, function(child){ return child.parentMenuId == parent.menuId; }); - - if( !_.isEmpty( children ) ){ - if( parent.menuId === null ){ - tree = children; - }else{ - parent['children'] = children - } - _.each( children, function( child ){ unflatten( array, child ) } ); - } - - return tree; - } - - userProfileService.getFunctionalMenuStaticInfo() - .then(res=> { - // $log.debug('HeaderCtrl::getFunctionalMenuStaticInfo: getting Functional Menu Static Info init'); - if(res==null || res.firstName==null || res.firstName=='' || res.lastName==null || res.lastName=='' ){ - // $log.info('HeaderCtrl::getFunctionalMenuStaticInfo: failed getting userinfo from shared context.. '); - $log.info('HeaderCtrl: failed to get all required data, trying user profile'); - userProfileService.getUserProfile() - .then(profile=> { - // $log.debug('HeaderCtrl:: getting userinfo from session success'); - this.firstName = profile.firstName; - this.lastName = profile.lastName; - // $log.debug('HeaderCtrl::getFunctionalMenuStaticInfo: user has the following roles: ' + profile.roles); - }).catch(err=> { - $log.error('Header Controller:: getUserProfile() failed: ' + err); - }); - } else { - // $log.debug('HeaderCtrl: fetched Functional Menu Static Info successfully',res); - this.firstName = res.firstName; - this.lastName = res.lastName; - } - - menusService.GetFunctionalMenuForUser() - .then(jsonHeaderMenu=> { - $scope.menuItems = unflatten( jsonHeaderMenu ); - $scope.megaMenuDataObject = $scope.menuItems; - }).catch(err=> { - $log.error('HeaderCtrl::GetFunctionalMenuForUser: HeaderCtrl json returned: ' + err); - }); - - }).catch(err=> { - $log.error('HeaderCtrl::getFunctionalMenuStaticInfo failed: ' + err); - }); - - //store audit log - $scope.auditLog = function(app,type) { - var comment = 'type: '+type+ ',title: '+app.text+",url: "+app.url; - auditLogService.storeAudit(app.appid,'functional',comment); - }; - - $scope.loadFavorites = function () { - $scope.hideMenus = false; - // $log.debug('HeaderCtrl::loadFavorites: loadFavorites has happened.'); - if ($scope.favoritesMenuItems == '') { - generateFavoriteItems(); - // $log.debug('HeaderCtrl::loadFavorites: loadFavorites is calling generateFavoriteItems()'); - } else { - // $log.debug('HeaderCtrl::loadFavorites: loadFavorites is NOT calling generateFavoriteItems()'); - } - } - - $scope.goToUrl = (item) => { - // $log.error('HeaderCtrl::goToUrl has started',item); - let url = item.url; - let restrictedApp = item.restrictedApp; - if (!url) { - $log.warn('HeaderCtrl::goToUrl: No url found for this application, doing nothing..'); - return; - } - if (restrictedApp) { - $window.open(url, '_blank'); - } else { - if(item.url=="getAccess" || item.url=="contactUs"){ - // if (url = window.location.href) - $state.go("root."+url); - } else { - var tabContent = { id: new Date(), title: item.text, url: item.url,appId:item.appid }; - $cookies.putObject('addTab', tabContent ); - } - // $log.debug('HeaderCtrl::goToUrl: url = ', url); - } - $scope.hideMenus = true; - } - - - - $scope.submenuLevelAction = function(index, column) { - if ($scope.favoritesMenuItems == '') { - generateFavoriteItems(); - // $log.debug('HeaderCtrl::submenuLevelAction: submenuLevelAction is calling generateFavoriteItems()'); - } else { - // $log.debug('submenuLevelAction is NOT calling generateFavoriteItems()'); - } - // $log.debug('item hovered: ' + index + '; column = ' + column); - // if (column == 2) { // 2 is Design - // // This is an admitted hack. See aw3218 for reasons why - // $log.debug('submenuLevelAction column == 2'); - // $scope.favoritesWindow = false; - // $scope.showFavorites = false; - // $scope.emptyFavorites = false; - // } - if (index=='Favorites' && $scope.favoriteItemsCount != 0) { - // $log.debug('HeaderCtrl::submenuLevelAction: Showing Favorites window'); - // generateFavoriteItems(); - $scope.favoritesWindow = true; - $scope.showFavorites = true; - $scope.emptyFavorites = false; - } - if (index=='Favorites' && $scope.favoriteItemsCount == 0) { - // $log.debug('HeaderCtrl::submenuLevelAction: Hiding Favorites window in favor of No Favorites Window'); - // generateFavoriteItems(); - $scope.favoritesWindow = true; - $scope.showFavorites = false; - $scope.emptyFavorites = true; - } - if (index!='Favorites' ) { - $scope.favoritesWindow = false; - $scope.showFavorites = false; - $scope.emptyFavorites = false; - } - - }; - - $scope.hideFavoritesWindow = function() { - $scope.showFavorites = false; - $scope.emptyFavorites = false; - // $scope.thirdFourthMenus = true; - } - - $scope.isUrlFavorite = function (menuId) { - // $log.debug('array objects in menu favorites = ' + $scope.favoriteItemsCount + '; menuId=' + menuId); - var jsonMenu = JSON.stringify($scope.favoritesMenuItems); - var isMenuFavorite = jsonMenu.indexOf('menuId\":' + menuId); - // $log.debug('jsonMenu.indexOf(menuId:' + jsonMenu.indexOf('menuId\":'+menuId)); - // $log.debug('isMenuFavorite= ' + isMenuFavorite); - if (isMenuFavorite==-1) { - return false; - } else { - return true; - } - - } - - let generateFavoriteItems = () => { - menusService.getFavoriteItems() - .then(favorites=> { - // $log.debug('HeaderCtrl.getFavoriteItems:: ' + JSON.stringify(favorites)); - $scope.favoritesMenuItems = favorites; - $scope.favoriteItemsCount = Object.keys(favorites).length; - // $log.info('HeaderCtrl.getFavoriteItems:: number of favorite menus: ' + $scope.favoriteItemsCount); - }).catch(err=> { - $log.error('HeaderCtrl.getFavoriteItems:: Error retrieving Favorites menus: ' + err); - }); - } - - $scope.setAsFavoriteItem = function(event, menuId){ - var jsonMenuID = angular.toJson({'menuId': + menuId }); - // $log.debug('HeaderCtrl::setFavoriteItems: ' + jsonMenuID + " - " + event.target.id); - - menusService.setFavoriteItem(jsonMenuID) - .then(() => { - // var elementId = '#'+ event.currentTarget.id; - angular.element('#' + event.target.id).css('color', '#fbb313'); - generateFavoriteItems(); - }).catch(err=> { - $log.error('HeaderCtrl::setFavoriteItems:: API setFavoriteItem error: ' + err); - }); - }; - - $scope.removeAsFavoriteItem = function(event, menuId){ - // $log.debug('-----------------------------removeAsFavoriteItem: ' + menuId + " - " + event.target.id); - menusService.removeFavoriteItem(menuId) - .then(() => { - angular.element('#' + event.target.id).css('color', '#666666'); - generateFavoriteItems(); - }).catch(err=> { - $log.error('HeaderCtrl::removeAsFavoriteItem: API removeFavoriteItem error: ' + err); - }); - }; - - $scope.goToPortal = (headerText, url) => { - if (!url) { - $log.warn('HeaderCtrl::goToPortal: No url found for this application, doing nothing..'); - return; - } - if (!ECOMP_URL_REGEX.test(url)) { - url = 'http://' + url; - } - - if(headerText.startsWith("vUSP")) { - window.open(url, '_blank');//, '_self' - } - else { - var tabContent = { id: new Date(), title: headerText, url: url }; - $cookies.putObject('addTab', tabContent ); - } - }; - - } - } - class LoginSnippetCtrl { - constructor($log, $scope, $cookies, $timeout, userProfileService, sessionService) { - $scope.firstName=""; - $scope.lastName=""; - $scope.displayUserAppRoles=false; - $scope.allAppsLogout = function(){ - - var cookieTabs = $cookies.getObject('visInVisCookieTabs'); - if(cookieTabs!=null){ - for(var t in cookieTabs){ - - var url = cookieTabs[t].content; - if(url != "") { - sessionService.logout(url); - } - } - } - // wait for individual applications to log out before the portal logout - $timeout(function() { - window.location = "logout.htm"; - }, 2000); - } - - - try { - userProfileService.getFunctionalMenuStaticInfo() - .then(res=> { - // $log.info('HeaderCtrl::LoginSnippetCtrl: Login information: ' + JSON.stringify(res)); - $scope.firstName = res.firstName; - $scope.lastName = res.lastName; - $scope.loginSnippetEmail = res.email; - $scope.loginSnippetUserid = res.userId; - $scope.lastLogin = res.last_login; - }).catch(err=> { - $log.error('HeaderCtrl::LoginSnippetCtrl: failed in getFunctionalMenuStaticInfo: ' + err); - }); - } catch (err) { - $log.error('HeaderCtrl::LoginSnippetCtrl caught exception: ' + err); - } - - $scope.getUserApplicationRoles= function(){ - $scope.userapproles = []; - if($scope.displayUserAppRoles) - $scope.displayUserAppRoles = false; - else - $scope.displayUserAppRoles = true; - - userProfileService.getUserAppRoles($scope.loginSnippetUserid) - .then(res=>{ - - for(var i=0;i { - notificationService.decrementRefreshCount(); - var count = notificationService.getRefreshCount(); - if (res==null || res.data==null || res.data.message!='success') { - $log.error('NotificationCtrl::updateNotifications: failed to get notifications'); - if (intervalPromise != null) - $interval.cancel(intervalPromise); - } else if(count<=0){ - if (intervalPromise != null) - $interval.cancel(intervalPromise); - } else { - $scope.notifications = []; - notificationService.setNotificationCount(res.data.response.length); - for(var i=0;i { - $log.error('NotificationCtrl::getNotification: caught exception: ' + err); - if (intervalPromise != null) - $interval.cancel(intervalPromise); - }); - } - $scope.getNotification(); - function updateNotifications() { - $scope.getNotification(); - } - $scope.start = function(rate) { - // stops any running interval to avoid two intervals running at the same time - $scope.stop(); - // store the interval promise - intervalPromise = $interval(updateNotifications, rate); - }; - - $scope.stop = function() { - $interval.cancel(intervalPromise); - }; - - - $scope.showDetailedJsonMessage=function (selectedAdminNotification) { - if (selectedAdminNotification.source!=='EP'){ - var messageObject=JSON.parse(selectedAdminNotification.message); - var html=""; - html+='

    '+'Message Source'+' : '+selectedAdminNotification.source+'

    '; - html+='

    '+'Message Title'+' : '+selectedAdminNotification.title+'

    '; - for(var field in messageObject){ - if(field=='eventDate'||field=='lastModifiedDate'){ - html+='

    '+field+' : '+new Date(+messageObject[field])+'

    '; - - }else{ - html+='

    '+field+' : '+messageObject[field]+'

    '; - - } - } - - var modalInstance = ngDialog.open({ - templateUrl: 'app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html', - controller: 'userNotificationCtrl', - resolve: { - message: function () { - var message = { - title: '', - text: html - - }; - return message; - }, - - } - }); - - } - }; - - notificationService.getNotificationRate().then(res=> { - if (res == null || res.response == null) { - $log.error('NotificationCtrl: failed to notification update rate or duration, check system.properties file.'); - } else { - var rate = parseInt(res.response.updateRate); - var duration = parseInt(res.response.updateDuration); - notificationService.setMaxRefreshCount(parseInt(duration/rate)+1); - notificationService.setRefreshCount(notificationService.maxCount); - if (rate != NaN && duration != NaN) { - $scope.updateRate=rate; - $scope.start($scope.updateRate); - } - } - }).catch(err=> { - $log.error('NotificationCtrl: getNotificationRate() failed: ' + err); - }); - - $scope.deleteNotification = function(index){ - if ($scope.notifications[index].id == null || $scope.notifications[index].id == '') { - $log.error('NotificationCtrl: failed to delete Notification.'); - return; - } - notificationService.setNotificationRead($scope.notifications[index].id); - $scope.notifications.splice(index,1); - notificationService.setNotificationCount($scope.notifications.length); - } - } - } - NotificationCtrl.$inject = ['$log', '$scope', '$cookies', '$timeout', 'sessionService','notificationService','$interval','ngDialog']; - LoginSnippetCtrl.$inject = ['$log', '$scope', '$cookies', '$timeout','userProfileService', 'sessionService']; - HeaderCtrl.$inject = ['$log', '$window', 'userProfileService', 'menusService', '$scope', 'ECOMP_URL_REGEX','$cookies','$state','auditLogService','notificationService']; - angular.module('ecompApp').controller('HeaderCtrl', HeaderCtrl); - angular.module('ecompApp').controller('loginSnippetCtrl', LoginSnippetCtrl); - angular.module('ecompApp').controller('notificationCtrl', NotificationCtrl); - -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class HeaderCtrl { + constructor($log, $window, userProfileService, menusService, $scope, ECOMP_URL_REGEX, $cookies, $state,auditLogService,notificationService,recommendationService,ngDialog) { + this.firstName = ''; + this.lastName = ''; + this.$log = $log; + this.menusService = menusService; + this.$scope = $scope; + this.favoritesMenuItems = ''; + $scope.favoriteItemsCount = 0; + $scope.favoritesMenuItems = ''; + $scope.showFavorites = false; + $scope.emptyFavorites = false; + $scope.favoritesWindow = false; + $scope.notificationCount=0; + $scope.recommendationCount=0; + $scope.showNotification = true; + + $scope.hideMenus = false; + + $scope.menuItems = []; + $scope.activeClickSubMenu = { + x: '' + }; + $scope.activeClickMenu = { + x: '' + }; + $scope.megaMenuDataObject =[]; + $scope.notificationCount= notificationService.notificationCount; + $scope.recommendationCount= recommendationService.recommendationCount; + this.isLoading = true; + this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; + + var unflatten = function( array, parent, tree ){ + + tree = typeof tree !== 'undefined' ? tree : []; + parent = typeof parent !== 'undefined' ? parent : { menuId: null }; + var children = _.filter( array, function(child){ return child.parentMenuId == parent.menuId; }); + + if( !_.isEmpty( children ) ){ + if( parent.menuId === null ){ + tree = children; + }else{ + parent['children'] = children + } + _.each( children, function( child ){ unflatten( array, child ) } ); + } + + return tree; + } + + userProfileService.getFunctionalMenuStaticInfo() + .then(res=> { + // $log.debug('HeaderCtrl::getFunctionalMenuStaticInfo: getting Functional Menu Static Info init'); + if(res==null || res.firstName==null || res.firstName=='' || res.lastName==null || res.lastName=='' ){ + // $log.info('HeaderCtrl::getFunctionalMenuStaticInfo: failed getting userinfo from shared context.. '); + $log.info('HeaderCtrl: failed to get all required data, trying user profile'); + userProfileService.getUserProfile() + .then(profile=> { + // $log.debug('HeaderCtrl:: getting userinfo from session success'); + this.firstName = profile.firstName; + this.lastName = profile.lastName; + // $log.debug('HeaderCtrl::getFunctionalMenuStaticInfo: user has the following roles: ' + profile.roles); + }).catch(err=> { + $log.error('Header Controller:: getUserProfile() failed: ' + err); + }); + } else { + // $log.debug('HeaderCtrl: fetched Functional Menu Static Info successfully',res); + this.firstName = res.firstName; + this.lastName = res.lastName; + } + + menusService.GetFunctionalMenuForUser() + .then(jsonHeaderMenu=> { + $scope.menuItems = unflatten( jsonHeaderMenu ); + $scope.megaMenuDataObject = $scope.menuItems; + }).catch(err=> { + $log.error('HeaderCtrl::GetFunctionalMenuForUser: HeaderCtrl json returned: ' + err); + }); + + }).catch(err=> { + $log.error('HeaderCtrl::getFunctionalMenuStaticInfo failed: ' + err); + }); + + //store audit log + $scope.auditLog = function(app,type) { + var comment = 'type: '+type+ ',title: '+app.text+",url: "+app.url; + auditLogService.storeAudit(app.appid,'functional',comment); + }; + + $scope.loadFavorites = function () { + $scope.hideMenus = false; + // $log.debug('HeaderCtrl::loadFavorites: loadFavorites has happened.'); + if ($scope.favoritesMenuItems == '') { + generateFavoriteItems(); + // $log.debug('HeaderCtrl::loadFavorites: loadFavorites is calling generateFavoriteItems()'); + } else { + // $log.debug('HeaderCtrl::loadFavorites: loadFavorites is NOT calling generateFavoriteItems()'); + } + } + + $scope.goToUrl = (item) => { + // $log.error('HeaderCtrl::goToUrl has started',item); + let url = item.url; + let restrictedApp = item.restrictedApp; + if (!url) { + $log.warn('HeaderCtrl::goToUrl: No url found for this application, doing nothing..'); + return; + } + if (restrictedApp) { + $window.open(url, '_blank'); + } else { + if(item.url=="getAccess" || item.url=="contactUs"){ + // if (url = window.location.href) + $state.go("root."+url); + } else { + var tabContent = { id: new Date(), title: item.text, url: item.url,appId:item.appid }; + $cookies.putObject('addTab', tabContent ); + } + // $log.debug('HeaderCtrl::goToUrl: url = ', url); + } + $scope.hideMenus = true; + } + + + + $scope.submenuLevelAction = function(index, column) { + if ($scope.favoritesMenuItems == '') { + generateFavoriteItems(); + // $log.debug('HeaderCtrl::submenuLevelAction: submenuLevelAction is calling generateFavoriteItems()'); + } else { + // $log.debug('submenuLevelAction is NOT calling generateFavoriteItems()'); + } + // $log.debug('item hovered: ' + index + '; column = ' + column); + // if (column == 2) { // 2 is Design + // // This is an admitted hack. See aw3218 for reasons why + // $log.debug('submenuLevelAction column == 2'); + // $scope.favoritesWindow = false; + // $scope.showFavorites = false; + // $scope.emptyFavorites = false; + // } + if (index=='Favorites' && $scope.favoriteItemsCount != 0) { + // $log.debug('HeaderCtrl::submenuLevelAction: Showing Favorites window'); + // generateFavoriteItems(); + $scope.favoritesWindow = true; + $scope.showFavorites = true; + $scope.emptyFavorites = false; + } + if (index=='Favorites' && $scope.favoriteItemsCount == 0) { + // $log.debug('HeaderCtrl::submenuLevelAction: Hiding Favorites window in favor of No Favorites Window'); + // generateFavoriteItems(); + $scope.favoritesWindow = true; + $scope.showFavorites = false; + $scope.emptyFavorites = true; + } + if (index!='Favorites' ) { + $scope.favoritesWindow = false; + $scope.showFavorites = false; + $scope.emptyFavorites = false; + } + + }; + + $scope.hideFavoritesWindow = function() { + $scope.showFavorites = false; + $scope.emptyFavorites = false; + // $scope.thirdFourthMenus = true; + } + + $scope.isUrlFavorite = function (menuId) { + // $log.debug('array objects in menu favorites = ' + $scope.favoriteItemsCount + '; menuId=' + menuId); + var jsonMenu = JSON.stringify($scope.favoritesMenuItems); + var isMenuFavorite = jsonMenu.indexOf('menuId\":' + menuId); + // $log.debug('jsonMenu.indexOf(menuId:' + jsonMenu.indexOf('menuId\":'+menuId)); + // $log.debug('isMenuFavorite= ' + isMenuFavorite); + if (isMenuFavorite==-1) { + return false; + } else { + return true; + } + + } + + /*Getting Ecomp portal Title*/ + + let getEcompPortalTitle = () => { + menusService.getEcompPortalTitle() + .then(title=> { + $scope.ecompTitle = title.response; + }).catch(err=> { + $log.error('HeaderCtrl.getEcompPortalTitle:: Error retrieving ECMOP portal title: ' + err); + }); + } + getEcompPortalTitle(); + + let generateFavoriteItems = () => { + menusService.getFavoriteItems() + .then(favorites=> { + // $log.debug('HeaderCtrl.getFavoriteItems:: ' + JSON.stringify(favorites)); + $scope.favoritesMenuItems = favorites; + $scope.favoriteItemsCount = Object.keys(favorites).length; + // $log.info('HeaderCtrl.getFavoriteItems:: number of favorite menus: ' + $scope.favoriteItemsCount); + }).catch(err=> { + $log.error('HeaderCtrl.getFavoriteItems:: Error retrieving Favorites menus: ' + err); + }); + } + + $scope.setAsFavoriteItem = function(event, menuId){ + var jsonMenuID = angular.toJson({'menuId': + menuId }); + // $log.debug('HeaderCtrl::setFavoriteItems: ' + jsonMenuID + " - " + event.target.id); + + menusService.setFavoriteItem(jsonMenuID) + .then(() => { + // var elementId = '#'+ event.currentTarget.id; + angular.element('#' + event.target.id).css('color', '#fbb313'); + generateFavoriteItems(); + }).catch(err=> { + $log.error('HeaderCtrl::setFavoriteItems:: API setFavoriteItem error: ' + err); + }); + }; + + $scope.removeAsFavoriteItem = function(event, menuId){ + // $log.debug('-----------------------------removeAsFavoriteItem: ' + menuId + " - " + event.target.id); + menusService.removeFavoriteItem(menuId) + .then(() => { + angular.element('#' + event.target.id).css('color', '#666666'); + generateFavoriteItems(); + }).catch(err=> { + $log.error('HeaderCtrl::removeAsFavoriteItem: API removeFavoriteItem error: ' + err); + }); + }; + + $scope.goToPortal = (headerText, url) => { + if (!url) { + $log.warn('HeaderCtrl::goToPortal: No url found for this application, doing nothing..'); + return; + } + if (!ECOMP_URL_REGEX.test(url)) { + url = 'http://' + url; + } + + if(headerText.startsWith("vUSP")) { + window.open(url, '_blank');//, '_self' + } + else { + var tabContent = { id: new Date(), title: headerText, url: url }; + $cookies.putObject('addTab', tabContent ); + } + }; + + $scope.editProfile = () => { + let data = null; + + ngDialog.open({ + templateUrl: 'app/views/header/profile-edit-dialogs/profile-edit.modal.html', + controller: 'EditProfileModalCtrl', + controllerAs: 'profileDetail', + data: '' + }).closePromise.then(needUpdate => { + if(needUpdate.value === true){ + // $log.debug('AdminsCtrl:openAddNewAdminModal:: updating table data...'); + updateTableData(); + } + }); + }; + } + } + class LoginSnippetCtrl { + constructor($log, $scope, $cookies, $timeout, userProfileService, sessionService) { + $scope.firstName=""; + $scope.lastName=""; + $scope.displayUserAppRoles=false; + $scope.allAppsLogout = function(){ + + var cookieTabs = $cookies.getObject('visInVisCookieTabs'); + if(cookieTabs!=null){ + for(var t in cookieTabs){ + + var url = cookieTabs[t].content; + if(url != "") { + sessionService.logout(url); + } + } + } + // wait for individual applications to log out before the portal logout + $timeout(function() { + window.location = "logout.htm"; + }, 2000); + } + + + try { + userProfileService.getFunctionalMenuStaticInfo() + .then(res=> { + // $log.info('HeaderCtrl::LoginSnippetCtrl: Login information: ' + JSON.stringify(res)); + $scope.firstName = res.firstName; + $scope.lastName = res.lastName; + $scope.loginSnippetEmail = res.email; + $scope.loginSnippetUserid = res.userId; + $scope.lastLogin = res.last_login; + }).catch(err=> { + $log.error('HeaderCtrl::LoginSnippetCtrl: failed in getFunctionalMenuStaticInfo: ' + err); + }); + } catch (err) { + $log.error('HeaderCtrl::LoginSnippetCtrl caught exception: ' + err); + } + + $scope.getUserApplicationRoles= function(){ + $scope.userapproles = []; + if($scope.displayUserAppRoles) + $scope.displayUserAppRoles = false; + else + $scope.displayUserAppRoles = true; + + userProfileService.getUserAppRoles($scope.loginSnippetUserid) + .then(res=>{ + + for(var i=0;i { + notificationService.decrementRefreshCount(); + var count = notificationService.getRefreshCount(); + if (res==null || res.data==null || res.data.message!='success') { + $log.error('NotificationCtrl::updateNotifications: failed to get notifications'); + if (intervalPromise != null) + $interval.cancel(intervalPromise); + } else if(count<=0){ + if (intervalPromise != null) + $interval.cancel(intervalPromise); + } else { + $scope.notifications = []; + notificationService.setNotificationCount(res.data.response.length); + for(var i=0;i { + $log.error('NotificationCtrl::getNotification: caught exception: ' + err); + if (intervalPromise != null) + $interval.cancel(intervalPromise); + }); + } + $scope.getNotification(); + function updateNotifications() { + $scope.getNotification(); + } + $scope.start = function(rate) { + // stops any running interval to avoid two intervals running at the same time + $scope.stop(); + // store the interval promise + intervalPromise = $interval(updateNotifications, rate); + }; + + $scope.stop = function() { + $interval.cancel(intervalPromise); + }; + + $scope.showDetailedJsonMessage=function (selectedAdminNotification) { + notificationService.getMessageRecipients(selectedAdminNotification.id).then(res =>{ + $scope.messageRecipients = res; + var messageObject=JSON.parse(selectedAdminNotification.message); + var html=""; + html+='

    '+'Message Source'+' : '+selectedAdminNotification.source+'

    '; + html+='

    '+'Message Title'+' : '+selectedAdminNotification.title+'

    '; + html+='

    '+'Message Recipient'+' : '+$scope.messageRecipients+'

    '; + + for(var field in messageObject){ + if(field=='eventDate'||field=='lastModifiedDate'){ + html+='

    '+field+' : '+new Date(+messageObject[field])+'

    '; + + }else{ + html+='

    '+field+' : '+messageObject[field]+'

    '; + + } + } + + var modalInstance = ngDialog.open({ + templateUrl: 'app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html', + controller: 'userNotificationCtrl', + resolve: { + message: function () { + var message = { + title: '', + text: html + + }; + return message; + }, + + } + }); + + }).catch(err => { + $log.error('userNotificationsCtrl:getMessageRecipients:: error ', err); + $scope.isLoadingTable = false; + }); + }; + + notificationService.getNotificationRate().then(res=> { + if (res == null || res.response == null) { + $log.error('NotificationCtrl: failed to notification update rate or duration, check system.properties file.'); + } else { + var rate = parseInt(res.response.updateRate); + var duration = parseInt(res.response.updateDuration); + notificationService.setMaxRefreshCount(parseInt(duration/rate)+1); + notificationService.setRefreshCount(notificationService.maxCount); + if (rate != NaN && duration != NaN) { + $scope.updateRate=rate; + $scope.start($scope.updateRate); + } + } + }).catch(err=> { + $log.error('NotificationCtrl: getNotificationRate() failed: ' + err); + }); + + $scope.deleteNotification = function(index){ + if ($scope.notifications[index].id == null || $scope.notifications[index].id == '') { + $log.error('NotificationCtrl: failed to delete Notification.'); + return; + } + notificationService.setNotificationRead($scope.notifications[index].id); + $scope.notifications.splice(index,1); + notificationService.setNotificationCount($scope.notifications.length); + } + } + } + + class RecommendationCtrl{ + constructor($log, $scope, $cookies, $timeout, sessionService,recommendationService,notificationService,$interval,ngDialog) { + $scope.recommendations=[]; + var intervalPromise = null; + $scope.recommendationCount= recommendationService.recommendationCount; + console.log("$",$); + $scope.getRecommendations = function(){ + $("#recommendation-bulb").removeClass('icon-misc-bulbL').addClass('icon-misc-bulb') + recommendationService.getRecommendations() + + .then(res=> { + $("#recommendation-bulb").removeClass('icon-misc-bulb').addClass('icon-misc-bulbL') + recommendationService.decrementRefreshCount(); + var count = recommendationService.getRefreshCount(); + if ( res.data==null) { + $log.error('RecommendationCtrl::update Recommendation: failed to get recommendation'); + if (intervalPromise != null) + $interval.cancel(intervalPromise); + } else if(count>=0){ + if (intervalPromise != null) + $interval.cancel(intervalPromise); + } else { + $scope.recommendations = []; + recommendationService.setRecommendationCount(res.data.recommendations.length); + for(var i=0;i { + $log.error('RecommendationCtrl::gatRecommendations: caught exception: ' + err); + if (intervalPromise != null) + $interval.cancel(intervalPromise); + }); + } + $scope.getRecommendations(); + + function updateRecommendations() { + $scope.getRecommendations(); + } + + notificationService.getNotificationRate().then(res=> { + if (res == null || res.response == null) { + $log.error('NotificationCtrl: failed to notification update rate or duration, check system.properties file.'); + } else { + var rate = parseInt(res.response.updateRate); + var duration = parseInt(res.response.updateDuration); + notificationService.setMaxRefreshCount(parseInt(duration/rate)+1); + notificationService.setRefreshCount(notificationService.maxCount); + if (rate != NaN && duration != NaN) { + $scope.updateRate=rate; + setInterval(function(){$scope.getRecommendations();},rate); + + } + } + }).catch(err=> { + $log.error('NotificationCtrl: getNotificationRate() failed: ' + err); + }); + $scope.deleteRecommendation = function(index){ + if ($scope.recommendations[index] == null || $scope.recommendations[index] == '') { + $log.error('RecommendationCtrl: failed to delete Recommendation.'); + return; + } + $scope.recommendations.splice(index,1); + recommendationService.setRecommendationCount($scope.recommendations.length); + } + } + } + NotificationCtrl.$inject = ['$log', '$scope', '$cookies', '$timeout', 'sessionService','notificationService','$interval','ngDialog']; + RecommendationCtrl.$inject = ['$log', '$scope', '$cookies', '$timeout', 'sessionService','recommendationService','notificationService','$interval','ngDialog']; + LoginSnippetCtrl.$inject = ['$log', '$scope', '$cookies', '$timeout','userProfileService', 'sessionService']; + HeaderCtrl.$inject = ['$log', '$window', 'userProfileService', 'menusService', '$scope', 'ECOMP_URL_REGEX','$cookies','$state','auditLogService','notificationService','recommendationService','ngDialog']; + angular.module('ecompApp').controller('HeaderCtrl', HeaderCtrl); + angular.module('ecompApp').controller('loginSnippetCtrl', LoginSnippetCtrl); + angular.module('ecompApp').controller('notificationCtrl', NotificationCtrl); + angular.module('ecompApp').controller('recommendationCtrl', RecommendationCtrl); + +})(); diff --git a/ecomp-portal-FE-common/client/app/views/header/header.controller.spec.js b/ecomp-portal-FE-common/client/app/views/header/header.controller.spec.js index 3841a2b3..32cc3a1f 100644 --- a/ecomp-portal-FE-common/client/app/views/header/header.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/header/header.controller.spec.js @@ -1,19 +1,19 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ diff --git a/ecomp-portal-FE-common/client/app/views/header/header.less b/ecomp-portal-FE-common/client/app/views/header/header.less index ec57812c..b553cebb 100644 --- a/ecomp-portal-FE-common/client/app/views/header/header.less +++ b/ecomp-portal-FE-common/client/app/views/header/header.less @@ -197,6 +197,21 @@ width: 16px; } + .recommendations-count + { + .border-radius(50%); + background:#db3434; + color: @colorWhite; + font-size: 10px; + padding-top: 2px; + height: 16px; + position: absolute; + right: -7px; + text-align: center; + top: -8px; + width: 16px; + } + .notification-header{ border-bottom: 1px solid #b4b4b4; padding: 10px 40px 0px 40px; @@ -291,7 +306,7 @@ .normal { .border-radius(50%); - background: @colorPeterRiver; + background: steelblue; content: ''; height: 8px; width: 8px; @@ -324,7 +339,7 @@ .button-dismiss { - color: @colorSilver; + color: black; font-size: 15px; &:hover, @@ -399,7 +414,7 @@ } .b2b-header-tabs .header__items{ - width:90%; + width:98%; } .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary{ @@ -407,6 +422,12 @@ } +.b2b-header-tabs .header__item.profile{ + margin-right:70px; + float:right; + position: static; +} + .third-level-menu{ column-count: 4; line-height: 12px; @@ -426,10 +447,11 @@ column-count: 4; .b2b-header-tabs .third-level-menu li a { color: #333; - display: inline-grid; + display: inline-flex; padding: 7px 15px; - max-width: 228px; font-family:"Omnes-ECOMP-W02", Arial; + margin-top:5px; + margin-bottom:5px; } .b2b-header-tabs .third-level-menu li{ @@ -491,6 +513,24 @@ column-count: 4; width:100%; } -.display-userAppRoles-label span{ +.display-userAppRoles-label{ font-family:"Omnes-ECOMP-W02", Arial; -} \ No newline at end of file + white-space:nowrap; +} + +.profile-detail-extension{ + display:inline-block; +} + +.logout-btn-div{ + display:inline-block; + padding-top: 8px; + +} + +.onap-title-logo{ + position: relative; + top: 7px; + width: 126.8px; + height: 28px; +} diff --git a/ecomp-portal-FE-common/client/app/views/header/header.tpl.html b/ecomp-portal-FE-common/client/app/views/header/header.tpl.html index 65a34ed1..3d1d3305 100644 --- a/ecomp-portal-FE-common/client/app/views/header/header.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/header/header.tpl.html @@ -1,266 +1,330 @@ - -
    -
    - -
    -
    + +
    +
    + +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-add-details/microservice-add-details.html b/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-add-details/microservice-add-details.html index a8b20739..40b6fb30 100644 --- a/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-add-details/microservice-add-details.html +++ b/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-add-details/microservice-add-details.html @@ -1,205 +1,211 @@ - -
    -
    microservice Details
    - -
    -
    -
    -
    -
    microservice Name
    - - -
    -
    - Microservice - Name is required Microservice - Name must be letters, numbers, or underscore -
    -
    - -
    - Name not available - choose different - name -
    -
    - -
    -
    microservice Description
    - -
    - Microservice Description is required -
    -
    - - - -
    -
    Client Widgets
    -
    {{widget.name}}
    -
    - -
    -
    Application Name
    -
    -
    - -
    -
    - -
    - Please select microservice - Application -
    -
    - -
    -
    microservice Endpoint URL
    - - -
    - Microservice Endpoint URL is required -
    -
    - -
    -
    Security Type
    -
    -
    - -
    -
    -
    - -
    -
    Username
    - -
    - -
    -
    Password
    - -
    - - -
    -
    -
    Test Microservice
    -
    -
    -
    Test
    -
    -
    - -
    -
    JSON output
    - -
    - -
    -
    Add User Parameter
    -
    -
    -
    -
    - Parameter Key
    -
    - Parameter Default Value
    - -
    - -
    - -
    -
    - -
    - -
    -
    - -
    - -
    Active
    -
    - -
    - -
    -
    - - -
    -
    -
    - - -
    -
    + +
    +
    Microservice Details
    + +
    +
    +
    +
    +
    Microservice Name
    + + +
    +
    + Microservice + Name is required Microservice + Name must be letters, numbers, or underscore +
    +
    + +
    + Name not available - choose different + name +
    +
    + +
    +
    Microservice Description
    + +
    + Microservice Description is required +
    +
    + + + +
    +
    Client Widgets
    +
    {{widget.name}}
    +
    + +
    +
    Application Name
    +
    +
    + +
    +
    + +
    + Please select microservice + Application +
    +
    + +
    +
    Microservice Endpoint URL
    + + +
    + Microservice Endpoint URL is required +
    +
    + +
    +
    Security Type
    +
    +
    + +
    +
    +
    + +
    +
    Username
    + +
    + +
    +
    Password
    + +
    + + +
    +
    +
    Test Microservice
    +
    +
    +
    Test
    +
    +
    + +
    +
    JSON output
    + +
    + +
    +
    Add User Parameter
    +
    +
    +
    +
    + Parameter Key
    +
    + Parameter Default Value
    + +
    + +
    + +
    +
    + +
    + +
    +
    + +
    + +
    Active
    +
    + +
    + +
    +
    + + +
    +
    +
    + + +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-add-details/microservice-add-details.js b/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-add-details/microservice-add-details.js index f6123349..8ce9be64 100644 --- a/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-add-details/microservice-add-details.js +++ b/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-add-details/microservice-add-details.js @@ -1,336 +1,337 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class MicroserviceAddDetailsCtrl { - constructor($scope, $log, $interval, widgetsCatalogService, applicationsService, adminsService, microserviceService, errorMessageByCode, ECOMP_URL_REGEX, $window,userProfileService, confirmBoxService, $cookies) { - - - let getAvailableApps = () => { - applicationsService.getAppsForSuperAdminAndAccountAdmin().then(apps => { - this.availableApps=[]; - apps.unshift({ - id: 1, - name: "ECOMP Portal" - }); - for(var i = 0; i < apps.length; i++) { - this.availableApps.push({ - id: apps[i].id, - name: apps[i].name - }); - if(this.isEditMode == true && this.service.appId == apps[i].id){ - this.service.application = this.availableApps[i]; - } - } - }).catch(err => { - $log.error(err); - }); - }; - - let getAvailableWidgets = () => { - microserviceService.getWidgetListByService(this.service.id).then(widgets =>{ - this.availableWidgets = []; - for(var i = 0; i < widgets.length; i++){ - this.availableWidgets.push({ - name: widgets[i] - }) - } - }).catch(err => { - $log.error(err); - }); - }; - - - let getAvailableSecurityTypes = () => { - this.availableSecurityTypes = []; - this.availableSecurityTypes.push({ - id: 0, - name: 'No Authentication' - }); - this.availableSecurityTypes.push({ - id: 1, - name: 'Basic Authentication' - }); - this.availableSecurityTypes.push({ - id: 2, - name: 'Cookie based Authentication' - }); - } - - let init = () => { - $log.info('MicroserviceAddDetailsCtrl::init'); - this.service = []; - this.service.parameterList = []; - this.service.active = true; - this.emptyServiceName = false; - this.emptyServiceDesc = false; - this.emptyServiceURL = false; - this.emptyServiceApp = false; - this.dupliateName = false; - this.serviceList = $scope.ngDialogData.list; - - if ($scope.ngDialogData && $scope.ngDialogData.service) { - - this.isEditMode = true; - this.service = _.clone($scope.ngDialogData.service); - - console.log(this.service); - if(this.service.active == 'Y') - this.service.active = true; - else - this.service.active = false; - } else { - this.isEditMode = false; - } - getAvailableApps(); - getAvailableSecurityTypes(); - //getAvailableWidgets(); - - /** - * 0: Basic Authentication - * - * TODO: change the structure - */ - if(this.service.securityType == "No Authentication"){ - this.service.security = this.availableSecurityTypes[0]; - }else if(this.service.securityType == "Basic Authentication"){ - this.service.security = this.availableSecurityTypes[1]; - }else if(this.service.securityType == "Cookie based Authentication"){ - this.service.security = this.availableSecurityTypes[2]; - } - }; - - this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; - this.conflictMessages = {}; - this.scrollApi = {}; - - let resetConflict = fieldName => { - delete this.conflictMessages[fieldName]; - if($scope.widgetForm[fieldName]){ - $scope.widgetForm[fieldName].$setValidity('conflict', true); - } - }; - - this.addParameter = () => { - document.getElementById('microservice-scroll-end').scrollIntoView(); - this.service.parameterList.push({}); - } - - this.closeThisDialog = () => { - $scope.closeThisDialog(true); - } - - this.removeParamItem = (parameter) => { - microserviceService.getUserParameterById(parameter.id).then((res) => { - if(res.length > 0){ - var message = res.length + " users have their own widget parameters. Are you sure you want to delete?"; - confirmBoxService.editItem(message).then(isConfirmed => { - if(isConfirmed){ - microserviceService.deleteUserParameterById(parameter.id).then((res) => { - for(var i = 0; i < this.service.parameterList.length; i++){ - if(this.service.parameterList[i].para_key == parameter.para_key - && this.service.parameterList[i].para_value == parameter.para_value){ - this.service.parameterList.splice(i, 1); - return; - } - } - }); - } - }); - } - else{ - for(var i = 0; i < this.service.parameterList.length; i++){ - if(this.service.parameterList[i].para_key == parameter.para_key - && this.service.parameterList[i].para_value == parameter.para_value){ - this.service.parameterList.splice(i, 1); - return; - } - } - } - }); - - - } - - this.updateServiceName = () => { - this.dupliateName = false; - for(var i = 0; i < this.serviceList.length; i++){ - if(this.serviceList[i].name == this.service.name){ - this.dupliateName = true; - return; - } - } - } - - this.updateDesc = () => { - this.emptyServiceDesc = false; - } - - this.updateURL = () => { - this.emptyServiceURL = false; - } - - this.updateApp = () => { - this.emptyServiceApp = false; - } - - //This is a fix for dropdown selection, due to b2b dropdown only update value field - $scope.$watch('microserviceAddDetails.service.application.name', (newVal, oldVal) => { - for(var i=0;i<$scope.microserviceAddDetails.availableApps.length;i++){ - if($scope.microserviceAddDetails.availableApps[i].name==newVal){ - $scope.microserviceAddDetails.service.application=angular.copy($scope.microserviceAddDetails.availableApps[i]); - } - } - }); - $scope.$watch('microserviceAddDetails.service.security.name', (newVal, oldVal) => { - for(var i=0;i<$scope.microserviceAddDetails.availableSecurityTypes.length;i++){ - if($scope.microserviceAddDetails.availableSecurityTypes[i].name==newVal){ - $scope.microserviceAddDetails.service.security=angular.copy($scope.microserviceAddDetails.availableSecurityTypes[i]); - } - } - }); - - let emptyCookies = () => { - userProfileService.getUserProfile() - .then(profile=> { - $log.info('AppDetailsModalCtrl::emptyCookies profile: ', profile); - $scope.attuid = profile.attuid; - $log.info('user has the following attuid: ' + profile.attuid); - if ($cookies.getObject($scope.attuid + '_widget') != undefined && $cookies.getObject($scope.attuid + '_widget') != null) { - $cookies.remove($scope.attuid + '_widget'); - } - }); - }; - - this.testServiceURL = () =>{ - //console.log(this.service.id); - widgetsCatalogService.getServiceJSON(this.service.id).then(res => { - document.getElementById("microservice-details-input-json").innerHTML = (JSON.stringify(res)); - }); - } - - this.saveChanges = () => { - /* TODO: add form validation */ - - var isValid = true; - this.updateServiceName(); - - if(this.service.name == '' - || this.service.name == undefined){ - this.emptyServiceName = true; - isValid = false; - } - - if(this.dupliateName == true - && this.isEditMode == false){ - isValid = false; - } - - - if(this.service.desc == '' - || this.service.desc == undefined){ - this.emptyServiceDesc = true; - isValid = false; - } - - if(this.service.url == '' - || this.service.url == undefined){ - this.emptyServiceURL = true; - isValid = false; - } - - if(this.service.application == undefined - || this.service.application == null){ - this.emptyServiceApp = true; - isValid = false; - } - - if(!isValid) - return; - - /* - * Check the parameter list, delete those parameters that don't - * have key - */ - for(var i = 0; i < this.service.parameterList.length; i++){ - if(this.service.parameterList[i].para_key == undefined - || this.service.parameterList[i].para_key == null - || this.service.parameterList[i].para_key == ""){ - this.service.parameterList.splice(i, 1); - i--; - } - } - - var securityType; - var username; - var password; - if(this.service.security == undefined || - this.service.security == null) - securityType = "No Authentication"; - else{ - securityType = this.service.security.name; - username = this.service.username; - password = this.service.password; - } - - var active = 'N'; - if(this.service.active == true) - active = 'Y'; - - var newService = { - name: this.service.name, - desc: this.service.desc, - appId: this.service.application.id, - url: this.service.url, - securityType: securityType, - username: username, - password: password, - active: active, - parameterList: this.service.parameterList - }; - - if(this.isEditMode){ - // console.log(this.service.parameterList); - var message = "Are you sure you want to change '" + this.service.name + "'?" - confirmBoxService.editItem(message).then(isConfirmed => { - if(isConfirmed){ - microserviceService.updateService(this.service.id, newService).then(() => { - // TODO: result validation check - this.closeThisDialog(); - }); - } - }); - }else{ - microserviceService.createService(newService).then(() => { - // TODO: result validation check - $scope.closeThisDialog(true); - }); - } - - }; - init(); - $scope.$on('$stateChangeStart', e => { - e.preventDefault(); - }); - } - } - MicroserviceAddDetailsCtrl.$inject = ['$scope', '$log', '$interval', 'widgetsCatalogService', 'applicationsService', 'adminsService', 'microserviceService', 'errorMessageByCode', 'ECOMP_URL_REGEX', '$window','userProfileService', 'confirmBoxService', '$cookies']; - angular.module('ecompApp').controller('MicroserviceAddDetailsCtrl', MicroserviceAddDetailsCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class MicroserviceAddDetailsCtrl { + constructor($scope, $log, $interval, widgetsCatalogService, applicationsService, adminsService, microserviceService, errorMessageByCode, ECOMP_URL_REGEX, $window,userProfileService, confirmBoxService, $cookies) { + + + let getAvailableApps = () => { + applicationsService.getAppsForSuperAdminAndAccountAdmin().then(apps => { + this.availableApps=[]; + apps.unshift({ + id: 1, + name: "ECOMP Portal" + }); + for(var i = 0; i < apps.length; i++) { + this.availableApps.push({ + id: apps[i].id, + name: apps[i].name + }); + if(this.isEditMode == true && this.service.appId == apps[i].id){ + this.service.application = this.availableApps[i]; + } + } + }).catch(err => { + $log.error(err); + }); + }; + + let getAvailableWidgets = () => { + microserviceService.getWidgetListByService(this.service.id).then(widgets =>{ + this.availableWidgets = []; + for(var i = 0; i < widgets.length; i++){ + this.availableWidgets.push({ + name: widgets[i] + }) + } + }).catch(err => { + $log.error(err); + }); + }; + + + let getAvailableSecurityTypes = () => { + this.availableSecurityTypes = []; + this.availableSecurityTypes.push({ + id: 0, + name: 'No Authentication' + }); + this.availableSecurityTypes.push({ + id: 1, + name: 'Basic Authentication' + }); + this.availableSecurityTypes.push({ + id: 2, + name: 'Cookie based Authentication' + }); + } + + let init = () => { + $log.info('MicroserviceAddDetailsCtrl::init'); + this.service = []; + this.availableApps=[]; + this.service.parameterList = []; + this.service.active = true; + this.emptyServiceName = false; + this.emptyServiceDesc = false; + this.emptyServiceURL = false; + this.emptyServiceApp = false; + this.dupliateName = false; + this.serviceList = $scope.ngDialogData.list; + + if ($scope.ngDialogData && $scope.ngDialogData.service) { + + this.isEditMode = true; + this.service = _.clone($scope.ngDialogData.service); + + this.originalName = this.service.name; + if(this.service.active == 'Y') + this.service.active = true; + else + this.service.active = false; + } else { + this.isEditMode = false; + } + getAvailableApps(); + getAvailableSecurityTypes(); + //getAvailableWidgets(); + + /** + * 0: Basic Authentication + * + * TODO: change the structure + */ + if(this.service.securityType == "No Authentication"){ + this.service.security = this.availableSecurityTypes[0]; + }else if(this.service.securityType == "Basic Authentication"){ + this.service.security = this.availableSecurityTypes[1]; + }else if(this.service.securityType == "Cookie based Authentication"){ + this.service.security = this.availableSecurityTypes[2]; + } + }; + + this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; + this.conflictMessages = {}; + this.scrollApi = {}; + + let resetConflict = fieldName => { + delete this.conflictMessages[fieldName]; + if($scope.widgetForm[fieldName]){ + $scope.widgetForm[fieldName].$setValidity('conflict', true); + } + }; + + this.addParameter = () => { + document.getElementById('microservice-scroll-end').scrollIntoView(); + this.service.parameterList.push({}); + } + + this.closeThisDialog = () => { + $scope.closeThisDialog(true); + } + + this.removeParamItem = (parameter) => { + microserviceService.getUserParameterById(parameter.id).then((res) => { + if(res.length > 0){ + var message = res.length + " users have their own widget parameters. Are you sure you want to delete?"; + confirmBoxService.editItem(message).then(isConfirmed => { + if(isConfirmed){ + microserviceService.deleteUserParameterById(parameter.id).then((res) => { + for(var i = 0; i < this.service.parameterList.length; i++){ + if(this.service.parameterList[i].para_key == parameter.para_key + && this.service.parameterList[i].para_value == parameter.para_value){ + this.service.parameterList.splice(i, 1); + return; + } + } + }); + } + }); + } + else{ + for(var i = 0; i < this.service.parameterList.length; i++){ + if(this.service.parameterList[i].para_key == parameter.para_key + && this.service.parameterList[i].para_value == parameter.para_value){ + this.service.parameterList.splice(i, 1); + return; + } + } + } + }); + + + } + + this.updateServiceName = () => { + this.dupliateName = false; + for(var i = 0; i < this.serviceList.length; i++){ + if(this.serviceList[i].name == this.service.name){ + if(this.isEditMode && this.service.name == this.originalName) + continue; + this.dupliateName = true; + return; + } + } + } + + this.updateDesc = () => { + this.emptyServiceDesc = false; + } + + this.updateURL = () => { + this.emptyServiceURL = false; + } + + this.updateApp = () => { + this.emptyServiceApp = false; + } + + //This is a fix for dropdown selection, due to b2b dropdown only update value field + $scope.$watch('microserviceAddDetails.service.application.name', (newVal, oldVal) => { + for(var i=0;i<$scope.microserviceAddDetails.availableApps.length;i++){ + if($scope.microserviceAddDetails.availableApps[i].name==newVal){ + $scope.microserviceAddDetails.service.application=angular.copy($scope.microserviceAddDetails.availableApps[i]); + } + } + }); + $scope.$watch('microserviceAddDetails.service.security.name', (newVal, oldVal) => { + for(var i=0;i<$scope.microserviceAddDetails.availableSecurityTypes.length;i++){ + if($scope.microserviceAddDetails.availableSecurityTypes[i].name==newVal){ + $scope.microserviceAddDetails.service.security=angular.copy($scope.microserviceAddDetails.availableSecurityTypes[i]); + } + } + }); + + let emptyCookies = () => { + userProfileService.getUserProfile() + .then(profile=> { + $log.info('AppDetailsModalCtrl::emptyCookies profile: ', profile); + $scope.attuid = profile.attuid; + $log.info('user has the following attuid: ' + profile.attuid); + if ($cookies.getObject($scope.attuid + '_widget') != undefined && $cookies.getObject($scope.attuid + '_widget') != null) { + $cookies.remove($scope.attuid + '_widget'); + } + }); + }; + + this.testServiceURL = () =>{ + widgetsCatalogService.getServiceJSON(this.service.id).then(res => { + document.getElementById("microservice-details-input-json").innerHTML = (JSON.stringify(res)); + }); + } + + this.saveChanges = () => { + /* TODO: add form validation */ + + var isValid = true; + this.updateServiceName(); + + if(this.service.name == '' + || this.service.name == undefined){ + this.emptyServiceName = true; + isValid = false; + } + + if(this.dupliateName == true){ + isValid = false; + } + + + if(this.service.desc == '' + || this.service.desc == undefined){ + this.emptyServiceDesc = true; + isValid = false; + } + + if(this.service.url == '' + || this.service.url == undefined){ + this.emptyServiceURL = true; + isValid = false; + } + + if(this.service.application == undefined + || this.service.application == null){ + this.emptyServiceApp = true; + isValid = false; + } + + if(!isValid) + return; + + /* + * Check the parameter list, delete those parameters that don't + * have key + */ + for(var i = 0; i < this.service.parameterList.length; i++){ + if(this.service.parameterList[i].para_key == undefined + || this.service.parameterList[i].para_key == null + || this.service.parameterList[i].para_key == ""){ + this.service.parameterList.splice(i, 1); + i--; + } + } + + var securityType; + var username; + var password; + if(this.service.security == undefined || + this.service.security == null) + securityType = "No Authentication"; + else{ + securityType = this.service.security.name; + username = this.service.username; + password = this.service.password; + } + + var active = 'N'; + if(this.service.active == true) + active = 'Y'; + + var newService = { + name: this.service.name, + desc: this.service.desc, + appId: this.service.application.id, + url: this.service.url, + securityType: securityType, + username: username, + password: password, + active: active, + parameterList: this.service.parameterList + }; + + if(this.isEditMode){ + // console.log(this.service.parameterList); + var message = "Are you sure you want to change '" + this.service.name + "'?" + confirmBoxService.editItem(message).then(isConfirmed => { + if(isConfirmed){ + microserviceService.updateService(this.service.id, newService).then(() => { + // TODO: result validation check + this.closeThisDialog(); + }); + } + }); + }else{ + microserviceService.createService(newService).then(() => { + // TODO: result validation check + $scope.closeThisDialog(true); + }); + } + + }; + init(); + $scope.$on('$stateChangeStart', e => { + e.preventDefault(); + }); + } + } + MicroserviceAddDetailsCtrl.$inject = ['$scope', '$log', '$interval', 'widgetsCatalogService', 'applicationsService', 'adminsService', 'microserviceService', 'errorMessageByCode', 'ECOMP_URL_REGEX', '$window','userProfileService', 'confirmBoxService', '$cookies']; + angular.module('ecompApp').controller('MicroserviceAddDetailsCtrl', MicroserviceAddDetailsCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-onboarding.less b/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-onboarding.less index 7565b432..74b1b6ae 100644 --- a/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-onboarding.less +++ b/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-onboarding.less @@ -1,14 +1,14 @@ .microservice-onboarding{ - //.bg_portalWhite;//white for 1702 - .bg_portalGray; // gray for 1610 - position: @page-main-position; - top: @page-main-top; - left: @page-main-left; - right: @page-main-right; - bottom: @page-main-bottom; - padding-top: @padding-top; - overflow-y: @page-main-overflow-y; - padding-left: @padding-left-side; + .bg_portalWhite;//white for 1702 + //.bg_portalGray; // gray for 1610 + position: @page-main-position; + top: @page-main-top; + left: @page-main-left; + right: @page-main-right; + bottom: @page-main-bottom; + padding-top: @padding-top; + overflow-y: @page-main-overflow-y; + padding-left: @padding-left-side; .microservices-table { width: @table-width; diff --git a/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-onboarding.tpl.html b/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-onboarding.tpl.html index e3b3128a..ecda542d 100644 --- a/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-onboarding.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/microservice-onboarding/microservice-onboarding.tpl.html @@ -1,75 +1,75 @@ - -
    -
    -
    -
    Microservice Onboarding
    -
    -
    -
    - -
    -
    -
    - - - - - - - - - - - - - - - -
    {{header.name}}Delete
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + +
    +
    +
    +
    Microservice Onboarding
    +
    +
    +
    + +
    +
    +
    + + + + + + + + + + + + + + + +
    {{header.name}}Delete
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/notification-history/notificationhistory.controller.js b/ecomp-portal-FE-common/client/app/views/notification-history/notificationhistory.controller.js index 609dba38..a5ea9041 100644 --- a/ecomp-portal-FE-common/client/app/views/notification-history/notificationhistory.controller.js +++ b/ecomp-portal-FE-common/client/app/views/notification-history/notificationhistory.controller.js @@ -1,83 +1,91 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - - class notificationHistoryCtrl { - constructor( $scope, $log,notificationService, confirmBoxService, $modal, ngDialog, $state) { - - var priorityItems={"1":"Normal","2":"Important"}; - $scope.priorityItems=priorityItems; - $scope.externalNotification="External System"; - $scope.isLoadingTable = false; - $scope.searchString = ''; - $scope.notificationHistory = []; - let getNotificationHistory = () => { - $scope.isLoadingTable = true; - notificationService.getNotificationHistory().then(res => { - $scope.notificationHistory = res.data; - $scope.isLoadingTable = false; - }).catch(err => { - $log.error('notificationHistoryCtlr:notifSvc.getNotifHist failed: ', err); - $scope.isLoadingTable = false; - }); - } - - getNotificationHistory(); - - $scope.showDetailedJsonMessage=function (selectedAdminNotification) { - var messageObject=JSON.parse(selectedAdminNotification.msgDescription); - var html=""; - html+='

    '+'Message Source'+' : '+selectedAdminNotification.msgSource+'

    '; - html+='

    '+'Message Title'+' : '+selectedAdminNotification.msgHeader+'

    '; - for(var field in messageObject){ - if(field=='eventDate'||field=='lastModifiedDate'){ - html+='

    '+field+' : '+new Date(+messageObject[field])+'

    '; - - }else{ - html+='

    '+field+' : '+messageObject[field]+'

    '; - - } - } - - var modalInstance = ngDialog.open({ - templateUrl: 'app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html', - controller: 'userNotificationCtrl', - resolve: { - message: function () { - var message = { - title: '', - text: html - - }; - return message; - }, - - } - }); - - - }; - } - } - notificationHistoryCtrl.$inject = ['$scope', '$log', 'notificationService', 'confirmBoxService', '$modal', 'ngDialog', '$state']; - angular.module('ecompApp').controller('notificationHistoryCtrl', notificationHistoryCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + + class notificationHistoryCtrl { + constructor( $scope, $log,notificationService, confirmBoxService, $modal, ngDialog, $state) { + + var priorityItems={"1":"Normal","2":"Important"}; + $scope.priorityItems=priorityItems; + $scope.externalNotification="External System"; + $scope.isLoadingTable = false; + $scope.searchString = ''; + $scope.notificationHistory = []; + let getNotificationHistory = () => { + $scope.isLoadingTable = true; + notificationService.getNotificationHistory().then(res => { + $scope.notificationHistory = res.data; + $scope.isLoadingTable = false; + }).catch(err => { + $log.error('notificationHistoryCtlr:notifSvc.getNotifHist failed: ', err); + $scope.isLoadingTable = false; + }); + } + + getNotificationHistory(); + + $scope.showDetailedJsonMessage=function (selectedAdminNotification) { + notificationService.getMessageRecipients(selectedAdminNotification.notificationId).then(res =>{ + $scope.messageRecipients = res; + var messageObject=JSON.parse(selectedAdminNotification.msgDescription); + var html=""; + html+='

    '+'Message Source'+' : '+selectedAdminNotification.msgSource+'

    '; + html+='

    '+'Message Title'+' : '+selectedAdminNotification.msgHeader+'

    '; + html+='

    '+'Message Recipient'+' : '+$scope.messageRecipients+'

    '; + + for(var field in messageObject){ + if(field=='eventDate'||field=='lastModifiedDate'){ + html+='

    '+field+' : '+new Date(+messageObject[field])+'

    '; + + }else{ + html+='

    '+field+' : '+messageObject[field]+'

    '; + + } + } + + var modalInstance = ngDialog.open({ + templateUrl: 'app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html', + controller: 'userNotificationCtrl', + resolve: { + message: function () { + var message = { + title: '', + text: html + + }; + return message; + }, + + } + }); + + }).catch(err => { + $log.error('userNotificationsCtrl:getMessageRecipients:: error ', err); + $scope.isLoadingTable = false; + }); + + }; + } + } + notificationHistoryCtrl.$inject = ['$scope', '$log', 'notificationService', 'confirmBoxService', '$modal', 'ngDialog', '$state']; + angular.module('ecompApp').controller('notificationHistoryCtrl', notificationHistoryCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/notification-history/notificationhistory.tpl.html b/ecomp-portal-FE-common/client/app/views/notification-history/notificationhistory.tpl.html index 5cd56e97..f5d0b292 100644 --- a/ecomp-portal-FE-common/client/app/views/notification-history/notificationhistory.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/notification-history/notificationhistory.tpl.html @@ -1,100 +1,100 @@ - -
    -
    -
    -

    Recent Notifications

    -
    -
    - -
    -
    This table shows - notifications published in the last 30 days.
    -
    - -
    -
    - - - -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    Message SourceMessageStart Date (Local Time)End Date (Local Time)PriorityCreated ByCreated Time
    -
    {{rowData.msgSource}}
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + +
    +
    +
    +

    Recent Notifications

    +
    +
    + +
    +
    This table shows + notifications published in the last 30 days.
    +
    + +
    +
    + + + +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    Message SourceMessageStart Date (Local Time)End Date (Local Time)PriorityCreated ByCreated Time
    +
    {{rowData.msgSource}}
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.js b/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.js index 54575d39..466998a3 100644 --- a/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.js +++ b/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.js @@ -1,95 +1,95 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 12/8/15. - */ -'use strict'; -(function () { - class NewPortalAdminModalCtrl { - constructor($log, portalAdminsService, $scope, confirmBoxService) { - - let init = () => { - this.isSaving = false; - /* istanbul ignore if */ - if($scope.ngDialogData && $scope.ngDialogData.selectedUser && $scope.ngDialogData.dialogState){ - this.selectedUser = $scope.ngDialogData.selectedUser; - this.dialogState = $scope.ngDialogData.dialogState; - }else{ - this.selectedUser = null; - this.dialogState = 1; - } - //this.searchUsersInProgress = false; - //this.showNewAdminAppDropdown = false; - $log.info('NewPortalAdminModalCtrl:: initiated'); - }; - - this.addNewPortalAdmin = () => { - confirmBoxService.makeAdminChanges('Are you sure you want to add "' + this.selectedUser.firstName + ' ' + this.selectedUser.lastName + '" as a Portal Admin?') - .then(isConfirmed => { - if(isConfirmed) { - if (!this.selectedUser || !this.selectedUser.orgUserId) { - $log.error('NewPortalAdminModalCtrl::makeAdminChanges: No portal admin or ID... cannot add'); - return; - } - portalAdminsService.addPortalAdmin(this.selectedUser.orgUserId) - .then(() => { - $log.debug("NewPortalAdminModalCtrl::addNewPortalAdmin: portal admin added successfully"); - $scope.closeThisDialog(true); - }).catch(err => { - if(err.status === 409) { //Conflict - confirmBoxService.showInformation('This user already exists as a portal admin!').then(function (isConfirmed) { - $scope.closeThisDialog(true); - }); - } else { - confirmBoxService.showInformation('There was a unknown problem adding the portal admin. ' + 'Please try again later. Error Status: '+ err.status).then(function (isConfirmed) { - $scope.closeThisDialog(true); - }); - } - }); - } - }).catch(err => { - confirmBoxService.showInformation('There was a unknown problem adding the portal admin. ' + 'Please try again later. Error Status: '+ err.status).then(function (isConfirmed) { - $scope.closeThisDialog(true); - }); - $log.error('portalAdminsService.addPortalAdmin error status: '+ err.status); - }); - }; - - /** - * this function set the selected user - * @param user: selected user object - */ - this.setSelectedUser = (user) => { - $log.debug('NewPortalAdminModalCtrl::setSelectedUser: selected user: ', user); - this.selectedUser = user; - }; - - init(); - - $scope.$on('$stateChangeStart', e => { - //Disable navigation when modal is opened - //**Nabil - note: this will cause the history back state to be replaced with current state - e.preventDefault(); - }); - } - } - NewPortalAdminModalCtrl.$inject = ['$log', 'portalAdminsService', '$scope', 'confirmBoxService']; - angular.module('ecompApp').controller('NewPortalAdminModalCtrl', NewPortalAdminModalCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 12/8/15. + */ +'use strict'; +(function () { + class NewPortalAdminModalCtrl { + constructor($log, portalAdminsService, $scope, confirmBoxService) { + + let init = () => { + this.isSaving = false; + /* istanbul ignore if */ + if($scope.ngDialogData && $scope.ngDialogData.selectedUser && $scope.ngDialogData.dialogState){ + this.selectedUser = $scope.ngDialogData.selectedUser; + this.dialogState = $scope.ngDialogData.dialogState; + }else{ + this.selectedUser = null; + this.dialogState = 1; + } + //this.searchUsersInProgress = false; + //this.showNewAdminAppDropdown = false; + $log.info('NewPortalAdminModalCtrl:: initiated'); + }; + + this.addNewPortalAdmin = () => { + confirmBoxService.makeAdminChanges('Are you sure you want to add "' + this.selectedUser.firstName + ' ' + this.selectedUser.lastName + '" as a Portal Admin?') + .then(isConfirmed => { + if(isConfirmed) { + if (!this.selectedUser || !this.selectedUser.orgUserId) { + $log.error('NewPortalAdminModalCtrl::makeAdminChanges: No portal admin or ID... cannot add'); + return; + } + portalAdminsService.addPortalAdmin(this.selectedUser.orgUserId) + .then(() => { + $log.debug("NewPortalAdminModalCtrl::addNewPortalAdmin: portal admin added successfully"); + $scope.closeThisDialog(true); + }).catch(err => { + if(err.status === 409) { //Conflict + confirmBoxService.showInformation('This user already exists as a portal admin!').then(function (isConfirmed) { + $scope.closeThisDialog(true); + }); + } else { + confirmBoxService.showInformation('There was a unknown problem adding the portal admin. ' + 'Please try again later. Error Status: '+ err.status).then(function (isConfirmed) { + $scope.closeThisDialog(true); + }); + } + }); + } + }).catch(err => { + confirmBoxService.showInformation('There was a unknown problem adding the portal admin. ' + 'Please try again later. Error Status: '+ err.status).then(function (isConfirmed) { + $scope.closeThisDialog(true); + }); + $log.error('portalAdminsService.addPortalAdmin error status: '+ err.status); + }); + }; + + /** + * this function set the selected user + * @param user: selected user object + */ + this.setSelectedUser = (user) => { + $log.debug('NewPortalAdminModalCtrl::setSelectedUser: selected user: ', user); + this.selectedUser = user; + }; + + init(); + + $scope.$on('$stateChangeStart', e => { + //Disable navigation when modal is opened + //**Nabil - note: this will cause the history back state to be replaced with current state + e.preventDefault(); + }); + } + } + NewPortalAdminModalCtrl.$inject = ['$log', 'portalAdminsService', '$scope', 'confirmBoxService']; + angular.module('ecompApp').controller('NewPortalAdminModalCtrl', NewPortalAdminModalCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.spec.js b/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.spec.js index 3841a2b3..32cc3a1f 100644 --- a/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.controller.spec.js @@ -1,19 +1,19 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ diff --git a/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.modal.html b/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.modal.html index d328db82..206dc168 100644 --- a/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.modal.html +++ b/ecomp-portal-FE-common/client/app/views/portal-admin/new-portal-admin/new-portal-admin.modal.html @@ -1,36 +1,42 @@ - -
    - -
    - - - -
    - - - -
    -
    -
    + +
    + +
    + + + +
    + + + +
    +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/portal-admin/portal-admin-controller.js b/ecomp-portal-FE-common/client/app/views/portal-admin/portal-admin-controller.js index 0051e708..89f6d0ae 100644 --- a/ecomp-portal-FE-common/client/app/views/portal-admin/portal-admin-controller.js +++ b/ecomp-portal-FE-common/client/app/views/portal-admin/portal-admin-controller.js @@ -1,110 +1,110 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class PortalAdminsCtrl { - constructor($log, portalAdminsService, ngDialog, confirmBoxService) { - - let updateTableData = () => { - this.isLoadingTable = true; - portalAdminsService.getPortalAdmins().then(result=> { - $log.debug('PortalAdminsCtrl::updateTableData: result: ' + JSON.stringify(result)); - if (!result || !result.length) { - $log.info('PortalAdminsCtrl::updateTableData: no Portal Admins err handling'); - this.portalAdminsTableData = []; - return; - } - this.portalAdminsTableData = result; - }).catch(err=> { - $log.error('PortalAdminsCtrl::updateTableData error :',err); - confirmBoxService.showInformation('There was a problem retrieving the portal admins. ' + - 'Please try again later. Error: ' + err.status).then(isConfirmed => {}); - - }).finally(() => { - this.isLoadingTable = false; - }); - }; - - let init = () => { - $log.info('portalAdminsService.getPortalAdmins::initializing...'); - this.isLoadingTable = false; - - /*Table general configuration params*/ - this.searchString= ''; - /*Table data*/ - this.portalAdminsTableHeaders = ['First Name', 'Last Name', 'User ID', 'Delete']; - this.portalAdminsTableData = []; - updateTableData(); - }; - - init(); - - this.removePortalAdmin = pAdmin => { - $log.debug('PortalAdminsCtrl::removePortalAdmin: pAdmin = ' + JSON.stringify(pAdmin)); - confirmBoxService.deleteItem(pAdmin.firstName + ' ' + pAdmin.lastName ) - .then(isConfirmed => { - if(isConfirmed){ - if(!pAdmin || !pAdmin.userId){ - $log.error('PortalAdminsCtrl::removePortalAdmin No portal admin or ID... cannot delete'); - return; - } - portalAdminsService.removePortalAdmin(pAdmin.userId,pAdmin.loginId).then(() => { - $log.info("PortalAdminsCtrl::removePortalAdmin removed admin"); - init(); - }).catch(err => { - $log.error('PortalAdminsCtrl::removePortalAdmin.deleteItem error: '+ err); - confirmBoxService.showInformation('There was a problem deleting this portal admins. ' + - 'Please try again later. Error: ' + err.status).then(isConfirmed => {}); - }); - } - }).catch(err => { - $log.error('PortalAdminsCtrl::removePortalAdmin.deleteItem error: '+ err); - }); - }; - - this.openAddNewPortalAdminModal = (user) => { - let data = null; - if(user){ - data = { - dialogState: 2, - selectedUser:{ - orgUserId: user.orgUserId, - firstName: user.firstName, - lastName: user.lastName - } - } - } - ngDialog.open({ - templateUrl: 'app/views/portal-admin/new-portal-admin/new-portal-admin.modal.html', - controller: 'NewPortalAdminModalCtrl', - controllerAs: 'newPortalAdmin', - data: data - }).closePromise.then(needUpdate => { - if(needUpdate.value === true){ - $log.debug('PortalAdminsCtrl::openAddNewPortalAdminModal: updating Portal Admin table data...'); - updateTableData(); - } - }); - }; - } - } - PortalAdminsCtrl.$inject = ['$log', 'portalAdminsService', 'ngDialog', 'confirmBoxService']; - angular.module('ecompApp').controller('PortalAdminsCtrl', PortalAdminsCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class PortalAdminsCtrl { + constructor($log, portalAdminsService, ngDialog, confirmBoxService) { + + let updateTableData = () => { + this.isLoadingTable = true; + portalAdminsService.getPortalAdmins().then(result=> { + $log.debug('PortalAdminsCtrl::updateTableData: result: ' + JSON.stringify(result)); + if (!result || !result.length) { + $log.info('PortalAdminsCtrl::updateTableData: no Portal Admins err handling'); + this.portalAdminsTableData = []; + return; + } + this.portalAdminsTableData = result; + }).catch(err=> { + $log.error('PortalAdminsCtrl::updateTableData error :',err); + confirmBoxService.showInformation('There was a problem retrieving the portal admins. ' + + 'Please try again later. Error: ' + err.status).then(isConfirmed => {}); + + }).finally(() => { + this.isLoadingTable = false; + }); + }; + + let init = () => { + $log.info('portalAdminsService.getPortalAdmins::initializing...'); + this.isLoadingTable = false; + + /*Table general configuration params*/ + this.searchString= ''; + /*Table data*/ + this.portalAdminsTableHeaders = ['First Name', 'Last Name', 'User ID', 'Delete']; + this.portalAdminsTableData = []; + updateTableData(); + }; + + init(); + + this.removePortalAdmin = pAdmin => { + $log.debug('PortalAdminsCtrl::removePortalAdmin: pAdmin = ' + JSON.stringify(pAdmin)); + confirmBoxService.deleteItem(pAdmin.firstName + ' ' + pAdmin.lastName ) + .then(isConfirmed => { + if(isConfirmed){ + if(!pAdmin || !pAdmin.userId){ + $log.error('PortalAdminsCtrl::removePortalAdmin No portal admin or ID... cannot delete'); + return; + } + portalAdminsService.removePortalAdmin(pAdmin.userId,pAdmin.loginId).then(() => { + $log.info("PortalAdminsCtrl::removePortalAdmin removed admin"); + init(); + }).catch(err => { + $log.error('PortalAdminsCtrl::removePortalAdmin.deleteItem error: '+ err); + confirmBoxService.showInformation('There was a problem deleting this portal admins. ' + + 'Please try again later. Error: ' + err.status).then(isConfirmed => {}); + }); + } + }).catch(err => { + $log.error('PortalAdminsCtrl::removePortalAdmin.deleteItem error: '+ err); + }); + }; + + this.openAddNewPortalAdminModal = (user) => { + let data = null; + if(user){ + data = { + dialogState: 2, + selectedUser:{ + orgUserId: user.orgUserId, + firstName: user.firstName, + lastName: user.lastName + } + } + } + ngDialog.open({ + templateUrl: 'app/views/portal-admin/new-portal-admin/new-portal-admin.modal.html', + controller: 'NewPortalAdminModalCtrl', + controllerAs: 'newPortalAdmin', + data: data + }).closePromise.then(needUpdate => { + if(needUpdate.value === true){ + $log.debug('PortalAdminsCtrl::openAddNewPortalAdminModal: updating Portal Admin table data...'); + updateTableData(); + } + }); + }; + } + } + PortalAdminsCtrl.$inject = ['$log', 'portalAdminsService', 'ngDialog', 'confirmBoxService']; + angular.module('ecompApp').controller('PortalAdminsCtrl', PortalAdminsCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/portal-admin/portal-admin.tpl.html b/ecomp-portal-FE-common/client/app/views/portal-admin/portal-admin.tpl.html index 43f830cc..33268efb 100644 --- a/ecomp-portal-FE-common/client/app/views/portal-admin/portal-admin.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/portal-admin/portal-admin.tpl.html @@ -1,64 +1,64 @@ - -
    -
    -
    -
    -

    Portal Admins

    -
    -
    -
    -
    - -
    -
    - -
    -
    - - - -
    - - - - - - - - - - - - - - - - - -
    First NameLast NameUser IDDelete
    - -
    -
    -
    -
    -
    - -
    + +
    +
    +
    +
    +

    Portal Admins

    +
    +
    +
    +
    + +
    +
    + +
    +
    + + + +
    + + + + + + + + + + + + + + + + + +
    First NameLast NameUser IDDelete
    + +
    +
    +
    +
    +
    + +
    diff --git a/ecomp-portal-FE-common/client/app/views/role/popup_modal_rolefunction.html b/ecomp-portal-FE-common/client/app/views/role/popup_modal_rolefunction.html index 3970960d..c5673da8 100644 --- a/ecomp-portal-FE-common/client/app/views/role/popup_modal_rolefunction.html +++ b/ecomp-portal-FE-common/client/app/views/role/popup_modal_rolefunction.html @@ -1,55 +1,59 @@ - - -
    -
    -
    - -
    -
    - *Name:
    - -
    Name is Required -
    -
    -
    -
    -
    - *Code: -
    - -
    Code is Required -
    -
    - - - -
    - - - -
    Cancel
    -
    -
    -
    - - + + +
    +
    +
    + +
    +
    + *Name:
    + +
    Name is Required +
    +
    +
    +
    +
    + *Code: +
    + +
    Code is Required +
    +
    + + + +
    + + + +
    Cancel
    +
    +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/role/role-controller.js b/ecomp-portal-FE-common/client/app/views/role/role-controller.js index c5c7c97c..2bd522a4 100644 --- a/ecomp-portal-FE-common/client/app/views/role/role-controller.js +++ b/ecomp-portal-FE-common/client/app/views/role/role-controller.js @@ -1,219 +1,219 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ - -app.controller('roleController', function ($scope, $http, confirmBoxService, ngDialog, RoleService, conf, $stateParams){ - //$scope.role=${role}; - - $( "#dialogRoleFunction" ).hide(); - $( "#dialogChildRole" ).hide(); - - //$scope.ociavailableRoleFunctions=${availableRoleFunctions}; - $scope.fetchRoles = function() { - - RoleService.getRole($stateParams.roleId).then(function(data){ - - var j = data; - $scope.data = JSON.parse(j.data); - - $scope.role =JSON.parse($scope.data.role); - - $scope.ociavailableRoleFunctions =JSON.parse($scope.data.availableRoleFunctions); - $scope.availableRoleFunctions=[]; - - if($scope.ociavailableRoleFunctions) - $.each($scope.ociavailableRoleFunctions, function(i, a){ - var availableRoleFunction = a; - availableRoleFunction.selected = false; - $.each($scope.role.roleFunctions, function(j, b){ - if(a.code === b.code) { - availableRoleFunction.selected = true; - } - }); - $scope.availableRoleFunctions.push(availableRoleFunction); - }); - - - $scope.ociavailableRoles=JSON.parse($scope.data.availableRoles); - $scope.availableRoles=[]; - - if($scope.ociavailableRoles) - $.each($scope.ociavailableRoles, function(i, a){ - var availableRole = a; - availableRole.selected = false; - if($scope.role.childRoles){ - $.each($scope.role.childRoles, function(j, b){ - if(a.id === b.id) { - availableRole.selected = true; - } - }); - }; - $scope.availableRoles.push(availableRole); - }); - - - },function(error){ - console.log("RoleService.getRole failed", error); - //reloadPageOnce(); - }); - } - - $scope.fetchRoles(); - - $scope.saveRole = function() { - var exists = false,x; - for(x in $scope.availableRoles){ - if($scope.availableRoles[x].name==$scope.role.name){ - exists = true; - //$modalInstance.close({availableRoleFunctions:message.availableRoleFunctions}); - } - } - if (exists) { - confirmBoxService.showInformation( "Role already exists."); - } - else { - var uuu = conf.api.saveRole + "?role_id="+$stateParams.roleId; - var postData = { - role: $scope.role, - childRoles: $scope.role.childRoles, - roleFunctions : $scope.role.roleFunctions - }; - $http.post(uuu, JSON.stringify(postData)).then(function(res) { - // console.log('roleController::saveRole: ' + JSON.stringify(res)); - if (res && res.data && res.data.role) - confirmBoxService.showInformation("Update Successful."); - else - confirmBoxService.showInformation('Failed to create role: ' + res.data.error) - }, - function(res){ - console.log('post failed', res.data); - confirmBoxService.showInformation("Error while saving."); - } - ); - } - }; - - $scope.addNewRoleFunctionModalPopup = function() { - var modalInstance = ngDialog.open({ - templateUrl: 'app/views/role/role_functions_popup.html', - controller: 'rolepopupController', - - resolve: { - roleId: function () { - return $stateParams.roleId; - }, - role: function () { - return $scope.role; - }, - availableRoles: function () { - return $scope.ociavailableRoles; - }, - availableRoleFunctions: function () { - return $scope.ociavailableRoleFunctions; - }, - } - }); - modalInstance.closePromise.then(response => { - if($stateParams.roleId === '0'){ - return $scope.role; - }else{ - $scope.fetchRoles(); - } - // $scope.role=response.role; - }); - }; - - $scope.addNewChildRoleModalPopup = function() { - var modalInstance = ngDialog.open({ - templateUrl: 'app/views/role/role_childrole_popup.html', - controller: 'rolepopupController', - - resolve: { - roleId: function () { - return $stateParams.roleId; - }, - role: function () { - return $scope.role; - }, - availableRoles: function () { - return $scope.ociavailableRoles; - }, - availableRoleFunctions: function () { - return $scope.ociavailableRoleFunctions; - }, - } - }).closePromise.then(function(response){ - if($stateParams.roleId === '0'){ - return $scope.role; - }else{ - $scope.fetchRoles(); - } - //$scope.role=response.role; - }); - }; - - $scope.removeRoleFunction = function(roleFunction) { - confirmBoxService.confirm("You are about to remove the role function "+roleFunction.name+" from the role for "+$scope.role.name+". Do you want to continue?").then( - function(confirmed){ - var uuu = conf.api.toggleRoleRoleFunction + "?role_id=" + $stateParams.roleId; - var postData={roleFunction:roleFunction}; - if(confirmed) { - $http.post(uuu, postData).then( - function(response) { - $scope.role= response.data.role; - $.each($scope.availableRoleFunctions, function(k, c){ - if(c.code === roleFunction.code) { - c.selected = false; - } - }); - }, - function(response) { - confirmBoxService.showInformation("Error while saving."); - } - ); - } - - }); - - }; - - $scope.removeChildRole = function(childRole) { - confirmBoxService.confirm("You are about to remove the child role "+childRole.name+" from the role for "+$scope.role.name+". Do you want to continue?").then( - function(confirmed){ - var uuu = conf.api.toggleRoleChildRole + "?role_id=" + $stateParams.roleId; - var postData={childRole:childRole}; - if(confirmed) { - $http.post(uuu,postData).then( function(response) { - $scope.role=response.data.role; - $.each($scope.availableRoles, function(k, c){ - if(c.id === childRole.id) { - c.selected = false; - } - }); - }, - - function(data) { - confirmBoxService.showInformation("Error while saving."); - }); - } - }); - - }; - -}); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ + +app.controller('roleController', function ($scope, $http, confirmBoxService, ngDialog, RoleService, conf, $stateParams){ + //$scope.role=${role}; + + $( "#dialogRoleFunction" ).hide(); + $( "#dialogChildRole" ).hide(); + + //$scope.ociavailableRoleFunctions=${availableRoleFunctions}; + $scope.fetchRoles = function() { + + RoleService.getRole($stateParams.roleId).then(function(data){ + + var j = data; + $scope.data = JSON.parse(j.data); + + $scope.role =JSON.parse($scope.data.role); + + $scope.ociavailableRoleFunctions =JSON.parse($scope.data.availableRoleFunctions); + $scope.availableRoleFunctions=[]; + + if($scope.ociavailableRoleFunctions) + $.each($scope.ociavailableRoleFunctions, function(i, a){ + var availableRoleFunction = a; + availableRoleFunction.selected = false; + $.each($scope.role.roleFunctions, function(j, b){ + if(a.code === b.code) { + availableRoleFunction.selected = true; + } + }); + $scope.availableRoleFunctions.push(availableRoleFunction); + }); + + + $scope.ociavailableRoles=JSON.parse($scope.data.availableRoles); + $scope.availableRoles=[]; + + if($scope.ociavailableRoles) + $.each($scope.ociavailableRoles, function(i, a){ + var availableRole = a; + availableRole.selected = false; + if($scope.role.childRoles){ + $.each($scope.role.childRoles, function(j, b){ + if(a.id === b.id) { + availableRole.selected = true; + } + }); + }; + $scope.availableRoles.push(availableRole); + }); + + + },function(error){ + console.log("RoleService.getRole failed", error); + //reloadPageOnce(); + }); + } + + $scope.fetchRoles(); + + $scope.saveRole = function() { + var exists = false,x; + for(x in $scope.availableRoles){ + if($scope.availableRoles[x].name==$scope.role.name){ + exists = true; + //$modalInstance.close({availableRoleFunctions:message.availableRoleFunctions}); + } + } + if (exists) { + confirmBoxService.showInformation( "Role already exists."); + } + else { + var uuu = conf.api.saveRole + "?role_id="+$stateParams.roleId; + var postData = { + role: $scope.role, + childRoles: $scope.role.childRoles, + roleFunctions : $scope.role.roleFunctions + }; + $http.post(uuu, JSON.stringify(postData)).then(function(res) { + // console.log('roleController::saveRole: ' + JSON.stringify(res)); + if (res && res.data && res.data.role) + confirmBoxService.showInformation("Update Successful."); + else + confirmBoxService.showInformation('Failed to create role: ' + res.data.error) + }, + function(res){ + console.log('post failed', res.data); + confirmBoxService.showInformation("Error while saving."); + } + ); + } + }; + + $scope.addNewRoleFunctionModalPopup = function() { + var modalInstance = ngDialog.open({ + templateUrl: 'app/views/role/role_functions_popup.html', + controller: 'rolepopupController', + + resolve: { + roleId: function () { + return $stateParams.roleId; + }, + role: function () { + return $scope.role; + }, + availableRoles: function () { + return $scope.ociavailableRoles; + }, + availableRoleFunctions: function () { + return $scope.ociavailableRoleFunctions; + }, + } + }); + modalInstance.closePromise.then(response => { + if($stateParams.roleId === '0'){ + return $scope.role; + }else{ + $scope.fetchRoles(); + } + // $scope.role=response.role; + }); + }; + + $scope.addNewChildRoleModalPopup = function() { + var modalInstance = ngDialog.open({ + templateUrl: 'app/views/role/role_childrole_popup.html', + controller: 'rolepopupController', + + resolve: { + roleId: function () { + return $stateParams.roleId; + }, + role: function () { + return $scope.role; + }, + availableRoles: function () { + return $scope.ociavailableRoles; + }, + availableRoleFunctions: function () { + return $scope.ociavailableRoleFunctions; + }, + } + }).closePromise.then(function(response){ + if($stateParams.roleId === '0'){ + return $scope.role; + }else{ + $scope.fetchRoles(); + } + //$scope.role=response.role; + }); + }; + + $scope.removeRoleFunction = function(roleFunction) { + confirmBoxService.confirm("You are about to remove the role function "+roleFunction.name+" from the role for "+$scope.role.name+". Do you want to continue?").then( + function(confirmed){ + var uuu = conf.api.toggleRoleRoleFunction + "?role_id=" + $stateParams.roleId; + var postData={roleFunction:roleFunction}; + if(confirmed) { + $http.post(uuu, postData).then( + function(response) { + $scope.role= response.data.role; + $.each($scope.availableRoleFunctions, function(k, c){ + if(c.code === roleFunction.code) { + c.selected = false; + } + }); + }, + function(response) { + confirmBoxService.showInformation("Error while saving."); + } + ); + } + + }); + + }; + + $scope.removeChildRole = function(childRole) { + confirmBoxService.confirm("You are about to remove the child role "+childRole.name+" from the role for "+$scope.role.name+". Do you want to continue?").then( + function(confirmed){ + var uuu = conf.api.toggleRoleChildRole + "?role_id=" + $stateParams.roleId; + var postData={childRole:childRole}; + if(confirmed) { + $http.post(uuu,postData).then( function(response) { + $scope.role=response.data.role; + $.each($scope.availableRoles, function(k, c){ + if(c.id === childRole.id) { + c.selected = false; + } + }); + }, + + function(data) { + confirmBoxService.showInformation("Error while saving."); + }); + } + }); + + }; + +}); diff --git a/ecomp-portal-FE-common/client/app/views/role/role-function-list-controller.js b/ecomp-portal-FE-common/client/app/views/role/role-function-list-controller.js index c7a1bfd8..e7195996 100644 --- a/ecomp-portal-FE-common/client/app/views/role/role-function-list-controller.js +++ b/ecomp-portal-FE-common/client/app/views/role/role-function-list-controller.js @@ -1,160 +1,160 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -app.controller('roleFunctionListController', function ($scope,RoleService,$http,$state,conf,confirmBoxService, ngDialog){ - $( "#dialog" ).hide(); - - RoleService.getRoleFunctionList().then(function(data){ - - var j = data; - $scope.data = JSON.parse(j.data); - $scope.availableRoleFunctions =JSON.parse($scope.data.availableRoleFunctions); - - //$scope.resetMenu(); - - },function(error){ - console.log("failed"); - //reloadPageOnce(); - }); - - $scope.editRoleFunction = null; - var dialog = null; - $scope.editRoleFunctionPopup = function(availableRoleFunction) { - $scope.editRoleFunction = availableRoleFunction; - $( "#dialog" ).dialog({ - modal: true - }); - }; - - $scope.editRoleFunctionModalPopup = function(availableRoleFunction) { - $scope.editRoleFunction = availableRoleFunction; - $scope.availableRoleFunctionsTemp=$scope.availableRoleFunctions; - //$scope.availableRoleFunctions={}; - var modalInstance = ngDialog.open({ - templateUrl: 'app/views/role/popup_modal_rolefunction.html', - controller: 'rolefunctionpopupController', - resolve: { - message: function () { - var message = { - availableRoleFunction: $scope.editRoleFunction, - availableRoleFunctions: $scope.availableRoleFunctionsTemp - }; - return message; - }, - isEditing: function () { - return true; - } - } - }); - modalInstance.closePromise.then(response =>{ - if(response.value!=null){ - if(response.value.result){ - $scope.availableRoleFunctions=response.value.availableRoleFunctions; - } - } - /*else - $scope.availableRoleFunctions=$scope.availableRoleFunctionsTemp; - */ - }); - }; - - $scope.addNewRoleFunctionModalPopup = function(availableRoleFunction) { - - $scope.editRoleFunction = null; - $scope.availableRoleFunctionsTemp=$scope.availableRoleFunctions; - //$scope.availableRoleFunctions={}; - var modalInstance = ngDialog.open({ - templateUrl: 'app/views/role/popup_modal_rolefunction.html', - controller: 'rolefunctionpopupController', - resolve: { - message: function () { - var message = { - availableRoleFunction: $scope.editRoleFunction, - availableRoleFunctions: $scope.availableRoleFunctionsTemp - }; - return message; - }, - isEditing: function () { - return false; - } - } - }); - modalInstance.closePromise.then(response => { - if(response.value!=null){ - if(response.value.result){ - $scope.availableRoleFunctions=response.value.availableRoleFunctions; - } - } - /* if(response.availableRoleFunctions != undefined) - $scope.availableRoleFunctions=response.availableRoleFunctions; - else - $scope.availableRoleFunctions=$scope.availableRoleFunctionsTemp; - */ - }); - }; - - $scope.addNewRoleFunctionPopup = function() { - $scope.editRoleFunction = null; - $( "#dialog" ).dialog({ - modal: true - }); - }; - - $scope.saveRoleFunction = function(availableRoleFunction) { - var uuu = conf.api.saveRoleFuncion; - var postData={availableRoleFunction: availableRoleFunction}; - $http.post(uuu,postData).then(function(response) { - var data = response.data; - $scope.availableRoleFunctions=data.availableRoleFunctions; - $scope.editRoleFunction = null; - }, - function() { - - confirmBoxService.showInformation("Error while saving"); - } - ); - }; - - - $scope.removeRole = function(availableRoleFunction) { - confirmBoxService.confirm("You are about to delete the role function "+availableRoleFunction.name+". Do you want to continue?").then( - function(confirmed){ - if(confirmed){ - $scope.availableRoleFunctionsTemp=$scope.availableRoleFunctions; - //$scope.availableRoleFunctions={}; - var uuu = conf.api.removeRoleFunction; - var postData={availableRoleFunction: availableRoleFunction}; - $http.post(uuu,postData).then(function(response) { - var data = response.data; - if(data.availableRoleFunctions == undefined) - confirmBoxService.showInformation("Error while deleting: "+ data); - else - $scope.availableRoleFunctions=data.availableRoleFunctions; - }, - function() { - $scope.availableRoleFunctions=$scope.availableRoleFunctionsTemp; - confirmBoxService.showInformation("Error while deleting: "+ data.responseText); - } - ); - } - }); - - }; - -}); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +app.controller('roleFunctionListController', function ($scope,RoleService,$http,$state,conf,confirmBoxService, ngDialog){ + $( "#dialog" ).hide(); + + RoleService.getRoleFunctionList().then(function(data){ + + var j = data; + $scope.data = JSON.parse(j.data); + $scope.availableRoleFunctions =JSON.parse($scope.data.availableRoleFunctions); + + //$scope.resetMenu(); + + },function(error){ + console.log("failed"); + //reloadPageOnce(); + }); + + $scope.editRoleFunction = null; + var dialog = null; + $scope.editRoleFunctionPopup = function(availableRoleFunction) { + $scope.editRoleFunction = availableRoleFunction; + $( "#dialog" ).dialog({ + modal: true + }); + }; + + $scope.editRoleFunctionModalPopup = function(availableRoleFunction) { + $scope.editRoleFunction = availableRoleFunction; + $scope.availableRoleFunctionsTemp=$scope.availableRoleFunctions; + //$scope.availableRoleFunctions={}; + var modalInstance = ngDialog.open({ + templateUrl: 'app/views/role/popup_modal_rolefunction.html', + controller: 'rolefunctionpopupController', + resolve: { + message: function () { + var message = { + availableRoleFunction: $scope.editRoleFunction, + availableRoleFunctions: $scope.availableRoleFunctionsTemp + }; + return message; + }, + isEditing: function () { + return true; + } + } + }); + modalInstance.closePromise.then(response =>{ + if(response.value!=null){ + if(response.value.result){ + $scope.availableRoleFunctions=response.value.availableRoleFunctions; + } + } + /*else + $scope.availableRoleFunctions=$scope.availableRoleFunctionsTemp; + */ + }); + }; + + $scope.addNewRoleFunctionModalPopup = function(availableRoleFunction) { + + $scope.editRoleFunction = null; + $scope.availableRoleFunctionsTemp=$scope.availableRoleFunctions; + //$scope.availableRoleFunctions={}; + var modalInstance = ngDialog.open({ + templateUrl: 'app/views/role/popup_modal_rolefunction.html', + controller: 'rolefunctionpopupController', + resolve: { + message: function () { + var message = { + availableRoleFunction: $scope.editRoleFunction, + availableRoleFunctions: $scope.availableRoleFunctionsTemp + }; + return message; + }, + isEditing: function () { + return false; + } + } + }); + modalInstance.closePromise.then(response => { + if(response.value!=null){ + if(response.value.result){ + $scope.availableRoleFunctions=response.value.availableRoleFunctions; + } + } + /* if(response.availableRoleFunctions != undefined) + $scope.availableRoleFunctions=response.availableRoleFunctions; + else + $scope.availableRoleFunctions=$scope.availableRoleFunctionsTemp; + */ + }); + }; + + $scope.addNewRoleFunctionPopup = function() { + $scope.editRoleFunction = null; + $( "#dialog" ).dialog({ + modal: true + }); + }; + + $scope.saveRoleFunction = function(availableRoleFunction) { + var uuu = conf.api.saveRoleFuncion; + var postData={availableRoleFunction: availableRoleFunction}; + $http.post(uuu,postData).then(function(response) { + var data = response.data; + $scope.availableRoleFunctions=data.availableRoleFunctions; + $scope.editRoleFunction = null; + }, + function() { + + confirmBoxService.showInformation("Error while saving"); + } + ); + }; + + + $scope.removeRole = function(availableRoleFunction) { + confirmBoxService.confirm("You are about to delete the role function "+availableRoleFunction.name+". Do you want to continue?").then( + function(confirmed){ + if(confirmed){ + $scope.availableRoleFunctionsTemp=$scope.availableRoleFunctions; + //$scope.availableRoleFunctions={}; + var uuu = conf.api.removeRoleFunction; + var postData={availableRoleFunction: availableRoleFunction}; + $http.post(uuu,postData).then(function(response) { + var data = response.data; + if(data.availableRoleFunctions == undefined) + confirmBoxService.showInformation("Error while deleting: "+ data); + else + $scope.availableRoleFunctions=data.availableRoleFunctions; + }, + function() { + $scope.availableRoleFunctions=$scope.availableRoleFunctionsTemp; + confirmBoxService.showInformation("Error while deleting: "+ data.responseText); + } + ); + } + }); + + }; + +}); diff --git a/ecomp-portal-FE-common/client/app/views/role/role-list-controller.js b/ecomp-portal-FE-common/client/app/views/role/role-list-controller.js index 5ef37165..2e1acf37 100644 --- a/ecomp-portal-FE-common/client/app/views/role/role-list-controller.js +++ b/ecomp-portal-FE-common/client/app/views/role/role-list-controller.js @@ -1,147 +1,147 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -app.controller('roleListController', function ($scope,RoleService,confirmBoxService,conf,$state,$http){ - $scope.showSpinner = true; - - RoleService.getRoles().then(function(data){ - $scope.showSpinner = true; - var j = data; - $scope.data = JSON.parse(j.data); - $scope.availableRoles =JSON.parse($scope.data.availableRoles); - $scope.showSpinner = false; - //$scope.resetMenu(); - - },function(error){ - console.log("failed"); - //reloadPageOnce(); - }); - - - $scope.goToUrl = function(roleIdVal) { - $state.go("root.role", {"roleId":roleIdVal}); - } - //console.log($scope.availableRoles); - $scope.toggleRole = function(selected,availableRole) { - //alert('toggleRole: '+selected); - var toggleType = null; - if(selected) { - toggleType = "activate"; - } else { - toggleType = "inactivate"; - } - - confirmBoxService.confirm("You are about to "+toggleType+" the role "+availableRole.name+". Do you want to continue?").then( - function(confirmed){ - - if(confirmed) { - var uuu = conf.api.toggleRole; - - var postData={role:availableRole}; - $http.post(uuu, postData).then(function(response) { - var data = response.data; - if (typeof data === 'object') { - console.log(data); - $scope.availableRoles=data.availableRoles; - console.log($scope.availableRoles); - } else { - // - } - - }, function(response) { - console.log(response.data); - availableRole.active=!availableRole.active; - confirmBoxService.showInformation("Error while saving."); - }); - - /* - $.ajax({ - type : 'POST', - url : uuu, - dataType: 'json', - contentType: 'application/json', - data: JSON.stringify(postData), - success : function(data){ - console.log(data); - $scope.$apply(function(){$scope.availableRoles=data.availableRoles;}); - console.log($scope.availableRoles); - }, - error : function(data){ - console.log(data); - availableRole.active=!availableRole.active; - confirmBoxService.showInformation("Error while saving."); - } - }); - */ - } - else { - availableRole.active=!availableRole.active; - } - - }); - //, - //function(){ - // availableRole.active=!availableRole.active; - //}) - - - }; - - $scope.removeRole = function(role) { - - confirmBoxService.confirm("You are about to delete the role "+role.name+". Do you want to continue?").then( - function(confirmed){ - var uuu = conf.api.removeRole; - var postData={role:role}; - /* $.ajax({ - type : 'POST', - url : uuu, - dataType: 'json', - contentType: 'application/json', - data: JSON.stringify(postData), - success : function(data){ - $scope.$apply(function(){$scope.availableRoles=data.availableRoles;}); - }, - error : function(data){ - console.log(data); - confirmBoxService.showInformation("Error while deleting: "+ data.responseText); - } - }); */ - - - $http.post(uuu, postData).then(function(response) { - var data = response.data; - if (typeof data === 'object') { - $scope.availableRoles=data.availableRoles; - } else { - // - } - - }, function(response) { - console.log(response.data); - confirmBoxService.showInformation("Error while deleting: "+ data.responseText); - }); - - }); - - - }; - - -}); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +app.controller('roleListController', function ($scope,RoleService,confirmBoxService,conf,$state,$http){ + $scope.showSpinner = true; + + RoleService.getRoles().then(function(data){ + $scope.showSpinner = true; + var j = data; + $scope.data = JSON.parse(j.data); + $scope.availableRoles =JSON.parse($scope.data.availableRoles); + $scope.showSpinner = false; + //$scope.resetMenu(); + + },function(error){ + console.log("failed"); + //reloadPageOnce(); + }); + + + $scope.goToUrl = function(roleIdVal) { + $state.go("root.role", {"roleId":roleIdVal}); + } + //console.log($scope.availableRoles); + $scope.toggleRole = function(selected,availableRole) { + //alert('toggleRole: '+selected); + var toggleType = null; + if(selected) { + toggleType = "activate"; + } else { + toggleType = "inactivate"; + } + + confirmBoxService.confirm("You are about to "+toggleType+" the role "+availableRole.name+". Do you want to continue?").then( + function(confirmed){ + + if(confirmed) { + var uuu = conf.api.toggleRole; + + var postData={role:availableRole}; + $http.post(uuu, postData).then(function(response) { + var data = response.data; + if (typeof data === 'object') { + console.log(data); + $scope.availableRoles=data.availableRoles; + console.log($scope.availableRoles); + } else { + // + } + + }, function(response) { + console.log(response.data); + availableRole.active=!availableRole.active; + confirmBoxService.showInformation("Error while saving."); + }); + + /* + $.ajax({ + type : 'POST', + url : uuu, + dataType: 'json', + contentType: 'application/json', + data: JSON.stringify(postData), + success : function(data){ + console.log(data); + $scope.$apply(function(){$scope.availableRoles=data.availableRoles;}); + console.log($scope.availableRoles); + }, + error : function(data){ + console.log(data); + availableRole.active=!availableRole.active; + confirmBoxService.showInformation("Error while saving."); + } + }); + */ + } + else { + availableRole.active=!availableRole.active; + } + + }); + //, + //function(){ + // availableRole.active=!availableRole.active; + //}) + + + }; + + $scope.removeRole = function(role) { + + confirmBoxService.confirm("You are about to delete the role "+role.name+". Do you want to continue?").then( + function(confirmed){ + var uuu = conf.api.removeRole; + var postData={role:role}; + /* $.ajax({ + type : 'POST', + url : uuu, + dataType: 'json', + contentType: 'application/json', + data: JSON.stringify(postData), + success : function(data){ + $scope.$apply(function(){$scope.availableRoles=data.availableRoles;}); + }, + error : function(data){ + console.log(data); + confirmBoxService.showInformation("Error while deleting: "+ data.responseText); + } + }); */ + + + $http.post(uuu, postData).then(function(response) { + var data = response.data; + if (typeof data === 'object') { + $scope.availableRoles=data.availableRoles; + } else { + // + } + + }, function(response) { + console.log(response.data); + confirmBoxService.showInformation("Error while deleting: "+ data.responseText); + }); + + }); + + + }; + + +}); diff --git a/ecomp-portal-FE-common/client/app/views/role/role.html b/ecomp-portal-FE-common/client/app/views/role/role.html index 42793eee..2356058d 100644 --- a/ecomp-portal-FE-common/client/app/views/role/role.html +++ b/ecomp-portal-FE-common/client/app/views/role/role.html @@ -1,96 +1,96 @@ - -
    -
    -
    -

    Role

    -
    -
    -
    -
    -

    Please edit the role details below: 


    - -
    - - -
    - - -
    -
    -
    - -
    - -
    -
    - - -
    - -
    - - - - - - - - - - - - - -
    NameRemove
    -
    -
    -
    - - Manage Role Functions

    - -
    - - -
    - -
    - - - - - - - - - - - - - -
    NameRemove
    -
    -
    -
    -
    - -
    -
    -
    + +
    +
    +
    +

    Role

    +
    +
    +
    +
    +

    Please edit the role details below: 


    + +
    + + +
    + + +
    +
    +
    + +
    + +
    +
    + + +
    + +
    + + + + + + + + + + + + + +
    NameRemove
    +
    +
    +
    + + Manage Role Functions

    + +
    + + +
    + +
    + + + + + + + + + + + + + +
    NameRemove
    +
    +
    +
    +
    + +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/role/role.less b/ecomp-portal-FE-common/client/app/views/role/role.less index 42311e64..71d240dc 100644 --- a/ecomp-portal-FE-common/client/app/views/role/role.less +++ b/ecomp-portal-FE-common/client/app/views/role/role.less @@ -1,50 +1,50 @@ -.p-info { - font-size: 18px; -} - -.input-field { - width: 250px !important; -} - -.scrolling-table { - width: 548px; - margin-left: 16px; - height:575px; - overflow:auto; -} - -.scrolling-table .scroll-viewport { - height: 200px !important; - width: 99.5% !important; - background-color: white; -} - -.scrolling-table .scroll-overview { - margin-top: -14px !important; -} - -.scrolling-table .scroll-viewport:hover { - background-color: white; -} - -.scrolling-table #portal-scroll-table-content { - height: 200px; - position: absolute !important; - width: 548px; - padding-left: 0px; - padding-top: 0px; - padding-bottom: 0px; - padding-right: 5px; -} - -.vertical .scroll-thumb { - width: 13px !important; -} - -.vertical .scroll-bar { - width: 15px !important; -} - -.scroll-bar { - border-radius: 0px !important; +.p-info { + font-size: 18px; +} + +.input-field { + width: 250px !important; +} + +.scrolling-table { + width: 548px; + margin-left: 16px; + height:575px; + overflow:auto; +} + +.scrolling-table .scroll-viewport { + height: 200px !important; + width: 99.5% !important; + background-color: white; +} + +.scrolling-table .scroll-overview { + margin-top: -14px !important; +} + +.scrolling-table .scroll-viewport:hover { + background-color: white; +} + +.scrolling-table #portal-scroll-table-content { + height: 200px; + position: absolute !important; + width: 548px; + padding-left: 0px; + padding-top: 0px; + padding-bottom: 0px; + padding-right: 5px; +} + +.vertical .scroll-thumb { + width: 13px !important; +} + +.vertical .scroll-bar { + width: 15px !important; +} + +.scroll-bar { + border-radius: 0px !important; } \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/role/role_childrole_popup.html b/ecomp-portal-FE-common/client/app/views/role/role_childrole_popup.html index 278ef2cd..e96fb062 100644 --- a/ecomp-portal-FE-common/client/app/views/role/role_childrole_popup.html +++ b/ecomp-portal-FE-common/client/app/views/role/role_childrole_popup.html @@ -1,51 +1,55 @@ - - -
    -
    Select Role Functions
    -
    - -
    - - - - - - - - - - - - - - -
    Name
    - -
    -
    -
    -
    - -
    -
    - + + +
    +
    Select Role Functions
    +
    + +
    + + + + + + + + + + + + + + +
    Name
    + +
    +
    +
    +
    + +
    +
    + diff --git a/ecomp-portal-FE-common/client/app/views/role/role_function_list.html b/ecomp-portal-FE-common/client/app/views/role/role_function_list.html index c015ee56..7c50a5ac 100644 --- a/ecomp-portal-FE-common/client/app/views/role/role_function_list.html +++ b/ecomp-portal-FE-common/client/app/views/role/role_function_list.html @@ -1,107 +1,107 @@ - - -
    -
    -
    -

    Role Functions

    -
    - - -
    - -
    - - -
    - -
    - -
    - -
    - -
    - - - - - - - - - - - - - - - - - -
    NameCodeEdit?Delete?
    - -
    -
    - -
    -
    -
    - - - -
    - - -
    - -
    -
    - -
    -
    -
    -
    - -
    -
    - - -
    - -
    -
    + + +
    +
    +
    +

    Role Functions

    +
    + + +
    + +
    + + +
    + +
    + +
    + +
    + +
    + + + + + + + + + + + + + + + + + +
    NameCodeEdit?Delete?
    + +
    +
    + +
    +
    +
    + + + +
    + + +
    + +
    +
    + +
    +
    +
    +
    + +
    +
    + + +
    + +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/role/role_functions_popup.html b/ecomp-portal-FE-common/client/app/views/role/role_functions_popup.html index 7d80d81e..52c4cb3a 100644 --- a/ecomp-portal-FE-common/client/app/views/role/role_functions_popup.html +++ b/ecomp-portal-FE-common/client/app/views/role/role_functions_popup.html @@ -1,49 +1,55 @@ - - -
    -
    Select Role Functions
    -
    -
    - - - - - - - - - - - - - - -
    Name
    - -
    -
    -
    -
    - -
    -
    + + +
    +
    Select Role Functions
    +
    +
    + + + + + + + + + + + + + + +
    Name
    + +
    +
    +
    +
    + +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/role/role_list.html b/ecomp-portal-FE-common/client/app/views/role/role_list.html index e8d56cab..74de7c23 100644 --- a/ecomp-portal-FE-common/client/app/views/role/role_list.html +++ b/ecomp-portal-FE-common/client/app/views/role/role_list.html @@ -1,55 +1,57 @@ - -
    -
    -
    -

    Roles

    -
    -
    -
    - -
    -
    - - - - - - - - - - - - - - - -
    NamePriorityActive
    -
    - -
    -
    -
    -
    -
    -
    + +
    +
    +
    +

    Roles

    +
    +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + +
    NamePriorityActiveEdit
    +
    + +
    +
    +
    +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/role/rolefunctionpopupController.js b/ecomp-portal-FE-common/client/app/views/role/rolefunctionpopupController.js index 6275c760..db5bb1b6 100644 --- a/ecomp-portal-FE-common/client/app/views/role/rolefunctionpopupController.js +++ b/ecomp-portal-FE-common/client/app/views/role/rolefunctionpopupController.js @@ -1,95 +1,95 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -app.controller('rolefunctionpopupController', function ($scope, confirmBoxService, message, $http,RoleService, conf, isEditing){ - if(message.availableRoleFunction==null) { - $scope.label='Add Role Function'; - var tempText = ""; - } - else{ - $scope.label='Edit Role Function' - $scope.disableCd=true; - var tempText = new String(message.availableRoleFunction.name); - $scope.editRoleFunction = angular.copy(message.availableRoleFunction); - } - - $scope.tempText = tempText; - $scope.isEditing = isEditing; - - $scope.saveRoleFunction = function(availableRoleFunction) { - var uuu = conf.api.saveRoleFunction; - var postData={availableRoleFunction: availableRoleFunction}; - - if(availableRoleFunction==null){ - confirmBoxService.showInformation("Please enter valid role function details."); - } - var exists = false,x; - for(x in message.availableRoleFunctions){ - console.log(message.availableRoleFunctions[x].name); - if(message.availableRoleFunctions[x].name==availableRoleFunction.name){ - confirmBoxService.showInformation("Role Function already exists."); - exists = true; - availableRoleFunction.name = $scope.tempText; - break; - } - if(!isEditing){ - if (message.availableRoleFunctions[x].code == availableRoleFunction.code) { - confirmBoxService.showInformation("Code already exists. Please create a role function with a different code to proceed."); - exists = true; - availableRoleFunction.name = $scope.tempText; - break; - } - } - } - - if(!exists && availableRoleFunction.name.trim() != '' && availableRoleFunction.code.trim() != ''){ - $http.post(uuu, JSON.stringify(postData)).then(function(res){ - console.log("data"); -// console.log(res.data); -// $scope.availableRoleFunctionsTemp = res.data.availableRoleFunctions; - RoleService.getRoleFunctionList().then(function(data){ - - var j = data; - $scope.data = JSON.parse(j.data); - $scope.availableRoleFunctions =JSON.parse($scope.data.availableRoleFunctions); - - //$scope.resetMenu(); - $scope.closeThisDialog({result: true, availableRoleFunctions: $scope.availableRoleFunctions }); - },function(error){ - console.log("failed"); - //reloadPageOnce(); - $scope.closeThisDialog(true); - }); - - - }); - - - - - } - }; - - - - $scope.close = function() { - this.closeThisDialog(true); - }; -} -); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +app.controller('rolefunctionpopupController', function ($scope, confirmBoxService, message, $http,RoleService, conf, isEditing){ + if(message.availableRoleFunction==null) { + $scope.label='Add Role Function'; + var tempText = ""; + } + else{ + $scope.label='Edit Role Function' + $scope.disableCd=true; + var tempText = new String(message.availableRoleFunction.name); + $scope.editRoleFunction = angular.copy(message.availableRoleFunction); + } + + $scope.tempText = tempText; + $scope.isEditing = isEditing; + + $scope.saveRoleFunction = function(availableRoleFunction) { + var uuu = conf.api.saveRoleFunction; + var postData={availableRoleFunction: availableRoleFunction}; + + if(availableRoleFunction==null){ + confirmBoxService.showInformation("Please enter valid role function details."); + } + var exists = false,x; + for(x in message.availableRoleFunctions){ + console.log(message.availableRoleFunctions[x].name); + if(message.availableRoleFunctions[x].name==availableRoleFunction.name){ + confirmBoxService.showInformation("Role Function already exists."); + exists = true; + availableRoleFunction.name = $scope.tempText; + break; + } + if(!isEditing){ + if (message.availableRoleFunctions[x].code == availableRoleFunction.code) { + confirmBoxService.showInformation("Code already exists. Please create a role function with a different code to proceed."); + exists = true; + availableRoleFunction.name = $scope.tempText; + break; + } + } + } + + if(!exists && availableRoleFunction.name.trim() != '' && availableRoleFunction.code.trim() != ''){ + $http.post(uuu, JSON.stringify(postData)).then(function(res){ + console.log("data"); +// console.log(res.data); +// $scope.availableRoleFunctionsTemp = res.data.availableRoleFunctions; + RoleService.getRoleFunctionList().then(function(data){ + + var j = data; + $scope.data = JSON.parse(j.data); + $scope.availableRoleFunctions =JSON.parse($scope.data.availableRoleFunctions); + + //$scope.resetMenu(); + $scope.closeThisDialog({result: true, availableRoleFunctions: $scope.availableRoleFunctions }); + },function(error){ + console.log("failed"); + //reloadPageOnce(); + $scope.closeThisDialog(true); + }); + + + }); + + + + + } + }; + + + + $scope.close = function() { + this.closeThisDialog(true); + }; +} +); diff --git a/ecomp-portal-FE-common/client/app/views/role/rolepopupmodelController.js b/ecomp-portal-FE-common/client/app/views/role/rolepopupmodelController.js index 7feb7f2f..1176e50a 100644 --- a/ecomp-portal-FE-common/client/app/views/role/rolepopupmodelController.js +++ b/ecomp-portal-FE-common/client/app/views/role/rolepopupmodelController.js @@ -1,251 +1,251 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -app.controller('rolepopupController', function ($scope, role, roleId, confirmBoxService, $http, $state, availableRoles, conf, availableRoleFunctions,ngDialog){ - - $scope.role = role; - console.log($scope.role); - if($scope.role.childRoles==null){ - $scope.role.childRoles=[]; - } - - $scope.ociavailableRoles=availableRoles; - console.log($scope.ociavailableRoles); - - $scope.availableRoles=[]; - if($scope.ociavailableRoles) - $.each($scope.ociavailableRoles, function(i, a){ - var availableRole = a; - availableRole.selected = false; - if($scope.role.childRoles){ - $.each($scope.role.childRoles, function(j, b){ - if(a.id === b.id) { - availableRole.selected = true; - } - }); - }; - $scope.availableRoles.push(availableRole); - }); - - $scope.ociavailableRoleFunctions = availableRoleFunctions; - console.log($scope.ociavailableRoleFunctions); - $scope.availableRoleFunctions = []; - if($scope.ociavailableRoleFunctions) - $.each($scope.ociavailableRoleFunctions, function(i, a){ - var availableRoleFunction = a; - availableRoleFunction.selected = false; - $.each($scope.role.roleFunctions, function(j, b){ - if(a.code === b.code) { - availableRoleFunction.selected = true; - } - }); - $scope.availableRoleFunctions.push(availableRoleFunction); - }); - //$scope.resetMenu(); - - $scope.toggleRoleFunction = function(selected,availableRoleFunction) { - //alert('toggleRole: '+selected); - - if(!selected) { - //remove role function - if(role.id==null){ - var index = $scope.role.roleFunctions.indexOf(availableRoleFunction); - if(index>=0) - $scope.role.roleFunctions.splice(index, 1); - return; - } - var uuu = conf.api.toggleRoleRoleFunction + "?role_id=" + roleId; - confirmBoxService.confirm("You are about to remove the role function "+availableRoleFunction.name+" from the role for "+$scope.role.name+". Do you want to continue?").then( - function(confirmed){ - if(confirmed) { - var postData={roleFunction:availableRoleFunction}; - $http.post(uuu, postData).then( - function(response) { - $scope.role= response.data.role; - }, - function(response) { - confirmBoxService.showInformation("Error while saving."); - } - ); - - - - - } - else { - availableRoleFunction.selected=!availableRoleFunction.selected; - } - /* - $.ajax({ - type : 'POST', - url : uuu, - dataType: 'json', - contentType: 'application/json', - data: JSON.stringify(postData), - success : function(data){ - $scope.$apply(function(){$scope.role=data.role;}); - }, - error : function(data){ - modalService.showFailure("Fail","Error while saving."); - } - }); - */ - }); - - } else { - //add role function - if(role.id==null){ - $scope.role.roleFunctions.push(availableRoleFunction); - return; - } - var uuu = conf.api.addRoleRoleFunction + "?role_id=" + roleId; - - confirmBoxService.confirm("You are about to add the role function "+availableRoleFunction.name+" to the role for "+$scope.role.name+". Do you want to continue?").then( - function(confirmed){ - if(confirmed) { - var postData={roleFunction:availableRoleFunction}; - $http.post(uuu,postData).then( function(response) { - $scope.role=response.data.role; - }, - - function(data) { - confirmBoxService.showInformation("Error while saving."); - }); - } else { - availableRoleFunction.selected=!availableRoleFunction.selected; - } - /* - $.ajax({ - type : 'POST', - url : uuu, - dataType: 'json', - contentType: 'application/json', - data: JSON.stringify(postData), - success : function(data){ - $scope.$apply(function(){$scope.role=data.role;}); - }, - error : function(data){ - modalService.showFailure("Fail","Error while saving."); - } - }); - - - }, - function(){ - availableRoleFunction.selected=!availableRoleFunction.selected; - })*/ - }); - - - } - }; - - $scope.toggleChildRole = function(selected,availableRole) { - //alert('toggleRole: '+selected); - - if(!selected) { - //remove role - if(role.id==null){ - var index = $scope.role.childRoles.indexOf(availableRole); - if(index>=0) - $scope.role.childRoles.splice(index, 1); - return; - } - var uuu = conf.api.toggleRoleChildRole +"?role_id=" + roleId; - - confirmBoxService.confirm("You are about to remove the child role "+availableRole.name+" from the role for "+$scope.role.name+". Do you want to continue?").then( - function(confirmed){ - if(confirmed) { - - var postData={childRole:availableRole}; - $http.post(uuu,postData).then(function(response) { - $scope.role=response.data.role; - }, - function(data) { - confirmBoxService.showInformation("Error while saving."); - }); - } else { - availableRole.selected=false; - } - }); - /* $.ajax({ - type : 'POST', - url : uuu, - dataType: 'json', - contentType: 'application/json', - data: JSON.stringify(postData), - success : function(data){ - console.log('role',data.role); - $scope.$apply(function(){$scope.role=data.role;}); - }, - error : function(data){ - modalService.showFailure("Fail","Error while saving."); - } - }); - */ - - - } else { - //add role - if(role.id==null){ - $scope.role.childRoles.push(availableRole); - return; - } - var uuu = conf.api.addRoleChildRole +"?role_id=" + roleId; - - confirmBoxService.confirm("You are about to add the child role "+availableRole.name+" to the role for "+$scope.role.name+". Do you want to continue?").then( - function(confirmed){ - if(confirmed) { - var postData={childRole:availableRole}; - $http.post(uuu,postData).then(function(response) { - $scope.role=response.data.role; - }, - function(data) { - confirmBoxService.showInformation("Error while saving."); - }); - } else { - availableRole.selected=false; - } - /* $.ajax({ - type : 'POST', - url : uuu, - dataType: 'json', - contentType: 'application/json', - data: JSON.stringify(postData), - success : function(data){ - $scope.$apply(function(){$scope.role=data.role;}); - }, - error : function(data){ - modalService.showFailure("Fail","Error while saving."); - } - });*/ - - }); - - - } - }; - - $scope.close = function() { - console.log('role', $scope.role); - //$modalInstance.close({role:$scope.role}); - this.closeThisDialog(true); - }; - -}); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +app.controller('rolepopupController', function ($scope, role, roleId, confirmBoxService, $http, $state, availableRoles, conf, availableRoleFunctions,ngDialog){ + + $scope.role = role; + console.log($scope.role); + if($scope.role.childRoles==null){ + $scope.role.childRoles=[]; + } + + $scope.ociavailableRoles=availableRoles; + console.log($scope.ociavailableRoles); + + $scope.availableRoles=[]; + if($scope.ociavailableRoles) + $.each($scope.ociavailableRoles, function(i, a){ + var availableRole = a; + availableRole.selected = false; + if($scope.role.childRoles){ + $.each($scope.role.childRoles, function(j, b){ + if(a.id === b.id) { + availableRole.selected = true; + } + }); + }; + $scope.availableRoles.push(availableRole); + }); + + $scope.ociavailableRoleFunctions = availableRoleFunctions; + console.log($scope.ociavailableRoleFunctions); + $scope.availableRoleFunctions = []; + if($scope.ociavailableRoleFunctions) + $.each($scope.ociavailableRoleFunctions, function(i, a){ + var availableRoleFunction = a; + availableRoleFunction.selected = false; + $.each($scope.role.roleFunctions, function(j, b){ + if(a.code === b.code) { + availableRoleFunction.selected = true; + } + }); + $scope.availableRoleFunctions.push(availableRoleFunction); + }); + //$scope.resetMenu(); + + $scope.toggleRoleFunction = function(selected,availableRoleFunction) { + //alert('toggleRole: '+selected); + + if(!selected) { + //remove role function + if(role.id==null){ + var index = $scope.role.roleFunctions.indexOf(availableRoleFunction); + if(index>=0) + $scope.role.roleFunctions.splice(index, 1); + return; + } + var uuu = conf.api.toggleRoleRoleFunction + "?role_id=" + roleId; + confirmBoxService.confirm("You are about to remove the role function "+availableRoleFunction.name+" from the role for "+$scope.role.name+". Do you want to continue?").then( + function(confirmed){ + if(confirmed) { + var postData={roleFunction:availableRoleFunction}; + $http.post(uuu, postData).then( + function(response) { + $scope.role= response.data.role; + }, + function(response) { + confirmBoxService.showInformation("Error while saving."); + } + ); + + + + + } + else { + availableRoleFunction.selected=!availableRoleFunction.selected; + } + /* + $.ajax({ + type : 'POST', + url : uuu, + dataType: 'json', + contentType: 'application/json', + data: JSON.stringify(postData), + success : function(data){ + $scope.$apply(function(){$scope.role=data.role;}); + }, + error : function(data){ + modalService.showFailure("Fail","Error while saving."); + } + }); + */ + }); + + } else { + //add role function + if(role.id==null){ + $scope.role.roleFunctions.push(availableRoleFunction); + return; + } + var uuu = conf.api.addRoleRoleFunction + "?role_id=" + roleId; + + confirmBoxService.confirm("You are about to add the role function "+availableRoleFunction.name+" to the role for "+$scope.role.name+". Do you want to continue?").then( + function(confirmed){ + if(confirmed) { + var postData={roleFunction:availableRoleFunction}; + $http.post(uuu,postData).then( function(response) { + $scope.role=response.data.role; + }, + + function(data) { + confirmBoxService.showInformation("Error while saving."); + }); + } else { + availableRoleFunction.selected=!availableRoleFunction.selected; + } + /* + $.ajax({ + type : 'POST', + url : uuu, + dataType: 'json', + contentType: 'application/json', + data: JSON.stringify(postData), + success : function(data){ + $scope.$apply(function(){$scope.role=data.role;}); + }, + error : function(data){ + modalService.showFailure("Fail","Error while saving."); + } + }); + + + }, + function(){ + availableRoleFunction.selected=!availableRoleFunction.selected; + })*/ + }); + + + } + }; + + $scope.toggleChildRole = function(selected,availableRole) { + //alert('toggleRole: '+selected); + + if(!selected) { + //remove role + if(role.id==null){ + var index = $scope.role.childRoles.indexOf(availableRole); + if(index>=0) + $scope.role.childRoles.splice(index, 1); + return; + } + var uuu = conf.api.toggleRoleChildRole +"?role_id=" + roleId; + + confirmBoxService.confirm("You are about to remove the child role "+availableRole.name+" from the role for "+$scope.role.name+". Do you want to continue?").then( + function(confirmed){ + if(confirmed) { + + var postData={childRole:availableRole}; + $http.post(uuu,postData).then(function(response) { + $scope.role=response.data.role; + }, + function(data) { + confirmBoxService.showInformation("Error while saving."); + }); + } else { + availableRole.selected=false; + } + }); + /* $.ajax({ + type : 'POST', + url : uuu, + dataType: 'json', + contentType: 'application/json', + data: JSON.stringify(postData), + success : function(data){ + console.log('role',data.role); + $scope.$apply(function(){$scope.role=data.role;}); + }, + error : function(data){ + modalService.showFailure("Fail","Error while saving."); + } + }); + */ + + + } else { + //add role + if(role.id==null){ + $scope.role.childRoles.push(availableRole); + return; + } + var uuu = conf.api.addRoleChildRole +"?role_id=" + roleId; + + confirmBoxService.confirm("You are about to add the child role "+availableRole.name+" to the role for "+$scope.role.name+". Do you want to continue?").then( + function(confirmed){ + if(confirmed) { + var postData={childRole:availableRole}; + $http.post(uuu,postData).then(function(response) { + $scope.role=response.data.role; + }, + function(data) { + confirmBoxService.showInformation("Error while saving."); + }); + } else { + availableRole.selected=false; + } + /* $.ajax({ + type : 'POST', + url : uuu, + dataType: 'json', + contentType: 'application/json', + data: JSON.stringify(postData), + success : function(data){ + $scope.$apply(function(){$scope.role=data.role;}); + }, + error : function(data){ + modalService.showFailure("Fail","Error while saving."); + } + });*/ + + }); + + + } + }; + + $scope.close = function() { + console.log('role', $scope.role); + //$modalInstance.close({role:$scope.role}); + this.closeThisDialog(true); + }; + +}); diff --git a/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.controller.js b/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.controller.js index 6d0f2d1e..63a3abb7 100644 --- a/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.controller.js +++ b/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.controller.js @@ -1,63 +1,63 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class SidebarCtrl { - constructor(applicationsService,userProfileService, $log, $rootScope) { - this.$log = $log; - this.userProfileService = userProfileService; - this.$rootScope = $rootScope; - $rootScope.isAdminPortalAdmin = false; - - - //if (bowser.msie || bowser.msedge) - // $log.debug('SidebarCtrl::init: Browser is: Internet Explorer or Edge'); - // else - // $log.debug('SidebarCtrl::init: Browser is: ' + bowser.name + ': ' + bowser.version); - - //note: this model should be retrieved from BE via sidebar specific service - userProfileService.getUserProfile() - .then(profile=> { - - if (profile.roles.indexOf('System Administrator') > -1) { - $rootScope.isAdminPortalAdmin = true; - } else { - this.$log.debug('SidebarCtrl::getUserProfile: user is not superAdmin nor admin'); - } - }); - // $log.debug('SidebarCtrl::getUserProfile: profile.roles.indexOf(superAdmin) = ' + profile.roles.indexOf('superAdmin')); - // $log.debug('SidebarCtrl::getUserProfile: profile.roles.indexOf(admin) = ' + profile.roles.indexOf('admin')); - applicationsService - .getLeftMenuItems() - .then(res=> - { - //console.log("Menu items is "+JSON.stringify(res)); - this.sidebarModel = res; - }).catch(err => { - //confirmBoxService.showInformation('There was a problem creating the menu. ' + - // 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); - $log.error('SidebarCtrl::getUserProfile: User Profile error occurred: ' + err); - }); - - } - } - SidebarCtrl.$inject = ['applicationsService','userProfileService', '$log', '$rootScope']; - angular.module('ecompApp').controller('SidebarCtrl', SidebarCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class SidebarCtrl { + constructor(applicationsService,userProfileService, $log, $rootScope) { + this.$log = $log; + this.userProfileService = userProfileService; + this.$rootScope = $rootScope; + $rootScope.isAdminPortalAdmin = false; + + + //if (bowser.msie || bowser.msedge) + // $log.debug('SidebarCtrl::init: Browser is: Internet Explorer or Edge'); + // else + // $log.debug('SidebarCtrl::init: Browser is: ' + bowser.name + ': ' + bowser.version); + + //note: this model should be retrieved from BE via sidebar specific service + userProfileService.getUserProfile() + .then(profile=> { + + if (profile.roles.indexOf('System Administrator') > -1) { + $rootScope.isAdminPortalAdmin = true; + } else { + this.$log.debug('SidebarCtrl::getUserProfile: user is not superAdmin nor admin'); + } + }); + // $log.debug('SidebarCtrl::getUserProfile: profile.roles.indexOf(superAdmin) = ' + profile.roles.indexOf('superAdmin')); + // $log.debug('SidebarCtrl::getUserProfile: profile.roles.indexOf(admin) = ' + profile.roles.indexOf('admin')); + applicationsService + .getLeftMenuItems() + .then(res=> + { + //console.log("Menu items is "+JSON.stringify(res)); + this.sidebarModel = res; + }).catch(err => { + //confirmBoxService.showInformation('There was a problem creating the menu. ' + + // 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); + $log.error('SidebarCtrl::getUserProfile: User Profile error occurred: ' + err); + }); + + } + } + SidebarCtrl.$inject = ['applicationsService','userProfileService', '$log', '$rootScope']; + angular.module('ecompApp').controller('SidebarCtrl', SidebarCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.less b/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.less index f86b5afd..97650fed 100644 --- a/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.less +++ b/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.less @@ -1,37 +1,37 @@ -/*- - * ================================================================================ - * eCOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ - .w-ecomp-sidebar { - position: relative; - left: 0; - right: 0; - top: 5px; - padding-left: 0; -} - - @media screen and (-webkit-min-device-pixel-ratio:0) -{ - .w-ecomp-sidebar { - position: relative; - left: 0; - right: 0; - top: -5px; - padding-left: 0; - } +/*- + * ================================================================================ + * eCOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ + .w-ecomp-sidebar { + position: relative; + left: 0; + right: 0; + top: 5px; + padding-left: 0; +} + + @media screen and (-webkit-min-device-pixel-ratio:0) +{ + .w-ecomp-sidebar { + position: relative; + left: 0; + right: 0; + top: -5px; + padding-left: 0; + } } \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.tpl.html b/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.tpl.html index 95492ed1..a5cbf8ff 100644 --- a/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/sidebar/sidebar.tpl.html @@ -1,20 +1,20 @@ - - + + diff --git a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.controller.js b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.controller.js index 8413382e..8c76abc2 100644 --- a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.controller.js +++ b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.controller.js @@ -1,202 +1,202 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - class ContactUsManageController { - constructor($scope,$log, message, $q, $http, conf,contactUsService,confirmBoxService) { - $scope.contactUsList=[]; - $scope.contactUsAllAppList=[]; - $scope.errMsg=''; - $scope.newContactUs ={ - app:'', - name:'', - email:'', - url:'', - desc:'' - }; - /*Get the existing contact us first, then based on the existing, filter from all apps*/ - $scope.getContactUsList = function(){ - contactUsService.getContactUs().then(res=> { - // $log.info('getting getContactUs',res.response); - if(res!=null && res.response!=null){ - for(var i=0; i { - var tableData=[]; - $scope.contactUsAllAppListTemp=[]; - // $log.info('contactUsService::getListOfApp: getting res'); - var result = (typeof(res.data) != "undefined" && res.data!=null)?res.data:null; - // $log.info('contactUsService::getListOfApp: result',result); - var res1 = result; - var realAppIndex = 0; - $scope.contactUsAllAppList.length=0; - for (var i = 1; i <= res1.length; i++) { - if (!res1[i - 1].restrictedApp) { - var okToAdd = true; - for(var j =0; j<$scope.contactUsList.length;j++){ - if(res1[i - 1].title==$scope.contactUsList[j].appName) - okToAdd=false; - } - // not allowed to add(duplicate) another entry if the app is already available in the table - if(okToAdd){ - if(res1[i - 1].title){ - $scope.contactUsAllAppList.push({ - index: realAppIndex, - title: res1[i - 1].title, - value: res1[i - 1].index - }); - } - realAppIndex = realAppIndex + 1; - } - } else { - // $log.debug('contactUsService:getAvailableApps:: Restricted/URL only App will not be used = ' + res1[i - 1].title); - } - } - }).catch(err=> { - $log.error('contactUsService:error:: ', err); - - - }).finally(() => { - //this.isLoadingTable = false; - }); - }); - } - - $scope.getContactUsList(); - - $scope.closeDialog = function(){ - $scope.closeThisDialog( $scope.widgetData); - } - - /*Add new Contact Us*/ - $scope.newContactUsFun = function(){ - if($scope.newContactUs.app.title==null || $scope.newContactUs.app.title=='' ){ - confirmBoxService.showInformation('Please select an App to add').then(isConfirmed => { - return; - }); - } - - if($scope.newContactUs.url !=null && $scope.newContactUs.url != '' && !validateUrl($scope.newContactUs.url)){ - var warningMsg = "Please enter a valid URL"; - confirmBoxService.showInformation(warningMsg).then(isConfirmed => {return;}); - return; - } - - contactUsService.addContactUs($scope.newContactUs).then(res=> { - // $log.info('contactUsService: add ContactUs successfully'); - $scope.contactUsList.length=0; - // $log.info('contactUsService: refreshing the Contact US table'); - $scope.getContactUsList(); - $scope.errMsg=''; - /* confirmBoxService.showInformation('You have added a new Contact Us item').then(isConfirmed => { });*/ - var defaultSel={ - index: 0, - title: '', - value: '' - } - $scope.newContactUs ={ - app:defaultSel, - name:'', - email:'', - url:'', - desc:'' - }; - - }).catch(err=> { - $log.error('contactUsService: addContactUs error:: ', err); - // $scope.errMsg=err; - confirmBoxService.showInformation('Add Contact Us list failed: ' + err); - - }).finally(() => { - //this.isLoadingTable = false; - }); - } - /* Edit Contact Us*/ - $scope.editContactUsFun = function(contactObj){ - // $log.info('contactUsService: edit ContactUs save successfully', contactObj); - var contactUsObj={ - appId:contactObj.appId, - appName:contactObj.appName, - description:contactObj.description, - contactName:contactObj.contactName, - contactEmail:contactObj.contactEmail, - url:contactObj.url, - }; - - contactUsService.modifyContactUs(contactUsObj).then(res=> { - // $log.info('contactUsService: edit ContactUs successfully'); - // confirmBoxService.showInformation('You have saved the changes').then(isConfirmed => {}); - $scope.errMsg=''; - - }).catch(err=> { - $log.error('contactUsService: editContactUs error:: ', err); - confirmBoxService.showInformation('Edit Contact Us list failed: ' + err); - // $scope.errMsg=err; - }).finally(() => { - //this.isLoadingTable = false; - }); - - } - - $scope.$watch('newContactUs.app.value', (newVal, oldVal) => { - for(var i=0;i<$scope.contactUsAllAppList.length;i++){ - if($scope.contactUsAllAppList[i].value==newVal){ - $scope.newContactUs.app=angular.copy($scope.contactUsAllAppList[i]);; - } - } - }); - /*del Contact Us*/ - $scope.delContactUsFun = function(appObj){ - var confirmMsg = 'Are you sure you want to delete '+appObj.appName +' from the list?' + ' Press OK to delete.'; - confirmBoxService.confirm(confirmMsg).then(function (confirmed) { - if (confirmed == true) { - contactUsService.removeContactUs(appObj.appId).then(res=> { - // $log.info('delContactUsFun: delete ContactUs successfully',res); - $scope.errMsg=''; - $scope.contactUsList.length=0; - $scope.getContactUsList(); - confirmBoxService.showInformation('Item has been deleted').then(isConfirmed => {}); - }).catch(err=> { - $log.error('contactUsService: addContactUs error:: ', err); - confirmBoxService.showInformation('Deletion failed: ' + err); - // $scope.errMsg=err; - }).finally(() => { - //this.isLoadingTable = false; - }); - } - }); - - } - - } - } - ContactUsManageController.$inject = ['$scope','$log', 'message', '$q', '$http', 'conf','contactUsService','confirmBoxService']; - angular.module('ecompApp').controller('ContactUsManageController', ContactUsManageController); - - -})(); -function validateUrl(value){ - return /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value); - } +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + class ContactUsManageController { + constructor($scope,$log, message, $q, $http, conf,contactUsService,confirmBoxService) { + $scope.contactUsList=[]; + $scope.contactUsAllAppList=[]; + $scope.errMsg=''; + $scope.newContactUs ={ + app:'', + name:'', + email:'', + url:'', + desc:'' + }; + /*Get the existing contact us first, then based on the existing, filter from all apps*/ + $scope.getContactUsList = function(){ + contactUsService.getContactUs().then(res=> { + // $log.info('getting getContactUs',res.response); + if(res!=null && res.response!=null){ + for(var i=0; i { + var tableData=[]; + $scope.contactUsAllAppListTemp=[]; + // $log.info('contactUsService::getListOfApp: getting res'); + var result = (typeof(res.data) != "undefined" && res.data!=null)?res.data:null; + // $log.info('contactUsService::getListOfApp: result',result); + var res1 = result; + var realAppIndex = 0; + $scope.contactUsAllAppList.length=0; + for (var i = 1; i <= res1.length; i++) { + if (!res1[i - 1].restrictedApp) { + var okToAdd = true; + for(var j =0; j<$scope.contactUsList.length;j++){ + if(res1[i - 1].title==$scope.contactUsList[j].appName) + okToAdd=false; + } + // not allowed to add(duplicate) another entry if the app is already available in the table + if(okToAdd){ + if(res1[i - 1].title){ + $scope.contactUsAllAppList.push({ + index: realAppIndex, + title: res1[i - 1].title, + value: res1[i - 1].index + }); + } + realAppIndex = realAppIndex + 1; + } + } else { + // $log.debug('contactUsService:getAvailableApps:: Restricted/URL only App will not be used = ' + res1[i - 1].title); + } + } + }).catch(err=> { + $log.error('contactUsService:error:: ', err); + + + }).finally(() => { + //this.isLoadingTable = false; + }); + }); + } + + $scope.getContactUsList(); + + $scope.closeDialog = function(){ + $scope.closeThisDialog( $scope.widgetData); + } + + /*Add new Contact Us*/ + $scope.newContactUsFun = function(){ + if($scope.newContactUs.app.title==null || $scope.newContactUs.app.title=='' ){ + confirmBoxService.showInformation('Please select an App to add').then(isConfirmed => { + return; + }); + } + + if($scope.newContactUs.url !=null && $scope.newContactUs.url != '' && !validateUrl($scope.newContactUs.url)){ + var warningMsg = "Please enter a valid URL"; + confirmBoxService.showInformation(warningMsg).then(isConfirmed => {return;}); + return; + } + + contactUsService.addContactUs($scope.newContactUs).then(res=> { + // $log.info('contactUsService: add ContactUs successfully'); + $scope.contactUsList.length=0; + // $log.info('contactUsService: refreshing the Contact US table'); + $scope.getContactUsList(); + $scope.errMsg=''; + /* confirmBoxService.showInformation('You have added a new Contact Us item').then(isConfirmed => { });*/ + var defaultSel={ + index: 0, + title: '', + value: '' + } + $scope.newContactUs ={ + app:defaultSel, + name:'', + email:'', + url:'', + desc:'' + }; + + }).catch(err=> { + $log.error('contactUsService: addContactUs error:: ', err); + // $scope.errMsg=err; + confirmBoxService.showInformation('Add Contact Us list failed: ' + err); + + }).finally(() => { + //this.isLoadingTable = false; + }); + } + /* Edit Contact Us*/ + $scope.editContactUsFun = function(contactObj){ + // $log.info('contactUsService: edit ContactUs save successfully', contactObj); + var contactUsObj={ + appId:contactObj.appId, + appName:contactObj.appName, + description:contactObj.description, + contactName:contactObj.contactName, + contactEmail:contactObj.contactEmail, + url:contactObj.url, + }; + + contactUsService.modifyContactUs(contactUsObj).then(res=> { + // $log.info('contactUsService: edit ContactUs successfully'); + // confirmBoxService.showInformation('You have saved the changes').then(isConfirmed => {}); + $scope.errMsg=''; + + }).catch(err=> { + $log.error('contactUsService: editContactUs error:: ', err); + confirmBoxService.showInformation('Edit Contact Us list failed: ' + err); + // $scope.errMsg=err; + }).finally(() => { + //this.isLoadingTable = false; + }); + + } + + $scope.$watch('newContactUs.app.value', (newVal, oldVal) => { + for(var i=0;i<$scope.contactUsAllAppList.length;i++){ + if($scope.contactUsAllAppList[i].value==newVal){ + $scope.newContactUs.app=angular.copy($scope.contactUsAllAppList[i]);; + } + } + }); + /*del Contact Us*/ + $scope.delContactUsFun = function(appObj){ + var confirmMsg = 'Are you sure you want to delete '+appObj.appName +' from the list?' + ' Press OK to delete.'; + confirmBoxService.confirm(confirmMsg).then(function (confirmed) { + if (confirmed == true) { + contactUsService.removeContactUs(appObj.appId).then(res=> { + // $log.info('delContactUsFun: delete ContactUs successfully',res); + $scope.errMsg=''; + $scope.contactUsList.length=0; + $scope.getContactUsList(); + confirmBoxService.showInformation('Item has been deleted').then(isConfirmed => {}); + }).catch(err=> { + $log.error('contactUsService: addContactUs error:: ', err); + confirmBoxService.showInformation('Deletion failed: ' + err); + // $scope.errMsg=err; + }).finally(() => { + //this.isLoadingTable = false; + }); + } + }); + + } + + } + } + ContactUsManageController.$inject = ['$scope','$log', 'message', '$q', '$http', 'conf','contactUsService','confirmBoxService']; + angular.module('ecompApp').controller('ContactUsManageController', ContactUsManageController); + + +})(); +function validateUrl(value){ + return /^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value); + } diff --git a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.controller.less b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.controller.less index 905f9faa..2625f32c 100644 --- a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.controller.less +++ b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.controller.less @@ -138,6 +138,24 @@ background-color: transparent; border-color: slategrey !important; width:100%; } + .mandatory-categories{ + color: #cf2a2a; + font-size: 11px; + position:absolute; + + } + .error-container{ + position: absolute; + width: 220px; + display: block; + height: 12px; + line-height: 12px; + + .err-message{ + color: @funcRed; + font-size: 10px; + } + } .glyphicon { position: relative !important; line-height: 0 !important; diff --git a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.html b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.html index c619a18a..4c8f6dee 100644 --- a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.html +++ b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us-manage/contact-us-manage.html @@ -1,180 +1,181 @@ - -
    -
    - -
    -
    Manage - Contact Us
    -
    -
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - -
    App NameContact NameContact EmailContact URLDescriptionEditDelete
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    Save - -
    -
    - -
    -
    -
    - -
    -
    -
    -

    Add Application Contact - Information

    - -
    -
    -
    -
    -
    App - Name
    - -
    -
    -
    -
    Contact - Name
    - -
    -
    -
    Contact - Email
    - -
    -
    -
    Contact - URL
    - -
    -
    -
    Description
    - -
    -
    -
    - Add - New -
    -
    - -
    - Close -
    - -
    - -
    - -
    -
    -
    -
    - - + +
    +
    + +
    +
    Manage + Contact Us
    +
    +
    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + +
    App NameContact NameContact EmailContact URLDescriptionEditDelete
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    Save + +
    +
    + +
    +
    +
    + +
    +
    +
    +

    Add Application Contact + Information

    + +
    +
    +
    +
    +
    *App Name
    + +
    + App Name is Required +
    +
    +
    +
    +
    Contact + Name
    + +
    +
    +
    Contact + Email
    + +
    +
    +
    Contact + URL
    + +
    +
    +
    Description
    + +
    +
    +
    + Add + New +
    +
    + +
    + Close +
    + +
    + +
    + +
    +
    +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.controller.js b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.controller.js index 0d39a653..eddde0d9 100644 --- a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.controller.js +++ b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.controller.js @@ -1,171 +1,171 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - - class ContactUsCtrl { - constructor($log, contactUsService, applicationsService, $modal, ngDialog, $state,$anchorScroll,$location) { - - contactUsService.getContactUSPortalDetails().then(res => { - // $log.info('ContactUsCtrl:: contactUsService getContactUSPortalDetails res',res); - // $log.info('getting res',res); - var result = (typeof(res.response) != "undefined" && res.response!=null)?res.response:null; - // $log.info('result',result); - // $log.info('done'); - var source = JSON.parse(result); - // $log.info(source); - this.ush_TicketInfoUrl = source.ush_ticket_url; - this.portalInfo_Address = source.feedback_email_address; - this.feedback_Url = source.portal_info_url; - }).catch(err=> { - $log.error('ContactUsCtrl:error:: ', err); - }).finally(() => { - }); - - let init = () => { - // $log.info('ecomp app::contact-us-controller::initializing...'); - this.appTable=[]; - this.functionalTableData=[]; - }; - init(); - - let updateContactUsTable = () => { - contactUsService.getAppsAndContacts().then(res=> { - // $log.info('ContactUsCtrl:: contactUsService getAppsAndContacts res',res); - var tableData=[]; - // $log.info('getting res',res); - var result = (typeof(res.response) != "undefined" && res.response!=null)?res.response:null; - // $log.info('result',result); - // $log.info('done'); - var source = result; - // $log.info(source); - // Drop Portal app, empty name entries - for(var i=0;i { - $log.error('ContactUsCtrl.updateContactUsTable:error:: ', err); - }) - }; - - contactUsService.getAppCategoryFunctions().then(res=> { - // $log.info('ContactUsCtrl:: contactUsService getAppCategoryFunctionsthen res',res); - var tablefunctionalData=[]; - // $log.info('getting res',res); - var result = (typeof(res.response) != "undefined" && res.response!=null)?res.response:null; - // $log.info('result',result); - // $log.info('done'); - var source = result; - // $log.info(source); - for(var i=0;i { - $log.error('ContactUsCtrl:error:: ', err); - }) - - updateContactUsTable(); - this.editContactUsModalPopup = () => { - // $log.debug('ContactUsCtrl::editContactUsModalPopup updating table data...'); - var modalInstance = ngDialog.open({ - templateUrl: 'app/views/support/contact-us/contact-us-manage/contact-us-manage.html', - controller: 'ContactUsManageController', - resolve: { - message: function message() { - var message = { - type: 'Contact', - }; - return message; - } - } - }).closePromise.then(needUpdate => { - updateContactUsTable(); - }); - }; - - this.goToSection = (id) => { - - var targetDiv = document.getElementById(id); - - var offSetHeight = 0; - for(var i=0;i d.showFlag = false); - // let index = this.appTable.findIndex(a => a.app_Id == id); - var index =-1; - for(var i=0; i -1) { - // setting the showFlag to true based on index comparing with the app_Id - this.appTable[index].showFlag = true; - $location.hash('appId'+index); - $anchorScroll(); - /* $('#contentId').animate({ - scrollTop: targetDiv.offsetTop-offSetHeight - }, 'fast');*/ - } - - }; - - // Take the user to the application on the get access page. - this.goGetAccess = (appName) => { - // $log.debug('ContactUsCtrl::goGetAccess received name ' + appName); - applicationsService.goGetAccessAppName = appName; - $state.go('root.getAccess'); - }; - - } - } - ContactUsCtrl.$inject = ['$log','contactUsService', 'applicationsService', '$modal', 'ngDialog', '$state','$anchorScroll','$location']; - angular.module('ecompApp').controller('ContactUsCtrl', ContactUsCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + + class ContactUsCtrl { + constructor($log, contactUsService, applicationsService, $modal, ngDialog, $state,$anchorScroll,$location) { + + contactUsService.getContactUSPortalDetails().then(res => { + // $log.info('ContactUsCtrl:: contactUsService getContactUSPortalDetails res',res); + // $log.info('getting res',res); + var result = (typeof(res.response) != "undefined" && res.response!=null)?res.response:null; + // $log.info('result',result); + // $log.info('done'); + var source = JSON.parse(result); + // $log.info(source); + this.ush_TicketInfoUrl = source.ush_ticket_url; + this.portalInfo_Address = source.feedback_email_address; + this.feedback_Url = source.portal_info_url; + }).catch(err=> { + $log.error('ContactUsCtrl:error:: ', err); + }).finally(() => { + }); + + let init = () => { + // $log.info('ecomp app::contact-us-controller::initializing...'); + this.appTable=[]; + this.functionalTableData=[]; + }; + init(); + + let updateContactUsTable = () => { + contactUsService.getAppsAndContacts().then(res=> { + // $log.info('ContactUsCtrl:: contactUsService getAppsAndContacts res',res); + var tableData=[]; + // $log.info('getting res',res); + var result = (typeof(res.response) != "undefined" && res.response!=null)?res.response:null; + // $log.info('result',result); + // $log.info('done'); + var source = result; + // $log.info(source); + // Drop Portal app, empty name entries + for(var i=0;i { + $log.error('ContactUsCtrl.updateContactUsTable:error:: ', err); + }) + }; + + contactUsService.getAppCategoryFunctions().then(res=> { + // $log.info('ContactUsCtrl:: contactUsService getAppCategoryFunctionsthen res',res); + var tablefunctionalData=[]; + // $log.info('getting res',res); + var result = (typeof(res.response) != "undefined" && res.response!=null)?res.response:null; + // $log.info('result',result); + // $log.info('done'); + var source = result; + // $log.info(source); + for(var i=0;i { + $log.error('ContactUsCtrl:error:: ', err); + }) + + updateContactUsTable(); + this.editContactUsModalPopup = () => { + // $log.debug('ContactUsCtrl::editContactUsModalPopup updating table data...'); + var modalInstance = ngDialog.open({ + templateUrl: 'app/views/support/contact-us/contact-us-manage/contact-us-manage.html', + controller: 'ContactUsManageController', + resolve: { + message: function message() { + var message = { + type: 'Contact', + }; + return message; + } + } + }).closePromise.then(needUpdate => { + updateContactUsTable(); + }); + }; + + this.goToSection = (id) => { + + var targetDiv = document.getElementById(id); + + var offSetHeight = 0; + for(var i=0;i d.showFlag = false); + // let index = this.appTable.findIndex(a => a.app_Id == id); + var index =-1; + for(var i=0; i -1) { + // setting the showFlag to true based on index comparing with the app_Id + this.appTable[index].showFlag = true; + $location.hash('appId'+index); + $anchorScroll(); + /* $('#contentId').animate({ + scrollTop: targetDiv.offsetTop-offSetHeight + }, 'fast');*/ + } + + }; + + // Take the user to the application on the get access page. + this.goGetAccess = (appName) => { + // $log.debug('ContactUsCtrl::goGetAccess received name ' + appName); + applicationsService.goGetAccessAppName = appName; + $state.go('root.getAccess'); + }; + + } + } + ContactUsCtrl.$inject = ['$log','contactUsService', 'applicationsService', '$modal', 'ngDialog', '$state','$anchorScroll','$location']; + angular.module('ecompApp').controller('ContactUsCtrl', ContactUsCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.controller.spec.js b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.controller.spec.js index 3841a2b3..32cc3a1f 100644 --- a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.controller.spec.js @@ -1,19 +1,19 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ diff --git a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.tpl.html b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.tpl.html index 9e96b441..444a9820 100644 --- a/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/support/contact-us/contact-us.tpl.html @@ -1,126 +1,124 @@ - -
    - -

    - - -
    Failed to communicate with the - widget microservice.
    - -
    -
      -
    • -
      -
      - -

      {{ widget.headerText}}

      -
      - ... - - - -
      -
      -
      -
      -
      -
      -
    • -
    -
    -
    -
    -
    - Add Widget -
    -   -
    - Reset Widget Layout -
    -
    - - - - diff --git a/ecomp-portal-FE-os/client/src/views/footer/footer.controller.js b/ecomp-portal-FE-os/client/src/views/footer/footer.controller.js index 34d3d960..5db3ed0f 100644 --- a/ecomp-portal-FE-os/client/src/views/footer/footer.controller.js +++ b/ecomp-portal-FE-os/client/src/views/footer/footer.controller.js @@ -1,48 +1,48 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class FooterCtrl { - constructor($scope, $rootScope, manifestService, $log) { - this.manifestService = manifestService; - this.$log = $log; - this.$scope = $scope; - this.$rootScope = $rootScope; - - $scope.buildinfo = null; - - $rootScope.showFooter = true; - $scope.date = new Date(); - - - manifestService.getManifest().then( jsonObj => { - // $log.debug('FooterCtrl.getManifest: ', JSON.stringify(jsonObj)); - $scope.buildInfo = jsonObj; - - }).catch(err=> { - $log.error('FooterCtrl::updateTableData error :',err); - }); - }; - - } - - FooterCtrl.$inject = ['$scope', '$rootScope', 'manifestService', '$log']; - angular.module('ecompApp').controller('FooterCtrl', FooterCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class FooterCtrl { + constructor($scope, $rootScope, manifestService, $log) { + this.manifestService = manifestService; + this.$log = $log; + this.$scope = $scope; + this.$rootScope = $rootScope; + + $scope.buildinfo = null; + + $rootScope.showFooter = true; + $scope.date = new Date(); + + + manifestService.getManifest().then( jsonObj => { + // $log.debug('FooterCtrl.getManifest: ', JSON.stringify(jsonObj)); + $scope.buildInfo = jsonObj; + + }).catch(err=> { + $log.error('FooterCtrl::updateTableData error :',err); + }); + }; + + } + + FooterCtrl.$inject = ['$scope', '$rootScope', 'manifestService', '$log']; + angular.module('ecompApp').controller('FooterCtrl', FooterCtrl); +})(); diff --git a/ecomp-portal-FE-os/client/src/views/footer/footer.controller.spec.js b/ecomp-portal-FE-os/client/src/views/footer/footer.controller.spec.js index 3841a2b3..32cc3a1f 100644 --- a/ecomp-portal-FE-os/client/src/views/footer/footer.controller.spec.js +++ b/ecomp-portal-FE-os/client/src/views/footer/footer.controller.spec.js @@ -1,19 +1,19 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ diff --git a/ecomp-portal-FE-os/client/src/views/footer/footer.less b/ecomp-portal-FE-os/client/src/views/footer/footer.less index 59c8622e..0004b02b 100644 --- a/ecomp-portal-FE-os/client/src/views/footer/footer.less +++ b/ecomp-portal-FE-os/client/src/views/footer/footer.less @@ -1,104 +1,104 @@ -.w-ecomp-footer { - z-index: 101; - background-color: #222; - position: absolute; - bottom: 0; - width: 100%; - height: @footer-height; - .white12r; - - a { - .white12r; - font-family: Arial; - font-size: 11px; - } - - .footer-image { - margin: auto; - - } - - .build-number { - float: right; - padding: 5px; - } - .footer-content { - align-items: center; - text-align: center; - vertical-align: middle; - display: flex; - justify-content: center; - //width: @table-width; - margin: auto; - - } - - [class*="icon-primary-"], .cssIcon-globe:before { - color: #0574ac; - display: inline-block; - font-family: 'icoPrimary' !important; - font-style: normal; - font-size: 20px; - font-weight: normal; - font-variant: normal; - height: 1em; - margin-right: 7px; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - position: relative; - speak: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - width: 1em; - } - - .footer-logo { - color: #000 !important; - } - .footerWrapper .footer-logo .logo-title { - color: #fff; - margin-left: 10px; - display: inline-block; - font-size: 25px; - margin-top: 0px; - font-family: Arial; - font-weight: normal; - } - .displayInline { - display: inline-block; - margin-left: 20px; - margin-top: 20px; - } - .footerWrapper .copyright-text { - color: #fff; - font-size: 11px; - font-family: Arial; - margin-bottom:0px; - margin-top: 15px; - line-height: 1rem; - margin-top: 20px; - margin-left: 100px; - } - .footerText { - width: 59%; - float: left; - text-align: left; - margin-left: 50px; - } - .footerLastSection { - width: 1200px; - margin: auto; - } - .build-number{ - margin-top:-14px; - margin-right: -195px; - } - .footer-link{ - text-decoration: underline; - } -} +.w-ecomp-footer { + z-index: 101; + background-color: #222; + position: absolute; + bottom: 0; + width: 100%; + height: @footer-height; + .white12r; + + a { + .white12r; + font-family: Arial; + font-size: 11px; + } + + .footer-image { + margin: auto; + + } + + .build-number { + float: right; + padding: 5px; + } + .footer-content { + align-items: center; + text-align: center; + vertical-align: middle; + display: flex; + justify-content: center; + //width: @table-width; + margin: auto; + + } + + [class*="icon-primary-"], .cssIcon-globe:before { + color: #0574ac; + display: inline-block; + font-family: 'icoPrimary' !important; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + height: 1em; + margin-right: 7px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + width: 1em; + } + + .footer-logo { + color: #000 !important; + } + .footerWrapper .footer-logo .logo-title { + color: #fff; + margin-left: 10px; + display: inline-block; + font-size: 25px; + margin-top: 0px; + font-family: Arial; + font-weight: normal; + } + .displayInline { + display: inline-block; + margin-left: 20px; + margin-top: 20px; + } + .footerWrapper .copyright-text { + color: #fff; + font-size: 11px; + font-family: Arial; + margin-bottom:0px; + margin-top: 15px; + line-height: 1rem; + margin-top: 20px; + margin-left: 100px; + } + .footerText { + width: 59%; + float: left; + text-align: left; + margin-left: 50px; + } + .footerLastSection { + width: 1200px; + margin: auto; + } + .build-number{ + margin-top:-14px; + margin-right: -195px; + } + .footer-link{ + text-decoration: underline; + } +} diff --git a/ecomp-portal-FE-os/client/src/views/footer/footer.tpl.html b/ecomp-portal-FE-os/client/src/views/footer/footer.tpl.html index a6fbdeea..37148abf 100644 --- a/ecomp-portal-FE-os/client/src/views/footer/footer.tpl.html +++ b/ecomp-portal-FE-os/client/src/views/footer/footer.tpl.html @@ -1,34 +1,34 @@ - - + + diff --git a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.controller.js b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.controller.js index 09a8e75a..140aea94 100644 --- a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.controller.js +++ b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.controller.js @@ -1,415 +1,415 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 12/20/15. - */ -'use strict'; -(function () { - class MenuDetailsModalCtrl { - constructor($scope, $log, functionalMenuService, errorMessageByCode, ECOMP_URL_REGEX,$rootScope,confirmBoxService) { - - - let newMenuModel = { - name: null, - menuId: null, - parentMenuId: null, - url: null - }; - - let getAvailableRoles = (appid) => { - this.isSaving = true; - if (appid != null) { - $log.debug("MenuDetailsModalCtrl::getAvailableRoles: About to call getManagedRolesMenu"); - functionalMenuService.getManagedRolesMenu(appid).then(rolesObj => { - $log.debug("MenuDetailsModalCtrl::getAvailableRoles: Roles returned = " + JSON.stringify(rolesObj)) - this.availableRoles = rolesObj; - this.preSelectedRoles = {roles:[]}; - - if(($scope.ngDialogData.source==='edit') && this.isMidLevelMenuItem()){ - // in Edit flow , for Midlevel menu item no need to preSelect. - this.preSelectedRoles = {roles:[]}; - }else if(!angular.isUndefined(this.menuItem.menuDetails) && - $scope.ngDialogData.source==='edit' && this.isLeafMenuItem() && - this.menuItem.menuDetails.appid!=appid) { - // in Edit flow , for LeafMenuItem, if appid changed then no need to preSelect. - this.preSelectedRoles = {roles:[]}; - }else{ - if((!angular.isUndefined(this.menuItem.menuDetails)) && - (!angular.isUndefined(this.menuItem.menuDetails.roles))){ - $log.debug('menuDetails.roles: ' + this.menuItem.menuDetails.roles); - for(var i=0; i { - $log.error("MenuDetailsModalCtrl::getAvailableRoles: error: " + err); - }); - } else { - $log.debug("MenuDetailsModalCtrl::getAvailableRoles: appid was null"); - } - }; - - let getAvailableApps = () => { - functionalMenuService.getAvailableApplications().then(apps => { - $log.debug("MenuDetailsModalCtrl::getAvailableApps: Apps returned = " + JSON.stringify(apps)) - this.availableApps = apps; - // Keep track of whether or not the selected app is disabled - if (angular.isDefined(this.selectedApp) && angular.isDefined(this.selectedApp.index)) { - for (var i = 0; i < apps.length; i++) { - if (apps[i].index === this.selectedApp.index) { - $log.debug("MenuDetailsModalCtrl::getAvailableApps: found app with index: " + this.selectedApp.index); - $log.debug("MenuDetailsModalCtrl::getAvailableApps: setting isDisabled to: " + !apps[i].enabled); - this.selectedApp.isDisabled = !apps[i].enabled; - break; - } - } - $log.debug("didn't find index: " + this.selectedApp.index); - } - })['catch'](function (err) { - confirmBoxService.showInformation('There was a problem retrieving the Applications. ' + - 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); - $log.error("MenuDetailsModalCtrl::getAvailableApps: getAvailableApps error: " + err); - }).finally(()=>{ - this.isSaving = false; - }); - }; - - let init = () => { - $log.info('MenuDetailsModalCtrl::init'); - this.saveOrContinueBtnText = "Save"; - this.isSaving = false; - this.displayRoles = $scope.ngDialogData.source==='view' ? true : false; - this.formEditable = $scope.ngDialogData.source==='view' ? false : true; - this.selectedRole = []; - this.availableRoles = []; - this.menuItem = _.clone($scope.ngDialogData.menuItem); - $log.info('MenuDetailsModalCtrl::getAvailableApps: Within init, about to check menuDetails for defined'); - if(!angular.isUndefined(this.menuItem.menuDetails) && - ($scope.ngDialogData.source==='view' || - ($scope.ngDialogData.source==='edit') && this.isLeafMenuItem() )){ - - $log.debug("MenuDetailsModalCtrl::init: menuItem: "); - $log.debug('MenuDetailsModalCtrl::init: ',this.menuItem); - this.menuItem.menu.url = this.menuItem.menuDetails.url; - this.selectedApp={}; - this.selectedApp.index = this.menuItem.menuDetails.appid; - getAvailableRoles(this.selectedApp.index); - - } - - if($scope.ngDialogData.source==='view' || $scope.ngDialogData.source==='edit'){ - this.menutitle = this.menuItem.menu.name; - this.menuLocation = this.isParentMenuItem() ? this.menuItem.menu.name : this.menuItem.menu.parent.name; - }else{ - this.menutitle = ''; - this.menuLocation = this.menuItem.menu.name; - } - // Temporarily passing 0 as dummy for getAvailableRoles incase of this.selectedApp is not there i.e., in Add flow - // getAvailableRoles(angular.isUndefined(this.selectedApp) ? 0: this.selectedApp.index ); - getAvailableApps(); - $log.debug("MenuDetailsModalCtrl::init: Menu details: " + JSON.stringify(this.menuItem.menuDetails)); - }; - - - this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; - - //This part handles conflict errors (409) - this.conflictMessages = {}; - this.scrollApi = {}; - let handleConflictErrors = err => { - if(!err.data){ - return; - } - if(!err.data.length){ //support objects - err.data = [err.data] - } - $log.debug('MenuDetailsModalCtrl::handleConflictErrors: err.data = ' + JSON.stringify(err.data)); - _.forEach(err.data, item => { - _.forEach(item.fields, field => { - //set conflict message - this.conflictMessages[field.name] = errorMessageByCode[item.errorCode]; - //set field as invalid - $log.debug('MenuDetailsModalCtrl::handleConflictErrors: fieldName = ' + field.name); - $scope.functionalMenuForm[field.name].$setValidity('conflict', false); - //set watch once to clear error after user correction - watchOnce[field.name](); - }); - }); - this.scrollApi.scrollTop(); - }; - - let resetConflict = fieldName => { - delete this.conflictMessages[fieldName]; - $log.debug('MenuDetailsModalCtrl::resetConflict: $setValidity(true) = ' + fieldName); - if($scope.functionalMenuForm[fieldName]){ - $scope.functionalMenuForm[fieldName].$setValidity('conflict', true); - } - }; - - let watchOnce = { - text: () => { - let unregisterName = $scope.$watch('functionalMenuDetails.menutitle', (newVal, oldVal) => { - // $log.debug('title:: newVal, oldVal = ' + newVal.toLowerCase() + " | " + oldVal.toLowerCase()); - if(newVal.toLowerCase() !== oldVal.toLowerCase()){ - resetConflict('text'); - unregisterName(); - } - }); - }, - url: () => { - let unregisterUrl = $scope.$watch('functionalMenuDetails.menuItem.menu.url', (newVal, oldVal) => { - if(newVal.toLowerCase() !== oldVal.toLowerCase()){ - resetConflict('url'); - unregisterUrl(); - } - }); - } - }; - - //*************************** - - this.isLeafMenuItem = () => { - return this.menuItem.menu.children.length>0 ? false : true; - }; - - this.isMidLevelMenuItem = () => { - return this.menuItem.menu.parentMenuId!=null && this.menuItem.menu.children.length>0 ? true : false; - }; - - this.isParentMenuItem = () => { - return this.menuItem.menu.parentMenuId!=null ? false : true; - }; - - this.updateSelectedApp = (appItem) => { - if (!appItem) { - return; - } - $log.debug('MenuDetailsModalCtrl::updateSelectedApp: drop down app item = ' + JSON.stringify(appItem.index)); - $log.debug("MenuDetailsModalCtrl::updateSelectedApp: appItem in updateSelectedApp: "); - $log.debug('MenuDetailsModalCtrl::updateSelectedApp: ',appItem); - this.selectedApp.isDisabled = ! appItem.enabled; - $log.debug("MenuDetailsModalCtrl::updateSelectedApp: isDisabled: "+this.selectedApp.isDisabled); - getAvailableRoles(appItem.index); - }; - - this.continue = () => { - this.displayRoles = true; - this.formEditable = false; - }; - - this.saveChanges = () => { - - //todo : form validation was commented as dialog message is kept for error validations - /*if($scope.functionalMenuForm.$invalid){ - return; - }*/ - - if(!!this.menuItem.menu.url && (angular.isUndefined(this.selectedApp) || !this.selectedApp.index>0)) { - confirmBoxService.showInformation('Please select the appropriate app, or remove the url').then(isConfirmed => {}); - return; - }else if(!this.menuItem.menu.url && !angular.isUndefined(this.selectedApp) && this.selectedApp.index>0){ - confirmBoxService.showInformation('Please enter url, or select "No Application"').then(isConfirmed => {}); - return; - }else if(!this.menutitle){ - confirmBoxService.showInformation('Please enter the Menu title').then(isConfirmed => {}); - return; - } - - this.isSaving = true; - var activeMenuItem = {}; - - if ($scope.ngDialogData.source === 'edit') { // Edit Menu Item - $log.debug('MenuDetailsModalCtrl::saveChanges: Will be saving an edit menu item'); - activeMenuItem = { - menuId:this.menuItem.menu.menuId, - column:this.menuItem.menu.column, - text:this.menutitle, - parentMenuId:this.menuItem.menu.parentMenuId, - url:this.menuItem.menu.url, - appid: angular.isUndefined(this.selectedApp) ? null:this.selectedApp.index, - roles:this.selectedRole - }; - // If we have removed the url and appid, we must remove the roles - if (!activeMenuItem.appid && !activeMenuItem.url) { - activeMenuItem.roles = null; - } - functionalMenuService.saveEditedMenuItem(activeMenuItem) - .then(() => { - $log.debug('MenuDetailsModalCtrl::saveChanges: Menu Item saved'); - $scope.closeThisDialog(true); - }).catch(err => { - if(err.status === 409){//Conflict - handleConflictErrors(err); - } else { - confirmBoxService.showInformation('There was a problem saving your change. ' + - 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); - } - $log.error('MenuDetailsModalCtrl::saveChanges: error - ',err); - }).finally(()=>{ - this.isSaving = false; - }); - - $log.debug("MenuDetailsModalCtrl::saveChanges: Edit Menu output will be: " + JSON.stringify(activeMenuItem)); - } else { // New Menu Item - $log.debug('MenuDetailsModalCtrl::saveChanges: Will be saving a New menu item'); - var newMenuItem = { - menuId:null, // this is a new menu item - column:this.menuItem.menu.column, - text:this.menutitle, - // We are creating this new menu item under the menu item that was clicked on. - parentMenuId:this.menuItem.menu.menuId, - url:this.menuItem.menu.url, - appid: angular.isUndefined(this.selectedApp) ? null:this.selectedApp.index, - roles:this.selectedRole - }; - - $log.debug("MenuDetailsModalCtrl::saveChanges: New Menu output will be: " + JSON.stringify(newMenuItem)); - functionalMenuService.saveMenuItem(newMenuItem) - .then(() => { - $log.debug('MenuDetailsModalCtrl::saveChanges: Menu Item saved'); - $scope.closeThisDialog(true); - }).catch(err => { - if(err.status === 409){//Conflict - handleConflictErrors(err); - } else { - confirmBoxService.showInformation('There was a problem saving your menu. ' + - 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); - } - $log.error('MenuDetailsModalCtrl::saveChanges error: ', err); - }).finally(()=>{ - this.isSaving = false; - }); - - } - }; - - init(); - - $scope.$on('$stateChangeStart', e => { - //Disable navigation when modal is opened - e.preventDefault(); - }); - } - } - MenuDetailsModalCtrl.$inject = ['$scope', '$log', 'functionalMenuService', 'errorMessageByCode', 'ECOMP_URL_REGEX','$rootScope','confirmBoxService']; - angular.module('ecompApp').controller('MenuDetailsModalCtrl', MenuDetailsModalCtrl); - - angular.module('ecompApp').directive('dropdownMultiselect', ['functionalMenuService',function(){ - return { - restrict: 'E', - scope: { - model: '=', - options: '=', - populated_roles: '=preSelected', - dropdownTitle: '@', - source: '=' - }, - template: "
    " + - "" + - "" + - "" + - "
    ", - controller: function ($scope) { - $scope.selectedItems = {}; - $scope.checkAll = false; - $scope.$on('availableRolesReady', function() { - init(); - }); - - function init() { - console.log('dropdownMultiselect init'); - $scope.dropdownTitle = $scope.source ==='view' ? 'View Roles' : 'Select Roles'; - console.log('$scope.populated_roles = ' + $scope.populated_roles); - } - - $scope.$watch('populated_roles', function(){ - if ($scope.populated_roles && $scope.populated_roles.length>0) { - for (var i = 0; i < $scope.populated_roles.length; i++) { - $scope.model.push($scope.populated_roles[i].roleId); - $scope.selectedItems[$scope.populated_roles[i].roleId] = true; - } - if ($scope.populated_roles.length === $scope.options.length) { - $scope.checkAll = true; - } - }else{ - deselectAll(); - } - }); - - $scope.openDropDown = function () { - - }; - - $scope.checkAllClicked = function () { - if ($scope.checkAll) { - selectAll(); - } else { - deselectAll(); - } - }; - - function selectAll() { - $scope.model = []; - $scope.selectedItems = {}; - angular.forEach($scope.options, function (option) { - $scope.model.push(option.roleId); - }); - angular.forEach($scope.model, function (id) { - $scope.selectedItems[id] = true; - }); - console.log($scope.model); - }; - - function deselectAll() { - $scope.model = []; - $scope.selectedItems = {}; - console.log($scope.model); - }; - - $scope.setSelectedItem = function (id) { - var filteredArray = []; - if ($scope.selectedItems[id] === true) { - $scope.model.push(id); - } else { - filteredArray = $scope.model.filter(function (value) { - return value != id; - }); - $scope.model = filteredArray; - $scope.checkAll = false; - } - console.log(filteredArray); - return false; - }; - - $scope.setDisable = function(source){ - return source ==='view' ? true : false; - } - } - } - }]); - -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 12/20/15. + */ +'use strict'; +(function () { + class MenuDetailsModalCtrl { + constructor($scope, $log, functionalMenuService, errorMessageByCode, ECOMP_URL_REGEX,$rootScope,confirmBoxService) { + + + let newMenuModel = { + name: null, + menuId: null, + parentMenuId: null, + url: null + }; + + let getAvailableRoles = (appid) => { + this.isSaving = true; + if (appid != null) { + $log.debug("MenuDetailsModalCtrl::getAvailableRoles: About to call getManagedRolesMenu"); + functionalMenuService.getManagedRolesMenu(appid).then(rolesObj => { + $log.debug("MenuDetailsModalCtrl::getAvailableRoles: Roles returned = " + JSON.stringify(rolesObj)) + this.availableRoles = rolesObj; + this.preSelectedRoles = {roles:[]}; + + if(($scope.ngDialogData.source==='edit') && this.isMidLevelMenuItem()){ + // in Edit flow , for Midlevel menu item no need to preSelect. + this.preSelectedRoles = {roles:[]}; + }else if(!angular.isUndefined(this.menuItem.menuDetails) && + $scope.ngDialogData.source==='edit' && this.isLeafMenuItem() && + this.menuItem.menuDetails.appid!=appid) { + // in Edit flow , for LeafMenuItem, if appid changed then no need to preSelect. + this.preSelectedRoles = {roles:[]}; + }else{ + if((!angular.isUndefined(this.menuItem.menuDetails)) && + (!angular.isUndefined(this.menuItem.menuDetails.roles))){ + $log.debug('menuDetails.roles: ' + this.menuItem.menuDetails.roles); + for(var i=0; i { + $log.error("MenuDetailsModalCtrl::getAvailableRoles: error: " + err); + }); + } else { + $log.debug("MenuDetailsModalCtrl::getAvailableRoles: appid was null"); + } + }; + + let getAvailableApps = () => { + functionalMenuService.getAvailableApplications().then(apps => { + $log.debug("MenuDetailsModalCtrl::getAvailableApps: Apps returned = " + JSON.stringify(apps)) + this.availableApps = apps; + // Keep track of whether or not the selected app is disabled + if (angular.isDefined(this.selectedApp) && angular.isDefined(this.selectedApp.index)) { + for (var i = 0; i < apps.length; i++) { + if (apps[i].index === this.selectedApp.index) { + $log.debug("MenuDetailsModalCtrl::getAvailableApps: found app with index: " + this.selectedApp.index); + $log.debug("MenuDetailsModalCtrl::getAvailableApps: setting isDisabled to: " + !apps[i].enabled); + this.selectedApp.isDisabled = !apps[i].enabled; + break; + } + } + $log.debug("didn't find index: " + this.selectedApp.index); + } + })['catch'](function (err) { + confirmBoxService.showInformation('There was a problem retrieving the Applications. ' + + 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); + $log.error("MenuDetailsModalCtrl::getAvailableApps: getAvailableApps error: " + err); + }).finally(()=>{ + this.isSaving = false; + }); + }; + + let init = () => { + $log.info('MenuDetailsModalCtrl::init'); + this.saveOrContinueBtnText = "Save"; + this.isSaving = false; + this.displayRoles = $scope.ngDialogData.source==='view' ? true : false; + this.formEditable = $scope.ngDialogData.source==='view' ? false : true; + this.selectedRole = []; + this.availableRoles = []; + this.menuItem = _.clone($scope.ngDialogData.menuItem); + $log.info('MenuDetailsModalCtrl::getAvailableApps: Within init, about to check menuDetails for defined'); + if(!angular.isUndefined(this.menuItem.menuDetails) && + ($scope.ngDialogData.source==='view' || + ($scope.ngDialogData.source==='edit') && this.isLeafMenuItem() )){ + + $log.debug("MenuDetailsModalCtrl::init: menuItem: "); + $log.debug('MenuDetailsModalCtrl::init: ',this.menuItem); + this.menuItem.menu.url = this.menuItem.menuDetails.url; + this.selectedApp={}; + this.selectedApp.index = this.menuItem.menuDetails.appid; + getAvailableRoles(this.selectedApp.index); + + } + + if($scope.ngDialogData.source==='view' || $scope.ngDialogData.source==='edit'){ + this.menutitle = this.menuItem.menu.name; + this.menuLocation = this.isParentMenuItem() ? this.menuItem.menu.name : this.menuItem.menu.parent.name; + }else{ + this.menutitle = ''; + this.menuLocation = this.menuItem.menu.name; + } + // Temporarily passing 0 as dummy for getAvailableRoles incase of this.selectedApp is not there i.e., in Add flow + // getAvailableRoles(angular.isUndefined(this.selectedApp) ? 0: this.selectedApp.index ); + getAvailableApps(); + $log.debug("MenuDetailsModalCtrl::init: Menu details: " + JSON.stringify(this.menuItem.menuDetails)); + }; + + + this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; + + //This part handles conflict errors (409) + this.conflictMessages = {}; + this.scrollApi = {}; + let handleConflictErrors = err => { + if(!err.data){ + return; + } + if(!err.data.length){ //support objects + err.data = [err.data] + } + $log.debug('MenuDetailsModalCtrl::handleConflictErrors: err.data = ' + JSON.stringify(err.data)); + _.forEach(err.data, item => { + _.forEach(item.fields, field => { + //set conflict message + this.conflictMessages[field.name] = errorMessageByCode[item.errorCode]; + //set field as invalid + $log.debug('MenuDetailsModalCtrl::handleConflictErrors: fieldName = ' + field.name); + $scope.functionalMenuForm[field.name].$setValidity('conflict', false); + //set watch once to clear error after user correction + watchOnce[field.name](); + }); + }); + this.scrollApi.scrollTop(); + }; + + let resetConflict = fieldName => { + delete this.conflictMessages[fieldName]; + $log.debug('MenuDetailsModalCtrl::resetConflict: $setValidity(true) = ' + fieldName); + if($scope.functionalMenuForm[fieldName]){ + $scope.functionalMenuForm[fieldName].$setValidity('conflict', true); + } + }; + + let watchOnce = { + text: () => { + let unregisterName = $scope.$watch('functionalMenuDetails.menutitle', (newVal, oldVal) => { + // $log.debug('title:: newVal, oldVal = ' + newVal.toLowerCase() + " | " + oldVal.toLowerCase()); + if(newVal.toLowerCase() !== oldVal.toLowerCase()){ + resetConflict('text'); + unregisterName(); + } + }); + }, + url: () => { + let unregisterUrl = $scope.$watch('functionalMenuDetails.menuItem.menu.url', (newVal, oldVal) => { + if(newVal.toLowerCase() !== oldVal.toLowerCase()){ + resetConflict('url'); + unregisterUrl(); + } + }); + } + }; + + //*************************** + + this.isLeafMenuItem = () => { + return this.menuItem.menu.children.length>0 ? false : true; + }; + + this.isMidLevelMenuItem = () => { + return this.menuItem.menu.parentMenuId!=null && this.menuItem.menu.children.length>0 ? true : false; + }; + + this.isParentMenuItem = () => { + return this.menuItem.menu.parentMenuId!=null ? false : true; + }; + + this.updateSelectedApp = (appItem) => { + if (!appItem) { + return; + } + $log.debug('MenuDetailsModalCtrl::updateSelectedApp: drop down app item = ' + JSON.stringify(appItem.index)); + $log.debug("MenuDetailsModalCtrl::updateSelectedApp: appItem in updateSelectedApp: "); + $log.debug('MenuDetailsModalCtrl::updateSelectedApp: ',appItem); + this.selectedApp.isDisabled = ! appItem.enabled; + $log.debug("MenuDetailsModalCtrl::updateSelectedApp: isDisabled: "+this.selectedApp.isDisabled); + getAvailableRoles(appItem.index); + }; + + this.continue = () => { + this.displayRoles = true; + this.formEditable = false; + }; + + this.saveChanges = () => { + + //todo : form validation was commented as dialog message is kept for error validations + /*if($scope.functionalMenuForm.$invalid){ + return; + }*/ + + if(!!this.menuItem.menu.url && (angular.isUndefined(this.selectedApp) || !this.selectedApp.index>0)) { + confirmBoxService.showInformation('Please select the appropriate app, or remove the url').then(isConfirmed => {}); + return; + }else if(!this.menuItem.menu.url && !angular.isUndefined(this.selectedApp) && this.selectedApp.index>0){ + confirmBoxService.showInformation('Please enter url, or select "No Application"').then(isConfirmed => {}); + return; + }else if(!this.menutitle){ + confirmBoxService.showInformation('Please enter the Menu title').then(isConfirmed => {}); + return; + } + + this.isSaving = true; + var activeMenuItem = {}; + + if ($scope.ngDialogData.source === 'edit') { // Edit Menu Item + $log.debug('MenuDetailsModalCtrl::saveChanges: Will be saving an edit menu item'); + activeMenuItem = { + menuId:this.menuItem.menu.menuId, + column:this.menuItem.menu.column, + text:this.menutitle, + parentMenuId:this.menuItem.menu.parentMenuId, + url:this.menuItem.menu.url, + appid: angular.isUndefined(this.selectedApp) ? null:this.selectedApp.index, + roles:this.selectedRole + }; + // If we have removed the url and appid, we must remove the roles + if (!activeMenuItem.appid && !activeMenuItem.url) { + activeMenuItem.roles = null; + } + functionalMenuService.saveEditedMenuItem(activeMenuItem) + .then(() => { + $log.debug('MenuDetailsModalCtrl::saveChanges: Menu Item saved'); + $scope.closeThisDialog(true); + }).catch(err => { + if(err.status === 409){//Conflict + handleConflictErrors(err); + } else { + confirmBoxService.showInformation('There was a problem saving your change. ' + + 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); + } + $log.error('MenuDetailsModalCtrl::saveChanges: error - ',err); + }).finally(()=>{ + this.isSaving = false; + }); + + $log.debug("MenuDetailsModalCtrl::saveChanges: Edit Menu output will be: " + JSON.stringify(activeMenuItem)); + } else { // New Menu Item + $log.debug('MenuDetailsModalCtrl::saveChanges: Will be saving a New menu item'); + var newMenuItem = { + menuId:null, // this is a new menu item + column:this.menuItem.menu.column, + text:this.menutitle, + // We are creating this new menu item under the menu item that was clicked on. + parentMenuId:this.menuItem.menu.menuId, + url:this.menuItem.menu.url, + appid: angular.isUndefined(this.selectedApp) ? null:this.selectedApp.index, + roles:this.selectedRole + }; + + $log.debug("MenuDetailsModalCtrl::saveChanges: New Menu output will be: " + JSON.stringify(newMenuItem)); + functionalMenuService.saveMenuItem(newMenuItem) + .then(() => { + $log.debug('MenuDetailsModalCtrl::saveChanges: Menu Item saved'); + $scope.closeThisDialog(true); + }).catch(err => { + if(err.status === 409){//Conflict + handleConflictErrors(err); + } else { + confirmBoxService.showInformation('There was a problem saving your menu. ' + + 'Please try again later. Error Status: '+ err.status).then(isConfirmed => {}); + } + $log.error('MenuDetailsModalCtrl::saveChanges error: ', err); + }).finally(()=>{ + this.isSaving = false; + }); + + } + }; + + init(); + + $scope.$on('$stateChangeStart', e => { + //Disable navigation when modal is opened + e.preventDefault(); + }); + } + } + MenuDetailsModalCtrl.$inject = ['$scope', '$log', 'functionalMenuService', 'errorMessageByCode', 'ECOMP_URL_REGEX','$rootScope','confirmBoxService']; + angular.module('ecompApp').controller('MenuDetailsModalCtrl', MenuDetailsModalCtrl); + + angular.module('ecompApp').directive('dropdownMultiselect', ['functionalMenuService',function(){ + return { + restrict: 'E', + scope: { + model: '=', + options: '=', + populated_roles: '=preSelected', + dropdownTitle: '@', + source: '=' + }, + template: "
    " + + "" + + "" + + "" + + "
    ", + controller: function ($scope) { + $scope.selectedItems = {}; + $scope.checkAll = false; + $scope.$on('availableRolesReady', function() { + init(); + }); + + function init() { + console.log('dropdownMultiselect init'); + $scope.dropdownTitle = $scope.source ==='view' ? 'View Roles' : 'Select Roles'; + console.log('$scope.populated_roles = ' + $scope.populated_roles); + } + + $scope.$watch('populated_roles', function(){ + if ($scope.populated_roles && $scope.populated_roles.length>0) { + for (var i = 0; i < $scope.populated_roles.length; i++) { + $scope.model.push($scope.populated_roles[i].roleId); + $scope.selectedItems[$scope.populated_roles[i].roleId] = true; + } + if ($scope.populated_roles.length === $scope.options.length) { + $scope.checkAll = true; + } + }else{ + deselectAll(); + } + }); + + $scope.openDropDown = function () { + + }; + + $scope.checkAllClicked = function () { + if ($scope.checkAll) { + selectAll(); + } else { + deselectAll(); + } + }; + + function selectAll() { + $scope.model = []; + $scope.selectedItems = {}; + angular.forEach($scope.options, function (option) { + $scope.model.push(option.roleId); + }); + angular.forEach($scope.model, function (id) { + $scope.selectedItems[id] = true; + }); + console.log($scope.model); + }; + + function deselectAll() { + $scope.model = []; + $scope.selectedItems = {}; + console.log($scope.model); + }; + + $scope.setSelectedItem = function (id) { + var filteredArray = []; + if ($scope.selectedItems[id] === true) { + $scope.model.push(id); + } else { + filteredArray = $scope.model.filter(function (value) { + return value != id; + }); + $scope.model = filteredArray; + $scope.checkAll = false; + } + console.log(filteredArray); + return false; + }; + + $scope.setDisable = function(source){ + return source ==='view' ? true : false; + } + } + } + }]); + +})(); diff --git a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.delete.modal.html b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.delete.modal.html index f5f027c3..674affa2 100644 --- a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.delete.modal.html +++ b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.delete.modal.html @@ -1,37 +1,37 @@ - -
    -
    Delete Menu Item
    - -
    -
    - -
    -
    -
    -
    -
    -
    - - - -
    -
    + +
    +
    Delete Menu Item
    + +
    +
    + +
    +
    +
    +
    +
    +
    + + + +
    +
    diff --git a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html index aebc6a52..56c3f4dc 100644 --- a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html +++ b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html @@ -1,103 +1,103 @@ - -
    -
    {{ngDialogData.title}}
    - - -
    -
    - -
    -
    Parent
    - -
    -
    -
    Title
    - -
    - -
    -
    -
    -
    -
    URL
    - - Not valid URL! -
    -
    -
    App
    -
    - -
    - - -
    -
    -
    -
    Roles
    - - -
    -
    Application is disabled
    -
    -
    -
    -
    - - - - - - - - - - -
    -
    -
    Close
    -
    -
    -
    + +
    +
    {{ngDialogData.title}}
    + + +
    +
    + +
    +
    Parent
    + +
    +
    +
    Title
    + +
    + +
    +
    +
    +
    +
    URL
    + + Not valid URL! +
    +
    +
    App
    +
    + +
    + + +
    +
    +
    +
    Roles
    + + +
    +
    Application is disabled
    +
    +
    +
    +
    + + + + + + + + + + +
    +
    +
    Close
    +
    +
    +
    diff --git a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu.controller.js b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu.controller.js index dedc1375..343c968d 100644 --- a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu.controller.js +++ b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu.controller.js @@ -1,372 +1,372 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class FunctionalMenuCtrl { - constructor($log, functionalMenuService, $scope,ngDialog, confirmBoxService) { - $log.info('FunctionalMenuCtrl init'); - - $scope.invokeDialog = () => { - // alert("click dialog"); - }; - - this.regenerateFunctionalMenuAncestors = () => { - functionalMenuService.regenerateFunctionalMenuAncestors().then(res => { - $log.debug("FunctionalMenuCtrl:regenerateFunctionalMenuAncestors::returned from regenerateFunctionalMenuAncestors API call"); - confirmBoxService.showInformation('You have successfully regenerated the menu.').then(isConfirmed => { - }); - })['catch'](function (err) { - $log.error("FunctionalMenuCtrl:regenerateFunctionalMenuAncestors:: error: " + err); - confirmBoxService.showInformation('There was an error while regenerating the menu.').then(isConfirmed => { - }); - }); - }; - - let getFunctionalMenu = () => { - this.isLoadingTable = true; - functionalMenuService.getManagedFunctionalMenu().then(res => { - - let actualData=[]; - - //Adding children and label attribute to all objects in res - for(let i = 0; i < res.length; i++){ - res[i].children=[]; - res[i].label=res[i].text; - res[i].id=res[i].text; - - } - //Adding actual child items to children array in res objects - for(let i = 0; i < res.length; i++){ - - let parentId=res[i].menuId; - for(let j = 0; j < res.length; j++){ - let childId=res[j].parentMenuId; - if(parentId===childId){ - res[i].children.push(res[j]); - - } - } - } - - // Sort the top-level menu items in order based on the column - res.sort(function(a, b) { - return a.column-b.column; - }); - - // Sort all the children in order based on the column - for(let i = 0; i < res.length; i++){ - res[i].children.sort(function(a, b){ - return a.column-b.column; - }); - } - - //Forming actual parent items - for(let i = 0; i < res.length; i++){ - let parentId=res[i].parentMenuId; - if(parentId===null){ - actualData.push(res[i]); - } - } - - $scope.treedata = actualData; - - }).catch(err => { - $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ',err); - }).finally(()=> { - this.isLoadingTable = false; - }); - - }; - - - let init = () => { - this.isLoadingTable = false; - this.functionalMenu = []; - getFunctionalMenu(); - this.searchString = ''; - - - }; - - this.filterByDropdownValue = item => { - if(this.filterByApp.value === ''){ - return true; - } - return item.appName === this.filterByApp.value; - }; - - let getDialogTitle = (source) => { - switch (source) { - case 'edit': - return "Functional Menu - Edit"; - case 'view': - return "Functional Menu - View"; - case 'add': - return "Functional Menu - Add"; - default: - return "Functional Menu"; - }; - }; - - $scope.reloadTreeStructure = (selectedItem,source) => { - getFunctionalMenu(); - }; - $scope.openMenuDetailsModal = (selectedItem,source) => { - let data = null; - let selectedMenuDetails = null; - console.log('selectedItem: ', selectedItem); - - functionalMenuService.getMenuDetails(selectedItem.menuId) - .then(function( resp ){ - selectedMenuDetails = resp; - $log.info('FunctionalMenuCtrl::openMenuDetailsModal: getMenuDetails: ', resp ); - - if(selectedItem){ - data = { - menuItem: {menu: _.clone(selectedItem),menuDetails:_.clone(selectedMenuDetails)}, - source: source, - title: getDialogTitle(source) - }; - } - ngDialog.open({ - templateUrl: 'app/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html', - controller: 'MenuDetailsModalCtrl', - controllerAs: 'functionalMenuDetails', - data: data - }).closePromise.then(needUpdate => { - if(needUpdate.value === true){ - $log.debug('FunctionalMenuCtrl::openMenuDetailsModal: updating table data...'); - if(source==="edit") { - init(); - } - } - }); - }); - }; - - - $scope.createNewMenuItem = (selectedItem,source) => { - - if(selectedItem != null && selectedItem.getLevel() >= 4){ - confirmBoxService.showInformation('You are not allowed to have a menu item at a level greater than 4.').then(isConfirmed => { - - }); - return ; - } - - let data = null; - let selectedMenuDetails = null; - functionalMenuService.getMenuDetails(selectedItem.menuId) - .then(function( resp ){ - selectedMenuDetails = resp; - - if((selectedItem.children===null || !selectedItem.children.length>0) && - (!!selectedMenuDetails.url || !!selectedMenuDetails.appid || !!selectedMenuDetails.roles)){ - confirmBoxService.showInformation('Warning: the child menu item "' + selectedItem.name + '" is already configured with an application. You can create a new mid-level menu item, and move this item under it.').then(isConfirmed => { - return; - }); - }else{ - if(selectedItem){ - data = { - menuItem: {menu: _.clone(selectedItem)}, - source:source, - title: getDialogTitle(source) - }; - } - - ngDialog.open({ - templateUrl: 'app/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html', - controller: 'MenuDetailsModalCtrl', - controllerAs: 'functionalMenuDetails', - data: data - }).closePromise.then(needUpdate => { - if(needUpdate.value === true){ - $log.debug('FunctionalMenuCtrl::getMenuDetails: updating table data...'); - init(); - //getOnboardingWidgets(); - } - }); - } - }); - }; - - $scope.deleteMenuItem = (selectedItem,source) => { - $log.info('FunctionalMenuCtrl:deleteMenuItem:: delete selectedItem: ', selectedItem); - - if(selectedItem.children!=null && selectedItem.children.length>0){ - confirmBoxService.showInformation('You are not allowed to delete a menu item that has children. You can only delete leaf menu items.').then(isConfirmed => { - - }); - }else{ - confirmBoxService.deleteItem(selectedItem.name).then(isConfirmed => { - if(isConfirmed){ - $log.info('FunctionalMenuCtrl:deleteMenuItem:: Deleting Menu Item :: name: '+selectedItem.name+'; menuId: '+selectedItem.menuId); - $log.info('FunctionalMenuCtrl:deleteMenuItem:: selectedItem: ', selectedItem); - - functionalMenuService.deleteMenuItem(selectedItem.menuId).then(() => { - //TODO:Have to splice menu item - //this.widgetsList.splice(this.widgetsList.indexOf(widget), 1); - $log.info('FunctionalMenuCtrl:deleteMenuItem:: Removed Menu Item :: '+selectedItem.name); - init(); - }).catch(err => { - $log.error(err); - }); - } - }).catch(err => { - $log.error(err); - }); - } - }; - - init(); - } - } - FunctionalMenuCtrl.$inject = ['$log', 'functionalMenuService','$scope', 'ngDialog', 'confirmBoxService']; - angular.module('ecompApp').controller('FunctionalMenuCtrl', FunctionalMenuCtrl); - - angular.module('ecompApp').directive('jqTree', ['functionalMenuService','$log','confirmBoxService',function(functionalMenuService,$log,confirmBoxService){ - return { - templateUrl: 'jqtree-tmpl.html', - link: function(scope, el, attrs){ - - var $jqTree = el.find('#jqTree').tree({ - data: scope.treedata, - autoOpen: false, - dragAndDrop: true, - onCreateLi: function(node, $li) { - $li.attr('id', node.id.replace(/\s+/g,'_')); - } - }); - - el.find('#jqTree').bind('tree.move', function(event){ - event.preventDefault(); - console.log('moved_node', event.move_info.moved_node); - console.log('target_node', event.move_info.target_node); - console.log('position', event.move_info.position); - console.log('previous_parent', event.move_info.previous_parent); - - - - if(event.move_info.target_node != null && - ((event.move_info.position === 'after' && event.move_info.target_node.getLevel() > 4) || - (event.move_info.position === 'inside' && event.move_info.target_node.getLevel() > 3))){ - confirmBoxService.showInformation('You are not allowed to have a menu item at a level greater than 4.').then(isConfirmed => { - - }); - return ; - } - - var confMsg = 'Are you sure you want to move "'+event.move_info.moved_node.name+'" ?'; - if ((event.move_info.position === "inside") && (event.move_info.target_node.url != "")) { - // If we are moving UNDER a node that has a url associated with it, warn the user - // that all the app information will be removed if they do this. - confMsg = 'Warning: You are moving "'+event.move_info.moved_node.name+'" under "'+event.move_info.target_node.name+'", which has application information associated with it. This will cause all the application information from "'+event.move_info.target_node.name+'" to be deleted.'; - } - confirmBoxService.moveMenuItem(confMsg).then(isConfirmed => { - if(isConfirmed){ - /* - { - "menuId": 129, - "column": 3, - "text": "", - "parentMenuId": 37, - "url": "", - "appid": null, - "roles": null - } - - The menuId for the menu item being moved - The column it is being moved to - The parentMenuId for the parent it is being moved under - */ - - // The target_node is the node before the position we are - // moving to. If we are moving to a lower column number, or - // to a new parent, we must adjust the column to be after - // the target_node. - var new_column = event.move_info.target_node.column; - var old_column = event.move_info.moved_node.column; - if ((event.move_info.moved_node.parentMenuId != - event.move_info.target_node.parentMenuId) || - (new_column < old_column) - ) { - new_column += 1; - } - var activeMenuItem = { - menuId:event.move_info.moved_node.menuId, - column:new_column, - text:"", - parentMenuId:event.move_info.target_node.parentMenuId, - url:"", - appid: null, - roles:null - }; - // When position is "inside", this is a special case, - // where you are moving to the first column under - // a parent. The target_node is the parent node. - // So we need to set the column to 1, and the parentMenuId to the menuId of - // the target move. - if (event.move_info.position === "inside") { - console.log("special case: target_node is parent"); - activeMenuItem.column = 1; - activeMenuItem.parentMenuId = event.move_info.target_node.menuId; - } - - - functionalMenuService.saveEditedMenuItem(activeMenuItem) - .then(() => { - $log.debug(' Menu Item moved'); - scope.reloadTreeStructure(); - }).catch(err => { - $log.error(err); - }).finally(()=>{ - }); - } - }).catch(err => { - $log.error(err); - }); - - //event.move_info.do_move(); - }); - - - $jqTree.jqTreeContextMenu(el.find('ul.dropdown-menu'), { - "view": function (node) {scope.openMenuDetailsModal(node,'view'); }, - "edit": function (node) {scope.openMenuDetailsModal(node,'edit'); }, - "delete": function (node) { scope.deleteMenuItem(node,'delete') }, - "add": function (node) { scope.createNewMenuItem(node,'add') } - }); - - scope.$watch('treedata', function(oldValue, newValue){ - if(oldValue !== newValue){ - console.log('FunctionalMenuCtrl:: Tree value has changed in some way'); - $jqTree.tree('loadData', scope.treedata); - $jqTree.tree('reload', function() { - console.log('FunctionalMenuCtrl:: Tree is reloaded'); - }); - } - }); - } - }; - }]); - -})(); - - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class FunctionalMenuCtrl { + constructor($log, functionalMenuService, $scope,ngDialog, confirmBoxService) { + $log.info('FunctionalMenuCtrl init'); + + $scope.invokeDialog = () => { + // alert("click dialog"); + }; + + this.regenerateFunctionalMenuAncestors = () => { + functionalMenuService.regenerateFunctionalMenuAncestors().then(res => { + $log.debug("FunctionalMenuCtrl:regenerateFunctionalMenuAncestors::returned from regenerateFunctionalMenuAncestors API call"); + confirmBoxService.showInformation('You have successfully regenerated the menu.').then(isConfirmed => { + }); + })['catch'](function (err) { + $log.error("FunctionalMenuCtrl:regenerateFunctionalMenuAncestors:: error: " + err); + confirmBoxService.showInformation('There was an error while regenerating the menu.').then(isConfirmed => { + }); + }); + }; + + let getFunctionalMenu = () => { + this.isLoadingTable = true; + functionalMenuService.getManagedFunctionalMenu().then(res => { + + let actualData=[]; + + //Adding children and label attribute to all objects in res + for(let i = 0; i < res.length; i++){ + res[i].children=[]; + res[i].label=res[i].text; + res[i].id=res[i].text; + + } + //Adding actual child items to children array in res objects + for(let i = 0; i < res.length; i++){ + + let parentId=res[i].menuId; + for(let j = 0; j < res.length; j++){ + let childId=res[j].parentMenuId; + if(parentId===childId){ + res[i].children.push(res[j]); + + } + } + } + + // Sort the top-level menu items in order based on the column + res.sort(function(a, b) { + return a.column-b.column; + }); + + // Sort all the children in order based on the column + for(let i = 0; i < res.length; i++){ + res[i].children.sort(function(a, b){ + return a.column-b.column; + }); + } + + //Forming actual parent items + for(let i = 0; i < res.length; i++){ + let parentId=res[i].parentMenuId; + if(parentId===null){ + actualData.push(res[i]); + } + } + + $scope.treedata = actualData; + + }).catch(err => { + $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ',err); + }).finally(()=> { + this.isLoadingTable = false; + }); + + }; + + + let init = () => { + this.isLoadingTable = false; + this.functionalMenu = []; + getFunctionalMenu(); + this.searchString = ''; + + + }; + + this.filterByDropdownValue = item => { + if(this.filterByApp.value === ''){ + return true; + } + return item.appName === this.filterByApp.value; + }; + + let getDialogTitle = (source) => { + switch (source) { + case 'edit': + return "Functional Menu - Edit"; + case 'view': + return "Functional Menu - View"; + case 'add': + return "Functional Menu - Add"; + default: + return "Functional Menu"; + }; + }; + + $scope.reloadTreeStructure = (selectedItem,source) => { + getFunctionalMenu(); + }; + $scope.openMenuDetailsModal = (selectedItem,source) => { + let data = null; + let selectedMenuDetails = null; + console.log('selectedItem: ', selectedItem); + + functionalMenuService.getMenuDetails(selectedItem.menuId) + .then(function( resp ){ + selectedMenuDetails = resp; + $log.info('FunctionalMenuCtrl::openMenuDetailsModal: getMenuDetails: ', resp ); + + if(selectedItem){ + data = { + menuItem: {menu: _.clone(selectedItem),menuDetails:_.clone(selectedMenuDetails)}, + source: source, + title: getDialogTitle(source) + }; + } + ngDialog.open({ + templateUrl: 'app/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html', + controller: 'MenuDetailsModalCtrl', + controllerAs: 'functionalMenuDetails', + data: data + }).closePromise.then(needUpdate => { + if(needUpdate.value === true){ + $log.debug('FunctionalMenuCtrl::openMenuDetailsModal: updating table data...'); + if(source==="edit") { + init(); + } + } + }); + }); + }; + + + $scope.createNewMenuItem = (selectedItem,source) => { + + if(selectedItem != null && selectedItem.getLevel() >= 4){ + confirmBoxService.showInformation('You are not allowed to have a menu item at a level greater than 4.').then(isConfirmed => { + + }); + return ; + } + + let data = null; + let selectedMenuDetails = null; + functionalMenuService.getMenuDetails(selectedItem.menuId) + .then(function( resp ){ + selectedMenuDetails = resp; + + if((selectedItem.children===null || !selectedItem.children.length>0) && + (!!selectedMenuDetails.url || !!selectedMenuDetails.appid || !!selectedMenuDetails.roles)){ + confirmBoxService.showInformation('Warning: the child menu item "' + selectedItem.name + '" is already configured with an application. You can create a new mid-level menu item, and move this item under it.').then(isConfirmed => { + return; + }); + }else{ + if(selectedItem){ + data = { + menuItem: {menu: _.clone(selectedItem)}, + source:source, + title: getDialogTitle(source) + }; + } + + ngDialog.open({ + templateUrl: 'app/views/functionalMenu/functionalMenu-dialog/menu-details.modal.html', + controller: 'MenuDetailsModalCtrl', + controllerAs: 'functionalMenuDetails', + data: data + }).closePromise.then(needUpdate => { + if(needUpdate.value === true){ + $log.debug('FunctionalMenuCtrl::getMenuDetails: updating table data...'); + init(); + //getOnboardingWidgets(); + } + }); + } + }); + }; + + $scope.deleteMenuItem = (selectedItem,source) => { + $log.info('FunctionalMenuCtrl:deleteMenuItem:: delete selectedItem: ', selectedItem); + + if(selectedItem.children!=null && selectedItem.children.length>0){ + confirmBoxService.showInformation('You are not allowed to delete a menu item that has children. You can only delete leaf menu items.').then(isConfirmed => { + + }); + }else{ + confirmBoxService.deleteItem(selectedItem.name).then(isConfirmed => { + if(isConfirmed){ + $log.info('FunctionalMenuCtrl:deleteMenuItem:: Deleting Menu Item :: name: '+selectedItem.name+'; menuId: '+selectedItem.menuId); + $log.info('FunctionalMenuCtrl:deleteMenuItem:: selectedItem: ', selectedItem); + + functionalMenuService.deleteMenuItem(selectedItem.menuId).then(() => { + //TODO:Have to splice menu item + //this.widgetsList.splice(this.widgetsList.indexOf(widget), 1); + $log.info('FunctionalMenuCtrl:deleteMenuItem:: Removed Menu Item :: '+selectedItem.name); + init(); + }).catch(err => { + $log.error(err); + }); + } + }).catch(err => { + $log.error(err); + }); + } + }; + + init(); + } + } + FunctionalMenuCtrl.$inject = ['$log', 'functionalMenuService','$scope', 'ngDialog', 'confirmBoxService']; + angular.module('ecompApp').controller('FunctionalMenuCtrl', FunctionalMenuCtrl); + + angular.module('ecompApp').directive('jqTree', ['functionalMenuService','$log','confirmBoxService',function(functionalMenuService,$log,confirmBoxService){ + return { + templateUrl: 'jqtree-tmpl.html', + link: function(scope, el, attrs){ + + var $jqTree = el.find('#jqTree').tree({ + data: scope.treedata, + autoOpen: false, + dragAndDrop: true, + onCreateLi: function(node, $li) { + $li.attr('id', node.id.replace(/\s+/g,'_')); + } + }); + + el.find('#jqTree').bind('tree.move', function(event){ + event.preventDefault(); + console.log('moved_node', event.move_info.moved_node); + console.log('target_node', event.move_info.target_node); + console.log('position', event.move_info.position); + console.log('previous_parent', event.move_info.previous_parent); + + + + if(event.move_info.target_node != null && + ((event.move_info.position === 'after' && event.move_info.target_node.getLevel() > 4) || + (event.move_info.position === 'inside' && event.move_info.target_node.getLevel() > 3))){ + confirmBoxService.showInformation('You are not allowed to have a menu item at a level greater than 4.').then(isConfirmed => { + + }); + return ; + } + + var confMsg = 'Are you sure you want to move "'+event.move_info.moved_node.name+'" ?'; + if ((event.move_info.position === "inside") && (event.move_info.target_node.url != "")) { + // If we are moving UNDER a node that has a url associated with it, warn the user + // that all the app information will be removed if they do this. + confMsg = 'Warning: You are moving "'+event.move_info.moved_node.name+'" under "'+event.move_info.target_node.name+'", which has application information associated with it. This will cause all the application information from "'+event.move_info.target_node.name+'" to be deleted.'; + } + confirmBoxService.moveMenuItem(confMsg).then(isConfirmed => { + if(isConfirmed){ + /* + { + "menuId": 129, + "column": 3, + "text": "", + "parentMenuId": 37, + "url": "", + "appid": null, + "roles": null + } + + The menuId for the menu item being moved + The column it is being moved to + The parentMenuId for the parent it is being moved under + */ + + // The target_node is the node before the position we are + // moving to. If we are moving to a lower column number, or + // to a new parent, we must adjust the column to be after + // the target_node. + var new_column = event.move_info.target_node.column; + var old_column = event.move_info.moved_node.column; + if ((event.move_info.moved_node.parentMenuId != + event.move_info.target_node.parentMenuId) || + (new_column < old_column) + ) { + new_column += 1; + } + var activeMenuItem = { + menuId:event.move_info.moved_node.menuId, + column:new_column, + text:"", + parentMenuId:event.move_info.target_node.parentMenuId, + url:"", + appid: null, + roles:null + }; + // When position is "inside", this is a special case, + // where you are moving to the first column under + // a parent. The target_node is the parent node. + // So we need to set the column to 1, and the parentMenuId to the menuId of + // the target move. + if (event.move_info.position === "inside") { + console.log("special case: target_node is parent"); + activeMenuItem.column = 1; + activeMenuItem.parentMenuId = event.move_info.target_node.menuId; + } + + + functionalMenuService.saveEditedMenuItem(activeMenuItem) + .then(() => { + $log.debug(' Menu Item moved'); + scope.reloadTreeStructure(); + }).catch(err => { + $log.error(err); + }).finally(()=>{ + }); + } + }).catch(err => { + $log.error(err); + }); + + //event.move_info.do_move(); + }); + + + $jqTree.jqTreeContextMenu(el.find('ul.dropdown-menu'), { + "view": function (node) {scope.openMenuDetailsModal(node,'view'); }, + "edit": function (node) {scope.openMenuDetailsModal(node,'edit'); }, + "delete": function (node) { scope.deleteMenuItem(node,'delete') }, + "add": function (node) { scope.createNewMenuItem(node,'add') } + }); + + scope.$watch('treedata', function(oldValue, newValue){ + if(oldValue !== newValue){ + console.log('FunctionalMenuCtrl:: Tree value has changed in some way'); + $jqTree.tree('loadData', scope.treedata); + $jqTree.tree('reload', function() { + console.log('FunctionalMenuCtrl:: Tree is reloaded'); + }); + } + }); + } + }; + }]); + +})(); + + diff --git a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu.tpl.html b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu.tpl.html index 1a1252a1..e71e7a52 100644 --- a/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu.tpl.html +++ b/ecomp-portal-FE-os/client/src/views/functionalMenu/functionalMenu.tpl.html @@ -1,46 +1,46 @@ - -
    -
    -
    -

    Edit Functional Menu

    -
    -
    -
    -
    -
    - -
    - - Click when you are done with your changes -
    -
    -
    + +
    +
    +
    +

    Edit Functional Menu

    +
    +
    +
    +
    +
    + +
    + + Click when you are done with your changes +
    +
    +
    diff --git a/ecomp-portal-FE-os/client/src/views/functionalMenu/jqTreeContextMenu.js b/ecomp-portal-FE-os/client/src/views/functionalMenu/jqTreeContextMenu.js index 6e2be32d..dba442c8 100644 --- a/ecomp-portal-FE-os/client/src/views/functionalMenu/jqTreeContextMenu.js +++ b/ecomp-portal-FE-os/client/src/views/functionalMenu/jqTreeContextMenu.js @@ -1,214 +1,214 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -(function ($) { - if (!$.fn.tree) { - throw "Error jqTree is not loaded."; - } - - $.fn.jqTreeContextMenu = function (menuElement, callbacks) { - // - // TODO: - // * Make sure the useContextMenu option is set in jqTree, either complain or set it automatically - // * Make menu fade in/out - // - var self = this; - var $el = this; - - // The jQuery object of the menu div. - var $menuEl = menuElement; - - // This hash holds all menu items that should be disabled for a specific node. - var nodeToDisabledMenuItems = {}; - - // Hide the menu div. - $menuEl.hide(); - - // Disable system context menu from beeing displayed. - $el.bind("contextmenu", function (e) { - e.preventDefault(); - return false; - }); - - // Handle the contextmenu event sent from jqTree when user clicks right mouse button. - $el.bind('tree.contextmenu', function (event) { - var x = event.click_event.pageX; - var y = event.click_event.pageY; - var yPadding = 5; - var xPadding = 5; - var menuHeight = $menuEl.height(); - var menuWidth = $menuEl.width(); - var windowHeight = $(window).height(); - var windowWidth = $(window).width(); - - if (menuHeight + y + yPadding > windowHeight) { - // Make sure the whole menu is rendered within the viewport. - y = y - menuHeight; - } - if (menuWidth + x + xPadding > windowWidth) { - // Make sure the whole menu is rendered within the viewport. - x = x - menuWidth; - } - - // Handle disabling and enabling of menu items on specific nodes. - if (Object.keys(nodeToDisabledMenuItems).length > 0) { - if (event.node.name in nodeToDisabledMenuItems) { - var nodeName = event.node.name; - var items = nodeToDisabledMenuItems[nodeName]; - if (items.length === 0) { - $menuEl.find('li').addClass('disabled'); - $menuEl.find('li > a').unbind('click'); - } else { - $menuEl.find('li > a').each(function () { - $(this).closest('li').removeClass('disabled'); - var hrefValue = $(this).attr('href'); - var value = hrefValue.slice(hrefValue.indexOf("#") + 1, hrefValue.length) - if ($.inArray(value, items) > -1) { - $(this).closest('li').addClass('disabled'); - $(this).unbind('click'); - } - }); - } - } else { - $menuEl.find('li.disabled').removeClass('disabled'); - } - } - - // Must call show before we set the offset (offset can not be set on display: none elements). - $menuEl.show(); - - $menuEl.offset({ left: x, top: y }); - - var dismissContextMenu = function () { - $(document).unbind('click.jqtreecontextmenu'); - $el.unbind('tree.click.jqtreecontextmenu'); - $menuEl.hide(); - } - // Make it possible to dismiss context menu by clicking somewhere in the document. - $(document).bind('click.jqtreecontextmenu', function () { - dismissContextMenu(); - }); - - // Dismiss context menu if another node in the tree is clicked. - $el.bind('tree.click.jqtreecontextmenu', function (e) { - dismissContextMenu(); - }); - - // Make selection follow the node that was right clicked on. - var selectedNode = $el.tree('getSelectedNode'); - if (selectedNode !== event.node) { - $el.tree('selectNode', event.node); - } - - // Handle click on menu items, if it's not disabled. - var menuItems = $menuEl.find('li:not(.disabled) a'); - if (menuItems.length !== 0) { - menuItems.unbind('click'); - menuItems.click(function (e) { - e.stopImmediatePropagation(); - dismissContextMenu(); - var hrefAnchor = e.currentTarget.attributes.href.nodeValue; - var funcKey = hrefAnchor.slice(hrefAnchor.indexOf("#") + 1, hrefAnchor.length) - var callbackFn = callbacks[funcKey]; - if (callbackFn) { - callbackFn(event.node); - } - return false; - }); - } - }); - - this.disable = function () { - if (arguments.length === 0) { - // Called as: api.disable() - $menuEl.find('li:not(.disabled)').addClass('disabled'); - $menuEl.find('li a').unbind('click'); - nodeToDisabledMenuItems = {}; - } else if (arguments.length === 1) { - // Called as: api.disable(['edit','remove']) - var items = arguments[0]; - if (typeof items !== 'object') { - return; - } - $menuEl.find('li > a').each(function () { - var hrefValue = $(this).attr('href'); - var value = hrefValue.slice(hrefValue.indexOf("#") + 1, hrefValue.length) - if ($.inArray(value, items) > -1) { - $(this).closest('li').addClass('disabled'); - $(this).unbind('click'); - } - }); - nodeToDisabledMenuItems = {}; - } else if (arguments.length === 2) { - // Called as: api.disable(nodeName, ['edit','remove']) - var nodeName = arguments[0]; - var items = arguments[1]; - nodeToDisabledMenuItems[nodeName] = items; - } - }; - - this.enable = function () { - if (arguments.length === 0) { - // Called as: api.enable() - $menuEl.find('li.disabled').removeClass('disabled'); - nodeToDisabledMenuItems = {}; - } else if (arguments.length === 1) { - // Called as: api.enable(['edit','remove']) - var items = arguments[0]; - if (typeof items !== 'object') { - return; - } - - $menuEl.find('li > a').each(function () { - var hrefValue = $(this).attr('href'); - var value = hrefValue.slice(hrefValue.indexOf("#") + 1, hrefValue.length) - if ($.inArray(value, items) > -1) { - $(this).closest('li').removeClass('disabled'); - } - }); - - nodeToDisabledMenuItems = {}; - } else if (arguments.length === 2) { - // Called as: api.enable(nodeName, ['edit','remove']) - var nodeName = arguments[0]; - var items = arguments[1]; - if (items.length === 0) { - delete nodeToDisabledMenuItems[nodeName]; - } else { - var disabledItems = nodeToDisabledMenuItems[nodeName]; - for (var i = 0; i < items.length; i++) { - var idx = disabledItems.indexOf(items[i]); - if (idx > -1) { - disabledItems.splice(idx, 1); - } - } - if (disabledItems.length === 0) { - delete nodeToDisabledMenuItems[nodeName]; - } else { - nodeToDisabledMenuItems[nodeName] = disabledItems; - } - } - if (Object.keys(nodeToDisabledMenuItems).length === 0) { - $menuEl.find('li.disabled').removeClass('disabled'); - } - } - }; - return this; - }; -} (jQuery)); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +(function ($) { + if (!$.fn.tree) { + throw "Error jqTree is not loaded."; + } + + $.fn.jqTreeContextMenu = function (menuElement, callbacks) { + // + // TODO: + // * Make sure the useContextMenu option is set in jqTree, either complain or set it automatically + // * Make menu fade in/out + // + var self = this; + var $el = this; + + // The jQuery object of the menu div. + var $menuEl = menuElement; + + // This hash holds all menu items that should be disabled for a specific node. + var nodeToDisabledMenuItems = {}; + + // Hide the menu div. + $menuEl.hide(); + + // Disable system context menu from beeing displayed. + $el.bind("contextmenu", function (e) { + e.preventDefault(); + return false; + }); + + // Handle the contextmenu event sent from jqTree when user clicks right mouse button. + $el.bind('tree.contextmenu', function (event) { + var x = event.click_event.pageX; + var y = event.click_event.pageY; + var yPadding = 5; + var xPadding = 5; + var menuHeight = $menuEl.height(); + var menuWidth = $menuEl.width(); + var windowHeight = $(window).height(); + var windowWidth = $(window).width(); + + if (menuHeight + y + yPadding > windowHeight) { + // Make sure the whole menu is rendered within the viewport. + y = y - menuHeight; + } + if (menuWidth + x + xPadding > windowWidth) { + // Make sure the whole menu is rendered within the viewport. + x = x - menuWidth; + } + + // Handle disabling and enabling of menu items on specific nodes. + if (Object.keys(nodeToDisabledMenuItems).length > 0) { + if (event.node.name in nodeToDisabledMenuItems) { + var nodeName = event.node.name; + var items = nodeToDisabledMenuItems[nodeName]; + if (items.length === 0) { + $menuEl.find('li').addClass('disabled'); + $menuEl.find('li > a').unbind('click'); + } else { + $menuEl.find('li > a').each(function () { + $(this).closest('li').removeClass('disabled'); + var hrefValue = $(this).attr('href'); + var value = hrefValue.slice(hrefValue.indexOf("#") + 1, hrefValue.length) + if ($.inArray(value, items) > -1) { + $(this).closest('li').addClass('disabled'); + $(this).unbind('click'); + } + }); + } + } else { + $menuEl.find('li.disabled').removeClass('disabled'); + } + } + + // Must call show before we set the offset (offset can not be set on display: none elements). + $menuEl.show(); + + $menuEl.offset({ left: x, top: y }); + + var dismissContextMenu = function () { + $(document).unbind('click.jqtreecontextmenu'); + $el.unbind('tree.click.jqtreecontextmenu'); + $menuEl.hide(); + } + // Make it possible to dismiss context menu by clicking somewhere in the document. + $(document).bind('click.jqtreecontextmenu', function () { + dismissContextMenu(); + }); + + // Dismiss context menu if another node in the tree is clicked. + $el.bind('tree.click.jqtreecontextmenu', function (e) { + dismissContextMenu(); + }); + + // Make selection follow the node that was right clicked on. + var selectedNode = $el.tree('getSelectedNode'); + if (selectedNode !== event.node) { + $el.tree('selectNode', event.node); + } + + // Handle click on menu items, if it's not disabled. + var menuItems = $menuEl.find('li:not(.disabled) a'); + if (menuItems.length !== 0) { + menuItems.unbind('click'); + menuItems.click(function (e) { + e.stopImmediatePropagation(); + dismissContextMenu(); + var hrefAnchor = e.currentTarget.attributes.href.nodeValue; + var funcKey = hrefAnchor.slice(hrefAnchor.indexOf("#") + 1, hrefAnchor.length) + var callbackFn = callbacks[funcKey]; + if (callbackFn) { + callbackFn(event.node); + } + return false; + }); + } + }); + + this.disable = function () { + if (arguments.length === 0) { + // Called as: api.disable() + $menuEl.find('li:not(.disabled)').addClass('disabled'); + $menuEl.find('li a').unbind('click'); + nodeToDisabledMenuItems = {}; + } else if (arguments.length === 1) { + // Called as: api.disable(['edit','remove']) + var items = arguments[0]; + if (typeof items !== 'object') { + return; + } + $menuEl.find('li > a').each(function () { + var hrefValue = $(this).attr('href'); + var value = hrefValue.slice(hrefValue.indexOf("#") + 1, hrefValue.length) + if ($.inArray(value, items) > -1) { + $(this).closest('li').addClass('disabled'); + $(this).unbind('click'); + } + }); + nodeToDisabledMenuItems = {}; + } else if (arguments.length === 2) { + // Called as: api.disable(nodeName, ['edit','remove']) + var nodeName = arguments[0]; + var items = arguments[1]; + nodeToDisabledMenuItems[nodeName] = items; + } + }; + + this.enable = function () { + if (arguments.length === 0) { + // Called as: api.enable() + $menuEl.find('li.disabled').removeClass('disabled'); + nodeToDisabledMenuItems = {}; + } else if (arguments.length === 1) { + // Called as: api.enable(['edit','remove']) + var items = arguments[0]; + if (typeof items !== 'object') { + return; + } + + $menuEl.find('li > a').each(function () { + var hrefValue = $(this).attr('href'); + var value = hrefValue.slice(hrefValue.indexOf("#") + 1, hrefValue.length) + if ($.inArray(value, items) > -1) { + $(this).closest('li').removeClass('disabled'); + } + }); + + nodeToDisabledMenuItems = {}; + } else if (arguments.length === 2) { + // Called as: api.enable(nodeName, ['edit','remove']) + var nodeName = arguments[0]; + var items = arguments[1]; + if (items.length === 0) { + delete nodeToDisabledMenuItems[nodeName]; + } else { + var disabledItems = nodeToDisabledMenuItems[nodeName]; + for (var i = 0; i < items.length; i++) { + var idx = disabledItems.indexOf(items[i]); + if (idx > -1) { + disabledItems.splice(idx, 1); + } + } + if (disabledItems.length === 0) { + delete nodeToDisabledMenuItems[nodeName]; + } else { + nodeToDisabledMenuItems[nodeName] = disabledItems; + } + } + if (Object.keys(nodeToDisabledMenuItems).length === 0) { + $menuEl.find('li.disabled').removeClass('disabled'); + } + } + }; + return this; + }; +} (jQuery)); diff --git a/ecomp-portal-FE-os/client/src/views/header/header-extension.tpl.html b/ecomp-portal-FE-os/client/src/views/header/header-extension.tpl.html new file mode 100644 index 00000000..8c7ee407 --- /dev/null +++ b/ecomp-portal-FE-os/client/src/views/header/header-extension.tpl.html @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/ecomp-portal-FE-os/client/src/views/header/header-logo.html b/ecomp-portal-FE-os/client/src/views/header/header-logo.html new file mode 100644 index 00000000..0ab0560e --- /dev/null +++ b/ecomp-portal-FE-os/client/src/views/header/header-logo.html @@ -0,0 +1 @@ + diff --git a/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.controller.js b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.controller.js new file mode 100644 index 00000000..4720e752 --- /dev/null +++ b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.controller.js @@ -0,0 +1,87 @@ +/*- + * ================================================================================ + * eCOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class EditProfileModalCtrl { + constructor($log,ngDialog,usersService,confirmBoxService,adminsService) { + this.firstName =''; + this.middleName =''; + this.lastName =''; + this.email =''; + this.loginId =''; + this.loginPwd =''; + this.confirmLoginPwd='' + this.isLoading = false; + let getUser = () => { + this.isLoading = true; + usersService.getLoggedInUser() + .then(user=> { + var data = user.response; + console.log(data); + this.firstName =data.firstName; + this.middleName =data.middleName; + this.lastName =data.lastName; + this.email =data.email; + this.loginId =data.loginId; + this.loginPwd =data.loginPassword; + this.isLoading = false; + }).catch(err=> { + $log.error('EditProfileModalCtrl.getUser:: Error retrieving ECMOP portal user: ' + err); + }); + } + getUser(); + + this.save = ()=>{ + var profileDetail ={ + firstName : this.firstName, + middleName :this.middleName, + lastName :this.lastName, + email :this.email, + loginId :this.loginId, + loginPassword :this.loginPwd + } + if (this.firstName =='' || this.lastName == '' || this.email == '' || this.loginId =='' || this.loginPwd ==''|| this.confirmLoginPwd ==''){ + var warningMsg = "Please enter a value for all fields marked with *."; + confirmBoxService.showInformation(warningMsg).then(isConfirmed => {return;}); + return; + } else if (this.loginPwd != this.confirmLoginPwd) { + var warningMsg = "Passwords do not match, please try again."; + confirmBoxService.showInformation(warningMsg).then(isConfirmed => {return;}); + return; + } else { + // check password length complexity. + var warningMsg = adminsService.isComplexPassword(this.loginPwd); + if (warningMsg != null) { + confirmBoxService.showInformation(warningMsg).then(isConfirmed => {return;}); + return; + } + } + usersService.modifyLoggedInUser(profileDetail).then(res=> { + confirmBoxService.showInformation("Profile detail updated").then(isConfirmed => {return;}); + }).catch(err=> { + $log.error('EditProfileModalCtrl.getUser:: Error retrieving ECMOP portal user: ' + err); + confirmBoxService.showInformation("Error while updating profile detail: "+ err).then(isConfirmed => {return;}); + }); + } + } + } + EditProfileModalCtrl.$inject = ['$log', 'ngDialog','usersService','confirmBoxService','adminsService']; + angular.module('ecompApp').controller('EditProfileModalCtrl', EditProfileModalCtrl); +})(); diff --git a/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.html b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.html new file mode 100644 index 00000000..cfe5a15d --- /dev/null +++ b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.html @@ -0,0 +1,69 @@ + +
    +
    +
    Profile Detail
    + + +
    +
    +
    +
    +
    *First Name
    + +
    +
    +
    Middle Name
    + +
    +
    +
    *Last Name
    + +
    +
    +
    *Email Address ID
    + +
    +
    +
    *Login ID
    + +
    +
    +
    *Login Password
    + +
    +
    +
    *Confirm Login Password
    + +
    +
    +
    +
    + + + +
    +
    +
    +
    diff --git a/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.less b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.less new file mode 100644 index 00000000..b103f304 --- /dev/null +++ b/ecomp-portal-FE-os/client/src/views/header/profile-edit-dialogs/profile-edit.modal.less @@ -0,0 +1,21 @@ +.profile-detail-modal { + height: 430px; + margin-left: 20px; + + .prodile-detail { + .title { + //.n18r; + .dGray18r; + border-bottom: @blue-active 3px solid; + + } + } + + + .profile-edit-div{ + display: inline-block; + width: 240px; + margin-left: 10px; + } +} + diff --git a/ecomp-portal-FE-os/client/src/views/search/search.controller.js b/ecomp-portal-FE-os/client/src/views/search/search.controller.js index 3c3c2a03..3cb22bfd 100644 --- a/ecomp-portal-FE-os/client/src/views/search/search.controller.js +++ b/ecomp-portal-FE-os/client/src/views/search/search.controller.js @@ -1,198 +1,198 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - - class SearchCtrl { - constructor($log, $scope, $cookies, $timeout, userProfileService, sessionService, dashboardService) { - $scope.firstName=""; - $scope.lastName=""; - - function showHideSearchSnippet() { - - setTimeout(function() { - jQuery("#mainSearchSnippet").click(); - },500); - - setTimeout(function() { - jQuery("#mainSearchText").focus(); - },1000); - } - - jQuery("#mainSearchDiv").keyup(function(event){ - if(event.keyCode == 13){ - // there is a watch on this variable which will trigger the database pull - dashboardService.searchString = jQuery("#mainSearchText").val(); - - // opens the popup - var popupDomObj = jQuery("[content='searchSnippet.html']"); - if(popupDomObj.length == 0) { - showHideSearchSnippet(); - } else { - jQuery("#mainSearchSnippet").click(); - showHideSearchSnippet(); - } - - - - } - }); - - - - } - - - } - - - class SearchSnippetCtrl { - constructor($log, $scope, $cookies, $timeout, userProfileService, sessionService, dashboardService,applicationsService, $window, $state) { - $scope.firstName=""; - $scope.lastName=""; - $scope.goToUrl = goToUrl; - $scope.dService = dashboardService; - - $scope.searchResDialog = false; - $scope.searchDialogToggle = function($event){ - var keyCode = $event.which || $event.keyCode; - if (keyCode === 13) { - $scope.searchResDialog = true; - dashboardService.searchString = jQuery("#mainSearchText").val(); - } - - } - - window.onclick = function() { - if ($scope.searchResDialog) { - $scope.searchResDialog = false; - $scope.$apply(); - } - }; - function goToUrl (item, type) { - $log.info("goToUrl called") - $log.info(item + "/" + type); - - - if(type == 'intra') { - - var intraSearcLink = ""; - var intraSpecSearcLink = intraSearcLink + encodeURIComponent(dashboardService.searchString); - $window.open(intraSpecSearcLink, '_blank'); - - } else if (type == 'extra') { - var extraSearcLink = ""; - var extraSpecSearcLink = extraSearcLink + encodeURIComponent(dashboardService.searchString); - $window.open(extraSpecSearcLink, '_blank'); - } - - let url = item.target; - let restrictedApp = item.uuid; - let getAccessState = "root.getAccess" - if (!url) { - - applicationsService.goGetAccessAppName = item.name; - if($state.current.name == getAccessState) - $state.reload(); - else - $state.go(getAccessState); - //$log.info('No url found for this application, doing nothing..'); - return; - } - - if (restrictedApp != "true") { - $window.open(url, '_blank'); - } else { - if(item.url=="root.access"){ - $state.go(url); - var tabContent = { id: new Date(), title: 'Home', url: url }; - $cookies.putObject('addTab', tabContent ); - } else { - var tabContent = { id: new Date(), title: item.name, url: url }; - $cookies.putObject('addTab', tabContent ); - } - } - - } - - function getItems(searchString) { - - var items; - var itemMap = dashboardService.getSearchAllByStringResults(searchString) - .then(res => { - $scope.items = res; - - - }).catch(err => { - $scope.items = []; - $log.error('Couldnt get search results...', err) - }); - - } - - $scope.$watch('dService.searchString', function(searchString) { - if(searchString != undefined ) - getItems(searchString); - - }); - - - - } - - - - } - - - - SearchCtrl.$inject = ['$log', '$scope', '$cookies', '$timeout','userProfileService', 'sessionService', 'dashboardService']; - SearchSnippetCtrl.$inject = ['$log', '$scope', '$cookies', '$timeout','userProfileService', 'sessionService', 'dashboardService','applicationsService', '$window','$state']; - angular.module('ecompApp').controller('searchCtrl', SearchCtrl); - angular.module('ecompApp').controller('searchSnippetCtrl', SearchSnippetCtrl); - angular.module('ecompApp').directive('searchBox', function() { - return { - restrict: "E", - templateUrl: 'app/views/search/search.tpl.html', - link: function(scope, element) { - - //var iframeId = "#tabframe-" + scope.$parent.tab.title.split(' ').join('-'); - // jQuery(iframeId).load(function() { - // alert("hello"); - // }); //.attr("src",'{{tab.content | trusted}}' ); //src='{{tab.content | trusted}}' - // jQuery(iframeId).attr('src', '{{tab.content | trusted}}'); - - //element.childNodes[0].on('load', function() { - // alert('hello'); - //}); - } - } - }); - angular.module( 'ecompApp' ).config( [ - '$compileProvider', - function( $compileProvider ) - { - $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|chrome-extension|qto):/); - } - ]); - -})(); - - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + + class SearchCtrl { + constructor($log, $scope, $cookies, $timeout, userProfileService, sessionService, dashboardService) { + $scope.firstName=""; + $scope.lastName=""; + + function showHideSearchSnippet() { + + setTimeout(function() { + jQuery("#mainSearchSnippet").click(); + },500); + + setTimeout(function() { + jQuery("#mainSearchText").focus(); + },1000); + } + + jQuery("#mainSearchDiv").keyup(function(event){ + if(event.keyCode == 13){ + // there is a watch on this variable which will trigger the database pull + dashboardService.searchString = jQuery("#mainSearchText").val(); + + // opens the popup + var popupDomObj = jQuery("[content='searchSnippet.html']"); + if(popupDomObj.length == 0) { + showHideSearchSnippet(); + } else { + jQuery("#mainSearchSnippet").click(); + showHideSearchSnippet(); + } + + + + } + }); + + + + } + + + } + + + class SearchSnippetCtrl { + constructor($log, $scope, $cookies, $timeout, userProfileService, sessionService, dashboardService,applicationsService, $window, $state) { + $scope.firstName=""; + $scope.lastName=""; + $scope.goToUrl = goToUrl; + $scope.dService = dashboardService; + + $scope.searchResDialog = false; + $scope.searchDialogToggle = function($event){ + var keyCode = $event.which || $event.keyCode; + if (keyCode === 13) { + $scope.searchResDialog = true; + dashboardService.searchString = jQuery("#mainSearchText").val(); + } + + } + + window.onclick = function() { + if ($scope.searchResDialog) { + $scope.searchResDialog = false; + $scope.$apply(); + } + }; + function goToUrl (item, type) { + $log.info("goToUrl called") + $log.info(item + "/" + type); + + + if(type == 'intra') { + + var intraSearcLink = ""; + var intraSpecSearcLink = intraSearcLink + encodeURIComponent(dashboardService.searchString); + $window.open(intraSpecSearcLink, '_blank'); + + } else if (type == 'extra') { + var extraSearcLink = ""; + var extraSpecSearcLink = extraSearcLink + encodeURIComponent(dashboardService.searchString); + $window.open(extraSpecSearcLink, '_blank'); + } + + let url = item.target; + let restrictedApp = item.uuid; + let getAccessState = "root.getAccess" + if (!url) { + + applicationsService.goGetAccessAppName = item.name; + if($state.current.name == getAccessState) + $state.reload(); + else + $state.go(getAccessState); + //$log.info('No url found for this application, doing nothing..'); + return; + } + + if (restrictedApp != "true") { + $window.open(url, '_blank'); + } else { + if(item.url=="root.access"){ + $state.go(url); + var tabContent = { id: new Date(), title: 'Home', url: url }; + $cookies.putObject('addTab', tabContent ); + } else { + var tabContent = { id: new Date(), title: item.name, url: url }; + $cookies.putObject('addTab', tabContent ); + } + } + + } + + function getItems(searchString) { + + var items; + var itemMap = dashboardService.getSearchAllByStringResults(searchString) + .then(res => { + $scope.items = res; + + + }).catch(err => { + $scope.items = []; + $log.error('Couldnt get search results...', err) + }); + + } + + $scope.$watch('dService.searchString', function(searchString) { + if(searchString != undefined ) + getItems(searchString); + + }); + + + + } + + + + } + + + + SearchCtrl.$inject = ['$log', '$scope', '$cookies', '$timeout','userProfileService', 'sessionService', 'dashboardService']; + SearchSnippetCtrl.$inject = ['$log', '$scope', '$cookies', '$timeout','userProfileService', 'sessionService', 'dashboardService','applicationsService', '$window','$state']; + angular.module('ecompApp').controller('searchCtrl', SearchCtrl); + angular.module('ecompApp').controller('searchSnippetCtrl', SearchSnippetCtrl); + angular.module('ecompApp').directive('searchBox', function() { + return { + restrict: "E", + templateUrl: 'app/views/search/search.tpl.html', + link: function(scope, element) { + + //var iframeId = "#tabframe-" + scope.$parent.tab.title.split(' ').join('-'); + // jQuery(iframeId).load(function() { + // alert("hello"); + // }); //.attr("src",'{{tab.content | trusted}}' ); //src='{{tab.content | trusted}}' + // jQuery(iframeId).attr('src', '{{tab.content | trusted}}'); + + //element.childNodes[0].on('load', function() { + // alert('hello'); + //}); + } + } + }); + angular.module( 'ecompApp' ).config( [ + '$compileProvider', + function( $compileProvider ) + { + $compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|ftp|mailto|chrome-extension|qto):/); + } + ]); + +})(); + + diff --git a/ecomp-portal-FE-os/client/src/views/search/search.controller.spec.js b/ecomp-portal-FE-os/client/src/views/search/search.controller.spec.js index 3841a2b3..32cc3a1f 100644 --- a/ecomp-portal-FE-os/client/src/views/search/search.controller.spec.js +++ b/ecomp-portal-FE-os/client/src/views/search/search.controller.spec.js @@ -1,19 +1,19 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ diff --git a/ecomp-portal-FE-os/client/src/views/support/contact-us/contact-us.aux.html b/ecomp-portal-FE-os/client/src/views/support/contact-us/contact-us.aux.html index 822c5099..c65fb69e 100644 --- a/ecomp-portal-FE-os/client/src/views/support/contact-us/contact-us.aux.html +++ b/ecomp-portal-FE-os/client/src/views/support/contact-us/contact-us.aux.html @@ -1,25 +1,25 @@ - -
    - To give feedback or report an issue - to the OpenECOMP Portal team, send email to {{contact.portalInfo_Address}}. - -
    + +
    + To give feedback or report an issue + to the OpenECOMP Portal team, send email to {{contact.portalInfo_Address}}. + +
    diff --git a/ecomp-portal-FE-os/client/src/views/support/get-access/get-accessinfo.html b/ecomp-portal-FE-os/client/src/views/support/get-access/get-accessinfo.html index a8a42c1d..33fb8a5d 100644 --- a/ecomp-portal-FE-os/client/src/views/support/get-access/get-accessinfo.html +++ b/ecomp-portal-FE-os/client/src/views/support/get-access/get-accessinfo.html @@ -1,24 +1,24 @@ - -
    - Request access for following functions by sending email to the Application's Admin. For Admin contact details, please - click here. - -
    + +
    + Request access for following functions by sending email to the Application's Admin. For Admin contact details, please + click here. + +
    diff --git a/ecomp-portal-FE-os/client/src/views/userbar/userbar.tpl.html b/ecomp-portal-FE-os/client/src/views/userbar/userbar.tpl.html index b40a1748..669de8c5 100644 --- a/ecomp-portal-FE-os/client/src/views/userbar/userbar.tpl.html +++ b/ecomp-portal-FE-os/client/src/views/userbar/userbar.tpl.html @@ -1,20 +1,20 @@ - - + + diff --git a/ecomp-portal-FE-os/pom.xml b/ecomp-portal-FE-os/pom.xml index ca811815..011a924d 100644 --- a/ecomp-portal-FE-os/pom.xml +++ b/ecomp-portal-FE-os/pom.xml @@ -1,225 +1,224 @@ - - 4.0.0 - org.openecomp.portal - ecompportal-FE-os - 1.1 - - - UTF-8 + + 4.0.0 + org.openecomp.portal + ecompportal-FE-os + 1.1 + + + UTF-8 false - false - - - - - - maven-clean-plugin - 3.0.0 - - - - ${basedir}/client/app - - - ${basedir}/.tmp - - - - - - - org.apache.maven.plugins - maven-resources-plugin - 3.0.2 - - - copy-src - generate-resources - - copy-resources - - - ${basedir}/client/app - false - ${skipcopy} - - - ${basedir}/client/src - - - - - - - copy-common - generate-resources - - copy-resources - - - ${basedir}/client/app - false - ${skipcopy} - - - ../ecomp-portal-FE-common/client/app - - - - - - - - copy-bower-components-external - generate-resources - - copy-resources - - - ${basedir}/client/bower_components_external - false - ${skipcopy} - - - ../ecomp-portal-FE-common/client/bower_components_external - - - - - - - - - - com.github.eirslett - frontend-maven-plugin - - 1.3 - - ${skipnode} - v7.5.0 - https://nodejs.org/dist/ - https://nodejs.org/dist/npm/ - ./ - - - - - install node and npm - - install-node-and-npm - - generate-resources - - - - npm install - - npm - - - generate-resources - - - install - - - - - npm install bower - - npm - - - generate-resources - - - install bower - - - - - npm install grunt-cli - - npm - - - generate-resources - - - install grunt-cli - - - - - bower install - - bower - - - - install --allow-root - - - - - grunt build - - grunt - - - generate-resources - - - build --env=integ - - - - - - - - - \ No newline at end of file + false + + + + + + maven-clean-plugin + 3.0.0 + + + + ${basedir}/client/app + + + ${basedir}/.tmp + + + + + + + org.apache.maven.plugins + maven-resources-plugin + 3.0.2 + + + copy-src + generate-resources + + copy-resources + + + ${basedir}/client/app + false + ${skipcopy} + + + ${basedir}/client/src + + + + + + + copy-common + generate-resources + + copy-resources + + + ${basedir}/client/app + false + ${skipcopy} + + + ../ecomp-portal-FE-common/client/app + + + + + + + copy-bower-components-external + generate-resources + + copy-resources + + + ${basedir}/client/bower_components_external + false + ${skipcopy} + + + ../ecomp-portal-FE-common/client/bower_components_external + + + + + + + + + + com.github.eirslett + frontend-maven-plugin + + 1.3 + + ${skipnode} + v7.5.0 + https://nodejs.org/dist/ + https://nodejs.org/dist/npm/ + ./ + + + + + install node and npm + + install-node-and-npm + + generate-resources + + + + npm install + + npm + + + generate-resources + + + install + + + + + npm install bower + + npm + + + generate-resources + + + install bower + + + + + npm install grunt-cli + + npm + + + generate-resources + + + install grunt-cli + + + + + bower install + + bower + + + + install --allow-root + + + + + grunt build + + grunt + + + generate-resources + + + build --env=integ + + + + + + + + + diff --git a/ecomp-portal-widget-ms/.gitignore b/ecomp-portal-widget-ms/.gitignore new file mode 100644 index 00000000..172a425c --- /dev/null +++ b/ecomp-portal-widget-ms/.gitignore @@ -0,0 +1,39 @@ +.classpath +.project +/bin/ +target/ +logs/ +DEV_HOME_IS_UNDEFINED/ +!.mvn/wrapper/maven-wrapper.jar + +### STS ### +.apt_generated +.factorypath +.settings +.springBeans + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +nbproject/private/ +build/ +nbbuild/ +dist/ +nbdist/ +.nb-gradle/ + +/target/ +/catalina.base_IS_UNDEFINED/ +.mvn +.settings/ +.springBeans +bin/ +debug-logs/ +logs/ +/application.properties +mvnw +mvnw.cmd diff --git a/ecomp-portal-widget-ms/1702-widgets/approx-portal-usage.zip b/ecomp-portal-widget-ms/1702-widgets/approx-portal-usage.zip new file mode 100644 index 0000000000000000000000000000000000000000..9f7eca4157d92bb70238a5ca0eeedc3c2a57a0c2 GIT binary patch literal 90114 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 literal 0 HcmV?d00001 diff --git a/ecomp-portal-widget-ms/1702-widgets/daily-app-usage-count.zip b/ecomp-portal-widget-ms/1702-widgets/daily-app-usage-count.zip new file mode 100644 index 0000000000000000000000000000000000000000..ce37c653d27a3c82329c64e5d1e977091699561a GIT binary patch literal 52363 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 z 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 a(ZO^z)@OmxvPC;Z#0JDM0RXvW{pdf+dw@9r literal 0 HcmV?d00001 diff --git a/ecomp-portal-widget-ms/1702-widgets/daily-app-usage-count2.zip b/ecomp-portal-widget-ms/1702-widgets/daily-app-usage-count2.zip new file mode 100644 index 0000000000000000000000000000000000000000..142b412beb65336104d1fcd0556a6d6e7b70dd97 GIT binary patch literal 90872 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⪙8hl%|D16pKs^yMgE@c|DAW|d+4h_jGJ3&_9yQz{5S7kcai*Gg8$gXPPM<~ z{bz9XJD-d9KQ{9h{wD+fH3a)z=ly@>`z;{*om%AEy-nb=X-^%@|CIU*|MyZK)&ExN zKcku7`TB&#{(P2x;eV3)*Ldl7sr(xMjql&l)9=iu`0Kj_&kvJPkj0-$f1$EG9Q^Z+ TJ(r3Q0hurWfVAOrfD8D4v=}1} literal 0 HcmV?d00001 diff --git a/ecomp-portal-widget-ms/1702-widgets/widget_events.zip b/ecomp-portal-widget-ms/1702-widgets/widget_events.zip new file mode 100644 index 0000000000000000000000000000000000000000..380a58680bf9082fd0b9ecdeb34ef63e993a5d42 GIT binary patch literal 1504004 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

    5&5_Z>j41ZJgG-RgJ$erFq}I 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

    q3puKy1n?8(Vo4vyynUE6CaK=;VVq|aNet$_ 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%0A5EaPMS$`!H_w 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 z z293+boxm@RRrnxIoO6k6q6S>=(?OlTW#aCMhmnm{c@Mn^$lup6JwCQ>ETVS9Oo?V% zH}hLd_+L3`3U_sixhYoOL<$j?DOFCILLmCr!Z?#DInocFUJhMOjsjXk&FMg>=`krC zN{`}2RVxt9Vgbci_tKPUrgu2n(a#2QGOk3|9#K_arC z2(h*SlgK)JFkt9vG8Boh#PBf2cnqc4b_{b8gS)f~o zjP4@$g)$Zx1X!gmtT+th6w?76De|V&>-pTjAydAU$Zc9u2&-Z>xw0R^ zW1Wt+B8zKj8*$u4+?(9H0#np@8kVF>L|*u5@O=VFs)fRAtu|XM_Jo45BN~%Q1vUDYW-&n?!M>5#N5o-*xh#f7e06E);)W+ zZhh{BvFqHcHf`FqYtyEy&W&C77AZ_2P~BZ?VOqW# zk7qL3xrvE;?mqn<6XWyh4sivs>n|^gtB75+j?`tW&B!12d+s7K;tBkci37AA=d1HD zo8JJ)Bsa(T>b|fG{m8`Afw%n4#1GNuF}IqD8-tr@_C!?HSUhnBXh_AprrFq-O6*&N zR}}M`lWVQS+&9tAV4CwH9L$#-EJd73lgw_?g%KGOh}WhJM=7|TS+}k7Vbs7gv3~hq zu9h9sIU;vmn=#OzmcfWvxTx#e%+ju$)Y#OwE z9#PvBk22@X#*i1B7WQO-C`o&5yYcN~$8K}%*t?GIhx?i^Rm%d?Y6QlVD+_&UBe!7t zcD_F^UbOSlhQOCLtdmH~zWRIzLs+WeTK672W?Qt4KPdjc0~4zJvVQE6o#Hd4+jIzOptp$MGk2jV0YODe4w6i*qgK)f@RYIk^$j>_*}B=d`6V6EiaBUUc>8mN7*K%u zfrsgrix;n3H#)j*-NlQIt5;@F7SfQ(qkXk9gRBo9;~pET*Uq1vJs)5HHZ6by+iX@+ zbhb6^Hg6jpM0(^L9Bm}p5(}{6I(HNz7Z4?gOnLTCRI^NSd5(ng5MHkyuPjnw27t1Gc$(l8DtjRv)`vGsC03Mig(>h#*9= zb^3vSSrQ_qF#rm)=nmXkhXTX*2k0&cbHrl^fs3`~u60>8d+C9)Zi-B!*2o!z>S98? zhcL%gNO-XwdWh0W1QE@m=F!I+H<8oY^J0mY#!W=UhWlMo(eq+)nVW;J&4kqoH^EY+ zkCl{YjC3FjK@Twu3XiV`+kUjw*(__RY(^R%GaJ*~iiG!6P7Yt6Iryg{+E z9wOSaHbV#`lYOFyJ5cv>59vO{%DmY|uG??fO~&Tvyg-WN#;9olC&DJ2r2xZ9u%ANnT0 z%@wyVxvcNgHCcq!2-~xP0A85rBr@6x(%OKZp)gjd&LW(sYaAr=EXGX^iW-yMMCm-^ zP&|e@M)LU@q)Q+y4I{}tR=`?oCF-3il?L-jpRMKdBOTPSft9IpT}IilD~Bg3Z|GQh zIoo1!#dNUcr!$^070g>n_pxUC49gmkBcT&-O89!ezDHs*ag)TdwYW(#5KqVB0*Ta+ zS>OTMQzk1n=;9&0K~BLOC|Rcg%^gUP6SQf?md7wOF0#Q42-@4nag z#2of;qh0g4dnrdF%>(IPWQpSYJ@bpIV;JOr*-*-MFP%yccc_K@1BY(V-81Zwjfsui zbse4C2S#qt)!EnA*>!^vbQPnjFt=jjtlpk_y{GrA312fy>7&%W0L+~J{@nw+?}@6> zhsHhG*f)%cM{d#T$2XO@IJv1?K2rUpC$B!q9dRE^q(Vy6nxHZtquS~o+UULTK zbLg?wWoDo$>(1hHu~g-vZe1AMQjX%2_!?_Ptiy+4JKvTJ-qsW=Y%0&Ud)2QSoy`4B z^1Pp94lsQm+;A^!`j&n{A`r=7{&0}-H9DKVH(&!*$j|n4&lU=0{&WpS{1$-c!vbw- zu&?jv)a23rzICPH`oM*Aa~IX?>-RRECghb%cx<-1i=uxW(rF=UV>3S|*?6Du%y#OS z?G@6n@Vx|9Pd7eG=Q-9j!e=k#A#1RolkJZUKwe`x!8IEW_x9H7y}gGwTyxFLd9~Wm zP_1^}%r%YgN2Bdw(aw?Q_NM`t^Ag~4-Wn%@XC&Uj+Mo05-eTGM?fpO1(^=Gq)4VN|Ay_JnOd_%4+J1 z#L};zpi$&8)Uq~kz8G|DsHsU6+q@lKZJk?MX6jjn=W|3Dn3h$nT$32N*80?CRXZMr z$23OHat|2|)WuaH#34?-X|1=ZBhyDlvI9x@zf;Fvo}WRw+%-6T=)kB9UG#FS=Kg)r z%>2F~8+n3oGbXmth*-a<8SRQHynMi;E{>ylM*CR$W~LW(xMZbVsbm2yJyxa(M%S+9 z3*#NtnGOM1x=mBPT@bQ`_7~dNw%%6R8u4uR1j#pabj(&8pLVe$Drdv4bh?(i6BVOHJed z+r^JNS*mda0hcqMJZ;mxH0ga9s8^B0a8~z~bXOR#9a}$P>s`c_6WXG#kix2Ri1`5$ zX}kxQrBp@LYm}cW?HO9=_f0fbEsu!^5b}4&4Cjb#HdHplh;JoZvTfzkhU#ob$A$tZ zbPlVwvp~jeaYEp(m-!@qA-56SHVCqIj3c>&$i`>NW2Mq?Hksq~Y#jsP1g857coS*t zIiV`+Dq2J%v2DcL%5Yfm#ty4uNWY`i0$zuPzG8lO<$pd{_~QAjucxM3(Hy zFvd0h8JDP}4M~@m!!UXaNw_Mc-Xg@hw~F5Ilp=O$ctxFeJGz-^l@48HdFXu7_aa7d z$oiMVZ&?pOXB%klyKH@ew&hi*D17UZL z1%wPlelZVY+g(%nT#3^NZQM;)gMbBknxayXObn5cSsJXSF(K4)lSle`>s0LT?%p?& zg+g6ds?>+?)TC3k;J~30tyoL1D@|k>K`D`;L7{A^Aich6sX!|qyF8C`B89C9nCr=$ z#fLyo8cK~@+pJc}!eH@3c&gwzI7N(RX?(r6@9fEZJqLw8Gz5uK zkW}x_jqU?=Q(DX&gpENC11$%?wxzL|GhM8+Y*#8c+Z_v%PB=yBS__ z#(J+E81nDZHKOXjS44fY-W$9iz%6UDUrZ2w2#K07t?nC~(7@M(&KvN0`WkmNAWEE$ z2F;3*_6E!mW+F&yjHye-LMZ+yt<%A{Io#Co#$|!PE58&p3zNnU;IW^uOmB#F<)?6l zO;Dw2tu$ubn&)$hEh?#zmLGax_@4yrrp6vC>(^uLq+pk_q@wef2$|!tn7#NBFd)bN zaqw#D1&_CwWbt?&EjRPTs{*FB7)BjlPGtmp)lX$UyoB9&nB+}`Q z^sw0}FQolXlcv2j*31?iJ7FBiIs>QCEtdbW!gj2}&C5!hd&b1WCl$<_qk(LtjdQ+9 z@OInu##@}j-0n8aY(vYA5IiD-J-FB(kC&#JnZWL$BnT~YjRGegwb-;XcA6L@kLx!i z{K#pFbn2$R;-*4JPNlK4nYU6lk2yHAR>pl21{|}rw4jP^P+Gthd2dOgaa$1XyH#Ms zNQ1|_!Ajv9EVxgyMfyIg@qNf3v*w8xOInX?h`UTsbFB$0L?%@b^wB94EYq;H9>i)g z2$H18R~~1{J4u}~@Ts;b(n2PV*RH`;<`xJ_tJ>>edB$>R!N&zQUMrvJS$^7PCJSvv zZe({+mM=SL1cw+qDV1(kW~a2T*uII4f<=jpkkQfWk>4R{u2QN<%A~jXSnvA-`Z!FB?Mi36Ek=tb?2KKA8+w|+;i~8{RKE)CS=+%{6+pIVUSF$sBu2qy zxEm-@pP?jm(G;CU7hz^-r`E<;<08J|wj$gU!>GqQ<2D`8R#g7VsF|PzDk2(Im=|O^ zDay(wXKcx4Fec{A2%Irw17S_U7M0C1Os$r*a?8u*X3+~ZvwqBUGZYLX0EJj2ZIk{K zRCv)MMbb9a0~Ep~7TQ@AZcHXM0Rn**rOCN#n8qJ4i%-N5rJ0+Kk00n3Xd1o#-e>H2 z(yqa6>S!!u5{xol1;OG zv1-zA!6pU9T%XUYigg}N)_SM5SA<%^yNk1tCRppRs*u+SlSM;}Dki~OPgkwu1fwyP zOu8rVQkMKuUV!ilTosnyUm2_h5Abe4WYe#(9o~!xUDUB&^+Jw#p}EJvhG&biI{wdh zR4Zpp7|es6$FjNdNM+mL;0?#Yt+6+pH$1$nBU5JOhnHf8+i+}XXnV(4IhVU&Piv0y zX#?wyj9E^SNNT=R5JT|CA*J^k4bXj-{Ti(~i1c!p+3ZDG=wc$p1i2(VHVKLxLMRGp z+$9Pr$rK4jCq32+;ea;^Y20NwY_m&D63P z*?O&E{uhO_LN}+9)Kn;#@hmnT1cs8}wwRHR27}qBnPr7v( z*>TaClKl(kEL_mvHz4KenRA7#q7REDx9#%_k2||_t^?R&@GIXcZD2LoGao)XvxSRm z+)6W>m-oVa(lVL0Eg;jjyG~6XC^gO(p)R8LHLg_bYMe%wHr~To>FJV{fGlywh7Gsh zj5238ClYzkE-uhl>7hhtViFvjBhXvBYvRF)r-;7AhtYqR&}H;sdNRF`-T;k?=`{c= z%}dF7edkRtzT~7IJq*k17tGt*i`KWn1~W3M58gK$`H2< zZ8EJHUPSAP4%R^PCfwo3Kn8;F9u|RSZ;KUX92=8xkl15pcC+It)%-K+SW0A6z>?KG z1ImryZAP3Gho;s{JB?8OySjuZ;?+xMyJ<9_-}ahv6GV^ZkF#^k*s|l9ADcJ<_1;(` z(m#8eoci|i{b_ViayvE>WB@qwT0W)NJt*KD!mn|Ej-xB2aEV&Fn&~upo$shuIsVd2 z2)-KsuUm4s_C1tzz;eSB@@3Q5YYG&(M;uO^Mte>!#VS^$ZBAyZ9byYO?oe?}u)L+` zh}tRtQ9t08m}j1e`)Vk5-dyhDpIz=@)e(p8JXs0qY_8vXislDx+)*C=3DOPcfm=mG zLWfau4imk#d2({jncE_`PB@U8zU}emf9a2|PiJty=}Sl{^du=x1iz0Cjp24Kc?$EV z8oighcwRRozFAsqR^X70zUs3)?mX$cMebRbLro&zNl7>-N!UP_-KSrx7qLD(A@PC4 z5^YQ*ny}E(2#id?cZ-Cy*?Y-=ir`$GWxir_0~W6eW{=Z0%G}%<>YGxRvGo(5>v1*9 zahJK6X8#na&mY(JFyg=`ViP~^3b4d>Jn3E%$%J-hrI~OTLdE1T<*lth6p?5|T3bKj zMf?H0i0$$oVCshLGTQ!5v2NnM%nf-F7jeaxiB%PQCuNduig$B?-XGiW{k`jebk?W@ z5gK%Gj?NGdI4_-}GaZ3*`k;Z z%kl!TCY|*1W6E)Dbx@!JlWsSc+AW6M6k%i@B+wOE7j`1=TGAbKBjKk1hOWXRyRNjc zaj86@C68ex?$u5j)gUY-nF82QwkZ3>oZ-I;nJUIDwy= zcspbRg|gTD=v_PA96U|3)8N7~YPH=CH|R#^m6+b%4&xjj zl@{fbjxT4mv9gGzX-5aO>s#J&OAX{!I9dV@m&)0Jvcj z=4gHrBW!#tj1A1*jXvAC6IR%tiYQ6Za_;84UMcMZ{1H3a?6Ph!qa&oifXnxKLYsKK zQPpK-Vo$JVoFIq7CDg5^L2Acfz!HQHwVWyp7xF#6FyB`CO*tNpSdznWR{CEdxSfX# zUe1{$-|Py!wU0oP_d>e#Ux~R!?d&LASOAX0Xv2=`mtSl)K7LVWwASx`nytDNr z9e#yeZn_7<0c@vK(clk=ePtV$f~@aJ;qSPM{_*g4jjyA64B?=JYn0hjgud~|77z+@LbLZVq-K#B_qMD`&vrRMR8m)pVwnOB||#V?WY zVEtxXAJ#`e&s#{`IPp+e6!<)F{JbW0-)&;G4(qh6J%y&Y_hOT_SAYyKE}rrkMy)dJ zE?!Sy_1g6WYIm<^y4v-ucleZ{?bZ9WLtEa=#2d?c2Jrn4Zn*0Af<_hQ%qN=*MOGwL;5{1%Jt-C~d6%*XA^33!qLDstOxor{VIZB0 z|Ak&-4yU((6oTy@__!F`9fi;@QAm3zlEryYz@IZ+#@CgJP3y$MYq5OTxTRmejUUCM zZ5K4Y!Ow!NT2{n>?Q7;9heza@(Zhn0?aib+LII#>CiMWU zE@ZPkDIWI5pBrGm)^UzL2pNSUtg(w!VWQeG*A1}g>O?^jAd4NZWv5m?C5hzT2Q;`qRP2Yfg5sE;8pS1kRv~${?i2 zOfuY1T5E*E~S1f`mUUz8EmN*wjiv7e%~sk)sn6y(US0!00I> zqrl>ii7Z}e0570|2)IhK=Knm~V?{cCl$O6xhaSeI_Su1+A>qf(Fn+PGI*rkiPBH?J?62TPE6}b;^2cI-pU4WaymK8Aog^}MM<244l-ymp%^&j2#LrfmOQ;i!OpI~ zr(mpvhGlnFnU?z8 zy>Wd>d+qw1Q0f!xPn3N83h66sQs-v3d4S_;>yq0)fN&TXE{qoMk8j+)|ug^a9N^LKU&`kx^-Vm{2=iQSU>v`?!nE{ilM_v$h^B0f+q3|^u_>4#+*!%9SaF9J^+wsFHognm4MfWtKbGBUAj%$> z*?raOY4xF99aYGahJA&ldk8_)U}BVc9!UbAMYimIKEO$aED{0z#@$3%-;MV5^e6$) zXu`U3$bPxM%n5`c&bYM4F6mJswf9)MqHBjEQc*v&^!_6s->>bnKYrxMB}a}BvK=Y! z*SNtmT-yv?lFpK7m6XaI9p%!N+D(dl1Q7lG5-D<%OjN}z!n~z@+R;2wxkB92V(EdX zq?4*>61;gkve=&DUf$+}=yLY!%1k($q)Vybmq0nNpUrf(XG4Y;-o|}cp&?|Ql4^HH z$F4zago^#CXSt#n^AIK=gx0foT6wlky6`ssAY_>*#~Y%@@=5Wrv1Y(i4W8V3>6(hgu?V&E%JZi*Q1^?W5XSoVxF#rKcA8S7z7Eo8BLa-VOSy+!4F3vk8q7 z0ndw=7v`ZSaso1pKTWG@78_r+^;(4mwHLW_!>*GYR}WU=q~y zGxUvM+2_uQ2Y|Er-o*E*LfaFG6RNt#glbv*kBc|eZk}#U>vZkL>Ee);-hwH|U|UZ+ z?Q}TV^~9GsUJb()Q#%A*VYNa3N(+4Ys={K7Z^mP9j&Io%#TPQHve7SC_~$j2gkz-r zNY}()Ivl%S!jUgYSB+J&YFfP}c5hkwAUwW6L<^NxZ8k()jDo;Nf@^KZFteW>5d}{d z9ye2y1Lrj%3(W<<2E-KMB|DPIYSM?AOQ=Oamx{_FOK|yuGDG}gO_4=Ll#j=|dp6~? zP3s9BTPzS{0~8=-cswHnS}T=&H7c^qRzg3Ml|YN3=z(JCLg_pTbDMg)#|0YE0|i8o z^lp#IL=}T#p#s&uo!%o(_DD;M5+DJY* z0V@p@NAtNZjNl4FU|$l7gmUD!UZgXAS(_bW=4#VDpsE33IQsj2! z@}os3(Cz%8XsI&tF|n3g8w1yFmw6q=k{Fu+;Nllc%Z37Qxklv)A*QgB3_V=)W{9{k zts%B8u%Y-!aeQe8GStncNnuuo}icR5K;_UAYiT} zKaI&t2CJ_f6rqsBge&E`A_J%_^<$+$YD8?5%R;Qv31h}Ss!nkzNKD^Ts3-8GDADX#<}$}Vdjb1ZTDrKnA6{>T#ao!ujRC# z8K8z08Z$NbYi>Mx;2QYT9?h40vqr4J^ds&|_k7B#8@Dp@Y_>XInpNQW(FI--QLQY$ zUq({or#%F!AVU?;5(KI{oNtsNGN4nZ^c@6-N&A&SD0@F-K-(O7K7&woWIiQyE`fH} zUXHcof&%&+FV!*#A-1b61P4OM4)8({iduY!R7tG0gQpJNu7V^em{>-R(#ypnGopPY z${D2!l$z7Xr!0oexQ()%M~mtN-PFpZ(gP*4UCj3;!;D}ISdMi+gYW8<2GXefW{_r`)|;fQCjU)7pr?mdJR0}`M;U95U|XBgb1dY)@SDC z%|y5Q+A44oLvzD(Q;gkhl#P}TaxwhWTqMnp63gN;{>{;h2+mS;$ZHWyUoL?g0ID8b zF3OE)$Sr~ol5=*Maf&9OIAeUKD0hS)*;*Q8r6$N*Oy7nhnzdt$3^SABQCoI?c;>|x zJq5`z!;O#2FFECQPL)v^i|q!+aZNJ%2I(At^GPqAM)GIcR3Jo7kR}(VgsL|;HQ%ZL zyc$<^@aDBVU!WXP76G^JXO?ll~Z4$o+4kh zr9?{IQK7Gt&-@f-!Xz=V^9G6e_lnrzSVpJN&-&odx(p^m%^%MQR+zUi@8Eo7%v=a3 z$6*a7H$*}pP+LidNm|;dh#^5L#e%kQDmTO=Y>t64tz+hOkqHwZPO*s9N(qC3wCu(( zCkxLGq4KjaFtJjx)T5FovK8{8+)I_M3sq3J@Jo6j6Wncuq@5`WQ^hPGkR zLVEnkVq>hyu|>^`8DFd`#WGs1g$X3!^~W(l-?pepS&Vw)At#q27})qL1uLmyxhj;( ziBPl_T@^7%2HP)NckgD`IaeC1l2@J+yA--rb5=ZolKEQUA(H&+#9)JAlCnBpDDM{Q zF^A}=PHs$q`HnL?NQ{(%) z{1D&Hd47tCg{+Ur3#RrRY-5ZDoHq6-L*Sx!XKe@HLB57eX`A)fLdCjk3~ZzA(8nFm zoC<=H=V0L~CfPzw9~2ams4ZRfaQfjfW5$hXaTB+mnlH{}pZT0^zmr*-4%SDM<@1Hn zAblo(4J4E$I}0VIgwp-2W+SR+&;CAx7}%lEK#3taq- z=%eu$5xYe8?PL12>WzucCd%RS%}E7(n#G}oc_Tdwo{3v_N<7`1GMM4Xa){M~ikwx} zNQBHrLunP(%@;mI1;X{AFMQ#{O~W^JjSPsgYm$AY?G)~uM1A-SRsq)$ESoLEcQGKA&5q)IYL7#m$c?C-s zUG;9bidtNaJ4&4^+Chin`eRq)7g9EVF06p0v|3@OT9FZ8Atec=If-22wTT(by_7!+=o%R?W#& zBR4&$@tdyCbvMp(nW#d43Zk=K&~U`PU?~Bk0`RrUHk{)&?k#+9=Y8` zVkLZk>}>ogPJC@2-}|JMr!{`fnJC3Uhx^zqx3eT#64DJ$vwS0B=-XSv08=L2ucf~p znC|p(65WC0XUii4Mb8j-(Qo(rq-#A(NVzs2I{xf%afT3w=s(A{B%Wotjf%RI7X(w? ztyq=WmS5-uJdTo<{Pq1crp9h8-S!<5ii5F%qyO1Zbg|J1lK^ZKEQvb zUzk6I&*mTqkx~zJd|rlqrw1<)!@zfISUm#@ z-1XRnSQ;@nPU;zr%d-FxZpnUF$oljJqFhfHCRKB@s1Pfg5cq5@P6Udzo5puQ1!Rbi z&zaReTKSbFH~2LirW{}RJ72&lQ5Jp8NXLyEPEFx^W+qXZ@Kutke_H34@v5Psaefug* zi>PK9`?1u+1FI*?_v{&#gURAOwj(#gyLe+_9N6tg6WgFud2!+%u&VNG$YZ@DvUD6T zOOteBvlF5m8Lv!*f%xl)v<};m*CO$U7~_>0h0~RI-@zd~cvhvGnp>G{b}<&2Kq>x&N@D2#K#!u?Z+og7-^ zif8HbT$dVU#-S?+<+s%#bFr6RV}c$H5{ux8^E|b5Su|tO=WPek#bmmO8FkN#4%^U> z@mW0C+JD4yz_$c)axF|IU;I>qw}=Tlc>GfVg0U-i5LkQ(MPA~=>JREI;9&P85-ZHi zFRp-VNbn@e|9{>PxMBJ#-#;8VIPhmNUR;dVy)|(FJK6i8{CHOy+q+$BI~vonTXwGP z(@bvql()DlF?S(w_VU@>WRJxsJF9aH5Zdbi#y2^6w6AYnHUmSf79xDBXG1QVUth0Z zI2S$i^~Lah|8Tv2(OhjuclTsYbY4|1L?Tj% z!GJw3rY^?l{0We{c{rVbDe2ah(Rky?2#a@6Z0-XRRCZ`Exol>S6@aQMStRXVty!|T zF<{9jZ%n0pP0*@c>&V1}(EWs1xO86Zo|s4hXe;0~A*Eg#yC;@jC$jHqgK~L0Mqd@X zXz*%{f|q_`2WX)zH-~tBg$EnEbt9Ma2Y$Is`LAreQ+7_Lb5OGJR0+I|%o3BX#Xu&w zxp29W-3%B0#)C>C2K&Akqw#$rZcq{{SMN(zFo!d=Bb;pe>X6MMEmy~a)>pep1bxc2 zUQXH^HeYVJw~A(hUq&04k;suyiOa9MPCr;*0ernzClYp~#4g0j$Q@HTW1?EDim~z% z8e=I&z7v*DWIcHX*<#);Inn5(ReWPZfs3!W0;Yo+z6+^@c6I;G{=Ti<$uc7gc9mG| zl{{wn&L6GSX7b7wlw<)7aI`1z<1@9|u{m_CY&a_LiFB+S_>*B_X>y2kBUh##raVy6|xv=G&a+pKI zN03x+I)m~=*1UGJO&jmIz{V`P)3hbZMvV_95@;vAQT>5FmPo_1Vrp-j(dmuxEY5p_ zUy;%obwA`ANo>U4;PHufN@*X*H8W3exshe@II1n>;A(8p=!1)=spdMc3NI8B z#wiO@pLz~;mz(7$JdQ;30zrQcy{Vl}lZ-6D8*{u4LN zk!6;0Teg^*#wMTWGLyx*QobhSe|EaVNGWurV+s7VU_l$dh|#}e*IHPdv^5(4!qt~k z55sx1o^fifb&$D1S?AVrc-^JEBI6S7;^ZP-eN1NU%1<4t;wxIT1GJ z?22*+p_3!^udZCCB_yHNstGC0*5YOpTKby^L=;_@(GSdnU7I#ubx!^C{{F39!`n)wGVqwLI%o9o;Lz@#-VK>-c1bW}XD7z* zu^Y->g~43oY=bmGZx#{G0&v{MD|_!hIkosQc#H5(7_aa9ojKx%P>p@0=+9C}akyAm zm!}t}OP*`y8th#*=?Cf?hz{5}z#DixsA<gf#lmt#vAc0y3+OM!?#6Y` zye<*OSz6rJCEPemi~G8S+Q{-kP+xcpPZ)0z>#&ZEVgqZvVH&JA+?8QQ93#CR`;ia5 zrC5_>IA=&!o;|*R?{v5=>9COxAJznq+GGx0i5Skf*;qQe*_7DW7{LwKQAyVF9LOTs z>1-sEEb&vB?2TtS_R}*=oZ>YslY}kRr}Knp&l&3*vrOop72ybL79_HtKypcvv}Sv& zR!B#R(`gUs5Ibx6$SK(7hZAS$*XYfO8SJ<3op@5>r*sA|FwFUBnLHw&TBKzwyKs5w zW6K|%+50xNo8pf%1LTHVooK6NllJm+!}>j&-DtSh{70A zi_j6(LXVpIi5MH?K^-Ey}$_n1NT=V{; z{D2h?ES*5-tPmiUhyS&u$qyAqKkspkv|+N~F<`TDwPv9Z-^G>z!FD81;$(Oss2a{| z8a;xEA+$vjBWp<@E|z)8ikdy*oNTB3iGjZ2%b*V#-qwkgc|m*yFt$M&pAsT1uHz%wHZPokn|tAi zq9)bEHL)(RxyM)BviYIwW2*v{^hV#Z}@t1=s3c!?i44QZ6D{ z+er|0F7LCq({UgzS13is5;N?gRalv^mK9EzSRhxT0Ib^bN#`CnIucaG1D~W(RL4ik z^1kJ;GL%ZC453zVdLx_Y+Q!zqnqoB)krN<+b`{WCq@`A5T_xCrMjgx0r2+Gs?91^k z&hYgO7O7GKG+SAp7UWz{#L`5+8R^npVVFZvq+Nr4X1Lp!3i^uypv9|6P=DoQ@($cB zjNfFHB?pWBprS9g--~gElbso|P6piDY@fx@y~!|V1Ofzb z)=DftE;l{JLUCa^iGD_JH~Kuo^LZ$5PAt(*P4$XK=Rgh`oT;KY<`h%V>&y-0Q*8Y{ zd?;iENV5`XXHquEmZg*2lE*0g?4q>vk7X`T6ob65#-y*kFJ0Xb!a@VT08xQ0dtaT%j`&Tt(7iElwe73q!#o z1O@&I4v)hO14td3H*S(oL@McO93eS2CD?F^oB&8^<6$$>a3aFrj1n41S|W-&5=qse zBO4JTxE)B0qazzG&2PA)K&ivSikCf_bXWx=2B_z(ZRm^m0uO|J4IGK@0JyVLzcMM9 z0+*v?{LGwp=Sb5O58+)%x%yp*LODMlQI0xZGNQ79w?`;?FAS8TFD8ak`aR;+SM?2_ zrSFlRCEl6FH;JHXRO1^HEu!bZ6~KHSvIW*XDg-`x3_f%B1?JJs@U{5yB<_mpz=Svj za^%>{u~8X zF3oWYC-(_~h|R7NVyRS&T_rd~utXUx)-u=?CEY~S20JGP(x^lexq-e}5)5;2qxD2y z6Fq2k27=_$?iy@GBvlCnK)t&L6DOc10&fjL7sy)!cR>-DjrP`nvq(melL9eT1vMHy zPt@HEPKOh9o+s>#%Wfy424BLs+X=-=xZw#FZyPrmHt#|q zx6Y33q0l>_s%R2pVl}aoI6++S-&wEy%a&DGJ(EYNM*oTd_)cw{^mA)KI)1%*{%k$4 z!X~$u%luwFo9+S&rRaL>~KFXq2 z6W5X~ZK~Cx)v|?JIU$hLs+US2Q!z71SSqdC@)si1b%En#Y(!?KVPj^89f{cOD>Af| zkHljh*r5!uiVz5f?D#{rTT=a=?N-=ru-%&7`=?BiY-3KQNa7(}SgI?TYKyTr$4GRg zGyNIETv-TYIAqg>do6I&FvkKxOUktok2PbN;A)OFIkUn-)mRWU$TKP#)0T5}Q7eJgW_G0R|=E2nFQa*uKpCCIa%~P)R9LH zATIc;M;2%OnK3AiinX2`zG$oWy+Cogl!SMOc+ygboF`X-FI|!owiD!A!eUS*Bd4IxW`vc z7w+xmkbs;oHi$h*!>L?~Re-|Y$-?B1&paXOCW$IqO58}=MWciWF?yT@6;2B~_JInU z@|-$WZ5P^0xMEc7D^9_;5I80abQuETo~KNm2sn^6RR>PA2e1!QvP-$-q;IE3p9xlL zrTTY!@)jslOrO|^+BpN!B5qhu1A|Bj&C&&l%Nf! zUg6mRF74Frkb*MVIW2YM+-sB0S6E2bfuv$>440h?=L;?55L;VxDSM#3ZH;Nuphz^} zu+0$3G&~_iHc^VW9;;$`3k}S@<3bDVI577@9xG^t9kRyjYi(V1$Z*LxjwWm}!QL`U8NM9_yu`bQsEKUMb!@0MiwGHe`72I0UFrQ^g0nK*u6xF5-|novmDA zCK$@?08l`$ziTNi)rI*F6Vfc3UAGLZR4TQ#l}alOn3T3>5g?u?1YuUjVLSk(aJ9hZ zU7fwXon4zRprR4zvCKlBA~7|zPG{%z7_-{8WX_qu1@KhL-YlgO(b0~MHHYYqL`a@J z%O#-{N*VKS+|kj~)6uc<{A6VwCIQ_nlF5brI05P~+kRwCxL4?Ct*kjBk!1IAvrNxF z*gvz!DVp5KPn+tqRcC8%))2`q}u*AR&OY6h?Ewk7er5g)a(0n}Aib2qz zZpX?NtKDD$ly)Kn0-cD)y7O7U2w`APKyH^ctxfrc@~sVGp-@{a3@HN&QT0OLx zk0WzF{4G4wpgo(M_|gaND<+cpzoA?kcq3@g_^syzO#d@U^{1JB;+GEc9pge9J_VfD zN;(DH(wImQh$NhiFWfG8?otxQ1mQ?NlbPOH9?N9%ZaC7MRLUjAdr{MCx?n}xuSm(? zj$JUph^swDu~>U1L9eMtChK@%UHpLH=r-r`3v~bkGTrKmSJKosLZeMpd%V^(&>%Y& z%IBNa8rm49q6~>%CA!nC(=(YufjXP%N+e5R`gGrn6>tT!FSHE7U@Fzy4eOlRN_SkH zo3*=<;0W8R%-%SGex`#Srx8nBr8`>da-2JlHRGM3f?7gt9U6na=SxD0q^O8Nv9LH) z+#wzdh4gxCvYHeTFnnl|EQ}ACd^i}4wQ)8_CPV#9rt~H*s)8nQ=(jgg67(DH{_SpJ zbv8r?wB|x>21GfnN)yZ(lN}J|>yvivg`P4wTuTiFjRZQ1e2_XYCxK!Q^X9m#x^JWP zXVHz#sdgYV9?oL%t31QTloO>vob99uygW>K;WVuW$k0j)>1Trj#*z+#;3d6}Bc^yJ})BL}i&ks3bOU+H%GDOQoSCFFB=jXvG|#*3>+fPnBFe zCfkr<$IeEHV^)cmrswl*j*tR8IX4HH76@j@FXuz=J>uq@tmr8vFY>|Kb4+W|ntaMO zJ)W4f>nz4`|G75c%<_kzAaYP(L1$oNygS|^3J0)hIUaM}@OZIB;y9xavuYI_5C&mJ z8K%+-uP9Ce(=K`$xP8sM5IL+fz0i4~ht%fsHnu~V4y)O%G4q`T?;mf4eiChBjY-n5 zK=w4H>M-e34&-K&G?%;D>ifxBT@!VpyK6%U29iM4(06d4ogtf6EfuVk zO?0r1J{TGcICTyEuGK*mweEcUMbTSuZS^7kFlJDqy3#NMcGHvgoMArjc>pFBACHY= zpNE53b)|{w%3%UTM#(_=H&9$Y(XiMt`MMxj!MdPk$oS7y;ATr2FXZ*r9b6J(`L-Vs zOPt32TZ;NMN)<+(1b6g!HpDkX#g^p3pnAME@ezCY!-EvUv8!(hLyA-wZ$H1JwqzVQ zo5)>BnodfqEwWYw;<3)UYTyqv0C)y7%BqYq;D!{&2}=%Q%=>+2#gp4@({7 zfo224C8vr98`erB(sQ+GoBuiXSmvpYM=|{3&Z(?*ZU9BnWZy*(OGOfwhjH=3W&_Kp z`JoU?FjOPr#OG4W(;1hKV7PZ}RAr_lLtnExSqMJ^T%fetMePvk39Zb&7em_lM*aMb zcs(TmQ8U7@KHS}C{#Az(W(O>pv3VwF*Jf*_N(L?d@a97PGay^GqSd_d*V=)YdlY=ip8SwT4?;m+#l;Rr}y{ z!Zda!kYY8jHtw2FG9U=c!*&+<9i&WAmuWclm4p(j(9;m5Z5Lbov}OC2ZE5LuHL|-m zP;Q+$*Ua;lT6(9l8yzT@m-iC{jWS+g=~7F-$H+?~rZR0&5+=Q{TNuof-P~l2J;fj< z%|f21R6~|w)K?PVYwRh6I!+#h@pqZfZlS|~n->!GazJ}dYSb8dr@|`;2DXXjV*$`5 z7j4vvZgl9@kU@B~s;4$F^;Fk~=_@G`lSS`$&;@bAS`JPe?yy4$H#`xFOR0Eut^;Xt z8>U6PdmtS;kbQJ*OExQ?vY~ zx?{Qmt5dNr!3RZ2Ovk@40k?uW-8Tw}Z%Uj_V$@iS;?*`mQUKd=ib-)QFen}J6mdvR3v3S z?4`A`SXxt2+fFc0+}0xfpS{Oz@jT!|pQ#R!AHo;YOL*I7iVY#jJ4l=?E(9Ls{o?t_ zRxk66O|4?_+YV#q>?9^VS$#q??*bhKPS&>Ha(*+YnS;RwfMw>AV-YyLj;F`td0=r^ zHxdv_ef-sH8+X!JYj9YL6#@7)rdOX@*W4dH&{=3d_&BnHa%$o^HZ*U{uz$D2U#Rl? zC8UfNqh8(x1Zu<;`e(8hH316~GNMhwb;WGSL_F4=&2`6P2_$&xfR32sk@^BV^%SBR zfHmFVkGLM@XwB?nl?Wxg42C;H5>6FavYWc8uoEuCBRLNW5uE^O&Iz1^szpo{1Jf#| zp$3H=F}Z=L=a!S7f&(X8Jv(Ccu(lB^6^Z$6kI4AyWAsAzny3&lN-4o#tpVRu2Zy+j&Igv2~+hgxx5}-7qM-;gq?zPg(6uzE9d~mm+mT^1K@c+qU3hF(UB? z@m!ctEE!S4&UMG)3A)QUGVWxUOV%#5y-G6K7B#}OdQyVD4T(qTZlp|)C?z}r#`#hv z>#{^>eT&tkTW~Qv84eN>n-eD|nhJ5@fyDEKR0in|conP#BNzwK7d8=)La^r?JYbU_ z=BKu$y5f!@nD6nuQX7P}15U(~p>IU1SWc`X_7Hc97scl? zCR^kJawezU^7P2+P{|+^dgNt;%#`z-k^lqN0CoT90vZ-eMr7{Dmo>$8^b_#_B z@Q3E41IA~blj<5uHd5vtZGSgMDl9W=s_wz06T6Q^Ru&(M>7Hn$nk4u}J_KY;S+5BADY+okY znad3~yGIX(uc3cqu9jC2o}QQXJeKrd#5rShN&1*%ALnS`9)dlB;OId1hQ` z-)CRqU-M`#*Ab1kfKB8nIyv;;0qb| zOVBgc%Jinw-6_+dB~`jNlj+Y2*}ZsyP+beG@Z2I%#H$bXB0ucw}&9bEzV$pR&ro;mo^kxwWnO(!#{wFhx~XO3f<{Rx`ZNjTJmM zoC)2aAPKdVlf*ImggF5^^8G-gLzvzklxwo}qb_ zM!Fep&czcbjus0;dG_RJ=7)<-^E7#R$~Ua)^>$CWywVW)P|IsyRj_Bkv~ESGt=v-X zvG_~^XH3#Xg$Gt>Y3ZU&6K(WXTGtqH3^r`2zQXH~68GXg!xHRiQMnF;?b_s#u<<)Z1WUG_8MQ|@sOV8I6TAS+8ewE@B$g4_$S!!r&|&HZIXko}G*WgB9RiEX zONApkF~4XtvEQ^dnyhEsG0D&<7?INr>)uJw1wDlB#ZwvU)rm+OwH~eD@MfO|3Eu=~yhCObisOZ=o^Er3I&d%7hJ$zY^52SXu}vVe*@SVf?fV zoDT#mR9jP%VVY&M&qd3TbVxc@q?}6iWwYHWz>;azUnRvhwlTk9^X|pkpnHa-!30-H zdx<+ypBC##*~_ zL8n{sgi08LyUbi7(UU9AolIn27t#nbvB{hz$%d)aoFINXWXngZ^X2z!XTPj(!+bxu z?O%$Jh>P;yv9~uHsJc0k5Tk$kKzfq>Nq}lJCF|q2sEZz|JdwTBK#gX9GpRP1y)63` z(Mndg2JzX;1{$C8)*wE6S=lxF5(fI(fcCS$HfnF3mX7flxcZctK{SY+P<@rz^1SXs zyvBX-EYZ#E2OVGf)xebH)gT|`O_M4auYO+rnNMU;YEJQ^U0N`TPh!N6;dnK}ak(BN zjZ`xee2IL*@iS^n^F@N5|M^&TdEd1xPZgK)F1U>9PmBb0HC>*yZjiq&XCG=A>mma? z>-O5WIin`nn!hGwXB*_LLVK#S!Q(Cfvvu9jA$pTMdTrC@-HF7s@J#S@bFfnrFom0hV$AL1bHt2b~6cd8Hxg#tq=R|599T4&GNWX-)n7zX30dq-Ci0*? zlF5bV7UD=Dk|pTWkhZ1QSJpTct#iAc1mv{mwWMSimvM{`BwvXrOImhQN-HgAnr%l| z$|Yn8<)BmuKcU0TuTMW{#ra4Nzqg!K^iLD<a>=yR=)@Fc?a+_o;aCBnIW{38Dv*Wmu>KCX@MtPv8c`~7|lVP%Aq__%K4 zU_b26b@jO};eP7)FaCM9_S4Jpf3C~dz8a@>KbH0Tww|AN3*`m(fb+jG@EZ8nau&im ze*P+cnWYd${CmBP-{0H)^Iz+qe-FNPeQX8)|8)qf>+2E@x2x~R0e<>RzwWG{EfJbf ze-r&o1l^}Q{bzf!-;bHxrmnxDekU-d(Jun7OGv~V=PoNe)pTUj`=zJKW0h%@SKIIF*rsQ*zQy~mpX;@`FCUmS?X;moM|K&l z%yZv--SfRV|MfGjUf_}i?^t-V#d3@PyyQj8%vjc2u6w!nS6F)HBP-pw@*}HWz4{kx z_OAKX+H&)9%yX)$^PrP@h`#!w?y$4bcJo4bP554-(w~ur_I`?A-Khgd4WzT&0+_f)!{n7!i zT>a`}ulK(3^P3;Ob?w_{zWehB^L_Z%N85b7oj)d=Z#tpY+NV3|7X$Z8_~Sq?@3|!M zFY@CG`3w7T1MzG9xEabJrQ=p8gQq3@=QU60Wz-TzSf5kJ^*ME1pHs*6Idxp0(~nz- z?Wg1VoHWOUcEH~N!nQz++!A!(Zb)qk>BJt$**vr}a(54{g(JJ+|F)d2U`Cu48v3KP zx7u@u9R_yTcBd^j-ECmgJ@(jk^PP9v{g2iSt%f68b6Fh!!?l*C|H!GJ?v{w5_f!V| zw?N)zp?$Gmj!UnIKxL=#UH#49uTV<^1QY-O00;m^Xp%|$C0)|u)&Kzf-T?qJ0001Y zX=G<*bYEq5Wo~qHFLQKxY-MvVX=870b1!CfY-}xTX>MgvQ2{Fi1uUQ-7ErJ& zV#9(J8~7nMtgH>YVx7VNocrFqncZv%sIzb1++NQ;=iGD7y`u?D(|ql6O=`o3JbT$_ za<}{gLOy~2<4@eR^PJ!P;tyS#COY8%%PBk0I|tusP1EtOIj5X?(er+MjeZ^ct(tiF z+oztq^CTnpjm4UHk!{iO7x()UZ>;r2e0kI)2aOR3z^7)-4o?>>ha z+7Gk|*(nduhPC6h?+6FU#s>zMib}6#Cq+J2D0YdW`kEG*Tw!c3dA@Ej-SOQG9Iq_YCs z@*TI32nvql3f(d(YZ6&4!?aw-$tON)rY%EC-9fF6lW}z`VItl%6PDh(FqO&(G|JcS z>l|yz77E#xvCjNpI@9jl!0BoqqqJf(r@z5z&!h+Qr>-$j{Nsk_;RV+kyO2zFr>Q4d z^l4Ek-JMJp>_4OWLPG2iPLeCMlFlc&7*XgPY02i%1*-{) zvcmLJm~n4B^zQ)6~zkpGL7LH!mZpAXuS$fFEbhQfkG!nJGV{W?09roE)Gx^$Rs>d%&xW#}D zC4yGZOG?A>{ocYG#NVWEts^-9i{%@JE=F5SPa610&s?6f3}IN9b=}bSN5#5WN$<_@ z>LSmPxmBizS;XU+$x$JV+ARQkv6Wtl+WmpRr)NXrh@RIcwkK9ybVRU!kKAqpM2v*9 zuvhd8Q%Y0c)YpY{t-_FK?*UYwZIyCICd!#iIq~^y(MDbSB|C)})+xQ%R4OC=A}2sY zO#`r;=nRe;GtB1!;_x!ege~qwoM-i0w47^yH>ij#H5`@nOM_qBvD$A9%Ql45ko-_IT|C`BvGby-`eST0cP0whG;KL|0Zwi>H~M2y*GMFwqo? zr;f{t3{rI*S}CKPX5>mwVRUM8TopGT3P*^-nIVV|_N(L*5yY(_Z{u=7OD6}G)p6=R zG!{9>_N}o4du;4j)98p7i~}bCOAc*FwYi=z+H#ddGUa<-ds;8$bK_mvN;=){>5^v3 zaCFQbux_#|-L@>#k`tzpEV`~2_()%Sw52BqlF1(Y96xZS%a2rnXr=wao-7MB4-!XIcr%PT7S8 zXj~?hT2K(ZxxPd~jlzS2QpZ}AJ-+9*r9PiZB>Hmc?nKaHbQ0|X&Ml>M1DF--(!c^w zxkuiC(}}b0g49tTG^DWMX7&qWN5JzCV@B>i1`RgG8z<9a<`4 zfq}vEjYE=cfnRVxne9ykh;vbwTp&4Wfk3~}`*PrVZK*qH{YW&cHLV*ItkaihY?hv! zr&YQnqG!0&U&9pKs=*?UODd79@ zi&3^IJEUh@DO>*{A$*fizhfiy+r5l!*?2OZmw^M$j8`k}DOA7S2A|{Z=i~_}Uh1SQ z(+={?0w5@M*@m&l@W4KJEjo(%HmSdu_USGs=XqIsKidaB$0x8pL!JDLp9SF5zRuOo zY0BI%4IfL}p!xE>@&auqAmrWHMSWHK9-w4&vRf1s!W*C|P)|2a-b&&gmx)zkq7k<> zqc(z?$$`p1ZxcFe#Aar`iAfkMHxv8_4Xf;CBLYRDCJ-6SS03T!@SxPALg%U7&hw_^EC+wGKtESBk{?PK0D zy=vpeRnu=d=IFPqn%-E<7uGJUz3wo-#kO77wp)C0GEW2nihme`%h4PlMloByU3(M5 z61gpLvQ6%n-^ejXbHvw#L9mTTn6;qwRO>= zV@KjvvrCvJa%`NQe(TXkzjb}4$qu(IBB9^w{q z`yPrL{+x2z@|4H3UQfI@f#=D#a@gQa&(fC5-ExbzQafBbNBfZW4ei%rF(9j=rZ$@W zan?SEPa}#e6=NlZiRK2qnNk#5BkSEA*p@sb}hoFlm=)ic!^iRa@n|W?{mSR_J z{hmVgi+M_`8*KKSVA!@%y@kUX>J&#d)X6EU)wac{R63nX4YjuqrI`vZZa*%O2r7kq zB?#aMD)|Cj$$Qt@_r-eEcTw76cuZ|U-UKk)tTY`Vh_GG>xs%=g=pr3J}kDw#|U z6!pJ%a@AaMXQP{&ReeVsq94uf&bVvap3+&}-mv< zz!tbYo$2sA4=5N&0(@}7wtcYQAnbj`d>JFA-0nAU(ib#qEzFaZD!&c0vPlF1PY$YZd3Ij~3v=hZf0%YrV)usuE z#r=eW=5rrkdmbTF@kU0gYfMGX#V42vHqKyRz;zydO%AMY zEp>L5TGtQsuP?QBcD9z*_m`*hg;J@IpDveI7V>Rv`NGPwZ3iZ}Mz5`CNHCHBE6Z_h z&|fEE0w@3pb}lf8X$`WD?Rd76^_BtR0%SzJ%WM)Dm=GyA;(kJ_gkF!CzOAmb)77+Rf4 zhb30&NatGTuGKARU@VB92$Irj8$=*KrJt{@)h^Vo16Ojt_9N{dA`9rB!y9zQl%$uT zH;S@&*A`QewF0{=MG1Hp*BDI@J}v6s1uj%UU?JZHPPRX0R>q=aijWL8c~Nsco&7(_ zGcxv6dE`CVTTDxAB+SL8i|=&`?Z3@T8VSRN@W{N|@^x&Vo~y&>oB9_l-^BQ*A%N%> zK>I7rK!5Jt7LrSk5{OeVck%$!(#2w-Zy^}D3ETy^kJ?{1qY7y-FDf<@)E#bGLTsiq zn*r(u_|x)w(}9S?HYjF2r8$IBucI{U!tA~4je0rjDdG@LOn@5Y7H>DqyV;G$F;fO% z;+I%PTH3@0qoLM~EFWW8#3|_0#l)fC$SHUkzgogy68PLr72#XgPkD$&%IKk*dW4|x zgk^RMLCvMTq1lZ+=Km-S$(46&&z8I763FU4tNn?z68#XmP2?Ae3Sd>*#T?1x2x^z< z2pC{_M7NmguX~DSqf7yhlD_c{D_h{)6$!B!BC;&f8-w^4@{b9r@~hl~;{%NX2ClPz zk;oGUMotrWRF$<%D3M_ipcRpb(aEtX;`vp9V?_{vfpIv)rN}}Z1kp0%CdO!)TL*C; zI*Z7t1*pjCQM{8g5N4X@FUea>@t)&62S0$lMj zGqA-8XQX@6neL=b2~FEYGSl!Oc=pdY0MdeG0OuP3mKzjBd@&ez}c7x?^knMG`*rm&%O{Yse)eXcw+w&k(68@Px zEFV3G@XfJau~K>v&X|4hCeOT*Js1Zm4md4Sa$T4Ah&I@%)`VXO{Gxwa?Perjh5?v_ z+@>^u8m@cvZ(XrVqrp`kAfk-7N-8D+WcnO-DLXT+-SD~EO z&=B;)b0Q)y7Wxi!$uYXn8z+HIArhzt@+T4>qSY8-EKL&RxJEY$xdL4=On5!sD|E4F zrHeMZR@!khKp{#WbG~+)e3kyFmeF3UU9WuvxZhMFyOmfR3`%xZiJb`qA)#)7^kuQQ z!i@H=MH1r;A|&KG>i9pFf!8_k&`H~ay0oH#k}8VCOwk$`9Ud#%QxOZVg1Kd55o^U2 zoBDTZ*U*%kl2GV{aAMbXr(xXyF%~%L-me)XR-)0B@=%aN=v1I5sBJalU}G0C0ss@N zf+K(miHB#Y*a`y>r!qX!YouK_@72n?1W9J3yT#|omB%<(U14+OR-RdMjuH@0DY~ht+8LtD- z0tftVmRIw@1uvEd$mc+2u|+#d+oA2!F4L|AhP_q$xTY!W5_7LSbB+8i6ZBjGF_a*b z2Q=?72M3Fl2@$cL5uZ9W1`$KCS&T5aFNr3ay*7gyF(RyqL49Zk%a-Me(+ytRwT--+ z!|CRX(&0zS{KK1g$`FXc3nM1U_i@xHyABkCHG8#WIg=>2DCRQ*RLS~8X)e}k+h-I83NC@Qzm{Lq_Bb!O!#T$Mk zHcd70`EX7W>1H8c*sMI@C7 z6mSDeJ*r1GNJHMm?t*9P0{F&viPj^h^ljIdMAS`hDe0J(R#(P?E&W}V564m`NxK#j zsEXSDwD62eh!iqgTK$wkdH`lD&yc=}#rp5hU}SZphgWL#$Pb@*;_e8_pA~J+wniaj zl`*O9l3$ToZB)Bhdlxvt%3OsI30)a1n^i&4)?pvjPK_+skO=oOjpA2ZsebX=A%@Laq>Ra2|+TPyUy0#Cb9FM_Vm`$)_FWA!7-re2awq?OVJc)nPm-P4VoGS0v z**Tg8To8}$5(UgGZEu_I9zUkHvcNPthBGbMVm?3BeG=t5sc&tuwH=lQV_o+E1)U%* zN#h4`?M{V}b{a%`092qf#tBd_eYK;txL;r2eyzn0!SH~Y1OEit*4@^=dEtUB?QPx6 z_phHkzS6fa4M9~0=pXA@2)~vVLguufxA&NFa4klAE;rWEy*!t1r5S5)Ew1hBUS2Hp zSpNnjT~2(>YMRm7=g^PK(HyM0%T0%28w>4nv{A#y)(+J+$@j^XnBz0Gmua_%1>&9J zQBBMC4%Bf5?LF)I4Zr|RY`A+J60z*X98tJtD%+?)QM(16mzdhw(xSLX&{KTc5*oP( zyiv46z?(ozvGxpI1LG5`#1zNE8?yN*yAF7hqX>x~1U9hsHuUv?rw(CrtO8vsoE;Sf z$s@hPD+G2$gDbh%I#O08uZe1h+5wMhRYN<~GlBOaE|9w0SW#4Uhsfhmty0BKHlTZq z%T%xG_IOx5_XHVKD~oF6q9F+DK$XXsRyvvN%l{NBVw>nC;}%}^zEk@i82ZB@;`nL0 z)AtjQJv~vYxTMq9j}~C}QjY#^2VSX<35O&gV?xkcsU8kk1>7GEpFpl3l2Gc-fl%Jm zD0%9Iys1=zys0;qJPF!<+oY|<11bvrh3V)J&LD``3SoOD#W}Qz1=QgN7-lCC!O4g*MDV_3Gj%jhZ_4I@ zqlBOu9|TxT32khkm|YeYG05OO*DckV?PQkmCg4hlWEgD5EF$i;_diC9HQ%x zPj{wkzcsBt+B7}lrEH{QV}{+|VSZ57?^q#c&=}NSgkI=6F>IGNN(3WWn%K_sF-tmF zdt6vF&cIqkr>O1Vn1R*+4NC(Xcos>;d4DP;-Ke$Ue+sqZ6N^}d*-eo7el167?xL+g~*u!+(F(q>at=~!R|31E;G z%N=s-I*DDl`F}%Ve<1`4zXIrqK03&$;SeskoS4ebF;B4yP-uJ8~x>Ztb$NVd0wlD ze)Tn%7wDgl3lJ~(m;vnQ8t)67Px4MZaIRw=xjt-=UWBmGu=E{RT3!cB2JBefPdaH# z(6kgvnh#v$CZy?-V0X0N2384df}=_iI0PV%jfFyU0EpF678&>f&aGDvyXRTT{-{tU z5!nKO-xy^M9PsA^64-bW-UkvtrFL7o3%W!g>#nrek%`=y+HFB(U>S%Vi9DR}M?BwIPRiI$OL9B(MrYXx z1Ehhd#9>HhS}FI!R$5%XK{78F>9BB6(py?VVr-x{>Mq8_COYLHDCLx}@=E9}Ew9qE zXpcb%mGC&m!Wa0o0j=LgXy2qAol6f|%f_zG5ee#l25Qwr!uPr|G$x5xdt?_I4+93l z@mAHlNBc5zU=!2M?^!X5k3CacC|@U!(2mo-qy0r>umDdHyIBJ>(YO*KXrGv4Elp1h z@9~qzW98yBu||Cr%>mRSROg7RLg=+sfBqKH!$p2rG>gNeviLxchz5~-%c4}#|f6K!< zE)9=K!0Tp6g@|nc! z1&#w9wqY{!LPo6?7=^&|JJM;WxD&KF=Y=G6#e)DC-2i9-36WjAv3iG}Q$mQGuOH#( zusHDK{IW^5<<&dvfDK>Z){lVOG&iM*qNOd;i}DU#`Qx4ce;Y40gEl66(y0#5PGU(g zM({}-o9ly_Wh#lmB+fV>u_}vJfD9#;H3aQJ-i6AE`6me}J}@UufWX@9ZlP_dnekz3 z=Cd`S>61a3!UIHka~O8g2Vx9EQwpfHPNa>J8@iiLy3L#=aO*@%x) zHPhP=57irHDy|c}M`3b8MI%p4^3}doagzffpJC;S%@UcZMq_C`5VNfaT;Kq2w&4M` zNF?xc$?(9DEA6Ba8WuE|8;IvEsOVA(J? zNL!E=u4UXO;LPcvwSr3~nE^2_a=lJAxK^)DOo7Auk2T|U0|nAvbS@CrOOqBad?tp5 zB&z6sR)V?VL0P}#cpj9zF7B7UA$oPBt?gQXQ4$|d^guUceKjzK ztt3gd;k5>dqIXzZv9P*=Hb8MWnavd~>^?o!)$WO07Jf7Bv+68p!7jC}P+V1M>CL3c z>KDpbO+Y{L19^vjn?@^aaG-7vp(r$bjW9ed2<+!yc78jC^4{woIq;z4 z+jPOZR8ucKck9-NUi)#V`QAn$2C*$~vt823Q&;u=OOX+~flGnSRtzmVegJOT%lAKb z!NMt^vrDOHgj`BMfjwq|5T3#pCump8TlBwc%eBX}8dho_=-qa4B6>5Af`@vvH{DJ} z%x8-_r8s!vR_4Y}DGoo1oSRvB=CVH|7FvWuH*+Ix_E5|`IkD8my!OxYarJ{r_NOeq z?0Hiu&)m{&&KQ|^9b4U!Y{h8-*6dh-J^db!78ARxTUZTs52v7`UCHVvfmryHaBOlB z$6*X%6<|s$j7V&<|6#jhU5=Wr1>SzjB-J-iR@P?%#VqKwmsVEFoZ4~>+Eq*w8*S;! zEk;^4S0?mPE9rud?lo!gcx2MeCmgsHL$LR9*>;4rlOaT!<4o}&yC*IHw389vMKDmr zzSgz2Gb%7$#U4X(O|G}I{k9YJ-f_v*LCGnb{&yc0Cu=A2F7;-Pwoj&EEeI_v$EvflUFo53bg>kJG~ z15e*Z5Mb=NDl;cW5hEd;0=t^>5QY2&|C9jmr!?=?`%C2Jm;RjpSxM6rqT;IGL?H3ch|!-F z)4|2ms~8L;2pH}inHAhfmt&BKpc9lK4BiKVXXctJ#n&uj^|*?; z*6U_SnD(@KCMrrP9v|W~XT$#3QwBVfEVEbO*i#0`6RQtfq|t5}$Yuw!jLxJac{6dm zEK_3a=4QRBfsA_nVbkP5aJvc8Z?k}%$SfzE9A!PSM6-J`hAna zxfFXCISw-|*mP~z&XDhvdC2rHg;e0f+Sjp58G@bVN#gmM7Ks>RoK~J?_1%jBB;{

    wEiC+^O)Bo4`pa}Ch$6Y~sZerdq;WH9fkipuzD4`fT3so8}8_SzC zKpu(QgF~2OI1^3deNyc!v}dB74jzj_O3c)ZOR{UUQr1mGG)MtLv_?$w7*S##r`lJr z1`eow=e@k~61A^vK(K9!g{&rH_trBB#nF)#aXWJ?TS&G01nR%O_921mOvsLYDaHgN zGw=dwpq3|iJa}xj91@eD+P@5sbbx{cyo4jpLPG{Ti+XE$4@4_BDSUe?IX8caf_(ey zj$ivHC84B*CnFop@chz+geS$*F=*>oVEaEa=Ij(-U_-~1^q$YHckI>v(s+?z-yZER z#k(UDuVdyoF8nVHC~;TMR-DcK2+rmnjQc&V*8VJp!Cf8>s5n<#E?z5c7atWr(vQ?n z)vwUMtba#;Ow*bqHzSpiMlmS{6>q?=KK%dn2vP2vmE#(=k-_3j;K_dxs}7#?KzgnDzD_&v^P#-s2!Wp5}w&Co?9 zsBvE&B?%r=4Go9J&MKZeUs23(zw%a8_g93cC+skEBJ@r)Dz_?)da!(_XsWEJB6;la zgmpF~8B|5}$3aS17i|Vsgp%%xDqrG%AD_w5so`9x>VhMF7xM8tSFF2p1&-zSXl{%z zra*Yu15*`R@AbSEW>XlPeUsM@>{aYv*X8lB7MsqR%bRS{Q*Kzf^5&!RN4{yr%Jpj} zr>=jFzz0fZyz>ikxxp++QrnVzj?Eynd!tFZQ^=w|ZIH=cqN^n{koz^v6@nt2mSDul z3EdnNU;dF6?`NHRp!y5i zldu3z^|o}cYHuGc)UIeLr&6sR$z&7Q)v$Cr>3{{`Ls$2T@x_ZT-1r0PGs$?lPthA) zQL^CZO})p560^QP9yK0=a9GvY&{%WQp6T}Xk-T`hvKzwWSxHR4eRph26`xDA=PEqv zCoPGG*yB;llpSdU?NqE05q;Pv<`(3Rx&`O_b-8JJ`sSmyzhQdivurxn;*$nd8Xcw9 z{ri*c5Y_wJ&@m@NM_1C&9(JdaboEv3Jz!h7e;(;ogCt)i6y#8|R5ny*;K`v8!Ig?XV) z_?$;J9;SFnadEz|Fn3)0>T>V123nUD3rq4286zcjgBYq<_jUE*6)zZoP7RVoR!eD0hk>D(adD-&6}ZD1v*0Rt2P3 zq7hOk%kxD<+njITon?gXFlXfBdKbkk~eCy3n)2%m)8tYibylo|Lq!SEnri))3r};7% z@qV{O3G{I@L)}%olNeXZJb_k~47y^Z#HSvfFG5SLHqZjR#S&K6lnpg5zEtDFAKxs~ zkqb3kMw#D-(P&^yhSXSDX7gCRBq-Qqu4EU2*p;wfY=Qg)@>tf72F}N6gZ6PAj*=S* z*eBDM32Db|9?6MyoF*u@Iw<6Pf&OQqT=JP30JW^R~x*fRTQK>AE8BlHsY zzNA#5k=YhP@K$=uo!Uk6Ez;H&!P4O*?JDgi?Gc<*!rmxcSj`rO@k(m2^r>X`Dp=Z! zp;FllwRwX$16(gQWC6qVFj(ie!j{mI8kpRJ8CM6}yBENYa+!NHt+IM6_R~LYu#~rx zfqki+2zQn)tbc+_$q)#l+11rW4GM#YV|R5?Y`~*G9J{NF^y{x?wHH`GD)<#vKr{-V zoV0Irt*b2;(#=-@AOGAi=`eAw?87V$_fEFA593A;A{_>w9)Y7ZpI_eHGnLP`rV_Z2 z1QcS~(1D#D<#I>ofkQ(Fb&#v$prOGHZKbZRQrm{X*rmVQHrl|7&gOQ2+V>QkP3XDHr@tcu7$91nL4U7YG^U6RdqI%2E_M~`1 zo1F2<5MaUtBX#@MJm5K`BJ;!F#C-5)KJ6U({U4yY`~V+MdkD-yiWJszL;m#?atj>` zI0`0PB;z4=9DKzsLe$P-N$9mgSBH7m2qN`n^*1a<$TOnBu_7oVU;siuy}w_xBtxc~ z2{K`gT>(@KE*`SsR4y2@ej(GT;yasCDj^h7My|w9BQZo#fU{3@B!n0|mcqb*)Gn5p zcHhs~blO)xnJ;UgO@{F}mH^wt+ISpXRpUwGoqokS_ea>=G_EyGuGes7vl{T4eNL&F z&<+0sy5Xx>H@p=mdSCb7=!54ffS;)vc8-SX8R%uJuWnSvK0Q@w^`o4TU;0%Iy3z(s zDon*K;4LS9^JAs zpE+!!p=y4Q6pL4XWEmft?<#JunU?MSs-t|fSHC(_5GT1wI;T?mcMzf6K!0iMK35in z;&LVq5my8vFZ5vrXq^uF_s9UnpOst=C=zjI1^C)bYi=;lL~PLwp1;)gZNs6%%5RXCgk6 z2sf{zhHnm^vqWvB9%j&3iIVcU@T%d}#CcE64xQkTsAahP7bTJhSJ)2N*;H~td)tCk zGDr7j1&MN@P!19q3xjOX7TU_;gh^XFZYu?_*_lLu1ib;Q;Aodd{HngCSCad5KCJsH zGX=!GyWwqMhCQ6YW1Aq;ca7@dzU2M!tu)ARDG!aha^4~>I*M>QnumR2%I^pgE!ji> ztn8QkAeF+GXQFD|l`zhQMV=5Xi3Bb@^GboA5&{WYJvudpE||4}esOv%(yu-GDwFLB zFW=q#UAqC|4~wPJ_PGGfSK2Zo#Obtwy>)^BV-kq_rr7%soM@?F>B6eoZX7XM2aQoV0pb91&?|->~hZl#9X26#_E2Tc9-@k?Q^(C`bh|E@}doMKP(PHPcIRdKP?Ux zJY{_yHz%EqEh@ww#5+<7z=e5vdyk=0Pb0Lr$Iz$Ihdnne`!t%shknD#LLMmYce$?k z4Vk9Kv%g}G<>~Ln73-uvf6M~#vr!6fR32kif-ZAb(X}T?h`|(`<6+_7LMBE%&yNe+9E;a(Rjeq~au-R^%m3{}Zu^vP>*HX@U8}t_2c+89r^O$!~0e8e( zx5o^-_D2ZP`r`|?AE446h?CU5Z&;f=x*CHn$?)5ImZ}QbH zvCONi=q7OMDr(DBJmNeo@b@Dr($fp+h1*KI~2|AF&(8C>wk(eCZ4j4i7_+85qmZ1ZPXo9W{Z?UzHP4V%ACqW`!}zeVxNx{ z^gdHHg)P2)T#VO`W9q|4hL77Jjys=SbK=iORPE<*>jboVQ;HoscAUqKInn3s*da!J zGV82eo-8(4?YiP}mt>B;B)MeLbw)$I3mK^Tyxu}#ypz==kZP~*ubqS9Ui&nJ?9r)$ zJ)A_CSIDlP#+!}9>Ro}8+Vs3_Vw?DPYzD9`?*F!Jhl*_*pINpG#DP389^2}k%^kn4 z!B+PJvZu9mO@&Y8ns>+L+)ewU(jr`{t!_tLM|UDlio5Ts{g_8&)+pVvmar~gjF_Eu z)IeQ~Xc&9F7|~E?D8thShtIkgQQ%DUb@D6v@3jlb_Gk`hhfg5~p-kgZ)%mZK=c^}X z-IxRK?7MK9bZ?#2AI681aZ;IVlW|xh>#`6Gx1QlpvpU@zpLW(O-H53WWL73|`c{{!?V{Rtk;NOIq@%-iH$c?RCy>ZuO~ng7 zAEYj}#8sAYY1JOU8`~cp$%4Th0-vJ{ivr=j9f4QFhcD&jyBv`EC_$ec6n><5-qn!vQFO(guhZCVcO0A11HTaJMV6*aJ*sNRtdBOX% zFKfRM9sq2G*a@4JH|Ux^q8}Umw$dPuy!Q@|gg5^VkR-4HVcD~O4dVF-Geni>E7xtgZuZo-MXfh9>xcbvb%gyT zD8;M;(bhm%*VH@*eMnK&lqpPJux2$lM(0fyCF-j_jA%%N(#H^P&U?Hl97sZG_1`6F z>;l5$?lc?z#LwK><1WVsx>W^xEOb_JgRudMdJ3b(SvM|3mNlv`75QOMSlAO5_FuSY z=OiiT=^FCZrN!dnf>QB%e7Cvi9?#{w@U09sRHppu{(&P$2%KRR5|o0$t(D&WI!O6k zS&_@<&(v8yl;W$;k~WGySm-$4Q%cd<>q62Fi1LvRE@9Z7k|r5?^&7TDr=QYlOOVF7 z9k3o}!^p(Xd&%}hvP2j4B4ehvCDYf!1||<9%FDV5D8oFRe)t4Omdmg!&sqsO0_?}C z$=KzOjQ>B|QW zTeRq~enD0wiwkasN~%3(MHi_x)b~ZVGn*Uk6jGVC7z3+vxtwmd=dz<+k~HZS9Z+&b z<>0{uhv3>$W$jM2yyqCnzzS zXkSA%4i2oE?<IR-{UrVNv7Hla`mLfX1-_uz|YL$jt zTbJf_8B!s9S_Wapl6@eCk=S)GT_%KEJZz;CN|b`2HP~V;8i1h$9z-Botrc*|IJD5S zyx2OBOfG8gSl9ncYe`qv{vD`g;ksg>M0}OH_!U2MwWrEzH>S&E7$f-3n(V?{enGZx zBQ$J9Hb){Aw+p3PVeO!maNHCCMo)I6k{wA0&EO`&HWl-ZFD$eqW+juMLkIbxLUCCu zb``%9HrWP|m=u2mV)R2EbR4xjT`CPEP$1^X>uW2m?f*KKND@C?u(qO(GKA(Mg#|6p zRTObqLPDrJX3o*xE3ebPrLDz{ZihpYd!F_Z#dQOH&DOfca+{HPtohXg#cnfuROv5I zl=Eh@DBEsUrInk#^10P@EOGucZLFlan{k#jU%!`i1AJMEx;1a%zyCs+WIzJre?O@| zQT4KB!V@~y|KErb~b0cu0e;n$z;f3J-s;E zGEYEmdgTv3_$`sV`jALo-6*$yspycG=_lb%fOBE{qQRJcgsyob0vf9QrX$W2U(p?T zkXYk8QcWuv+GI#->$m-M#m@Q_n>NYPnvYVLVaWp^cP3^4ir8p*^mHFX+0TZQ9ffpiq18@5BTbeVP|WX2!D$_RfCGq&W$&t%pG{MoTcwDVLBv)LNl48Oxr zF`s@mKcAon-4?14R_qel&{}_6+nlyeL13k~J`ZaM< z{nJ&SzyHcJ_VQ-Z?l^?G1bhfN4fRW_QZK?oYg9B>2Zz(aetJW{HWyvR-g&~&Ubju zU#@MHFP7{0?9*258104HHQL>p*8FQd)1vv#oN#lP2~k((8Kv$Nb7Y8d>R3Q75Exx@ zP`}4uOkM6aIu=@d$wPPB(SZkhcYH`XFFPB#-Ln^CErpj0!IXh#1aOt;i8Lgi{7(H-Vc57@?6*6U~KyvR+Q z%|2GXLiUk99`1K)4`QyL@%>1$vM=_D(G1W1d8N6QiF>nT3sJ|d~ujF4|tG*)s6*m0^?Ec$o;xyc0KHa!FJ`%c`-@|UQIT(lax8V4{Gwi^o zZ;Rv4^41<$}att*)XxH*T4D4ZCZVxM|`wvAcGzaGttZ zjh#4ZR?}vA#Wu?v;oD64mdp_X_K~2dE>$ZA@RQBz^;#Q#wu-`jDf|3|Q0 z&4`tCyP#;f6AfJ@Mw<90Y~XFy!L21S-2glsl^xDSqQ|=GuCgbUVyw6`=ezu(JYR%- z#s+uA`HCEyFT&=aIs+2ZvN$a4@AyNk$aNBQPF>-E0ritWY_4Onm4Wyk88~=F_MBi? zt@+&Y?&eDt`5H*FTViA%i;k4UOA!MjB31?ygU4%MiVx_E!srpmHtrdjH9n;9l~!y6S$}F`=YsA1wY_PjcuXdi=L!#`~%7TQi%AT3~?6y^6c3` z-Iz|)V8-r~m(KHDz!GM@`|<*!ffrOF>2n2shdVW=qjSTmzfzZht!`j#KgVuyt@`!8 z&+%2^>TuXBP?p{2$dkT9)3;%dDA?GxAn!BH*Nlx<5WRv~qWh_5C1(^2+?Q6mj z2jkwo`{?3J(6#u=(&5pN{izE+fyvS95o{yHxKkS5qOB02&YwK|+ZoMo_>;5fzPq9TgONL&1UtELgE%?^v<--rLU( zyZHaU*|)QMdzS!W`Tg8%_U28Wc~idm%7129+YY*-NTCNbxNnOXIaB6=i`MFSGjq+N zE83z=2h&_F6Blkn5{#gvG*c&h#jHVX?SNzjmz*!2PNrM8WKZP4H`McKP!Ri}m9}$z zH`_ypjaqZ6FRKGccTG=@p-s&%9=oAGh3S+gGrR+k7DNZVhUANSW6|s2+a*Ay{G{=$ zSyQK7=;E~~nfU?TY2{2U46}}8rgY2ZL)vMQYXx+RX{3+;o)cGyx%5ydGKHlS@sAi- zlT3L$q|z*GBo%B?!r^4z>!v-j2+FgOkIkj9k%UdG_$z3miKMIW>`F4PiCkt&*e(iW z;9ACX{`)CSU2(hdI-A)*PQ<8UuVoq0DOxmn->5H>S&3+|6`P)e9mrD2 z#;eXhu?gubj=;Obhe8_fRlxX9(k1zZ&W9>8Hq%@}=bJ@vnEB#yWV{t`a>M@O6*MW5 zEVf$lniwgl6++DVHm6r>T82cjD00K}x>V3j*DBgg^-WrV8FxSFnq=KVI0Q0eV*DaE z=2Za04!CdXrG z@d^n~U-))*D2HVOzAvVjLcIjeu!<>>UctsILyvbDxt{Is>;N0DhgENI8gpnt+Q@Ll zMaYxV^4wOTLn~a?8{B~8?-Oo{in`sB%##(;Ex1%^g5-+qgHIV89HKll$h;pr^0lOM zU`N!7#`Qkd-mG)GhWTRHFXg$I1ocy-OEcIGggZGhe8L(W%aFSwGqD1R7kiPL21jO2 zFIJCRh^$h#C>L4r7X>;R)ZIbn(JFfj`AG?$U1@cpIFf!jl3=#KG}WKWj^rK8pc81x zqq1z_2wP>T+up1MCBBZjjTYL6vVqHriyXa3xQC`?fZjtmdguf== zkK}MY65RpJ;?7FkVQqK5yeQE`=+>i}Z}QyU-LB_ef5c*)cX@?51k@ky zkz3sG!xmOpI=wmgR~bZXC>+O@-+R&?H! z_#E9u9z7*miyT1r?mgU^P*d&=FqHzopM$PI(8ZLDL3E`yGWH(%)vCMX*h`mFDFT1W-8pKwF z-Ps8uzT+hhz@HLnkY2GO4fiOZeK)e*qlX+HyJJWrp2X|1(;_SRKCyg=0FdEnH}5vy zgh7nWkpa|7j}r=$%vJbRDiuck89&WPur#b~$>f_5g6y^*k(Tg^==h*FeJ`V#?HP{` z86>QvQLbcJ9L?;lh6D2nsqah)Xg>@fU5yA@IAHP@^BjTF?V&j00V|muCl0MNZ&!&4 z`v9WXn4mi&GOxvhHc1tnBE9lhMj~o_1lu~*Q`rh}Dq)z@cOK#!LUbL5736{kG{kv? zpXCc>l#43(zP>dyCR-6DNrLYoH0xi$ygKnYv4h!x%o(izjC$?{A|ZIkjr1p{_?Ou;(kqd`UKbQA)NN_ZVhDHa-QJEz@|^ zU9oM3j2%;_VHCNf9UyY9xHnS^7b$8C4GD$85=DK$YmcIoVh>LUKAfHds-kg5Zf&v1 zqgQ~aY>r+G@U%eveUv4nihKuuBIO-3oT1ZL=((9tA6Gr%NTDh;xO|%j8wesVB+pXg zdaew3<*KFcbPsE*^?dL<6Jg>EXz}jL)V7JXqXH53TIMm`L=LNHL2&zW*1eV`U!xq; zInx)L=%N@&r*!n@vzcyuHqoCn=*TwoS$yPswi6?+FA{*Zk^{%_&zhata>&BMi%vZ9 zlDXNVbByE513DZi)v^0RR4!oo9l?z(F8=EDz~pMU;|Z$mWS zy@F}#E6f|dLJ1n7S2zJtgsvmlj;etZ=XG3#!#6HG_xKZExN+f-i8ZUw-4WMPaZg+r z%NJJW`sb?EwRsecoD1t~JqrUs>;Upasy79FkE0&DZr#-3o434j*GVtly!j~CvSHt{ zQC+GIgY@bY@TcF8Jq;Q}T4yms=QWK7;ECq7YIG{8FScR}a7gnM?7*kazBSD_1^5e2lC-u3jCCD9yxf`~X_*k$tZ zpro&&Ly>(I5#0r*%^SZZ <9Z*%%va*AEmIcCH(qzPVy{hrtQfK2R6ls>MR>kBYkcZvO10GxyDhPkdBd_J$ zr-_~FYB^&~fJ1Pc^*~5AE~WV`7LnIRmtz?l(#3@P$YPK2MfR$9Aj$M%5B1o3>|-xv zdNKCppZqxX>z6X&`gk2c>saF?W8irKlaKs!K~KvqzHNwU7If>#zcZ2L4DXT8CI9DA zF)#3ADwTa-z~Bqd<{&S7Cf1%xjYu(fVvndbT2hM_axgP8w6Z;P3I{M9$Kv zNB*&Xbi2ia=R!`+vZcn$cJAC1Qy4{v%R6^A-pDTYEA8C*%#Np5vzuef#bL4|>=j9t zF+It-e;AA1f3Wdv&(2QHKS&9K@1q*GT)QJCoI z-8j%cU#qRl71q^i3j@8gwc7fEm*sKm@amo$D*+I#ce+wpox`H-fZ?~gQXzD+QgJ-z zVB6w>4C>x@g)Q9t>M~R=kx_MBo@6EYb=BHjKd{hBtMZz|=lYSzuc=n1d-`Xq)iqht zp2@DMRA+ko=4v%i8B!hEbI{Px_Ffwq_)cxhz~JVpkWG!(yA~wBq(rLdk%A{g2dNTB zanQrLNafN()W6SdKspBeun{RA5vj#6t1PfkQfkxi6@J>Tf81q-B8+=99Jz>8!DB<= zm}q5CuyRle&l8*;A(+a%w2No(6)Vier(L!FeQ{w56^J5c3d$%XhQSuP_9WRHub{nSiae*_!lUCM!2J)KC7v&izT3@SO4+Z_qXrjps6NizJ(_IFX?X`Rgm_;gLL=`Cavu@(cCNoSFtc`^k@W zqFpsM=U|&yfzo+8?Kp2q#qm%f*F%;gA_8|P69&~ZE>O*6E3d|y8}^Z8E6PYQ%a`l? z+DZFh_K;dW2OvWIS-wvVJ&Lb3f0se7 zN_?UsB8c}?X{^DLa=e1fOG9y-@-aYt?7y+cU_seTW_2x_?~B4Hio*UJ+f#y4A6C=q zbc~R{i79BZ>;`{il5T2js*iMk_kW2ajTH0c1Gzgki|8F+l538UO2y>d^nS0WWP%3c zLCajbzeSfq9Ww;Guo^lCGWu+1T5JsAE%Yi80N9k7Z7q%3~0ezL6Qxq6zLTRrBxmf%OPnV zBTz9Gm1fz6Y#3?Vq?8rJHd8z8*G#&$cz&a7Zq2xn*1H>tljh=^4#Y2w`$n24H=4Ld zCXyK^Sp=QNYuU}yi}#gXysxnP@=fM?!*(a-u7944)kq7S!!nFtBB+%R(l_5nOBLJ@}2!$9bfl@+&J3W^(hSiQ|nwRrHD zDIuD6mLBDZUUgGJSc#)@NQ_L>%y|%FWyvd2WzCJ(3YhhW8)Zy+1-to_6CiH=;f$yC zKzMlELt>BVtsl{R{!!cB@-lYIGF#?fYHq~3lmSzbV3ZAkt9dBK-Gjx&;;Ar$y>>B|Wa)7|)J6BuTQe|Zqu zTT&-9KCkIB+iB8gQ*EQbDxVyn)^I=UjK4c(E-PQIlNjy~iDQYrCJJ zJBix7t(`iBQz>>59eV51Bq~1QzROduC%5I&mN#hLV-MG{7ND;QIyWE|V1!8+FcP5n9DX-kJ`EYOr%4x~E$thMrUZ7F6AQ%X3 zN+{ltr9G7z%;m>ReQabxZ=|oZzFM8C5i6s%f$UZL5R0SB-qLt3KaiTV5tFqQCnLfs zN^&M_(o`#Qx{Ml-B;}MZ;H6!QJ<$wDcJa<~Ek@oK%qTW46>-}Bg+4G~Y}TMGPt

    Lq+H7C%#(wU^uc3O4hPfY-35rUZZ=<(`K>Wt@JxAa0$REDp(ec`4 zdnZ|E@_kSLCg~ih`e}h-MU;z)mJmDyeBdEyNc6WPa@#j9A(4yv@3=(n9eBZwQ?x?Y zYgo$DI2At%Pg*WR`nwU+96J{7CMn$4QIl(Q?x*5UB5b*aYk}g0W%=L^ovB``Dy+x# zHtR#y7hp&7TdRKHo3@s>&kzaqZ2oqeUv%BztE zsHW>LD~+c!Ih+^AN^)-rme|@|e~Cs|jX{vgJqB&H{u1&04>N|?Axzn=3c(T#upnsT z&uKEHINHVz^kH_<(3;TzW+WG@e}VNgCPM;vVhGsP3`cwj-w689L`J+fG34EwSgt;# zE9lH@Ix|`p-z|@6N_wo^7-qM8F;z6*7|spERB1Fod^b-GsNcwit>nv|uhygmi24lU`N;_wqY;YABCEj7pW!BcZ*q$<|45r#ZRhzOPT60g6+7% zcX>(}GDpNS$p1)I=?w2oTPbzgTb9P}ycsU#%EAl8oDhkc7DMpQS4QU59v`gmu>KP0 z4!J(NUbHy?L zUobZ94{URu<=U{M;-Bxfd7DhzV{A5X%*GX$wb-m28?@ubH?iejPWISGqA}RJj}qee zxwGcf<`({bSPzX`{^hpc@qCmp;Ixyu8M0gcQCnSI$&CE7s7LDGKv&?)0dkyqe)T7? zSk{>Sv3z!GjKeTU0Tyn(CWyy6J zLsgqzVEF295tCFZs4rmCd4dG~(rKqzo%`$~tatwV_Sx}eFU3ZINxJSb^{v{=W}L*i zTeoOe+s*mfh>TqLQvqirih9$mpqI;J*Y;%k(6eDS*7ud!=^(0Q(t~-xr{znCT8mQE zknWSXyEpSi730dD>^gm`GwD(g;Wk)<3rA{s+xEE4=%V)CddMd*) zsM??qr-rM%&Ss#qeV96Z33<^^tX~R+h3G!wapGxrgUo2;Zjc$_0PaA7dZ)xj#q!-J zHfqz7ZQ@x055BZJd0xf3)^AXG9(T zXe~`Lhrl)`PSxkKqbvAaun`E~n3)Po3zWQ}jipkRbORpQmT)z%k84`;q-uYEwFY_8 z!;sScDD6$}AnYY+3-)D{{bj3X7O4K2gK=d9+6m_Uv7f zKpl6N1W?BT7V|&?CVG3n%!f>|C%WAYbqmNJ(f?R!*4ATJC(-JjT7 z&an=KKKqf@25TST*B9DVf(Y$}r)e^z^<3upX(qH&m}{Hko^my9H(9&`#uF_ojhU$- z9pGR(7g~#hr<$j|$J=fkhP|1uC`TSE(5@oMDwA7xf4>v5oUatvP}-57I7TWgtbTnT z86NrK1Zgv{*2zt%#MknB+|`bBC{AH{&TBN*p{RPCu)afz`-+q=_py;DBs3|n{#bH< z+qH$v_J(03;@i`=dkjT z9}@fFEH7reLnMt90EC4vGtNVQ zg;y3t2eA*m0ET~hnUlPRCMuJG89O2%&HQC^!|LP(M=TlG=xxv2IB#CsTTCwFf7(o@ zh6U&tpEA9Y^7q@E$Ako}H=}*1?pL~rUA?QFMEtiUm`UY90Y7Nz+#ZCWd}?Otz&~H< zggWc6y_Ckc+a3<=)O^ZQtp~%lwAZ>fPLAKuI^nEZtX0FC)}ieN-%Ukv{!@0femI`k zVx&Wvi-JZ}Q76zU#U)!%KXEgtj-iX^^DuCaet@NSA~u1cs-(=w&1jShMosc`8UW z(F1iJM#Py?osOg&LkI=Gh^-D7zx6z&;7Mg6%hQ!a_$5(=NXpH6pV&k+W+l3W;+5|A zl7)@iOU2@raoZ=E=%N6P z8H$EUQD|pLB^-uM*gAdHKHHml_QUL)+c;c5;HyD3Zgkjq6$~V7^z1eG1kEveH2oP& zu2-htwH_^Be3U)b%^^RJACgOy36R8-B;S6RA|n*1{uc7`<+EJ-36%cPwBytto!HA+ z_(V8g_NdpY2V29|;jGbpx%DdWaXxST+N#UyGF(P{?-;Lj3pZpFMXnvn7p-FuysUQY(Jhvu5d>siwbjn+LI?o?1~q>`+0+K1kF&U*13Lz#h{z)u&M5_fE>5ZhY;uWaAV`_CUhR;G7lEA%KBQwZaM;qN$K|id?pq<8Ec6wpz-Kkss2r`o6rS29^ZjO>xIJ9!Fk)F2 z?KV&%e;fOVkLp`Z-o`JK-QpOBRlRH%t@tFr&gPpn&gbx(;GgHTyd8V#7>zgaYkIJ` zB;mpQ@-BCs2UC;>JMQHNj4`jT{wqdd(M$ED)BV{Ii2i$h^s5SLX&`2}^d`_H=>B|! z^K5oFpC2ut>qv8@7{~nupTI;s?$r=z3F*F=cuSSQYa&Mmjt9Y*M)`N$kwM$Tk)ukO zCD^WM8$~1r+z@`oV`xh$(cQ=`D#w`>P?yQ@&7?|VJw}Rr7#7`ZEsXdjVu)4NK_e*_ z=RGdbM?+HB*}@F!C~U?Z4+hGWEn~UCbfzzjT^=e+!VBz)YD$ zroLU;(AU3p#pW}|#@91#VY4QeTg~Ox)`W7%OGvWPh;4m&WqDy}1y~`hTT8L=W+lf$ zFCu(xHdl4n+)@dj%}7%Ot?X5@P^BmT$mTiOSFLVeIl8@C?W1Ca9ns=eU6svNVc(0? zwkCHbSFd@*_93l9j_jn2z`yoNx%@;gC_I+Llt`_=fWZ>xP@2t?-7kPUnPMYemup)q zl{T)RaTB=|v*5E?E^*1-Y#3Ej`T73-g)*uuJiB*ufB#G&MPNPDx~Ljs%Hz9|YRmPe z=a@2rDjG(7)RQhQ3=C{4hqMg%wp=k^ELGUfNZiNr<(t*j)^_VO>l*7OPy^q${(#|D z5G%#3*db05XNV_@7qmv#*i2&h&cfLyvFuHjI|$}2Vwx|k)FKuPnx;q)RuDQ9!-6Za zc}DA!OwECwAMPB8eZnIet9iS^Y`dk#hJ+7c;3ep*1wqDOy-OllSZqDCSscj2yYop( zi<5MTp1LyKKan$uNR#C$SVmH!DdTDeMCcKH^g6zsT#xYzJy5AWm9$(gv|vugN{ftFuAhLqo*m)`5dj$IeI*T zfBEOgEd6FF!m|$)!MN_jf&8<@qyQPub2*UgB^wC8~%%vi@#A7DSd5yHd`oU zbL)EKtsx(z*x)y>bKq?Kl&f_B_IdXGY>$8Hx4O1&tL-l3I?{E(URw6&NYBTsx7} z?YZ_&>K>Mw5-!@krPP?Czj53@c$Am8l-YhDub`oJ5xd0)nF-u@yh7%ZInM&Nrf^!) z`m}Yanv=I#AI64A7v zDH1i-x`~NCD-dTwj9Bqi>{9%Ry~Y|0{!3YlUVJ~-M|@2JNB=90442zLAp?7up;Wx3$%9Hri>=CNa3!M7j(Rb<<5MqMiw>zHg7?Z$f8 z9TN7S)@?N!S%aF_@H20}Q6h-hvNs$8aGLa73$g`puxcEb=M z_A~L|FAkuA{tSA^ngF;F0QXU8vD5W2cz7=LQ3LwCm{?-oPC8V{wRsFhwyQYJk7!bB z_=~H#S3r}mmuyt>SR_pQVzv~x+%WMX1Kiy>gBvVJ)a0Ekvhs9>E^VB_Ep|xITAG$# z=!so^j3Dj<@gfE}ZFILqxAD&UV~uLHuel%q5K3BIZaz!=d4U zmp)#p&h?dW^jVc-I8S_q$gL{Dt8cDa8IK7RC-xXHa!x2)&?$P8%OE(EgBuN%OVhoG zUS3@&tS-aRJ6$RdMJ}adFdTOia=nC!5-=fGuACQkXp8xkE5Wez)y1~F_S|Vn`Y3Yx zTs96@_v1bP$UP`-{d!b+&rw3=cagq^Et^p0XPhCKQYxOHw4uqjE++kubt`OqR;(lU z#oTH~oVc#IGM5|56vvCj)s@i+2n{{5cIYjN)~5)uMauPZnasp!WpxozGeeM&7T299 z9PZB*^3)B`5zP;0iYsw+Ee@?orLsDkLP00arc!H$ilew9rfr<^d&GO%J| zLARv3+4wkA7UakMWUKY(gTw$On7>!-&-*d|+&@TkjDoo~=e=S)#{9FpEuqP-Jr7xU zD4WbUjl&tnOl!5!R(~V*YS+F<@KeGj<~T|s;DSASZgH7dIoOolxQS(xtKk<#c%nj9 zbF9yrntWEr`78x~*2H*#iSYm(;{g=NKjNDY1FeI}OL%JuKbj_*Eg;0jG^)RapJ=n= zIPzGBObgY?d-hm1Xoe31SL6fM0_dY%*2BnF20cw`Ai0r$JG2OJLf%9C_7~j|u#lPo z<=EBcthF#i#2W<@j*Y*uZrSsQ;(i`w_Ci0VQpgu>dLx&)POS+iVq6pES@Y-jS$VZj zos-Nd(2_SZb#;(9TAYHJb*D!EotrD8dbrajuwQ*1o-#yj>3C~|H`_VUJD{eQy`5HJ zR(VMk^xl;#EPq+;fVg9q)y~}2%W6l&Pie?|9#2m*2->IT?l$jan$aQ<1v*9$$(33p z1LiT!;={sr)J0dkPX%zED+D2ir92R0o|9xoTbw3i{KjLMPyOP!KbsvXu+k0=nd8+b zop#zWT$UDkJ=tiP817~M~RCi&i zI6<81u(h9FF?@INiXr8Nyks=qq`7I|F)yKUb40?!RHi?ju0^yI#svg19JAiy#n(naoqbH-$XloXc$D)+%`!h9K`uE<_-ahUp&2qhomGWo6G?X7iAB&}3ifdBiP^ zqok!#%q`6hw%X4vlj`R7W(N9-M$Pa>6*Y=d8qGvcr4~0{QIlytJleWJJxhMJX)o{; z>rMZX1&c8pCqJ4f`?VJz<$!Kmbxy>n;(YdR>fs|=BI++11(U<;=VyArB#A;O70728 zcl~^G6^ML>ao5k652?S8hwWj+rK!IUYb%ogI1s~&m|5&@oN9XkrT8O_g+DeiX+O?j zqUydRX*yBS5f^`2P=WUqwzwep4Vw@aaQ z)h<_WlE1f(v2GM+%W=HrWDEaSa1G3+oLeM?n%q!A7!pjf9K8KIS%gog2!ij|?Z!sX zjGCDZi`Cr=YxqKNh|V_AcY2OvBpJ;di~yz4=K<_29u55V!XcCptjWHcaBzLzZjA67Rz;He)6?)=q;pR&+^x zD6R3sYqfq2GV2qxyM|aGZVe549E8U!FO4goip&NvS9v$iWOGPH~-`794~|am9?1 zim4nhT%)B) z`#~vo47kNunN8$aw^Wh99$)3S)K*$r1kxZIsvA|vr3O&r$$Ev&(UOb>h1-b27y2sB z$EI3As&bDWbc`KvC!w=!blTMjL&Zr?{-z0cx)+G z%R9kiiw1G;Zx$Ve#KqxMDlNW~qF15OhfzVsymf@e){me)KAb{qdIQ*N!&EAaYH6w| zN=^;sb1Nc`6xFEmEN-qSs8YHd!Wr zRW<_Ak8Kt`77yj}=)g2lot&SCEKGjL+~xdGE~*~{f+T-5Bpj*_%bAfQN^{VG?bS!8 z`;eiK@h{7lwZ@2F&16POmo@8h@_E)J(CK^!&ZWN+KIta6 zQ+XW^L+uY{vuw{df>6+8&{_gYdc+e{5%U)zOv|PaSash?T3k*8h4HX?{X`M24 z&47$)RftK+LkNlW^YQaZKb%kvKZm%?rWPdzw1ix=FlJ{9J9czf8~yMi~pL=`Fd<+)T&O zdCUNn8rcqec4&9PUF`D204VbndHS)K@Wm3kjpR+qH5KNY7`iPMKPC6r&9?m84L>_% zS_@3-Y7)KKl5SkFN!}@#MXR?5`HD=zNVjA$PT_#$0P^w{xg`uIAL;Nx%Cc;d$-*)aE7KB$wCIgROWHYDd2`)%$o*OwE zJ_;t2SUpWDk}S&5C2gy$r(C66Tj1mK)f#CM^MX+he>>pCJNEcKJfbbgUlLV;V+iYP zx+zANb0ibv$dwKqeui`P6zA$P_3lz+J{T!aIzDCGEG^|AGx&p)rqTk351UBgQpTd} za`}p?$RIA9i$YYS5o{yta9vS9{6RP!>O_-N=MRWKO2B6Z;Zgm3qPZCZkE&qucETj@ z0C{uUq|Q5Z5KB2GZ&zon9NOWCyhN*^)gzQGDX+$5wlCnTpl~!+D2~#}gFg`j01=dl zLFI$5*9(p3Fpp1AjN(chRl)oVP`GmGAbXAED;O2^s)w(%`O&4~@CWhmby5x+D-q9= z&a6~AX~nWmbO?5o)CUwCw*%=!@Ibko)<*)HLy;XE)SVu_J_ulBCKP&!$3%+0Uc~QN zN(2%6zgZ)GMA=*;{U#|1*GQlM(OxCID?Z=zSiwK^9o~Yj6pFBUgy}j-w^b)!*U3~V z^4h8-$_`vJtTC+j2R6!I9AL99$8j_Fl zm8qll^)UQtyy{Bw$aLE(X;U=JFh+fB*3eNj47q|Xez~~>Vr8a?Mv$Ztkw$WaQ}Z0qwRG@SR5v~E z@kVKcU;xGlp`JkP5JZg5fR5nJS??iFJ*JQ+zHZ1bpREZ}G(wSob5^?wzKXlSi5&#d zdg7yEB)*3O&2nhDajActfJ9@+*`=a<;m~kZ9Fc|yt&Ebo7R}%lOKY*~k*-{7COR~^ zbjW6KUc3T$5~is(&qwC8V4{jBiCc}Papw3@0?(AU#}mw_#`)+u&RC%+${PteNL{8)E|9KSA)f+Gb&wZhh{A_Qao})mgx9JLN^lVm#d1KaN=k2F?KP5`4H>$2 zXmf=)W}viv0#^u5dNV$WU@-{w5^nQC!GbGAe_TO5gR1DAkMhKS{!sH2FB)8@pg9F> zRtuz2ME_{Wk)kICLvs)@CIN!*Ma57(-XRo%b=^Iz(mG>XmqUXJTM^gL7Q7@1Ua)CA z*(lKGzS8Ti?r~=tx~fr0P}hkFYrD<%4cQ_L-YSITdvz^AZ}4zDlO1y*d`Ze65=Qr3~y(bhw)hg+9{k9D2( zc3=tKV*Szj>jAl0T8VlYl%8(H;o1G+2+dNA$^m2SA8Cm5IADwe=OJ%e1~`Y^-|7O* zc~%=T%v*QwUJkP7{mVcA?fz0%TsRp!_uBTz##!9GySQwKQo1JRux`+EO~vcCvHN-h zeRDl=q&T*;xebkN*I)nJWgv5pJ$CQ1A?>iZZBF_u8*&?0xC@Qv_~VYV6xP-q>J91` zYZNy57g!cwJ*QVP;SMw4XWI&zV1cT(D-fo-?m#fUyli1{(*^~Ll?2*s3r5t{1o^qo z!Cski8~gOFaQoQem&i8kj5y-~eb-eQfzD&tDb^!H<)TLltNcPjXlG3LiQHHTP&e23yW z=5CcmK}+>?dv^K{#}KV331mW|$}!rBq)^eNjc8Ak!R@Sk?NqbbRps)kT(;_fg2y1U zi|G_JWQNn}f&-#l)Py8ipj*jt#B8qO3We7v5HUTRr-(%&U&O(9Q|c^GF#fv!{zC@` z5AE+?=i~7#eU4_X?%rr^fB%u=<45-QuZ{K+GZHxu6=>HOZoT>W!sb-XN;N`-fAqmN5 z8=s(-VaP&+G(P0nw>O#64&vQzdq*VqG9Q5;xDqZmf-E02(91uUdf!EkPX8S~~EskjBSuRZi8@mE;E|?O| z_9g{bk#&@a)w|^N))s4rbqXWgUV*#2u7{NSd)Du|q}-aQ;LGEa>l0ZHQW{xGOWm6; zQF5Z`r;wz%oFz>DY5dT)iK{-27>F>Wud8lfM^Pjfu1^^r1y47U$%o9&K4fz8q?K_?Aoc+v#F;Ey`?8VLz3$`K z>+tUdIbLc$Emt7v4vVmm04xjSI$B(BD+uiAfmz!qQ|$~?{-MV8pH?~6FIGiUUr*7xDO28mq;O^ecKCR3$lHoLO4?~rZV4zV?_ z1zQgJW=2b;m084iwgyZbWJ&Tl`~&-~WP>^_Qif zsrx0(&UiW_p~}VuWau3-EGwVn`WAY7XPQ{{m8qVd*LG2AP=lu}4RyRz^?JaDSd zIF4ZDP+>Rz#>|Mv+Kd8Qf2!-<#8J2iGCWOF$x5bCHP2+rt~@NCMsmm*uOL5~$H|RT zSqe5KN2sgSM#${Xvz~2PhMee9N*3)iS#+N4;qKTfI*HM4#plsQcULcmuB&DnBWy16 z9fFNvy(C+)j#%R}UKX0fVN@hOTH`aUhK0buwfSuj*dz6n=ZIN?DXFDNGr8!CSx2)k z>5L3Tj&g*wP3Z9oEy3-`xwPW(woe>xN82>I%(s-~xS(|>3UU3H@Nm=2wu)^HKZ(;t zPz-54WCK~wlzskG()C{kO?&Crwr$2pzACndAlR_x` zVx!RrBiK_(o%%@`(#|X0Kw_1=bDyB>x~1UWPA-Zn@!LyTOu)<~L5i#*`c>?xz?-z~ zljvNrofe%yZg)Mj_9Pk*DgTD_AZU%?2@G5$`cx_itMN5Hh=f-|GboH@Rk$b=HR;V{ z2h$I7NQKUM5NT~!{3oTWI6A7T1aGVmzPb>KuyA#R!5NEw1zqq;<{}@eOufcw zuXYpUL0A0#BE&@ei*OF2L5ucXq8j&|8XFFD-V8Sq~49WxE59c55&pw9pIw>PNc*paiVyXcnY+iz9&=ip7K%h zm5gb-MNB1Au5}{wrV}qcK{fNP$)n&e`>{n+GFMA2CI!vCso9a~*-fC0OJ-gZt=xhF z(%CEu(n=65g&GGTl`b&7wPKnwM~VfqG({03Pn5rg`68zIjLUJIiGeeI7mbyx(1`JP5jT5z^3)v(#YerZB#f=TG6-gOT&CvKR z4t8hC(kzm*rpFP>X@4ctbVSppo4fJI$U@U}`STsA@Z~Cx6Wu-+a+dy<{g}-Ero-SzypKt%cSQYx`H3bY@L2 zqbb!^rP3L36RoVSAf}L@1x?062)My-$qpA*Z0qZvsW6SJ2Jf|c&B^!Zn+1FUWK8yF zA|ZTVh^X;SzjrmVrFBlE;?!s*1!>1X)**;^n)XVf1nK97vYGxAh&<08+}e*D!HFL$ z?A}d-0|yUg%X?<&CKIIi%$ndLoZvF>C^ z7FjHrVv3!b;@GJjE~J!{DdiMWW^R)*Q_9Ska=)g`%uHVybm{-z+-mP6*^bL_Uay8{ zc6Nsz{4dE9J?S)?d`yR5v0SnkY~0|nBEPo8wB@JpP#nyhPP@xZ8Tf8qgB*lTV-~r2 zpLPv96?+OG?GPEOnMyNzp1F+52(k17rWsv(CZb89vU}f^5XI@C2hEPVZeX9b8h^Gu zl9DtYT1^1U$Tl`Q)$GK?eQwa+AC<}+h!+<;XUmq|{OWlBeN$c#<%vtV8un8udEo#M z#49aN!iZR>1q)(GATkufWAwEvtjW?ur7~GX)iOo%@AY^mBWDc`?&&q}qZ{Yc$Oy%8?F>Q`Z;r(CX;#?KwJYSwAAc1}@F}y{8Wj z9$L>+^WY8Y^=;kBY7iE$@#*M1TDcp2{zA@ksw)|1nUSN?pr54ui3169JVGiMh|2f`wvFL@!kl6vZ zGQ^k{igF@=UjH}so78g?+Y`H?Eqn+&*9V|sJ+wgQBobJ-BAQYy-dz}eoM0IYtah|+ zNe0<0hx~W>&u~;&RO$+&MDw#XBx^mf{?90MV3Fp_#M5I3MB(Ss?&*A?R4U}By9f9a z+sg0r>wFuCW9Zgf&996+NP^oyWi*q`=d+p7O5>`pH-0oQP#wu+bGdA0q^e3iszo8A zCaM}MH9w#~ESeu$DF>)2yv?=*peabUqIXxOzQl;UO&HHFV*XJxSC_|!~N=f2FRHe?hyL+ zx0{}9Cf|51bUEZ#O0IUrDkA!jW=I_#9;d1z!f$R%{6uj#T;H&S4GfZ_z{DQMp7m=q zM_1E#aE=_7Q5RopYC(3lY#@$fJG<0=>WmrT^N4R1Esvnh7S=WlJ~gu_aQlbAfXmi(gL}xlrChlqm?R; zcM;HX_^gyH`hZ|#!9jRg5fORuOD4lwDG7Q}cV=X7XJ;S2iAr_H0E^L9lR2O=1yY2q zHOv3W(LKX61re*=aSewSE(4H*yZvm3?lgxDc`8kX3#jF>ms8E%a5lOT(m5E;+e9X z2)SPoD+YN=+k7Ds8lUS}nG^VOeuhEnmQlQbrPFx17vT|l>WmhZA`q9B-WD4-r(?Vg zd%p)tT6(Zh7)bhACPIqjBEu6_quIA=#AKOLnY5AGNxCeR39ZR4P(~TBK{JTAPF2x* zN2sZpbZT9Z@B~0jhN37!m{sZl@fQx|uta2lU2YfZbkMB^wVQ0CHfo0~G76egfpt<@ zyR`sXi4U@UXd8H5i*&%Vc396B2GUsh75=es?Xw7uKx71S0UD)5xD6RORuT6>S|Pu- zElgx#$rGq?&AO%m1hEYVuPbeb7K4S#CzK_AdFXg*wokblv;xG$Qa~s|@oE16zn}y08*4l+RcV@KPbB(4 zhx;h_#&2rF0()`d&56$@z9&e+Q?!$A48u5&Mz_3;K1M&JKdQ1CR=d?P&;uT%o~vG~ zew;|08oGbw|04CNSyMQ*vj1~ZpW0KNqFskmD*M#hU5PnOF_rN6W<_Gc8stb4S?em@-Ip8)r;a37sV+q;z)B_`szuahMw8@ZX7`^i5lPK1SH8C z-=&jx%*j(6{>xwZueM^9y;2kl*B+b8v+Zun-t%9R z;sYm2;aFV8e@KcCob*{v{=C`bfDpKJJBhj7N|59?Oem8J#hAzA?5@*NFQ1LtF@no$nN+W| zd(~49F*8PPXC654oi^XT6U1F?xytMlSye{1fTGT0k-$Wdh%6{VtZl#~vJM{%7`mDa zMItOQJd80OLus}h!<|Y?V6&)e zBMFJSMh^9!q`%)!%B{42f2qy)(v-i?Psy!B`v_NQRY>C|j`bmS3FX1zoj8)ZcCzexKKF0Ply4<+o0b&9s#r~~?1%7Jr=zXN;#%599Cs1- zCikwu6g8fPCFv587k(OipFomop)gyk%@&J2pt?YTW=IxF1~_`>3qmkG^K zKFVk}>Et@mA}ZS|>xI3g;=(}ROg>+=wWuo9Tx$>4vIl70jy=L%ID*Z;1-_pLzTZ6) zvx$S4SuV$1B15rMjD?Ka&;$VmxEc=hxCYg8$0PY^BW7?KHOZi++*#%GXSDtHBkL!p zM@R3pqrR)RccCm){mQ0V{~3e3?>R9sH#0VNx844Q&)vFp&z`MYpL=2KI`^tgn|AHm zwCSpIW7oY!3R4JFch_2&*7Bv&%*f~+x9_;q=;(ANogV2#1c?6QnM`(WV&a~=Prt{+ z_`JG9TtV#m%ZuVFVi&C=bs1|j@`wGNyNHZ<0>5P90IkRQ>O9QmHvlrp&2hfEFYH1; zGVyfaEq^odL-cvft!CoJ;3k?q5tTI-Ph0^SQZcV-Ha4ab`xfC9#r)>vS}QU4O|&zZ z=DY|8^CbsM5vS55vzv5bM8*W-wJF0<3a)3?ZL543HSkQVU;dY?Wyf?5-L_|k@T z5^332pYLD@OEp~U-h;<%i?;Cx#s7C;LX}_Ek6p4;e5RCJ@2D;m%7WHc*2d;I{=}}a zq+2FM-6CdjuI0RXBmX8RH)5LID7^lBc3mb@IK-80WTLjT^qI0FjcYVA;^#g(F8IqE zCoS8^CEfyZHl5&E+#lbXd}^(Oag2Z~VA#7El40C5^dLk)aLd<_439)m5gVD?j$s*% zcoCP{#@#Rp zc(HNy$_&av8ZvpbuU2M|_2FaOV?*`Y`Lna<Swx-?YZKH!okDP;} zjYL~wA+|)R73ucG!Vj`Qe}0I5vHEjjE9TBOf?{HjG9w5D;jX}Q9OO*b$g-7Wf3ONk zlhZBpzwsv$i-}3IQsi;KHdjv)v6{!~W4CK&c(m7u;>{Wngh;kdKkzS0Lc}x%Kw%c$ zfm`cPVEFz3-34Kecnl$MvDVzRE~{oQJy6z7k!jQ#IfGDLOo;ao=C}$8FSbJuQCf*0 zqFK~D`gr3ea$0*{Eb-E~iKy6cze_55UMwzibMUp9uv+0JSgQ1~k`j%P4um1-A%;QW z@%3QakG49SWi6G>NaKSB&khZEaD=y~6&R4FK_6tTc~+h`D0bFEM0?g|Xn}|D=E~Nh z-z%!tn`KkexWDkv@x;!b;%9gkKh(33fPX0XPx1&a5XK3{I=6Ld%JNv2Yf*%)L}u!@ ziJT7g9iesg9I^2Ab$n$pS-njPu5JeA$_;dcAOrT;K+#!&^jK&;c7fi}S!DWp}{WgwQclbv*_-K)-jU6AEn4`Vf!0&VM{0Im@e!XZ}| zD-J-7H3$MCAA*obrNSb1vKC`QWbDT47^qe9mKjo#6dN>o9hEFCK)(tRnC4lFqBEac zUoK5{sE)}JG?Vh32&BpxZc51eA}OIm`wS@nSwS0c0gE}^_GF7h2C_8rL@Fe989ZN4~TP&`a4z~Ps#xtgZ zc`NBY)@+|)StD{JbmC13U+>rVNK7Vfl32DDH%SKK>3Ccqks2}!JV1LYMP>xe%GWZx zcw*?$#n#VbO=W2$z(lr6t=VEQ8Ff#}%|reootc{$zt`^F_Zpv=!yaz5Yd&``f0sy6FU;O23q-*i5JIf&cJ*QJ=VI+3^ZlkS$r;* zs$A5q3xiwAQG60#W37mF_%Lke+mgZCnqq}b<@t86`gNm|xxY!C_mj*4rtgCr?uAX? z(l1B^A{opd4l=$*XVdovY@iDH*`Ds%LZQr`uEB`k0`PoTpe+sd^&Op>Jlfy4t~6X9 zxNvUnqI!M(-p12}ymAST%~p3&^shrYEo5zM=I10E?-QQcP93woLK+snm%!@j#%Jj~ z$GS%N?4>+p4fb=g{jmYaYb+>a_wa^mu9-QnRvQ|s)y|u_rt$q~v^^}^ zIr7~8G~jYx0$k2p<3#X`#9LVVll}#A8-J^)#@_+4d2B-&Ks2@Tb zNHbPX(mo)2Sz%+1w?b#qXlrpBM4aNQYoTM(>tZ2_*mbyZ+fZhI{tW0TG4-v_5Q}dc zlXU4R?(s1*L+@`y$~+}}%O+O?{DA`V|y3iadr|)&|ZO zgN_X~HK}5ox5KNgb4$xiJiRjA)|r1xGID= z#Hlx}^)_{6`p8IjAPN6>>e$QkGf0=a2B!}l7?q)mUXIn=zb~4Z-#26lZbnT~URX4|vqYaWv0pA4}iN^nwnTtduL2ETE;w$~3{~+SPnvyrVkPAplFaX{xsi zLblNULL1xG+bUZlp6#9>`G$^;*=pm{E_OuaY}l1f_hu*s@wswPEEWsJna<9cVkVD0 zugkKY8y{pbT#bC z!(@_Sl`}p3H*^F>Xv8mt$&zSW!xfg{@FAmsroKaZ0(WJpY5ae?_;DvoHI5+Qa^{n# zZMv5xy$=KRDsmXk>b{ch3In!d>nCizi`a5PThtX&SXB-&KR_al_u#UWs;GL6@^hs< zLks=BiN>nsF%bbm{_dFJ9I?%Y%4Qhxtz=8Ktz6nro$ct@PymI_VbyjP$ha*|2;B8D zpTsZZHiFv*LDr6OBzF+m_)K}MR2t4EbG)9dV<4QsbbkSFB8@#KRApU7i)bXajd)ub z4lCZ+VO0$2ceGl->(Fq#8pkfO+)QP%glvruDGE(>jCI&1I>Mx ztxwRlyb5(iL`c&(YafEF*9^2Pze87JCX;czTF#3P-YW)d={TZZ@l}lXrz>r553ech zwaVCEEWSQ%CMq0>=IST0r0vw32m5wFPFy?#^w8k8RgZW)OW(_FUnR$ed)p)`Wya{J z(c`QXUfWDYY>jbVah*hPjUC*EskzdsXIa!QGNuCfvjcA+?9Q=(kb%fA=3#8RYbu{B zaT=kGyXk5Wus}~!R4S5*!B1qC2CHdI2({egk-pwK75lrp_l;zsP}h|z_2D};>69%v zaHvEp*3#=r6In)3N@QqIC|fE>uWwo^(8|Xy&*Pj(VQT{BdNOD6A<&bCQsdS(t5vcv zSo{#4YI%rUo*zOP!L)357-ktx5u;feU+?WZdoo|oL7@)~L825S)%$a!`#{~47IOz- zW01o@%fYX0X)I*doE2?VTH4CvLt2Wb&T+GFk!M}&q6;&l6 z`Fv5DYm1-P7a%wWE)r>18}z$OpBdy@0FgHF)vSQb=~ia$#0bTDoXH+8&mSs?JrF9prQq_G2d>?bVK8)9AgDV$*wRB2i(jTyJ*`J7^l zN@}F#haMRICqcWZvB%2#^;kP8*rhC~=sYGu=6Eb-FMb3J$gzJMyqbE!<1HpxJe~)+ z7A2x581v%l2@Y1{KnS6~BhUHtKNkB;^n&*!Uaa4yzC<^Pbh;xwY<9{EY5&utX>W}+ zvqi^F7zeV>z-e@g<$tWO9jkEjvJ&T>G4b$81@q=;AX{nUoNp4m-8Q}P7UwXxyA3nj z(6S>0kH}yTF80UcrKx5nuzM&8Ld#sEz==mKHtmd^CI-pl`V9#`a+)HYy6LaDsnC&A zY3yv~t(47U4$iEVai4?%$1E)^sG=K`7H~!0Taswp7KHn56&Nwn;PGy-Quqc7?vreh zzRzlWA2P_SdE&*A)*~C@E)&#TYr+bVNfiWrbP5H_G;FO0v6>8mBq{Qh$64}DQl|`j zs%?t2kcs29YjBmh1%lG5_BvReZ434B54x_emCy7nKW#IUg|;F$vb!kDmz^|%LyVo2 zN;fOBQ`%Q--^512qC`f>=;-yx?~pWCDODt8(%bwjY5OuaYmMm8A@yR*+F+3qZi8!A z>_GJ!JY%tQ6<9~j)Pvy@%(%hYDDv&l(XAUkhj-=!KeDKW4fa3WgDYLM)QDNq-6|yl9akX`AW+3gHq9 z?W_tnCX<=~fk2DW9mEa;l=Y+OMY?7h{>j^Q(&v2XtsV=Z}h4s9)0y73jsrdhsNHEFnDlLBL|&*xRe zIu9pny;IvOLM`Fl#o0&`taVsb$m@j3q9H~Vli;nVtJZOX(U?jm-4l2zOMWRYKzIeN z3QO;=3|4~&csC%j=~vheZ$^YJ>R7LOAxFH>++$$Fvqf1Q|K~fZl`|#`=E2Tm*<5*~ zvTbnihU4JY*c;9p9^TcFDYNp!OEJT3I5sr2y<@DL%U!UiHAnfhfptg5EGJ1MHD4-- zA^78v(tC{t=swGSjn*7QdO6H&_M$9wF_B_|T#_D}1Vs)Z6ooYI5`~mxiUgyR9_xj0 zz#D}$?y?;65=W$}Z0A?5^;W@Qbl`c5<=&X51B^#Ofe~4(Ukk=#HT0N$>4gcMxZ8C< z(vQ+l1(wd8VBo^B4&yBnLO9B7xwepIYT1lzz1A@Qi^5rMv9jeuDviUhYo7(DHy8Ug8>l2M9-MWnIxadsD{)KZEF6i$Y zkaG3Rxk6UahsBcH_W6a!o!vRt0chTCsOnX{V{i9Bc*7wD_> zP@*$22@cK?=&ju~@!-T$MBn1W=)X(oGI}sQnO;b5fJVji8h{n%bym_SdY&hjcgLbZrr)DGAYTa(A$(M;h6oTi-yGaF;G zHKmc-CH4yp_+i|LI~fYda$A;D4lYl|Xxo7FHpUO4(U?+Yh+Bp>nbr(1qIE?FYoK`( z?r>xv13`EXi$Jrt#R@ZyjY&92>@hRD+3}QW{uy;FB{C{t$!eYfZP;YG#b!vdri3sqDS+`**Rux+40PeO`L#wZ>$mNpFK@ZeS7)-G&(4` z9UBQU033NOpHl1|6mSmV*SJ5&(G^m-L@iy-bQ-~A=sJJFr-qLeK?UethA8<>|Gtb0* zH55B4x*bt)d~J!zek2iQd{gIXUOd zZ4q4OHpxxj_IUHZ^hejHGq~UMC8QL3k`yO`-$#eWa66Ygh51vB-pgG)uNxBIEG;%G zaL7hq^;sTwp7h-!_pHmICXw%?B%G5ZY@o~T)34QwSRbB{_&{QbHYO5HSm=4LUeSXNU)!m(J0d zj=(v6(9a?E*FN)nyfewS-GD^4b|$jrdfbIf}gj zg^m{uYp6E5Jn-fiWC7Vx(o^j~3ProGw0*e59?PP#$qm#k`MI!Vd4X7yPI~z<<+!#w zC{Te(x0_4t7DH}|FftDk=!&chJCS!S=?=P)aMOQ7SK*OeSK8RPR36arOY=hMbh325 z>+@18y;IeePI?!hdRNVs*eHc<9{DOX4=!$W<5KAgI?W=g76eaQ4o_DGd4t5B4@!CL zq@{}wOLg}R(xg;BQ;F4x9cn2yw6BzdnUG_K40c7GR601Ez|T#*9XN$Iz!(}#%q4CD z`Q2AT-tYTD*=v6EuAOcUo+jC8aA6s>+HQv%bffc1OmA<8agL8li}Fdwm$TYfS;W$` zql4P@E$_G`383zRJOJ|Ab)aHxmA#X#8dn(zZ39hn36ppkIpp?{T>c|qr8QL$LmocA zVZV%z-^G>hPo?s<<0ezX9VTRg;5nh08asGiC)hJikVD}T z>Q>VrwPP?~3Bre3P8Eg=`5s@GZ!7(#91lk<$>BIF{jU(*&O-(-=S-4sb_L$rN1(}j zAzk{f#9X6xb`&lw0LNjpVMldx;D!}^u1Y&<0khgq#;M|69`Z*P1LLd2EVtu8JIuH9 z`{oP(ZY;UR6NxuUJU@#K8bJ=~$oa((fTFdW9elxBQ>m#7&EhKK7 zcql9id>%M{UX!}-HnCcVbz0V*LQ~v(u}Rx2Kn55WPx%a^RvC5|uP3m2?Ro;WyVo;a z?RwTbe9F-F>iycGEpKMxjb**@a~CQBS9>XWm^an7M+0Az<=pSI9kEOU`2GhsT=jcF zqXI^h{Bohlilhp>X9J-p#iAweQWhZuKMp}O(&vpy+k7Ytq;v7V&}+=$^cIjpu-yY6 z7h}7l5c(wwX%9uRI1dW=bEeDqx-zk8omhA+mJb`Z^y|0rqjis&8O6I+fxX46Xr=N&3~SWvRPnRG`e0QAhH9)Q(_Y_=!G!`}FF1MJs2 z&d~=Uqfmr3c9AMfR6FLn0XAKoC`h9G2t)&bC0;3yNn{-!c;>+4X7RR&9{LLx6zx6<>{$~=}1f-0aF|>j{u1Vpddut z<--!8EeJIa@F+31QCT1Yg^6z}@*%qE8<20DQ_fA-r@(?ThYA!3dYs#A#~j2e9QaK8 z1RV$gCE4P^H%dGd>4ms0kZ3N&r75Na|^v%jR;grScGNiE=mL+(n z&2bL8e9dNUZ_@0{1H^o2{Au+yA6(e9(hb~2<~)VK8FWz@g!Gt6Cf#ZRqQfHSBS^V? zpqeqwT4wW_2Z&XW@TbKW14b8{S}EwFh*vIhbYh~{B&iP=J!NDRSo|@O#VZZq1ym3L zS83M#pJ#ilNXL)T@)zpR!?@HwJJ2&E{J0s$FZNZZF<%(AxIzWS z6DXzaX}CEzN`Zr>nTQd%2bJQQkl0GP2aRo3uK#qwW<(QwX7ND~&y|46i*S_e;&Yfr9`U>#nT~+B+EECxGG* z>^cbE2Z!c;#v#Nhjb^r&>v{-mDfjx8O3UT)S>q6C1mLsdIO&lTE1-nV7DOl|1xQi+ z5K=HE{gk|oy{svv$?rVu3Bz^(wXMf>cF6F39lfWZ-1i@MW<;?D2P!Iz*5&oE?0vtGww;pd+GcxQ} z%F-eiVRjK*klkb&@=Puq!}*mewG-1ki_2`-Weel=WtB~smR@agqA3*7 zl&x`_7N9pa1v7*@D|r?x?(m}CD0|e#cR{;>Xj$XOvRe&A+2b<1uUb8=KD4W&3VG77 zuds9vA&44Gj52Oc5&$i-W%u&|PBLVX2 zHYY@vvtL(c!r3HUN(H|J%7OiCrn5a8GQ99M?!yWVA?uV>yE{5|4Pqly>`y(*6~&l` zFaaU7p2gG3vvtyixA6xd%RD*W5IvSpijR#o1Dp%QNV;)1-6INy0YUgYKD0;O7C8pr)UpZv@LecTPM2oXz(p zzE2g}o=BWf)iowm%i@1rys38cbZc6tYd208hphA#OgRSIdfI8H!^y5EzRdAz7_OMw zA?OOL4f&udyT?Bkf1JCjQdl*!>cYd`Y@$ ztddpJ>NT-@%hCto@dYAUsI+RcA>v{b1U?d6YdeOS{p^S+c)IYonVK9puL)UbE&w(l zrU)q=H(>A5Tluc`i2LofqYfJ> zD>7>D>YOdU(UJ&Q$(@lUOF4)PcZW7MI7k?Fvff3ZHw@E8^2rHUX`nco&vju0R}cdG z+Q?F>CsP>*AjNBI$G(_7+4vBt(!Rw=0()Ejl3=%90Q)cb{G6 z9nB^#0rt?tp&$BE=!^b_X6P8*nI1(?qu0^L)To@dB6``-3Ar}0@Z5lI=MP0om64B$ zwcOemxOThD>oAtY*aQFl_!Ll!b&pqaLt<`;>NUw*tWp38;+K;+l>v# zfNL!sImNdYmVHdQFz(neUL>$Ij}suzC{x@<^ou#lm?@xLT{g--%PW5S)4Pzw0J(lu z7p%P<$Q|DTV9WuO%rRI|xt#+zzcqq`Q1BS@ovVeO5XdjJSuOd(g`$i;C+2?9k7O2+ z8RdhvSie4#a_Ps!jIMKC<`5Am`97WLvEmI9F0;NG6}qzVN}-e9kne8@@m(kLj`l#3 zn@12gc zP?Zcaj#)JAqzCSuh$3p99nD1PDF>T~N>T}mzAz<>8T*Xu51ro8(bLn>ar)3;CmidM$F*=tap4?Gzj5*2{#MCuXU?Qdf#*jTcu7RHviyD-Ns*uS5U7F-RXj@& zsP1sSQHIEXPMy+s5Ev%yR|cW%{g44|bL9C9Le-J^l+d{Z+Fg4&){+Yf=ySYO%OHf< zuC@>y2q8Pb3qdGq@f}hnvDOZrI&`}VlAvH>897QX7mLh@_K_%OlqyhaP9vYP7&hZJ z%61+tsuOfmE0;oM>8TgOVJ^(MKFE21a1JRdT_ZYH=-f82tG*8*=5El zntuGMpJ`Kp5II4bT$mE7-rUrDs{-(9T#*4|cqXc0HMU(Q z=JM5xo8&JZwm8KE&PZNgcz+p28A0r{z=O+EMLkzJ^(E>l@>N?(q|_Z1`bzoCPhloZ z5)(UbkeGk3h#ih)bPD~f4-T!%U^3MF@r+=Fc?Z5l)?ji&Bm@Grm2{Y- zrHzUh5~NZrXbY!uLrlWv7%0;^W?mPWFahEei&(9cFc?V7ZVYp>@azyOKN|xRD-}yU zDtRJXAur0kRN1;v1$7I*q!%*5-Bw82nW8Xd84z;E;P8_?B`-EX3av+k#e_Iar&&Bw zGuCK1IZ3Hkdz9%*r;13dHFAQ%m$s2rTd7cM(=l>2ZzN%88x}33$Db@V#+n>k)V!GS z#kx`~qvcwdKmuNW90T-ii<*?hs5c&Raw&p=jlWW`k}8&~LaCexMQhPj5rbr~{jzoU zZg!n>rLih`q&y#srw}IJ1Mq zNGV7jOd7X3+$~%8}b112?4KK16Iz8#II}K|%VK4Y0zMb>@6cY`{imMeokq4!(nY4Vlt5>#>E3b=Mf!M%$r}JDxce1SQYG!c|PNg_=Gn zC?-)`y6WNd!(+yb8`I(@Zap<$oXbA*Iop0Gvosy7k0{IM3!_2$O#T{3C`)!0N=yl* z`&rFUK-b}C2C3#z!+trAG`|daPZqI8s76Y3|hDy*9?e25B! z>qB4o!iSrVYu`n7;KRiHwQxDUxCVDttKHqu5*QrZ(ZQ~c9fSRw%B5lFu}v$(0y^k*h`U3A}Ou zkF(FVd+qk3-1dq_s11#BHjZ7xOZqHYy6rsQHp~O_pw`UXGydqq#K-O`9{Rhx3`7?rcAnDOMg8u-Ra{bx&z10 zmPZDPo+0j{-|qKG*Ls$aa&10z{Mq5+3?UBDe~xWQJj-$$6?G{u2&TGQu`07Izt9PI zCcnh?Jo^&3E^;kHu`5S9C@cSlD}%$xS&D?5kM~!w8*WH8bfND9;_7#D}Fa`9H%ZU=|fHzh@%%|Q?%r5@_|ybSwJ4_+dMf$!F^dIl7@>#+;5G-7a^ z)H52FX8|JIlKrrd_2~;lxt=ggs^(@7~g3?%nys872he+qa7(Dst zqanM@7P+cv2MuDPauKgp>!fmhhrd@$5(lw`J7`%3veEW5np92&VNdS!EIK7Wv2i1N z6y4fXm`}W63fNyhmEyfW(kP>2WC+H#Z-1VFnu4;W2uJ+ zR!^4i*)uE$lf`>%M{b69@y5hBu-lI&wn3-z;>0~*Rpr@`$9hL(={R1NCh5dxCqy|i zUYQC5@z)V)9kwH{MdA-J#w#-lrz`QkgF|@mtV%aEw=&u6Vk|O&Qgnsil-SF6t=nRg z+Sp?}xI{FE-Y&dt>o#JuT!Q-UXWp)0clRv`{D9gZ)N#DeiA>di$aFxkXd$^QW;M9( zQpXxCuS>#uPcpTxGBXPRMW021y7Tqgqa6Fz7aurK80Uh8`=<^&IkdvM*VlTbM1U(ug7Qqwed1~phXvU(?+YX|O$#fAj>Yf)JwxJ>8vv{(#|A^&) zZwch&T9{0}_^AeO5fgUs_@@E{V^{7Vu=o;+yu^pqAJkjG!R|>UR+yPzTmjdR;7OGK z|GXh^!}L|Ye>ie*;Ll>bxEQZ{YvKTQviC#z@vbzsce~bhG^S;@>|EQYncVa#Z*f&( z?n2<~<+HiT9*a+QR_7QXwATTQZ*uZzU*EcH28LKIMEF+EhFmtkzFxm@E_&$ei{btL z;d=d|x!R8I?#Z0!ysGS2N9UH_sT=n7uUpsOcf+aPEgh&>i#TO&vb%dnjq(46>4vWL z6@IY*h+X>CT43J#!nMG>MRxiQz)gOl?oO=3=)E6w^j?^Fed2wIM5GXd0ef6bU5wHB z6Cic-a5@1~(yc9{@y3x67Vn_g+y^A6?9gCx*~}g*099AANZP$xvt)5&z>-him`eGY zpjErpk%AcuIF_8k$R={gQO1(68Pb|GoWZ%^Wm4)Od74>oq|MlR1I(OWK{w4Zfu?CIIsgDi75T|ctDSS=|6 z662dV8B>+c0@-Te+=2RBA;^Hcf-9iHTz%l&1$hm`C%saK1Cm@Z6lHeOYNzO{7oy~5%&*sgytO@skta3Wlo8%pfvW%%ZhKtb2-c-758C6SVtNJZBZ@$mQiJOd$ z>`2oa`{s(JZkH%^+WPeujm_V6apT4H#xoVK_(IyamE)mY*m6!e%%R~UNUArTL3tu; zUc1?*jrUw&V;0?M+7e}>#s?D#w3FVb{y-l~q~TdHwYSaa^u~A==e@zNNa>8aAM%YP zHezq^_{7UFw|oVqw2$MOnJ2j1$g+4G)s}K_H8yDU!Nt>5a~)WP7m5kvlm)3zJ%_sS z)430xE-Tv))(2TWwKNek?e#L~-!sA~#6ZQ;?=Us7n%b3a5xhJ9iJRugGE2EFTTD%3 zlTUP+$>LloUlZ~_JKbTV6gtwe1pZpEpp9R|=-;txEi6vj8jXM9>dUEz;XGQ;I5pQg z$lRc;b89)g?owWnaS3;E^ezbH;9N$Fyc5T^h=CB@gO+=tG;T$MFI&-0Y5Qf@J0&J1 z$Uz5?gT6b~t$m5hff@dK*(I!rM2BnbMSe9Xvs_3dSQ}!8zCD_p2%B?uMY)5}$&vb3 zS1!{Ml2B{agp_7$akGi>L;Yp!wn8TOT{wPp{qWwtzNu_BC;oG;+O%<32+~xkcmLSv zji<$*&1N?A^zI%SJUpsIrx!Q1`yS&HvleCtztLsvXw%OTt1S|#{>7=u`|oXhh1j2u z{N0OPoik;gWEwd>CJjb~q<#8IX}khk;6bHa-Z|2Fmk8r5E$-_Q zZk(mXeO*FrWO*T|FT8~(jJJq&SjR@OfwkT+4b~g($}l62kzSAe$cNritVuGQGbAg| z9$&zBI^33Y*vN+uYl25@GKa223}@VIES=qKN^ES5;D+m{Bx`vNWRdK2Hj+t}_^C|x z#xouJ=@}+Y@fwy%!j|gOc|x@3jP;FKCiKsWaD+7r64_56xg<$iv%OU-q$9=Yw1;$v zowa=A6m0Xui8J(T^yb72_S^SPJSp*0Is+IO=KQow9+6Ki(z2CZxV-eS<&VzneVf`% z@yD3~a>GI^>bY)GVoRsacq~ni3e<3YYLiThPz`A{85Xs6h3&Gq6qm)_w)kz2pPV1 zwaE1LR6BMJ4MwiP`sOm@qGKBu%hi%%P9=p&O^#sP8iiZW^$MYg!WdDD&=J)_kDB_4 z7#rl|G%=f&*=ol8GW)X*CDWFCtVx%`v?9YelyWlx$qrxR2%pqpNc3h5!9rYWOyN{8qRAPJ%WiLv_%pl zYe^t3mU+pFnmyv2Y^XwCY=#`T?%Tju98Y|O-b}w!8`Tww1dF%Jfn^np?QxK7my@j+ z9sK1*SA3L-fxhC)pbr_|)`^vQL3{-;wm}-75+W_G<0IKNFPwp!d*O(pCe_3>u`aN= z$5-64`JwA$s{)nuM&lLPT9uhgM%HD1jb4kzRpL1X*XmxwwJcszE+SdmNf31|@3Xhl zaUd;MC`HB+Gwh;OSedbw6;7B~AXlOQtlIKP=N>mY5>&(kpQKS#$4AQYzU8noluD%x zp;mBuBb(^j#@4%U9m~+A0rQ*e%keJG@bwKAsZs(o zTUnnLC#L4Kn@z5siHaN6jRXa%njsIZ2dlbC}aglvl3`$ zQZ~qzrIXx}$0+>lr1fa+>7ar-QrSL;C4|dFTNb5E_hotG5|&sG+>OiB;iREON)utDn; zsPv);uF;qPPmyy(ijych7?Q9MH0UdcUWOS4kUAu9!kiSuBI$Y=AvwJ!*l?bW04U|+ zWed`9HjpvH+4#FraH2cBl6UhbB$_CyZq3FFZP>Q~o7)t5)h*w{gH++`9M|zfcXX@W1 zf~ryVZ%nj+o^^L@w`Sof$9_~bG8%-t85M>oUQ;>T0CE2eKl@Z-7MNy1g_hH7^7jZ$Fuq@UlRfiH?arsd6P^f!v6n8=&G z{6t=shERx;at-q4h8zS-NQ#NP*~rqG8`?^A*U1VNoV~pq%|V zjl|}D6CHM(iLS4}JvJk{#}SjSB7~m>3C-%D!TLdi-6)c)=NXp+Ogc9~2CWK69 zG9lENpCE+Z=v*RSC>9I(B|3vxV8j^2*1M6el6UJ><&>aCnBnZCL5;-ml-Sb&`ELMx z6HczDPf`_*fEppgHr9VM8_BIjCXpO!L|RY3PSrVq;Zq}m97*EOQDEiL9H(${pAd-H z>?$FaOvcz%fgI!V5O+;<5b7CNkiZqcM=$j?MFb6kUPvlk6gH~rCNG|QJ z!B#|46+r;hx@$0T0%{`g)(~`oyftta6oJ`jZw)w$WCS@W5MxzPqu%pG&CTF+xS_`L zgq?QT?L^ezOPFvwp;!r5926|EgJri^vyQ*OJclc*ocZ-_<0ixAT`1(%*s(nndM8v7 zjbdD^CUz1hhztHZ>$QK`vI?tb@+ejBUoimRsg9F=ZWTz!uQ$)1tp`@v)b_IJ->YZS zU0|UUT~CddK|U>maexUnW(~D#1(tuwW=x(ojlq-U)fzmJ|yQVC=#W+n+srF2{VLWH_5aGZ>d$m}$1%xt$K5xZ?ghPLvNc+3Oal_6FU z0>O~&f5>)As^7ES3cGc-TeExqlqr&J%*hlvGv3*0o!u|Uw0a&5$8O;{$lnqy7Qtguiu7DNs5j7rAzCe<**2{OQya!J$(r@|Pt zb&W7YdN~ZxecT4$K2z7QwDq4{+Avm&*vr_Fl^8nHkUt_QV;3pc`c$kc#loytvPo!3 z=#?xOS{jm=t1uFM1YC<4#-9oAbyLl?HE%_40a$kc>^RkNp5AKBhU)SIi=KztbI1Y21%LI(0?j4U zx$ZVSdx;$>#?f>+HJ9B9iDL4WcItG^q)Z zSNz#K7YQjS!!*Q_rj37TfN;@)h!6bVPz7ST(GF(pS=pLgDUM@QFbE%zE?_NjEeQId~)eC2fE-fj*F$oXP} z*poDz%B5HZDD0gqO#b-H6QXW{sG_CBjig;PN{A4n$5~L}w6J3zsIV!|s$filI| zXyLb?tl6>DR->{vLLZzhM>+M-L@{cWvl3=BY#sNZ3mA(Cl$LW)d7 zG2(ixisdcTKlhFcEwp3*+zWZEpcQt=8n3sdWz`|WCF3}nu*n3EXV0i-?L(XqkE==vRy- zCUl1pZ*6Q`s+UMs&s_T={3qxIw)4YRWSZDn28&xkrD{{ZM=;t)!22ZejT6TjBS-5G z0A6~mmx9t^D4%)7cvC-2SMb@8;kn}wph8s@AM64hiD7Uw{xKtC8DG4?Q0Iv9f^=UdzMQ=DU>qi-?+WKySu%8 z#!Or7>@V)9EL zxUZN@=KqFrZQzZdPUE+h6EOB?lIl-0{lqWrRhUwFNGnU5{%)Zbv1cRwmZa1uRsw>?Ib#B(~MuH=3uQGe%2J|x( z^f-lB!&SPY)h@@m^H?+98Op0A)YhSK=zG2-q)3Re7!(VOL&Y89u~0~_$EK=D5dp)8 zrpUthkjaOG!B`t-b7U&i&s0ip@}eqe5{G_!BPBt<;jZ8ACRS%dbU<0w+cH(vd{v7gj(O^!j)F65>RN60L7i{7w2$=3}@g z-chncI4qT7vvA8mtAeXVl|>q}#7k7vgdo$1wA<0dCugs!sHB&CCiv&9(V?nfC%8E= zkPeXwGuJl#=%Y==snlMWOp`Qf@`T$XUJ{xyT9gs)iMN+!CfXn*ibrwtQeoW2axObx za}2JeibS6h8j`+;QLi;yn7>#YO7N0XN{3d=@qxys@m#X#;xXBV3_ErvN*uFtyf~K2 zwK_ry@Z{VqWLhAYA-|jtz4wTlZ?dANl)T6XYtJ#QMXT~D+w^#1(yp@@$NlH(fHTV< zf`Z6Ffd!p`jq&byizpnxrsa6db;IMu7K!7GLd>dGa6lM@8D*GCE4-pO2~4}_W#INT z^Fm~?&h$d(g&tCy%iGuvWeircTVv)s3*JB83jHKn#TrwjVS(&vTGeAN_8(~q(}!K7 z&m73jrf4pAw$}EOwYnzjM0Zt(5)34Ps-f@TKs!S=t!gS*DVykE4Sg^)9&qaF`dzJq zDr(*N_=}>q;M&SV{9(+XL}jI62JEIM?K#7I;PU`XEItvNz&;NLvC2x5)s@2ph>Vhf z@^7HHe4=5oWAb%Du!40#&5-e*tH8~cG+xN-D?7L(#PV%FB9=If`?nPJYm_RCIt|>> z7S;A|pyC22Y-t+vQoO&EIU zWv&UPRaL{H&#>SQ7O3~+%`Y8SObs5`VW`(6xb=Nq;2JL0vJ07T6Q!}@Snz4=!S zN|+t6WX9*2q+Oe-mW~UnO(TA3eow7y*8p@GtQ&c}vPjmn?6%F#X0c(kTwZZ5Min>u zS8Zz>Pc)k?rJZLADZUr7f2G#eQ9lQFDyTKw(z1M?Mz7ijrxT{JGl3MVd9`uZe3Ah{ zSRS^s!0#YsikeKrsjVcGScRU3C~mvh;-@X!yKHlFpR1AGz5Y_m%(-Tsx75-*mE355 zskFSGAZV0{3QHH8`#eTo8Znh=i=r^;h26qnp6uo(YwRfoF=-O=Jf-Tg45PM^0AFKI zA=Gj5AdJ7ugmw!Z2Hd=msFefSb5f(m&^sMoK`^jQHXjRsF1cvER&>2Xx4I0%qgCD2 ziK)A?K1^Rpk(exczk@D_6V`HY;&6u@Lb&0HP+UsID{~!4i`y_Q;@t!3(1Glui;Hu5 z2g@kX$qR->9BpLLPV8!#ha;PIyXdw&Zr5=Tulzv8goctqzhZXfYdhx8qKl$T+B@D$ zqghH@)YS3RDvzu%#H}{7Chw`6jr^U>1P;iJzyX;LU)kBAD+2xZZu$xW|J*hHw#TN^ zaPK7kYxPD?=Uy%_xnWoPfeWeekjuxDnyit3)K1Ovm&%T*GOSL;z62i>B{3cU z!UWt3>U7^IB)&;;I*CzZF^X4O1xW#H$0;PlslcFg$X8_Et8C{H!Ytjo!`!O!g?kJN z%RNhUvr2T^bS&^Ta`7{i%e%+1Vrxq;x-<)SRfMSI&j|F=MM{|FQVS+Zpl{Ki=0xRz zR4a^kZxhl`t4E1b;YP@p&w?IV4}u8G#ZIM$7FoeUiG=qVxv`hl%3^6vMQuCDKyh1( z^ndoAu*LI$4}GROM1BZgOfTVWpD8wkB<~<`vbYdOO8e0SPf5)$MeAAux2D6miol2*E->(vD)CU z7ApeqYh15BwXV58dZ4q=e(-T*1?5!5b8Ki{pJD%QiN8?g_e)3_EkwPX3kcMREA-D~ zEouT5CS*jLgzJjgk`3`#S0>vPk2N5{QwMa!9FNo&*r}%wO#rOv0)NEyFh^@P>ARNNOM-;BvdV8su-A7F%2~+?1;$?L_N2Z_!JyC z+2Yv|tDCirSgAS01Amy2nI?h*3-m{%VEx1k*)_I?=RADY1GmfZom{Dvzxj z1taW6LGFe@*$t=7y?xqhXYzg0Ub_^j8zKZxhTgks5v5_YyL7H^=t zoF(H z0?yoY$$f_To@p^&b!*1Qz>uY=sci_^1#mvC*e#q`if>olZYAE&aR)G+`VDN{fGqt@gj}}&^I1AozUXA?blwS<;pFkLUT+~& zRs3&P6F9g?*J_+EQcLgVhzG$v}9YA8Lu4@+)i7M?13F;U>3nq)-^lIWj(1 zW8*^QhF%lU37WJaV z1urTS=GCp#8q!iU26%<*1D|dwX4{ZPn-aE*{bH~O1u`8BRbdHw##-r~RH`d!I<%xp z^`z5%86mqC&l9R^o|T*mMRo%a*b@bsY71xBizmD3&9aMyDAD5OG3qAoO1rY|2)ira z%?SHZb2lNxu0WKP`yy}ztD=#ff{0&o7WVzV1;$S7s3*A`WbJGrNShIuq!f+u!nAJYj zWSCaMmdlVqPHwP}AEoyv*PnF^-6J9Q5$sJ@4D$Q;zTg>}S81f1;bvVtfx>7ZKa^un zj%IGS&^S+{m!o{cs$6e(mr5%Qkq@<;_EiOY22AT#bYSJ?Qn$rt5;$XmE-Ku=LUVH` zWtwQCr`)o}h-0u}L**4-j}*BV?-`b0Pm9WRAZ*trkA#iyK@hRP0vD{e-USQb1)vzd z4Lo1EOvgxerBdDLwax@2A-@6~GZbD9y$*FeBm(usASTwF&fmf*-N90?w> zqb(J8tahRcE=eSX66Dj3bmyZkaQY*#XMtQ86bzXxkc&g+5HZ)A0ioTr%Pt7R$r7=w z$i0D+`|@J%OlLIK0CKFHQWnePGCfJG9f?OLWUMWd?$32C(b(7` zGmwtOQi+ECLgg(qX1TQB^iSDfgX6CRH7u4ELQ0tYrePRAkcRVtV1;UHYBEf-jP|)` zIg$=Z$BLAa$=*z+D+yRKt@^8^*v2;IH*DU$SRHiFkTjU!DrqlqCu-AT9VvVGw$L8O z(|iY-M^Z^9(effBHabiv3A|YBVkD4CCzcU9wUuZ(vy6Ne8TZFs!a1m zf}a2RSY>(NwJc8+m+~&SjLJ`p1a&oCp0#d}zbbE(gD%hI8Dr9FH zdcB|Of^~7^wrw!KUhwNg4ZvI1avfJt_AgP2b^duT`pgj_ah36LHNFfqM=+uz5 zrPo{1I2A2(yPgE(wC6P^Wf+%nj1VMWi6~22c4Ja2EvK7oM_9@wWC`VYJcZXilZ8rd<|g@ zgiR1uKv)uCCxnCj_$df`Al!s-H^Ml=D*Rv9+W}!Kgmn=%LpU5^V}v~s*7EBuk8mEs zrU)DOWsXER3SmctOZj}T%H?3X{m)jEITt9x1e~oK!e{>($MtIf;iPimnKZdX}!byBww{fr^cIUeKT$gY^b^I6q zJX`ze<@i6>_BK-*cDu-j99}`>bJ=#Nw&<(_d#V%Rkk4 zWaInAr%L1Hf%2+R+T54-&l)&w=+Kc}M$7ZuH(%F$ug-t{jH?&8 zWWhTY-fXe#;y*8W(K0iZ^_J^e?)?>(p83d1H?I81s#mZ6#hN{9zP0w;>%6w^TN^|+ zcxR&}H$HNchRuH5qH(M8R`+c^&o~X=Kj~#ISEP2o> z2mN?R`OtF@d+YE6j#%Z$fg|@hYPX{oKJM8Q&OUj;(;}zOIQ^3|=RWh*v%PZ`J~w&p zkLPz?aPmbTUcA>OGcH^B^3vsBT{Up^GuQN8+jiXrHy(ZSvA52=eYLx;zWc;`ce?Mx z``>#Y`M@I&KKszC4}JSc$D?yUcJLEjPha-ThtFO6!q+by@XFP%KK6Rg8$ZAK;ak_f zedfDAe=y&NZ+*1Q$J_a1!uh5XYN>v@Q+_dUzl1*y^zfcbBL5;ku8_a5A2$%c){mQ^ zEK)jdh0=Ih!hc@#gkDB1VTAQLbzGlQ$MrdNT%S|N^*Q~xh1h;NuFpwxTxbXU^&@Nx z#KD-MFc84 zz<2dGf4>4yO9KQH0000807ht%N!C>QjP=$407%~f05kvq0C#C*XJvF>Wp-t5baO9r zba`xLb1!LQZ*FrhW_4_AEo^CSWnpqHVRUq9V{dMAE_ZKcX0%-gm|RsAe)rwi-%5fB7X0V@OrETAA3P_Qdv!-5qX_#rl|ti3BX zX7E4fzBg}XHyZ-#?AtfD*K^M~_ndR@TzJT)O`6a&P5fw!=F|71Pr$#&&mqrVHi`re zoX69Da<}~BiMw{5gRoQK|116f{uh7jI%Vg12-A;+-wFTIr<{4w^AL8DCLaDa{r~tH z{kl_6-U7N3ehgq;I_AN||c8poZw>--lY>~+ZhLi#^l+x*5e&pr|9 zeh{GUHT2)I^``Z^cE0c&P5kgc<|po?Lfwt`Bpr&vP#ElSHrb|?o-EZ$ z|0w;v^myrSrN5T`T>5?KcctH!eqH)y=@+G$(oaf1Dt*879d7S4`3Oy*wv@^pjlt9k z^6qn(q5VLcke%`XZ5UAZ9fCeFJ}|gcRC+BtDe}2Ou}c)y*R;sw3S*;_6B)dw)`-<& zjlkE0JuyCjq5zaeW!knXdbqb!3>QWakVI{$69uY* zCoYjd?I zUe!yvP@rmMM)d>3lFw#GJ3Gd**+LNb-7S`B1h$K}m9#y>FtXi&pV&@*!&q!MaMpxUw zQNDg(=U7X&P{_87b>;`tnRe#}PFMRFr4^ew{S8igCOw!xb&Y}Ie`|OiUU03k3&~`6 zntGB&pB9zU-N|IZ{tK!vB*YHkB)LK>>3oul5rxi?mTVqfu&fsUZZC(X>xOtOSNO>U z^<-|=U(xrkICA3+(w5SdhBO@v56TRzyKUEyMkbwFSgQS+TBd2X_8e_U-Yn11R%oYc zk7&Qrey{yS`v)L50^5`rT!a_HZ?~`q2dugW@G@K&10*oitQ86%Yz2iQy#tlOsbXQ2 z!U5IG1U!@E34yAhN;j7RbV8^Pt1K=T`C_FRS|#9bcoa2FWElj*)iF6%9xbTVqE`ZQYOqcpv z9m99cn!}`_FVX>0TZPnH(wX6|&iyNIC@e@MT)S4@ucKpW+DjU%ONZ&E{%lEEh8`1! z{;Wh>B53uzq%<7g?=8GR{9XFiI)d}RTE1cEVzkBdq=Aq0%;h=D5Qc?W*A0DtRIH1Y z^xh1wF7h0iTV;BfMLeFF92L^2-2$)|Tj`ak-5&^idNw4E=y`o&dt%i^M+E!#$n7>j z#7H;`dqux6r8MnAeSBs z6HT#r>bR`PAXUeql`_g{My~V}MyDpnRdMs7aD*tF8G`s=ze+w4LEIYhHZB*mbaG%> z9jER?W07-g-x@ox$HtB|jgEN1IB){6n6L>ZObw(Ibj;fqU(BrkMy-iTY7>ZnGAxS79bbXGY!{3=>Qks0?xIQ zc5x7>Gnq(K^2tQdo87or3Mot-rH?bl{IRf2Gv%g&L~nM(5b8vBjv3b_>PI?b(f+A6 z&-LA$?-zp>YMc)cp~ks7+UOROiSAVU(w0mfZEJPVHqYy5YMbR#+f1NBv`wIKrj@Yl zlwDYW#${5e1qIQY>q{imC_FeQb*xp{<9lvf>hq~YqA!>3P6RDRC($n8+)_$6fLXCF z4J`0P-nN}wOJ-S{VF^9qd8H(p=mlIgHv-MXDg!b`CPv04n$Pv-`%}rRet)(%NTkZr zp`{`g7#KX?I3(E?_yzZq+1^BeI2U!v1(Kr{2=p7hF9)vImb#PHk3_Rt)4D;yI(>=8 zX6ea!TBS=OdWK8=HB7;+8Z7d-q!P(WF4IN*22XW>_B;7u{d(;++B>!TKpV;-Wk`xf z6y2p(14D4R(St9*-%t~{mm57;$*Uu%FLUBbSVaiw5!op3i5Za%3{j z?dx3aoTkhT)9|sh4Vo|CD=*M?0z%%ceM0-H_B}w!=w!DjD1E334>;{_5?v=qg%EKkw&Wx8(;XC2JjAga2eLWZCnQQ z+_iPlqGLzmRJ4gGF_6_aVVlg1A zqNX;Q{c^K6gqKVc{mXZ$!p3(eA4$QZ=gB zR9RCqrWAsl7@I(^ICB$k5a$~lw^Y5e7D+|!IFKjEZ=r?#E{C9tC+NU<#`I6b?wfgT zc$Q*UZT+4?^^18*s~c?gonY9uQN4x38tN2BHq^-}tJSu}sZ=_hN)5HQ52cw3FK$0B zkq9bD$wV9fX1lBEU7 zWGb0V4ixo&baK^Pac85On^k>B9HJl1?#{St+n&-{-QKYJzD+>;d=BW2i|uZ7bHeI7 z#06RG9DBNY##&l(*sqTFboPv8Te9!!Sj=OPUeeLgz9f~-WYX!y9UUWJb8O?ByklKq zyTWp@55N||-yrOL#e5kfra?A#xt5Wa%d@ql)~PMlrnR%R zE44RkAJ(eE7bT|O0~2cN1Q4oB?A0rqz5VcI8gVD_wc$>m$hb~By`@6YZxt#k;Z}`y zYGYxk5w4#N%$a$ReWf@NGVhZV!2ATQh@@!X%M}AWY{h)~G^h~CR$`)|Fu;^bJ5g*T zK(>BYZJK~s+)pTIKKJpp=Mh2`Z)CK(##H27e1e%^;|%5~2%Fh(XRO)=MfMH-1(zWM zT<6i(2i5xA>Y=PFRU!vc3^^Q^xBGs z1S1KsvK-e2{dE#1fC7+U=K_P6)*$QHj%PbrZy6viKt|NN%qD?>36X*$?kBWL==GR6 zj_Oz8;?{lE#zvQMH^HAg1GpI-tKCBB?zz)Wo2Q#LW9;g~APHXq(V#Iok64fD+Kv)> z(bTh2hd4ay5%mo{;$Ggk7ObaZLXP9)L<$9(DS?HYcKwWL+7c8;k`#zpcUw=>CNxb6 zGHxP+q1BmmSYnlqbgp&oTHTTc#)9aHU`g%<5y(&J=WA=V3$^ROmE5oWNc*SA0{Z9h z2Awe_>1F7RqAcFE#Z+Xiz%ENs0^Y?nMiYcji~4tg3sn$U$ajI0?T?w2u_&1$B!f*} z)Lc(z|4;Iaj6GEzc@Op$(-IpAbFt~-d!0i2Z!?od!f+uxGViv09owhp>hSrd{sqf7 zG5%=?Ai4$6{z@~@pL@53Od zhntoVn<>p^fVu(xw7lMQAmXqMidj!-4x!ZRD9ySsd+&OqUe0=oID``uphmgH+YR$> zcH?o(ltGyIC6SrGxX%7XB2O3?IZfbERn{`0M21CxRzxC3C U=T`-e6+r+7#^DT?A`5j8M9Yku z7^7uw9mIX;EFz;8pdzc6i{Nh6`&7|CL*ijizw*qaVe}aZ%kt#%S6L1=yhcCvInUiy z`>W{)aK+2az!oQ*k?u`rx|22~G;J5jOv8uZ*+1g|NDGz$oNoY-i&yBF`eouk%>UV5 z3#cyU4pSy=1M4GbPbIrjX9F44ZlYBDX_X{JxkLwNguHzmb{*EhN^DhzG3w%%84VJq>w%5gCmoA4koi6oMHxT!1 z&x1@!_-F30eDoZ`H^+L#O6fs3WA?$DJo8HSU>u}4;IvH1bzR;g+F++z6MiA^i~eb~ zn~{7O24E6$m)b9MOd+a16;g~{e$Mx>i)qg)L(mV;iHN*d=sVCQ$LK-53UtLV z;q`d0(8Z#aF52u`X~)d~g(!W@`PyyrRr;e^MtiY#z4j5{ep89;R$_55DA`#hb|w&n zgt`IJm&M`=GupcrNsKp$kdW)BffndLsM=_LZKJJiCx>BhIIqPSm3C8zh;nFiAGn-LqQIqQ-PkKw$+S- zja|eD08Fq7jsPko9-gIQD-1xK%J4|9k#^m@cZ1rCRbOTJCWiP(12Y!57eW}k_LT(h z4luNSC|aU}fPX|f(zGdL8-crR)wb%den59gdiMaP35~6Nk1#S#*t)ZIBxMSMT3-hm zj#VUouk#{eDIJ;&7_{Lb8RD(B%P9b-&vk5%ofoWgN&c~sh{Br+K9R~!=M)p{iBLK%^yVG!bi{#ih@SFcQ*hM9u&p75z7Ez<5J5}nCJ z!IBOwR77D~Pm9G|v?KFw3iWSEyKu`e0K?k421#BRQ6=(6rY&X5l2^B$m&K9uhi<1A3pKK-4T>O zE83iGjY7yOV^Z5Czaq2RsCKdTE^vaCxe6f?x-wWctAe7f!#=8=8dF?h;Ro<_&b2JOMARgT%3Yb~i-ZtGmeoSv=foXIMXIiqwe159?B+7MC-`ZkpJ1h;x zy6yoAIzd{J#t-7!oeCrEG>G;9s6c6q6QExDYDa5vzrMcxT8kZm;Q=!T{t2|LyRCim z!UbE}+q#+WUq5+#rEg&xf~pSCKi0Dlel0D8%xOVy?=j=xT8#EwZmgqwc`n~dGuGZ( zT-(>ZyjbY5o&Y3WPJGR3n$gnC;}%}^ zzEk@i82ZB@;`nL0)AtjQJw0BlxTMq9j}~C}QjY#^2VSX<35O&gV?xkcsU8kk1>7GE zpFpl3l2Gc-fl%JmD0%9Iys1=zys0;qJPF!<+oY|<11bvrh3V)J&LD``3SoOD#W}Qz z1=QgN7-lCC!O4g* zMDV_3Gj%jhZ_4I@qlBOu9|TxT32khkm|YeYG05OO*DckV?PQkmCg4hlWEgD z5EF$i;_diC9HQ%xPj{wkzcZ~r*)%=krEH{QV}{+|V}4N9?^z*d&=}NSgkI=6F>IGN zN(3WWn%K_sF-tmF`>n8OoPo87PEp&zF$1qz9x?1_BFHDYVh0e7kq(*@Iw_l^80Z!D z4r(KcSXc=qC@WZSl@)!Ior*NlaJ+Mh4}wdQ1(PSO*AExt8jVD;zc`U}Xu{gg292dX-YhSn*qVH2eV zq|K(P(y_n_62KrWmOJFubrQR9^Z$m#{z3>8eg)7IeRPmh!y#O7IWd)=W1eCapzsP^ zS32wGXb;J|^t-gTYTwr$7a5R^{jn1uxmswpLvRvKmy(*QJvk-8(``WL9T-`KWR!Gtd~A4pWOO)R-+eUd zHu}r+SOuY!^1N0P{pxEjFVH_97a(5nF$37qHQpCEpX8l-;9SQ#a(&n!y$E5WVd*=t zw7d?M4A`-{pLEigplK@P`*wcp&h4vNBgVDU;&;YcC!X% zqH!fe&^|H8TAH31-s2~a$I8WNVvYJLnBUordhy6|8c)m+HZq40d!uS_!sESlIlx@D zm!4rbxUL*Y${Sg}Jj_WuMYg;b5kYp&)<0frnQWvh3f2B|NJeZdkpI6V)z1^U5@k!0 zeFvtk?9|d^|CWb!TpAvefY;5C$dNcZOM#i-kLS4^Eq*?L;JC7?SZEVD(2U8Rpy0#M zDp_=FSEVx~LjrMN3|2AH1 z25n6Cq*EQ9oy3x0jNp?vHrEF;%TyABNt|&&VpSHc02xXwYY5tdybF~R^G^~|d|*zR z0D-mH-9p<^GvmY7%x7yt(-(@Vp3f`u~x+L>SZ3(>Y9cD{w%wzPQ$2vHg;Fn=r<7qz@nY)cB7%2 zzun6s=Og6jQQM9NAsUa0=J9)k{47XO#uZeUOL}z`t+7t`dD?)yN*=9khCR@U+N-oX zv@gLTXcaI@?_PEO`)oQe)o6}3(QGPU4rn9I(qWZVKw%ckn$cHuJ zG_hwyt&Mg%vk@PqYNod#9;!FYR9q)`kHX}HibkH8D8fmK?26o&20?t?AAzrA3C zRArn8p)RN_G4Xz|yhPTfC0V`p8aS+R{a|lSR*xa;9~`)XheTS<~^!)px^Mene-VqtX!ZGhr%GMg(}*nN7ctKAd1Ec|BLXVqEI zf?aA`p}4Bj(wj+>)i0E>nt*=f2l5X6HjP%;;6U9TLQ!b=8ew=^5ZKo(;+xi=eC_SZ z?EH2N<-ONGa^OM7x9Ng+sit0f?$)gjz4qf!^SzBi3}Rc}X1k=5r>^S#mm(u}1D67u ztr%K#`~cjvm+yb>f`wB+XO~jZ2)UGi0(;B^Av}dIPSCEFx9I=SmTQk`HLTP=(7Wy8 zMD%7J1rPOTZ@Qg|n9mkN_EVKxRZstbX?4g)>a$>2A zdF`L)M>`z&I+4H7Sp1GyloG~)-I<~qc*^1Kwtl6;ud-^>dEhctXx3C)O9!^0= zyOPyU08zjD!`Oh7?Idy|HF32x*RoK3%vc5Nvdz4tgO!jidoQUFRiSU zIkn{&w5ymVHrmpcTa2`9u1x5oR?-C@-D}d~@yMi`PdIQZhG6gIvh4_KCqsxd$C=_m zc28UYXeT4Si(sILeXVP4XH;Oiiamznnp|&Z`)w!cz2lOrgOXD={U1ImPS#H3UFyvo z$r)-nc9R}}Q;6SE=|MDBHY4`mh*zR;(!*O^4T@ZX$-t2fj|xe&x}^KSsSvltc6{R+(OK`O zl=Z&X-V8R0T4!K@BA5Lu)nUs$d)5H)puN^jo75CD?Z&RZQgX@$yT+GdJ--O+xkFpQ z+S?aEtACsJL0H8+Bm!F1^P7WLiu0O(Bg3HLlq300KkMGeAL;G?ZzZenI#b@S+;Nir za-%iZ?9%susp_X9wp7n)&}m&8yStUu?l}#*t83Z4{HFwfKc#uE-d`d&zx3z)&q|u6 z5EWPbCIX3nMvVTfum(aEjpeBF@1tb;ehqE-2Y+qyq7ZKrM_wGO7dOTEH!Y3y!jOly z!9}lIRS9vKaS24;se}gSQesExzoCR$H7d5q9VB;Yt7;7eY?|E|O4`tFErEUUl)P0w zOM5ZSOng`Swf1ijU{XmjbEw!U&J|Y@OiwghUBzG+LBMeD$gJQ-x*UT<1f8G^Vemc> zJTuo+DZXYItH)K$wO%(v!nCK=Gf`1W@%Rv@IUDxJo-*K>WSPAJ$DT4ko>+a@B8_&- zKsGy&WppMb$(xDeWtkFVH#h4=k4vI+izpMI0x(T!^hJDdheSM1^)$AGxG_;s*tC$S z-Y0?NkOQPkx^_#YrKK+ewS&!Ch?H%CuC?^FAl!EK7K`Xp?ItHWrtFAQ*`3E})SGC_ zCQh~8+V?EuU^ERc>v~HbLe4{EqjMipd^3uN6-^Xq$?IdM%t9cC9tr~=62B*`+v!NF z4f1V%fyg+N2%h~mrY^LX=MT6+hXj3ZGl@-ZPI@&BUdoI9kHr{VE#3v5zTaPE=3{GN z{VX;YX7}~Ad)P>R3%zfr7yW-#*?Bx37hdz&tuKLXh-c$0gLvHbY6Y5Tu<_U7U$6b0 zSs^!OziMZ*)$f}W&ZXGH$Z?oy!KQ1wc7}YX%tNMsDWn1)*1nEi$`I@?y;UThc9&peBCn_?P=m2hI zf(o14mPKgrpqeS3(QIVc6CZIO8MfdTgsD{_b$bhx8Z~iN4=3hAMZ5>W@jNSUGS-hQ z#G|8{DzF$THF_=eu5%${p=dEik&UIu+Ygl_g9g9t*^nLAcJNWeQ&{c;wIinAOJg_6 z8`8`Kw6qf$4)`IRM#N!rf+-Sno7GqA5{zMb9BIbW;1u!UfH7OzV;rF8agtGF?&HFQ z^TYdqkLg2t)jzNsSXGer`#=Ji9xO-Seg`nn4MNBJL6BP0sNK7h@RiVWY_TXZM?Q#L zY+&hUb?qBs?jejzL?$0^9$YF=wav0vkH6r1yMo zy<@NTm&S_(`}SymDc&8KcpWpxap8YqK#9A0w&HB=M{qXxVBGISK!b8H5o-5X8PokAA%X@gAm5?w8s zf!wcQt`HRIv;-qYPUz;K`0^)pi%euB|3_|}|8+qx^=~x%6Y@5M;*;^8UsxzCE}+W$ zkc~v9M0)70gr_GoCVw_k-S&xgyxl5RV6osGK!y5sQ=Hc15ibw{n)^mDH!>- z1y`^QqWFAqNujVPcX#_pq0pDeEzIYKa4>zSkYAWf^cV7@ZHO-p<%v+r&s~O#Z7?#Q zrvXcpd_U{l1Jz&9o`eN(s<)+kReSqrp>{<}IhAVlNG6-Wu7;)4Ne3(dAG*3%j4xh% z;l>|OpGn5ceTv@bijoCKZ|Xfhl$iDX@u=|_gu|-FhQ^wc_Dr|8kL1P6mE8~~&q`wY z?Ym=Js`y-@Jy+pTKWRxk#2$}YrtC-?Xs2S0i0H#UF}EOh)GavYuggu-(>EWr{SDJA zpJmgr7N0bz( )?%$tmhp67)hK@NII=YgE_OLsZq^qxL?*ZGw{qsn#8YKBDp&*Bv zrLv(?qoaDSfDEA)zYM%=dO3I*{BrTa8(?Ab%L9X*qU)>vC4Pc2564z-cuO8&Dm)Bn zo9^k^*av_tEX)ga!sk4)@i4_pii`7wg}LL}SC@OAHPE`OSXh#G$QUWHBey6I@Oz0s zvXqyv={+6o2QKrdW;BBAB9hRGI?IBmGl;ak03xb?cSm6I)W%L%CB7QBl`K z_@-LOK@r>|v??IQ5{-}=D#NW0qRj&<)k|6m+}OmiHJu(TUM3mJ_=+Z4oGw9@g0a|j z$68@Ds*|LgrB0%28BniMM>!%^N2NVdM`7!wv`TCOqpv!AOvm1s~&*b)*N_;GLV&22&<@q9_ZBDoaD)I@Oai~_I=*{uS#5P*2Z^bFK zL?=&APkhHk55J>eUl|ekVeo454FSGnC!J{>A_jZNw8)FVA#u$zzHuf9@1J?N@&1`1 zoJ%0V$I;TKb6n!Lu1|LFEJmrllx>Ton?gXFlXfBdKbkk~eCy3n)2%m)8tYibylo|L zq!SEnri))3r};7%@qV{O3G{I@L)}%olNeXZJb_k~47y^Z#HSvfFG5SLHqZjR#S&K6 zlnpg5zEtDFAKxs~kqb3kMw#D-(P&^yhSXSDX7gCRBq-Qqu4EU2*p;wfY=Qg)@>tf7 z2F}N6gZ6PAj*=S**eBDM32Db|9?6MyoF*u@Iw<6Pf&OQqT=JP30JW^R~x z*fRTQK>AE8BlHsYzNA#5k=YhP@K$=uo!Uk6Ez;H&!P4O*?JDgi?Gc<*!rmxcSj`rO z@k(m2^r>X`Dp=Z!p;FllwRwX$16(gQWC6qVFj(ie!j{mI8kpRJ8CM6}yBENYa+!NH zt+IM6_R~LYu#~rxfqki+2zQn)tbc+_$q)#l+11rW4GM#YV|R5?Y`~*G9J{NF^y{x? zwHH`GD)<#vKr{-VoV0Irt*b2;(#=-@AOGAi=`eAw?87V$_fEFA593A;A{_>w9)Y7Z zpI_eHGnLP`rV_Z21QcS~(1D#D<#I>ofkQ(Fb&#v$prOGHZKbZRQrm{X*rmVQHrl|7 z&gOQ2+V>QkP3XDHr@tcu7$91nL4U7YG^U6RdqI%2E_M~`1o1F2<5MaUtBX#@MJm5K`BJ;!F#C-5)KJ6U({U4yY`~V+MdkD-y ziWJszL;m#?atj>`I0`0PB;z4=9DKzsLe$P-N$9mgSBH7m2qN`n^*1a<$TOnBu_7oV zU|+K&L#CSvGGUEf0aOew9-vrlv+gcv-Q z!oYykE|!^g-_O`|+E+iBFKeJphVff00k(;?@i@4u#*@T5{fc$&kFdFETx*(Kui?sO zHQ+V-oKiEP8~!JB!&k9xcq>lyzV5%#2hUXiKT|dA91Ybo(92d|-KdOxdaBauM>!+E z^s5?lr45?Mi{b(rm6j_*r6zLTrc#q{)9l35kcM(uw5MuhS>DTGvv)CU_Qtf+wTmEu zx)JLa ze`)MKR~Cihawa3X195?Y{V#SYC+i7^RTjYa7?QMmUYw@-B7I}^U*yp(nxy&M137Vl z7l6Ze9jdy`&nr$Q?^kEg44CGn3J2(H)*`zw4=8!YA!*^V%2dLd8fL`-e!gP3L8<(q1WFC|{(l*IopStTpn~@x{I2z$^7bd;~AmAhn7W z6Jn5OB0iG{H?O0HZw{ZcL~W%WX3$uPlJdFms^Qhdc~8v_o#2qDWw`toC6WhM*bdm) zRB}Ok+k#XwNB3q0iE^P(4iXs)gKW?i+REXCNn1N^D+RFGnM8mDy#cJ?XqQI(s=lRH zlKXT%totf61;o9(;cZ}sJ)FT~n;_G7jq2gP2qH5ihFwTWVo)9gG1TH-DN`ape0ts3@IyHtan6-g^ae6G$ zuRZ!IlkEyG-`)IOy8+@4i>1=`xd6>q+A<@=>9m2pb%Fq65{Ubz*!vKiXsKZ7!m8SC z95Gr5=ee3z#Ln_ydA%G3k9s)la?b$7T%qm8>VB7Ym-Z>`bGS$PNeFE6q78FDEDl0X zFAF>rB>!dz^%mVPUQ3`KV9%EL5E^}7VwZ}<_!4#b1Vd39G zCRxUo^`y{QPgg>$S-EoKI-4o&dZ7#YgvNi@rp-6TriaI-F%>OH9 zB*%Dw5UT9J@Ty_)nk>JBQiMM@#xHdl9LPUWHf zn^#S-&&LXSpQ)O{7T-QD#_Pv1_2DDK$L$cuozJd0@#iC|_H(#(0$RN(#f}|2&SS@% z=<{~$5Tibsb=EFV78|T~U2(ZfGRIz$Tr%l8qoLk~3{-tyZ=o>W$!Zcvwb%F8&Ovdn zeHudc=v2WTP9n@JWYDCo;ZwQh-Eld0)4r&*2$yQB+Y#5%orsg-?z?I~<`J1SN_VU! ztjiZ8W@jBWP!}T_#$GQ*G}IZ&@btmqvo1yyI1_!H{EGeu?Lx9WngiP5Q^-Lm(|A;M z{wwAA>WNu5=D<7qE}SOaTW9r$@!@2gR3_VG9M;IXECj=?XE@ZXPB+J=o%KpLqz=Vw zOJ=ykFc;E!;O^M;YbAH@bLkzq@Sv5%|WoyF_z1cV9`IBN+epTO7%Fl;HQ#}ZoRgdC*=J{ogycOb2=3(gU za0g!*7>9B03Caz2es%%kJunsfo#inv?cPAN>rJ>+=z-erY>yZegwb+*BM7h6U%M^7 z@Nu({bk1%IXg?;ecDl}MYYSg8DK^LHkS8)}K^~#L)un2?sJ2~X@x~|V=y2T)5Vi9O zB(hjj@q*6>sf#Ufm1SI7wFmIV_D4suU~q@P=P1LXKzMIQ;MMTqOL_S&2c$kq&}RpQ zA1NMrKkYuxr#_zjE<((n{h3*Qq*%yZd7NeYD3aT78lMCNrl6yKr*Vr=IGgJ|&fT9s z4{sGC`@04g)i-~6wQuN-PB_O@MnvLqY#!)nCxXcfWe4lwMCgxF>mo`G{^J1Htb7qdZ1@vDb7zmc93SXb73{IlS;Y;;1}N$&j236zxDZ*^sJ>L>he2Us zPgvN0;i8?Bq@1T~$Xk~di;D|N#q06i=AwH%m+!*2GT2a=@~is?jvOIyhE+&V3I?}U zdiU!f<#T04E}uVBXZcWyuRcrKDEeTb<9tskMQ5)INjo6QM>@EKVS7rNWa!mz*cP3B zN~n5NK^K|;*6C7DC!>&AQ zCFlsSAFC!~mjf#TB&C}eSr?{M<{y)7!=_I+K_h|@F)$O~$U~H;n`_k#w32_Z^HqtF^UFdMQkYm;$5J zvZPpCl7%vbSPQfzpd;j&N+#2rPIRWzJsH)&MThkEt|*ADKxDbT41V@G^a z#aEu7#B8E{4cRz2uxh@qG}2mJnitEq^>hz8>arRPipNJi`L_>XCQw}7)3a%S?)vd* zvV7!eU6L1z59;b33fRIz;3#Kbf$S3S>kC6WMxXSu9&Wm)AB}NjvXkcaP5^ zz$N3*LeKJI>p(KOsJ&xd|1Yg2U0wTkpq7Q}iiHyKRqEnb{LIy!Dy!X?E|X!5;5%!w z3v>Ae*}jd?uoc-HiB#M!lx~H!gI2|}nm?y8Vt+clP>sTU5{B*(EiaN>= znvWC~v_Mx;#AOKyq3)PDM|-clPXCs+7B{*b4o&WP+DjDI4fHiz>l({#M&_~RR}U1s z&FoR7zdTXSo6VwZyIGZ1ZuZLOR@bq_`O~zqlIm{8S<-y{Ue*opWhv^`yoFEvl`_eI z1jbK1sXt!z#4l<`QJ8oq@gl$Z7`^!=KDLcgZ6o)4sZ1n-HO;-Ty0vyTXS}XKhq=jQ z$YDLbINCB#KyG^F4?g%Uk-YklNM7A2w|=SUkeBHv;ZA^aVf&)Nn0|z=c_RWEs{N)T z&J(uy?52jV11@-eG!rhfKH+@=tK_wN9S>pwv5bho)gim{KM! zWFif9u$F%W3OD$@C9=Gz4UqEM)eoUPu7fY=x}R;@)C{0dd@(;;y-U0S0kq(0C^zw~ z;|?8H0_$wM{3BNqQ>LzG_n4)n+rGkI0NBcMH^aoetIMg<<)-y-W(D7fD$)2i;mbCk z2h{}LyaUzMy)YMPhs!JFIIJ7CL$Y+4b|YlQAHvEAe-AUZ08u}HM@R1UM* z8r%%O!%#7wel|a!pajvxxr~db64|ejNin z&#n43aZ>%$RiD5A#xwTvX439Bgt_C>HSw0B_D21yzC+ht)$T9@wm5&6OE;hS;us@o zhy$w676;yswY50-g-`R_z$=h1xaR-I~_?YdzDV`OchhbC?NHSLPX|?i6!mh;iyz zKrRp%U2;&r$6!od?lw9WT71bvciYi{2YYvXNIKWxwT(4Cb5$$Nz&d+5;f3G zN%Udxe3zOw-F|mmb<&V@rweTozq}Ajn&`6ygoK;Zxs2L)+!XNumt9NKp*HaVl~)@V zm#B1iG^9I1rF$8tJA%{QAv{hu6DONdsUD|PGn8mX{~%1a)GtEiY9G-Z=1>pV##h$s zXX(7iO`Od>R=z^^kv<;ocWMt}uAlM!NV2jo_KDF9&;5C&xt580vt$edV=~Zeli2jb z8PnBQ(4CwCU-+oMAa<|hUtX)eBK{RN{RQm)`)cAe++jZ5xH>)(x|-j^Zn8NThxNDM z_`fskz@~4DO*@FyNk&=2K;#9ythqC7WlnRpGmYn8ZZ;x)0m zcCK)qx>=2#IBHhYW_iUn%N*g`O!=0~5d!v+pr|fYD+chB&Fb}98-C;BdB6?l;SAr~ zai;%AuwBiFm36zIXt@&&T_r}E_$F-NZPvl9B{JOrJRFrB&PAffy6Ud7CzWEXxHIRw z{GvQxgnY&Zcg6XN9Gfq~=Ab$Q64SCcEbQ<2L#)Vk5_C>o;eY}4lR#{)W3rWj_#PQJ zct!S{U|6mB-16?`OBVSWNU~dEWFL!;l*CIB10y0<1`~td*1i-U&=^x=LcbS1N#XbhlKZ6)@jV&h zEc)fyvxB-Zov6W#-6t=d=evL<%zXFd1w;ccs6^7|3j7XtYEDPzhE;#1E(2TLz}kL} z-QrsH>wTZ&tHRacu+?l&b6DKHcx?9+_J$Vz@n}NMY3?+4KS`6EXZQ9l0mSnAx!LT^n?CcVeDjt6%&@i{bVZRu4`^`T7BOmw{FRv$boOD=hL7d z_CqUe=lX88hYlOH=2Tx+2axWXo*YA)nqNG2Lw^d>DNSa02Ouqo4tfpA7xl)X*TJ_- zfJ*sE<5{z&PP@>>Yf&=u1G>}7nOYcT9m!1Tmd%H>(=%GNMzoX!5>MUna96H+pEb)>p{oCVJ~X z|0N^xIKS|-K3x~wALF3%3Kwa4!E@|a2qoBLg?V+2n`~aderP0=#`Rz!LznDrVv-&> zp-sFR;vyAdf_aA91GPiP=M=A^%m~Qzpy@auA-LbkpyOfYRZzE(NBEzXt~r zA@2z5Vtk&BC%)t5G0nR<72T&WnDf%$r!Z4S5}02Xap4yH;dcdp4-1JMLW#039TlUf93ykK^NGq)R0M;h3{9gf>gAvgY~1D99_8XW z@IpI~rIL+Toqu8z(pMaTcZm;$G~TUfB|NF|M3#+)ImjwWCOkF(nBHN(@fUF=aLDob zju4khtOi~oRyMN)&Zb58Y&sjqJ?YFK7;_nzN6`XkAG(ws&5x;do?vkWYSkQ%a4Sa$ zP(eKzaEvrJia2>O1?Ix27Q;K!;|uYSup9(wB^_F050U{1_zuP(hnj1u>I(-c6?1mA zIr|Rf(;GUQ&dM2U-VPyK$O%tMv`hBkpHe^PR|}JSTBjEEk(oz7w~! zJA6cN25tUQFPq?13^OwSNWxM_4rbOfvj3z@@(rC2Rb*_YxrEL)i{LQx#pB3$E8gUW z{lzP2QY2Yywc<4~Qcx>|nDuQ=uhz5-iDXgahUs;wpqs8$w43Uiv;s5ke$q9`x`l8E zWXQz$MQ+Ti0EQnv%5}cNGTg7wYZHP^;CX0ksQG3ftsJo@o`aE#K)aB6EBnjqQ(3Zs z5jIVZ$I{{z5}v;B?d(tv%LaU3OfiLe37laSQzE^BjaP;q?=W&b+uzv%HeL^_-rzLm z(1Ns);fjlpC#B`NtwM)ZxU4t00mb1@0(r%0D(upJ0@a%A{~H8_?bcSUAm1rjgz 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᤬L#;eUkXid&D3gqSkz)BW=HWp?EvTdga#<-| z$Ye(=RUYpmpylvcDOvOZ!N!7v@UkKz^5U0FhP6@>^rG&}$llJ*K713E>W%>xqpc=$ zKxGP~2wQ8G|C6J8hGz;QR=eXOL}*bdl}RP*#X>!m%&=@41EndBw-seN4Lr4lbcCR# zPor)lc`HeX(E!pe4rDnG$dza{|17RjF+{P;Ker;Qr$ik8*P~)0)O#=vG8xCGq+72xS3zbhOOZ@WC@ziXeay4iLh>4|uP=v^# zs;GI&<~01>RZ`k9q#rjeKzd{d!oCFu<4b|4%P11Q^$R)c)1Bkf{sDeL2jVx@cwDN| zG|Qey^nnidQSgo5)P@E2;>4R1pG|yEkc6jbC*2r^aUP9sc^iFQl3(aB5}$=cGQhr#wZw4yRQ1skOTjbDCl*;qlFi#DvFd zyJMPOtCPo>xjpm0CdJZMyJH&w$0_7rlH#iu#VIa|Q(VN6=C<_JlRgbSv+>E|gHkW7H z-Il%Qzb3^8PL#s2xQzdh6dyS0vz+{C{}Cx3v#h>M4;KApaW`Hir?j(US%b#q;!fa~ z#wvUeC(gMwTnHx^O5VWvbgt(*C+CH$|P zG=;l5#oQDtZz6?=%akf7O(78dYhj$plpN^?PcMfqCr1ITq2_cT)byB?4y8x&qN){$ zX0d=`tb1w7G}AjA?dWF%IhoiadVK*QaOrjubGwxw$#0lYCKrk^kH^_vr=?y#8?|Eu zm)A0>UTOELrygQvjNHyVaNs*_zI`W%yV!D-*(b89jBEi#oyQ`9i69YKP=r|9fJtN> zJ{T}`H5rOTSYmh>V?2h^Y&(WIiNdYr&)HMFeTAtPX74##iy8})FWi)<1tMP5hlDWh z*cT|9fN2hXcDg4GUOZ#AkrEDfit*WcG9-40xCA-H6HlP5#u*6GS-D50-LMOWfI%t= zf{ejtQP)Ni5_gRp>ODz+zn_#_Y5)FGoA0G5f1jU{TZ#4&uF|TI#!VdSLq>Oz`$8ED z3<9iD7gihwa*FAIj+GM1gTp&zDTGzAnq1ir;jvCfTam@J zw2e6KBJNG@U4bcTJPk|IB_c2UH26M&B-KJ;wpN=h7JEX$*b$9MyfE8yd&+cHx+Cy~ z#VaopnxTA@(QeYob)rR7wpG>(drQTIfxel1zG`bxRjRqx9>A+k5X5xqF^O#%B#ErpCG6)0yLyzUej!BOeOX$!YhjT&B?V^ zV(y!0XE4oq5f0`{4wfQLrAcNt>B5MN3B+qthNBc*&#c>4`7mnWnOML4FIUTs=^VZ< z)n*LzC#C^6RBu!8Jgi<;p^z+Q==~zMb#Six=&@ zv?1`N4eKP*vadeh!4Q^exYoS~kJ%P&;}44e@4$pAzpNj-WT*H{DYxEHT_}_Vt*@+& z&2jvRU1LeNOp3Zi%;H?jdG$vAO-^paG`mrF{rT*=Or~&%E8ECKZE5K|fx!LztOzBT#OS_k780aw7VcQYizxM}D?h=AahuOS&8iJ&4j zGPfPWG8*wBF13xjVLop4a-N4~E~wRphikP9W`0RWv|JNb z){Ty?TX*qdb3J{XV1sizfB9^z&4we6rF8NyUp81 z2az5*2S*!;w!}hgiBc=l?TLjSWP$$t5dC8H=fqaboo@ui#2{rx5DLOwf#*2LnXZv# zE6M&~6_O^WTjqb`Pb3x-lV+vJsCo49#!ck3_Pki)rEwEcvEhD~RP?-9T;}HBYcpZB!cDML>0>1&8Y3MD zL(oGEgTmwM!L}c5bvDadDw~nU2MwMb8t~uQAWefl$XfHPJa16!tcQs9tj*8@ z58=&~twq0ARINA5rlxU!;h*D)oj=9T@GO3)XCVRqQ1GAR5ndpS6O46k>(rFxu`Ji3 z2wREF)Nd0x9qKzm>*_gT;p^-8%3`v5n-pB#49t}q=m-KX^hJd1IYgQCV{H&HszI24bej*)!6 z2I&$AOT$QVj}@@iT8VmRN~OU((r0V={746NY+z-oT$fRH?8@Ou${RYCUe2~yTrnMN z`RR;jOa=2+(tWJiKEtv`ukVqVOxz@~Y%Ok*48+s%xIiK`WEOaU_Ed_@ z2%43zWp?qz(4&j3pU0ZY(nx@bY?WHG#b7e(o|K!1{6#u5H!*&%-MjBKJ~4+q+-TQ) z?q15#Nb^9t7g?hCe$V`(>KF$3UpADo-Akv^!yRfN|G=ReboUH-Qlw}^r3AJWI<*g_xc-ALv6-ku$`9d{ZTothdQxf7f{Fp#JgdoS&*RJOCw0xGJ* zj$nnWUca6j!9g5>dJj!Z96}2O$MNHdqMp^aOY|ppByJ6~@+%WBj@O)l`5bzzb(tAx z%DS`oTr5?&s9P5Xx0Iv!B)-O45$o__*v_{lgSR!s3Y*IF?OyfkMkjNBlRWPynFCDU z2RGaco4%!AkO)LFm_Hn3e2vbg?+w^M74ow^-Lr*4nLk~F5x)iC`LIA+8tm&kIyHH; zzi(Y>xIS><+}uU=`ue?%rwMuG5+0ka?xN^lhjd!V+Sts`NjBamJhPoTW_yJ+EPOA4 z)zgj7(s_<`jquq^dB_^<=Vbe11CZBPPH@eJ!@a%rdT;OH4cA;Vb6%}BG*qjdH*-zn z`_X87ShREGx&3Lt<-7#AoVUh_;2DXxu=XeY3*ohBn!X&$j|@j(bTX zTVYT?gf@_7te&KOK=!i2#u{&h&ZN=S;x>pl#aGut$E4TALKLyMit&{JaS zTc05o-!>-c(o@{yV`hfl--wiXO8A)93k!3Zcz$KVOPrUe>X+(U!KT4W$fq&T3eTlm z(<|edUDPA{nxDwFR;;nP)d}1txO$9Ty;3g|=*;cJvQng=5zqRqhO(OaBC+%d5qwk?cSc{_oVWm*;1YE_V%1A3889Ll?aqtGRz)G&8?%$VQ$Z z+>D8BG$Ph7YDT-F3NIhlkGWhqrr z^%~{pN_&PD`h63PRm)={0)+hCF~d1xn+=uCFydRumTX(Ow4plN(XpWb3Z28M?JSUS zTbvNM>t#NPU&w6)w+(`<9pgyuAhPk9@>r=foK5CIDzT@0^UR#drqjzx{4Oj zNNgMNwlW-6ys^Wo7}D=(wSd>5;dnKUU1YhL%47-I8Xs0fB1rNDIgurMGK_JJf5s&$ zX+zTG`z~9bplx{->WYYvrg7Fj1X-^cXjguRuEtCz<9M~47azP=4A|0fM7`px81GM4 z+TI>sQ`&2lvAnT*&P%+~cX#g_$wHy7D^=>l zcWTlpTX5h|iB_zo*Oex+jG&ar(4bJZRFGcZv{ay#k6oU}Ig!HF1kCkh&f-I$Ck>^> zt!-ATWMQ!QAw1Rc5V<@*gffC@+3qmRGMpktvoyZm+jsV4zMg|Z9~y#0DM+gK=SKH| zx+yK@4#LJDhk=%ZU)$1H$gVjn+N!j)mB)v)6i=PwX5k{wy4FP(W=6~9ku=-ANpVsP zGSPIjyC(DbqBPeQKd&!9a12}|(ylh>cbPsj&;^0c)0r+-TNP!4JmCMUgykcfuO(B) zc!QJkF$*i{7?j8`1GO}ESB%VIaQq{?>2``ip;np_2y!wbi^vmexFShUCDDd-$SQd+1;gU`-<#SVAs2YBm-W^ng88|%zOOyqJ$fiBJGJ;A)YRZs_ zL}eqBOxE(;bwVJ@j$mF*Lx2rjt4NH@F&5^tZe`dsdbnZ)_B;V1ZQ`q0A*W(>t|Gn) zV!G>L8q}{*7ec@BRuKk=Y>Zn@MFxeSQf{?r(>#AgR&`_D#@XIAjNJ^cIAgun4h;Es z=^9b>-z%cNS?>*A5a5=z*)JvtKZHb0m{#`;pSx}&OKw|;gbsH&Cx)%(#AR8BzU`RdgCq5 zVQzODX11YaM+hE~!5&=fkH%}ikTP!fcexkiB#k6LWn89Pl3lE?KM5`N?~MLKoU zUvX2RBd5~X+00uho5viSSu5i{2?LHfsJYgJ6(W-=2>R$03YKZuS`T7183ajEf;}DU0*Ao=~;f-W+n@5MQ&twQI;<| zX#|HDJ1LcJR%WNPuh_ncjeyh6fX|7VLNXn$Q`B~ETWp36Q(V;`?#g?_f zA|>1g*RI%s>Nj}CV&^Kbj+&_l%ZpMeZ#U!l`6|?i=07QCx1S=N#afZGkGWY}BeqZ3 zvQAh^inXl`g3>u_1O#g62?uqG!rV3~9b4yuQ!qAuC+xht-AQXiBVmcR@T{{G*nLd8 z^-!@K%{Vf}1#;W5OwA~fBu7dHrWWaRu~Q^wvpqZx@}Pnl-jpyNt;_Hn8hNd()9Wl( zg8Dd2i|tBhyDdhGChUw|h#PvEz~QRsF;u?_?OEHwS`|RHXkK5dcO*u^Ww;wCQJdx>H30&F7NyC#Yna9#FpE#b5T%)$j*lPc7HAs1{@!QodD5=IZRJWA zE0W{8=&4qB4ue_HHQ(8|f-u;7tCbzYXFOxy{wu~>^6VViTCQ~CE0RsKe6ecMaKR=8 z#$2DztBQ3VPS$#-wpWB&!n=#JktSH{u&R*P36n)bj4CFBIl}x%P@KToi zQeJ@Y3S1SI-d`E41`qIVKxEUeupQov2wl{%UiCtbc%iw+z=mgwvO50HcT_89Oc>0A zoyW4d@( z>yC_BPLfD!zEluH@W&yg_Zkh*eU|+itvQJFa+uldMOo-#BEiX1{H3TfOW z3Mt7H2}UP9)(hc)HwtOoWjW*}j!0G6&aYhSt%Aeo!1ET%y)jP*7>|MiBeGb(7L3Pg z=rQ}!3llnVx9fhSAEloPES)>S#(lz2%AAZDj;k3k7#p%2##bs5=l z(V3F{3+F6c(BC&8pf0xi@^k8~2y^!7jjf&|t04vPv ztfW!&JWnq1)Z=zjD!?+Q5G8B;Iwk)R{T%L^4wgKsFj2}d!F{R27w+wAE ztr=cK>xvH6K=UTt;mAM+g76*|fo5-u6=ob8lW>sOV`g@<<0;krGwN7MWK_VC)jR{r zjo@uYoE3+r)=WE%Q2x8RgecLu zdzzg3_VWE{bWn0THWFk2IPzLPrPw_v;2grQaet1ZE2MCVTDqF)G1u(o6`x z8vn0ba=7+Alytyy!xZvm)7WbY6uCznPMk)2PAUF-+PMY2W{L@9{mZ@4d;PdMMFY| zQF0Cwy|sCAa?Y9CBDl_NlAFHm@#cT&kFHN=aKGtGNGbFrDNY2xj}DFDb}o4e^QRiU zm%DggHzdAUT5ML}kd40TvpnuR>AOYlS(igiBHu|#I44QiK$qR8U#l0fK0G1ufy5GR zOeC7H(9sBtOu%=GgtXav$$*OBT%BdUVsir)uL@?5(>BW7+#2eeQkSvy6QApGHOq0A zxtM1E6sgZ2*Y+^tz$ao8Kkf>!#CAOCUJ}WKc4noSa2P_xwt9Ds00xj zba0N&5Dz#noue}yfphwxpF`}gedhUiXOeHb0f}tKx$%cWKZ-};2hX!Z1)8;s;;!_w z!UY8z@u@y@6ng^-9WNTzP;GR1;LS0}0n0Ib79N! z0ZTT^e#a4u9_{eQ3~5U@>OUaT-@l!rP392nnhGC2%fea zo~{h?28lf%l=9d~OBWxO>h2q)NvVFO5~~qA)KY9{UnvJOA;%0E?20<6bZ|ISO|sMA!ZK>L-3~YCM(357-rf%593Pby z<&%ytXSK1ih^1*q2es>4-f>G3K-~p-0OYmnK*icBdna2pt}+nX2Abv)Ch;g=W>2WNt~!1jzNN~++Hz_m@`jcc_dya3zCM>YOT_>E&q|CRu_VH4(P zei9>Wd@GC%%-)SY+qn}~*q@3hNzrod=DS`g?F0M~JKF5BZZM-Gq`-j7_j*E`c)d~8 zWo2SduxFeghr%V)t)@Y0$6&w`gb%fxDhwC$J-#sCR{Bjj9*$U&!*N#nUm>`ihYViM znIzxr3cR(CK$G`Ey7XU(xkl~mC|pBlfj_TyV4J-Ium3GtuX0@M;Q^mVHMQe+tVuiz$*dx**Pl7yT zS*SS;mPet`pJLnF1|I+)C92O^A@g3A@dS8=Wond2$cn5iDH0Zs;0YiqEV{h2^&}mB zg&s zW?UcEM?lY8NZdH_P*@cBJaGKHCUxI!VzmzIw5&aarnvWFleSlY3@|R9@)<_0GVCs1 zPhj=h^#p2nuV=d2^{jXJl%eg_`?W(`-ps@s%X;JIE>r@p_EPdNZ>nvN2EHcCx!-9! zVwnc;{SR)q>i2?11&k>9Wn$AhvG7_fA2x33*KgxT@o3ux zjc@R?V5^oDF<|?exyRuVdF6W*(L1;&wj6!Trk4uNJ5=5fnU=$T190ILhx zY)^`Zz47M;*spb*qYpwxp$Kd2B2}2EcFc7HY`Qv8kVN?rhz0;lyiy*?H@REOp&irZ ziiB$2norSf(iLv+(OAm2EroSUvsfdyp_6(|t& zIJeo3Ifzv_@R{}rIuHU%vc-dMlz1r0*Nns{WvV!9_Hh{;a;DMR2*7bF@*%qEo0W0G zDT~u(NMkQ7OYlyc;~aGPn$6nYq}iDVi22a?)9PzJxUgxZ8@P+ic?y9u=%O+R=`oW` zy43_khegmwkaGDzHDj8!%;q%@5UU{JPm3=Gj4n2{QqV;auUzEl#6+)2QXepS%E&0N z_+uiAR~o=w4{?vKxoYn zb!v}!ET+dNT zE1_Z89b{y1g$j%(P)gg=aC2^y0tZbq5hHL9D#bM+v6XZW8r!T~|LKCwh$i^bzV?1G z1`hEQsFFD1Z>_zhtI829lx1cG7uzh@NaM`)V zW?~s)v1;;80L3BLbr8G{4$b?FLx@uv&1^5%^$^%n?)5E|mdoX{#v#%Oz-PyC(jzHW zKna~Kh)_xjkfQh@q+m??DR~=vU4fua!A*x;KH8%~rS>^|?s3}s1x^~aSVg9#K6h_i zU(#N?J|~p=1p5;uAHPES3Y*lq*=-)+xZ1kp_75N&28Iix#rxwMcP}}Qd+oeSu%tfh zW;c77U>{tT=+uwaw}Nin*AhQS`~ud`{=&Ol%2Amnfk*TRg0%q3nccylAO>zC{4qxb zIB*INlWZ12grA02n>>{`zyU8@x zR2*oo+1M4C$1c?dp_OaO9OijTv~`6BWmIYW!#)309s_r?&kxXWXK{B&~MyLg!SEMUr&z`0F5TB zD~Ift`^%g_7~+ged+d@PB~p8jr7OC2I3gAGLrd>J^6~xJKKtWGj$Cr&2qD{%@_vmQ zJj1ok&?V_CiB?Ie+|f}kZK>U)$VULt-!G9OH_1d*%p%NN+NT}O6O}8(JuQ|Vh)O!C ziYCFEwH-m>!b^B;}1fXd2+lVdMuw59~)~1Jk{XIt(U%;vLn;c z7|sWXHgl*Y0@qA_Ik*TXq}x8Kt;MPPE?RnOk$+`&-Ms1jq3GS9ugV><>pGjzC=u|y zhY{YUHX2TsXV7b>N#~%Ggl)D5-7}NG&jThwO+Q25 z2$p^BoOl2@o9|70pDMIHkvO5MYfPw?#s9c?Q|;#I*0fI7Zk#R-S?Mj9atyZhw9`(9 zlU+}Ind8+kTrssn&=po2^sltQr>`n3#`tDD_U8DOO;LOy!zvs7f`xxxV@Wth+K+Ti z{H4RO`z0Ltl62KrC99^@Yhw47r4Pd63q-U~Y1L*!#KkBGd?dKmb__H7*%49jbm4I` zH92rz6SB};0Bk@^5ni$*nXD##sJVn%1azsWEV2ZbFDNs_FV+-UWJLLRyt`*pPTRDe z;IYL5K{h}EQijJfLZG!$$ycKy%WNg|Gg%3=7>XV!mM)aeqcFFrr+ZwW5j{{q1WE7q zm`p?g$A46S2QsAdM{(O+jtLnW`B7;(*~iYt8{ny?C?_x;zld!+Mj%s`GAO!Zck)>2mrZN@^2}IIA>u)(n_~>pBvD9KHVAwS(PY5xEm1OAQnm0qljcEAMt$t)r>$_H(+etjn8(vOK5UFW*YAtF%neLB-)#Tz7CW_>j(bYCRi^r6AXHCW$b*6=O$TI8zHi;@}IDK^fnmkBdZ%x=3c^TeF~PUUKB<9RKo{mcM0 ztk9ULxnFbR(F51OpY~|JTc&yOzfl89<$`Ta7I zB0udRPz4#Pc$Oeg-Qj$r43PnyI;HO*FihI73_{uaAp_dx$nzP5sw49$p>qkeyY_Od zB^MOX=Xj}>K?t#3Z6P=iLUw=`f>6}rJETfttsOjd=ynw(LBYf_a+F>!7MT(4BT>#M zRiM2_(50zBjrCahu8@;+Ac$s4?DHI|nhTGFK(d7&)a z{3aVOkk=2ys0qdANCz}Fk=uWRzKqgpuew;>JJM_5A8%ZyVr0mT{PGex;01j*LYAS*RN-eUST9MP;DV`P|_6pz}n^TRVQw&*EH zju~!zTz<(Zw{xnD%2;eSFpg`I(Kkrv0Gv;H=`@l*)20F;a)LCuFeOyIxvBY91>n`V zA_KI~>dC6#7{o99oybWT^S$8Nmwk7UmtCkBpfM;p8~1 z!Q_TW2n1>?=`cx48x=7mNTpcN7Ea}cn1szSP^NXvye=|f0>mj6v05o%Fp!qr80KW* z*&$SZHU=hEDwcXw@K1-UFJywdt&p@cMPbS^Amon0;U{@YUTlIC zT8{{e32~TCvv{OttkH6El2WhsDASit6_HqL^kR4V^#9Xb7Gf5w`$IcCr~n9D?CJ!U!53iFicWb#|!1%Vm;;% z9o5N=2{7MrW(SFpQjk2zWAh}$FGO*JcxeO}S-@(3xRGYDVyO&oG3#Sy5$36o0$d>d zAh{M{2+hfm%CZcOx3mXQ7N%GzoFzr`I_V&kcmD9^P*P(XUSuzHdeUKc8rE>aUhqSF zJLmZ+CKj?jA}^TQcd(5y8gSa!qYQzI-kr4_d_ro~O%dTPEnmwo1Qw*5|KX*yURQI^jaMuYU3 z{56nJmh3E)m=a3&vznoRuEWm^Qq7}={c;>>ei`zfEMkpNjg;udT`k|k)-7=HH=>Wm zUqtK@*|(4B*Qz%rI-4km&o?I(@M#u@7UqrgEO;hv*(vdKbIM?bC(9vL4=Qq2StAiL z8x5sZST|qz5ETg5hraNI4>ujxzKiU@hl%-X;c|R&4eqQ~ySt$!FgUoQgIygv2KzUa zOVw(rys1BSRbe?OZ(ha<1JO8Ln+*tFq@>Dcvt!kdeMI$vN=NjOWe0us-Q*Q4U3AsE z;VNozHSQ>Nu4o4xitCSEjbBLF{JF3KlG190ooYo!fQ6JKl;$LIiPt7(z}G&M7*9;Y z>dwOwS0_FM&i40k3e}XS8ckvKIz%_3+a(eJA9Px%IFnI#=hl*Wv1^O76WGdO=I#8^H}HNGLQR3%%3u z40&jbG%*KB-GP^B65X+-C-PJ~rbEciIH8)LrQh~&kv*cwDtGZ8h(n(&wt3`s7m1bd z{jsz0r#SJoeSGheR-V@QHD{s}2OaKXx7^N>Xh}#nIL-2nh@o$94FgP>bibDVdSJTK z$4PVtj-M@$3=};>+(p0L?~|_eEFtCEeCYVI!^Igw9HRdm+md*eHC~((f z7h-9|;5eygG%n8qM7SmUVIk|&7l?8_VVG3S&7wlAY(n6(wKx$d)@~Z#0TqxTK0aqw z`)K7?mfYaiaF}v@;qQC_r$kxwH6tB2Za6iC@0B-{4g~|s;e#_3dOQTBu?Bfn2QCkh z&Vw;{^3g{_c9|`5Rnra{#6;yHUaQtg<@yePub3nbVheZBvJ7OS?P)ZroC?C8+~-+z zN`7MFM)oMWwW%yt+yev)9 ziOo)ka%8+R6$aw3Bhor-M_!A>A7YGGW)x0W;(Z5)@ZedMZfb62vf0I0WCEq=3co3_ zm+xA)#U{0}$9QmwXb!zyc-z)(#Adk!_1(|BUBT||TN3yIwLz%kc%KuQssWMdfMC%= za#_r3aNVVjHCkSmg!P_eYF%Y!766Jqivo4$>$OKY_N^~IaG)^G1q=629d>ePkt?31 z&vRXBlo^MvAe7%$hs?!ZdW{KsG)OFhC(iTK(q++%MW44FL>H6kB4*S*FFI^PL&j(E zWNZHs%K_gK$jP-ZnSAk64c;Oq?BMZF1qjBj+(BURB@}sy534_@w}6A)lSr&EGrzb3 zt|7sbDF6R?L*Rz#t9<`(9Lyt?g(`%Wm1Zwofy; z=~Ld~s>Ixdz}d@ZbCW$5pX{v8F+gaq0~p`rgM5e0;Z%}TSnuJBO@%{L9w|HNKo0K!Q`@;Jyrm!u4Iw4d$nfC;>Lg_ zpS&@Z@-;!LcC8~56GHbBV&T$xv3p`71)!~f*MyXMY3!a@dY#C=s}0KK?HGMk?4rS| zH40w(i5;MYvfLcv`4t{)?ADE3&L8;YGUdOr@lM$}oz6kY##1HmHhfo;uEjtmxVdn- zk=+az{>Fn!A_n`u7^CrhB5qI;D_8GJRWOG$v?H8s`|6O*A}v?Pg4S2NNd$e$wO&rz z95!EWxwndDf?q}(n32elP>IX0yG}n?Ujcl*S0@s7q{J@7%E%p4Ib)()tctPn5*lME zM!pl4Ph>rL2H9fXEjiKXq*Z)lLxGF0xB{kw8ompugm!iR&i=lw-N`Z|3wD)Q?Ug)c z_|6}#)n@X_7L;TG4REw4@Z&SJ+OauwtZY0i+{&HBU1OuSTtI0*>)hDWv$Y3V=5D%v zWP7n%QUoN%H*qqiDxC$g)xx<0^|?Zj0e1ygK!v&bz_|n|Fczw6@0i|dVNDqiu0v~erPL%Fc!oN|~$!$*)* zZ#skWMAp1^vrQZCxxmIOy3@2J%0`V3CK6~Ty;1#vK9)$svtnv*o6+fw@hr}JgI|%- z8FfG88%b=$-r(_xmtk)C3QB1o$2BugaJi9X@i?k2<=|>;(CCAUr>W*TunI2}6UHeE zQlEMbb>pXVA3R-FwjZnyvV3Z3B4*m_WzfH8gj0xtilyISYGO6DE8QY^cm5MM&5>o6 za$B~Tn#Lxd=rWVVxl+C+J~q+<#EwO~OTzlhPlW7k?(oU}C>|H9RmQxC&= zw4QNlu62;PL0RY4a(LaPydvWg?&9cO5X!;1j23w(j%^VGA-V@G_d;phiUwb{qMg$A z%dU4yOiGZ04j>18cdT3c5|;xr{PnU+SQCj3*V>ExYEWjmkVvpL#14IXG&vDA=j@7d z2ceTA^{=j6rX?hy)~X39&DP>(6XS>a%h+v&Oz^vK{OJ1Oy?uRC*=$by=UlaEUBlZ-r84lCt~zJ*@Ziwyp56_aY<5X7V`nGE@39-o zUWLJ2<7|U8L2nij&H`}U#w&a8KRLDdGI)#dP8hH6`<*%Bhfs}ur0CC5NO8DWSeK_4 zr%Rq|<{Io>Ht7fI8;B0rIlvouJg8~cCVs=X(Z`X|SY?Y~r3(G<-<&gsnr;^pFgB4k z^2gNz2{RjukQ-@{fp%Ghwh3`~4RL>DHj?PEErYWf*TuqeM6tVZT?^XwMnz8?#L4pB3Q`N%2Q=7$q!=-24Yi5cv-@11y3;-_>5Ffh#dX_-7CpIW44E4y%c>0`?u zo!R>~wVUFPGXvy?g;vya-K4~pPMz^snjRIX;ri4jnHHfM(rPj+YV8W!WpT;POQd}V zgl9U?1SJAn)M!pfjs>PX36*O;5-y5uEp!`UA1S8JO!N6DDxOIZWq8=L7Xq;{onBY^ zHi#xis2&M+usZjbl|{#tqraU6Whlj1bBzHx@2U&PXDK}Oat~gu=8Ch%Ao9{N%VX~8 z1@I9veC=wH>Fud@>>3)3T!Zz^WyVFvHZGQ{CB>Xd3X_@~!MHUFx1Q@2LJ@^Aq86be zs)Zgk^%F5R$jND9HZ8N&jQM5uXB|qWE%{iJE`@1DhH)t6W&)BOzQz$gsl$-y%@~4( z(zIk`*<3#5vheg}&GfIdI*#fv-58_zJz5ey297D-sD7Z7K^LIa|*82y@qR9yrf)2vbK{T z>RjGuZ>QrxTCPxvj3s8+MXRtfV=XJ3FtI?cL;+Z}<&(}mZgeE5hzCANqo|ILl;wTP zVPzbflTNuB| zDoYL)`$0utZoe1f3@1A?WStDSx7j|6p?i~I&IkkuD6Kpa{ERQ0bxw#coT>)s1+A4> zeq3&PiiP6BauWTF-fr}HhUfE8-keyXoto+ujn07_G&oa5bId8Gpx2oj$fwx)efUtw z3XoS0!qT?~^x36-{|Z;vMVz^mbnjo-^faKMECeXnh86n{1T`P$D3&@cMi0R4J6O?sIYpkH|W7@gP>d-13a zxxrzB)+q)pS*1?sfG z!`&Y4?(XgncO77G7<{l{a2ecP28Y36fWcvKc!BT#_tI<9J{*Sh_PV>bd%I`5|Nip* z!R6u1;6 z<7ei)J4c$PcnI%8($()m6w3Lzh;r2Nk`a{+ygfqEdtsmyeK9eV((e(kzAA6{EPapk zEb-3NzexmDqw3$7XaPM3t^nrykS(z8Q6ccjWAK@~FEEd8hOfnsr*KzPJ0`?wkR!)O zNNq7U4RRzg=dkh(W;5UXtOhocx4?@V!$zt=s8e+wixQI=wX8c`oylrfR5bPcd2Y)p z7t_GSyP3A#+gKP)0w0}!Et%wKp|QuYoZdoxcA=MO^&aFW5_yMz`9uQwRD5bSimN-d zQ$pL9;TdAf%C$Ubu0s22+^)J=w66$Uw*@gq!(fkT0nUT!s(wg6ze59G6n#v~o73oT z6iG3WH+%Vsyeti&5GUmt4Y3^Ku$Ux9mUMs$xOCSOGeKMN9?)j@;xg9f`%JSpB6-$+AKVX(da zkEt+iWiT@SJETr}Br`IUVJfVB$eNZ4(_0ObC_7S1g|Xv+KSqUh4WmjI>8bu66^3@S z$wMs(ma+d`5=^hJ{=E4_ZW@%>K+q=ItcXtt_1Ehna*TFs53u72))s{M7~fg7V=AU2C=}1F^H{qBV8r$)~m`XL5(oO*-3*MiQ_4; zrvvie0Qe@HTu+~*DjWedLWXUu|7bRnTZ>F0In;=>o_?LGa{|MsMg%#M#Gj+U%B49@ z;p9Fc5V6@+LM)k#v8x1!2$m?L#aaftqNJOM+F<9zKpGWkA~(=COM+nzZnU1rtD*<3 z&One{+FgUKh@>il0H}4>VB!SSMBuF<=mL3b;4UZvv(erfa2Cl3a#A41s-Q-_=ZTt| z!Rc^AjpqqF?Xug6sKJ*o;dVl?60SHXSYijuZn0(^e}Q=pS5`Um>)XanhRwTB$gQzs zdnoiys3IE0xL8f>Bu)?){CC!C|FUHjR?p;7s@}h10KQWlC;i+ikd9w(oHYS#)Z|B}s^JZ&0-C(Elfcp}O1oD80%s|}ti z-wGb^uxs!Xvv^}k69YO9cSt3XMGF^867arBrkkiFOd02DQelNfACaS=zmKx0)yTCZ zOPi{-XtiviR#pfkwd$o3$W+Ws5|&Eow)}+%bzR^%85@z=Y1o+AZbu?^+lmZr03u?Uq!(XS)@4>uk4X_xveSB-@yiDUx^y7nbZyBwJ%F&M_J~Q|Z36 zVXiC$G90q$!o3!_X_#Yype5znh{u|+OmH>Fnw(i-p=vCM8sr(3jOk6PVTKcAfGg#a zs1Z(uF=*==VTkl{7@+&O4ZeM*u3>5GKe@DFtQN7Cu_G%nbfzJHL{P>qQm*x>SXGLJ zS+8W1(2~$ASunITBr#WEB>D)r7BP%J6W;5lnrmy`irxaS?f}?vs^dJp)tU{}X8MSOQv((iH0WElQ4{P$alm1rqh$p4>s5ln#ZCv^Ar~9XkU3QENN$KKhVEaDiukl z#&TY3F1tWyv_O0Xw`cj*w)yi8n?g!xiwx%TJ$Af^FF=E=DTkE#B9UAy)|w{pyj-+> z{#>@~riYTrNHV$DTyt$T4yO5{QIfd|HgA_Piib&KR|+1B9JYejABNW1b(KXV(M1|W zPZnrW6C$tpvv)2MQc#9zh$T%M|0;I~(QjHx+e%o*lAx;Ea)rTcraJ+;0Dwjc^kCXn z9_C~_*@n43)-i7?l@i8WZS5P(J9f|l3#=En$rDplyN-J|nM}^p8U<=rIpHLgm4--L znMp5NN)j;=Vc*2P*>ouqj<7AFmkwh}j;=oMy!(!huG3oXHN@;w>3X9iANTmm>B7C; z91@W8#Rjn_X*iWju?kSwJ6V|g@tG$?-2_oZONkpvyJ(aUAx4k0pu%Zk$39SDQ=V1F zs_jC130I7YeZ?vG76Qj)fi6Qp-1C&F69EUZs_MXrwgC2FT6QUyobv5->odV>tyueR zPu&7#im}O^sGc(rO|tHApbDl}B~!6kxk|0u_dZP{Xa+^F;d-=5;>1?D2e1(N{9Y`wH#&FrOa4z3W4zaaGm$LiYTGtpDfFe=9!!|=C z)9{28nTBG-^;i|lTd05T9T!??$Nsq&@>oGD?2t8HZ%fOnLxxMnaWr9*2_Da`YZGF6N}8>*SF1#8Qb*r&WKowefe^m86g;2hMfXPd$^-xgOSno zJ35DK?N?3c4kO;$*tk?Lk*uD%_C@$l&1^c^Gr>@9 zZ*y^}PRxIpkY?HJx}|@mVzITgSX`;!q_jPY0P#E_2(vN{;{hmzs|7ai?C9y~=-hk( z6^%fTWfuAriK(G=Iy%N;%xc?`IcEYFz*8xEvy@6iN88)i9HKiCA$j&JmxNL%Wz4^E zdwX|xd;7-ola+ax1az}VCKvYO1gOJo`;j%_UZK6Eyyl2RlHJG6GClub-^_B$fF}&q zB!!c}q#OY^7xY>ei9GUasZ{e9b z?b*cSmp*V`F`3N&4dvRv8$q4MZ!ITa?9U|CpJw`rU)srcj0+)!HTqBk&?e1yI_(LS6hr? zv9@#ry`~K)D8^DREsNKNm1VjjW${7_F7UvgKS?YmupgMXk(bN zG9-G{(3NT#OQ-XB>TJ5RAyEv|r~76sk1Lpcp=AgLQ>ol;Sm#t%x)bW$tlfHqPeARH&b+l-}e;RnR03{q{ymf_}qYzuir&&W7lK)?BF0 zfGDR`X@WUpssqAYZPKp3(9UR6;^FZoRH&sn2G zRl!bhb7CMJA{Az?ZTitin~GDZy)c<3Y1HHiw@17rG-I?VBis{jFUw4{K}Zyj;^w8o zxQ*ppcE08qTuBv)J|#3HeGj8vYql_du{f0AC8v}Qt(fBjjZNdZWYNWAvJDw_>`at6 zX61NsESGC_gcRV(xmn1xKrlmoIUjoO5jWptMNcVtkq_3MV_J(=T<&bG?I&w>P1cF-stzR>NCH(u-@$=)hHP5ZRIpMu(ZL$}U}!wx z)YbL7S_f6sy7TcDMQ_2im52Dlm_dokO2Z7;O;6f$hWWtf0hm~PA~u129u8ual_skz zhY1iFB?IN(Kymp*!(zwe>w;hf>w=mg<3Cq{n=NU)kk?msa7l>e+kQkWaT@n;DeBiK zRTy;|xTD9jA-*BXwj>V*mE*OEkJ!T>9;6VCU3p6wQY6E8`}rlcCF8)^MD9w`bW&Pv zk+qsI^w7&(6HKeBhDFI4b=Sz(y$4@f-R17_hf6kD#=*?WHaB2ZuGC();6AKHd{(N&lFO8FJ%8pt*xVe4(?P?Yq+Il`96(awGU1wOk-yPDOU4p zLc_C3N2ejv;Mvb9&I=q5lV4G|{764sx(R!`udWUXx z8H7ixx~mgYcV&H;zLFv_S@eDfT@WX%<>18O4m*T!!xN#nl!{m8I*=B(VOqqy2hyPf z*+&-_=kyMiQJ|9-42wA0$fBLt)iMu9HtlxNZF$_T;~-x7fr<$YC4+v&?8?`6%%4RU zMVYjByq89^l(wj;^)(N=K&x3Om&F-5WbjR!rMMmYzRr-LE>a_A@C^g7tc?%dYNZ@dKHV` zb{I2fCo!q1>JyrI7w9N(vbz12^P54<91J!9EHjrJi@>oOo*s|qfyH6XNI)$0iC3?6 z!bxMb!C@^{1mM@WUVUm^bAR+eXQBPz=(7Zmw{@oIPp~~-GXvm;hFYa6jrk(l51h>Wj1MlW=ai3$;;m=yfg3hfD|iw?u*o}hR4TG{9PMdrCwAIe!`=q^gDN;8i&%0r;ZSyV`BNBfQ&xHxak`X2B zY*#GaKzBJy#+?jv$=ZdsS572aqehrkPfD=2A@L~Pjil)jrGzKIIA6+SU6u%~Z?T$m z^Dc%b!$Cq~bK>MgQz0%qka(Vu${^hVuZ*=|1mht3!X^Sz2=<(V2W;}g{M5EoXWTIa z^F80QT&4w_x#^Po4D&tHV!Z0sjE{jKOHotX5V8y4d|I(vII$GpuDabyyr1I^jIrv? z4Pw*Q!Mv1)y`HOX27j^%-nSP-YJ<>rz=?P=^o?i{%ZYWw9^y{%qWE0KWV2jA&IA>~ z^xQNMvsPO@|D`igkBytE0ftp|*tm&0Y+Usl*th{%`kM&3Z2#x8bgF#O$<*n*6E4Ha z<72(vLZ+(t->xQbaFMRnIA5fe-pvv9qy-;AHr1@XRAxZc@@o0UPNT2@{?MFs!1&B_ zQe8vIddj@L^)D!s`H@MUYbR+;)H2mjdU_w0+{Q5UJetK2O$y}Qrfs-g-l>6S8(P3h z@n~fNmp@>PB%~DY{d^0%mR*h+tgE`^1sj|C;?gFkJtK{7CO20m)0>WVWV6FfZsSOy zFqm^>e6GgEg~}24hIDTxJ6E=GB$Mro9!p9IilmV(3DZHG1rP*hAG0YHR(1pFP1%wu z8{{~qv=ilcyciXR5;w|tF%E7I(=G90ELx13?1+COtp*_!$yGGqJTtDe@3SxQuW2-! zZI8yA!6xz)ogDh_@wSAgJRo@tHqtW0BrvD!+}TWDhB5~VlxdsAd2&D>QBEG0J5OUI zF!(L%MT-kwR3^-;Td6gqrDzQB3fBid-BQf9A&oXAY!~~*U=IppIvA?L67-C<(mknE zSJHH7NtNnJr~5KOb}gPKRM$K!ITecR1|YB}3N+Og&af9xcGH_>7Yk9M#mi&VP2QDu zW!({WSH7DO_M_%*LWo^~C@c3zj>D$Pg&2;6RlL!|6^VzcRMr`yx3$!=&b&}rC(Ue; zstB|hj||RiDwbvCQ&#ymoO#zRwX{}VTA277rl`nrv1!G@N}3nCvApM|9oVpD2lIvD zLVhr-eX7YYt%NO?A%mRUU?D$B?@z8j>lnI6Lhd8jo30q-_wRkdGc>Q#NH@dHx_APG z(L#PG$DSO`+;E|Bo<=W6`G!@w-tI1yRvIE7YB}wz3ib?`)~)Ek%FU&2i_au*#spnd zxPOJ_=1$5q(MC_XWsMQXV8e#WE4&^laxdO9EWw@@mFqy*u1y{Z8{dNUc;5>WM*2tT~;(g;TnNrC4`& zuw?6=QGIlSiXQbc!3(gg5k}TVVi|#r?1EPe9j0!OvqP&wBW35%A+Wf-R5+po^NThU z`%P=3sd~okQw)uQ5jj=2?wtZ%&`s!GJe9FtotTo7(hy+mYD&wyMa@7uBWSID2yU$v z&(sRWkuyhID(+bAL>F9=ND3v$ryJ?cM_u6bM_|taxiBagGFc!Ohs+^jt~UchyJ?qQ z5QdW_Vp)-kH(>~aajVy?0;|0=KRv(sDJphm$8)_rYV{yqxx6j|LG;o`Z1gCWB5YSV zrZ|#HWwWW&ND*HaZOom48fU&wLp%26#on3DXsiL`SUIIEmdRy$l2|(uk50%~TPEF~ z>sq3*u|;Me9gC$B4gH16TWHL3X~F5AvcU$&UkPehEG>kTF!@cxFn%Bn=L5kC)z;Kx zm}VL6bJ21n9g>a}DJ7G=nM_v_uw+{GS4pvrZOm`jynC@a=$;{IFu_&QUgA#Fro}o^ z_V8_?J&vdO4m6LXl1!rOPhHAX9H5eXBOpQUOv5ZYmQcb{EH$Mkk}xEF(5V(Yp(4iM zPBYuk(48&JooGnEE~F7=Vv{*bk_}U-IYIn($d->*=gaTe&VE_nhWUPQ+rJbc5f`Pu zV{dQPQFU`7Ax8i7fz%ZHlK|CdTGq#JQ5W4*c`|#cjvCGUW>Rf1ds+4?qLr*}4dSzx z4KzOGtwDVDva)mbB@Fbn0qtjhZB*YnEgj=AaP?_3gJ=*tq4FxT<$2wOc$NF$S)z;C z4?4c|tAQ!Yt3f`>nWoU2qwdpBM@1YPvjY-5`Hm&OX#K)k6C=N{l;mSzfmelRM1${ z&}M^!>vkJqs@J>W@bFfn#d#YWhjZE$1bHt2b~6cd8Hxg#tq=R|5>|ZpIG^1p<)mK1L30de#G~_^gBoYhHEyR&R zB#O|fA#F>qx1@0@TIO~=3CL;BYfj2AF5?&>NWKzLmbC1~q*hu^H`$J`luO7G%0a0R zenN+vUmrVY#ra4Nzqg!K^iLD<a> z=yR=)@Fc?a+_o;aCBnIW{38Dv*Wmu>KCX@MtPv8c`~7|lVP%Aq__%K4U_b26b@jO} z;eP7)FaCM9_S4Jpf3C~dz8a@>KbH0Tww|AN3*`m(fb+jG@EZ8nau&ime*P+cnWYd$ z{CmBP-{0H)^Iz+qe-FNPeQX8)|8)qf>+2E@x2x~R0e<>RzwWG{EfJbje-r&o1l^}Q z{bzf!-;bHxrmnxDekU-d(Jun7O-bw{A2W_M&$b?NHVeP!F7Le`{UY{R!zzizQ}3t0 z&R&*(s`1Fi_lr-J#>)fcSKIDu-==%B-o^W_pX;@`FYli&{?sL>`M=yNbvnQN=@`9&DPM>l5Cuh!m=BsCW z=PZ0~^4uTK@4DdRi$1(~uS;fJw(#Yp%fGs6;Ob|t>ASY=x(jYR`sQPAoq79ecU^t= ziTCb=yI^HlNPpW~v%PP{L7$=b8KFVo<2I-Y}SbU1gDDs;RqpR(D! zy&nczs=YoYU3|WEyWw}@7?eXvjWcv6JFMZ7f$eDwIN z@x80?*o4#z9XFwh?ivGsI*%c{A~pIUE*#EVc}t@Iw|KXMuKRM-%t<(IorQb75L-nJ zjr-?+y#ZS$O^~$;%#jh|EP8#N*JNwR_PLY1U^E#DoR`O^;ZeckvYO`;V&$@Kzp(Yr zwq+1w#kS*Cvh`!SHEYgZ&yq59$ERsw_8ybTcy1kr?k;O|>jQmgg}RRRan$-44x!}i zdvk8{?F}j?2@HY^@LwSNEB5z)9{!&M`&YV{8JZY5>KHj2Svxw=IXJpm8adFJS?QVl zivMat{ZCm@(|Cy~uC}1r-`szZ?Eg^H#K_vn-pqj3*4iXYPDTtC3iH2qU?s$b6@DfB zZv=q=`%UE$jKY2epo4;#AVBpr_St`5Oa!C_008P@pg;9MfAf&G;_40n0C0okIT3eV`eJ>sIT7!z8R#|Co!KK|MB^)0*=#q@;>jujVrF z_xtb&XhU7#-ERpYw7EmwQB;tZ3)r&Gij@PeV-1gax^FV*Y__>gS!^t=4cR~hRxK~n ztXOl5Y@V@yc;8Yz#)~5wmkV$ha}~Mz{rBQ|!C-fA_gR~_*0x$&2_Z~q-L`PA)LWQC zUh}6I^!G!6@RGKO8?zXSb7MlZa|aGmYVdD0akeQm>QPkgMmI9VTA6H|v))$awOT!3 zl@OyKUsKod@8JE_Bpq94msZnDNFY%Ea4zqKm1QphDI@C1AwzSBi9(QvhdPIc`&avR zM&8Fy;*x|oH|FObN#f(gUZJ)DS6MADbg2~%AQa`1N-UfyWugir!jcr0Q?87jIKae3 zm;g24=BjZb6m?l|W3 zV;|+DslAyPMRbGfe1UM+w_n0y)0Hx>(Uo{n{i2{fk(7#Y)>Cj?*68zUztl>t*2D{^ z)+1I~H@7m7aj9U*CRLE(dH%!B`TnFm%57=11N%|K)HSlj{rY`8`*wT!yp)r}g!UYC zU~z=&z<|E3zx_Vv1cHA``uY9< zfXzaG&?(QEf&d66{?5Q&pEzhD8At%n%Bg}cQNT|fU4TXaR^J%_Szq8@pxx&g7y^EH z-G`Y`99?i*Fm^z4KurK=fD=AQfLWkL!04aJwa*4~uvnne&xAx@*`G?gAH|}dwHtui z?-xxoE6}K)El}`QT@dz7fXrb4oq4+x?;$#B1B}G+{L;KXLxmrPXv$$HN#qvfW~9Kw z3DG#i49XQ$Zsqy5CztH}kDQNYZMLQkDd|P++5%J6ye7Vynl7Jh>cO9Q&Ajb@O-J6Z z4vcWy8>k!abIgUx@el>KzpyW)JthzakpGlePBFLV!$YY2lru4OToB=Y%(rp+2ljnB zal3b50O4~Zo#852Mmc^^>&vrXSV!I^H_@CO*Q;O+YVIpUJ1X4`96Hg5UWc3X;PWcl zWFui2>@LiGweT*A9dyvohQ#yuYy=?Fhp|l>x7+hpuH!^s(~}V(NsV&4Q>JV>HP|9O z5gNwnQ+M!PsNXYQ;v&H*+$(AA?)pkf>Ufw-spC4~UhaGmqC-#;I%Q5)qya2z?isx zoDo@*b;K1?LK6)b8vbtI6=4@7_6y`6rKfxxTC%voNpc_ApgKQ^Qj9a9#%J)~Qe%N4 z$H|kv>-1WZ@6*j6_m3C<_6?;%HAN6+-udI=B_k?7Li&wfwuAzo`-O(6>^foX&7-)H zO2yEj>_Z(eS|31Y@@{g+@FPCnL)1GW96bSvOKZlt+9tipJHf|8*NFPN*1JBqGqu3V z`hZ-*%s&|XfKphM53d!Y^7INdj{`d(vN`)5Q*Gi99H+^Ihs)iS`ymk~Bokh^;m`~X z7R-dXWtzuglEHDa{ZXIi0xUxCQbDLmrU}_|d{(>s7YvFKj2i%MmiP~~ z<@8iYpuA|aVS@K}*it83#R;y25(;XEb+;vYPl4(?YG8j`> z;k9t4>Tz@Eb7BvSeh6YtFw>{rSEza%)Yn@uB-&qQ?Yi=KuAx#CvifFIOe89%6u^%_ zTAs8M5n8;;;-_ouTCYG#7Y&6mFlpi{NHd7ak)#Fq``2N#aM#E`31kn2F{f~|R~&u) zNgfrydbKw?T?Rn>jEfX|#iM`n-~_@{CQ= z<_!XSXT(9hH|CxXLGp3nL$dXe=r@37NBNWia2S#Jn@mZo>5HSDZaA>aOl9=18t6oq z6cEBo+5ACEnXr7rlY56p%9*0^jFtE&V%J%wek^;C7<+5QOft+{7y3k%xeD5|1@^vSMDJZHw?zAu@)%~dD2kQa&$6eqTKxKzOXTh!Z<0LKTcX3 zIzH%OMY)Dlq{sXzNMSE~9vl>O%;#8IiR@pFTs@bd;Ghnt#%iWOW< zDM?qM5H^R?y~%ly>z}bZ>2r;$MisJ`twjl*%pexBEoyxz-;vOXH^jAHU>FpuJcNJg z&tgV13SV|lk`2)=2UB`26p^gCE+rDS279wLntfVew$C-;N*m661gFzQA*fzi&qtB? zj8w-(c765mo05r)*#c_h7CiVhoc`H4HIkwYE-{+4#TA2HA6FAvR4~N8KZH^5D4e*P z;~$2PU_2z`KKh*1Aqp+iZYRMPCjV$@1~l|g%faE9jcC@1ioJ0Iu=s~6qvaFcV-y1S zmm%0I<6sH$vUS@OPCnt+Mu0WZ;mV~r4j1D&J_ z;IHeO0JY^hvPbfJlKj&09rP(f0fW-{d3qHrZRTn6FQYpc&Fy5QB2M;gzOHK$Py`5k zXUFur7x+F3Z>4@j>g~(@$+6@*!%w}Sd{GUmm7q7>FW)J@ZuS|28D&fnfY;j1Tu_NI z92i}4R)e)>>HONsFN_bGesR)KoDR$|XI@;U>d3vJ{R4amsrqetBG9xVWW(=xuXy>~ z&F-UR%(gsx+siTqyFTPbvVJ0@-yzDlP&hIw>2(r8*Cb;fw%yfI>X4uWL@^npjkgZ~rP03rcmsk!QC@6@e9r=H`ZqDP?hV zk=#R%ZMHD7KP&t4+i5)I*LRe69k)<1HF#;TBS5(v-oUuRiE^CGT#|&zKBE!)UMH$1 zs(YCbx$>XL4rM!~-JO>uQ}XKMn7=WZLi2aI@Y0`tokSXXwRSo%bKbdmaoStz*zaP8 z4fkVbMkD(@?5b=l4#2A6kujO*2(CAMo$S&!VLcv}6;#V( zeYW{aMts$&aTh}D*`<|}B&Q8_496-A<#wbHIR>XbXv!t4{WLNAKPbh`hFy0TDJrEk zw=Ixm##n@&7?gw*R>9ON_#hkhGV8R?_enEpbk*fCfJFXA%n21PSN2Wz2lBu+VU-Sy z1}U!>@S=^Qcr{fNnTB&btPWy5U>SwDOfZaLUN~L;dqou7P}5?xf8>-;>H7~kv;31Z z%4c!cx-#GQ>B5dxLVhOHAmg z`}ob&{!kw8g?TsS6m(#jF>5Wd@9pvBI24yk2AoB~vy0D;-{EUdl`iVOMbMqAItrQm z;Sq#wM$dZ8Ki9KZkZmh26iPmfKx(91X!E9!vJnW^m!djwQmipfy6?P(MXS^Ccpviu zyh+Gi44EQ25%<1izDD>=0Lq{mTtdPBck#pt#y$*$kb1 zR*tkG@r=_hXd1{Rs4sFm!(nk>e(lA>)#@?^K&IL4*2Y~hTH!<%-Ky2Bm>D(Hs^wPT zHn-#}Xp`BbJY6F5c&tPa#;eOo@|tTOACe<=`;0b0D*c9Jam&?M)`Nq!M9P#2*kYS0!z`J*t_4Xv%q~Gx{qtS1m0LD>vX;F_^{XtbN5Z=6tYCD`qZQORSHyju^Xk?4D zlFUfPL^(gU%gJqde}&&2`3x1RD*d65-JAIx&`__L9+@zN#nk8REJwoI|6+l|bL!MA zrAQhm`MREwLyrekTalbQ?u4M|HULJ6-6&h4L(CR; z>U=ifki3J(w>aT4OB_byC{9}RTM;PX**UeL->U-w<#$Psh)aA;;#Lg6v^DyaAO`jr z@yGOKZZo zYK^SD%|~Nu_+t$9t{qTt6k-RhOw8mw<+HnB-v#l%(m0GLp;U2!p^9!maD^82ZCP5{P==P{%}Revb7s-!M!H z(-Kc_BJ2XE`t%wp41}gRwSqWoo;WJ20lHfYLr9&=6HB+k8XoprY|I#3tbK@Oyn?%VwSQFVCJwb zphO98_JGrs7+NrXf|~e-upgKb8_NoMJ&;43Bhof`Gh9Sz%!Q3bg}OIgA$cDx4`m4y zM}k^U=wL^P|5ld*Q-0zZ7SiSIRm<;=9+Xs08Xu+rYe76VyzI%2ZvJ_3Umu^UiF!@4 z$$P?pfvKdW!0GSV1X6OGGaPJwr+Sfwr4CeRAMrF^+*~|ypLK^+Q1Q! zpf!3?(B?*P+BvWiE-?;-LT*jxhVo~zf2OHQ-Vi%V1iHh|P#*Ipw$GUL(!j7RLk`u{ zeaSHM>S=_<6Zp|3TH7rno3hlG&8@z2jwIwxI!V!Hv=2W?^?6Fsi4U90-d7#<9`CId6xG~N+ytoLKY;3KyyaoKH?&hz_%NbpePpTH){ zWXY1>26{~@wY_eS!JnacM!!yk|}MF-MHInw%L#l$*BZ!+6@$&7Pg&^AlHTtOu3s zj>A@Cak9R-;f}--u{YsaxH*$CViu8>0a96G7%gwxe~RVF<9d_qYxVTDrKL)9;>e z{Yy6_&D~D~!n_IjFkc^AM5P%4yt$$XotwFB%Xf4H+!q!ic! zl49PYJmp{`RI*Co#om^*_Z_G5t3^TY*?1za%Qc*pud$pd3r8fVbx4=bci|GGsY9Wy zk4y~cm#@+oUDOGNTr^v?O9rf)EyXwy*d)5$C^&_3LlE57yLj&Kmr)a2oNV)$7ws%K;Fsx z&@qvO*+neoIlZXs%K-1LJraCzRBF;jb}Gj`6C84Af08%-FDKZr&ja+@X85EIK2!wb zoLaq3uL0PVqEx1&&uQZ?t`CfSK89R9=bg?MzdU*ane+Xg;R2}V;LOb59>`5i4EMCm zgpWEB1?)XfJh>EkyQF!D?a|d zR}pKz89-^E%AdkR)9fEJH|1d7VbVBD%O41O?8r^D2^}P!BhLVvon~gbdcEpihL;;T zRMyA#r3E8F*Xxnvy31M5Z>}J>;<_rk0&?PvUX<9A&RJHoh165F37NxWC$wOHayZdQrFZ< zQvfKSdZt?*gI=*As(A*nLU2a;SU6^>&Dx-gB_CkIf!pAaCuia?EHaU>0zK68SWThA z-xe6U#S#6K(5Ge}B;ypYB0r>ndCL?j!%nt4zVeZusG2(>dn8JxPO$+xZ>yJ`O}5h%U(*_G-Zms6-% zNP^gUM-+YC{k75CR!0szjHpOFhw*@0c7S!q3)j zOz{JnF+1o;2?lXl5X{@s-d1a}7G0FUOF_gK)1C?xpKQU`UiHr{-R-ZYH|L-6??*tb zBJPhVg?Y^V^NuVz&yNthf}dC(E0_)%V&2hC+Phb z-1n*v-I5?=BR6oLX?94hLK^)@z)=!n-~$Cx{hk6x#?~M2ufvhHBd!}aXAR-+V|thH zX%*YK47oL;J@4ANB+unoU3BCr<}&|M9pd)6Ffsw5%r5O-oB6~Pbm_^E9H3HE%JEc2 ztnh4lCWELKK#O`)?$wUhn&k4mhEGNW)aq$o>A;pVG7~(X@fHwOj<5J7VywTsSlO;e zXZ~`$l8l3ymD}cv*S0xWSxFVFGemx$x8W!UM83LmKAm-WDWV%9x?KO65`irF_O{>{ zl-BW`(r+Kq3W4F3l2KQ04zY@SgHLu-?nwqnTEp&PnlUtnGm|O!90a$ z_Az?L+G7V|N(HjVYxeyRS*j;y(sc*Liyjr(6cqC%6Yz8~Ud$00 z=FWDqnA$4dRD8Vh!jaQ^i z*!sFa@WJ@aU1x#Nhb&E5?QB$xQ7WtT?Ev6&$>3L%PCqxvlb>;jM9hdfQrzYddjeKzoAv+Wv0&w^bK9BE_%|p>yOgg zKnZQx54_@tufCe!@TjN5SV3mza4kWm*|MXCtWDoS-H$V-ElIre@%UY*a+o{228W$t z+TLE1r=?&KYS|o9nM*cG;ksWXU*#Q0r9HwE8a}Sj^h3UpnIdy^Qvjrl!xgky7iq3K zbS||(>wfHo!>gsrUsG44kb5 z;c1o~RTkWKfgRhN2exJvpjQ%mO6&$F9?Xvi7mXQ&6}WQ@j^6Beyn1enF`dF11Q$hr z!^>ie1zA*RQvHV9$stEtH?kS#yFs@FKsI zh)gyA><}N^hW`9Zm%U54GO|2HfmZ|qF2OivL(s*9 zW2r5MWVwrG9qo?jM*YK8>o0T1-Kg`!*xxUU(qIxl^YVmZ5)R~i0Pb09{o=;Dly<&j zd`sQqVVYim5RC_GGqqQ2ajrX+?v6VXyzwIDZoBy8lxTxX$vqV{Z$6U0J#Iqn8O0lU zkcLP^0G#0%jd>W)1WWM;UXM_0#T2Posj)uvr#Xz-Qxc+1XO1~>SLe9c#lu9I@Jn+9 zFj$*m#io0#qsqKXG>0IN@BWu5^wfQerdIV;f;Rko;RAZIXPLU1aiQqf#o3eC3Q^o% zJm!o3@Uz#ZWa@c)*}Qb+aBi1In43p=mTHZt4@zT7JYD_g_Y8Pwkt73zWo~ z4QoP3SVir&&)Wmp1sTdmUQEWXlO)BA_3;Il6A(s%Sw(9J<08tlOseY zB%7Mj;l%LO$^TIqBa12w3Y}&-^~{o@Ea#GXU-aW&e^NB8&5I-5Vy(YjTc3S_bj6op z9`9SRu8GAm0x~uL$fHz~3(Xu|Mf>q%V|@&m0rWcA;O}P>0&wm-G4AWtWPV~f6tM6a z?gN#PV6)yWV=t@Q#!urTuLJB;9IdeLXu=~1s|})thD4m!kQ1+hn6T-vr4sgVDsDvV zJx3CXz;JLeOpbXRlyC$K zu6|pR`{pPgEVPU?{qX`!MaMw!C3Ah}$~KJkzN+&*`gd z-6Z_6+PS2}f%ZD3+}BMGLR0+O|N@aus|X})%=6T5}5P<>nO1A}rL z7y&r(TMK{ZVxdIL)#@5UG4PK4(!6{PF>Y~(HK=o66(((%yY7k>5qi5KdUMt8=1juX(qQ24OY-^!Lg8#;BU=`}Pu$A7d ziW#j_6%qoPfVi<;@${2CE>hc^82kr`)zx5`i22`Y8K%BqiM|i7|@C?LrE)2Eqe2V|uws zv#AIU)_*SaG8{oANOOdi0?df?R7VRdU?FK!G3x+t7N8Wr6nvrZ*+gubokgw_4)OZ` zqW;TbIfeSU``K1MY(t zID@BmjT>5bCz(F>>xaGYMg*1TUuYZSL@O7US#rqA-Tuxgh)I4Cb4XQozN}UreDlkw zw5G%+60UtoMXqZZr%{LUAljgx72bsF3A6~%ZBdZiJ7Oy3TRJzZQ+dn%N%6>H#~LH7 zNxysHJYfX^K#N1Is~{Ku&`zWO_s}ZUL_S!v4#<&UJEzEys@egP(ptXA@Pj{v3F8o= z7`c7EZ~2Th>ymU)J71!mfK92kc6T@rfiy4$9S#YT1JKuex0S>Iw1kdu$uFSP;huc@ z<0&-MGb>&RN_%uPnMM>@50=iecgrK^fi>D!sHH~MFkv0amUT_k;>#tqt*N5;HDy$E z5SK%)eprp7ZIU{jCbkgnK!8rLTpYTi`ff~JTXUxFZ!TzMqNfmURpyFPpu=jw+}#Vp z(3*SoheA~RkGS=H{XR15@{Jr(FMKN+!LezjWGx+ECEXY(%Rjyr7SL{~`iRhb{BV22 zNBZqYfU9@zKM%C>GDbS0dOXGhOUP1dv$7`gxs=I!D{KMJD5-?Xvdp=ob678@YoA%P zu@nS6%Jvd1I&+1V;@#W~v__xaFEI`udMg@VdfzkmQ1rJSqQaMAuM@d*p1pBT--H=Q z_`eVYVadCi6=^#_YPu7Ql}DP5U2JfMNrN-&`7wIe6h_)gfC?sLcEQv?Oj(nk>g~~| zCjM;@Ur+RmZSPNT`IK>l^?Fz;SWdU_$uvzW*_HX)+?jAUHx{idtCh$q`p>+=x?;LJ z$q^&B?u@En|5E?WF>+|&6L`4<7npY3@lNT?Qu~GREb9yHaKa0@G-10MYjAbXB6^c# z+06B&yTa@jXHwrir7^)98dqnXI-zJpUc2>EOctJE8~RNTor;L|_hrnBMO*4^ab^W{ zVdUTYikDZ%-d6`?957O%8rHXwYz#Flbx%^VGn$fxQzu1{_!o>SvvUkFRcLRWr#F1i zd`l^8V()_CvR?`t~k8A1|;9vND7V1MLNLvN09@@v^yqerg zs))Md9F`TixDMyU7vy8e>dK&Xf(ncXU~Un1QUxwDO}P0x!wp;P+2P+A6}kG%DrQtG zI(o>#!_-580VGyVvkCQsO3Ux9@PoP5a6CpIf)Hg&n<4?*yMtbqRM?Kwv!{|gz{DLr zIvv+H8|sK@z<%_Kd3vPPv48btS5MGQh>+&2l*9*{C;GhqefjE(Jy=Kk=rSbG&RBjh zlZtivMRx*;oyEsCvXt>1XqIA15ghH*+65N6q;pv|6b8B9%$7JrI-Zv`o>WTgqTVaG z?W_DL3Ur(Gv01aG7HkAUwP^uIt$J8+*+WXAkcBiWiSD#Fw`-xzC~Zhs@dZC2am5GK zin<`zXi+v%+8FMXFHIl3>rC=4{OJP##dfGrok9NfbZh5>)njg9eDap;FFXx3l;-fv zG)$X_Z&zuT?VrK5S<@UzZEs`(ABIW(Zgg*;Oj$44-&wFK!Z$wL(s;I`e*SN{wp$ph zN-;fMXS~ZzDbk5ZmepNW92L0WvL8^CftVGisq(`=_(D~$8w>wDWRS?A_XevZZ`{)>bD)Z$cD>O1XTbq5k&wBT9_=X0I z8PamTPD%5$hC=7BIV7yfbJNlSy!niDxAe2NLZ>oJro$9s_G;gd30+O3U&+Pgowocx5J<hJ3H%)&IboR+G&<7ebn-)v zAC1Zbpij`I0V>fsZ^dHgvOw7}Ww9f+(gFs0$3rF6ONXPwRq2!Mh_SU8l9C{zsB5Gx zIWW!{87t}e{D}q>>qXs3fBT{jrFv`Jt;2`T>`uK}$OQsVM1b1L{A1O7vYQpAkG?uS zMEpfDQ4iXBhd@YvW$VF4Y59`KAc&6eYQOEA`nt^!ERbQ=b<=#BPZffQcs zYL$@mbF=Y%jsv&x0edlfxAB*Ptw31O_?@;m1s~;hn>g;qM6E!rlUdnDF^B=C8O9i6U7nuFK<42<87Src|+E-BA%G ztdHEeD)96?%&7@43GZ2GjrRfF%iGU3;})g9%6=ib26D9tv2_4}v5O0$+m3o0ff2od zso*}38{|cN5;eMO8(ksY@PiV;`=yz#t9}Fv^ap@nT!n)ed}jt!AKep1Rk8zKqJjJ+ zeFZCfk61u!PWqs~94S+CC`74LmS8%H;;w`G=cU;C{f(Nrp%g<{o{O!Wu%b_ef)Sod zfjgFnR<(qa%PVV+Xr-ed+JCIXK;ZOK5;gtCWzQ&bN{5H{e64eQNfr~+dYA1uaGb$c znOUuS;R$qpyu^wXQ+mUSB8E<-R~t<8WvsKs_fkS{576xv4hWzrCln^AU|To&+8xB< z^Eocl#nyFdhwu#bPeY9m&{qy}OF&<28A?mwwp}1`$+_I&^1@@QeT5{*fqk+f%6Fy= zz#{uk(LZ=$r)0p*07s+)+x<`nRWhM0&?Tie+!kFr2B--im>r*fDyjZEZsjJZfOcHPXo&U;~0SmW3Pb zsm0Y=C;qNpF!7*S5$0t5{bQfRAlk&3>rAwR!o`lsM(d11RBhb6#NT*5V3FV;O|0~Y ziN@U!W?i-^RHFj!Vxh1-E&Ru8x?vC5Ln$s2-}KY%lQ%qg7*cA=&;c7tU|YJ63efMO z)`v{1%+V?qAt2yujo!Uqv-Q42GO5;QnccHKoWRkCi0~>8>_YRQ=>-aj8Bd^+_u>Vs z_vdTV)=*9lV*enhe_&j+Q`Y0cBmKCdx~5~zccP|(R}?I)6t#LP%9 zj8S9mTnwh|QboCA2X6tJoNBON;)x7_CI%n|yF?FluN6=pimbG6WDtF4w zFPYy^X(JwuV)@0d9wNGn!VM6#IU?GbV*@;39oMlUa3&mIwn>2gm5f9j<&KK63JC z+R^~#$h~W)=#kc&q67Tx!g>WA9UXDB0^l&{1d+jjoTB2A(4m|P8h?pNKnjKVZ}oOB zT(&(>xb!FoTY$2G$ zzfIDDQX+||{t0%_4=CoRM@`KTFM1UU&0`0TbKkSSeHiLY!DL(GEN3(3U>9jEM4atB zR9`>;{uHtAxZpSz4#mPsWt`Clz3bP{>@HKDU-43PYxk6O6nIWKG7VSqya8*dE#xY;ypo0fs{@E$ZR{*56gUh<`FWbxBJ0^HE>JTR0`bFwHO zHo04f>_j>6w07u`Nb+^{ zl7Qp80; zL2T&Lnz_8(Oz!iO8e#5~MAY6TxK;T+j!;H;B2+G?x+B9eg^CV07qjzv--c+YmGE#S zw8uZ%z!p>+R<^OnPfk<x_2ojQdtM$|5`ekd0Jl|+UjAa+)=hoCVaUXzn$7h z3niXW!)LN#RRY`KK;&qP`E;g|Okzw}@pH6ezj>y1bBmrB=~S113!jV!jc&4b*gA6n z9Q{%$vm9*C#`|4>+xsc}8cN&d@)lO0>30i6 zu45(xLXp}DjN&$^T=7SWs9+a%j;VFhh}=)J#?sQG>f zkIPe&p)?QvY>v# zg{@&cm^KyAA5wEN;~vN7C=kTJQoKV|{_KEK8)Ak`a7CJfu{z-+)ggtV3sS<{U+ggL z9hO^;M0+W$APIacO*N~?GA6BozCx| zPlwoe9fS5(3jcwM?FFAD!Ss7D6wZ~djgobBJ;OvYYQPA;g)rtKZTbg9&|!`2Bb^Rd zawM0aL%#4ZDV!LNg>5UJ#V*(T))^Y-D^Acplh!p9xJ8acM@@W*ea#0@CO8wSBoQ!Ld^_pcK*-d4bzmwm-E8W#<$<#xcE@Y zXVRXrE1jgY1*>|zLTO4b0n-CoA{AA_a1|4#Foyb`I?l5c7#~DK5$RptHJ&^TKPwho z))JE8*_iHTLSsBndlW4+bj!N(-EO2|k5jc$10uycCTeGh2kgM&lEJ>f3AqVqj9#OO zWy}q6Mm;Hdsxi#)HWOABJ-L1vM-=LkGopXQfv+edu~N#3pnRb$i0j<^YRC>oh#bee z3HExhI-9H=!0VM{^;LpYk&~4%&Tw?OX-W4w(v)G;6R7If#GDh|$)4ILcrk~C2DNq` z`gpvhU{W8LS5-O14Z#Yg7VMh91`YiQx`&eZ38hh39eSu@vS^*kv;y=DPDCluwP~&` zlS(#MJJ-_LJ;C+BHF?ENam#Azif7#sJ0;kUg-Un^T@(g*-4Num4`Z)B-azywZP`H3L*-v#A?DbihMo~~!qffSQNvkEu4=GY06me$UU0-=`$>psS z?@FNs5o>(LOU6*V4!p!0^&^c_l*a9+4!s*ZaPg)b zxi{W5L;k`9%Yg#eGzIW&;BmOU`$8gFkU@4EWUVI-MY*Dh;c8E;-n=|~awmr4{S9ZwIYALN6(yuH?38~Z6 zLMlfR;jE)_Z7dp^2(KRNbqM`%r|J)wHX-TS3u}e;hF-=}WyD4Frxem&o^Dv5 zc>tk~A;{HRFzyr%+fER9M*4=!k-+}8f1Xp0*46o!%$q$~rB2PfF3_H}caM+@nrWCT z=Z`v>uZrgXZg)PQ1|H&3S8{#LpGv$auKB%gKv&;cE}aK-9j-Jsbtiva}zcHPZZ=EtvKS~<@U{7Ot5mff612a%a3Gf;pGgH^P_xE7R7 zuhnLW4TdkyGb>cfV5t%Q?wuMa+#YEl0^BqIFRRj_)?;^&e2U1?g(C)Ascx;Q@2C7#Syfh z#euQ*s_IM@QL#8qp$e!d! zO@YE*baan~wC}1~P-YygC-R}i$Ayx|t0?6jRY)*r1vfE+eoiulF4v)C3(gzwRW^F{ z5pkZTr@q0opf6M-avG{HS*{)iKm)jGKwj4zr3{H%%S(kGHl_ zAGLtS-;XzzsKVqV%oQrMSq_oL zgFjipM49v+33&Gx+nemkO7W0eCB0qoWK_AC#2hQ>VJYNRnLd~i_{yrSiw3eKBO_H? z2b$vwxINtwGfv@CPCFJSL%2;JM)WGT6g+M{y_!R}^nwb5v3np$y4ehUDj^?HeDOtI zV-vIOcxeZV-mBF9cC2q=W{~K{ApfU@CWcVUF|-XN~*Tuo$lClY!;g+=i!YxM7NM4y|hTP zDH_a_qeiIg@PxkzdG94ybatR&O0-nQwBm0_t%3%s*70B2t$=?eHPSO|3lBb6KbnLj zm#^nn&$bw{s$BT20hR?tT*)SX<`1c8ZIir$1C(K zzzmdE?!BV^$UQc^BRei`&r2_zkWr|5(3U%QUQHpJN*^Re;JT5j6774Had=(543Z|C zU(P@^cq?EoNWx;h#qrqPre`?z-zsmgU0WXO@SWH*5ef~KgtQ5?>;0TE!-ieTk3!vD z;Pavi@^e)bl zag=~9>9-WYd=cVr7W}L4_ENYx5A4v*$)ECNJT|8P)Lkr1tMhA$bz^+07BWBaU~t*Y zq`7GPZu77ehPckKya_3E_r7wATp~jB8N6jt->Z1Lw>fXBJY-uhA9#nw@|2xj?Wd*O zgkC``l8RqgjyplO3G}T9F+`&is(y&Njkv<7;0xXx?5mcuR!oT(=e_Rs9DKHM89Jok zm8?n$vzbis{{509lLym_Meh1R7B^=BB523Lz`t>JGSyHjJupX0>hO{ucKr=aur>5) zQ=pOzN+pT1!^FWMF#C7>^08L<+|#^~alsaQle4;wcTrZWnHO>yB?hQl`gI75eP($8O2Vi*P1&*6J)C7<_0>B5Efv?e>}3zKPnnh& z39;c_@+6+%*`7rrt+en5b~-dDzHi*v0J3+EkMoEw)bIS_lc}38RE+_W$5w?ELEb@f z6oup%cDa^h)#Akm)o=Re#m6YAy{lHO^`DC13|gic(G?I! zR*bW>K6V2v-J1=0B&GL!Uf9mqDN^g2; zq$M34J-Hgi`Ypq`0-tUl9^?w9Zl@cqWB>7~GmSW+MBorj1C8}}9UWGvlq;l$ca+V@ zjTwz=UGB72R;(RE+8yhh3sB#HKy*q1nC&f$37iblg>0@Q_6?}i8bM(1bGCJIo~7QB z|8gvY2ucgL=#jRIDjmXGDyfrByY3AVAET&dyt6}!OJOet6u_0u%N=`#8GP1BJLj+Q zE$k-~JgOJ&%ct1(%K}--|5G zhlX4GpKG_}g=}S~yPKx`(Hrwfx7rAUuC@Haa#t9CnKLHW%TRYg3)o7Gh&`N>8Vug6 z?oJOgsU1$|`=dj^OwrtawL&!e6DIMi`O7s`HvviEIv zv!xY3EAQhmNAq%x-WuNo_#wt|)$`;!T-a8EvFY#TPr+V#^%dFKjtryW? zCZWk;*~;8T;1Jx+Kic9ccS5K~`}~>iF=clRlbM$nKUDA_3Ib3up`z(SfhZx`0IB+{O5eg^AfH5lMTA+WxBx;pjMv!)ZkR#OV; z>~@5Z--TG`-s$oX&D1T`FAh+QfU&{GK3i^GyJ!jaHfAqjk)jsGHnFWJFZ7ILJ~%-} zyn>QbLxTCHf(1(?M*Y2k&PsXctFW(hdU(V@91aXybz9+%tw|Ids{0+b$cv`vrY(OD zq2JgC?w^YOSoxA(`f24#x{vWJJNIgl9$WSi>`aq=*ZZK!vN}`I&Nm?tnH~w0sVX%f z2d$7s7<4P=LX3RH?Yy%!8tYgn)7L=$BZ@JUu?ibFlWQpn;Rl2$@a|X>VBaN*UhOU4 zNFV}<75M{Qzd@2Zt55V=>P*`G8!jn+H#d`_G8~lZh$*T9B8<@7QsoRnip&UbbvJUN zFwh=f&WO_*x$mxHUA(2B%8S!99`KF7Y43cdQw?&(L0#DUx-q0P4n2?|;F$T)pt2SD&$F^=@WvX!`jw2s*B`kE`BY z`#2l*;rps z$-4gZ*DZ{p^>Eh3TM;pSiW8G967D!j>6Smq)!~Rw&}`I)NyXC!6E?-`5yJ}ebbfEv z@ScCOm?8|C?-stB$7~Q~_*a)xJ^Z48M-nwPOCL_%lDt+!;L=l#FS|UKLx^54KrpGy zN)vvMp|bi9n&q(yJPF#7+724Q5Q79MGBJORbQWzKE)uNUjLTtUUx*I1J~=2#l&p;m zc@tKP@21~yo%KQkd#uiP?lWHhp&=;I9aSSLW~k9jx1%!zWusaNvDptDr%;uyZU6W3jc!!@)0&2%_lD5ef4u8>suy)!U4d;s#wgCS!#Xg3le&b1;1dX*12z(v0Iq`5OX!{+J zX}W$~OB3V{l!l%Tzz1PaU1W1|Ziof?J{42r_?L=(i3z2bRMgH$2GVyBLUWA_px;~* zA9dBf)t9|80bNvf!j;oFOmQEJo{Ram0MVyrGM3Y8FWe3)q(G+PF7^_|#6}Ze_EyCV zebmEd`es*32sgn0g7Gdx9M`I>*hNo%LmyG_s2FVVYp~Kjf#$nS4iw_nb_%6) zh$u;7Xr`nooq+L{+tz0csD>Q4M>m-u+R-w1;DVOm22(a1;V!=Ro*WA7BykS0VBIE} zgW*#dBe6MO_c((%<2Jhuce)ru2n8=~XM`!~{#8x;JWs!5_vmzdNdJXhT7bW+&n$kj zuUe~h64lDc2{QgS-=uJsvw)@vcrj1d&zgB3zU7J}?Oyyj8wTl!j`}Z7pQnLXl>ScK4=j$*v z#>FUc+qhV0cKRIXilaHxgooX%X{&S3JMH!&__D{cs#xiTqNFcLCQsz0s`q?f>%W?$cjlZpb+^f0HdKOj zLR>}Y7vg4GqI3Eg%RhgWt#aK4t8cypyUwG1qIbKvl^(u&ZMiEykU}n0KQoz=n0-D> zkWI83N!)Op<)&Jn*g2^@>UmT7tA>mznaMY^q$&!BPd{RWnUwKZ1?H$^SSN{O`zd&K zu73F6BGLFhs@6&;zQ-+?Hl9hJ@iF_j{_5+f-1;y{G<_HzgXv}Eb6#|1pdbc&0{R{t zp*9?W0|#_qUi2ksm`-0@%738?ZvG6YD+N}MInkG1>=yZ#L(O+_YlS5c*I|(gmp!39 zXF4`IVm1-`Y@5t}8r^9LDjEZwU5RLgekH1)$aJbSwGbA=h=dV!e*D3y=p+MUz^TB zn(T&W!tvtVEo4zd9VbktY*rkuDw>1X?TW(!Tau5{$hGxDC%z=T)hzv|mc@=})lsmAUMHGI)h@+fm7M^nWvUvccr?`;+w)>(AGa#(q! z{o+?Fdd&8<_;Gmhr7s)+OnQylB@xk!l?Uccx#wW(+3Th7>sEE0eXr0g6*azs-cT!g zM3&c1-SLya2FDG@Lt&mi8)~iN563dOzycB$^`_p#jVSKAsLrd(gr$pSq@si^80^2i z=S#tU+*oM!wAdCap4CPamRVC^+_D2^<)SiZdyAo&(3PlzX;U+Fnf9P$zzo00WwAXG zBFB|3jZRQxU4T72sBi;sJ#!QCjIuN+c*$YY8+_CMRq2R`AuvrOM!#)R|^8uCn>gt}k3t*V$I@E;h|yEqST*2=LEc z6l_9jqIeKGs)O*t2uHr0NT}|eU=PfR%Lji>F5*kZJA>4tv10_Df*g*aPplCvO9avS z0`baj?{6T_o0UC|R~UM!ah+gqs-0&=o}46y^Xup7mz>%oUkDIT0#d6fiVsc&ld$~G zH17eb%FeLc`o z4IIhgC5p*keLfl6oRG2TmYj;Lx)FHy*n9kgW6B)Mwx}nA_3q29PSs0B>!m#}v3vE! z2~Hf20y-Uv*m5+8d(fnZMT%!tUt?GZ09Bv zJucdY8!ZP{)_pV;fjyCc*+h1sw8OC9P+30X^ZQN&q$}F_@X(BhJZRIJ$xI0I3?;rU zod=W(t!)+TGk@#Ac!S?>QIJ!h{vKTm#|zSmucL2Xy}r|YKC_~;+B1frKTmx_J7&*y zFoCxDtvhQaV@t0dv}&&JVlUJD_aeuaT~Q4onj{gt3h$-0e6K_OGJRO{_xj_&7LCQb z%Max}rD7B8+hzq$7_w$^PAnxrT7^Piww=}uK5Dx2RII%v-#@eZ@D%ddHN@(x~^ znFDftB}e2T)La_<4mh`($*JOpTyZxRh?Ys zYaZ3|7P|Z-+rg*bq1|!r{c*RSukd-txBRjKUI9^@dsQ2f3rYD;iYvi)0O9v@vnXtB zO!J#CxNnB#-{58Mn~4d7_<*Fw)+?QIf?C$xmWtlipLGs|Ryvmpgl&iN^kq0#=aR53ixm_lY7y;5bD%_~*>1GS~$2%MN>^U-4?)dfw< zl=H*Mu7=6JRXf?9V)t5$MqyzBE8>8E!Lhdd05Q}Q%(OA+;;%v;kV@T{~QUwn{y#lmwag1214Jfk{S z;fcPkL#Emg>7L-aRIxK3%>*}PlDAfLC2VUldr&acx5N#J*cjSVOYArtdhC5iQvq%& z!uo#W)zOrJ?o+6#KLi#09D7&9Uu$4yxslV?ttV9>B@I#&Q=r&53en@dieGpDd&#QT z&sn-3BZkgdxA?@zUvX3OruPpX5<}kBE9@2uWstxnBDVZ%5SB9nEn(R5D8mEd2vY)3 zK3E$RgV7BSwzV*+T7Wq|2`^@9NKFa46wzLA0PfA`3D1b+WboP_~T;zxv?u-DyBvRu(q zQSpDb@3@;NW3E)SITKYRbc3dBc>6NuOK6I5umXMzHx&d}NoT97Fen(Ru|kky3C9--3vB5ti9y ze-~t-_S(%-@9C`HQq^*dQA91#4SzsQ&0u~Z8XMv?RlPYZA308cz>a#pKYD|R*(5e2 zW^lz?3db@GrR7_BT_-a3z|2Lw1_pQjTTrNv@xkq0}mL(FbJV5_NQo8W6Nxzn7TbJL$98 zsiYTWjeF;c3+NPX7_X?^Pt9V64B+Xahv4(`lDTiw3i1!g=1LyLV9zCjpz!NS3yIv2 zEPj#Sh2eHpN6F{u7g8Tf>q9J7A48UV%~nR{`G%4+$!22Y)Jr(4WRR`rse!>5Lxk0& z_EQKcz&nFvaCXU~Yl0efK?KO*%bLeJ7LwPt7w8Y8iJ&{FVEiJfKG+DoVcr(M3(JTP4%z_mG4y8WhTlYK}U3B(H`*O3iGhiWoMY0HEs5SzSAgiojbns zwA0`FY?pLg2aSqcmi4&d-dcW(82s(alsD*|J48+c&(*v&i%u#}EdBwONPeTu{yl+@ zzH9mON%mP255GGx*vlVZy?$=hycG02V)^Rk$Z2a4pl`#whZyj5gkC~c)eZ4Lv--G0Eby)w+jwK=>GWio`3aJ= zeuFo=){y(ukh|Dw*?H2Im)-BLh?wnCJ!KXtQ%?5o9L@H)2Uy@Fu}v`kxc-7ruAS0{ zC&iarv`a@0kOZxU*s^-;t2%oSdt1Re7BM`Y{$gzi2G_@=52(PK^KOp~yi%xpe7{@7 zZI7PQy*X;zrO_86F4gkMl#*}TGLzA~Y^l6B2=BxWpCrcBqBYVK5`9&V1&1zND82EZ zU!612$!sJ%M$gNY5QiYUBZ*o??LM^_a&Xi zoK0Rx4;jF{X^VUGo0ndQg=X+YOthn^7y;=*Dg%Q{I67{Mv`h~pv=yO#PNRaq6Sx=u zq!yqS%;yiYsYR%%&3BuDQPGyX=mC)z&DvsD=sdLnP=}byx6}WE5J| zK*$VE)l2CNv`uzaBrH4nBttm@Jhr9+3mNb z>Mz#Rw?gg+5dGVU&hV*uSn(nnbRS#emTLkzeU2l2m7Q>;Kz!e`6-1vx#uCSGQ6e-M zvdvcJ)o;w!wWGoiU75Eksy@1li*UK8h;p3o%BdE}l>4yL*-}jJUyVdC>b3!icV!~+y^eSH59(VPfnQquvvO!ns0l9D= zVRPER)1^mE^ohWBjT^PvV}KEl)HGgJ|D*tIlraL+IHg|JP=#~Rkcb_8F}d+=A_Sps>`~6XZxdB6eeqjU_}E*+3#LgYnsQYvztT{*)l(LpJb{Wn zv*rU+P&ExW_up-u$?RS&l-FH_p)5ghqXCTCP=H$Oi_|Jn=M9#Fy^uXxC-s%%R6?0_Piq~_S32RM z0!-A6kWNC>H!e|MjbWDvpkoQ_A(L>vUrN7JQ_P`64tTet?_3Qo3{4IkM5CG)F>;xp zSz)?zG^1ro@sVqQcb!>2=8Mt+j90G(5(GzT#ma_s;N@PQ>CTr?Mr|;jewm zq0K1x&jqZjpfWCu4kcr3RpwntWhsm5ncW%&T!QbQQm(G`EtdI0dib#=V#ZeZG;^kqpfAH zXnS#pW|6K$)9M2A>p$zfOj@k(Twv)xrzrlMlyw%6H1ki)xmqHZpI?a65d%;sg^dky znbXw4F0lH354ZL_~rvnZD!ZZ0a zXpm)=9N1Pgu>ixv4cK-H&>&!di!H&=M4^f?{-wEk8kV9@J&H)}sKbx!|3@KdeK`xr zbv6Zm#IZ|jzzr- zWb)e0cvP#{yha5w$OMfwBu0Z|6yW2AjO=&bItr&escx*iLbED9OvkP}F1jMO%*`5D3>~dKWWAg$9)S zr~Y;EiI}20vPVw)k|!!~rx7jGPOD=VywHpL2A90Aa|`j$WNQB%4I$x_N5}K)*FMg5 z>Ii0T4A&R37oq!=ttz{6KB;;s*12Q7om#3aoaIFv(fX+*^vXFD?^=JfDUNa0LfQos z8TF&jh`x!7xdqiPP~h*7z!Ks}#sVhUA{Z1qlg9|Ku`3Xxkbqc#3iBi6^`-UJ&h5<3 zzHNVvv1@RwU1tfK-Y>CU>~_e9o$NAPk4OoK~-OCzM=x66V~^jq_5 zRRsdr*ye;DU#ab>uDSJ=G=e@sD2r8x1dzho#p6HB51)ndabK|M@OT=Ldl}VlT`&Cb z@f8(bm+d1s$_=Ig!#czwB0=``814!A*0tIZ{b*u-NE$QzZp&{ZnaiDcv3ODauAPsk z@oD;9Q{?DHd4Kf29IGkBUVk;)KfcVqC6c$j{mI+<(J8ok_1ZsI9sjmJSRb6KUGasl zP1pmF#7n~;3D^f!Zh9<3gV9IOn7kNv5**$-U&bf_A^D4oE+aoP|4WBJTbRcqr$J2r zoI#mLK2>s5U$tlbRgBt*l*#KzaCSTOO>85J2GXuD1P(b38n?{=R;Ftx)WQEA2GSk| z11unbhGmIGLrpMg_*Gc7xDR8fC_K++&J7Yeqj7-b1{Zctg~G;;?=0`7hAtR^(OhnHOLSKpx_B9wF19#7L`}Cfd=*_O0>)Ln z0BL!Gt_{lbvy#vvay;WFq-<5+e@HP~i^(KKhg79)HwqqA zri{`5L82S_{C5Vwq2O6)(W)*Q11D8++wfKQ@`~39YQnH~M%Mvzcb~1k^cD`Xb;GL> z?(Tlr&DWT`>O)g_0>3)+s$#)r_*=ZK9YC0FqGrpR|50@G+@CZ46op%Qw8mxQmL1E6 z;bxEIq~1oFa;C}v9|+p}``~@>7w-MKb>Ka^F|;ut-gRFlq{M?aKiim=zt8^PWwKGM z*gt)Ahw+L&2cq$U9*3{hg0Tj+(Nlj@r>l6)RNky{$F=456K~$J1+H_4@Ee@JwL!}z zu_+{1NwHQnE|}WsifkJDO4#g)hpa?912;jd@Cw`)Pml*sYJ&ll^)ES>b!%jl=V`wa zcd2CaX9HoblXYoilV?d^I;~U0nr9G3Rm>!FoKL*;>kChlEb*UU(z<3aMK!&SUQ}D) zW_o+*zDhNjAe5?j3H+&u0?|OpyK<`ZdE2J!jdB%nvh`-lJq(WR5pgEtOP{!>grz4S z>S!brTSKGs6wh`f4ch_Q!7VS+30Ekl7O4OvE{_Z()!Ihmdw$KyWTh$gK7UIQ9yEwU z;PSP+UfI8gNtN=+!|=y1R^g$M zl2}%O#Wnu$`Qvq9(Loi5MFF(W;RI6gOdPWZBbO3+>36`H2g<#YNnphA035RgBbN&K z=rh2XYf8PHeHXW~@3Bk60`xNA%mS6zuAuQd{?0K=?}CWZLu^rXV_idS zH4}da6u6+B<9Wr-q2X7m)%5k@dMjxZKTss7O3~A*^%3=XDoP7$X)Hhw z7PcL+_Gs)vt8DMh`87UT{HzX$FV~#>zcL2Mm)MU$=bzykBgVbN6WT84{U>L}Ujne( z%?xcu3beFnJJlx`g^^t~GfoV?(!CSr{dxs!A;eail~i186bl^o)|5kw(| zcP4Cm(&ZKl58CJfUaDEY^oK*qenf0Ed1qIF^A9J^dp#8dg32^2Rtro+P&k<$QnGbd zWE+tbsNBIk&9N2Vjx-ZI|Hhu^b>hn~!PihF;eus}H-Wuhgj<9;8Y&kWSb9O?_yJ-! zpXadCCuPeGz%IZWgv)>l^X&~@3*E51%Hn$Dv3r|lhx}r?o7XJ zT@-=WB1lHil#Oe~pr_61U>c2+#KVy!yL3d^g40!FB$!P(S~`mTC1ETurHDj&eE*P? zQE3Pw)ci@ZfZ997I!UWL#U6hHP0qyQr}a*`-ng*(^aa1YBO6iOYX9=`OB}o+3vu7b zmYe@f3h^pdB_{uHEQwE=d<9xcxheO_8son}=1835DCbORd24%66a4=XOMTw{gCpesc+7Fp{~QruQiZ7+fKX+u^z+H zKb-iCy_)jAci{a2{A8dM&*bK2k zIW}6R3Z#>i!9|6x0rg3Ic?)&Co0a!9IA=3a%>UURXRQB{fNw^m?? zrI9rNSWMeR%RAH$^fQ!P9E-#sKn6ay@m)L7^<@CtSD==HQxk3KtXHd$ND+NF@6lD?y2Y#mU_ci9l&7&081g^WH;zaVJ`hEKkTR+!Om7jfz!=`Alplx4Rj5MJH@TlSLSc9!G^#u4qbnV8DdIJ77 zrcJj>Dh`ZpR?U5v(=!#4=xn={=k@36{U=`^{zYLL2-XhSO^z4bU1%FBUYP22ZnPgb zg0}4Qo}#IyUu-hCr>o%LH$0S(xgLV*!2F;D9FAKU9JAVpTSFwxf;dQ1R8alF-3UY3 ztdn)bk3jWh^H zI1q``d9|`_1Ja?MyE(+C{a@d%xJ%cZ?mfOqf7tz!&g*oV#ZK_C!sO(P0Pw z4OQ{KHDq1egB0*bHvzkY5K2eX2t3V;Q+S*yyavzG+Hk=AP_%OS4_O<8mL&(=#dQ0w z66187&nBUA`HUoC$!5Z64r$?d^>`NwMU!~ze@h4v?qFVdzD~-gz)u7p80UFmAQu7L zV-cq>9)CI=`l+~3TObE|fyde9-(U$ccdoowF5jAA_&kxB=^6?jl!QrsX}Xb?s@|mkPuq-3TdXB#Ku%(`F^VECI`&Vow+q4;(n!&*O=P zjKU*-+3n_(7Ly#XI?m&X2pIOL?_xd6{R?`C80?R35Z^^VNm{~>I#F#}6iXj}m~m~l zvST=!6m?RhdTW@8!Y91fGXS3t_B3^$4-lBwzt(*^Fp{KIzc?UC2}OQ^@8|t^{)l)q ze`Mx#X!qY(_N{3@@DS40<)hTUp>N8Uyq2bQ?%wf#;L6jwh`&6iqiA#0H=y0CKDKPk zC(Ssmd_NhfvJS+z!HNBX+&=s&&n~FE)TnUQ0{9TcLqwp%VnkjX*yWjiu$0*JmCp75 z0ND^C#bEey>Hk!cfNblP@BsySA0~F>!%(`q}Q*;Cps8%Ifr36H5z<$R7r{|Yu5rgDTwP;)2P3XbkbUX5x=+Tj|6 z3dD<3t632ltV6OwxZqN5(tY}kGJVTrCkbgC@a1s50eEFjM1XYkn(m?^Zp!i8GTiy`}?3ef3hT~yIy$X zC_biOBE!sqqv#aWYk91#yc<@S^4^EbIW~p_I}5<$kPm>tK+Z5~iRl{pVO$DWSFDOs zHblor;5saUWfyyrpDVCoA9#N4z`FWP)aEzeox$$Q5ca*3OYD9+Q1e5E#^_Cy`m-wK*w` zWmKsmq^`;{-?Ku6Bo{54_*U)}A6z#u8790A;Ba{C)O6cbisw>a0=v4$9a?9b!yNw& zJrOS%zguOS4cs0gWB^umjl90cF}{v7Vw$LDF52iR+mvjcL)XMy0j)bZgM>g;3qoS4 z=@k)OFz;kEPihl9srNe0OU(C4TEL9<=geC))$g9+FYcbD*bC)_#Go+QL!`M_Tg4sY zR8z0e6jgbsO{6&S;MFJQ63y5!7fnR<|(j!Y{ zYEeX&UV^p9Z_j80@j91MdMILnGQ3g|x|)foT-dU%C&UctwretaTj$0ZVNyc=sO$5a z#3Pb$OZQ|QNq{i{UFoGjZ;6yU3?6-1$t(+|EV(<~HP!KGi7JNAgVy%qcW2sb>vi)Q z6zpwQ<44%gBPdGwbn%MC=#C|vuduVjeR77YRuiDeWmQ&_MH(ARq$2{pqxW4Z6<%y2 zGE?04kU0F1cPg>o=+pn)MuTG z4hwl=Lg@t0OGd|OQMDldq}-J_oeC6|p|M<~Cjf`?G;2hYR?JF=CIcDelcJANTHZ5mR;24W8sBLFKt#PhW>0td%g@P0wP~d z*jlyzXP4fJZw^X|Guv7J)f@WAD`#bxelxSfq2s`^Yy+3r)d*BkRR}{Yl+_F1!Xm|1 zc8iG6=gN^?tEQ4M$Fw;ieI5l*Yp87TG9y&>5v9}t)WI5L>_r&|bXjhpC9eFR_Q2SUJX~W$ zbyH*tNQ1g%{(7LIqCYi*;gK_x|r76SQ zPDw|q`gHPMn}yr0bL#(w!Qvvyu6dBcCSm-+tiT{)7NXV#t?t}XU>54S$q&R?xRdalmbC+OgcZUB47d`Yy!!l)GiOGL7 zy9?ktr}*nT{bE47*W1}4)x-I;4cX3VjBS3Zl$k!=BUM z`m&AVD`}S5e>}Ge^7cbwsNy?jLI|{fWQRU}a@|mh)PmXIq!UBWfU?ofpZ~0CBjtwh zOj0!KD5KA7Q;xj{MTn&#t@zrqd70u3pkGnC0-vu24#n?$A#+hL&qiuQ#(z2lA?J@B zg8OySKHpTA_MLl!E;hfTn%|R?(K$$PMzt@lCxwO+JJhWSB@87JIUWxp230yEyKL39 z-c)ok?u8Ve@kTpsqsNAZUDy)K$Z(1+CM{H04V%js6`1?(zfCCGIRWNfIZFbY@q}UW zte4uG$^%~~wIu;dH&UC}=06Z*6GmFtv2Wi$Lg|-w)+>8nFrOXZakR%gu2~{ z7YP6ISN2DfWJg?p zt@xC+iLO{p04`~=*n3cCa|{*DHb0E_Kdpo0A>&Dmt`veJmbFM~OF%@^->^3xyS^F} z!cK!i3%ICxBf zB4J`^GT_F*>y2J9H&jH1X_jXWChtuX^R}p(5iN1rqC^v_UB_RTqyJ(YoQ|0^-oJZH z9N%Xx-+e;w!yg~r#Mg8t*GxC*R5c&01!;w+TwTothk8GVH>DugGN#W}@=fG4i!7M( zxB$TCgo6{d?W~(LWZ$-al=6_|Fys**AQ06|6wQ@&IQDkV_{5_b4rCe@ zTThJ#d2zL82rA-U$eKa)A_6Em*!C{+_erq1{_Qpu9dUc|>dH>i`FS$|tYaTC{_A;5 zvZ;>Tdi5fE>=FDJ%;3mud$cZ26UuwgOPN^n?3f?TNy59O4pz~EndpKZ!mR+#<|F(f zN!=UXTPUzb?|{zox9CPkzM-x0{Ez=fudz}Pi#jz`T^5|58|HA9LyVijf^uVwq!Urc zlzO5Hn%dfs=8S+mGQ2A=OUiQ%UoNHw{EAb)hE1Au|L0@F zj-T{;D@*W7hMJ6r|FVUR%pA97d(eGXWa-_5%tW}Wn)QZ}uiOYrTiXu$NO}=S^EHDL zRamE;3BKS@9aPG^+dfvK-|(m;^6xm*Add@Z>`eT2wJL3TV^y<=^2Oo$9PP`J*&J;`6Y_H>8c;(qK_cS!+3k+*vm=bq= zs*Rmf{m0D2n=2IeF{)CNF1EpMr;sgRHiy~bHgTnOYrOhm?j&Vp%>Mk8s5`ZXES@CD zOwFJr-K;4;{PNMH=#^$jMceN|TU4@BqrA*wDr5mTNm7*dTx^IG-)?9d` zCpw0|0+yg7_M6;vnO_-Hyd-|80tF46#rg^h9QX z`&m49JH;tjK6rA@^X~Bh zzCERtRa$VGIW6}T%_y_?-YlY{X5>8^#w<;lF!KL?yS1x{(uO{x4HKwtyCLF9(Glvn zT^C7G9r2WSbB(0IA=^4RKaQPUysJi?w(*6L^9oCt&7i6*KBQ9*4SU$t=-MG+2wM7%ghTg^p|5ndtvU-);r;jJ=X#2_yt2 zE*g0D6drdLeH9VV(@zQP+Lp#g4tGk}=lZsn~LyM5!aLp-NB(xZ= z!>i5`c23e1=K?l5YG*Y#ok%N}%0`}*T?g|RXI>;v4>|8=Cm}E@ji~`C734CiPkP=0B_7P#3hDSGJC@{~rCR~OR6t?F?<9D&IK5qMY0 z5wzWjzZFLWNhq+V=Vr`sEtda9pkyMBfgL&!KR@p>OmsMgc<`%5-Va?$^JQ`}zDys$ zc{xBFdE*T5uWeK9q+nIczq6be`G+8u{HUFX6GAh&ItbB1%{^);j2MZ@O}q<%U&?V- zaB#bJR(Qw_VyKpI^1%px7ND_IW4s5u-m90WV2_$0N8PKx@{@jeTK|e4l^Njkv9&sA z$M(HX<6mICj>#hYG%F&8j%FcEn!T_XW4WQFhbG35Bonxf-Q-rE$NAvAKA zm3fs@eijQpZaTCfxIW37!joJ$5#%{H^%e66>DMW3j_vsA8u{hq?D>ulHm+>OMtn?+`E@jI+=b z2ntq${Auhl(=ETtTeN;4p$?r(`)M|g<*E&PWIlrF6JDlYa_z$m1IXqJerZ@$$=I}_ z7~06lS`DTOXAF?GaDPk-Nm$h=tPomf%UtF6s0Cg zwF$i0HouocvC{3B7xmgDdn9ZB{_8n>j)Q*}0{(^r!P=5pQYoJOV-j27i#%rc z~Hw8$LkB9x3WXmt_=?pWlZ1RfhSCtIF(Ffq#6 zE87SVez8k>DR={~J5<{2B@6vJO=;y_rT~1YP`pZ$y3R{igNeIWPr0By4^z18ds9b8 zG(kgF<|J}mfAm}I!Ss;jd?DMMJj)y~m?P1s9>b;MbDdJpG!@Ut z>LBdu$97D9P#IWfjwMG8g@F#m9ax(QM|qx%EQZx>Yc3TmpD+ysn-1gG^${YcEl&>g zuWrk>DY1&>LM`Wn!i6T(!HLarCnpW9?O+jpuA}JFj;{zPK@(%6G>7~ndv-Ul*zMHyJnK`wh2NvV?OH6vCuSf{1MP(?&vW?vv$oz zj<%0X&mTi#{{;Ua@8xEt-UcDVoyr{oZ~lzdUDiw7eiAS^0&9=V5Rvp4V`7&g!exD- zREQqhzS~!mt@>}KuM)_SFhXM!ivWRV_yAW_eulyQ^t$c!-0hrXd(H0rSMP*LHzf#dbefry zc)pl6#lqK3!f`mOtOoi|x#*w}Do6-VB4D*b+jjN8k9&l{h@t0f+Ks!4TQD#qzQ1$Q zSZ#Q`rofJL<_L$*!kzJWzPhK_e15;w-jGCei8@`z&PNXrAGn%s2d3@-V2i@#_o~`~ z?p6nx3R2NGc^CCaUWC$?BJsVKL*M5JOB45ETn?jezQW^d2Tx3w!;Xm{f2jiarwk3&XTmw zNl>>$DGhix)~$>YYAL#Dn^Ar#wfR>DO_Kk$%4hZn(Jt^n;#?*oT~_4s26a=8&*&DX z-3r)G6fi38&HBTUn4APha*c&_zE&;6J1{p=7sPa8@(lHq{{#npv`Fu ziWUH}=XndJR+Ddq)aP7~1DbENRbYPvA6LQ6<={(?2~_G23>p-u!kOhKFvp>tPRx~k zI9-p42VHLn8H;KHy{JW?79%bi?|1G$n%TvtgjD=nV|*pMJiIxL-{SG?lzk9WI5dj)bf5KUPB`4>EmIbLB{pS56`k==p)aOQye7+%2WzE+*csq*U_#7c>$lO zp-8FiyuAt)Ec5fIUpobbmng`7Lk_?M6LSD2UJjR`tj8ZyPPhVTo#X|4!q-UTklUi7 zD4sXqU4vqTR6Kt!*U9T>u`jV~;SJz8@HbvQM@jA_a6R)r!u5n}BhU#P1TF=x2PEL5 z{26XTyiUA)Ue;8-mTRU!R@7FD>D9o_s{5iQz5RMw3m0|;xn+e@GS5<^v@?CTlZ9Z0&IekGQ8iGaJt_X zZEFI0Ze!E%RWg@s?o4p|E7_im*HKnKxc~>C~w=t@kz-E~(WG?)jtYih-WVVwH>>zvLZ{#E=*hMa|o7{!B z$Ro3tykH;rujD5mI6!`Ikb>ZHDhEs8KU0XL!e1y%A#jAkh>21Z9FsXt@xq&wpaeJx z{u5PD5?m>BiYmcrN)`S{Rg?x-Q&r&&j91m*8p?ocWzJGf;dRPUEx3-d;CiY9H-P^@ zjWRb;J-C?~3csfoY6Q=q7H})g0M7)Uq&CF7MziE_JGCJ^o7%x0Gz;7b{vBbA19wwL z;kVQy^Bn2~&!w)yZ>X2%fag&UxK9qx2fs=SXfAjm%?B@{K5#$6uh3$dm(T+6Qd(5_ zH7%2QIrW3jqQ&49w50GdM(3r4U(p~fLwKdkt7ti5R?`ab8X5qvrNP24X&v|_8lsip zVOkAdPiqRlpbfMZ;SumJXd|ryZ=xaa*)&`@L8CICLmLV&(qg%-bZ7FAJMI} z3o*BWe?+&_Ztxwn2mB%W0C+#$QurYqkoh3(1%H_Kf$yYS3s2HrbQ}0?neU-H3O}HG z=|hF@(?@7O_@gp^j1GYBql1Ox^l|zy_!D#&_>(e!ita8vL7%33z@MRe!Jnm%6uw9I z%ltX|82IyaANULO@xpg0PoDrElKC)w68uH_RN)vsK%W7Bi9QQ{5d0l_i0%g;q0fOI zrq6@FO!>lN^c9&Op+n%W(qZt|=!=DK)7ND_N)Ld)K@WnzNe>ksrEk#@@S`$+n;tHF ziyosdgTF&x0Ux8Uf*%KelfFw|1AmXc4t|1;f{)WT3P&Pv~**)AU{NPw9K$XTV>jXXy#>&*(V#=k)!;BlH~o0Q@{X34Vco z2!4@%RQL*=pdW*OA@fW06!@3)bm7bNEBYz;WqJnuYw*ML3Ox&cm3{{P4gDPaTY4Vz z^WVw*8odBMNiP;2qTkaA@E_@EzfK@u*~%yi!mKOL3`2YLU96`$OTdHS7rw zg*Uz}6bgLBf!_H^^ri<{C97t2teMScn~{TCcuaT(IoKq(pL%>_-HY7;^q_kPuzIoiW9aMFModgg(qHUd!bGF4Y^HiG#4IlHEUz-tVb^W zPBi$N>{0fZyiR$7J;|P;fA;$&+J7r7^;fW_+hKbLVM(8ZZT=jV{1LW@^}{MZgg*Kr zTPU~Fi1E(^tIDHKJ`S6?kS>CiZbPr!j=uT?dg1rcE1yKoE=K?R5qjcb_$~{i^i%Z2 zr{TfWq=g5#9A4}Sc&sbouRaAm?1Znn7T)Q4_@*1+jRg3jo8gJZ;B|JvzCI0)vj_g> z7L3k1SlTPhN55uXdX@Rv zlZ1LEqNfO~fvH#vQ?MqcWX<$N^ddEz!L)29)38>igFf`oNEw@jo~B}$tuiC)U{>hJ z%(|Ezea*tUnT^e14%W+@Y#x1;xmX`_v-wnpS&o6tre|Sq&%q*Jfc58YHu3Mt5Rn^vM?{k%zq5w zqQd&%^Q|R^5%ZTBZ0>t zf%*qHjuc*MLL@bX2Ej`P^1;$Ae(zDqhhbtz}?HfBDg_jGpU$$p6RFXhR>AA7wC zUA;A*OrauXgyh^PlV|on=9w+e91Bq8=|%9@PBguT47x`)N4iJOfkZcM9y%@5*NY+z zNn_I3k^xH&LAlm_`D2R*4wdOTBb^&{h#)zF4(ZAeQ^q5Z#nwYi-^S#Cpzm%ugiQql z)BpG9|?nyJPQ&tey59pi0)6z@%GAr?$Jp1 z=>pMk1jN|%cX@$%Pl~@dHrCCnI6Q*d7pshf)Ai>@;Y%^pr!(KaOuo=ESqCVweYk6I zBC7ZRPf^GzLtTS|yir93nz_*PS1(=^dFY@Gw5PnZY^K9PrXDY&}UyelQY z$YlbTI%bYYPe$_QR9@LRaMag2D48vAg$&Qk#e=*jo1ct4&bXr`yE)HV^UTTP3659x z|Dvl2iIZJP>K+@C#WcNH6Qjk*=zF&f&zK`+O;a zdCVO8270R3T{P`?OTBN|)Vor7rL~s3qa?d@ARE}{xuhQw_j{`_|M)9+H?+R^-)%YhFcP^AtY(54RDu1ejtSChI8xE0t3>_yz&x3km%VE^sv)Q5mOZWmM1 z?d;|ol&Ncg_XF1h?*n{|4tImYQSY$UIZQc+KI_odI#e|dG2@_WM?7InCQOwnV>)FD zM~u;kDOhfl%1tMK{|CLvY|(3VWqOrbqZbuQJuyMwC-$lOOy`;uJ{B;z)n0?c>@u`h zSQU0dy0x-3*&1(+wuW1!)?llz)!pi7wYHjCwXLdFv6Wi;bIVxX+DGW2c^kuZX-7Vn z>N_GzOY+%NUtZh4YTyuK9~eYzUbqRJYgt}#(-8p|Yv;;U14o#LC*RyHA{g0Re5g&H^*?(fE#_JL+;JRmI~h{ z{Dd2^?(C6y+7G+AI_w!zaTR@<3oTgb|G)np2OgUUe+)QEpPPuE{<|Nm@h@T}ehXI1 zd$E?k6WE6Md+C4r#{z}7-W8cgJRl4a7TZ7)=m)j~`*9X)295!*<80VXq(Yp=PQ=f% zbsFHlBFZ$t2)28Wj{#RBuBH(HGBNuByk}_#juKhzKo@X5fP8JE0QO7lDAQ2`dJI@itzP?u~!a2rvs3qT#~ngFz=ekbq_j_=Wq##R7nO%m_` zQS)2?GHxN@Qvgn(XCUv^D1dxt5`Z$=^gt6Z1l$DN4?GD#CbJ}9J^&fE_XGU8A2i|5v0C5XZ{-XH+?)#C?VqgjCy>tjb+;a52v+MxmyP^p|nFFZTAo5(P z0FuBm0Qakq?`jD+4?x*#x&XYlHVGhoof&8Xh5*QR2<;wj0-)3N=!YBd{D=gs1`xLq zI@ojza0EcPXDfg-&<|_}?gSnMAiGgLPzMYEJAnHD^tE#oz$kz|zPS~+A3*rr5dd{K zZ$5x$wy=r~#G%JAnIuV*uXY>IT|@5diYKFbd2EwgQmpMI30~wjtnp z0CL?f0doQ9^I|uE`d{J)+5wbzsRYagwgR^SM*y_@vikw_gUj*l$Q9^kS1N!sa0Ed5 z4h@h7kbV^bNuVFt4xk=aD}XeBxNBO0A>bw;4?sUVA%|=41&#q|+jVvTdU>B4Xa`0B z$m04t0m%D?^8o1O{b>O8y777d?Yk)o+y@*3kk8Hc0Z#yE@0c5C1(4S+H-PZ&8UXs* zgEoIa0~`bJ-Ur=4D*zvGiydeMMu3|D$YQSq**6towPJ(j`Qt7TR2`{U)PY!$&?KW4!co^M8efV zeZ4Y^J;Zn<;>cy44u@TZP^W~SWk%KK7VTVFQ@iTg{*SmSf>vgjvwX>%-i}Z(80ugw z>NdNgw=^_YExlx3-(_c2TY^c~t!FKs*Sla@)Ma)@&yt6BoPz#QSRtw@i_^lcsrA)m z)#{ANB`lhLd6R+#l#Rvry{ zYfW~$(w;F}TR*vW-lfZ`LbKM)s2i9SNlBG`()fm^OuehTwW_L>pG>IucS^!;oYXc> zZN0NXXV&S028-Vxu$rw_LvU}*YJk>wqtV{x44TXXwKa{ZVuKp%>mUnU%eu3{i<`(h@pv4`B3VRnc!85{ajvv{2lr*2eNjUDs`oG%(4Xq!EwSBXxOLl@!C z847=9PYJK!xs7;EMK8TYc&f3buESD#isx5&9s0Ra+==J<&dPB-;jvoeCyM>Ny70Cz2tC`#H{C7`W`~26cCA)PR;9=#H=$do z))lU|$V!!s&mM|En>K{GL0-3PSztx?2W}aEwQt3WIcutFlxx^e*R0WO+xntm4ZHoo z{A7%mn=Z@})=_>qO)CzkbhhCgbbx)Oqf76EZ&tKs3ky5$9rM27D z7PH0T>h4~!%x`>?s7VF*@i~wYr^uxhK9yAk^gIu z`@Bk}Hj4b8N)4lk;kNi3e_u9{hLSYxunI11*<~$nX-V3x-nhcIiovhN~EeC*?PfhH!-b2NVdvRRgT(v(PlFV&E<`Tu^BTyQ57`%D?Cz#-R27_ zJmsDRbGsLreGwMOvicpmu+Qu=s+kggaK>?bbu|75z0)kz^eli#2s+d>QgY`X>kjos;@KEkQ)`k+V%X+|5 zc!rDq^pJ31=awxORN3$_SY4g9dA-%Et?^JbB!4_BJEi7-B6wymio5{>Ef;xxT_jSPP)xW7j7D}9cRX`;qs=wm^^hqe*t99Y?0Rd1Z+N}0-d2yK4I8}mcD;k~hnYifulH`);6seH__|e|^S#Ban4@a( zb)0WX?Hyx6sL=`((bZ5!Vs z`A;l1FUG&(cpGE$*uyA8O{VE(XsApS%Xk^)N1M@k!*UUk$i$T`O{k&|Mb+^?%2!o_ z%}X=O_#e_mmh(2?%g+0SJE#@kk@QZprAW<8sTHeuO?kWDEGiUHP285VMQv75CE67l z1xl5FMN7i`s1)F%Nv<(cpKF{LTGi^QK}SS}syKOto+iTx#_*zHcXW7nidl4ik42?D zJ0+UR5K?Q0cSqOnsT9m*KCeX~YR;}ig8axZ)1DJOhm~D8cC%V%3))SNKrvvp2gWWO zyGf(72kjb5nV*Mvvj667d>r)`?iOlhaP`Ecj)us_RUcZs$mVjes+m%Eb8K|z z4!zCgvh7YfY#LohjV=d&j4Wx}gvi;|^VgZT2#c82 zYH_H?-@)mEO%3()?>X>=>@S4d(X#@u*=EcLvs2|@o1M$GxXi(zi)<}vn?@0HLGj0D z;h$y7+)gE{k2T0DR!$gq(YE=lsyGqAos<2GwA%z<(Bolmi9Wcj@kIaHb&D3QUAxE; z2sm6mKf9xU-O$tsgQ&K6%?`hi5!Gg|+2#B3vR-xXa+%iogJygdQf>|e#(Ul)I_T&6 zH)DQ%3~jHZ2L2t@)OLGZ!C=&xY-x#lRZj1W8P(NwQD-AL>x}SUa^o#IYjbmR27!|2 zQOX0ygtm*_U8Qz4VAxjS>g3BcEay}z5n3)yj%*m!5yd5Ay!?i_9e&I(m*%Sa>H>3G z2g)3Vj~na5S24XO>2o#vEES^*?6!mybbEs?Z_csL8)!0)tedsc<86;5XJv+Ip>oFN%qa7gdt8zwTER{_Ll#5Kx`<5R$nGmbyPVA2Zb`dHuG5L_B&S&+<9?lRovh-YneVbZ%xCN18%L^ zX-M$0)hPSmyUW&)&+IOh?FtuF!G&EdB)IKOPWCsXYj}}^gHDvni>ygcROYdCf*0vN zu%%(myquo#BI8w^7vDLs^3Ls@TxJHGNPSAU4SvHqb!@YsTu4kFe?aok1IqE$d1>W- z#y~WP(Kj~Rt5q?TCosQE>9H&9UZu7#=v6Y6#@7)y8cd?8+}YCX3|N?7EBSgtMvqJ3 zG%F2rgBDA0u0d(FE1X_qxZ78*6Lg}ZrNtrYin=uy#sxL|8@{d%PO0ZZ$Cg`x)k z(>4czkL+B3-F3s)7W)b49L%X5XY7NBMk6aTmz7z_ZBb7yTDY8ZmUpjAEcdxx>1LzV zBAS9$DXXa)V4o;!N_(PC9ngg>M52)Pk1Bp@#`EnAfEVZ+- z4W?V1c~A2u?D82)t!&ZwmPoa~EY{K!^4CV~OFhY;RgtVshC7DauDvmkZ7;Zz(miT> zygXjnS)VW&9Cnwf%@T;(7&FJB(Y7k@`5Q8`s)Dj@LkG3cLH%@D7)AfVKp^KlsP#k- z=G3Jf$CJ(Sl0n{%D@|w`vMy(7=}>>hqG6)$LSkm~tl78kY8~#3M$<87=xwN}pMTCJ z-txL?sVZnuL{ri5>{ZP-e}J8+>9E+Bv<{EDD;mpVNsCxr9W9@+$BTu6*%LI0%$$su zHzaVbBk(gtVFY?~;cqcwQ){nx+Ju8{w~5?d6Y8Fu*wL!33B7x5;)pmH)+BSE%r-Hj zhk5nJHYv+T?- zG&J8mX=^K?=P34;o2OcKIIJS^!%2CbmrSA~dQ%5Y9y;KiR66GKO(%;CQ9z9cij6@xU>mz;3EriRLzg6bH_hyUou(FV@7;DqAQEK8*5$q$yO>SIveoQw z-Sb@K!|RlFXUz;8e zPw|M2NRLlWc@=YJ3*Kc7TulYwSV}I?wFsTHum~*NJs2 z+QOCn+j<-K-!r=*5O=7VJM=FUxtCPak1<#%E^xu5rAWdB_;WU>;WJF__z< z7|bWj*>mQgE{{Lu_>0U>F#JXHwDtWVriBrHNvri>wp zIn^(&stg)TCUN{lXE^L+A<<;gvtVVR&7N~xLms1Wr#>Y~Rr@&U8URh%Nptv+MFLV3ph7J2((Cg<^Qoer~fDq!}f(|&Ux^-elq_ElB+ z%z^a3XtU_xZFV@62D4#Go9h~ib4uR5l=5JsR$|Rn9<00y&1QPEn}vA0$6rLd4eQ-G zd)rKV&Vz;<*xmXnNlNMO6pWsb+-4*8EZ&98B;kSs%Oj4S)YQ`nk*@7{fDd4e+ zOXR-tbmgo}xwZ^LvQHk7O|iJtTJ7635XnZ|I*r*SxnG#N7b3xLe*<;z!(YHHm|AyB zI-MZf{2rP=Khf4}?ltst7q0K`H!jiX+7flnK$~nC@;O`aP=NdJ=N~mcTJ+_yDTirT zpxfcK+XTLF;H`DogGgv7Zew8jUK*+RZPE0xifiOgP$1E1DS+v@;BA*%LiYxk9L>;lUiM)9(TSUwy z*jIm;JNAmg6sQV^t9(Yq8$Wz`SI_(3FD%#FO&X2Ku0Qoz=6s}hK2eRbuELmP!)Oti z-owng@FMRzui*8H5u4Q`uQH2c1fNFRCYB#|Rq22;#Ik%I<#3fwZma9EuWq|^W^-?s z)OGH>@$WM0!1DgV`sz%>3c=mbyli1}yU}u1Yi&=plU>)=eCeOcBU0d+;#wduF~6>& z__TR$)E>3FLbsC5b*rw_=jELnzh`(*UF}rfdJgy=MK1@nFRYD~0Og2X%%@xjyn4of2l)Iavy=Jb#iS4OulWf^a**YWtTA7i0ICHhdt`fEe zoAutcT|F1|r*mtr>z}!Uvu4d5cdS`+>W6QWZ|zO3Y*+T%1D-9EAz#o|foQj?JiUVecEiV)y%az2x)atI=-%8LL{Wztm*8cBLc# zqK{SEN;_s2-s%;1dYgS7%vpsmeND84GQL2g_wHj{21lQb2kl;u;;r#_lx~kb5dZo3 zD>T^$T`1QueQvDUYp}|tPRiIa@o@n!=i94Sk8k7oj$gA>9GJ}KY2*_o@6?roEo?Q4 zVo_tKjnQSpf~Kf23&up=>*OX>r<(14yHS14W@9YUwEB@Q>{^!lu_38abUq@aYig7R zhiUv26GM)nQ%|uiU(;HR8jZoKdvN^26EfV3I(W|TU1d6#N3>Wy)-qm|iT(KI%+&hG zYKq7e5mAwJ+-7y#EoHAhl8T$H9-BpX@)04EsaEQ(`tcvJfm1(3SZC3*-1sMoW3C5& z^HJEI?aX}%JA9`1wh5p49`17LWd4G_t5@c7807k{!gb|UeX|!XoZYc-;iOx{2sUpX zu3ua+ckaMh^X9JLWy`W(gMMki|93!|cKTChG>QhRvp9qlN3GN2M+CNF%T0Jhc$ClX z-uHpAg^xehTb-$?>EWK`l8d)r^dOs?s;Een+V~vW7~p3CQ_I2sV8*S&pLa-=_(}8m7)Cgmdk+-pHcLzN=T|a;vZI>qFy% zzJ6v5q{e?|HO;(WrqU5_2t^v>4o9NFh!ulUeMukhG(SR?(~dE zq@~h5@r}kskei1>XM8(lS9`r$16j4!&|L=ZgeQ)0_zF$#tPq{0D9BRf*~E4RJLQT> ze)H<+vAXQBo8CXCd!JC|uO5GTSyk2QB}$z`a$fOWF5B})=WMWlNyL{6Y)vA{KYA#B z%L4hfQ1!G~n=410F~Xld_hl+!YJjVjp;a`|4J|!|P(wn(7tSP|91gq&2+P=!|E))~L@c z7<~?d*JHBi)Jl!Nx+gob%^pd+9dRTDlUbult5TIoH62x(FXHXdq0_8~e9hB+g3+p{ zy-JZcVpeIf6e@lfVZnc!R?c)-sFPYO2RZqr0Mb|o5!XW4RVzx zw@$>ItFa`A$#Wbm0(N;bQJeV9?>~R#LVHUTKwP4OjahUQK91gD>}in z`ZyxbpZxib6|RgYoDJ%Qr;g!l;)-WK6qg)6k2wCdQz)bO{So@AW4Z^`k$#`US|;q{ zGk<=9$xqK&q_nifHel&=zKZ$3oyLzH9skL%cwoHdBDOV>(pE-C$8U_LG?lU9IN!{6 z379WT?^nA0HlKDsHt36!*2$v<%Vhr5<2C7Y&4PZ;;{{<~D50tdpL!+~$3^~5FTrlc zp0RWK9=u3pMzL&S55DMo#dv82XDcosSlZ%dZ)&W5$;1N+1wzj%1mUfK$>B4pl)@>k z(WymHiE_$N|50JznRcPxPd?p#%S8QMrLz)CWHJ;QtxczE`xkINRiN*LD^&52ki;bs zdgqg}Ei7jbvU`MGXX*e>1x8{t^BERj?dSNW;=~{#x23V@)z+6c*z65Ke<+-7ak*Nu z;ShVUHkGOkdA!-ma+RvQGVAq(P>!Z>F@w_o$#)m7Grzl7CT~-$;XMAaU9o`1AB*`l zftXz9r9y-)5?&?CwE5&=!%h`tynMKw_zDJ|S8WvHdwk{DnAhh?1&yL2+Av#~ZL0H1 zm1a|IwnC-S3wl1zItqUgob2zgyVMyYL0qG8hXM|qHHXMqc8A+6&*L$y&U%8+zx7V<3U@r`9vqeo zFrG>)S1=1qJT-?gOVZ%NEf>!on-`8(iyh9WHUoyCRaLpSdxa%-a^d`Lj_aWQixBn zUy>~huL#AX~RI-5@XDzx(5ex@g5^1#e+g=xh1}E{b2vPg>hdhXBWfv4viR{ zSLhjui5iVP8nEY*J_7HZ=8v7O>9VgWhkiFI)5CepJ0z-1Ns2&TZOzKO58l6WgGSbA zbN)=k72&NX|mYdF_E&*BUDU-#yCS$hYQvqToG8y?s&nT#zsr_bc_ClWC) zqvb-r;sWLag;+c<&p(*G?7c)JsiqwIoF12W{U}}0S?xP?1YY@(k+n~ia5_?|sZa5~ zVabg%6T`Xw(!$itxY2B4i~)z+bJ=U|K9_mMGPoqiSE8KXVPp(ucaXbw_S4Kd)X_Y4 zG3Y2xO3juN4uiq5BasN0q1ViXt+00++L57~nwd=Q`T$27@AN*LG6-l8E% zXtRX;lYNXBiIa%R*@)9gNT-#9?v{@IIH9a}c`!3?tmdyR^!MfA>)M`}Bay$GP4=YI zg+e;r^AT#DJi8gvsNPx~tfdhkk)|CPhp^M+gLJ&sS~^f;np4s!j(X)qe?7%_k1e7V zM(?#G?_N8X?g@LLX!Y?%#%Snf{xQqEY8@d|zt!Vx2K1|1MS5I8r42w!4R%VWSMt zs@@UuB+7l=>489LGBJA(-P9 zt)8{!irt)>Glu1g9q`5*c}SL|zC{Vxh;@b&E<1dOlxuxx8PaXtGl0I{d%b}>ojrr- z{7sAEiK+AF&)YN!edYzj`FX>I!tk(#n%NJopNPevGarKQ9~?|`jH)4Z+Adk~0&7%h14G9LF92eecR^>6) z+&j+K$en;jdHIKVzhkCU9|(KTH}duCIswyoA$(JW-OmN zLmma|b%(hZ^B7mQ7r_Y?hl4u4pX22E0~P!}Xu68JJ-0G<*6WYE(=xBSFu)5A#uRm~ zlUqhXEQk6Q#hJm`KSJxb!S@iW*J*2a!OG0@ zt$Peks4<*kk3pz3?J;Z(_Hm0AbG@Q75#ZRnzVtoT9!N0H$4XB;QHsGHdB^M+b61C* zx6-u^AsPwN2sO`vEJ3SPYvco93?^_|IW5>yr(1Q34F*iNIsJq#Vqjh2j05JR_Kx(3 zz8nq}^_8@~$Lmao9L&eQuzcwkAa$O%=s3UY$)AY9pm^Z%bP(Pw;38cxc1#G`|4eLiZC*Sdddtl7te36YCLn7yJXb55CJ6%v0Y(!9=a1+1T zK1Y1HevI@qkJoA93%Hc_rHNWAuNyJZZkwJ)Lo2UanqHk+Hqq1Ng+W@^ z<%;@zT|MK=li9&8qmfONL!4&YHc)msK@C9%e;63Qbh*Xq7NcHoOmtf;%PyS|yAxKI zRj=`tmschxD$C10O&3JOb2Ohl)dBJ>pd%HQi*7=%B1&W@ajkY#$L6PPAk`~QnP&^YY zo+KA9M2lza8q6k_kN0%>ykM87cgFnQuAYhIKg`9UG+oN#=^-M~Elymz%wqP4F|Ri& zdMuXZmyQSU-As@hnLW%jv^`PTzB>it_Zw}n*-*QV8wy<1?jmFs(2YVZ%U2;P9<%4j# zt4{+pD?d02Ptb$$zDmQ0NvD{v&|~sPJgz|3vp?;lr{!Hz))6U){z8O*C-3v|4zIWG z0}I&)0|l@_Jn?0EdhRj@=lSv>o)6_`{0^tz?{xTQx8gZEOT?;BJFgy7?Umq(b#5Rx z&~$2DD&_Mp>*QM3V!(5nXW3h*g^#vw;gb}E(>&b%ahFEVn>UypmQJr%YxCRaJCx6$ zHSdIXSgGAh?SpsNb*szTxR)xQe`z*@%qYq{OfCc&+Z{2fr!V8Ba`3Mv3uigCIx$wO z6PIJ1kmALx^1dbRxue{on%o+c^GeycQV#d5*gt~YS@NCO0D;_sG ztITr^nPYJRsb%wnMH@{`C3mDDw<~~h#rgg1W z%=r`Ltm2tCFBNM0Nb^*64tJ8$z3JZiZqjMhIod8xS>sM)k7=d4ww=bNQ%g+)9pJtW zzN6Lhd-T(HR7fe`ky>U&kjmuyT4kPV$Q+AMU8b^?JnB*_Q#^$XW~n7<8j845Ii2?^v*DzhR^W#ZkfGS4++ zj%5gKxshBPq*~HD(vaJgA+;9XPVT;j+{0N~hD^LN+#{*WfOBTd-)6ZC!!&=f0LYzG zW<{RLL^G{2&oyL@_0qfrLfI%twWN2XA-7AGix$!fIh+Swz#7>d>iZ^+4kAx3;Mk+D zqU*$2fFLB|(6n^AdW%ay-%SmEBas(f0oKA=-0!seY+b?RJ0$+XzNA5VyWMB+>H@sO z4WF_BSL`OU#7w0Iy+2UD}(kj!$Q;b4|Ao8a8U zMuN@usKo9u(n$-R&DV{i+ur^9PHcYG#P~w z;=}m6;=4>JAx@PmHYlLVn-(3h8M{~X~uhqoN$IJ;0brz9Z zU<&1O%scae8v=v@T@tiU?X1!M&o zRF=f0PwUM?X>a%Pp&>E_Q!q2}bxR$!9d%pXssjG6zmd8TKx17G3zm}_0_f!T#g}ni zi_v|3jC=bw&cUP$*Qf1+h1FYxaGK|XE+ZR=rH!1~ z)Y;`u45Zg(Y(s_2qN1PqEbpOqrL)LH@sw_D%^hL1voo2{@C*WYICwy>Ow! zFf%Ydy6~TTH9QlhkZ@(^N7! zwTXUDy^8lt4SD@h>2XQg7A>1E)R@i2d*g8e|1?c{IIH;tl%JlSmzcJ$`@B!c>01($!^i@(d?=0_k+nD_I%dX=99C zmj0Jk$Vy*vJe3^p@p&y>ywxgLbu787(l(}NCfHB2A0$aK+tJvGxk)%CBcnW+K6}CG_(PxTUvxFam zYBq32D5x_U2)VJCYC!AZb8wVgZ0jCA^x?K;ZrpJ)mHBI)a=y;htGbP7KJKpuj(P`M zSB>*7B7;)N3nifYH4B|P2-&%YMHi|9tnFI`B0K4C1-Lmb^J10(Ret3jQpTjjW|JZk z#k;~*5B1n9cu&M@>hD*XL4{wntwTUd(si~3J%!5eo|`hu;~n>_d}s9}R!Cmm%6!7; z0vglbjvt)*IK85S zUFNd(xk{~ATc+@g>tStk-1k;bz0H4)SPlm{yrUKm8>-uO;Ul);Z7>k0xNsKs3~WpM zx;M0$z`r|^m3@9w!=M6x^V&j_slArnE2v!cJ6~G{8G2(JWqyOAC7M%+`ra-`NYR(? zuxZ8@h;0ykWW##Ea!$*HnIBc7wV;hR>#}nh`Y?QejdAqJcVKaFpX&9PL@?OU1T&zp zw6vZ{fH#?JbDtST;tvN|kU47PJ#d1RRXP8{=n%XU&ygWG6J1CWC0mFrc11tCnwp1; zT_zC^I>&i(PKT1QQ$tv{WWt)?Rk7MI2lCL%Nd8st%^dKW)IYSy^m>X`auA^dyjtZN z;QvG4TNGkZty(uku6~>%E1h4)o4wk+KUgDmi zG&v3y&%-PYXg9`BMOtgfs&(zbWz1OJ#w{Dz3Y{BlmPJ6ukt28RBQYO+TV|-U3pPeDW$+?MJ!m*p%hRY_29;szG8w#k0@JdbiH@`kZ!B<0IwNvsa*&}W zj*wo;UAto_h3-{$;~9gE8mMJLyF!$))q!pKH~;xt{#Z+1L?! zzTV;v$X=5TBP2KaiPK~}Hp;`B?1(+BK1|3ex-^%} zm@$k_F^W%PDH)-%38D8PRL(I|{GeUubTyVDS3wth;g-!Jbe}bIBge|g&CNfxaC27N z#WWJYds*a}6>=OTlZaj*<=Ib&{e=3(YgCjLU3!-jBrz_6H&2ic0Vh^OHbGF)|UnM+ghJ9-trgoIc@ z{9>U^_`RD)u#jQhyB!5+@=IO3lUa=reJIE_vsOWRb;|rr654=sx#@J4(gG?KW(WoC zk#0{l=73#Tm&ba~uY8ZhGvwS3lc3IH_{&y7yx|SXSg%Dcp*`*9%Y%;(ar?V*J}9lA zrj;Aq9YvD;D-v2_s_5my%1k$!pPryw_A>95`*$%zXc-bz8Ow%dP)|rL zHo0z`x`>}UWtZ%Ok}4&r6$Xr}XSxbR*w{bf53hTmHPcJ+iJu-Vk|-s0DgExSKZCC; zAa&TuvA*e0CAGv!5Z-ivJN7KasxQ~n5)0A(-nSDV#YwD3UK%ew|NhIppz`xb+MMYZ z@A(9CV@oof+D%jA;%+%fjQB$8Se#71SK6?fS7qjpY9bDARzmdbY(%;d&r={$vEgfS zI4$>%dmnp=?3kmCBYBxcwQh+{C`+w9(-fzNez{o%iRZ_x2}Gu9=GIJN+O9QlOnqpq z9djN)LpO^G0s@6pY!|nu5aQ@mbUL5UY?!^d|1pRY9^8ETgb~X&Azw|M#WzF@Z4(_pr3%i?5TL6#b^dwB~>(k85!V|mLwF}uQGRi=T%xz^zmVpSf^b2`HRQG<&lBsyRqtXo8IN$Ae zU082Rj#jT;Pf8gzy;IfRBUNT0YdDPH_#9knHgdZuPmI+RirG;zDVfAv(heq(vBUg* z4|Zjb3JR`x@6K+tv=*bS|Fjp)(5#d9JjF?aa}ym2V?3zwFb>tyuobgqoYH_P zj{Y=@bLzAHB`Wl_jr|Rm34STJ@I#oHR?x`^=Jmd&u>O8*?@bQ3$Sx}H%)4%)!QWOX z$viLI{S|4bgqi0B^o(=AVZT=|`GUR6uX_Dzc-%5qPIyHgk$)HXY|g>)dxIubxkGVI z61cZ91MTE4b7cJoiDhNiR&@B349C$k5?4Qkv!k z2(qA{iu#p`W)X3XcnukA@vWbC_^uJ?{0lDQ^7X|o*&5jnsq5Og%8kLk*F{F;$pWr1 zZYG9@#938GBLo%<=`t3|#6W6E5r>TKTg40jPukV_Tiv}CrI1x;DEi(y`h;5ky}V~q zsgB?Q8{*30q+`a?u#V+a_xAMirf-d8vT8-cbB9hi2|R;JP}=bDc@nfcE@X1VXRfC(pk+pcN1SveP^(H^mAdm73urj z)JW>|QUXV92dB3+NKN#tNqu9DnY)BlQ*Zc7oe_z34y$+==_$>0iy=fQ$VUna%`^Nx zzn{mKC?_XUX_PQX^%ZmViDOz_wkzT3&}$xcddbT@h^rzv%er`ZcTVe>de#8SnRx{&%bl~izy z`99&MP43KGeM9R@?B%=c2DJnBqvlt%h=_?LcqIgmT5NLG@4;RwM1G^)5W#WyC5$|cG_j%zH!G=* z&U14vQ}hhpw}%;`A~%Ga0wAzg?xG+Ks8E2Po9h#+0F^EfW)H0icC@bp!wkale3N+2c+z4;6OrSFI*Jxg7p zc#sbZV{mikVnSEap3}`{*>5WdYFn2fUicv6Y8-{D9BcWBr~i!l@TN>kV(`b{HZDt1Ei%kZV5_oC3F~x*cVc_*E{{$7GX&4@{Y#cs99- z*>kP_5{Ie}uD=S+nbtzunWnYy4OpexZK0MN0KQj&rR+kRVIQkqR^`IMJc1eSH7Uic zkTYA$BGJ+*{yMqWJ7DYC?Mab?-j7&wu#Rb(BaPV&Izt*T%yr>)htv{`Nl1OZoq^CuGGwP}chp~X(&&ul^N zncyn<73Jf#7kf@3a`#Rit*`62o2nf6l8Qr)IuGg<*rq0jbws*vUuO0f_1%4Y-sin% z9#Or)Ev4B;{&rOXkHkD6rdd#15}I=M3ja3sh3x(^7%1RexYeq3Hd&kwB{UgRPpE^4sVq&jlqq&gqKhy*rQ(Yw)?R&2pJe9WaoC&U&Y~u= zw}$3eCgy>x%>^yh?lgvD%DCjOi{Fp)_itr+sE1+Ysvcuekm=ruLdlx35MxoCt` zY}1KJ)lw?M?w)xyVjh1=n){T5z{s9E-}a1x?xlHYfe-2U8e)uv=2xYZid0f&sg%GU ziB}&aVCoBbIB&XGTh2$G2sM*t;T|9r(l(700nuGz7TqshKZxtrKtc%F`?hPp8-CQK z$z0R;=IWIgACom%5BR-vdRU^By9#fQ*Vc)=AQ&~zLn#$Y>T#TQuApoYiz}1rtMrIlgra ziSo;JfzQQZ=w(CC69QxUOxOil;>aa)GINXR8?Eg_=t|En(-pF$i7u!mGX2sQBV!i% zc9jfOveI0|Eq>m_KMW)eEFAWP2UjW{`6r=y*ons z^li8p%Pp~G1<$6+-J7ORZ%grR-3;{1+U^_u1?Luxpd@jUut zovsG5T)3pb&IUq%ri~iy?*1k<;#@w)>;}&EdEr*Iwmjik@n&ihZob3;*Yr~c!6iHu z?h(4M8LL?C5p?TJf?2_|DW$G~3N14o=??aRH)K<{55?K{;e5JAUf$lo@8$JXv;-Nc zLTJ>Ky<0WK#WM{whcNr(@<~t;&1n`s4a($I9(kw&?W>*DY(md$*xQP?pRfi-iiBR* zPSm!(*E$Hp@lngUKcf!O@?yH~Oq8-lAF5(2Jy0pC^pzM&_z<-?Tkj&An8TySC@ldC z3x+_~*e7HZ`FJAu&Eq^>CHCwzA#W< z>G!M8 z@y^lbrBU`Tx3l%r-HR|9SZyju(${#uL>e|j{!pp+c49_U9%TDg=Z!jN*_F`uc~~Ry z=IW68uo%N6^~ruCdh?0(WwC=vhdxvzkY;r^+C(qn+r=X79GK5Gf~s3M`?OD;u)obP zI-*1%o@G!Px_j_uv;jjzy&WZgug3lytG>1|IN!49$706wZD$x&L4HSSCU3*Rz7a*z;;Xy%eHZ~74MJqnp zJkFX1ROi%~RA+_}Hd+gh1E~}hbtXqi9i&rXzpb9QmCp1C5&`j@KOzurQJ0@ygKCEB&G;6d#JZYlXwaRW7oX+-xOQT|KipeBS^84cV;zF*K zrqvvq5WVGVN2eIa5@5bLjFNlql8vc%mUA9KK2jA-@>8>8AFN9a&={Oe;B>45YmI51 zC*%hA?4NL@$0Z(H&&SnrCkAJYaZE}oUo#1Pw;ej3&-}eZO{9rgVQ+au@Ev7{S`jrP;# zRFa!sC){ZHooQ;^Fnb*aMF?y8eZ54Hcdh$zCx=!knliy6Ze~8lJ>rcxL7Obw1KfPj z30Cw#Q`5SU;K=Zh*rxb9AvC2$Q}c*3t0&X@ks5u<$Aqo+eRre1Eoai>i0`?1$I`4_ z@$MNh8l)RPxt^k+vDp>5qSU&Bus}98YzTU{%v2IKRzb zgE!#fDU-jRI!1gn@`?5`?YUa>kD`GOpOsaL%bS$9nm)E(Km@}t;?)LRQ!-S@gtmf( z3E34njY+YT7F_Vg?h3RL<{dE_jFcFX_V-z;zY5I8c)ocH1OXVg`c20qAriyKKH)_* zk?tyR;;a}$Q+>>maP2}^k7#5B25)%;Sf$vrf4fs|3Ndc|nHfYFx2}90ZoL0dUIA1# zkekTu1*)h{-@W;sPB6CQCD0oy&tLUnz;6(hb}I8_68i!DuTDa=pcgN>ZGdNe#)LJB z@#@Y&pXTEEDS2`=w}P(kDwJ=!)05so2E(-Jm#2aZhBk##Tp=apn(6s9Tkiex(=l|U z7RPZKzDvb{){Zsv+|Wzcjgas{7a#0QGq6x5d3D`jKEvKx6!#h_+W7TXTWHn_BSwn! z>X0z8@j`U@i`o`e)R2(X2p7%+%xH8ttKS#$ zzR>vb)@&Me4M`TPjW60Em3O6|Tw}t@a~~ZsP9Qiq?0W`gmbq9KS8tDpYlLV*tC4Yc z_3}04Y}Ry!4{QVQi87r7&p(_Y@Eb*ODJm*Vvla9jOpO(WOB5^W=z5)O-Jk}sUEot# zNmikqx+v_WpX#g)*4IMbzT{S&Y@6^3GyQaNDPf-fNxE9|_wl&{bLDtDSPd_%W(u=y zxXygBTxqHI#0-(4HebtT0_RJ&-B;v~SZOci?=_W!rS39csr`_lAMp-kWh~bbqOL0< zVIZTvtSdd?BFldL!kX~n?!J6F#X*y=db{x8JiS}TJnhvF2ZK~p$R6C8GmE*s83RMz zXDKVLhdeog5t*+)YsAT`$JfI(DL@&7XrPX^pPwKb2E5<<9De4E*Dfk#+49K><(+!Y z?(3fg{$7PopwURq8N64NEt^NM*fG9S5mq8o8d*|Yp|08UQOU&4%f2F>2tOgbQF0X@ zDku7$I8rhW=J>#jfKsr}Nv~Z*`XRnZo??4ZHD58#0N+LHL|PrPWPg6st?+iTv9E_n zGC!OxTlM>=nuYM6piuWF52W&nL<$(@Rvc zKc|0QBdy>6L{yC>Q=kGga zY2L(C`C4b)!QdehT9F5MT_EyQ|FHOW%U;He`2C7^|Gm@TPo32_S=I;2cy@%k&RRr_ z)7(WOHs&QG)k8a9T&sV!?QfvnfQKB&G`i0e6)AshV_Cgl(b}E%{tfD3kl)$8K4~3` z@%*8-o*%(VK0c(tHWGurWizHuoh=i@|5O2+Scka|_pWVKk07^7q4DzdxQNc&6mGf4 zR#$T?50nu)Ep4@y6$8CMJr_jG}D|o6G&foTSUp7)DNtg783cEBB zd$dMD1V|x|8|zAF*k5}{_%@Q5hX-YVOlkOYyq3Y)6;>6ZYbVT9$hY|6OgZ>j1URCC zjB>?vsr++qK8@mYw@50-@ZhPo5nT~ZT|VAqr{6910W)A1jgDdUv`suDWLuMN%5l$J zid`sTc+_ZT6Dj}L;7bY}IvhVIk@xIB+uDrW1`fVhuo}?ganh2|DrpT5-BtWnxEiUQ zmLAl5$_Tr_!tibtXunb>eZ9Wy?T@MW%dvN&(#(XokwTZ_Z_$oy zMuQ{TZh6bD9C>0LbXx(WWncn`a0j!xbMdkxlg44;63|rme7>+_M$7l@0)@U-`a}KQVd9qzsaRYeVO0PM8se7a17u=)LQ%FqS z_zO+a`O~b~ohi1<#HV*Ao5yQw-!a)CWmO@H2o-5Q&D0Ts*Z#8d2|NjQWc6V>7F^?x z(2Jh;n-8526eMdPa929ZYL|^kG9ay`tb^t^v3a2dU+6EM8$yKFd?FtBgWJ9|NTOe|*vw9(33*3#6@aQQ(c!(zm7JrBXJcHsUsgq)%G&t`QFn(e;Aee}~Nn zzivetpN%@^S^jGKb}?{kU#dS%>DUq97wx?duCFDFPa~E){mIvW>i|?OpmI`B@#!|9=XaV9Kz6XCeqh}3gUjS29 zzV*dh+#PR+e_!yRhZJStM%;j{oI>rh{PMY9_!oluh`gt^CtB?Z;K#vM`}BaKt?d1* z98JS~qu; z!t)Ih30}C|8oJ!tV1>P6K;T*-U7ltw5h}=Sp>KE`fTiI1=;OK^2no39$h9q`%@fWD zlM-v?fK*D@ug&x275Onm%t5yIbL?wM@>5As6qG+%{eS+KU-pXXAqKWSd*=Pz4#fxc zPv!D^^fKV8WCk2r#%@qd8{B%VA+1TR(XL&Ahu&?5`z4WoXL({HDXxb&A87z=|H6a6 z0JwzuRIuv?V`@Ibnl{n*NeRd@Et5?LoWfJ6%05-^e`Z#iY zGWg3HlllIjoZG*LZAHzhMRLa+NDp68gW^mXLfpa5_-(+@`MOdC^B7!uq1#H?bj*u0 zJ=Kj^8Dwq7ZNSKCCh@i8=>^8JP9LHhF%!~^3$>Nl?^Cqx+gS1!3}g?9#rg(OS_=S& zhz5sLk|F;mwv%4`JdfohVeN(gOi0iUpAV&G0^@8C)V{TS;1|y3gG9qZrLe5JX0xWd zCcKtG@A#}M#9#M`5C*Gcak~My1n)Wq&Mp<-FI?sYZveYxD8i-1G0JiVHZhze48K$uBSNJOG2(>~YjA|x1CkszBdf+84(lf& zOgXizr=~yY{AeywMN4jQ?cn%=iSrSeym9NFExvO0z zXz%miVQmHmso{A8in}n)X&@Fnj}iVhKK3^L7uT5R{+k5tXD z0Agah+v-2*di??}QK>S?%+DLY zl>8A3d=n@!+e>ttRP#9z0Z$%!=lYP4m zw!TCxaBfdyL$ASfV+^*H5HCTvf3|)gK`OQweam)C2hO4-YhU6I^TNgtCg>a&{qkaa z@oT#fzObL*vk1SuQ&E%@@qIB;QBp)H1L`}vLzgv@c6`CBB~cWD&)38O8*2WZtT4D^ za#qZdx+gU6V+1iHM72T#ZpYhqmd)*xogdKaLk8MIA9xRm=uhO)ebKs*561)A5r5n( zehUl)JyCv(HXp!-9E0pH6C(&8AM-k5CSU~t9MJyq=(!NLKRE5*Wgn7AZbyiWRzCGXYOihy;%;1&p+jbh(ma=|jZy z2_25#d=Srz@r-#q3PH>j&WCKolzcx=Rxdbr?Bt-uEqi@L6k9T0jTSQApcV5qbRSe_ z{J)nR;Bk}&5_dEQkz<9+1)FRMshAj4?2qu`4DIIBKb{1t_%X&7#S{T7krp!-8-r>m zLX-DVROqF-W;=fK5oN|SJRO@Usu4NUvLU@^Y~C|%iBr*JW%xQuSE>uj3yPJib_sl8 z^dCjVnEG^VPn;+9;O-_p{opC#0^VZ9v(6)!C+KrI5vzB)C4-&-D2LAxykfs5?sZHp z>=-7Db9`&GY#5*3aam=CUwukx2h7eF9?r|D+ai8DtfoQ^2o6*ZILBUVPm>?e*qR9% zp2EawHdn}ybOQ?kG)mIHWM5OIh6wu49o5;ik1d2YqpZ8;phG16v$`&|J~&`)8~+FJ zMYGo#-IB!r8jF7NJr|+vi-FlzyMPiF@}W6$Y{-Xu))%Jb?T_e()$w)k+lVj1cT703 zkbh7K11t|_`qs~G2IU1Nif!MeR?Llm%UfyU_Qh@cWjF_PzNqxI^Trf$80VqwED|6h%pfcs`0tiLDwc zs!s8QhPoKrzg!$KF$P#EWK&nGE_1%`M19U1Frx7}3&=cUeEa{z9e@Ul7|^aBkR~Dv zktcubpgVt%W zTCBEsRCNXlwK)(Bd`GHd(})M+VA~Ew16x$LzY_Gw)#w%h-|-LRzAMUd0w&3JD6&~Q zKF?+enZ@vif5)~jVMEz3*Z`{^w66u3fu5ewJ|Il9rJzaG(vtWat$iHjS5-5@b-m{C3Fl^*iwU`kh;)#F~GIr9bSTl~byU#|W{NN^}ujig|Om+*Auc6hZ zr!PJECP@{mU`|33BNJ6l^V96#HKvCMHX_k_K|4RJUq$9ed;&~LEEc@F>I+FYboNrVpcJF2M|kxL zw`iq!C6Pn~wnjc7m)>i`)W=^U1NeV*dBmSl0iFMZ8^ul(!b+C~WgBfwu3k4P5$yL- zuFaZ?$Xp#$wx+P8E&EE*CFtchew5@Eb(aW%5b9aT_go7Q?`80BjCn>{GH38qePiN? zz9z(T?zd-da*|X#!?V?5x} ztI`ujs8|`x8`c62uLb>coVi{_e3mQC%-W#Lopa|IXEmo!OXVNAle$mhz*PZ3cb z8M8mZNu5lG)qIl_>SN0);)wcQjGLqyY1!-CH^n+Wk$BY?G1s`3ETHOA18OBZt@lDa z*gUh(xm2E~y~nKMsPeuQq;(?qLB@*GYk!^;C1tsye#=3cBXiO>i>XGOJod?9f@u=1E;(f_SQ4>JU#`wxLv?hQfv@N}^1SdY zBF?C3z0oa2rO2`$De*%Xm1Q<_O1Og``E-u_#CZH5M$UIAMB#uN>NOn< zq`qXCMyKBT;!oCQ%1Omr1Q+&!RmC8?7Lon8eIiiqqq%yW>gP6OA`t@JLUQ;A_-)~y zy=BX~1NIomtC$W`VF4a?f*}&UUHsw)R4dwO(QFE{2Nma@%_(24=y2;;O9QYX5L@q3~1E zaKouC2bc7X-^rn!7o+g%?qo($@R@vuYspjVnd6+{?QCW~EZ{L`j@n-pL8a$b-^&JT z%d?BFxuGKb>67~6d_^4rk-(}_wZ^8^V16PhrSu$fY9D`R#Iz0ceKIb`?^((RCjOlPzNC&*{;w0&cm^O|tiouJuRGuLwK zO^sr5ssW*S>$q%%m2S^9Gncxo9@y(>;-hK3s{69kX`O>%e{*THR!T)1F;iKew4aY~ zR0VcL6t;ZTdJs@tQEE+HMh?#=`Sy0OTH9dy31M8f~Rhg6rBU}H5?o7 zGQWdT`DCx;+EIoYZH9SmwONJdTxh-bBsr9O$33DFPqkaxpAUDB7-)dJC2{APyV&Oc z)d?=W>8{~LD%0&@gRTK!^8f9_wWPP^Oy%!K>8f2DOk>&+ReS$^4mF%K*eMLwquUU zNljRYBkeh73EichDn9dOI~gG#DbUyC7=Ta#4S@5R%H@ML+jm@ANq1Jf2sh1(m_c=m zvX^n!TYh>j4AnHraIStFuT+7W?J>TjMaw)`GC+!~qO7rMqP(*3WQxUXkejT=R4L0v zCo1kY+xX;}KSp z@$>OI9ud^q<)r`^c^hb|!}Et5@tg-nD{;$>1&y?)G_*?VRVN|oDXCDaM<~2{YOV25 zu*YIClG@6wRRsWG+qxjL;GUo7+cXMA0di@dwR(SGQ^wM57T$dpzH1z_&ynj$Fsl1v z#q1U_s;5kUOfZY|QCNPiwqr7lJkcCYt#$hHN@3MwjZrWYB4ZV#XV2aZS&UX6Yg%QA zIXEbfq?6X_U0Oar!b|=|0wuFkT#&tp6lsS_$PJ3D7~cvh^khM+kNA#2>g_FY%1Qyk5hpgLvBop&_zth3MRB5M1rS8eU) z%n<9sYrFQKnEU#|2F*sdFZT&b0z6-jG_3lJnz}U~q14)ayyeQYx_MMEKHoM8`zl2G zc8(YGDUWYVKGcP3st>&J4vBtiX|SL+ z!TwNCX0Jr%$W0o3-c@^q)2rCD&+({K*!*IwS5B!bv1>B(1Q3DHHR8OZ1#(~+tkH=B zNhh=hXK`fT*^OO3IdN5Y%wH^u4ibdUkN|Lro%QPcqp_a&`NwolQC=i`6cf}Dbnt+?o zcWV2a(C22^#(T6kN$PkM=v$zfjY(qyq_%Pg@BZ8JdrATP+tc5569mA9@G*w)KDO^4 zHE+Xy$&5ts_5E|@Q~>E-ltj)C_7tZyD+JfzPnM~(DUUZY)kToilu4Roy*-z)A`&r} zuV@ViN$*HmLR*h`zyc&Av>g3SMiO%Lio8be$5Tg(VF@E_YeaHy%zM1#cWTGkeIWHE zBzuNzvq_8jo$fD>osen8-?o@KDWtz}ADlO(x*f=D)9 zEBsxtNwu%0k$32sNcY>A3h(IG@|IFnsnf4BrW~t(;Fi4Zds;kaI*2}p`M0&!Ohsk* z##;eIf_~8BwcsqeBB#1SB0x!uV1xmIj9=FR{TY%p@uZ;Y0GNT|9JTtTb(s~59DY>` zYwlk)Dt)=SvZdTu+umG$MpwOVC^1EP&qQfP_p-kB3U7JUiDUg4!0y?bh(zb9QC007OudDS zfs5DbHKxO73fL6YiF;s!fJ+V0Z~7!B$+4j0aKeiYjrg0eS1qSUlPRb+bJySEy^lxDNS*$O#*a zc7S?(g@i2a45_)~?D`t1+-p8WuQm@p!F5aJ0`Py}1ef=_#?Bv2$6hI)SW5;(BGZ#9 z0GTgzgdK2|HpJ&34X5e-O1#P+VoB2&o%}YUrv0K7`R%^7AquGLLKys*{E|NaMXeVd z@avwU#1#$`kmLj}tWcRbzNuWVg8(4?v4=QM9yJadAMvWx@#a_61sl9DN9SI)_?p$R zpY}ub`@acIQ)k&9lI^vUh#mU|00rnGK$lCKaKFMx9C_9DP#;PF{jd7bQKg-3WV$cq z#w4#f#GNZK{={OfnQ+d{T^&sWSm+`(&}0WRFVzcNOBg#f!N3Bv(^UUB)!8TBVyQzg zB@Qf|GDcIKah0!xUv29Yy*QWgA}mAQm;|R#I0S`{o7Q*s*adky7l>KJ5dJ_a?D*g) z|DW>K|0(ZXU3MH6qZatJx0&+I>#}F=lK8r#7%LV}8dBQ>9k~1-CD$Y(sV(GPOcBbO z#gqIDfZvP&RIzx z_lrQjm}rSVT0ZKHKvv|+RFMjbKqbIUgs?IgtAGn)lnj7fp#}TTMu@0@bir!h4Jk-r zvvga;{|a+o#0M3>vHV0dJ3+(f+3VfRar*i6GlHoUBqH@Y-VZ#v)O=w5r-6z`hi>Rz zF5w?TijNuk%|W}D0&1{cACbck(Suoxnfe0d zsFEL5Q9lfaNKE%9_)aber?m$_!mUP?uEf|c-b29)smP@#SfFMFReN)JV7 z^ef?it#vGxCHuxVcwsrc5jqL~{`u}d`F!RBp5&&!Y09goiiRfI$_z@b2**GkM zyENcUzbe96S@y}{k%dl0PW7FwlJ5TykWO1+9@VTblD!CB>Om+b zo1h?>ioKK}j?C(;aC-`LDsCr_vxH#CLU%;9Rko+FoVjdW$k?|%E=9w$P@NB?&5_BY z`ztYp=0=Ab(55cQ%l3(gC)wn;Uk_YRfyX1%*>x!&V%ms3lAV`&pRX_Y8>MnOzON== zelD_VyH5K3Se2NIlp~ANv}on!+~)J^Yorl2J@&3~DtsR?)#xc@AIFee7^Z8~RG&`# z()^0es43WXKW1s3qOCy!s6!Y%2VZRQ7D(_H1I^s|UtSH79H$A$&9b<1Kf({aS`e>| z;CGE7b6vCn+x>Dg$oy)xcLHG2YXL^sNG|iEVJiY^HO(`~D?EYWRj-eUm=qsk}Yh(lffMm;O8bl~LvqElB~isPQQ)FA(k*`G!N z0Caq^ggrW!h6WlP$L!3NH%c^qC2~cl>Z$yJA?w>fHZ2T+zi?+#v;v&ig2l;-6(S#z z*sv7q_w-0|5EbvY^vLDVgdEe};x#M8zq95~_5bJ`$id3||MYWM8B?S;QErri8yGPe zHcB6Dh4iM?f~ba98>McQ_5-|tbv}>F=i2jE*&Wug|F^Q6t-x0sH_RUw#^svapu7QD zveb5b4Un+)5z~TYakp8SN~#59Hq`>|=VwC(LyQ#pH;;m7;__sb9(YKYPS0+No z3erG6XUgtnuaP#u-Nlv}KmMgv3H3S4_5#g7ySc@SKHh zzKlJB`pFWAL}_*bS)(y@Xx~@PznT+&ZUmWZZv+{ENMem)tA#d)4L(neN$`;oi!t$o zkzmy+MJb+jG{VuGo1GU`RDFEDqrF`8=#K=t2Gu``l(m0;GoabS{&7e2N>W|2YY^u6ZYD&+bf>qnaOc?*#q5n`Y z#xA$ zmt_0qL%NMwnDxwxM=RfeZOlg%@Vrymi(&$lpiXuE$u*Hs70>~%|5%t@;n&qW!qCP? zM`(kMUXqS0z)8YA7f#igQS=}}-aHu&?HPmmN>5rZRVpFy!% z3C&~m^>#EB>#7H~x`&iuEpI74Y4&pAhcWLffYq)(?w9YmMj)%w2Xm zu%*;M?IeTF{4^h2a5kU;Wp8?duOkwHg|~vrP=syWT~^K z0dSp`7NF8jo3I4$V6HVHH0-yFtv5b;(Gqqr0sNa@ZA4JyR(SN?61&FiUl8kF>V!86{`F`?g(KQ5cWf13QY7|41bokxF){(b#tLhQ%t z3;t;acp6GuM$7;VWV&Ik1OliH2uJ*H{Z~0RFedALwDfnoepl20_YMviZ&*t=Eq-}l z=9WL63P9i+@B>Z+SU(Eh8`ey#ban**UP5BM@qrr|fXf#+{{LI<-mv~xh3n>U(11H; zM${AmIbr5eBAIa8sia^Sb07Yr%~_FG`2#MXyv$q(65y4({v%+tRZJ0N2dwn}!xS+E zh_t((0QW#1s;^8q7#j(lxOGt!^U2jZ)H~HAkoxt(&9B(sAxXf_V#L_-*#}qdaUC8| z8+?OM*8k*?<8Rb>4c7t1lo2TWW1GykiSO$fJVJ}m&~1uGVpLkzuVNTy*;A%%zNjnh z4108wlKN^uVwVck2B+lJLPSjGr)c`-D=LeGPVT;4l&N;!lAi=XuxR72#9+wC@mC%H zXp(=6*+sy&`u`JohLeB|;AdjuQw~r!^(hDR7N(PEg1UsOj(^n1jI2pkV0VB#iiuCm zRR_F@k6rhG5{HrMBh^1gWfw_)ygG^;zQEu?VRU~bMEJn%a>Kx_zD5dJF(8~%$N-O- z#o(<`uQhNqBOnqn>_%*3Bl1x0C2c$?`+qX3hJMk~I<-SOdO3Rk^PQle2i z+eM%?4@y-E)kB2ScLZfbG*k6An^hwsP3bL{yW)n|x7|KByG@FeuI`3wpHEnXxzl9R zosMXNw$RQM(Dm$A*4MXICwgAW>&Da{?w+8HZ{S@BAMLKvY?uy8V`jLm`G3I~7I@eV z?+sB9=8K&HwRKmh==tcI***BO@UDJ#MBAzw#FN*v^D$g%xtQt8ePcYMYoOu82@={k z3CUN<3BR(XxRuWuy{gx%R;*_6eF6Ek&ig_~^nUfQh>!i2B&R#+gNVG3?Y(dEgYG+% z6gjq3!!0r<`8dV$Kp%0gSA`-J{3AXrVZBuMnJ@0;-x7GtML&>s5N>?*q#O)C?QmSF z_DH|e6KzVG)1)NKiF||WTb&Ym9`@p)Xra37BAeAgZ>x25QDygpY^M>Xx6^QNsd!62 z^KiN0`au=}@g*D_+%q^Svp5-bqwYwl&v0-gv2bwwK&h*_G04P8&&0*V#>tVz(aGJ) z#F53;+Q!7uz{!dIKXOclwpPYWt|o@2wl+@8uC_n`LQRAiQ=wOPv$fVcwsW=Ck12KE z9QgB`P35kASdec~X1Qo}T$Im^8<3~jKQ=UkBX3uf=|&*GZT4eLy$AKpz`?bj!NDaz zUw)9(P4V9f`F5oI>A~OMokk@oHFP%`Lj@Vmul~;NqSzt*Fv1#x#AiER#3PT)DyTCF z55K7a`w1L2zepn)9Es@n_KGyV=MA=-a7~Z6Whd$1u2dOTDH;X@9=M zC}}YC`5yYwvQVmGboc)NK0v|0O0`jKTC3S=rBd@Za-t+MQvxKDND!$|m5q0&?|bia z&aUUor1#l3KlJ^;;BDXFPGY>zQ`*N-D?4gI0Ih_eW`t0~KcQEwqLjqZT)XAJx{EM} zO&rakq9ze24H>8;B{idz8dyrNzzDb|6~xj~XQ{+BUy+VYJSQfhRT9vSm8liy^At0s z?v1IfD}>NqBO9qzub`HHk^i0?^^tPb9Mnw4Za`IkDyoOwx3A0=nveA*PL zXYhDTqB5rS>T9T@6ZPRS3;Ea|nI`KggQT2s6V7O=d-cpAo3aT`nPlfoyT~cyu$-HZ z*i0v&#!G6LOgaos3}$h9!y2->6wiD2lS$Ki=t)gN^*V(blSG|iqv%5ftXZqHU#oR0 z-D#%ilU!-mnheIT$!Ja>G{<6U6^LSYX<3S<6@m- z^lan3xt;5@&vnB^>yv8j@wQIA4}i@p;O{zNe3NpXA^PZpx(CS4W5uU2|8?s`T;u#l z7q5DK{L_Hk!R+9B(D0IYo@j>fQUdW3esNR4C~c6ysU*)aRhJ3kC|!<$Ipoeg3*S9# z54sqoAJY_8TyH3{U;vMF0naFvr(PaW5+RmoU6(*a%t=$I!@Ostf@kJGFyvtlSkfUe z&Lhq%L2Uz`nF1wUQYkVi;n_{;Et%rA?}=Kc!^KM`N4M%x zcpUkTYkWp{A5J(CmKeqqdR=;m7rQ)U(|m+mJnz$RU*mKvk1|jFalQKO06+82Hc3-q z#t?JZ|8!R{`Z`L{h}WD;(9+{9F-JflsX0(jp(0=2BB)7 z-$RF8csAkdNG*eQmZR(2m!#hQC4-8)NavV`5*2ki^n(VCp}M$7ZAECm2-Bt;b zN-EOZ$HjS-)%f?UelIxUA4`*@)7q}f@<8Xm-$shPq?GE$wF=&7BtVu0f|nG6Im^Yc zixA<45&V}G39cVP#8VU|jPdu5P|L>;K`F+~(b}utVG^lI1^*p0##|EsP?;-OA6PpB zWUzny4EBs1%ne??p@xJLzN;}kFvGYwpoT^ZE{6qt0u1SNaIvZkHHPal4M_$;!{Ear zVUw{=0FI0bK0w<#Qs@RLpWh%NAOO__OlgmtSk-BJ6misiU5X=X;Z-?cxv+(G`mz++ zf9OhCEdy*XSxN1F9dex8of+ccj^9NxTai7BG>sF?^Y8z}k*iq}PK*Lg&qK0eK$D0N zUe?KU+3+mIC>q1d2!_xVb<4y&3VLU7x5<7?-?~eOD3O(k&!P=>ihtjfj%n*B zF#*z8FKz99CJrZ@#KNyZ!;o{2&wFO0aL3xbz;%2`Lq02H%VYrHAY?uPuYuNg&oCM| zJIn})yKG6?(!xx<;3$j;WNHYdBV-fSpSHIS^;NLTmiI&=ZCkv(3;N=PE+Ga&Qrq1l z+m)`8y?Cy}iHALy`59vZkprQ_#}hIM0V>;Ys5e+e?Np{S;Z)f;qVA*so!c zGQePQl}4VZuDWMt1d)a7ukC0zMCJPGd0<84B4q2V`&vXfwxQfMxU`??s_j;+ciR$v z5ebhWW0fn0Dwp143t2$x_YzU=g0(9=g)AZh)!Psc38*`iW79u??X7d2C5XKQ4_@0MZiU=E@Ud_l;<3Ox+kA> zETnHVwqFHpTFF+tTXyS!GXUkX@W;-;n?jJ1>gPyt?Ukfww|0>&rwY1)^IXRBWTn;E zXMuT4B244g7X8DzYMC+9BiO}Zhn!j55C)Wt4h0@4Ouuq|=6l41{PbB~wwD(4b<|%o z!LOFeDG=>ey*I2dRVQX7atD)VF5)S!hB>x%(`yhFzyfb#u(c4IpRkgdNw2C?-gkT@ zINkYft5Yi|)pExSk5T?B`MXaJ_ECLIllnO%g~bZ8q1FSne<4a!E6%E9UiZUlY1gWj zK7sXwB3nJbK`PWEvC{(mlaMm22=hg-x_ecNJ=6}ounf!{Pk)T6knqbQTi9_F zWZRyyQDsskdsqr;B+Xu#I=VtURr;T!f z*6I*)zu@#&>3pgxhWANam3_MbLv?|ZoNnqZ)69t!E`8NjTbqRh{U{|hBkXzWRm=3s z9iZBjoeQRAhTtD=Yr{O>BA1SoNY$dIj+DGMdn3KY($w!?-@(lUq|+&FNvT)~jqUKc z)H`>zxUeS&3z(CgP&FgmsT3CMHv7M_gOk%xOEUH(;9Qh>SOr@P_;1`^awr~2ew8{rPdX>{QM8>%^ zg6>>YBaw-R%}ounDI+drC|c9K<{JVhsUl;1g~0+F!oO~XxFXV47FWfm2IUnvN*q{A z7{Irh_%$G$QYq0^-84XyEsjffR7Zl)s`e~fThorf8fN4qD*W&`SZmr5=;!!Ry=Q^Up3vprri(=w*$mrfK%5Gqro(gq&_B1$WIu*7m#}d z(GMgnlLuz_dMCUFegGH$EQ>)uKJwkeZ79oxl1k) zL=1WV`zTi=*Hf&gzsIXuz4o|NT&jlh zF>;zps}$zOEx>}5NX-}5=s>o?|5OpZ((UX`#MW-#)MKqQO|=eI>g>_Bgjj4GI)Et% z7=X_FM{GyfBr?tONoYipI~NH71%A?RcU!htt zyl4MIby<%e8&3R=lND@r4V`eiE<6lMqFadjHrtWg`c)UY?%!qKcdl8C&31}_Y=rkN zpg`9TgWaBF%a0WbFb{}c*Uh;Zt1DszEe4LA;njZbvGNGmM5g%F!G{?Zccrv$$9|Z- zfA;rgRw|d1EPY^6=}EOmAgkGEWi`g;&bHj5`OzmPeb{DJ=QlMPu}?qd16n^wZ~OK= zf`Cr}ICL=-Y&re`Bf=>Um-;Cz+!!!jlhTOM(V#HL6|&oMRztM7HL)Iv7RU%lc?>c# z@iW>5b4vvggj}-+wf)cI>4e*42{Te%FI+$sS|oo}WzwN_?e9$6_}CR&g*w1|y2B$m z4@mbtbV}xzZ=2EewR4EnlljA0><3r9I5q=O1^J7W4LBL-zcAWyYM7-%-kwXtPdo<( zIC0Sj>Trt~97Y9oa5f}TkaN;14NzCqQvYR(qnt8- zm5zq}H%Q4%yK*PQry);{l`_94uC+4rXezM2{*yTp#khGxL!?7OcHr;$VE;|uMca_<|C2J;M^OPz@C$zZmzZI|1Qg=7nkD{Y`h}03M3!1YO}U%*@Tmu zQSBXBsP~DdowiV{Lx0#fv5I!I9nxn}C804QL6Vcs9G7blavC;|(3&0wF zMT39uigo3#8R-SSY(8IaGtB69_a!H;TX%g2C8Q86Jyij0kTuYS9$17aWz z1D~S4p1m!&OVjL3M5)K1N%G$SNuNXmk)HkpTY}z^+7a53v1U6ot$Lov%fq?sdcJ>W zKyEx|Lq#!;?{qY(8j@7H=4ywd5+2HbYfv@M4tn(cp|uwhj@H=ug##Sx1EpI~$a+wf z6(*W>YBS*PP1W~!Lf5E0-mkuw$C3@Te!hW5r| zNRq&4fyEPxl@rme9PHm`T4BPp?74TBau89nh!mbQ;MO5{OA7QAsSw%b*^GxT7@<`p zER0^HLQ~i*!lx{~s6}_gVyF*gMRfKL6dTS{R@I8i1h{V{SX@dxeyZfkFso2Fd{|aa zGTAYSxJh68=k#2^a3T0+fIc1{Eh`5*0wUwywvI5D4+kj!-NpBIyl>BHAi>)&_#g_Q zvUy%XL_P}c5Lfyq+=8n@tCZ!+jmPfT);rxQ1MRYUWlwFQKFqHLg%xh^4L22}l5_m$-2rdESCnv?(+st2*&d|zhQF&i9-vn%p0Rsm2ENbQDI9O}a1C}FFzt1`)gY|r*n~XXHGBn~9Cg<8 zTm-vOVC-MU&{Xx_-|ZvlMqgTZ+$lE5e33NGvKGl+GR^WC#BbolwcX~g+d8VPRT1-@yd5!NtwAdJl;-ikFuDjhYfDkx0 z7LDyBpJ;YEt7fW#;3p|xrEipeoZoLmXADB*9D?y7JqEFOgZgpk>h$LKByE9y_=UB) z`iYZct%R9O0{iZzkNcC#3ydf2=h+I!*IAu_aO?h#jc_3)M!uBDYepawZM!WmRFG#P z--YiSrVH>j%pP9bdfO4xOTC8da|iYazTuM!Bkm{k$b}Y6U6!=%vG^{N#n5evOgGho z4ecLgyWuzZ>Jwhaj64}MiENlhrVHz7_1$6X1>wI$5I>8+jaz8g(rg?UP5ej8ANy@} zwy)j1P@h*+Ci4^zl_W7F0Ut|J;%94xM~8j^RVWJS%CMyGaW6ByYu74$7Fy^@yXJuT zyE?janOvw_KbTw)RiO=hkdtPMH)zc@PQzkZ*<(NOd7D6^lNy$H%C>nxNH-5>^Z0<* z|G;+09_ZSDi?l^p=41g5H(QAqh>BQ>^{b5(!JA=+zny|ow&KqpC55S2GHjesS0QF@ zFV8;%)o!d? zTy|MCDLA$1ni#4Iu61X-wBwc9SM^-)^LFC*__+!`KsJH2SzkP{*7Be^%mq<|UfTvg z`#HRJUx`G(yWG&7&nUw&c1o1p?p$!ahd-FQOm26Ad8oTgI_+RivENg}67F;P)V*S$t$yT>jP6p=CVYO-|WCJoy%#CrBFL!W6( zV!m)wbatmC+>MxdMk2Y6A%`#O_GW<`Ry9uIpP7JHc(gf}ZZ92%>vV8+HrZPIu8n>} z_LcZT+mD35_?g&INBkvVKh_pI?bc3FQ73$!5S=QjC+m3d7K|UwK81HmT*aK(3;}(B zud5e1+Ls?3>+t;aiiR5a3C%V#nzVO4^Vi_;)CK=nbS(-$IiIY@+wmrF@Tw#)_3(&B zU*V+d9OS9;rU*AncLgm=ufg4FG}Wz~1;Mc2Ei~Qp< zVLBK|Z!G^eB?iA^;Moed2i)2DW-Vdd#$$9V>-S3WDQh@9-qQ)2E;D=m$@w(ri_!ED zuFqYhHo~^wd;g{jXCOklV15?CSg?W~gTp*MhA=2*HkCz1iuKg}Sjg*PK!&~dC+uoaWx8?(1(k~>4GhlX(!{EZm(%y)x<2?fN~906$4U0_$lIh{LebwMrHFro zBXx-Rx?4XB5rXs6)ET!{>Vwn4nW`-e&5%72R0Kvf6O#f21?y>sp* zWlAb-tZ+F9dwq?)V7JLTYu9A=K8b0@0&dpg6f%n|+fAAw{g^xDV(_=@EA;=tpS5py ztKsqgT={sDuCHmS z>;LBnC(tLQ%x~Efd`r_J1W!-R!AH=B;{&K4nD6svcsSA1XUn~C`DaI+bC&BTVkA%$ znpldY{(63$$SJ)|U;t$ceG2EpC=w!)kAfV*e>4co4fEM>|GVzCc^m(>MS^37vOL`> zI2*v)4IYb-+g7S7J*~^b=I21}`NwQJXz_l#m90Ik0Le z{(^<<15!C~|5R|#P6I-IC^P4DfvLPuta-B=vu+qVo8^!iT6>^wy1Rv4R!R%|e5F1U z<3n8RIzOlDrz`AM(mtGb36uEBURL^b?m8hg#Iy3>T$H=Z6YEoL3W99A32b|iz%}`~ zAoD{2Jx87}^hOg#|0>jKU!{MbW8++@IJ^}@Xo-2WOzmzch%6F6@He^{%*We z2*}1|{=T(11hIRxo#Ax4uG#3{=+Q1Hi>X6lJBz7yP?nSK_bqOVrTWiEWVc(%TWjJq zj9q_xjy>{^qCq4Ri?D#S@=5}v2(h!2AzpFgt$1Mhe@+lqIC9e&i(tPHJkUq@=lSICVVWq<>67>_zI;MW z_dZiOd>P~Lx%IWZ;O;py;ZGk7wPrr)85RqLh(sn|*)y1ji#Z>=A_@u0KF$Hk~OI4#`K_wGidDK=55LP{~gHG9JN=J!byh zfcy9JCImU!uXI89fFi|f)7A`pTCV(!U@?i{i*eZCh|`@oC-z3aS!W(>Y|T{0@fYzN zq*9b3PgNkFQuw2!mAS?3HF#x1I{tQ4kiQXSdJM5XuC%ltM9vvP*T7IgWjs8WsB5JP z$8pv43)IhMCX`aa{+kZ>9k@Pu%>bV}dA1zV?GxMR^KEH}hxcYZMy1XB!R$t@+?iMv z;|QvY`O#U(hcdwB1x9{R{-T4&l1nBShzp|m2{aNIf<-$oI$>lh5 zP0bo6zZYx5x>+fbQKt(xjj6{vxJ&zhC$S>he3U*Gsf{`SVSc^<_tk`OJ8DGRQt7$1-9PVl|srzQ)90Vag( zt0qJ!PjD9gJcVlZ1aUf{P*j!FveMq} z_GtU8FF2(B!YqY>h2##fEiz1X=mvvf6LXK`218j1)FaS%Ey zc;#69!SMCCZN1*-aPtkW{p>6yv%U7}tM}e+v+={VSpCwLBzV@<70#xz-bqmXL{<^N zF5jZ}fxoztxK}+M%w({a9#JblKYI^32eUKZVE8>(H*+)-M|zjqICzHw_N{!c@^9;9 zjmpzjgWpr1hsHD+ppzQIwgi-DIU-GskuXzv5GA~8nU}p*Sh_?2udD=&rou|7qq_1c zCP6YujR*w}R^9l_2k!m`^@!kc^{xA;&oN)0M@}&;eJV@7%~RK~ICHgo!BTes%2 z-PZXOZ7*lD$8{Rl2%fLU?>X+Eyp?v!{xWBTNAOt-S+0n{A2P zfIphYe;aEs&Ipzc;>G9mq4$$+E#~@meVJhQ<bppQZEu#lUa;)!K7?KSh^u z<6QgCd-JoP{H_C(UG|mh)gz3(jpYa_eLtxrlc+MMS033HWi>TEu|u?_Mdf9~u0}c! z_e%S&4C=>tP@F-{@!!O@tuFIZS=MZ)*6((^JU#xZJV^=?mPF-o=s`whc=lBd`M@hW zkR^2UL20$uJ(l=%RT*~FM6s>P^&)i~xpMMo!J&_z>pG`s(Y2Gw@q5mTBKht!xUE`} z1Q+f~q!T}xc|^K8KmD>QbupWY9-UpfyRWym$tip9r))!${q87Vi~VlY4_$Y-R_GI zfF6aM#EC>;?0YwAY3_)E&ep zy)h*vLHuClj>j$2{y_*T7(~*lhJS#uPVbA7T=A!1nq%H4vL-beon3F|gKpi$miwMH z#UXg}425epPKeioW!v*we-|i(YuTfsuz5`Z{q)QSH~LOvxmvK8-9GwD*J)blpIDr7 zb=$2q<>Unb`8DU)ekYsX1J1*+QhOJ;Wg1RR?{yYM--Zr(^2N-ZCx%N4+?Y2GoT(hpjJ=GSwKD**IcxKL|-K z&`cy0nT&phN12}QNwE9WG(LsyzR@YfCQK+yt5!}I@z%?8M60?EmwU!LF&U_49Yd;s zD1sLq%+U>`;^o7}5H^x4*F%puBwO-0KeDJ#by{7sU{DvSic!cwF{aFs5o_EU)j=?7 z-z*+JLOoDk$wPCR%EW7NyMWoC$o-(Zj4lWI2^kXQdldI)eU8cw7drn5T2s=Ie2B#Y z&H=B|+$e`Fx_4V!nb%!&P8Px~_6K!Rjh8R{@8!}Ibu{{3@aa*g&=bTXhV5FEEo^YkdSY-_Y$Al6iHmL;cx}}i|&B=_VGcL`0^1W{~UQo7YSj^8Ljak zS<}hxvJppL1rSDsVMK)qR3PmsOGPo@Luq9*Ki$Q!+2vbmg-C1>P>t!`mg{pn%&U*H zrXU*R2F5JBraNa?O&z_y<1>Ph8KhGf5ZnIJudWMiFolQxz>TLD`@u%pKz0u}XS}`(%rxl%u5Et|2v(;)vq`4#Fx*ABr)7B438{LH#tW=>v?GfqNQY_`;mioF%4NbL5 z(;C%w3$d59y)XU}Kp*JWom&B9bC*v7GADl|NW~y);=wE~M}-@?UTKY05YNMDn*)h) zFXyo5Tcc)`zO`^Bqet9yJ$^mzvqP9S_q>tAVO9F|m|$=JKeyTY^;W&{GFJ zP)$vq7Fu0rVn&l!(^RWte6h~V0qb6XDP2IP(S5}hpS7>1EqbwtrAx1VJ z%#_;(6rku#qCKiX&w6`-{e(@xKZHY-ITXW!(d4=Qu*cd~b6nM%cGvW>S z;o=f-+TS*;vky1`n3*LYcqveaWJDGBH8TCo_%?O@Nd%2=n>z2S^|l`_+GLzgF$FP0sRtDsX9&p6>s7)Y<{ zk4}?JnEs$b5yfFznK0il=OOk&-v1|)*q)JKk35^OZtL|MpDbf7-f_QPh zznB{_dlSPv2oCz_LybD~`9fg>rhol2?rUznhF9^IKyD9|6}COm{9p^GX4(v0t&_)Y zFUlcsZ#kW}8KdhGPgCDS8;WbHJzx{94zD0$#sxN8uXX@DknIn zlRJ@0MLbYz7UMpKW@0B$QSKLWx#9y6n&_?RvwBLQYLZ3c+^1o7p;0mp`Ztt$jX`p3 z_lV3%0vVWVPmYE*)@xfwqOq}U)yhWcuReTVp-Ix!7~DW#6I0a?ukcPXnkd%`Y9={D?$nR-g!*5DIbEj~P-?tBL@iA+xG{AYJZqrHJnCjJlk0^x$zK{k6M zJWmi-9}U$lvi*~K9@;3Swc2{o{IT+IvjqPgt0cKp=_xW@$!5#tY_{?dRGr*8it>Mt zFOC@Zh!ARDMurnly5SzRO1|!W&YteS6JU*E#3E=zg+c& zSQl_P3*grsuxmfoQTfH!$sFYGKol7iqP&NuKratqu(p>8==of{n%DVxm>UiXDVZie zaGYc!XU9cmP)*C~* zrZneLoxcZsJSF(yGrF^`L+kLq%X0=$*Gmr=w&+cA28oHob6RTc#S`O)*Fc?l$yjN8 ztXv)&^P)2QkpnZyBvj_3@cI6!N^NSYTAL*FK7lplet2(*ND&3|to>3rbdnbWbRdzS zXnX9W3$M>)jWG|O|A4!=g<97THny;~ zfE=Uc{8uha*L5=pOu1Z0Llqgp)X!AHh&lUXJb(eenK2q9J zizxY|INnS~+ncLbT6%nQrXCqsh8;&Cbuz<>`1T&VmCTR_%Sdc~_e z*K@-3Q)ZRkn$OZ&`Ig(VT+j);KKJI?-Oz!3xm+xz8|7o4tTG-FMmhfS`0m~R6Y(zv z_g@vf4E=-tTr+#hE?5MC;6<+wm&rl@+SrEO%oWn`*l|HGpcD8DCT8CJ(IDLXZeFt3 zStXFJ$C`5*80q{1?tTV7$4I-)V)TO5!E4KN3_O$=+LU8h3T1JQ;hJcZo?AyZWIh$4 z$*+9+Z%Kb71ztPgp?*nnqIrwhsgLx|=RZX)b)Vi_><94!r%sIx4pQvXjLS=X(MWPRe< z{kxy}SGN8oub&zE%n;)Pf7VnS*gokqi5-mNsfHM41^;*g+`wmF1EDCDTD-ki>lI9x6=Rgcls4L3k$*Hfqv zbmW=H>MJ*UeE~TkNl7{2^=`UyMlPg$g3nHc>YH0LGp)__5aoa$Xhk&6%3_;%1&)*M zKX)NQwjn~#B593oMir;xKa{FqSFM!f{w~!Z{|LEh=Ps(JaSmb_{ABr@?L>$R*l~5et5?KiGx;m%nEbh* z5OKWnohCXhcPM#IEz9Au%D#^cg;-9Kns?8V-;b1i9{${C(CNA0iH?U#F_w*$7Q!4K z4)a{NbIq6Za~FA0G|sE12XZC&#Jbonw);-4Yc*&Ff1i_U+p+?lw|JI)DXQ?XbSr$) zqWBgMx4-S6?5yXYhx1w`$-;yg+~ zL>z%M%o9na(#%QvN_YDx@p%=NiD^S7uE#Q=Xw|&A-xBBCG2NU&w;R(*N?tS5;hYuu z3rM$3?}>$5!0~u3-|LB8fo5v~(Nx>ZXcsF$ zbkFwaeiS7jM_Sd@Ysd4<5=WM3sbG)x$M~8PGxfZ=w-ouMqLD`$ACNhmNy;{|jlOKs zo5|cjMrj3!d-ELAj%CvJ=1Hezk_LHz^E!BqcIxXGMr%~gnAd2KW@{ADl$y(FUhUDG zQ4udQ`BtfaeRR6hJ-SD9y3%N)pAH$348G?N^>N*W?#Vb!_eA;&#;!{=TOUOs zx*z4y9CBJ~tfCCg0sG8&d`I;;jG^%*Bj)i9(rhgunnZ3n&8t0{GYvGhNGzY|ADd2h zx<~hjPM0WW&3h90L6?v&Xa@%RO*q_dBI09@X3K_qu$rQn(%{yz*}6L}1$8$n_*K>4 z2@%pudIRtChZsjReY?UQX{MdZZT^to;eZdf2jI74L`Xj5QNY^Fh!nRtgGr%Mb*Xo) zRg)jWZ+RgZbXwxlNT&0bibvNO9M}X7lgFWd8SSq}CHz5jK66?xp)?goFYEpKQgR|6 z3>GGm>n_|kFGdwH5LLh?Av2P+B}X#Cwgua|?R%mzUrdR{XhqTQ>s~xXQshIBFBM|F z*$YuZgg0^$)o_0?ohFph5Jue?8j?e01V!PMPqH*ilyJY^@M#zVp+~66hR>Etx+c?5 zER9?Bx?$N;!(P*j`9N`E!wQsq{KCsG-;>A=<<$ALk)#5|NK61qGBUq5kv$v;9L<*# z!Uv8X{(zV$mI~#FYpNKEvlc4pIpaxD2rQzw${i~f!TU;)QxUl4&@$rs^kJghmmT0Z zF%d%GCynHT#ejIqt=A`4^|D6ns`R>fT1F^twZ`?#fX&uBeCxf6^{Ca$!)hXw^07A^ z*ned#9kZpgYR2xoQdU*@1N1A!bh_BNq?Ae*DWC5@;u0;zHeYsRVJfN7AdyMrTQP|a z#dgJ#4lN$n9Ld-&v_|6M7`YnGV->NL80kX=v1jd`(X3S1JUU9Og)W$f2o;neBcsmr zsw({L?uwX-0Q9)NWgGylR0v=c5VCa~*W! z-nDvno%ahIh;7L(uxcr+t{Y1oQL@R|OXdRERzypOilZ?_d3tu3h9N)PM1Cj73%tuN zrp5{fvi_0s&P&C3mSv-Yi;N_*F52U^Is&P7c7Ki;E$8N{VerRnknvdU37!iuE~`C; z_jZD~1k3?c6V`WL=Om0i>3);?go0hMW)!((VybZobjy@z3!21qD;jC0M5CwoHFB1` z59fOOPlFhdaa#!1&5Fjc`(%&520900AUNn<@J7g@lGb98E|oqf1}3h(@%kICjKqqL z8dg{gpuccl{`W|4ZXO&xZI~{Y+g9&64)}IKT$_V6ZjBd z$-g#0ZB|U-R18PEn`sxw@oHnuI=Q|!zka>j>jAE?Bx%_KTpE|t?bI@v*p{c>ckJEo zC%N{tCw%#AX?-hFFZm?S4V>P%q@=tS4;SI-5bKO7k@%5L5q#yYoAwh!L=2AqtGM1N z1>>BB{yqUdT}@ZH$-?X`=UiyFogBeNoI^$)%IJt~pU)#2s3=BF;i;t-JH430sJThi zaOEqwX5nV&kng^EVd3Uo@cE{Nu|sR1yL4!D?9d#1KKuzL?k$F;ARUmR@)ZxN@j24P zN)Hu^mF%+8s?}*!Hhg$(I=%KVdd}=(gKI~na6)-eQEo`oJx3^y$Mtnh)9ZN6eAw21 z0?N+MkEhqH;hf`B)#@M*bS4<3mv6>_rA($EtmrigFm$xODH~?9vz2hTGMg#2y$%P% zvw&8Dk!&_9DL%mR3~)KT!*9-z9ii&#OnP-CBzYaI&xZgQSUMM1a|{ct@U543dL^{S z>|loc1bGjPCCBX?HpiDmEIX&es}xtfG}*O%_v!i&$PB`0t;I{B!5Oq)aU6dg|^qcT^i` zFUQ+Rzb`;LaBa7ZRl{HY64VW$#qW?`CqED4#0oJ=tTT@=nsGQZCODP-jM>=Nx>y3uRUlZ_{3Q_Am`XA2yQ7Ba}Uu&sO<=D4Ms;~ zV@)kqHdE`>U`NzsKmzZlyr}0Y^TZQb8MP#JZk7V8@mROvu|6D6yFLQkfv7)N_OzRx zO2Ds(9`bHiy7NbUrAK(Y5jfu4i2&5FedFcac)V`65L6VwLR$vMi(90+9a0UWb82w7 zEf;E;dVe(_b#6wTV$t*$znF<^z{A{zhD;XxQPBfF!cWE0u6syNK=B7Ep60N(+;R4? z7N51eM(!g&LaZh>o25Z2X>DTaAEwBusm)WjPCW%*zC2}}nyL$aGzCvG?1!Qv)LAbj zbnE*NehThO+IKZhpZ0wDW#7a3M?iwX3QF;Hy z%^MeT)k>-q3?|;({%>i#9F0v+PfZsZPv*IR?g!C}uYphEp3yv8aHJ%-EISTiWWiSf0<$e|6?s6Xg;4=G7y&!H>! zC&bl^f0mJBqqUGcKhLES3$IVtqNNxE+Af-P0N@HrrP1v>e`B}C6imXJRC6})|(qc&sH`KN0pIHeBNA) zmx`)dDhc!R{JM3&Qij(T^6Q5c_?$1m=bNgDWVM=1R68Gp!-Id}*!aa)sqNsm(2h?M z>xfD7*g~_KV=S+Yjn%_bgz)hU$kc^)n5K=I!73W>zDdmd7rsS*oqqcKrGsK~~c*U@|n+=&XkI{)4)M}$1FEPjF9NRAR3Q75MQ5k|wQ$;t9qvDhfH zvYem^!mc$=Bm|BtpP=ck!L1IO+#YhzipEyAwJ8K^2LHD7b?zEm7_DtZCReOTA-IXg zv{mvB-Qu=t=>0-VcDY@WHe#VgV- z!8@^P?=bu%@_Dz%CDUrrJ<|y9^(#3k!f#gdF5NEBi~k9Jhhy8u0QMx@JWRQ471ONM zMHxcN7>73oG9i*s6kFM>R-?bORc`7hX5Dhz391DWTeko^K*YZa+qdtbyy3JEOeSIy zYG7sIs^N<5)Lb!dyzc~E}jMdN**VQ19%=W zi8x`gxKjcvoOBbVv!{DF5XR=k=ckApOX(uaIHQlL!Kz0#Y=}A?iONLcA(~|zQBDk4 zY>ABT^&Nz~iD+Nl zx`kl<9yStW@lHdh(iXGTikYlI%=`uUZXIK%^U~I>;L;K*6K7zdo({H4&bxFsFW)wxs}cakM_<6e?;7XY4sBU6RqA8Mj>pp z2$AhaHW7qJST^X4-cPW><6%F2%tIx+ZE(26S`WfZ*jFM9!2|&XVLGyn)w*(XoLmc% z_Rjxw)8u#lfuy})?%Zp^dU&u^&T9XxTjf43X1t%aTh0A)$fmzaJp}D$j;In7{W%*U z8Z4E39}k0YN~oPAguIV#8-;kNJn{5CY%u$W{TA$_WyOlUk&Bd>8&)WBzWjr$lzpJB z7dm&23>NgIlN*+s!*yy(uX}#oROScuT!i=(83J=}6=U*p9Ex0mdmSG7RIUrhkn3IR z>EH8Oq!+~t=U(l<7D@2ndhjFie!>qeb^p~^r~&jW2Qs?NCQ3Cx-Ds$tAGi*DANS;F z{naV1p{QP+0+t=gS_VF`fqkB2jI$($T=2$%niBZV|I-iHl>>KphxGd*Xb(J)z7HyS zea#?mh*u$R1~I|dWh_wlBOEaElm$HJU@q93Ba6!5(Hx0?!*lFAA9Lw=Y=e`rT{kfF z^#fyvOx5*YZt>q?obQ9aMhHeWeOle&W?2h#2n@It-8}{-rDq$E7&9~mh^=1D&CdSK zQW*ag`~i6PjCTh9{aPaGh$NE{M>O$_{)v8Wt7CJY?qPF3g6jwTfkb2_obO9}INy&D zv$(E-7UJQhnixRT7GEJxkPkpP?XO#69Y)=f5kLdOB?R|bBG8(6z{^AM+3D^uP7CD? zGA_|eHZ7C~zdH9#yv{zTXD`Dz9TR501#5h*keFV(w(Q|m35LI(@+0GH;1N$3cLAkK z3~=6RyDvA_tL?%W;+4W*!CYy8vP7mZc%u@HDw4alaMAGPH%Kv=l-i{=k#{11|2ywQ zkJtNZvGTA)$}uU}*fDnX$v_DG7lr{_!<^SIS2wrh^`n8L=p>a`UG{sqa3sunSy>9k zW293|1_I@D@a;!s_*q!5k%ImWNJF1M>8rc@3kw(WK|O%;ohENZ?elLyTGDbfozsxH zS7t{we9pI&P!#wByTpkB{-Z?B&54CFqd^Z8}oM7J!qd6+na zW1A3Xs(ZxOy0mw#N4nSIW1;2uT&kh$#z}m5=~@l=O$F18>i1hbj%lD7H^)+76pvk} zIkWgMz8|V0Gmrf={B}PcmrnOcmyQk#X1d=XOd8WYw=RAX-;)-X#-+z(@9V{64@3Xv zAzVE+NONzG=1jMyQ!Vz@Y7Sm&D{&RRmR4B0mR|RHYp?F}Vd5hEJ18+}kmlYV&6#d( zsGL@o*N`q<3-KLYOGz2m>h_(1UoXSu;VF6mm#3t6@PSi?1p>qlQU;HauM&L!si~DB zZuO!QS>x37Ei{ai@(K;(dM!7+$LGjr2Wz=qRxwQ6%IJ6L-sitr%T3DXE#?M9i;ROW zlb=0L4A!%#UF-RQL^h}XYa*LT{wo=eN9_?+jo71ceNL<4oIX!J4}GvczIj>VR!5g_ zES?X#CMqj}tV3oRTDITjHb@MYP{deJaC>-35tT$DxRI3Q0Hbk1%@Pdpd?;wqg6UW= zqTla9c)va5_fQXK|G9a$SKj2^{3c(k7vMiquBB7;dMaJhbA#`M*SLiW5)9PYeWUgV zh+FO5GjcYroi7Lfo3S;lT9M^)oMqLr%t;al|B>=sD^!FZ#fu^IyfMsivdr-zH178= zir~=V|AKa~kLNB{#|v0)4gY1Z7Tb0mJVzF{}Dy~H+;OFeZ8t@ zU!RA1{-aQb$5S%5+zwCm=$?ai{i9|(jPMf|YZyN9J*4i=nu;CylXj1_)n*wg}@JQa8hSGz`0TF`h@G zxMbIKnwxqwFA`T{o>c0^F|%FM>F(&!oguEobj8Y8eL3CH9^DJXwfLU(V!sb_3g5G7 z+;a`SRyZ0=E%#xr>iICw6KgS@91r-G)7{jgdlA}RMCa#y@^ZSPJ-Qc&b$D#NZ_vM* z>d`z$OktW{?+M1WsgN7UJE2$K7t{KK!Kmnc#O1R2ea8vE^O#KsNXZ6Le8J%BC zfQc(fK*~>^jVgRdeG5 z>xAfz_UK+9-i7BmQa8&6qPe3-bB4G9U#s3)HL{d9A_=+kZ3ByOj%f7NMlPW-P7?k} zGah4Yvh)WdGA_?h{$3c3oqxswoRRQ@0i5`jQ5!oy$FbE1SQJ~O?SY)wm6?xVK8+ZB zI*j?$7Y9I{@lWvK$5>|!pat-;4(4zc!HfmD zlm$VUkcpYfzx_>c^4s7A+3odu_U-eae_^-WQD1olyf8B}W5ff{ zH$U3*&0ko249f&cs@F=Wvm~qGZsf4jAw9`IW|u0Wg;jlIYpx0`8p{Xwt}WR&Ch&!UWPGPL zCh-1&to+sJ$cHkYfb6)`t~yqxJPqj0Xc2EADKs$Q)7JdBC4jjm;sRJ#ya??Hx?eIKFPnODG2gowm5qL{iY^q+ zi&NP}40mpOuf6Z^n0UVuFz)rd*Wh#d|A)s9{`lOLc8x0ukPsa>I{}4&lg4~ z=BLg3l7;foF>gFlE@X6gAuc-8rj73B)!jN-kt#@I`vhOfay z&Af6#ULC@i;p#x8hSwho^*~8$r4?XFmv5FHPU)7xshM$0&)HYjOL|W1s$Nd)d14P9 zbGo2P%X4Qp_vn5~?8kIcthPd*_EeAVxj|iz>;Bhc{M6zA=8B>aS|r~Gqgw0srkoE< z)wY6fVjVi$8DQm!|7yy>$^Jl&J{20#%b$IvZkuiQMbsMCc zH}=V^#77`qB2~?r<5&H>_m19q?-?V$qS=T!7i;_u@y)&8A$}OsIUbjVCEcyl9PQD( zfMYAi<6*(%f53;YVE-dHfbQJ0s+2Lh9)R6Ag9^IJ)qRSSB%PY}+uSfSn4ENVB-P5Q~ z+Jtc+i%^sGb%c6K0lw5lf~?^x|5~ki(n+TP27`QyXpqZ1PGCmHS`i)+{Mn!v>g)n# zod+)xd}Y8n?c7q#Z0uoY>G)@N!FlG0;r{LzE}!P}aF!9l$8pYJhR%3Sl+k2e<#G*9 zR`Z<)0>d{;@a4#2inh#`7{Aiv(rq-`)yzsb2ru>MUQFq@7n#;dbl>aIy%5LP3oGC= ze6~mPoHl^rfO$WO@jIKu_`t83rqhI03`yL`h_fz;gwQe|JQ0rj3*VYtp(A0i^lc^E z5PvJ+p4E7$x5a~^oe|#z>$4J3w52T`C_vkRYv3>s#>sV<@4I!ruP2O*&mcb$-S>KQ zFN_m7SlA zRb#iCegxjUy;YT80eMt~f*maAn|dad8tX$K4U%cu9X7Ty+|+k2gCb4C`8*2;yA|&% z9TVia69X6|__wZ028L*+A63p34#y=v!~1Al)w7iCSrM*urOZ!1glQ(SlmTiM)-MAz zmCdQ3Nyfl81$BH*I)K^hi^NU}p@a{P%!+`v@vmxCOQp#!%<16K>2kEw*Or~7p6SCq zUEyH$oV*MHl_c`eN7wOBYkxQb>T+lOjWAK4Tb5%uKS=6|`KS_AKAaa_K6I?s(!lR``T~4PAm~&VuNCTt(iy!0K6N0J<#q0M%P+gv9daIbK z#|HCDzZb~rcUQ!b)A{mhk1uD=t>nu<-oQ2Q@}|Fs4D)8Pk28M|UzX>TelNb51>^VP zOK15W#XWPck_@Fn9a$UjLIMHS1xJ3eD7ajTTzh~uqtY@fD^1IrK-GfB+$t_ubo#>r z7f)t7=@r3i$+&089cJ%lW!8~MTg#abt_)@i#}C&_$J4D3WQp@^{ydnv7-8ehP<5AY z)|GK~zrAd?t_-|;?)DXPcskD4^F5re=c_pWsiY#y@xa!au*H7b#5yb4DzAha_SqiY zbBzIMGPaXYq?TS#qgP{+& zs*wwoUH!no_N3f%-L6+B7>k-&juAXWsp(#9W117??#=1Pwf}^3FE_OT9%0O1@?}VO znUU*yXt9H8I+EpdkFwV*@oKMELdRP4^GcxqdKkYJ^ZW{3m%0!yCDv?9beiw=XkPFl znjmY|x5y9q8TNsMehhyXO)oh?-5)8_?X@`-*7bkDdOZ`?^Ll>K{q<8oh(HF@ zfCaAg=;;Qi;+~xdyzhNbmim8x$9Xm!OyG`H{DZ?*Yqwvt+r-%HqNZ~OLM_&nKZ&+H zca4sIvJj!enV^#4*id9B7!7V%JG+Svso*nEqZP@DmCIbaw}{~Y zaF2)~#U2exGVSz)L_dNA5<|lJRgX@r0(Ue=%gF#r%vJr~AjjD_-sSKxPOsla0%tIw zm5#PpvD-)RRq{^gAy)=6)a4Wc45=Io__bqh%G3t43^K$h$ zjMbb6R1;eo$CV-i0wU6z)JPE!q!aQKY0?y=DOEsvQ3OI4q*oOwQi2o-CDMBf0R*X$ zB3-KV76^ozu)+0hd%OGI?%4{z^UeSM?>BeOOvv21_nv_c=P>ZWyEDF_$`Kco6uuu| z?bJS0bD*0mXHR?PrT3#*`MLI=rrd5)hmg%;=^YFu;pX1AvI)b~J0SIYS#LqZirszNO zhy6CN!o5vRuebdNPQ(SDT=poP%h*oBz>IqWs-98O-{x>sPBk*Vvn@P zYifLuc~GWDmX5*o+j-BfsYn&Ia}8t9?=#`gBmObDn7$HM8g4fl>(uu2Ab>{5IkHEV z{!_6n?YOsk=FZ3*|Dgacb9VtD1-JQ~z6YPu z4nmr9CHHbS8D1YUsv0V@=3N#E^sSmI@vHPTx*2OSSLb)*Wsv-Py2u`$D2a_&lmqv( z1h&e(@!G@dRdYNY#d?gJJO}G5>lUk!cFd?(D<*vF;xa(8L+UMOk7e&hiP*OrTSvk5 z$BpN<8jPcMJuiBh&^J`n4-H2--aMfq{R#@b$>Z`+j<8TVF=HaW~cDXUNjPAR#fwIuAn5aEJeL{3(s z%@Qw&Qugb=fSo-7ot(jt5GkMj9bcPpbVwa`1E7|9V_Fy#>1^nGctdX3F#+rZ-@SS? zX7^3Ct^BICf-Jjb_-iI*PQI=;SGlI2zuhM`Gbw&fteRe`$RSGJy+%TJzjV9))f-jI zyS7zn2p1K=TgC>5fJc4hBh5BUgAW}fY_wgF=tz$J*wv#6Z=`RpG!iJhcR?p_(D}W# zu%G1aLw0N#=+1k#(Y^H96ZXji&uK2%lgriii~htpGmtb70#FsYtceiyxwkH$MJZ;9 zQG9!;cZzrcCbqC#l9tv)?~c2Ms>YB?QEILFQ~S|E`uyoMn^dKUk%+{Zk7=evCV^#` zm!W6~T}5I=7e=p7Cs^Rn*|w-91SlEpfT+Y#`dpj?T|71<^Wok_G%0&{1*DHJ6Kzo8 ze6F}%*{uuET03@}z6rkC=65Cj3tM1|?E5Az*-he@wPVlerCueo-cAcWze&4xcN`B& zO73j?3{h&}fb4n`x$MbBsVty9m8Zc^Tg)~+%y6@L#eLwjNTq}*qkg!* zl8n*yg`r-5QXlWd(16u3<}r%Rr{iRfuCm4UPE?o~V~Y*MQ2^C@Hcek{)KABIckQ@$ zGn)F+OwX}>i9BoxH|R{_$N0elu^y_B zObU5EhqAQUY{}D+r6NE!mANzzsIK#^yN(Hub{u@}2%Qs9@ye+XHdxHWT&TBPG*$2& zg2@Svtk;XvM;QhwYN=lU9mRj%2EIP@;K)+eW)Cl#d-ZuH zotW+XN^DR&P#4T`tx4Hbbrz%DO-ul(X1IHkUvaRrXafq5Xn z*utxrioG>yD%|75YWfM7Af|;>igrgcoq!9#}w18JgfHxU=pwz0^BJ z!uBOy?5V^qI{~`*yg)G-b6a_ZYyi8KW^z+QUhFxxh_8Nfy)TUevYzDo$m!wK&3cn` zZqCo;6=mZDi>ZOJArtz9RKYx6H@+RIOv4~@g3V;GW{EYTjfg!j0BY|=T%C6M#DU*5 zd$v5wKHt7UDjILZ7_Z;)q6}T1WIa}Gi)v$Dk0}%IOdb$>Jaiq*0(m~? zLZFGT1@}!buB&n6eMN)@-C^rp6}A($*Do({QPd**S_#oK8^aCkaBFDw|Mn0~XzTSl z2k@^5Z4EbossnMq2%|JmbSNR{49PTL&U=bx!jBuJgO~v#)=i219(X&$;DB9EuJkZZ zZ|xUjTFubun^=DsmKc1sHyxMl;AYY47KpN?2)@5 zrlb(>TPN(1!t-C78g61s20bh)+M8D!nGGZs^p++qWzr} z^q4fzWrLvs{1K3?pZv+yTN=DN$23OBCYb#;LusN%^N2QLgdaIaX^nZ$MvgO^?!nLT z9#%?DE>Drj(;bbf4Pe?lu&Yg=p!8@lbLagI5cvcN$a-G5r3i82fGyqCuNXGd(GoyW zSpYWiU6F}F2)^-ShbT`;5sJMK`n^$xxbl=@+I?`UCWzvgTRr;(oC??^im{1pPKAb3 zf;21JJ*6h)N+tCZXez8nIMg_>BwJty!3k_U6I=KIxdq)SFr+k2?$CjtZzPWA4 ze&P7;tn9guM**=R?U2+#IDNJ3kle+?)N&AgIpyseJ6%nLhcqDc84&s>@NHEsJ@4~u zmD|PQ$}s6#bXHTA(!vh=fIJ(M+m-4!(^Bf1yM#~jkEfc%yn35SrAVRE()+Km>BD}E znxVqau4wMVDeJ>JqabQyWg=AM?y}B9fmIKKrobi+ zY~qt*O+EH;nM({18$%x^&fJ-%neoRtP19Uo2!ClCXedRbEC*yV#nQ|K^R8Q%=RwZb zlK%L9qf3y0K(9dh=?m(a*?>TFM<-e-p**p|e$1^p6B_VHUyBMuNTL|_g0uA|_3XRz zPwoauUA@I}nS(Oo;;G#@^jB@p*56?7Z2Y#oKd}K^631@SxFt_f?jx-Ll9`NsiS!Ex zyz3lNEHWrd6=}r1vY6m&VA1`T<*}Q`7Sp6slyR_+aa+MS*J)b|lOWSz>svBf=d>=R ziuh@J-#JRfbh(U8J~l&WE<_uCE<3Mwm{^_&)Of0+6$0VL;xEBTC9V*{w$?&&b2V=; zwE0ku)(gi@2+CZvKvY3*x#Hwp_Ijs?aw_(M9KG()E%6z?gQ8G*pWk~B#JO(rEl%oW z=y&YHFc(=UA0E8foX-pU%0{N%m<*jQP+ejxyLHI}L~Eom2AGzT3-9E+ti_B5paf8g z`?}z^y3}Br1x-6G+w=iHQb^T8*Vw=q{j?%bY%Hrh}!cVuuN&=Hu{1l2ha z%9Ts=x~ka)Rj>dt?1y36cQz>-d>=gCwgq4YG}oYMBU-X0>6)w(eo{A3w)egaAmU6( zV%ie7pDle0C2-Ya6WeB}ZU5kp@ABgykkaNL2p`x4xzjs!&Lpg8ZTWL<&_)y_5F;7& zR?-jQL~q_Pz_V_pW$(4(qKM4*FnU38wB|MT!WTSzxMy}r!Rp(h*fyH+;2`SQN6Al~ z%RBB>I`R|J`Y&uy`k&efoOt6m4hl3XzwL`b!MtUFx{<)U7cr#U_tZpspY`ghBywr)j*%`sB9i*d$SYXf?c@%`uG zu6nyFPJQLpNRD;0g5OmaC8S`jrYwAEp|Vqq@|XNz6=q2ShwloS6p6~@EUD*MZ`Mox)zNuLnf8Nj`{bUI1WW_ zvxnf5|2Z?Gn6KkumDxjo65d0Upf6Zrx8&u=vL`ZF8PpZI%i4Ytn$T<@QRtj8ghFHg zLsMVzBjmOaAA$+i5&|_|XImp-b02m$xC|aK9yj-J4EiZlm8O)@b zV3|DNdtc2Xp3Qi$PD=(r75U7^qvc5@oEdx%`MulPnx_n1;5H~8_bj*uu2VGFDgUL!=QpCV)J}2<7>SJv3OP10n+=UcwJ2++t2mtx+@K=#XlE3?G#Kap+KTBF9)E^# zER0w_V-f$6upOx^DfP1jhW0U0eq{*vC)}D^>OCQsTQQLiJxshOSBai$Y6Y;90&Phk zr(+VF4kC_P{@^^wCx~7CQZjnrbR4(;V;tu>g>HkxtREZ^)HBG4H9N&*H$DcH$yO1d zi>HkjK2%PBr8n;zcnwwaN@)1l^Evg^=eODLC~sP>g72diSWN^He<=W`mm(>L_Cc{@ zFy;4q(EgQ4fy^|iS4s+vo7`1;B?Wyi*RV}mt%*`hudzo>+^hJl##p$eva0+2AaT66 z8PLIs$dwJm=RGhxeH>A;;?9<467`it*`$_aar6XrmZ0{OR9$amA0!5xb|#EoQcV5o z?%=T`(9J!3hXOPW?szM*qRv3k!Ta-=%Q6i;iM0ZL?^UD-g%L%gGi$vk=et`1C6lWb z0)c|fnNS|B#2rEJqLk{r1c)e`UKFf3dCRT(QIGE2@U$bi{rCM!)sKD!dULzy0+Bom zX4U4?j($M8iZ8E=NBwZ$%dd3-9U4RU?G!Ovkf9V2)kE`e6E^Fv^WkUcx*(EwvE@6!<@ER`w#ud{Yr)19;Z(ZXQvw_jo~_lHCy7o4V< zcGhd1@3b78y4?zz3mi}-9sv3!-i!16ly|SABwqS$C=1^=mD37kI_W7z&FDLSO3cUZ zk|b$y{!{40=r5^aQt?L`>HNcyehG`f+tb7Tf;fK$ofp>^V9fZ)s}JH;zJVv_oP~Of z%_$UZNisp#0bi1sqOOZGSlEfQeG6ekXYfHV4FP=ut{OeWe7EYjcykCQ5Ic*N( z+TF02G+-Nbxh+-AVuQSGfGje=TOu!tF z#Zk1#C8Kf}H!$Z3ZAWXyE~c>|+sUR#PX}FS7skRSC76rg?5lJVd3Ip?EiyQzToI6! zZqWdB4YB$0A&aZOM|aOx^1P|=DlkXmQ2OaaS<>z;A1LX@i}c8(Lt+8=MS&Ahl+Q>h z{iAvR3-#}OulK&C54_Xw%6D8sZ<%Xy{)6UFJ?&&O`OWKy9EjfZlhNmMoQF>YV(Tav z6E~R>57=YlPxwSSywcv7$}raZaict5dqqmQPLdzro@H!bM%hdkq7=14^Z;1fb)c+2 z^*(qB-7zS?U-NRX<7KBZVfrwxlr|=~9W3ge2=g~OB4P;zaIr}<)?&Mw2HNV+!^z@Q z*0WXCEk6k`f_{H%uBSB_!ZAglAwnY^oW~|Bu>_|NsSS)Jn2y1R=1(-wf#M_|^ubqH zho`SifMq9_E$xiG6^<%vJh~l|#{*S~Joxu9bpf$$`#KxFn(r}0yE=&X*(a`EmxR*D zaNIy>;2!iAAkMoEJ!U!pH|yp!3ar|Jv(^J?k5tE)`{Xs$v8MbX75M`qpY+A zzDxmyv)5ff`ch4=oN3Q8p^(eH!LT@pl|kip1cv{Cy+~h&>$7c^G&yAevSt*t z`1s`gU})fw8X|g+AWj(jet!?~u3VrT>%&hGN4AI-&0Vy*i|l#_NxTUZe&IDK?LJAd z;OUXLXmtl!pe>)y|Ik|TC;=nm(5yGzRT65NlXGxyAYb-0-o&yK#{L-aC4ElgtyrE$ zdY_K?AVMuE9Er9j?d9INwqLjg@|APa00W2uqT!iy^^ST2u-2*Si?YYIW=w44{Pd5U zN&hgnbJiqC%!N&;rB%o%tbxbAa7oqDg98&cEi>`FD%yc*l&tTKJE_4mE|)YBt|*=(P!U!%H3sb{!F_ZE^{7>_jAJx=@zTnl4*olQJ7Gyq zdJC2koMGAiqn|_}_vJn`Ctt^RtljxIaWMIARl{&CCd8ePJz38lQMtuBQt{yQ3CckF z1h>g}DQ{l&nwH(cUV%Q%@1>`9SKI^0;C6NbphE6{%1Y5Oy$)~{2j~FtKpP)v=6K=h zrRYsPjF7JCchxMD-lcWzEtj?)OBHj}Z2g|&`w?Gz>aPea4C;4FW4}kjMSRRFN}};V zhF2_FW-O)#xjxl6WgF>Qs_v@!Nm|cBGsF{5ue5Z#Qg;Uf^7rHw?bmuY6?HlK8OxVV zPeM;&EB-xyEKWlIRR0~WBwr2VCEM^N%M1_nP7k!nyb^P@dXMk7LL!Lg_d1NJk)s_) zA&qe+VxJ_J%LW#tg(?~hnf4Vn=RoKjR#l&_6>S%o&iglZ7Wu`SV)@~Rx_-L_$1C~= zUrsB;R>jLqei7WtOeB99CPh{$ei`f`n!N)}&f5j>4zc5$^Lr_r6V4GXaK2`2!u2W9 zg@-w(IPc_0dJQl) zEJsi7C^>s&NjCJQOfG3SKQp}Xeud*mx1$;-(5Wf4A)`^}q(8jAQfq8nRj}&r z_O-BZ{EJ&%?GN)>uB6Fb=lUz5HSZ?DHygGB9}E!hwvn$y(+@HWe_|Ipg;D4e%_;cQ zmsCc0Zd*~uE8eHOXZZKT`%gmjqw}0~MwW?@YfoPp3zc>$y4U>c%-*J-EBo>c{+Pt0 zSKUgMXfSh0!01u18q6h}R;Z-;KW3^udm64O)YriyQ*#@Txb*E(no(xl-!exf>$+nE z%ecDMK8ebfcE?P(Q2up_7bq6{DF97>pFOU_eV6GL`~s&|Gbrr*&QYG$d-;p|Nlv#jb6oIliB_yZ=`-$ql7_JGwd6c%NebOTw z>eMzt63`-YAmh{@oliqH3=D8S~*cGHLK-*iurhysEG2|~W zd3`y(FYbP9{XD&;)#@AULgAXEhZVd=;HbxV)On-RFGUBFQdc@P5&v`5x2ttp!l$U7 zf=@Gav-zIss$YpL?N%~;oF!OxFJbg*Bw3eJS|^@T7ON^vtD2b7htSi8z5?U7D%Uph zqN=Qe*4XM{Cgp-!+NTF%MwO)wdbOL zqfFa;uvj;AQ0UfZ|DTq%&3c8XWIeEkKz$Ca$pBfAZG61ZZr7nM9ARXH+OB{s3u?@#}H0^GVLRrfu=MpUUB{+L6`#+G7WhMrPI@Lc>#XkTG7Es(<7 zW_7tKn{0J`PyzK5xW>7Cc<&18id?y?w8-gWHS^nJ$f_g!o7cE-%_K&xunNnIFSdEf zViI8ZwQSeLUHaWOJA!|*ko^HpSa;}M%wDZYwwhi1uMRiKnE!QwLf7YyRK5K}{0H#2 z&CiG^`aLtp&MzGlXifhXEge(SEt2=Q#0>&M_#1x(_>C`jKMvz@0gdD1-@-+09M3O& zkB640q(GnG;~!`@^i{^kw?3!X`h-^0a+TKoDRajT51@Rd_7Q8zoOL;$3V*xwl~8oo zcx9|(Ied9k{GhOBP#@-_gfx^o3z)eqM-sPR$k%8ev6=iV>-XE)x}5#OzmQeQ$9sQp zH_;!~ZAsjL>j?RJd#pD~UVXNX&Z)|!E_nRfgwu>WdDX+}ug&ZKRSV;c+c0@(G(?wJ z@zDx?P@wAg#PH{$iz4hX`4TkE|)PF&aK%J}AK3 ziTa~|?)@S4-(yqxd+iUjq_g36P|#2i@OXJf>)&j#`ycKPw5QACcDA6gAm8KVxqq{T zG#0<-@#XecT^cuijlo|nlq~@5C;xt^TJZgqfb-R+*giQs^e!+0oC+M2efCE8GVwGa z5nU(qJ<{!SJe+sHq(LHY83Ui+K6|f;;k=C{FUMnEZp+NK9TzW|U3w%cM@IhppC8*l zEx`qcMD5pir%vE|Yju0_0Gh3nDM{)wGt9>@X_Li4gz8c#lG84sIToegIuTEe_DO+r z&W3MtLQ<(r<=Y5WiCL-1w*Nc(QR9CGrSfx7SsD)1S$50Oiqob|QM)w$=Od-ir+t)SITnm%f2jt;5s3LF&ma z;?m>XE!-3xZ=n!wPxX9_JdF;%j~)>TZ^rPyb^Z0(%Npp{IY14I!@V$tQmNZoVjGXg zs7@|!CBtGqyR^Q|dMXvN>h>VEZnN6qf#uNb8gpaAGLGg(8p`hyk`ElYF|d=4S!XTt zQ1VB9+7s+8+mKTpu9JGW`{4_$GC5jrb92TqD@#Loe8LwpiCz(saz*&b7P_;nSC3nH zzuHur6kc9FT0jvl$_{!gd4xK%uOR06r)$?HqmD!mQ(hT|BwoNW`iYfxbqcNGU~8p{ zp9^4ytM>Geb+Do&q`-}5=*jgpW%1ZPF+%icR!;lG;tp54DW!F94NGt8 zVf{&Py{o63r{`|+3lpP;!vTST0+vj z)Y2GlbvGwZ-PN$o3R@!-N)4yxs*gswE5MzXx~@iNl}B$&@kd_wYX9b|WdK_SiN5#E`lReSbH5=f2mn$C7UNtZKwGl@}>(=9jFih8923sB+#A z{;Uw|8zlccwr_ETdsO>Q#*MCx-o2h~P4}~dE`hhUfG%_f^SS|QQtep?tBIM8X|lps z3`QS$OfJZ`&`##wk0;kdf+dq+wc^!5$tz4oO8TSc^j(TfC<zBaV0wQfrFg}1A)8i9O-oIV%0k3B z7a}HmOyVS7I|O=% zBLa>DM{n^Wy?ebU<5E&rii)OQ&(WmA-@%-@*LS0L+O1}C`vsRuw=E6lgg;xFc9d#8u2-#2LjY5+<6n%ScTTZh4CRdQJtUpQg zy8A>h(iUOEz`^x9;;+!lS(9NSx7j$UULJ+{zJ@MHfe;_&Qgy2h7uv2Dvd@oEYf_?* z9qL88A~;PhIgEuPr5v8}LsA}1`5)gHT}rZD8+TrLm75o=tbR)&r~gf%L1M6Da`b!7 zw+!s8vAR@-Gq+*fk)>DAPn9&gQd8els;dfJ>&WJC%TwiKj;AA5qyF-A=FG?1rCW-* z0SWfE46lkXrMdsKOhW~|IL36hKM*x^CFo;*+D19a4PcZv#`_lE*@{8$HPTnXWp*VL zd!=k|LVE^a%9r2JH@O>a!K*5ViGqDtBX-5^<_q_1QY^9a)OCsEB(Ix6Wj3+K&o8Go zljE>Jkr3#O2hKL718vV`Q^9I9CXp4EDKhMRZxl)$BP-i9Oxs28)*ZD7f8tNuyv}I+0*}Q%; zM3heUkms`$P<4T0u-&lI^=nBGS6-kq)wqSeC3&a&y&7)e)O5 z*Ku-@iL56aJi~WhZj}#DJgrf$qIjISh0yy}%0r9A)M`byeIxDYs@cAnG405huylT( zvzwGIms#+}&2LU}go;aesnbDssiRl&Qxi3M&`+hP)PpPJSKk`Pt`qyM> zoKu81MCa})XFIPv5WvN_T!jsB2R?Xdg7~_Q)WFt_n+kKi|0wBDYk=sKD3LVxBv!d) z!Cg~1@KfP-Nga4Zozyxems3LTuEC|Z3G8Z4Ko%vrNXQ4idt$)?O1jm7=pt+V4^P3C zx6a)?zsk*Yv-rMw|s7I8&%B; zt_(V`K@8H6mY>X@AdZlz>xA8WZ?(v)kkgaLOAI4yA*D=_>KFoT5n1X*RaF z?TaTi^22s}%W}r1w*}(Roi9&t8{69-ZBUbTo-Tcj8a!0Bad?#CUYr(pw^E=$(efnk>*byE zF()%OGs(TlO(rvjfdD{a0002@FTw-00tx^C1oXoFTPmx61^~hp0RSlAzxV(Y zhX4TYKV}=MJOKX}m;goc|&K zzzt9Xxctj!^RK8GKoX$+FG2u%|B7+{%S!$0yfeW1UrGVs{jY4!|H@$XpDI#Xa_awE z83fo#2RL*9oIV09Ch%v@lIIq23@Tu#s;I;X+5QEkwc434cW9Km}mAV?9 z+Bp0f2M%m{ZThSaAoQ6ljS3y#&=wE>bHE3DUw)NohT;R;64fe1--(Vfok9x(dhV~r z2=1q=_|uIY^(z_GpBCB(eiJP@n+uw3>8%P#kEY4CfJjO5APyh2QIGI*>wPIw3H)xu za~$y;i9{@FC!$S;`(=F7DG&IxlB0u-Kt_jInmY68aO1PC5|pF0wAhjuV^Ey}2;!L1 zqcIDZsFM9xYpIn|17D3ik}+Mv21q#EM<@&O$ZXORzv z9@?XW&mZD;P#6=*vP;arR7n;lwwCJxKZbNBh@f2(VCxQ2p!CN)m&hSz?i|*Uq>Z7= zQz@*P1vcY072++X^%O>nX6yEd-$Um=kA|_Vk3iQ&@V?+v<+*`gt(zmYlPw)HIT~yy z#>SVKrz11zzJS9v@l_(7<2AAPObFtJ3! zj;8{URUo5C{ErB2CFa8n;NZy+cO+wR;_F? z6$BX)>)yO0>MNDoYW({0m~}m7K8>bK*~-nP+pIHERAip!AH;fSVDgygziYxTG800P zFe2{X`kVCWX>G({+dr)HHbE#QZ*gE$Up0b^hU~vsnKR0`!}N^Sey=EWY76h+?sl(e zi*O`>PpA%aFV3CjsnXilXnvhjl*}Y~Hs^ez+CnN;MZr`L-0SRr1mUv6Y9r100nLDP zY(_YBq;OJbEgxFXil7lndauL?uXw3W%YjCn5WWY)TP}eBO122s-DJ&>k zzX_2KtRJPD66(ZU!!@%- zc@s`D!mT2e8ZpJ8+3-QvWK&#~5`Uq)f@B4ZsdD3$EzBpjfKugzRJ@#Jb*P+6#&vNV z3$~~vrkVNK5$b4?t@)^_8HVgz#+Tohx`b4}D{11}Pv>BpDYImc>LNei8TPduZ}#P| zhbI!~6_2Q!a4tJO@wqc-&ns|E?-dwU_nv@8m22X)1*xQ#VDJqt-_h&sO`pk?Hgh-FoRZkjq zQrMKoARw2*nAGs7(UR-_QX~Otx|dPptPzsR-OO>88?XVcV$yJwx)_n4E5vD#Ar4eF z%BeV)bH&>c^132@WJweuqsDr;o8_!YuNF+P_^1{gGnRnpzeZ%)!@`Q?EM@m=oJfc2 z4E#uuDeZD4E9gBSp+iY0#8t({RvslpCSe>OPIQfS{cHCyf;@yg7lne69f(70F3wG( zql*X%yeb3_vCUH>q;vKxj`&b%qzFPRU~bfWo;YpQYoRP`JW^~vDBw5NoA=V6rfNZA zeHdI-?RqNUQbC{F1qYgFE7GK%S{goP9O@hw))rfxobe~eIcKK_|%-g#{!bYnH)NqUU`r@!J0isWyB z{UJfD0#&oQBJwN@6`Dj3w%g|kXZqw8zoCaI=g4O?#LLzQhrb9Ea(!;t z0*JU`OoLxT9KO4V?>I%KY;`b68O=AlhyS z++;i_aaVUNb6GBo1zy9hdzM#l7Vr>pC_{0Y%zX%dBfKvGs@I8-ljDsP!V6Om67M}) zqxjBb{Lx^^GR0zPVY%!+%E()2a6=VoX|+sfy+}o%BY!zk>Xx{0f4PCCGaGhkM&VCo z;i(7Hqn1Wo`q>IfcdB514?MK6B6Vd9!uI89skHV&q=pbdWbs1=J8{7gQ4(5mZNcP3 zA->D;D)ACxQ}X(nDwnGZJ@V0!4Aj&%5CbAX!P=mlM;!p0rws%Fy8k zylJy99~>KIy>CjTJ{prHc7DU@afVa*?!2*2Zqg3UfTzM}VcBD+@8%E@cYljIi1&3! zqgUtz!E3#DX|*`d_dRb1R&|j6eg_Ma*3{HT5AEDN-6kCefNTqTHW_D`uA|Ow{3IQR znJu^{86Hj-N987=eE*~9BD+7Y$=5g<@0T;=H|5|G{~MsoBlKQ6?sb!6?eW#mnLg}vD?y+!z|RrzlxAaacE8{rO?ZTQQvbG&e^ zLRFQQvmDmGNKSvM&H=LpZYG5K?^vb`Aq~(3>Wc)#%^4(5W2$}X0m^n)mUdl9FVeqh z3*Ber6psI3^BgI$Zl)0tUN)fA7L?eX7Y^mGiX!78@mIi2u)hC=R?h$QGZENrKZ+bDIZO9zs0;^C@yND5hc(%LTXb}J00BY($1>p2yhO( zMrAH-E&==FH+-voX(ys>8jnNoX@ve7K@zGBbJF#TF;3`55_(@==}onUfDHb+4U;6nq`2ck0UP6_s$Xd9ox zS1Dv;7K$c5Di9K8mMU1*+MN0Joy)5#>||4uQd#6*d^Nxx7Rg&;X+)lyhWT;bnY$NN33On?>4B`0~wc> z`w_-ww*ABTYUKsreT#1T*8+-EX}0r0e7j$f=$xNG__3!HBH9m-ga^XN)q|XT6Qcf^zcQW{gvMp8mD)QKwC{1FKVq zZ=HL19cLsJmCE)F&63*mnRR%gXxjYv-Ubuor#Uj-Lt`RgBeuWE>!e)Oi|9(DeTSja zU!hK^;ER5;8d+Ja5h3Zc=GBl;MeS5tIISyqVGsRb`{8&@0r(`L1YETu$n{Ld z&qlQ3X6M-Umc5-4+Vd_md@N6`T1ntB85|Zu>sm1oil35K#ljz|m)~D7uF12>X5={8 zC0M`fF{9LTz&f3uXm$53_T8sx!@~$?t}zQ*QL48^h=$>$fB43Y|A-3>9mG)pGW!%8 zw%@3a_86d-V4lQ&=ExeT1{{1vRMPpqfa$2xIOoA-kk-?7?QP)R(+*GmDqZ2OtlrcK zq%mn%EHTw*qDwL}WdgX!gvaY4QGSVgV4ViW8}6hjN%=PI#HTMi zX1xM-Pma8HROd)BD4l5S#uMUk5%WttQ)Wqa2o@^FOF=6bOdmQB|So;qELd?<>Dlca1%{Kr$gR=S zx02r0JY5b!E_JZ`9$kzU@^{JLx43z0Vn2#>F9wt{j*#YLB68Rs;1Yc!qRQs-vy+#U zzq4FYgHw{A1q-GpNRmF{3TCu6a4-}=NHwf_ny|#e5(NueFxD}-cLVHh1T`7F%&S?~ zcA`doUy|s1|B+To`mYBc3m81bL{_F$-KyI=CTgQNo?^u{uwX=CYc(DW?o7dm-Gn>g zk+vf{WP)>#pC>@v82J(tRE@#x?5$ZYV1+A?js2f8T5 zY^@{~cePt()-n`cT766a5WDc%nlov8j$dFWoVT1io)R3eiT!BWHtl=7u5m9G9poeV zXqQ!Mq{AO%(qsgCf62<@+YPHe_(6k|E1HNV`$MWhe;O`bbdO5eG2`>`V75wmJRxA* z-00wy!w7NCataso>p+ZJLw{AJir>$INMoTauIU8zbiPA!__1Hui4rjdWu9e;WoXp>B7iG&LqkFZ1|s|L`Faw7bU#Ag>t3T7^%mf zSU)LvjK9fE4X$SBIfhWSPU9$%nPhb|AyI)3`?A(3nYO#Ec=v)NudmNMO!Ne?gQCi>h=}97I0H#}M|Lo?38d8FiKH-Rk_LlO(YhEbOy0I;&{KJwA0GLkyQW9}XB;Ew^CkfZi(Vp&XRe zd;qyVEiU?%P_rAvAy<<}uOt@xL-nUCp6$_;rdwegD`L)W!E60!(2p%zwZf0-ur$?) zq2ljF>g_R9dE~cuWjRt{Dpw3IS%xB75u`dy6;!PmsEa#9zLZeRWMq;4W<-c}+RT!I z(gL{((rTT?>x@+2t*HLuCN4y>{Ht^?!7iIB0!t%GA`C|{VeH9Y=!+R%>4!s=riLz3 zM^!3*?Vt6nQ5560(#pJ`ui(->tqMDeE#+T|C3DDYF@^ONQo(e1b8@J$Ra-9tQ**pJ zR`K*4ePUdQU-3OASU%!zF1fUdB}}=>yNz#Id6GOQ$>=H952@=-U9lp8x0bZyp4DOs zm|9~`#kTvi672Z1A{1Rqz7fK!D%0jJc$Fm-m`^CzRoAG#F5i#<1il#W=9(OZbKC}o zbND!NJhoB5)pq&vocpoQV#u_4D8Y-LY)YGJaBY?3epq$w{D)+I7TV_!%lgT}hPd8% zI>P#@J5~lb0+tTV_L)%Bj4L0%Yp*lI3u@khS9@X1oL0T>Nvqum{ScW>TqDSPo)XgJ z&la!wsDreArJ0#d&qj`7Dq2xGY5ak>A}o(TB3qlX3W%2({=b0+Km50To0;U@lup4v z6(_l+A&O)#5c49ZWaAbf8I5guPPCQ1i4(-zk5BcL;@n$d-CYt5=+v>C-nS1G8nAUc~zcj6DnK0e`y48s{%p`e)X3IP2TwRd<`;_zg@|IW2a{ ziD;%^7aKH77tXYQAb8-QP;9)1$V^C1?NUuL8(QMVv2SoyCJ(Yp%Fz2V(So#yW~XAajZ^|D!_Gn~t74LV!{9m2r3JVqEBi zT_V?>fo}W?Qt^+(cXIy~>lG;ozoQ%ExAX_}j39t?T2Eskd;;M&I$dS@+w_jZk+$zV zp-DdV3{+qu*o(sltiQ$E`TecjbwYWj=iC{R(xSR_58|$YgF!K?V~hujy41N5yN(^l z{*U*#=KBL#k!GpZE`!O~m;iceot59<^5IQE;{nN-xw@hAdB``n5j==+2l5ekKA>s5 z^6}-nNE#e#J^|MTk${Qd&?w*Cmf9(3R7UXyC^psUo zk=Ax4^7Mqd7Rjk$>TZ3^D5ZqxwXu@!V?FnGY)~5`#FT{V9DLdz?&87g#rQ;g0jv?q9KRp4M9!ubny=+VVp!<++v_Cg*%AD)-(>=Lj5D2oG%lI!`v!bM zQCWGNgLj4hxb%3{3}3Z%^tZMf}R&>2LKeR;*uPc zOMzb=Q@K#Sqfz``<(y{Zb2P_T6_90{yRSrH>JqkTpK%IGP*vlZ&icxR6{YltV3Nee z!mBnpC+aA_lfROez3w4VQmrm6oWG zr4{^Wd~^&T1@1AAuffh2SG3D1jjyWXupz7s#kbF9WB@(`EySoPVbt`bQM}rWb*AVR z391{&?=w;Ft2^wRkN8i3x7otASVCru)pk2#B?DH3cl?Bb94m}3fP+w--}M$e`-K9K z$gDME8vklZ@eh;+IfMx98h2U+Dk`Qex$H+-ex8VGrjsv~T(#$EH;WCeUSjS9z-0r% z5y_*9*Ir&{YXqwD=CASJwYOC!gjS5~jLUl)Qch1938aD~>$V9CTk)UNFB;YQIe~K= zw(&W$zNXN(!OIvmux`}JknRyj%Hbwf+Xc;>2T5gYIyVdZ`KG^tZ|@HkwG~Qam!Z0I zWHQAS$DOKT4Y+&I_h*Xb=UxDh*J^Uws3Mn)aA27)nqP3_6}wuq&D4Wum$?B=i9ITD zS=d~k)JI-9U031#BzqD^_fO}}_9CwmK$Pcv_olN!>p-^?b;57;N|2yDu_{16zm|%W z<8#$s-fiMSdNLW-st{+dI$N_hEjF(=2Lu4fS~fVWW3;ER4{&n+moV?cHpu z{T^f-YxiYV;efswmtgF|{q0e{lt2wmIylcwQYMf0u9(J-K}p&i(7GiV+RV21h}!5AT#$vZwZ&M(i&04*@qQx1?B9j)WsQg-nzOSj6|Zt z^bjsiN|%{%?$LAj4J0>;zN$kZ#(SJof`-ddc=%64B3FDfa4r>u{%h$*z8_|b1tnia*!0__fKBWN&{~Cv3>&6^t(m42j;qW@nK6;8u(Mpvo zPeo*_$Pu+rCXrfCWQ24rz7#Skel9)hII6C;iFS*#4W}BBRy*))T|iS@2;>shMv{;m z;@!OY%->9Yxa(<%5MwSC@*4=26oEL}B9L#L#GHqJ)*ih)(m;P1H~p27E7V@eJY->J z@DQuqqGc_zOYk*1T60`jKI!B*(rb)`2|m3HUzEAN!rTwxN9w0qDr~+IOtnno1zNpw zyv^o>yBA0TF(@JzzPfVu@KfAw;nZht!Q3bz3lHr|Xs}TcNCW-YxRL*3s3UB?pUP7V z6F!>^^H!wNxFPu?rW`G3+17 zVq;j*0ce#?PZ=^~_3H9xfU+Id}-mKulY`B?^S5klO#og~+N1-6Jtg!f)J8gXCL321fZZ>DUZ`1ELAjkd-23Fa`x)hB_W3|2A0Y0|+@y9>2^nW0F385|&W z^9!rXu_dRCWP5nkL^QkShl>P--*^Gx`1EzQPSCoE0+Ds>-=4Hg)^dXrX^55VbN=Vs z!ULKy(_%F&lV414hm_^;Bi{Vo@fGUMN4sDBP!L|2kzs(|6;fDc)Y0GsxGE~&A4s3v zAIr%uI!3jiuwps3maX|HH0d5JE5Ia8;)8#6L`o;>9D`q8Ky6O@Axo{|e85h!S)mfd zQWaj&=N%-MaIE<@u3t7hOQ!i5BRRXNQuW?AF>S{uD;Wc>Bj|JVkKJ*rUL44g?Ay3} zM=?z4E=19(K+@G9D+4n(Sfdpeq=VyQL5RrQf%=TbN()K`@%Hz^#iRI(e<2Gqg2|;F z$QYAs-6bv&q!&WPl#Wbi0t&D{oQ}Y`!}6bGkMj4WuJmWwLpJ-%2eNoejE;*PH^?fkp3wTYxy%$s<@#J zYTBhZ_^q2t1b?fhZK37PdM`b3JJ6PyQfAmWfsjHl-7`smCypzT?^j4V?hOm$vn6hA zaKwn)X9r|d_=fWJj8r%-^H4dwjH&rTyuzqyyQ08|*BND3_r^NC54Thih$ zjW8li^2$Lxj8Pflq0cS_8iD7Y!sC-(jJ0c|k+9Ds6O7xFKM@bC(5@}FnPibOItSfI z^+?dz6U`-CFtKkl;d4tZl^Ut}v(d?(Xl9emRies0%mpBut)(}kj3~Hz6rKjkLNfcM zV9X3dj3IP9B30CheoXs6(O_(*`gzBD=6meOrny?sXY=3MvFQFqaOBo?>FZ3Hr}!wkrlvDq!?_sX#NoY(7gI zPI>wbXswuXG;F9dh9zxJzK)kh@!;%-j5A;Z|8>ZxPId=43?1_=K^`Qku{bcLI@5@gM1lgX18RW%?KsDsx#dT=Ez)dxaN=80@~ zD(wR9{q%L)f{p(u=G<>)c_pD_<>=@jPyQe))~)u~PszN#OzTb+*Nu5aDj#;k%L%Vn zs>@;q9+14=PPWDTkjA){vGGu6$N6z1@UNV^psb&AhgDvsKEv!AU7a))VuoNWvdX zsxnIac71TMdIMYt#5K8k@K+}Fw)TBaDP_8Im;i8p80p+EV_t1zr{o^EuiG(}bNG!%*oDzTM zmllG^N7xqYuA%c%^idBghZRfepHU_pn#F96ZXUegoZ@58bR#h5r!H+$9?{z*U%sak z4MbX=arB|{@U76%aKP_9)iQ{2#N$gVmHs7TdN^YENBPr{4e$h_^oBLz&;GuE{{Fnu zdrH%fPC43vBNgWQS$cdrtf{X>D||W=W*mH%B>9T>zw|u zT~M@94-GeNAETdmBP@bfu(O(?>rC)c_CW@+X8|{c97MPH{&9HTEa9tEK6A<^(iW-l zY#mi}9LHbS@FSH2rnvIxJT686Mtzn^)`!FQ;0kHg6NNghY7=0Bz#|`8gR6=9e8+bd zQZYyh^X6iD;%n5xwV~0ZG&8>mlRy< z`8mEYZ~xpfcHYm+h_cv@*yFTbjkH;NL(txJhLQ`yv+#fmVE0ahuO0X2dYFu-fP;uS z^@$VcEZy`|$P23DJ~2Zyl(SPR0LSDZfO#rp(|0nrro(n*6T982BT(J4OGiq z=iGnZE)b=o5*(8M0QDtkaxzQcQrp`=2N)!?|9ZRfMjCDtV7R_|R#s}ReDwFFN4A{W z6Jd9?)v8TW_{zSdG_=U4-zsQZLMfwR(2h^R$^F zqqT!w_xj~VK;GR>fz7pTwJ^3jjuwb7f2wL3d>z=w-rU299>IlvVL#bO$q{-TeyhcZ zMR(5#jJil91a0E@V1$q9C_7cD@Q^*9y{G;I`K-;>BUs${G+dXa2PP{e<%*s7o+c$V z5bsJLdV2#XVQ}fRkR@km072x@R$WVym<$p@D^}sJb`i*P)g8$HY60VP)4mXK(N4Ua zuygbiEuz3|n9#8ePAN!MJk84#bf!2z&>A>mQu04v!wKm}FiS zpr;b@=Sxt(?sfPB?zrI^H~kD;tv<>nnT<8={^n|<%sr=;+?zf>A!|nh%2;khxHYXM zUv3eNmE{~zpdaA}DloD(A`Wy6iKFa}L}d!Kx7R}j=${C%sxGRw)4`9}I6q=Z>@ZSO zBcs8E^5B)k?%kzMlEnOWZ^X(+RbB7mbf@XGQRc3i-XpMz{;KI>CP0K|$Vxf>4PP#5 z0S6Tx#=%`Vi7a2b^f8m!od%Fk#Y7H_1TIQgXVM%o)ae~YrT&Tl60(P~yo(y>o2N6b zrcyX~*z6DryTkbe(;Nd!3AO0Uvmf5Mr9*V|m1)#fnUfMf)g)siu>@@#jfzRPzll94 z@z!2bIr31%>g&1gTXWnG7R8tqAD0yFZ=lO4kU~pi)#c2gWO(f%AXjzf@BreW!Tk6u z+Wh3fFP?wEo46KmQ8zd*(hB!DoH?|2da@5o2Km80eKOahtU!qflw5_Dt~D1Dyw{Xy zu9GDnI3s!z67ZKqRMNwH4EGFY6hakLbI#q9=;q+pr9s;MC#}_V8^{Az2~3~A?0W2G z18#>Ndk;igZKB_>dyQKsLs8gO)C?=bQILO9r(l)EwgyFefP=DP-QN^4c!8N7I=KcE zqawx5Q`ah)b4a)JD!5-i6|?{`jQVGP4d~W&M6!@O9;FyW1$XLM6J{1DkY2Fj3_?~h z9kI@NAtWiN0jUKCNrVIn#^viFC6GIpR_3)jgACtpqFs9E_G}6i4W6szg*`cE-V2Av zaK12H5LajXR1=zq=hEpw#9Z}JG^0?9x)MP#JG^G1;V!(f5~3-qmQ)5*fGeJ<)UHFn zRIo*{%HLb8b7_fAx_~!yzHy!aK0KuRFn7gZ)`Jq*4Fi*D<_8w!Q-i5h-_tLmFeWQ$ zzOkT4){|7ZW6O`~t%zbAr2pe)+M1!{i(1%&7qDVhQS8boJ7Ii;c%s5n^vd!G!aquU zyGANh&wpz3x!~J`R@Ykoe5p%?6uvinIdQmE`N*u`u-G4w1$o7h0iEuFT^=ss-l#Hc z0!x7{Kk*E){Bp%#=JJtxi;?8$sfy_;W8LCr+5&X)4Ar$jq$`BVs^~v*CoAx@>6czy7O00jw1V(JP}Cw7FI)_vG|D_eW_i zpqzXda73X`l4Gp z+D@;15DXtr*p2lC=T@xy05E6?2~X8v+nDCrTZZ$31cJylb4BusnWZyA21|#Otsf@MV^O}sM@I%YY^zP- ze(#?3|9H$9pWmVx^hbX5Iqk!J|Kq$$R5u28975f8d(X%lbS030%l}^`C zBwK_NhzA_tTyI!Eb{A^!Mcn-QAPMVtX*=#!fZUE!PVNWfBmZMh`XAIXMSmJeK_5wo zt#WTq5xS9cP7F|j>{meQmj47VEYQ;&rB5Q5l@KXW0pi>{gh%z5cNsRsdVURRfl&Z8 zn&0*4eXyKe$_^*ym`fXnh^eQkDK+0qV}V}8I$lVC2P+um*ttQ)i%W;yR$}p%R+H8! zZMH5(pCBJ+XQm$9leo zlU~ZD66us67Zq6_B`7zQx)=y>0Uoh9>YI<4mLwmBf@iR-`(RTL7Oq~0TRn*^d1k@$ zZEJWF4hdlx-3x*nFc~r8O^DMd6(1o#j-y5iGUDqBoQlG4G%*6*Y08NgM+j#rHc-qi zi4ir-{CAN zp#i!;GAx)jl3uvGNSdRK2uC{$1WCzNHGEI_{UH6c!Vj@lvKnGMPv?vgyz3g!zm4$0 z+R)L$R;q+e`OgQOD8cZs|CoYK#tI3hao)87YH?31Etsg}E*N`g@+~Z-IyxSt0l{7m zU4U&{6I2|k)AoBz|8DK^Ul7Io zO`nYN+mR&fONsc5n1~>vL4!|$FCeUX{11?%eNB~dEhSTf%lP|%=|ibrrpjCeawwGh zR~=Nb?$nH68cYVQio=$9A=kh`;eN;kVAP8AVl*&pkKEMU6`rU6mrZy+%qg)0%@>pr zS_MO81ISHWgd8Y= z>lai=mZWAy3{A6YXC-WW0td}}cg%~*y0m(QB|?Ea1cas*3AFHJy;!i<-rcb3)-{34 zAcn&e@sLnd<%Jx^zBm}h3Ps!N@fU_Bf)19im1-SjER1( zMV(rJK3w#hXF&~6c#rFgOu}R%2M}6P^dJgnvOvbHHWHCvKc0>V6mJjM1CW+l&ZG0T z^fP}u_N+lu8iURtU_OVP^$3~u*HD%bU3heC4WV3l-3f~rYjA;#mn!wImGD>)R%A<& z1KO`3)(+PZ-a5dTN!`&8TV={a68eit%CA>B$)7&3XoO^5+_0%;Asq)d$oFt)rKr3f zy`fd`leBIbixwFt$TFgOBZ1@0s7B~(p zuq_(B4k0P#6n~D%hMYt~0=0O!P4Ng-XT;|@c7B{7)(6Xh!}9aNYHymWiQtAc8o?}U zi4wh)WvL}9K>XHLk0jvcStK+ane8b<2KOa)G!KpL6LD@*Ou!uR00SJnSMaJs>ubIc z%56Ak2;v-aU2M*I3?{b&gdqVmPnB;4nG61W!IYy2&%PxHIYWpEPvJKkUOA3q`1)nW zL7L)>-(K&8e4y~P4G9M~=vfs@LKm(1EIb+8 z!upuoE%4X?;Ab>Fqo4=_)U23`+>F}#yt9%KKt|-V=;|MBLPcCABk}`?z%zP@E#0gx zz`Bx#GRDSVvTx&+wU4gE4OR*gq*o=LB=sAu^yQiVzQ!9uAN!utM@2ydV{ghRiJqg( zSWzOMm8gOk58awu{(VI~Iq|IwR1aAZ{)*$u7;K=-VHkf7_fwa+jAT zyl}r0UB7~8ZFLwPsZrT;`NmCs3ZmA6yiP4=q88zS^gMo`v}jF}N9@S_RyR9h)h)!< zcdNI#=@OLtD<`F-St@zx@&~YRbN#PpBo4R>kBNE$*vO1^ED+a$2|Os9_mj+qQYcv@ zc5h(T{H()6CWMGWk#fO)rD*$*r2RnyXaaVf1@AWZ4tK`f?!y^%%eF(t|x2_-8qw zK!Asah#q%4oJa@(2JJ_&7a~Ffl96XKWC}sBVyT4Zsw|y^lQ@r+(5@caNOVfJCUhd? zNeozWs%NbX5lb-?>1dIB1z5hAxy%?XoEaWMkX-Z>&n!&VJ}f6$xhPOVuEtMeQlFKe zN+-YjMurxcD{Uftx4-u>XVzOClZZOa05h&?C@-Xh;&Z!0AK> zxV?zMjE)$fsjwrkVh99BYL^WR6lP#yicka&1ysv)S@r*FmCa1>puk9GPy2ojX;vVs ze`#V}iXke}3%cDwJigNm^M`kW64%u|I2#djhfVFCgrBy@R;efvpQwD!Z_s9g71Y!m1kL8KoMn;`EHDO;iEuzqz<;?K z++Kh##?SgxrHE)IV;KlU&?&t3~X-ezyGCz zS%&sAXVV05PjPHx$^8OBGAhySHrO~wvXY1cV3DaWk-HakI7qpRb-8>nAv*-RN}I?S zu6CXWZfpi%%Y%?c1dfHSPqmGbrK-S!Fp%kz8?-qQrw$qfYZ_f{ra5XlF%5R7)P|kG zFoIgWutZzwIe`}_rItj=SBZNWM0(S2*9y|+$6uiNaI}I*71f)`Fv5`GNmYD<)3J=R<9a~6b_W=dJ%u@affkQBtrFkpL3u$$ zBn~~>WPRX%|1R8MZmbfRiopli-))QnNos#mXRjxlck&?9S%7e1E~uWZO*6$LWnszQ zA$oH(l<#7^4rGp8!-=$H&EUQcqb2=CrM!NgJY>Q~QaH!J^&4&bzu|$o&Ajvw1HbJ#Se$jZn z)lX(KS*S_v9YG4Pqis0qdrt$gQV|&8ZO);9VcZBuh z4(Jd^aW+LGaAV-F^h)Lo^dY!#3|D&cz{f`|Lr=w~UNVq>eO{#uKTAxev`gjOv36RY z!7`XT?jMTKZ`w@Rpc;2l8J_|`JE-eWKj%a&q#CF3ZxR6JU0-q<@G%RtHz-rEaM1ZTkHnhsHqiHcv_G zxT5Ombx&PZPk=C(pi@8zfGL;9aE(t;i@;{Cvoykt0-7S?QF@G;<6n+EMAU^`cMh?o zorv%k%Isdfc=bGqAgCsf3~qH zU^N4Ny%@8Q+icL^QdK<=c*q19v~f7u^l~GM^2p?N&=BXg6%ZlIU{2`R`z+w(hV4a{yMRp$+ z*^V2?!Z@Y8ETCIUK6!Tz>Pm3OyVh%Ct-H1yrJ}-WE3_zAmX{?o(B^&ARUvUa(wg5t z>e;7JT@7bvaEKF=dubThEkJNAn1HZYlmvp!kxXE2%=%N@1h&Zmsj0oDz6j-*RM@?m zWHHOBK!D8Rw6bP+4vvIbw8-6ci#3tybGX0E-+z*Uy^Pyo4WX$m z)Q}w{Ei}?_%;;sKeJ{1m4N-|}hOA)ud2<8o4LIB;^jvY`NDZYW6@?t32?PleM1fFt zB+|ggf{YB@OWy_jof1uFiDf8UOHyY%%bAjIaO?i_leMXl6A9MajhW8gd(cU(4au;X z0X5kp;biSY(Q1`0dhbzLLmB$QARLj_5Q>-P1PhzboX_Y?=+hQ7~G zs2=saw#OoZWc|N_+AG~AkMg}3Zxn}52<;B4tu=d`pwug^@UAsU)a3;(1?Xt%OYRbD zf0#*v5`!7R9RlrzixaRt$BHzPNx;Q+fG;7gLVwc3d50>{95cgAS;$*3Tns~o2usjY zpCGsbkX#9h$o-46`vtw>Wz!ZZ+ZHAsKq9&hFE4_*EMjetW^M-5!6_(W0tl6EQI2f( zzg-kQe8Ef2=iShI_N(v+z*+wD=-kEwNn8owO5p}^-3B+q{TK6SW>{PGT;pv zXC7j}TK?TSB6a03m}75i52yROGy+@@=udm5qCXxY1Wvi(f`_m(AY6pgN0&HNOh_ALY3VxqF*LtE`)0pT$ejR_sR#9gW{Z6HSDph2!cU6a1&(L+(6Mh`Xi|B zH3UyEsFri71EsW9fgy_Sc=0q$ffKRAPV9M&NCliGPpCNG3`V7V{%GQ4jMNfpI$R4Q zXx~7V82qV$XJBPewHI|N)mcjdZ8^fDQ<`F`F4aZ=TsVuHmO=%Spn!g8C+a1T0o**kzlDW1TjE_aZ~kh=GED#7QnykTesx z-G~mp%H<1<*)eL$MUoxD-83b6TaUWj8y7!m3KCa|cEvaT6-BW5Bb+_bU9hQ(GHXO8 zB!!&2r-M(FvZfqyCGIB$Jty4B+bj}dAtD*@+g$~jfkCk^9x|lJAvJbOC8hwxiGgp> zKsRvekq|_HWm%Z{NL9aX*Dp-RD8#HG<7yA37MXDXi35!QBpNZNY6s{HEenyPrV4n{ z%V?!5Y#M;M2uzS6YMxwLY$TeU zE)q@>U=M;^ZxMD3%p?#TIon7&7=xKEfcC%VUJP{Pgz=+&9lI!&nT{b; z^Du`z=2oWOS*R2+iZEye4)G}XnJ_YJ@TfpFLrr2FSWGC>p5v2FCb$s`_p~;=-emy@ zy1)4?p6QqwMG=oTc(dDjAU@Ctt0I{3nC$V(9IHqsNLIj<1VSl@ zb9w-n(fBY1R5O|Ax~~}+(MbIDPY2ZWg_Vehb7;X~QWW?F=JR7 z2Bg{E;Lb}y7V`^KpY`uS=wry%x@}-u8@fC_0ziRMW$4d4U~jogppw zY^R@)xB~klNsS%(Gbc)ps|GZk2ndZ4$is+WO9cx-2#*e^#Y{t;Pk7YzB8i5tfM{wd zh~-x^4p#EMCtIn&EUA!Sn}aa5e9FMNWTE^nId%t@!@9?(Q1hM#@nVO7trPsUEyhCFT@` zm{-57VS8(LQkcPOys3a|iwR+o4SMXwDGAEBd0Y9}KY)oz@wW1}Kmg;Yv9wH6gc6wK zD)JYzVwt+R^LPpvc|rE33OB}6Q{e}Dq6wv_kfaa@f-q;ZHL`B7-B`aDlu>}7gAU0B z1o5vqL~#I1iiyLnV={fA!;0A~Z1=cQ(Yriyvo^9IUbTNA^0%97q$TE<9<=Ub!G+eq zMfzVzzKiKed35S<+O9YDN?j8Y@o$pJg~9?WT~1R&?eAeNWg z44LX<`$+f51k#31^~VFr3c>?n2+a3|_CCI1z)7rdDX{$=6;8IhuJHlw0=|GPH*PS7 zGhOvl(*tvo=3!-u18RkJk*KN24!?jX(z(zEDr^$9s7K$GkhuowXcRvuM3x6o!s;$N zdUEUO=btL!Gtg|$%|CCCOpBk&wPr2nG0m&3evII+3EMV zg_GDM4}*S&5@BI?9a#9b_RZyCq>k!;nC!n5$&ZpW4^6Y`VGuCM+EnFCFQnqi5sZo` zBA2Im_AP=l^dy1BJk??cix&@OaTQiqpm*MIZ*1QW844<*t1#oNhy$ar{ybYq^PE7@ z3C^(ayMUvmh5epZj1}YrCMktA`2>T^nB$)-U=)3wS&MwlG`><)a9U%Qz%pCw+9f)T zBeJ(&woTV?T48>PxEKZJy3fwEeGGrbOb~! zm~EAYgZlIh#%|4}UzFJvXN?-w2iI9*Mhc%YxEx&$=3d9qwcsG_eVd3by`G;wj49o) zn__s~lr>>^t2m06actrQvF02c%B>b2mHsyfF49TU(ch!wA6S^#25QC4DE`c)WfJSw z_`>(n8YO;x#2a@{WP+IHWTC*h>I%lQuVJ35`2B^vnLT)uP`3egme;5aZcYNj55Ibt z3XQtS3Yup+>uVO;9VeX>$)Vv{M$d?KaTObRhG0B4JryyEcmXtY#PZ;MO)|}Y_>WoE zV>(rypXfPt6VVurv_`x7jv9cR0R9fu;T`!ln#%G{y#mZ!eB~rRX;;LT^XGeh1$~at zFNSU5jLWJ`(cDir#;njZHw*nbO7MPSbcy%urXaTz0Q^gIX9I~{ud*^E$RG>a4fAX+ zWWOmms~0+Db_Lof8CaB~oUzR)P6Zy3tbW!*va&UGHCx0?YF>*CnIS}#^i&~IsCOj$TO`$MswAb8L=g3g=g-tb77jPptjfAWiwKVcLcN)t zP?EHvJV^Y0&85Fj5862xnpL4JDpe$H91XFkQPd4{rr!#F$B-nq}c?o z@NsZedd4gMHj4f8}4H@j)^uGU8UVGCy z+hwt&-UZ=F=D&-8rID~JVb+h(gVKWrWV#GWb{drFHK{Rb(4tmh$YsD0QiJ@Z2l(?1 z@@5-;WMh=hHK?9x(B0KwlX5|(1Otrm2I*oAGDVu?^ED{t&(JEDV1?H~viAezjs{8X z4U!w{WU@9W6d2GTA7GxoKjX6l_!1Z>!eaw$SJE(gVtc9U>ledT&PP@C7m!fJA92Pe#&ydxzG?MUz#K*Z9L8%d> z3k}lk#F-dc{LD1{>N|Knuj7eXmfsmQW9E0`+ejFX|N86tSyUNo9T0ypj5-T4WLq-F{loxQAIINhScN(Q%TJexv4seko`%GgaV3_BuPYJ0-T}s(%~Z}|5GnWprs+Y(v@;Fs17L)M9O?73xtOT zhY<~_%Gh^rV9uK_QN$@zG&zQ8c3J?s&&ZWIqt|AisU$*DSJv&D6}lz|n|(QFVj5*k zMi&@KuveDU+C`JOV?8CLZwuT~oFV(5c1#r zWE$WNUEyZI)P4KA+@6+(jYW$6VZ}M8DVa$bx-lX->em^^vXY{dSCM;%sv`$knut7| z;aAivpGXkJvb+G5D}4swrhx}55THTSJ2fq4OU$wvVO3{MN>WWWx)+o%Vv-25X%K}G zl!j!)xY<_O$?0B2OKU*q`>kfB*(lAq40X&csGti45(-GJp6|<#cc|@7BganVKf+m>+VO8T4PdL;(4RR8(*P_;YA5K?eQxmYR4Yv*^sI8c!}mg)aNcEM;TmV1avZ z^ziH3N{BJXEIjdc?=a!9XX{lo1D6Kx=YqNn@fczJ=LGedQz&NgsoY-P!c8+ zDI}XAHHI@?T7V%PHQvDKkfm~D)f$RTC0FS%Q$X%Zv{KAmj9N^L*Dz1<*P|}@4mo;q zJcXD^Jv?V80Us@qFCmh7KB{77s@T$IoNhi5MH~Xt0vkQde3zS9@r8SI^7dO|go@b7 zN%~0yo|;Yfz=qKn)WH#f$^0K$%oFFW3Fy|!a`N`J2}@Ff7Qy2LWid`5kg+@|sgl^V zBO{N>5%BIp=5o3PZgJQs3P*l!N>VXo+b|LfaI_OJ13x9dR6l)MS+RI=%3{)mTH{%3 zKH)2NX*tXLu9OYkNduk}B78tRZJS8y7UATzl*D71tybaWqzZz%GB8Xbjc&o@AhD;n zHo@f8%!!-XeHV+CZemT{_^O7Hw(=c4wFi1iH_W6Sm?^{EeY(e0UAvoxZl(6M-s;)K zLNU&cKn-^4D%|8HxT$MU*prd?lb4yGgT#g?coN8Ol4w^%=zFlM^($pJ|4mLcD+fgt zOAcb;yeWBk8ah+kT-@5<!20WHx*_f|bo2YA1uj+$<*x)Xi4x3!H+F(pmj5w=}tp^4; zE5l(7T-svDD|~o<3@}fP4P4rKcLyL~Gp6(`?G!2L$_I%@)#5rPhAcSIs_E+wSjljZ zu)@d-z$wwH?g%m5LB&YTY)og$#C zu~pIxJ`sGBpUJ=Qc+EP1)}-5t4Wiz;qj8Esq&F-=vy>-@j|R~&o6w}}bv*2N`JjoG zw(cdld5nYW*DdV%P53eRmH1H;2W&U1gpT%wq<66J33dt~5S=hI66i);+KT@sA9Osl z-%*WuO1c)xM-AC7I}>KRFyxM71)F>g@Novt z9R&8lERLyk6MzMqD^#Qp5_4fsHCuFJ7d^>R-c-!()yYy`Rm{mmKNpOHQkj8)LY;vI z@qjBD*AX5Bq3PGr7>Ylo6)gc?S^5i{N_83xoF^+zs(307+obbS`|?`K9DcDv0~cBc zbv|ei6AVa0GieHh9s(F>J*5taJV?=fK)B3+=;y&=N0k_)6Dzu^=k_P2ds~ZyK@0OY z5tJ9+0>%_f#11530TI>vblK_D(_sZ7Z1h3g;2Vng8j9$KywU}IW(fR11o{eh@Ed9n zFjyySut8jBhrGfGe)=N%^&OJ+ljol}c|AKB{NzTo|1a5p2dsbhzq1PTWd-nS@xWyB z5YX->tkv(H(PNm=LtL$cyyO6V%68xQN!HlYpA{`KWH-h7-%(+7)1h#(V|p3za1tkj zlE_qN7d?(dSgnxVyziB#Yc3YZXRZ}4^4x$EHLuHy6^;22$%CyrUSg;uK03{c;&2!n zHw%Q8yDh<0RcpUSapbO05hCCH&;}gvb(%n(*dT{bN-gb{)M^dw7PV?7BXd8jKd<=Z zAyqBf)oN8O(zL2YKc!OC!u_A(x>U()!M;?=YQeTvN^8NURZMDurd5nAB)NovDq-09*}v$AjS$!)}~@Z+P~1~h3XK)INoKoq~STCV&l!=7o+c~4gZ zk{t!VfdFcBl(RfT81E1j9GW;Ou{)4~gw#KgH=^;S%XZ*>XNFg;q2esd@2AEslvZlEJxr%=_xD^4w8ppNk|Uh4`*CP7b{Ya!rp z_z=|g$nZ8bKf*hDq=5`KUM#i^7S|4geP@FzZQo5FPr2rXl8%sGfqspeVYcGRZI2o> zlB=hRIH>Z1B2Lt2W9eo!nlB`hZ&}hVo8EbWdmF#1U3#z{v9`}O+Fb`|r+$|HQ)Aw( z_j?&FZfmkrc{Aw(LdK!8z#L+$C|o7EWILWecRVqDPIS%n$m)CZtJ=B=v9nfNdJy#i zbhFY+oPmf#{g`ES_N;ST(7?tZ;*=xlt!ko#uyp4S=mcR-Vxr3CL)7cJU*Xc5vekWe zdYWn#U++x7O!Z8g4Oq}Tj8VAV-4PWX*j=eknlZ4@&NV#J}(2m+%sqcXTh1 z*cJ5>sV~0ijqmh&3|AmXxIDC83t20>m2{XnN8qLCX7CaTjhA#hU>OWA;k@VH8vihf zm$V5zhmY?eZmaZev-JLBUc!DB!cOxT7DAA)RPiBSd=1e3#KN~Z&{=h|Ppegk+zGzXN(rJ5i_Th4w+MwhG3FI-(d;Iykh;vY`hv;mOGwY-as77P z5KZXg-AxJSk<%vfr&LycCTb-lTvsfDR* zQe$fMB^goG+W2UzMY5`uQ4SA*Tu<=SjLr?e$yx5mzWbCC3D;z~ko{D>Qg66!SLXb) zAGgTXQevxMl{i37@D61byB8gfHTd?gm(V#tBG^$~lD$39$;JC+unf6eQkhD6Hh-RMj&$cCl$xvw$HJu`38J zq!H;Dsk>;l44BnJA@rS$!N5pR^+)mYI`Z+RDp+qjZsSdV}*AN`wvjtp(B9b=-} z;e(iP)C;;->z`WmObJ;rZ9!VRyEfA5Ep*w7fCc`bVh@M%62FYs$FQ*yc0OXqbJ%!E z9WUXdMNEPpVNS?c2?ZZ9)0N0r2>~A|`XVAhg2!XfSP2Fn(Vuhhcu6`hV&er^0uC^7 z;^~YyaLsDbN{UCJ_0U^& zh|p9}4J{cMjL3}K!+$&?h3`;855ZxFVK5`m7=b`K*WLVS5#~i`6mI5bo z9Vg;#bWeBE7uo&oIBKNQ)oF~UoCId37+7k*aRGcOWZxF7kvL^H`+&?d*I$?#%`p1&1FqD7+7 zTZMkqy|jT~ledmdcFNsxDPWff4C%2498EHeYBlrTM8;NP4qn+F4n)+=KhKw#%0ppgD#+xcYO1nB zA>3*!#F3_RUCgl~1Nl5?_f!=Z7~V$XU*ye}7@v6Xhe2Qp(Rp+%gJvKCm5TfcxxKrf zIzabCRv;yOzh;7eK={6R`#v~(UP3(Y(SMce^Mdf7nd#Hx`RDYs2#AwEpO5GN`aKg5 zd5&NldLC3d;=6>Qv0K2yz^J{{!q$~{vtUC>m!~Saj4JsZ1nMm!_&BU&{MFtn13F=h z;nGN~725eR5Iu~AnG1K)aT5P1uZOo>{86L;HG*GJ5XXYF&0Hm+WmFjqd>)hpHtW9%3OgNrmRd{Y^)lMzGl+K1sF;F3OgBfIpf_gmpaSr z(Am;060`!7#|$$?%D168CLKWKHP)9T4+O@7ArmujE&T1ZoQDdD;A*Gs1&CCc7d@g5 z$^d%kjgfRnztsZS;l16Yr8wA>Ksf zf32sZ`3qjgAiI8w>^4h&iadwYceq~)wfzgAE!PE>_);3pYfVxTAU8Xy&GJ%hTKNhN^zlT z{$mr6H2*@@;98{u|l1 z5>!JM{8LWR4PQ{K!({^C&6=Ee2$929AQyL3Jt64;`iwh&F?JU>mY-cf#~EGw(T#}iSGz)NPNN&gV{IPd%ZR64dAgvB-h)v) z%p;e9?_S!E%&*8*-)6l+o+5IJ!}%4b|3<){qC3#nv8a7ljv&)2S?f5e4+$>S{~8Mk z8yL}Op0WO?X|IbZhVZRCW1W9%5shA+kyD>nE~EKKYp2{vjBJB+vnE8-kJ#SPVtPsN0!8IquO{6m*QP8k>0m;spUSMgxxvMy0#lm!UM7CCn9NXBThBT~J%xe^lEDzkOuMt1M3e z&x76Go2!1Pc^=;NJp#?XT7GWpK5wtB7pGS{JsxYV-B(`gR}ZhcEB99idGT8?AoCF7 zJAnqL!XEno_V6Fvq>_?*f1gGgKppJD>FBn)_)Tl&Q12ptd)?@=C_dz}^=L8BLjA5X znX(ZsFbi2*_QC|3kpk^+^1`L?0&o#6YJ#wd3sXRbc&uV0$>q5;s!57`ZZdG2mHvi4 z^))vovfW7U;+weDJpi`6ow5{@L7a3OiwUmrp4E$)pOtVI{2^s4J zn>Yq%{dJ4f=U+yFonPy@h^L#K<1 zUW{eR*rG!x3yqSNg zZey`7bG@#&@SP!TT#+Rq(%( z{uWUV#e+O~*0m92>#0FvNsBm33W(YL6PniO!io}Pk(40qd-l{;*p2J2B;mQ8j`b+#6&vPsqurC3+-qZ>XJykO`EuLID%Nz zigadI?~5uM6x}WuD4sN&GBIjjfH-IE--sx`6;H)jj1U>c(Dk5|7cZfd=82@FcI5oD(WoceI-{P z+8aM7RYApM0dw%XD9)x8<`tmZ;7o&(n)k;cVu#o=dwjAK5=_I8n)SyZ5`=6pLm`!X zNgP0?!IcFcuml_iLzr?9Q*!!YCH*m36;fCi^V1)^6#DB=^(_~Lsvu<7Xcj1>`U2LYgTMsTd6< zGX}DE!qB~Z2&Q#?bwyW2P9P}5Y@Q@15X8kWy)KU1hf72cawBu{wC*-~6*OwYb;8-D})`J>zM2)U{`&3*#MeT8z(Z)UIk%`bH}+HhUs5!LM>uZmRc`4o>=v%Wsm$s z^JnH?p|%ooTb>tdoHS=Iy~>-bVfJIq#IFCVEZgguJ5@y{6H7eR=%_#6LmgV~t5u*( zQxUD+5SZvB?(GLDC{&XO6({_a73i=ut7aqM z$?aD}=AruUY*it&Emnt_&RZ-qGRV+La!p|2t@0*9c2~w7bc}JHzjr`#H5ii>2ztOL zvqm&^BK9@67VT|jT}jNzk&w%j?M?FVn4`z^>kLwYq)N2NOsbuJD^mNC6zxu=G0qSp zj*M>{pi>ak-lFGVMGSuSM$~zzvIuqs4kR-NG^-gCEhyLkl`6hZLbF9Y`Xjnk=(H`B zeKC*0m+&)^i0g6$#SF8^xMJxYOJ?-2->`q}B2N38O_>gFcUF?FuZvVXVvyn49hX4J zZoz|_n~LW1j;wgRz4t4p=Jl{j-&!N}Q6`mPA=qX68vE~-eX0wu;>_*Y=N#4zG(8$$Vy91#UHKS(&Rmrlw6Y4B96+^b%G&6|C&| zb^PH0it#i7>#-P2M45n*M0FU;9JR@!Lg)Kuek7i0G)4_QV?2? zzr>W>x`moKLM_@qRUU%SwG%0sO-W<8v&t5x8}IFuQ1)nq=le@JZ)Q!4Q<0Is5p{DJ zYs`r9`nZl^PRbiS*T?q~Dfkj4D?dnn#$>Jxh38YoA;q0hN|Dvd_<@hAq-nb8?k?M7 z-kk4SWO2h}2ofz(w$f`BQ!cp`SoCy(CexFbu1n1Q=Bo{#rZD}yfhV=5l@T=np^l0( z2j{&}e~fSp0o!u7g~vwhR1KXI#X)ekV%uzT2L_^G;L%YZo%PH;t=b6O#NJH&G6mD; z71f?W*-Z$pveG104N-Z!P@`ll?y3O%BSc#aP-Tc+km!XuG0rSr^U9m+_Wn5;p|uJF z6{U3#k!@XP>^`?XoN3;I4I-Ps{V|X)!*y{U?&g|ArZ5(74X?2>N+LVzh*FF`Y)4kU z0k7N;$y5#8qn_oyv)Nw#TK4AlR>>ZrG;Q%DyK(+_P#J|#_G z4^~3cM}p;uBF30F$0gyA*}0b6(_th2W8|g@EjrbyLHy?Gn+eMoCCUtWg9p&1C`-cC zA)M_}W$*{F3E`=okK_JFw0;)*e8R526JDxXH6Lk;Nsw;Ab^aby1CWySsMn<~&T9hV zKn`9-(0kh*M~Sg;skOFTm$J4SCrQ>4K%eDiD%&WHUEX#ZEQ-lMn6_5bG1L@4)h{N7 zWe)G#JPyA5SHBLCXkpx#=X~gfF*{+MZKg-ecS+4kCyv-V7{(`ZG0jJ9b<#X&yUMht zX?qK)NY*DA4`;c{pvCt{a@r?U$InJ>@a>k4;E#zRJvWOQRJ2bYSC|z%x4e@7V3qCx zr`9Ox#z;j|o7*z>iCHV9TMcBgU7XxTL9A$nnN+6(+}FNxkzeWq`Nqa{GCKkP?jRATj)p`$!YCEi-C(QY-`AHdwLc zuARMakw-7n^@0}a#xB7q26YqLgH3O=gnSd8`SDdE8G&Q{#vy8sj0*;TpcLo2Bn%<= z;*b1&6ts#Ses9{Y9?e*bH=fhfwm#GX<@$b01XdXOt)1y!wD7-}~ z(vA|4_5t3ik4ZI_4q!tD%1$K$zB$fH&_THq`%04MB?{y37xld1SBa^ z)s7BUbmcmoTfKD*lb>fwX=%T^i-nuhUnv@KJa^J%V$L#~$!@vZ^F$xw4KCLHyp3-a z(m+f3*N&C_*#}sKgny4^u7UP}oqkGXwPR$-R_@1NxJaFaJZq!PXdJ-N?-MXRkdO-Wll@z8nIf$^QP;q>fB_Rp|5&W|kwi4~Z8mQNL#|(?WYj8tO zM&K4RW+sgt-Bn_zUw@kD@VG>7Pw{yE6Wb-4Tb#72oi`B-E7im2Wp+r1B8k+g(RnRd z^g_Fv*TSCl9=`dhl?0=$n*drY;u8i9yO6Cg%v5@0D}2MF%5T{4dStb ztx=~6@e*IEpfILwV&G=(Ax7-&9FF-5?#s#;VUJ#jGbHwRg}pfc+=Y#wQDP{6Qi#X- zml@63GMy!10%cKYqFJG$jLVt;*I^|=-j2Yxou!-P7~?A^4%w2%ZIl~2n-iJaIX6zA z*HT#dL^}FS1bB14yP8TbzxpZ$ z#cyCq83N7^Ocx&vS=#+$*+;Xg*<5*B0qQJHK5OX8;~@tyY+PhM&Bi-l)# zV}8r7pfO2^F5Mqag-sp|p~2zd%4!U2;L=O&2aMI5Uz?!tvWi$ zG{syM8S|!F`wh4;d`Y+t0Ht-nF@7htNMPhK&wCb-lQQ3Lvv`pkwYNK4qc_3c>*V3` z;g2$r0c{ceHD@vv&x!h=@AI0oD?M0WCUgmn!E#eO#!BzmB3h_ zJp&IV7|xYTJeMy@DC1{E+I`iYvyhOIfnI6HHuRdWGD(}8AMy-lN-jzKk|YXRLz@8M zpzX9tR-za8jy>Y94!fh+gFIpy3M~^>)L%bEk!ljtRlAehQztD4LRozJ<1-6N0`bgS zdp{dV1#MGyd;GcUNsIF)*2z^$hK6B682Og*p6fF)jJK%zYg|ThbjfVNr0-Yco6}=J z3&hn%zY~<1uhmrHaSbk)drE3Y5SoZc(J52fZynfnhBO_pCV_L4fQLnnd7a=~&&V@g z9kdO4&&d(<6?eB(@YdW5y=~CHZ*k4N@7mPNde1V#5;wd4Gir3`XRzgZuk ztp}?!)-%NlR7Q(8maC2*AWHbFF7Uf(1H(zt`)ISn>;5I;J1A1Nl{bbkbyp2vG(X>s zylxq|TjSDwa@+Um1pOv5MByM*4LWPmgM455B=+T=EQ-%(4jr!?+p1RIJfJ4mhGdTC z-+%!!^C8j&tvSxTWHHhg^G3(Fli-nwh_RZDVd*_aV#%QBHErRRe8&9n+|LeBePE)m z8*$&k`bt8P$Y2JXcvxv8|b&f zU4Im!B1~h}4J98cJHy3U&7Q~{dQ@Bv)N2nP)apLNH#Z|?=4Y% z@U_==2!l^#Rd3Pfas9X!z5J#PMz0dgU z0;AM+lWn40*p!YIDgGa8v_VQ{d+7Qz@Y7Z>g{gp9A%*P^E$3!Rw1L-oJwe%jWA_&_Wr`--{o;>E2ud|*8 zwFchEm%3s@Gw&hB1AEWOxcA$;cfuKpo|1Zbnx637qi24nku+2Y?Ky#XlQl1+M}IVz zM$n3OWE@~8FG3G=_physxE_9vR7^D4u@fCwbBtwlBF23db25MX5@^>=Yt*t@B_dQP z5i!MafgrsH7WG+SDfJajZ|)QR}xC0KU23O37o3Q~R} z5;{vfT-g2s$V%QTmu|0ucLMWbggQ_|YY@hi>@{nQ^lWK|C7w!1|DuQAdQn!%WE5Qa z;!!*!`{2*9hz;{!$q*IZg4idlH&hq~fD378jhG(S%sH2d&A%R!vm6_&!)fH}(Fxh{ z2<1%PWq(odm6_yB6v7*4&P{C7-OVfm`GF^t-tgMoDpyrKl{xT33e3EzZlXL`$GrZ| zs9IWhEqFSf$+M0z=dovh@B*GpF^J4AC2k@n=@ByU*&vI|d7#uqw2e@TSZ#CY3E~3P z5P9zh0qT{FhrpTqy(N0r5~YXE8fz+7*}a}x`l`{H3w)`gyTnh5#uq;@N0O0P%8CXy zOeUh#Z)Fcr;K`!o>NiFAdJx>&ZETBCJgc#@t}vr>AbRH#`FFaYu7M~&`-*&2m(BgNwG|Awwz9zPO4mtwejyAch+G1L*_0L3ZfKR@UOnCvP zjQLiYq`DvKS;2c`sX3d56{+to2P{bxwdop!ECM44Dbfa0NGo?U`$F#$Ev9J>SoG)@ zC3|9i({x~B`$n#X$y?>AKnI1jfHGSpB(m5dDbm+2>+{DSreeo^_rG;+Xid=(R5g5; zW=&YrMdK)e@X>FN1kMXbMKVtL-^VN|FBciZIIB`w;Z`h&UiHsG+hek(I-vqHG1^;Y z73}iP&}^8*z0Sc}BUDE+lpopdh0SA{?#|wY*kX?rRIRYBoS9fY zQC?u8WmDDj+2$D%_D*6g12)}gp6u4*u6{Mym}aR4k~HQ~qs$pKn!a|bz7OzQzk%yx z`4!ZY=FWL}gvyl{lZ4ti(X29pf$8_C2G#xRjKCsTC>HlKF~;~4)mC$5wbwxt#blZ= zBK_N!cmzk}BpqQ%7t+I%s+vtH#7Bag_J;NtJ(*^nFzy?~z zMzdF~TaoHAjgtE06;sKTA;*i9xjENID_(Bz{i-FZhJYYBjk!B2^4!L{Ftx?6&k<%b z685ZLiY`cV4S~t$T50g=GlnknxaENX)%WL}9mdC~iJI!KeSFb`|M^R>*Ly-c3o&Ls zs!r}9bo?uF%3`nJY;m;Jp9fw+CTO9D^`7Lea~_vURRU4`(qmZF{z<8Xwmr6XB#J^= z=m)d@@xq#Q%IZ1O$s&gQ$8Zl2DeGoAaXDBGZMpXY87%lhIZ#@>OWVRRhCx^`q!=60 zvqyH)q^{)k&5bf%$+TUfYPl@32`=mZ2O2%?keo!ljxqZKcrx)7U7QY0j8kfiXdkR0 z7Sf8H%O2fjFq#5r?xv3Bjl%6^*c9ex(AMdQoPvfnb3eKl@Qo&ROVN1RY;AFKCm#B*zIuW{DpHCz&aO|s)Xx979rdD;8Y+lL~>h_bW5 z(P3!RW90l2p73lfcu5AbT#W|qvlVlCF+tDc-hXE;jaF_Xyb=P6;mC-Qa$jjksBt5Q`y5797Y!~85m)l1xJ`b!! zWn{*{z@B}d#n7|vi)~NNxI5df`+cXg$Gr^8llXwQQdNZTmRMU=zRP|$ivNQ6PEE+e*$dO|gfyu}-<*)mALC*@KIkWP8S;{dW7$p9EuIA68%DLj_s+n( zIv5S*@nIpDA)z*CaNuf4$rZXfxEESWM*Q_Q zh_QIM8+;2ht^SJf0Rx^WkNzQjz$PT|5MoY6%B#vrfk*Wz*B+NN7_Rg!wLLfRB*iPB zh zpx>oMAenO&tp40V9UQ6HYm4?WkWjpRkfLl(ltCsX?B$wx8gw1_7Nx+T=biahedYat zeFAtn1H2x%(=Ugo=B6Ia5~iqTAz)|3J8a5>)2%T;miwO#IWzqD|Mq&EQFcsOZ zs@3r+UMe^s=z=N}}Qg01y==G`DB`XPpDblMS-F#}1t-4Fo%x)crT-loLIObkYlN z#>ZyDHS6|VpgB+lAZi291}Kk&Hex-B?YSe<{WrA>HwczzKG;*xh9~Apw>c%HRZ8A*nL8s3bOSTzp^(g$~TUyvB?2r*Gt$d)n5L4F*;;{Dth~%UHjs%$J zr?NnFn#us&K25CvoO4OY)no!2BG7fo(ZOmH64Z5BvxZQX#Xo4@^6ZU)*UUWQ2yRKB zS0ow-=&za_>mmdV8fJuVFpSBBpByj=gm@)DoT9`I8G{DMpD1FIU=q|IX;d(EWfz0` z)DV7&hs=~z!19wiB2o@8pP14rFgh}p4)`lUmz8w@%15oIeTc~bTvNLu2!}MB1#>nP z)b`MJ+v^E4mq9-~$rk|Yo{QY3P1zRmp{Gv1fD>h&b>|fGsk=j06GmZ~?Y|vaG6QE;X zf1Wc}>y=Ax9tWVExwfzoYHq=o3%V70(Xav~ZBstrx*)qET`&UuNJou>FX#Bo`cmn^^+h}T)uz2+yLzt#y0j0j z&5%BPJ)l0IuhdyZw6F?`vCOx{)%_d`Z2RtuE&J{ZuA#S!GcJ4{eba68@cX|ls{r`i zf*&w@Wx>pQ;v9kYKL?Sw1@3`}feQ1vE-bGMo!~wkJ23pRkT44KUFSrv1fB3cj5`Q^ z@zb~9gykP+NUy#wl&@bdn6IEN9IwIq_KROGSf9k5ke`N~n4idAh_Aq2_6N9+N|^%U zx1jzye|dWdeZW3lJphP70zxmrghhzK0@M%X{rbfUOA`GO=f(Ts=f?YU^JB33rE@`q zr4m$#-*|jb-`&&t1qx`rvSVk-`;3#H^1!n?N#HEFQ(65ZV&Pw#HZyu{TI?F-51m+&pXpAmlw{b_q)`A%47F5<+=I3 zK!AXhe~EcNf;zIse`o6%_C+0i)s~CXttp3p&AoKVeuy>{fn0o9Q41R>+)8G{L zPk&Q;=X+)IBKYLa1yfiegz==ACma|aJG#f(6_h>ztK)mEhgqXN`)Y^{*9qyQJG#KgcJfp3)mDoBRYBG$8TcNV4*DjYb+ZIDa&UjS)9 zmcN8GeTt=6J!@v|Y%$w}6gUycCxCE!f<*VT0dA$#%ioo`T(d5}wL|7W*UE-4Eff)aY67 zg0H$9o@x&?uooJ52VDivbTxd@b?`*j!}kdAJp15xZi0__CtA}3@Gm#RyWEQ2S%-G@ zdlshWSO}vqkxsG*{gFxZ0;{G!uqgeB#n=iKr@vw}@n@Ex7cr}OiKXc;EJ?4hdiooy zrI%S9{hej#Rn|bSu|}F^O;li6SkI3c=BpSCv@n6SG6k$c$=XaXu zgUro_n3pYKKDLyOF+W?z0+^HOF@m(RetH_M>t|?xKSx{p30mDF@Gg(R=X@4^;Q+kF zp`O)eojJB@WaWzCWlI(hEgD?7V4%ORcmBMd?yk9=b2{4Fa;+`R*`~&ZOnqH#I#rWQ z#ADS`G$MvW!GPcA^|)P5huvnim`z55UZ>TlRaHubz^Ima@}Az&{!Mvr?|9xI^+^^n zZ&>=ml1!d#{)l81vzf8FQmlMcI#2eYykmIu2=%m$L% z@K0Jau|A(%F&dF9-}9e(KZbAezTVMD#Ge;p_&11G__t_6T%WfLBOEVy2wu?eD96#l zFWL}DZILnXiqU+i{D|M16!Kv-v16wdb19p$95Hx%`|{*CLWW=D$;qR=(1zyFnNOxs z5DV_))F_i@jz8y_JK^m1ta8VN+uh@AA>g zw-L^;0uPEl)h{78B-X!aKG#X6teB!X4z8EA({tm5nBTj0Q_=V)_LUnzWXh5^ycF?A z@Z;*?AC^VAetZ)z@+N$##6_ICaf4jdeF){!g~@N~2q6(jIB zO8L!r-`E(hR8awWb?myTdP$tZTioXzX-ni$ygOD`JG5f7zmHodVhX*ZGtGGYMBXMh z<8S-(4L;tIpF>NWvYZ^lN5iK+VjiS0l{v{p$lt7#hL#s?WU@@-BgOVDoU#iR2ybsU9_^vEc*yTvK3aShX|4Z3>dB;`=W+h#Sow`}6@Rn0{N~i>;}Z1h8CvPDqb2?r6zj$+ONpbMbJ3qm2dr$WnKF5ig#;v`pgUL5a(*tk9`gO3)T8SmpR5=G`w{3Rm?qwH_6wYu83 zYT|og;_uiuHratxdQzx?*n({3_A)YBl9H^avKt%ZRXO#3Mv9ejrltn_hlzv_8X->G*bCg&aeEgcvs3SKaj>##q$FGJoC8lwAX{>*97rcx#?{Z<+jr^j%45P zVmV$+lyhD&`gZ@@cuF=JVnZWvpXev&ACcJg%a8Q1>sOvR`mhB<`RhkUAH+&`@A&+& zBh`2}`ml(pf*dOFPz1^kB7fj1t-ymuj_-fC2TS?#TcsQzKd(E=NDkAK!x*hQDip&k z#f;)SBfJstMp=B*Q;w}fn5G!ER}PbZM~DlgM_1LO>CyHW1f$?T!g$bw2>A@A1X@O) zFkmF=KZ37T$iYY1-Xq!`e=){h#ON6-mUz`n)~n7O{e*$=nas#&KL4S&^h`pJqY{jF zeZFUSbobcg)c6=Tn!QlXaGr4moyFaMUi3Xya{KwQGA-~JBnFS!)7Wjko|HqZrIUH%KU?zzaf^J0fHaQ-IHc^g3+CLR6_lh<76^X_oH zt=Aj547lr%Dt+f6ZTiqbOZxDBP5J@;Vch9;-B(Wz>1Dl$&0cg7Q@WWt;g1Hh#cI&%^ahn$V^Aoo48#P(kYY$RWWK7kgj3z*R_z;OF7cqsFqfgEP5|L?!A(N|^g-@SAUD@Pxe@4tFlyboZ#>j)+( zH{t$f;4tRP+i|^}{-=K|RCxIffqb9&N$C3y?7;Q_lfccuL%D5=foHLQ-9|8#5_SRj)(lwi&IV6!uLU*}IWz$Ba`pho*A)O31MdS6 z-@O_56_E$e-kktS>_b`n*8|UEUmR;o!2{T@t}gCbhpU0d(UbHMMbLLdM}bGNKaR3i z8-Tq4(u<*daRPP%NG}lp9wADKz`aB@4glp!X#kWXjqhrQ0i;#e2RuMjzYsuqGNS*E?mhAw-TOqd`WZR|zP>1$~09KAVuy;PE7QlC% zkm+0vfUvF+0N-@42T-OSlzpBEAn*Cr0N(XB0FX=HUI6*`Bj15$U=+9-cmQ}3K)DwL zfIeU|a0h^N7Tyi;D`Yfi0GfeOU^nnS;Bf%oE(!oWz$9=p@CbnXhm=4qFajXnVtls* zah5_J%XR};`x{1n%OU?2u%VSmd!!lI2Vh5i73|{-+^UoN4$5&Z>M@QwPKW@$T??74Lpj!84?Ff4b(l;7_XGH5BkI3N z3Dg230KU5b-)$ZNklz;Qax2QR?Ro%dY_A6Jd{Heh0_+Cv1-=eI?mH|%8!!%B4crf$ z0Fc*C56}aw2aXb5+zg-|mn4A$0Mfs7F@W@U)dC2+jEZ<$64(u#03eIY1HhvISzkv00MdHrqX1;`F4*(UhKJ+;HOFx=@GOrErV>j-vjeow!l#Mf;&fL7;Z;S0WE2#Tq_epDe<~Uy> zv`f)=OLJ?kwKbcSsVO8l9VS7F#G1Ng#HCT&mvQCr?n&!AS6|{V(X>5MHvAT7I*v6uMR}#ZVli&;a zLjL;Vv!>~73(mMQS6vruU)dV34@rwWaeFw8iGvD)sTcNP|F*MIA|A5n4HR~T4F;Dp z6sof@CLXA>S)kkQlT8_`4Rvoqy)#@IZK%CkRWGza1l@wHW0zVj*V!bPg$nIPR<{UR zom%6Hhpn~x+H^3L(uH>`-8^8m_474prP`p?i_-MgFPWI$6|!4=PMfysc&4_#;pQl- zjmyuTWzm4z?el2$hT<+v;YD_z@G$nQn=9+!FfqDat97|`I+O8smrF0Y^bF-k*-!Ga zTX8*};bn(5WQEzYikxhoDzl(+xtmOatf;g5m|CNXHYFB*p=$wCt8rW7(OG;3$5x|*Kj?Ma>yjF)!|F-3iNtqhaH3_c;z}V-3sGz}R^hv` zXJLG3!BF3vD(cQ=VMaXOUvLWHW#PAoH;H&E`t@s6ie)XwBE+M5=o<@xNgtZuhw~NBdpbKCF4xAE5RZ7roI~)u; z6oJDUjlyA5C`!V!aze{4Yr3Rhv|TCI)Y=l~O?sQIzP7r$MpIRH)z#HQ7cSl4`UV?r zt!K&Fd0`=wsZUmW*PhdPZg2I5zct6j@F8A~Ckg|?Il?gt;ABDFto9iQ1aEh{d={TB znT*|Tgc%m?@OZWjzNTE1kf2uMrtDy%@q|KRB_|VAL2s^I`ee*umppn^%)6jIIgkxX z^Uv;RIK!Pg#y0zE{HAm)&}cL0Q^NY@q}D0lWhI?9$~uk4!>&r5K8JV?S*P2II(?B!u_|GUmLeA$&YAJ-6^6fC>#@uGKv zh>DHXT6A2HRWzO}`(qV^#9M76Tv2N-+f>q}?4lH{t+_4*|A)vS-h9<21^=hwZ9Rs! z^1qUB8=~=&o1ba!_=oglT_B%sua9YTYP+jC>~Q(K29wbqum-iYZRV!1$EVS&9Il6z zCaci2=!}HDG1u7??AYQ^yZtVU z!QNXlZ>b}a_J~=FpkO!5RcX}hkD{H0oK}sf)2OdB1w3}YRc&!O<{al?dW~xOWrNEi zGz_eW+Z&p5zPa-hN|W27_n3u-1tT$gLkq%s6jf$-S14t1xHLM8U2lpwv@Vx5V6fZg zWJ5K6OO?ig9EGILVb-C`SIRo{mUMU-_9RzVYBAQtFqcmRcepJthbx0lvP^{w)TxRw-pJwV5Yln5NN#0wq!|MYEhVILwwkBNUHttZB+jyy-azp>`Sl7W!k5#X62i!~{ ziJo9kmsYDaUbo3;WX$W1hO1m&r(WymNewMa)a9&+?yKIat=;yPZO!Gd>Rm=pz#zDT zHmf71LEI{X)?f~r1*Ua5O&+bo)tVNYH11}1O~hWH|E~QB*vB80bsenG@~8DC`a@Zh z`1c>G>)#gizbzJC7yJvdm8eTIRaaW9KBm>0({$2i4wmY}`=w&D`Zs%&tY}xi)oy?V ztHrnI!BO^VdQiZr9h^w9SCst-&X{D5W4MT-@siR~ zv1)m!nvgwDw#n_z6^A_X{KD-jj(ifBgN*4tc7w@r#Zrga?K6aYL%YoZGY>O5_AGOn z-F`#ZyZG{e+wAmcEm7y(e~p0C!W%IE)9^E;6*c)3 zk=18c%7c$4xsdS|45gu~X6_nhnte2WFzhkBy5Hox+hkK2ZC-mSVX_&-SSs=TpvZPi z-xvzs>u9s7G%6t!!Hq!|;`<0}Q1Ht6T4(30tum6r$n&*4+TPf}kSEV1r!E(O4L`P3 z>x7jH_XI=wZ=9!f2-i(N=d#(wtX*V!ev9n$xunMQW3d$ z8^g`HN`-z?aF;Y0*p*V4jbgy2){m!|)hPOHD*a^eQfV@HNm{VT&xY|dkK?zqn(8gp zty;Ujdg{Wd8`N5>&tiAPiZ?cA41w2cv^KBR=B$=)es%H1gxS-pg?9^s!tZcOw;eN* z<&_eM>KYm{`f86S=2ExEVs%+{ceh^e%w#(1Jg)4WuBcPRhp#6y#bGBOoLKP>_nc*d zBxGBKt8(Y+75p}r%VH{AG}Z*>%OQnqy%Ofa_NdC~aJlW=4J4$b&Fv68OOjq+t~L;8 zU)>qFH5kb{M5os+)O2|QZFT<3E_L7LNwxpnXEht<`|P2iWX2V7>4b2jeup8Ho>Nmj zFB=ig+o28G#k4Q((FyIoorZ8tF1GZ1_4yZS!|W?=y}_ZK{$Ul|oCQn3Bo$r|UJ?$X z{a51@b00==^JmS9mbSJkl-5{GpJzAVEmuD-9CfV=FwYOJ99+6e#qbQ~DgxG1o`RfOXdX^f_g2ctUmp%P`aKI5_WP^c{=vc4)=nwu>Oa`% z>NLWOV$zl^T1$I-rqWVSa~MITVAO7O3R(CPZa+<~;@U|fQM|I&8L6pdDdiF>!Jp}_ zHrqn&t8%GDtzmC^PIQ@AtG~^#FjHlXNldV&Yn`IsXHwQ}?wfOFXP7Onsq^`K5&ePM zOepKVcDgn^P~30PDADA)OVXO@9wm9;1wn8@6*~k;9w<26skw=Ui+a-y8l6sP9E=1~eq%6d ziaJ=8s;W7i90)e%4z+DLZ%v}1vnFoz+6_uc4E8TxmS|lWH90govt27?BB6%c<+2qX zM%fOdY>C-rBhhbi@Urm=s^w8(OEU^k8m#bjFxRP`K-O`psaTj$#1wT3rsh;~Ak^5p zdTGN&^Lb&l%}OZ}=wCdXXc>u^oEjFfp%}r&+t1p5VrjXkkX0vkrN1v6z+WQRD*J0I z$^uEpCi5+e5ek^p0;NC=A-9$?xBfjRBzA)J)1q68n-1H z(zw=25giZNS_}zmjt1SP1P)Gj`0YNZEBi3)Lzj1LoFmn_Tnvg7woXTPI3=e76B>%w8I%iRP&=7eVam74J$vU;P3RBCxa zTXx~623xaMaZim}d1zQ~h`fKQXKim3H}AWV-+Z;MK2s0Vsm)~SOlH$hqXR7muc_`n zBP-uX-K*Q<^>aEphup;rm*)WJQ^L&{J0>dqs!=eRNN>^Wt!|H1U0NkL-Y&}+#FO_fGq=ZVuR+7olm_1Xh2t43>a_^i2> zTBfu_0xhXXJlMP--8$3~GwVzSgQiNaJ_P;0jy`D=<)1TKZl*@-oi)~{F=VbY)-5`E3`EpW9E?-Ul&`{8LQ^D=>%_65!R??sgF%be6R@B@S$SnP%g3Fikwt0RT^wgh z-GX|7!fG|DOm5p3EdePbE$g*3t`D6PLZ8z3?fuqZ!e#aaMd$bJKC`N0@b~-o@4xB! z=jAr_cgS=p`m#F8Rr-64#u&NN#YaCTm&-0mLF1iiuXre^DoYoWfwq&fft31mcL*ga zx0HBk8U>?(aLZElT1`%$Td>AzTcn1L+H5jsZD}-0hPjPwM|ApeXQFw>#^lhZ`D->e z*kTS(%xe%_5x2gfT8ugLhW5@6w$#6SjbUOqcji1vg8U@>)#)X$hZ@Sw-W_n-Y<{Qb zE|lOdzh6^#XUyw7q?s{{rs6VpMJIb|yegL-A(bOE)yxPDgLu8aHk#aa#=!PqSWHBi zVSZ!hLWj7hE!m$9CWf{y=w9DfeN2@}*EZGG1XB*-rNGFVGo#5&JQz+!Vm5`~PY?9j zU9MDTqUD_aWW4X(OhZRYOq6W${B%D4!g3Y#;UG_?J}lmMLrO{?27b*HGdBizC z5M+kwV-kB%X?K`{vFVSoWG1oDpAuR7du*YkTk1+rUm(C3`8u=~a=Qp}3qo=&R5QyL zDD2t0LLq(Koqliio%)K#)GlW{YXGO3X)vs5_F%32s9ib|Pp1~GpVPB;eq=#!eYR%F zmcHw5VQ0jfYh%EsOgfdzq?7F*>{#QlcGlG`Y7Ju873*GUv(Ia+U(^yfht;N|zUtbD zU;11qULOm_>Ui7nz;3so4r%;7Vf(C^w_2^U+*Mnf@EPyQSTY%(?oh(pa;NW9RoZ0b z^SjypAy;(zv&N^Tk!Z0KXf4&RB^ay@F-w2_+y%Davij6OHjo_J(%-wGzib@!y-hKu z4yNsbpl(RjHm4gyHKA%p6$`|BI!(}hS50nw0nSOC(_XZW293qdx@_huv$CZguW+y#5-|}d4c8B`LnfXoW#H=3n6Xw}7^dz%}qK=$hrKwWL zH+ub#PV0erdA?P+j#Z&NRuWHJJ<%3N0_Bm-Oi^ZyG!B&ecRAZ@`MASX8h0>jDc{m% zLvb9E3RjLpf}~;JWPgRfjLsShdf}%&>Ghh`7B%0znz&iI)2C_NwPk&Whs>WN@QktwCYVmufsN$TCdTEL)@r8b&Eiz;_&d|NM~ox99wL5E?%6gimVIMEBl6lI4Yty!_C38B$3wDf5e}rwEV8aW&t!+)KC;UQnOa0)2t`!bT ze zthXlWT}mNd8*H2(Yai^xus0q|B*ogAq0KXA2JV9#&E%UsXY%bg+r0Y~iqf3P{^m!1 z6kJBv4(=FEHEy`$yy@SuhT7hG56<@V3)QEc?F$&yYV=X0vlPBqk7 z>Y|4wsVZd)9B!~XZYe3YTONOw8hv@(sfd?V%ZHlW4f1)4y13w-DCxLu!%eG(cVYzT z3kMv`(btgZ%?5=<-5IRnXx}CNb=cm{qCP334vuy7Y*-Ly#%1r^+?^H^*e-GE6-)@H z!)-&g^Ot+|Uf-=}O~0fxhoVv}F}RVaB%2>#Ztb4Er(R6Ndf`XJ9< z+DGt3d}4rETcz4YY`1f}Lq_O|JDm+lP}WrP27%3at)kY?-H zYKufP8p(#`B89@LwP=gW!|-KtuT~)>)_Q6W=hVrg1P-ul*VU!DjG!!*sEd1pM~2<0 zupqdb>LZz0&^+8B3$7va5dOwjgJ$Z^`0l$V1y7a`E%@{BJEs3w(j9vla&*p~GiVMt zi;_H9A?7V(<_9cWgwT*0$edS=*^BH zSGlrVouk=gq^jvYTRPgk#&PK*OD?F=S;M}Nh*@%A$sX2jN^{3dDFX*gB zjmBiteRBFPSqHBQzvgv3&39@wcBjH@!^tsjpr!qq_ROgoyX{4d%O{2u(l&jj)+Wa7 z?-~5;CHhR-5RThFIP{1BtMrJ|PqWppf2X0|BeKl&yV2*@z`mXk4)UIBwjXrgYPN?D zl$tcMdXqJM*%``>x~A#e8%CGxSQ3}7I~T{l*3};EsP%S((_ZErn!2DTGd$TbbR)lR zT-Z7oY8j~Eya2xVCA7;uvM+X@=CzE6-EP#}b@+6zRdHmCRrFd1_FPjvv~ze}>M=G^ zpIbdw;$Cd+`i`{=lAmG=vrWDClU(N)gcGQ9n3`tKtK43r(O;E}#p>e;bRc%=fZtw! zpu(+Xtut%=GZHDT?Yl}No0+qbi5%AcXCyQ=wsgnhcwLHFf@Y?2C&OaOHLz;wMMKqJ z>*}zW8?KD0HQgOjXKh(v%QklO?P+H2u!ea999HsT zS960uT^+U6#cRLL&d)Wh9Exx$uRAw2*q+eNar&(q0gX3e2xh8ReS?iQ#e43M+gI`Y zAmrXb^|O48I;OV9to8Lt!{Ii2^00qq+|17jaql*>`odS_i<@v2D;lLqDfr;kL!27k4Dm?wHRYI3%B? z#pO2ZgXzvxdU;no9*!n`H8?qtY6-gBUaKLPYELw*oGT^ySZ5)Ge?LD@JlkLRZC-Z3 zz=h2Z+%V})XGM|%8#(8tQVNYhqmM}Ja7uPhxZS$pG4?~rul9JkXFBDgrW0I-@)_Vq z;Uj{xTdV$n&u){w!)#Zmk~@U*V`+PNQ^_T_n`+tuGw|gx-i7mo$`_KqI&H1=8#fezmZlk zXLY?hRj-tO=#C~LE}MJ$2Okm^sNHT$Q{D6v>;PjbqbuTZr=!z3u9pQQ7i zvTVt+EnBv{ectEu-Q{L-*-hFcBqX7eW{^T#C@n2J>^)itM}b1wdqdd}_Db2Cu=j?r zM{GWQl5EL$X~X)9HutkEeSYJ6-+S+S-}~ODXuCq&AI;7yjgIHFVz#72ec|7HjD6k5 z=zH2jtaq;3`!?lP(uHF0EOiS-F`ftrMOo=psolLd5Z#{mNBT9ef25Fki;Xr3`yhTh z!#KDoN2gT7qALY%1%6nw>(eIunTL=9Y??D|L05FGGpA}zuus1E)^F^2Hv4@*n#=PMo#oEALZk(Mm;e$LqPvzNX$(%d7d>!v0cV zMDHQYZ9d;vAVe`^=m`+g49deIfg7>%!#lomuQ#b?3^D%k?kD=x6VLRhv2af2+R|6g zB0n@AQq)mobNX)Ly*U!{&^NoVFTg)Y8@dB_-n4_#9bwXLYX9x`aeKWqO_biN-geCG z^HOJj`C@8m6Pt;%FYA36J`*gVz&0~YeSyA(h*nFH=#EDXOOY^GH>WvEZ~Id=?+du4 zRPT3pP)s%t1_y^bk-FD|YDv-83c6j)0oWr83%tYQI{S4(k!9G2nO?mQ!^DZMx3xKC z`PPeXrJo9$Fi^JlLfJmBM%nyvdQdjgQGzs+9u5l+zF}`J2g~(DiVED(JFAw??Q|z( z5Cgq*|9B;qF5>jK2t}Sk-9desehQJS{B{u%3W48?%5K&E(XN}!Rb6$4;s<-G1@uMw zNIaQICO65UW+WWTCZi=E17n285w22qWQ16Q=Ti>5%tyu}Qa+h*1YORcGok5=AMW2k zy&J9~Rx6o1f>yHhuo;Hcq;5=SJbt&B=)EkRQO`fXWt{icd~R1E?;U^Mn z(tg~B0DJIp>L0+faqH|8;)A?1mveFH6_IxZiYvAtNGpt@ZC1BkbO&Y%7*2(TKFynV z&${~3rT|ui>Q2Fba)&zrR;yxqcAAbIm?^Gr#NJuXl;%7>PbnR*q=N6ByZ#^;rIvat znuq;#tu~!#Z`+xxb{n%&I$E4i=k>ornJ=Z^MPj5hvhs>V;wu3jtTHs@td^J>@h5LH zhE>T@+?>Um{K+5an!L!{`-SjA%O4H7DQbgQi1{n|c$4*dD)hU0XNPX&wOX}cb2^v@ z3b|&y*o^Vr$z{ks1oM&|_`CMHf2F{4P)zf>-{2|=r9E@bg@0)Lf@8Bw`{N-tI}XOI zYB^R(vCZ0inu@1lN^JM!^uwCrNlQ(*TnhbQA==i3D?(`6yqp zXbZ`FL**_EGpY&h67b&|a#$0AOaV*TuJ+G@YKg=qVKC z@N=GkI6)|qCWQJE{ZW##?!N?65h+HkEYcJm;P?|R0%CFJ!X>czr%JBsZ8p!0D0jFC z$SBwEN$wf*R;D)O%F}Gb9}H0LbXbraW7nmQZ9hp}b~8JDK{dp&kz^>zdnk`zNQQ3i zy_gUh_Eo2_|Ch-$S!XVd=nZ-ktyWF4*#axIn&`YW8bOtJ(4l z*ty5$cv%X}MO9y~d}#t&CoN5EuTC7gu#wBo^|r3Rd@%+4=iU@`rBbQoI-R?D}V4xTKGo;oo`>_}KwLST$F`2{eFcJ?G2b=%AFeUlq^ z`u%Pn7p9zIHMh|9cwKHu5;MW|Cyk>gpQv>9ZH#SfC{qDGVvEEgohsiNm+Rhy9N~MP zLfQTUwVnPJ@sPOHW7x|RVh;uE1pU4j^l3~lBcn?0pdWs(F)>?%zvJbJ_?Y8@lRMqP zxPvd##c`$H9am~oXHTiem#BLiLoLX{WBOg{Am*DMvDe0vD{LI{_8NJEWLk4~=(ZKz ze^rx&-`3Sav}a#)^4jp;J;kXY4?ZlEQ}%}h$FL+*Xa9cjelEzTgNca8>E%;eoBfF{ z!I)GTwYw;a(^-Ko$g5Tt9N=M6H`!g<&{*)#(H+=blFU$h)E_EO{(um2`r-0ZR5~vU z!gY$9L-RS6i{?Sl)0&9_^|X`i*rw_^ z6pLzgJRh>1J$6RUj_4F%harUeF_cpzC5yM1CV(s~T;ImBVU?TeKJ%$jLA1=vhS)_m zSIgbF9H%_#c&X{H=%QAes^^rt)>Hy|dsfgc_kn!Z*d2 z6Phlgo*{rg%>r~z6VMtqAa#Ha!LDwErTzJGHByTuVy&VWpS*Bl@o>`P=lBQ}yPzD6 zCUeQjQuLaucO0Aa%ONfmanS)O;!A*snmd}VXYz|RSQmLDR!B$OwA=tm05|PerY>*4 zR}R-IO8*S?ar)sTHFBaH{LM}zz$^~?%qw&N8XH|BVdm9U9Ic%-|9Q;=59;AS^USpu zBzG{rg~e2n5+9yAo^eF@pyXl1RAJBMJ2=pC0!wot+k|yG+Br&qi7x$;WjzA-3CTbuvYAv&*((8itt3@nCX``QCr_}P;)?nG7{H*h^e zIryTyZkmzr>3hgAD%Sg3sTJX=Nn>8^RBIhV5uOlw0ope{VndHd*q}RT*oSJ2cCs8= z4=m{u+Gx!vmyY>DypMK?^;|p2M`+ip%FPlRKK({&eIf@w@o_npK#sG>Q;$Kx^nWeWN4=hjJ;MP0)5> zJlB!()D?lUJl>{VPoawSqL=;PZSg0)fZEzDF|Y_p6b?P?jzKeDbgxHJ^4T9` zr%QYq%o4CDC6sms8RR=cl2*HicO?>`S6pg0)2vLnftAT-SeeEs*ZuG1^0+DLt+C#p zAB~s2bx-*ETtJEj)Q_YPAQbV#I-v}w=k;ep?JjnUmjyOSo@%BHGvsZ9hO z3A)nI*wQUr6cz(^E^POPV&PX5DMl-LG%(j2EO_$^CTCcrlSLx#@1bTCbhGtPbwJYI^SnKlyJ$dL1h-NGBXebpDqt<;;SZKOaX^El)uiEudM1S1tVskF4ya0Pw2sY*E8<%>l8Zg0P@`H3(`={!gmp&aCP@<2RmACBea!C8C4=ybb@NOGiT)rUi|n9LM{ zLAP*QvFMJ7A=wRe(RQrW9;unZDQFR7_Q21>@HH`?(kVEoq&vnd;oL-OW?4!4{q)tE z^T{6tN#Nj*0w|#x^vjfRD60PTt^>amniTs%-S1;` zcLyy%o$=1N#rvZT8$17+2Z%7)GWpq^mp{n&s6xGvOx?qojQgDD(^O z>y|oOk#dxl5eKy2n^n`C+t4xRjrM||ZeyGwO^bewGB%M=rOa$=L@8VN7Y&Y9IXf@& z<15W_b{@9Kk6WZn<$-4B!*)EVwPR9kqnWneMkbn{4QTe}RGR6<)ih@YG^b-KFE?(V z#gy6>x(2kPL3caSwWl{OjMDvqdK{MPn_9VUQ}YypKxLuHLAeZ?z0Xu>cxja8kx(v! z=JW|Qzf4gKuFmhZP%eY+cBBjPnS_N-TSudOU8%`eLzS=boimFQTUN^#tYxtdhqOBI zYWXTzpc|q2*??xRTcs&CSJRvs(3}pdWt*I>sws`+SB5$mbhn3z-osbZrJ)W6-M7MO z9kQERQ{#)HbwJ%7>u{A;hq79}tjgmNnx745_9`lkQeI7SWgKR1`z80$<5h}1=#(n_T_bTXXMgwM&$K`tTtM3IXF#{afh@{e03TbJiK1 z&CJaaGS%|7)1bexshh{VJ-b1(H!ZYq`FRlQMt3*R*$6YEE8nv*5Z z^TJ`V>%4U_n#tWNI$(@G1qwT>pZqE48-?xB^MfsIFQB6-WY%zNhJK&Pd(~}IPdplk zMTCUc=Mv+RkbdytLoGR(O}WSAY@PKSk&Vb}4~>8OGM5+D0FsiQv`1hS=yvZH!~Uwz z<=S!e;Z|xKT&Qf6k}6MUV?1n6a-eDMhs_HykR){fNB#BmZrD@bMD~*zb1iw2BeqVC zEAHrY=Js)1+%}ge#>aGn2DGO7H}nTLP81bzO##ik+OZl6qMVzE?I;XSlmDTbqdcQo6| z&h8R|)pU8=bUGc6E0MI|`4KCG{0@&z5rYEjbNC$@94E5mFtwR_D&a=v;!3~-8VY_J!pIh&a@eXFrJ3E$^w z!}Gs80qvkx-*BcYDDX{D+o;=8{m~*5&4UlyzWt#Gn#}|7`LF}c&FY@}>=m2x@VRdG z-kb6dn7!}wvhpU{9gg`}#b1w$v0zkuQLRy-mbX6aV5@cDVcWK;p9dedZQYeyO2sXQ z*1>17xaG?3;)C*S?-9o5^Kjypb+JTNendWh0U?C3@L&&_uxOvl%TpIFEs3_Nb=B%< z{gDCC@z107!azZFm@S&n@Ho2j#A}r;0 z`KRk(HjdvdLuQK`n(>(5#RURFz(I4tN=B)$9A$^E{)pQji?=oqnk-Pu=vQ4P^JLP@ znQ$dhNn|30!n*ndlW{tu-l*Cg+ii6q1mkk64p(jLmlK0??RXK<+P%}!>s%-pg5ZFg z3jC>}0#u3uf7IhRAsr6c+ieHO%0f6Ku%!g;O$34th63X)D{$|wG#iaiH5!c?eNYs= zfd@aBb&KMUqGI#m2V7pp?y&8Ba8wkd&E`95bfrSq-qFNy>!);vf_FTQ`l68I4#O7( z#^K@aOg{e$CXgDB#nV~X#!av9=IE}y+-&*-jdZjY2zeQ=rVkvaC7P#C5f2fp=d8ST zay$fSpPHTqwwQJv)23_c9hJ&-p;Dge{TZMDUudZ;*SZzC+BH52mS5~&OK+f`L^hMM zWrSRkmgX9i+bz{IzNn^gv{h`WtznseP5z5*00HFFIt5$40H~%w`0+#Q`Ye3K^0S2m zV|Ux(`mI~UdN9P&v08mF6JN9O*@Np3ZHm`tyAY>zsq@3H0%gRIET~q$YvBK z_-b>PHXXyAn+6l}qgtZVJr;;6BFxQyhrPrXgFjl5q)FQ{Rt3S~jdjI1@wRlDy(Juy zy|)aU)9SDpqd6ECp!DikoOYxIFwnza8pk44mCY3#HZJlPS0q`MXeQTtQ{We=HwV6z z?e#kihx2oky#-iYOO!4O3GRdhw}b$}-7P?X5P}4^;O_43(l`WncXzkO-Q62^*M3dT znYlA_-+kYGUsrF6y=#}Oz1CmuAC!X zT+Zw!UW?WnobZzP5}&~IfSU7taoqGqoEy+NRfqVfy*}m3kXg%oLIou~QQolzuy^R~Ik8rq5Lw=m678x}2oZ z^xghZs`r*DTnq5POe1YU!_#sT`h4I&Vm>u{^I6<7KV1|_FV!A+g()kS#onHtTxLD4 z$eG}iQFRcR@vx{BNN}Vjl<&L8Z6XNH@S|XN#@H-DA9}6Er|Cn|XPCQ^=!+t()KEq^ zSn4VlNbcs~Accv|%K8ulz-FQFucf|V6^z`PMg)?a=_Qjm8;}daa{k$uG$vn*nvi&5 zCl@}x%y~CZw7U??KwUkds8u!M;4dS4HmMX5yZps9-h(je`;@8!M`sn*W~pK8I*&e` z>zoDQ`ds}!OtOKDO7WT4j1Es@&D{W&8?TX^gw%>~sf@Jh?-z8rwC~Z^K&|fyhn!s# z1@V&S8V8Lhu`sm1?86RP8jjc~5xvpHikkcJ$=Qume~~ zkQ$I0o;eS^{koo^)0Bbdo8_V~{yQ~nlGs^m*3o(zj%T7q$&>HQa47x-waDXw9-A#w3!HhHgt#J zDt2w~^ksdDFJHc}9U*c2WGzlh2yk7e!fLs8u;e! zpQ9T5WNk|R0tI*FW`8QnG@+VaeDYh`KrJ1*vU9QUFiZiH{L8eppbvmiZ;#$|5htUr82;#3<2k2Q?1YbIB_)_@ zq$9-ES|e6C+^nSu7b-qF1!eb=K_fj^Dnc}6&%KE$8J^)q$a#*BOe&pW9sBObDE45F zT1ZMT+ibDD&#k50G(a_ff-^2SlJx8EaRx)}kqX?T0+vBau|by@2KpSBF@XY0@~PQu zuvkp==i4+<1d*&~&0n5xc=l6fk~YnE3OdgBh6M2!rQ=XmpORII=sxLjZKtuo9}U#jKcW z9GqGzR`;`|e3L?WJ)v=S8Fw8>e=9MV3iC88neEooPs=CO>Yp><5?y!al6PRQ=6#xX z)FvVe4$4T}V)gIk{alose};a0p(Nmt5Uy}^Bl<>4ll4P1$M<(mYH+a?=!z|fMPG(i z7+i!j0tJ%L29k5_@=_F$7_Yx?~o zIimD^PS=lGdEN;WF=a~Hfl$oCjJ|d-yo%UkAxHTyu}PzbkV+~Y^uz;B&UZTDX7PGg z4hJSOW~dB#wx@F*#GIJ;N-C|03LKF(lsU_LJu@H5FQ?5ss*_-Qdk(+n#s8@_n9qhd3oPXCpQBTldRRrf;#n-%!Jp$&7kH%EDXOYiM!N`iP&w+EPXt?#=@ zoyIZK=9n42{+vl9(1)lEK4f0lz1-?lS|G{}^i#l-xgAQt$`D}f=UouT9?6yN*>byN z4&S7pm|e1W!u;doCUMof3%k`{&5yTRM#zT+2-7+l4q1{8yz!20)zzCWg61;Zt!lL((ny3kt zctT-rznXgb8Smr9bz~Zbtj29>YkAv3Y*;S~OX57z0%jXM^{_vd@RwPVU$KG}AEt-JQ=9QiENUxCZS2M?nOF2zKG4+-0Pv*WJ%X^aK7vrDs!BnIYXsg53r{ z(<*}LJygl!7;B@^uiI?=Db?&JO{BKC5x zm;|$}gheSRvJEG;m4yk&t0|m<5plY-Rz%ORLwvOo3 zvt7lpjtwr$p|W}_0W5gjj1vpFZp-ACG9Qm@GL9~VoUlnirV zAx2v{5mJ@svOUt%Oli}hjRFA2+WP-|M;b8#SO69}RI#zfJkaQMBFmH_va82jfXd6! zOI55QgyE=_>V|}%_4$BgN88?HUERER#ZJ&C543#O8CmFg@fb!B(@5VO)*BfkT z_7v!eZh{M+#Xr*1jiVfQ7RL&7*OxCbyNaY-cWXe5{W!;_WS83scaWE;pEyiuE>x{+ zU+>d*v8@(bqQusd{kCl}KN;#CE-ns_Ji~iMHY`Krjh~2h^ES@x+o4^)k;%53hASt# zzBS45WaKKcWv%u6^!A1N2Snc}d>ZRT&DuT#@TkG3s@6*<8*UEm2_WVrSsUyd&XCTW zh|t)}!C{s_)e!Y~tN}&NcXr+;F&ohb{Sw!%k&cKLQYx3>+`cfE#0P3cO|?IARm(x~ z^zbpOI$Zg~2r}=)pd=>au-xA2D6job;5&oox%$x*#Rk>3A?6I z!C$FP)z0B%6R|Kib*44$Y3}AMGQ|XPu|;;hj_IXV@J?W+$At;oCML}!d9J6McYmi0 zCR;}sc4Y$gYUR?o8|7Sg<+LNZZK4pcaiUqabG@rnyO!QEAKKb zm!3SI*)hIF!LEJXAugbP-O<=?cHN;8g4RwcRj|rgAGDYf`;p0a83M^u z-G%&y&x;u*E7V_z3ZP_o6wE&-P1;3qjK?x0L%VNr+y4Q#F%_HGw)uW}UJEy8?LAtP zMvHn>Thk|9RtsD59H}#RIeQ7kX?$GXqTjkTeK=_+0H)(tK7mBrlXWr{U&1iJcD^KY zI*$bDtvE^jXK2?VR3*_8g{#P52?i+KXL)(R9w66D`K|qry|=g4WQ8CLX}Bw?(c^VRRmK=-zLvzocU)ndhr=9n>E` zK5i$zL_zwhuTiYi_{W}~7s{A=;a5^Vs*zN&$3;^&K;@FWf~l!+}fKfRIhC^i4JjcmFA4UR>#(G3Jj;|6Gq|(87GjqM>dn zWqd1HU);x$CF9@+F86@%iqg>UP>CE1H4vtz9C7xx4tG(m1SK3l?D>A;m_kg-Iwj;2 z6J&m|+H8;;BDxfauzjD-IcEFb?xGA$*2uPhYY*i(Q&a4YZ5P9$0h{d@##0BwVH*cG z7>0lUC!sn*M{CDU$mMF$+Hubv*}LOB>6nDLwUe(`4dxw|@;lKoy8S>sVHZydIx)F7 zyO$zcc!IyW%#N}|by-?j){?;8!_-6K&q#*^d>Wm4)Iuy(OmdXJB z{w-|i<70J@>PvTx&}qKs59KW7ArhO&t<8+5>{WLE34-YzfM!upbb@)V&c&qOiKXsK z&OOiFR;=pC*9zJ`iVl*%o5j*K`}@UNOBs<($~WQ(JN#P6Ud|t-#+?h%uD?n6HEE7p z*oRrvOP0{Z6$R6thS(C5EFG|7TL8ihvr&kCAZW+q5@J2sG_d+kTEX*tI3>6Z2*8 zNS2Abj4+goI2wJu{cZF9(hT)-dJ~a_9cOrg&Fo!oHD6&6*F`=kMt0{8~Mee1>; zs{C-xt&r~7i!YB|w)?s+hQp)k-ZTlr5uI&iD$m&yWmJvxE@pT;cw*$$I`_HtMJt}_ znk;WYuSgHDAb8hcCY0jaI~a;tQ+s`j)Hv?V&J7=s*!{oM|V~s&T$!lIfS4 znIff``R*O=8Y#wk>YF1)++>DDHRh3Ui@f4LC#E?fRC!SJMAD6BXl1>7f>xRAEpM(Q6=$Mq)pAfe>0i>KMw`;1VUwIXkub1;JN0b^B+U|+E}qb`*wSGQe0FpR%oVBzgyPbfZ3g)cr_ zC;dWheJ*TYcdE%Lujco%kDHDS*e|FIwa5RyduqaMyuf~ec1bcdMv56-3sn0>MtBJr zjIf30%A*wxuN5Xfof>&CdQkoVmFN+o9mxpz2y9d=S%T9oH7Hz)1c~~>0Sg~LGO*mw zv^-&6X!!zt=@f}k=4?$!G-n_0W)iSle(5`0H=X7|ub^M?$CnOEmgOZAjk^= zi~I&Fo!I;g@nH|;!mTfD$KD_fjOm2dGP&=yD-ySx%$~G^lr~=8b+c4dzeZo$9^h$a9{|3cz_>nF;$fNfsOxOT zTRgsi3z;8iz#kb4Axxf!il&ZV(fn;rgff$KIe($I6^ADr=s~yFNZL)@xR%Lughx%p zz8jQ6059>0S*6l&O9+y`%FsCqMNw`-Cx*ab^1Ng4^mG<0IxNLi}+z zrPENvR3L7=^xIRi9M*TqEoUWq(Rjdgc>leW?n`RvnA*U-;XMg|CDbYT-X?_aNu!JD z#3||EQHnQ&`=fR2W%d+c`?pP&ma;ppMT2O&A2SNIQhKme@PlKN5fxKdSYpb)WhDe# zM-9Z`LjsSZlBsy_6;?TxWfX?9z3+ay@A*Y!3)?D0y-kR)CSM%M6H!q_pT0)?p6p}1 z^T!R7T`{s!w6X4`bGK`cW4CJogfeQ@)dXV?=8XGa>3hXUzGDVWEN`2pBL6fMDJP#u zz!CM6bSm^#@ZrAmucoDO8J@JyF+R738*|<5@e4IA339{1|0Le{rOIm6TcT9e_qe4y zVN!sp_+2Z|S%fWjN)dJ|J}*e`Tg1o%Ux8r^t!gQj4wtfnlyoz4Y8-Vs%C}|Op%Ec{ zt{=ztO$2B7A5PHhcWz`j_{a82EBOkDNf6Rdu+NL?z)x9?{GYaeE~YNkZHS#t+QK>z z)p?>k9t)PPEy{BxstMG(*QWG*Jwa(A@mFZ_N3A}t-D_jbcr42poU(J357=Ua!)0AV zD`LGA#us`!LI_Mr{ghn7ud{BaJUq7A6bfo)I>s2QTKnKNj^hsPj7uLtrzoneBOe8*#$!n;WAT#`m|0Mg_0=+Yfdqt7+S98bz7gI-;LD1A!t%Rt%$X9b zr;f7=V@D#!xp4vT*HSI;bKb0HdeNXJuhBuf)k|eY-%M##iHPB^_m)&dp?+_A%3OSn zY;V3h{oV^()Wg&$uEsxi(EKxO8~b~y_QD2R?Uq~aY-Mb5v-eMqrQxrvJ{>6dL$r@B zysOF9p2d6@FVQBtBEghzKfe29qU9=^F4W9}^5nQW@@H<*+a)61mZYRYbZ@nJk)Svn z?owgr!z?=a!|!qSc+*4pl(FWRY-=lxzLqyeW#h-NBp)fge;}Y;Pon#@t_%I#MWRdH zng=os;i59Pe{Bzh`EJugz+G^{21mt{OQJ)tV!2H__3~YBRUk3{CW^83Dp1TEMwCRP zb^nK?r4F4-OfZNN4s}@5^gyz|ePmhy&Q3rw>E19rF*|%Ju*UkK{98RnNqDJk(96Ep z3A{#@8iFF^%LxK_c58K*H5dsO)0??EL=h(TPfb5!!b|h+2fRRHYf6_x@o@>Y;pKjH z&rH*pd#uSiV1ysyqy3mhq@qP>Ywk5qFF(hHv`jo-kyySyx~x~!D@tBCOw?IesPk^GDa`5lgM$*Nx6yC;Hk#ZpBd==4#PJG%!rRGW!%|Z8Yd3wsc zOfyyK(4<*P^!!0zCBQ|9R<&T4sWffv*P)6E5g74tOhFYao&`R1%B$vnnIg*syAn{-`)&@FPdu`JeYI#|{%-1s`~s%k%)f$uq+*G+)=8cr_LsmUa06K8uP z&DL;UrGC}+@qQFgt_4~8Zx$E2xU)h3aV>y02t@RQTfY5M+*5i=m3uEH zqy4ovE6;Y#J;5H9tlSA3o&aXoFp6s8xbi9FFduS0x>>4l=s6SJ4h}?B1}_soki^@h z(=OB*7bb3LJtoCwov_OEaM8f?#Y4xkByz3cx(z<&dOdq=cy`K zWWNlSoClB5el8QD?^qx*QaBnU?2m{&&3Syxzs_0U6ZY9YZ_IiVA5fZ~Z_#RDSm?Yn z7_}Nv5PW{E;9=|$a7YoBfK`nd5-#edFz@Qtx!24Sf79C`;P)1cvHRg$j6szyWoFA7 z?2Ai|$lb{v7<1e=;RK8*BRG8HiOx9z=2?HkzY^kDw>5?Q(EfIL0?e{5<>vBnv(1C# zEbY14>+$>nYE!UB;_PK7NQrcn;8Zi%3E`Y^6SF5fNa>?S*wx%8ex%bD>~lKhG{^Pp z=E|B=5#HdP`_KH(?>9NT1H2zz-c?M2`PM&ILQ8F2({3_vQhdm4TZ3Po1;el3yo^CH z?1AyEDDx^Lav^1jtOPcpdwhceF(OD;>%o*AkJn>wG<@ggblW&c`EjS55kMDTay+3| z8&S{w6SgEGFLIrB6@tn|2J1JU>p!*;ovwM`p32mJo! zfF(#1sOb)SUL2&^ec?uQPT+->Vf$urqtLhK(G&XTI}$DYQ$36iJ>2}}qz)LA3NZY) z(1r>y!4GWf%o>(L%Rc*-G(#N1q#CW}&FwQj~g2K54!#G*?&|so( zOm#cC!<0vCUb|QL^*wmPw;-J^w`=(=K~Y zJZane^fsh&%}`d$12EdzNWz>N<8A%s)a$7BPrtgsPqt$julnCTB@QBVbTVQ=-Vmn`pRPIzekgIj%paI)Qa`-nIa?p{2W0-}gVALY0fPK%bKbS&Fz3Y*O`%LFHvW zwZjizgJBZ-c*tAi_Q9|fi(q&y)P~pqZf@xONE>WxJZr2?#iwKToaOL28OM&)1bl#! z*CQr6De<=!j?Mov9F(bcr1I0yTpx|MPN*815xGs!=bhj0G2D=J@z)`mEpg5d`0Zuc z%VR0*#~)cX#!wG5LRmJIDB3PUi9UJo#)1Fev^NeR&{~cNH)2oq?An z%KGd}Idpw7Ye%90^hrm42T2F=xzZ!XEgA7w-XMszAZ)s0mIK#b)p+yzI$;PkD5C3; zq4N;(pW69@dC+MGkBnT0oYO9gSBR>|*GL#h>Ug&bEe-|qUs8&Qy6CbWLNpX4H4v2x zzJtol^CCt3e;e^Xh5qZ&>FuZQZ%F^Qw7!G^sps_TYdbGcKA)jH;4nW!pV0(qia<_1 zac^?Se-rPI=B zUY_DVAvqqYd}LWlx0-Q6MPHxSWXudSl5<_`dpiIQKu7iLpj58(a)fi6_F1Sa!C4TWj+;ShOu5?)p`tq!$ADx_P;!g5QKG-;R=bXppndz@FmEw(opt~9J% z=cQ3q(6FrlRYq{__FW?$9?tR_k7V5k#7U0156u3dSF6r4H&q-d-$yQ64ed^^(0z)w zp8Mr;Gdt&fefW^pYQFaCNE=EXN-VeH+P!_s2OTBV{>}efa7nX4C6$gy zU>`M7WZ>|O(G;2)kez($9sO z9j3*(6Dc>Ak!*cYx-M@}s)41jizdR`Ie13RHM%NdMT+bpI{B~6rQm>lX8$Fazb zM<-TUmvHc$(1A=1h*>Th_zOc9E9@7XM3xK``O4Xjx$AGuR>p6y-#&t61iGf4-tVyr zz;e?a!4g~Y7Hx57#&q*Ax*^#mrN2o9n(%rTYQr*A1lV`{qw!zT-)z)|6B8&A))#Rs zjnRe6R=+T@M9?_Wm#E$6B#M|TH|n+J4uOGse?fFj45Dif z-k0~U?Y0(4--ht5(A=P~7$$Ia4?8tDt~(62zQuyP8y(jZN@EP7>ugTHo)9HeUGwg& zdbfmYFLGw9v@Sm>xYUj&q|c;)YBNMqr<@OQY7Fu+C3mOTJvtX0Y7X68>TY~jc}4+s zlg9x9WZ<$5jc!Y(%sv}YLz^~D9p*(C=hRNyFgaq^w7!dyAmb5;fw}$oMCwYM1RQ5 zjpvfQ&$*>8a?bHC7U(Wef_W`T=O|D3p761Nf#~hsm^;MYeQ0alTYM(+eE|`h4d;GR zqRHnE5$#p1l>V?A+)Kjv?UlENbA@G{2@ zc4nzegjmO}>`XFIv4LfTvqOZb`yDgC@nKeC0GqVyv~9QaxwBHq{uc?5TGP=ln#G#} z1u@O3vct0wz7`X7KG(g&4&vEsKG%7O7V3gLrJPhd{A^%16Ra0FXCYQsCTaQypti^| zHRp|2#&K(Ax~=lQo_Te|$x*iqV_6MrkjI5^LN}0PW4u&z z(+%aaz_|)c9S1Ov+v=tMt@Xg*pSn^Nw)VW=k8Zu$8rKDB_ibprCcg!MREmbk+mG)d zF?~)Z4Epo=`ls+I0O)g=e4;9zysJ*H^4);QH_aT}lHFq)*uLR^Bf$4W%)k@_0YmnF z`lpb1uHvE6#;(<}>EdB^B0VvW9+eSiv(*MIb=EeZ$B(p?l*Fp@TJG{n`n~JX3LSNb zsOt^VBk%;uj^6Vdw-lh7rrEBfaZJfOpsF>Q8Hg;+maDesmG2eT-PDx7jrcuxJ8T9q zHKyGUW!I9CN~+s

    E>YfNRGQzJm!1=@eA&5@PXUpA;WQU;CBt8hz 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 T6&k$ou( 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

    vCGy{&-)8{QpCbt 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%0A+dt)*h^`=&F|F^@N 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�xb)H>8Mv)4J^))d|J} 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 z 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�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

    E>YfNRGQzJm!1=@eA&5@PXUpA;WQU;C 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πgh9ERj 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

    -
    -
    -
    -

    Contact Us

    - - -
    - -
    - -
    Application Functions -
    - - - - - - - - - - - - - - - - - -
    CategoryECOMP FunctionsECOMP Application
    -
    -
    -
    -
    -
    - {{rowData.app_Name}} -
    -
    -
    -
    - -
    -
    All Applications -
    -
    -
    -
    -
    -
    - - - - Expand app contact section - App contact section - -
    - -
    -
    - No application information is available. Please use the links above to contact the ECOMP Portal team. -
    -
    - - - - - - - - - - - - - - - - - - - - - -
    Contact:{{rowData.contact_name}}
    Email:{{rowData.contact_email}}
    Info URL:{{rowData.url_Info}}
    Description:{{rowData.desc}}
    Get access:Click for application and role information
    -
    -
    - -
    -
    -
    -
    -
    - -
    -
    -
    + +
    +
    +
    +
    +

    Contact Us

    + + +
    + +
    + +
    Application Functions +
    + + + + + + + + + + + + + + + + + +
    CategoryECOMP FunctionsECOMP Application
    +
    +
    +
    +
    +
    + {{rowData.app_Name}} +
    +
    +
    +
    + +
    +
    All Applications +
    +
    +
    +
    +
    +
    + + + + + + +
    + +
    +
    + No application information is available. Please use the links above to contact the ECOMP Portal team. +
    +
    + + + + + + + + + + + + + + + + + + + + + +
    Contact:{{rowData.contact_name}}
    Email:{{rowData.contact_email}}
    Info URL:{{rowData.url_Info}}
    Description:{{rowData.desc}}
    Get access:Click for application and role information
    +
    +
    + +
    +
    +
    +
    +
    + +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.controller.js b/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.controller.js index 74b5ba4e..c93d8643 100644 --- a/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.controller.js +++ b/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.controller.js @@ -1,123 +1,125 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class GetAccessCtrl { - constructor($log, $scope, $stateParams, getAccessService, userProfileService, ExternalRequestAccessService, applicationsService, ngDialog) { - // $log.debug('GetAccessCtrl: appService param is: ' + applicationsService.goGetAccessAppName); - var resultAccessValue = null; - - $scope.openAppRoleModal = (itemData) => { - if(resultAccessValue){ - let data = null; - data = { - dialogState: 2, - selectedUser:{ - attuid: $scope.attuid, - firstName: $scope.firstName, - lastName: $scope.lastName, - headerText: itemData.app_name - } - } - ngDialog.open({ - templateUrl: 'app/views/catalog/add-catalog-dialogs/new-catalog.modal.html', - controller: 'NewCatalogModalCtrl', - controllerAs: 'userInfo', - data: data - }); - } - } - - userProfileService.getUserProfile().then( - function(profile) { - $scope.attuid = profile.orgUserId; - $scope.firstName = profile.firstName; - $scope.lastName = profile.lastName; - }); - - this.updateAppsList = () => { - ExternalRequestAccessService.getExternalRequestAccessServiceInfo().then( - function(property) { - resultAccessValue = property.accessValue; - }).catch(err => { - $log.error('GetAccessCtrl: failed getExternalRequestAccessServiceInfo: ' + JSON.Stringify(err)); - }); - getAccessService.getListOfApp().then(res=> { - var tableData=[]; - // $log.info('GetAccessCtrl::updateAppsList: getting res'); - var result = (typeof(res.data) != "undefined" && res.data!=null)?res.data:null; - // $log.info('GetAccessCtrl::updateAppsList: result',result); - // $log.info('GetAccessCtrl::updateAppsList: done'); - var source = result; - // $log.info('GetAccessCtrl::updateAppsList source: ', source); - for(var i=0;i { - $log.error('GetAccessCtrl:error:: ', err); - }).finally(() => { - this.isLoadingTable = false; - }); - }; - - this.updateTable = (num) => { - this.startIndex=this.viewPerPage*(num-1); - this.currentPage = num; - }; - let init = () => { - // $log.info('GetAccessCtrl:: initializing...'); - this.searchString = ''; - this.getAccessTableHeaders = ['ECOMP Function', 'Application Name', 'Role Name', 'Current Role', 'Request Status']; - this.appTable=[]; - this.updateAppsList(); - this.viewPerPage=20; - this.startIndex=0; - this.currentPage = 1; - this.totalPage=0; - }; - init(); - } - } - GetAccessCtrl.$inject = ['$log', '$scope', '$stateParams', 'getAccessService', 'userProfileService', 'ExternalRequestAccessService','applicationsService', 'ngDialog']; - angular.module('ecompApp').controller('GetAccessCtrl', GetAccessCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class GetAccessCtrl { + constructor($log, $scope, $stateParams, getAccessService, userProfileService, ExternalRequestAccessService, applicationsService, ngDialog) { + // $log.debug('GetAccessCtrl: appService param is: ' + applicationsService.goGetAccessAppName); + var resultAccessValue = null; + var externalRequest = true; + + $scope.openAppRoleModal = (itemData) => { + if(resultAccessValue){ + let data = null; + data = { + dialogState: 2, + selectedUser:{ + attuid: $scope.attuid, + firstName: $scope.firstName, + lastName: $scope.lastName, + headerText: itemData.app_name, + extReqValue : externalRequest + } + } + ngDialog.open({ + templateUrl: 'app/views/catalog/add-catalog-dialogs/new-catalog.modal.html', + controller: 'NewCatalogModalCtrl', + controllerAs: 'userInfo', + data: data + }); + } + } + + userProfileService.getUserProfile().then( + function(profile) { + $scope.attuid = profile.orgUserId; + $scope.firstName = profile.firstName; + $scope.lastName = profile.lastName; + }); + + this.updateAppsList = () => { + ExternalRequestAccessService.getExternalRequestAccessServiceInfo().then( + function(property) { + resultAccessValue = property.accessValue; + }).catch(err => { + $log.error('GetAccessCtrl: failed getExternalRequestAccessServiceInfo: ' + JSON.Stringify(err)); + }); + getAccessService.getListOfApp().then(res=> { + var tableData=[]; + // $log.info('GetAccessCtrl::updateAppsList: getting res'); + var result = (typeof(res.data) != "undefined" && res.data!=null)?res.data:null; + // $log.info('GetAccessCtrl::updateAppsList: result',result); + // $log.info('GetAccessCtrl::updateAppsList: done'); + var source = result; + // $log.info('GetAccessCtrl::updateAppsList source: ', source); + for(var i=0;i { + $log.error('GetAccessCtrl:error:: ', err); + }).finally(() => { + this.isLoadingTable = false; + }); + }; + + this.updateTable = (num) => { + this.startIndex=this.viewPerPage*(num-1); + this.currentPage = num; + }; + let init = () => { + // $log.info('GetAccessCtrl:: initializing...'); + this.searchString = ''; + this.getAccessTableHeaders = ['ECOMP Function', 'Application Name', 'Role Name', 'Current Role', 'Request Status']; + this.appTable=[]; + this.updateAppsList(); + this.viewPerPage=20; + this.startIndex=0; + this.currentPage = 1; + this.totalPage=0; + }; + init(); + } + } + GetAccessCtrl.$inject = ['$log', '$scope', '$stateParams', 'getAccessService', 'userProfileService', 'ExternalRequestAccessService','applicationsService', 'ngDialog']; + angular.module('ecompApp').controller('GetAccessCtrl', GetAccessCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.controller.spec.js b/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.controller.spec.js index 3841a2b3..32cc3a1f 100644 --- a/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.controller.spec.js @@ -1,19 +1,19 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ diff --git a/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.tpl.html b/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.tpl.html index 7f6770ea..08ccbf48 100644 --- a/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/support/get-access/get-access.tpl.html @@ -1,102 +1,102 @@ - -
    -
    -
    -
    -

    Get Access

    -
    -
    -
    -
    - -
    - - - - - - - - - - - - - - - - - - - -
    {{access.getAccessTableHeaders[0]}}{{access.getAccessTableHeaders[1]}}{{access.getAccessTableHeaders[2]}}{{access.getAccessTableHeaders[3]}}{{access.getAccessTableHeaders[4]}}
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - + +
    +
    +
    +
    +

    Get Access

    +
    +
    +
    +
    + +
    + + + + + + + + + + + + + + + + + + + +
    {{access.getAccessTableHeaders[0]}}{{access.getAccessTableHeaders[1]}}{{access.getAccessTableHeaders[2]}}{{access.getAccessTableHeaders[3]}}{{access.getAccessTableHeaders[4]}}
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js b/ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js index 5a5b7e49..bab9ba5c 100644 --- a/ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js +++ b/ecomp-portal-FE-common/client/app/views/tabs/tabs.controller.js @@ -33,6 +33,12 @@ $rootScope.showFooter = ""; $cookies.putObject('show_app_header', false,{domain: cookieDomain, path : '/'}); + let getCookieDomain = function() { + return window.location.hostname; + } + let getContextPath=function() { + return window.location.pathname.substring( 0, window.location.pathname.lastIndexOf( '/' ) + 1 ); + } let noRefresh = function () { window.onbeforeunload = function(e) { @@ -72,8 +78,9 @@ if ($scope.tabs.length > 1) { noRefresh(); } - $cookies.putObject('cookieTabs', $scope.tabs,{domain: cookieDomain, path : '/'}); - $cookies.putObject('visInVisCookieTabs', $scope.tabs,{domain: cookieDomain, path : '/'}); + $cookies.putObject('cookieTabs', $scope.tabs,{domain: getCookieDomain(), path : getContextPath()}); + $cookies.putObject('visInVisCookieTabs', $scope.tabs,{domain: getCookieDomain(), path : getContextPath()}); + } }; @@ -92,8 +99,8 @@ if ($scope.tabs.length > 1) { noRefresh(); } - $cookies.putObject('cookieTabs', $scope.tabs,{domain: cookieDomain, path : '/'}); - $cookies.putObject('visInVisCookieTabs', $scope.tabs,{domain: cookieDomain, path : '/'}); + $cookies.putObject('cookieTabs', $scope.tabs,{domain: getCookieDomain(), path : getContextPath()}); + $cookies.putObject('visInVisCookieTabs', $scope.tabs,{domain: getCookieDomain(), path : getContextPath()}); } }; @@ -124,7 +131,7 @@ event.preventDefault(); event.stopPropagation(); $scope.tabs.splice(index, 1); - $cookies.putObject('cookieTabs', $scope.tabs,{domain: cookieDomain, path : '/'}); + $cookies.putObject('cookieTabs', $scope.tabs,{domain: getCookieDomain(), path : getContextPath()}); }; //adjust height of the tab due to the search popup being hidden diff --git a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.Json.details.controller.js b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.Json.details.controller.js index dd11c60d..5fc2d894 100644 --- a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.Json.details.controller.js +++ b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.Json.details.controller.js @@ -1,36 +1,36 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - - class userNotificationCtrl { - constructor($scope, message, ngDialog) { - $scope.messageData=message.text; - //alert("message.text" + $scope.messageData); - } - } - userNotificationCtrl.$inject = ['$scope', 'message', 'ngDialog']; - angular.module('ecompApp').controller('userNotificationCtrl', userNotificationCtrl); -})(); - - - - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + + class userNotificationCtrl { + constructor($scope, message, ngDialog) { + $scope.messageData=message.text; + //alert("message.text" + $scope.messageData); + } + } + userNotificationCtrl.$inject = ['$scope', 'message', 'ngDialog']; + angular.module('ecompApp').controller('userNotificationCtrl', userNotificationCtrl); +})(); + + + + diff --git a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html index 2c22751b..5e5c55db 100644 --- a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html +++ b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html @@ -1,48 +1,48 @@ - -
    -
    -
    -
    Message Notification Details
    - - -
    - -
    -
    - -
    - - -
    - -
    - -
    -
    - - + +
    +
    +
    +
    Message Notification Details
    + + +
    + +
    +
    + +
    + + +
    + +
    + +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.controller.js b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.controller.js index 51c7bb7c..4207bc6e 100644 --- a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.controller.js +++ b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.controller.js @@ -1,196 +1,196 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - - class userNotificationsCtrl { - constructor($scope, $log, notificationService, confirmBoxService, $modal, ngDialog, $state) { - - var priorityItems={"1":"Normal","2":"Important"}; - $scope.priorityItems=priorityItems; - $scope.searchString=''; - $scope.externalNotification="External System"; - $scope.itemExpired={"background-color":"silver "}; - $scope.showInput = true; - $scope.totalPages1 = 0; - $scope.viewPerPage1 = 15; - $scope.currentPage1 = 1; - $scope.showLoader = false; - $scope.firstPlay = true; - // Start with empty list to silence error in console - $scope.tableData = []; - $scope.tableAdminNotifItems = []; - let getAdminNotifications = () => { - $scope.isLoadingTable = true; - notificationService.getAdminNotification().then(res => { - $scope.adminNotifications = res.data; - $scope.isLoadingTable = false; - $scope.tableData = res.data; - var totalItems = $scope.tableData.length; - $scope.totalPages1 = Math.ceil(totalItems / $scope.viewPerPage1); - $scope.showLoader = false; - $scope.currentPage1=1; - var endIndex = 1 * $scope.viewPerPage1; - var startIndex = endIndex - $scope.viewPerPage1; - $scope.tableAdminNotifItems = $scope.tableData.slice(startIndex, endIndex); - }).catch(err => { - $log.error('userNotificationsCtrl:getAdminNotifications:: error ', err); - $scope.isLoadingTable = false; - }); - } - - getAdminNotifications(); - - $scope.customPageHandler = function(num) { - $scope.currentPage1=num; - var endIndex = num * $scope.viewPerPage1; - var startIndex = endIndex - $scope.viewPerPage1; - $scope.tableAdminNotifItems = $scope.tableData.slice(startIndex, endIndex); - }; - - - - - - $scope.removeUserNotification = function (selectedAdminNotification) { - selectedAdminNotification.activeYn = 'N'; - confirmBoxService.deleteItem(selectedAdminNotification.msgHeader) - .then(isConfirmed => { - if (isConfirmed) { - notificationService.updateAdminNotification(selectedAdminNotification) - .then(() => { - getAdminNotifications(); - }).catch(err => { - switch (err.status) { - case '409': // Conflict - // handleConflictErrors(err); - break; - case '500': // Internal Server - // Error - confirmBoxService.showInformation('There was a problem updating the notification. ' + - 'Please try again later. Error: ' + err.status).then(isConfirmed => { }); - break; - case '403': // Forbidden... - // possible - // webjunction error - // to try again - confirmBoxService.showInformation('There was a problem updating the notification. ' + - 'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => { }); - break; - default: - confirmBoxService.showInformation('There was a problem updating the notification. ' + - 'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => { }); - } - $log.error('UserNotifCtlr::updateAdminNOtif failed: ' + JSON.stringify(err)); - }).finally(() => { - var objOffsetVersion = objAgent.indexOf("MSIE"); - if (objOffsetVersion != -1) { - $window.location.reload(); - } - }); - } - }).catch(err => { - $log.error('UserNotifCtlr::deleteItem error: ' + err); - }); - } - - - - $scope.showDetailedJsonMessage=function (selectedAdminNotification) { - notificationService.getMessageRecipients(selectedAdminNotification.notificationId).then(res =>{ - $scope.messageRecipients = res; - var messageObject=JSON.parse(selectedAdminNotification.msgDescription); - var html=""; - html+='

    '+'Message Source'+' : '+selectedAdminNotification.msgSource+'

    '; - html+='

    '+'Message Title'+' : '+selectedAdminNotification.msgHeader+'

    '; - html+='

    '+'Message Recipient'+' : '+$scope.messageRecipients+'

    '; - - for(var field in messageObject){ - if(field=='eventDate'||field=='lastModifiedDate'){ - html+='

    '+field+' : '+new Date(+messageObject[field])+'

    '; - - }else{ - html+='

    '+field+' : '+messageObject[field]+'

    '; - - } - } - - var modalInstance = ngDialog.open({ - templateUrl: 'app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html', - controller: 'userNotificationCtrl', - resolve: { - message: function () { - var message = { - title: '', - text: html - - }; - return message; - }, - - } - }); - - }).catch(err => { - $log.error('userNotificationsCtrl:getMessageRecipients:: error ', err); - $scope.isLoadingTable = false; - }); - - }; - - - $scope.editUserNotificationModal = function (selectedAdminNotification) { - - // retrieve roleIds here - selectedAdminNotification.roleIds = null; - notificationService.getNotificationRoles(selectedAdminNotification.notificationId) - .then(res => { - selectedAdminNotification.roleIds = res.data; - - $scope.openUserNotificationModal(selectedAdminNotification); - }).catch(err => { - $log.error('UserNotifCtlr:getNotificationRoles:: error ', err); - - }); - } - - $scope.openUserNotificationModal = function (selectedAdminNotification) { - let data = null; - if (selectedAdminNotification) { - data = { - notif: selectedAdminNotification - } - } - ngDialog.open({ - templateUrl: 'app/views/user-notifications-admin/user.notifications.modal.page.html', - controller: 'userNotificationsModalCtrl', - controllerAs: 'userNotifModal', - data: data - }).closePromise.then(function (needUpdate) { - getAdminNotifications(); - }); - } - - } - } - userNotificationsCtrl.$inject = ['$scope', '$log', 'notificationService', 'confirmBoxService', '$modal', 'ngDialog', '$state']; - angular.module('ecompApp').controller('userNotificationsCtrl', userNotificationsCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + + class userNotificationsCtrl { + constructor($scope, $log, notificationService, confirmBoxService, $modal, ngDialog, $state) { + + var priorityItems={"1":"Normal","2":"Important"}; + $scope.priorityItems=priorityItems; + $scope.searchString=''; + $scope.externalNotification="External System"; + $scope.itemExpired={"background-color":"silver "}; + $scope.showInput = true; + $scope.totalPages1 = 0; + $scope.viewPerPage1 = 15; + $scope.currentPage1 = 1; + $scope.showLoader = false; + $scope.firstPlay = true; + // Start with empty list to silence error in console + $scope.tableData = []; + $scope.tableAdminNotifItems = []; + let getAdminNotifications = () => { + $scope.isLoadingTable = true; + notificationService.getAdminNotification().then(res => { + $scope.adminNotifications = res.data; + $scope.isLoadingTable = false; + $scope.tableData = res.data; + var totalItems = $scope.tableData.length; + $scope.totalPages1 = Math.ceil(totalItems / $scope.viewPerPage1); + $scope.showLoader = false; + $scope.currentPage1=1; + var endIndex = 1 * $scope.viewPerPage1; + var startIndex = endIndex - $scope.viewPerPage1; + $scope.tableAdminNotifItems = $scope.tableData.slice(startIndex, endIndex); + }).catch(err => { + $log.error('userNotificationsCtrl:getAdminNotifications:: error ', err); + $scope.isLoadingTable = false; + }); + } + + getAdminNotifications(); + + $scope.customPageHandler = function(num) { + $scope.currentPage1=num; + var endIndex = num * $scope.viewPerPage1; + var startIndex = endIndex - $scope.viewPerPage1; + $scope.tableAdminNotifItems = $scope.tableData.slice(startIndex, endIndex); + }; + + + + + + $scope.removeUserNotification = function (selectedAdminNotification) { + selectedAdminNotification.activeYn = 'N'; + confirmBoxService.deleteItem(selectedAdminNotification.msgHeader) + .then(isConfirmed => { + if (isConfirmed) { + notificationService.updateAdminNotification(selectedAdminNotification) + .then(() => { + getAdminNotifications(); + }).catch(err => { + switch (err.status) { + case '409': // Conflict + // handleConflictErrors(err); + break; + case '500': // Internal Server + // Error + confirmBoxService.showInformation('There was a problem updating the notification. ' + + 'Please try again later. Error: ' + err.status).then(isConfirmed => { }); + break; + case '403': // Forbidden... + // possible + // webjunction error + // to try again + confirmBoxService.showInformation('There was a problem updating the notification. ' + + 'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => { }); + break; + default: + confirmBoxService.showInformation('There was a problem updating the notification. ' + + 'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => { }); + } + $log.error('UserNotifCtlr::updateAdminNOtif failed: ' + JSON.stringify(err)); + }).finally(() => { + var objOffsetVersion = objAgent.indexOf("MSIE"); + if (objOffsetVersion != -1) { + $window.location.reload(); + } + }); + } + }).catch(err => { + $log.error('UserNotifCtlr::deleteItem error: ' + err); + }); + } + + + + $scope.showDetailedJsonMessage=function (selectedAdminNotification) { + notificationService.getMessageRecipients(selectedAdminNotification.notificationId).then(res =>{ + $scope.messageRecipients = res; + var messageObject=JSON.parse(selectedAdminNotification.msgDescription); + var html=""; + html+='

    '+'Message Source'+' : '+selectedAdminNotification.msgSource+'

    '; + html+='

    '+'Message Title'+' : '+selectedAdminNotification.msgHeader+'

    '; + html+='

    '+'Message Recipient'+' : '+$scope.messageRecipients+'

    '; + + for(var field in messageObject){ + if(field=='eventDate'||field=='lastModifiedDate'){ + html+='

    '+field+' : '+new Date(+messageObject[field])+'

    '; + + }else{ + html+='

    '+field+' : '+messageObject[field]+'

    '; + + } + } + + var modalInstance = ngDialog.open({ + templateUrl: 'app/views/user-notifications-admin/user.notifications.Json.details.modal.page.html', + controller: 'userNotificationCtrl', + resolve: { + message: function () { + var message = { + title: '', + text: html + + }; + return message; + }, + + } + }); + + }).catch(err => { + $log.error('userNotificationsCtrl:getMessageRecipients:: error ', err); + $scope.isLoadingTable = false; + }); + + }; + + + $scope.editUserNotificationModal = function (selectedAdminNotification) { + + // retrieve roleIds here + selectedAdminNotification.roleIds = null; + notificationService.getNotificationRoles(selectedAdminNotification.notificationId) + .then(res => { + selectedAdminNotification.roleIds = res.data; + + $scope.openUserNotificationModal(selectedAdminNotification); + }).catch(err => { + $log.error('UserNotifCtlr:getNotificationRoles:: error ', err); + + }); + } + + $scope.openUserNotificationModal = function (selectedAdminNotification) { + let data = null; + if (selectedAdminNotification) { + data = { + notif: selectedAdminNotification + } + } + ngDialog.open({ + templateUrl: 'app/views/user-notifications-admin/user.notifications.modal.page.html', + controller: 'userNotificationsModalCtrl', + controllerAs: 'userNotifModal', + data: data + }).closePromise.then(function (needUpdate) { + getAdminNotifications(); + }); + } + + } + } + userNotificationsCtrl.$inject = ['$scope', '$log', 'notificationService', 'confirmBoxService', '$modal', 'ngDialog', '$state']; + angular.module('ecompApp').controller('userNotificationsCtrl', userNotificationsCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.json.details.modal.page.less b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.json.details.modal.page.less index ebf48075..e17ec46f 100644 --- a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.json.details.modal.page.less +++ b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.json.details.modal.page.less @@ -1,48 +1,48 @@ - -.w-ecomp-user-json-notification-details-admin { - .bg_portalWhite;//white for 1702 - //.bg_portalGray; // gray for 1610 - position: relative; - top: 20px; - left: -200px; - right: @page-main-right; - bottom: @page-main-bottom; - padding-top: @padding-top; - padding-left: @padding-left-side; - height: 345px; - width: 96%; - margin-left: 220px; - .w-ecomp-main-json-view-title { - //.n18r; - .dGray18r; //AT&T Dark Gray - border-bottom: @portalDBlue 3px solid; - width:100%; - } - - .notifications-properties-main{ - padding-top: 16px; - font-size: 14px; - overflow-y: scroll; - max-height: 285px; - - } -input:not([type="button"]) { - height: 22px; } - .widget-properties-main { - padding: 16px; - height: 460px; - overflow-y: auto; - - - - - } - -.dialog-control-close { - position: absolute; - bottom: -60px; - right: 16px; -} - - + +.w-ecomp-user-json-notification-details-admin { + .bg_portalWhite;//white for 1702 + //.bg_portalGray; // gray for 1610 + position: relative; + top: 20px; + left: -200px; + right: @page-main-right; + bottom: @page-main-bottom; + padding-top: @padding-top; + padding-left: @padding-left-side; + height: 345px; + width: 96%; + margin-left: 220px; + .w-ecomp-main-json-view-title { + //.n18r; + .dGray18r; //AT&T Dark Gray + border-bottom: @portalDBlue 3px solid; + width:100%; + } + + .notifications-properties-main{ + padding-top: 16px; + font-size: 14px; + overflow-y: scroll; + max-height: 285px; + + } +input:not([type="button"]) { + height: 22px; } + .widget-properties-main { + padding: 16px; + height: 460px; + overflow-y: auto; + + + + + } + +.dialog-control-close { + position: absolute; + bottom: -60px; + right: 16px; +} + + } \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.modal.controller.js b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.modal.controller.js index ebd2f93d..7821e070 100644 --- a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.modal.controller.js +++ b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.modal.controller.js @@ -1,747 +1,747 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; - -(function () { - - class userNotificationsModalCtrl { - constructor($scope, $log, functionalMenuService, confirmBoxService, notificationService, $modal, ngDialog, $state, $filter) { - - let newNotifModel = { - 'isOnlineUsersOnly': null, - 'isForAllRolesOptions': null, - 'selectedPriority': null, - 'isActive': null, - 'startTime': null, - 'endTime': null, - 'msgHeader': null, - 'msgDescription': null, - 'roleIds': null, - 'roleObj': {notificationRoleIds:null} - }; - - $scope.notificationId = null; - $scope.selectedCat = null; - $scope.selectedEcompFunc = null; - this.YN_index_mapping = { - "Y": 0, - "N": 1 - } - - $scope.onlineAllUsersOptions = [ - { "index": 0, "value": "Y", "title": "Online Users Only" }, - { "index": 1, "value": "N", "title": "Online & Offline Users" } - - ]; - - $scope.isForAllRolesOptions = [ - { "index": 0, "value": "Y", "title": "Yes" }, - { "index": 1, "value": "N", "title": "No" } - ]; - - $scope.priorityOptions = [ - { "index": 0, "value": 1, "title": "Normal" }, - { "index": 1, "value": 2, "title": "Important" } - ]; - - $scope.isActiveOptions = [ - { "index": 0, "value": "Y", "title": "Yes" }, - { "index": 1, "value": "N", "title": "No" } - ]; - $scope.isActive = $scope.isActiveOptions[0]; - $scope.selectPriority = $scope.priorityOptions[0]; - $scope.isOnlineUsersOnly = $scope.onlineAllUsersOptions[1]; - $scope.isForAllRoles=$scope.isForAllRolesOptions[0].value; - $scope.isFunctionalMenu ="Y"; - - $scope.selectedPriority=$scope.priorityOptions[0].value; - - // $scope.notificationRoleIds = []; - $scope.msgHeader = ''; - $scope.msgDescription = ''; - $scope.treeTitle="Functional Menu"; - $scope.notifObj= {isCategoriesFunctionalMenu:true}; - - let init = () => { - // $log.info('userNotificationsModalCtrl::init'); - this.isSaving = false; - var today = new Date(); - $scope.minDate = today.toISOString().substring(0, 10); - var threeMonthsFromNow = new Date(); - threeMonthsFromNow.setMonth(threeMonthsFromNow.getMonth() + 3); - $scope.maxDate = threeMonthsFromNow.toISOString().substring(0, 10); - if ($scope.ngDialogData && $scope.ngDialogData.notif) { - // $log.debug('userNotificationsModalCtrl:init:: Edit - // notification mode for', $scope.ngDialogData.notif); - $scope.isEditMode = true; - $scope.editModeObj = {isEditMode: true}; - this.notif = _.clone($scope.ngDialogData.notif); - $scope.modalPgTitle = 'View Notification' - $scope.isOnlineUsersOnly = $scope.onlineAllUsersOptions[this.YN_index_mapping[this.notif.isForOnlineUsers]]; - $scope.isForAllRoles = $scope.isForAllRolesOptions[this.YN_index_mapping[this.notif.isForAllRoles]].value; - $scope.isActive = $scope.isActiveOptions[this.YN_index_mapping[this.notif.activeYn]]; - $scope.selectedPriority = $scope.priorityOptions[this.notif.priority - 1].value; - $scope.startTime = new Date(this.notif.startTime); - $scope.endTime = new Date(this.notif.endTime); - $scope.msgHeader = this.notif.msgHeader; - $scope.msgDescription = this.notif.msgDescription; - $scope.notificationId = this.notif.notificationId; - $scope.notificationRoleIds = this.notif.roleIds; - $scope.roleObj = {notificationRoleIds:this.notif.roleIds}; - } else { - // $log.debug('AppDetailsModalCtrl:init:: New app mode'); - $scope.isEditMode = false; - $scope.editModeObj = {isEditMode: false}; - $scope.modalPgTitle = 'Add a New Notification' - this.notif = _.clone(newNotifModel); - $scope.roleObj = {notificationRoleIds:null}; - } - }; - this.conflictMessages = {}; - this.scrollApi = {}; - let handleConflictErrors = err => { - if(!err.data){ - return; - } - if(!err.data.length){ // support objects - err.data = [err.data] - } - _.forEach(err.data, item => { - _.forEach(item.fields, field => { - // set conflict message - this.conflictMessages[field.name] = errorMessageByCode[item.errorCode]; - // set field as invalid - $scope.appForm[field.name].$setValidity('conflict', false); - // set watch once to clear error after user correction - watchOnce[field.name](); - }); - }); - this.scrollApi.scrollTop(); - }; - - let resetConflict = fieldName => { - delete this.conflictMessages[fieldName]; - if($scope.appForm[fieldName]){ - $scope.appForm[fieldName].$setValidity('conflict', true); - } - }; - $scope.addUserNotificationValidation = function () { - // // pre-processing - if (!($scope.isEditMode)) { - var validation=false; - - if($scope.startTime && $scope.endTime && $scope.msgHeader != '' && $scope.msgDescription != '' && ($scope.startTime<$scope.endTime)){ - validation=true; - if( $scope.isForAllRoles=='N'){ - validation = $scope.checkBoxObj.isAnyRoleSelected; - } - } - else{ - validation=false; - } - - - return !validation; - } - } - - /* format the value for viewing a notification */ - $scope.formatStartDate = function () { - if ($scope.startTime) { - $scope.startTime = $filter('date')($scope.startTime, 'medium'); - } - } - - /* format the value for viewing a notification */ - $scope.formatEndDate = function () { - if($scope.endTime){ - $scope.endTime = $filter('date')($scope.endTime, 'medium'); - } - } - - $scope.addUserNotification = function () { - $scope.notificationRoleIds = []; - // pre-processing - for (var key in $scope.checkboxIdDict) { - if ($scope.checkboxIdDict[key].is_box_checked && ($scope.checkboxIdDict[key].role_id != null)) { - var role_ids = $scope.checkboxIdDict[key].role_id; - for (var i in role_ids) { - if (!($scope.notificationRoleIds.indexOf(role_ids[i]) > -1)) { - $scope.notificationRoleIds.push(role_ids[i]); - } - } - } - } - - $scope.notificationRoleIds.sort(); - if (($scope.isOnlineUsersOnly) && ($scope.isForAllRoles) && ($scope.selectedPriority) && ($scope.isActive) - && ($scope.startTime) && ($scope.endTime) && ($scope.msgHeader != '') && ($scope.msgDescription != '')) { - this.newUserNotification = - { - 'notificationId':$scope.notificationId, - 'isForOnlineUsers': $scope.isOnlineUsersOnly.value, - 'isForAllRoles': $scope.isForAllRoles, - 'priority': $scope.selectedPriority, - 'activeYn': $scope.isActive.value, - 'startTime': $scope.startTime, - 'endTime': $scope.endTime, - 'msgHeader': $scope.msgHeader, - 'msgDescription': $scope.msgDescription, - 'roleIds': $scope.notificationRoleIds, - 'createdDate': new Date() - }; - - // POST ajax call here; - if ($scope.isEditMode) { - notificationService.updateAdminNotification(this.newUserNotification) - .then(() => { - //$log.debug('NotificationService:updateAdminNotification:: Admin notification update succeeded!'); - $scope.closeThisDialog(true); - // emptyCookies(); - }).catch(err => { - $log.error('notificationService.updateAdminNotfication failed: ' + JSON.stringify(err)); - switch (err.status) { - case '409': // Conflict - // handleConflictErrors(err); - break; - case '500': // Internal Server Error - confirmBoxService.showInformation('There was a problem updating the notification. ' + - 'Please try again later. Error: ' + err.status).then(isConfirmed => { }); - break; - case '403': // Forbidden... possible - // webjunction error to - // try again - confirmBoxService.showInformation('There was a problem updating the notification. ' + - 'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => { }); - break; - default: - confirmBoxService.showInformation('There was a problem updating the notification. ' + - 'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => { }); - } - }).finally(() => { - // for bug in IE 11 - var objOffsetVersion = objAgent.indexOf("MSIE"); - if (objOffsetVersion != -1) { - $log.debug('AppDetailsModalCtrl:updateOnboardingApp:: Browser is IE, forcing Refresh'); - $window.location.reload(); - } - // for bug in IE 11 - }); - - } else { - notificationService.addAdminNotification(this.newUserNotification) - .then((res) => { - $log.debug('notificationService:addAdminNotification:: Admin notification creation succeeded!,',res); - if(res.status=='ERROR'){ - confirmBoxService.showInformation('There was a problem adding the notification. ' + - ' Error: ' + res.response).then(isConfirmed => { }); - - - } - else{ - $scope.closeThisDialog(true); - } - - // emptyCookies(); - }).catch(err => { - switch (err.status) { - case '409': // Conflict - // handleConflictErrors(err); - break; - case '500': // Internal Server Error - confirmBoxService.showInformation('There was a problem adding the notification. ' + - 'Please try again later. Error: ' + err.status).then(isConfirmed => { }); - break; - default: - confirmBoxService.showInformation('There was a problem adding the notification. ' + - 'Please try again. If the problem persists, then try again later. Error: ' + - err.status).then(isConfirmed => { }); - } - $log.error('notificationService:addAdminNotification error:: ' + JSON.stringify(err)); - }) - } - - - } else { - $log.warn('please fill in all required fields'); - confirmBoxService.showInformation('Please fill in all required fields').then(isConfirmed => { }); - } - } - // Populate the category list for category dropdown list - let getFunctionalMenu = () => { - this.isLoadingTable = true; - $scope.notifObj= {isCategoriesFunctionalMenu:true}; - functionalMenuService.getFunctionalMenuRole().then(role_res => { - var menu_role_dict = {}; - for (var i in role_res) { - // if first time appear in menu_role_dict - if (!(role_res[i].menuId in menu_role_dict)) { - menu_role_dict[role_res[i].menuId] = [role_res[i].roleId]; - } else { - menu_role_dict[role_res[i].menuId].push(role_res[i].roleId); - } - } - functionalMenuService.getManagedFunctionalMenuForNotificationTree().then(res => { - let actualData = []; - var exclude_list = ['Favorites'] - // Adding children and label attribute to all objects in - $scope.checkboxIdDict = {}; - $scope.checkBoxObj = {isAnyRoleSelected:false}; - for (let i = 0; i < res.length; i++) { - res[i].children = []; - res[i].label = res[i].text; - res[i].id = res[i].text; - // res[i].is_box_checked = false; - res[i].can_check = true; - res[i].roleId = menu_role_dict[res[i].menuId]; - $scope.checkboxIdDict[res[i].id] = { 'is_box_checked': false, 'role_id': res[i].roleId }; - } - - // Adding actual child items to children array in res - // objects - $scope.parentChildDict ={}; - $scope.parentChildRoleIdDict ={}; - for (let i = 0; i < res.length; i++) { - let parentId = res[i].menuId; - $scope.parentChildDict[parentId] = []; - $scope.parentChildRoleIdDict[parentId]=[]; - for (let j = 0; j < res.length; j++) { - let childId = res[j].parentMenuId; - if (parentId === childId) { - res[i].children.push(res[j]); - $scope.parentChildDict[parentId].push(res[j].menuId); - //if res[j].roleId is defined - if (res[j].roleId) { - for (let k in res[j].roleId) { - $scope.parentChildRoleIdDict[parentId].push(res[j].roleId[k]); - } - - } - } - } - } - - //check if grand children exist - for (var key in $scope.parentChildDict){ - var children = $scope.parentChildDict[key]; - var isGrandParent = false; - if (children.length>0) { - for (var i in children) { - if ($scope.parentChildDict[children[i]].length>0){ - isGrandParent = true; - break; - } - } - } - if (isGrandParent) { - for (var i in children) { - // if the child has children - if ($scope.parentChildDict[children[i]].length>0) { - for (var j in $scope.parentChildRoleIdDict[children[i]]) { - - if ($scope.parentChildRoleIdDict[key].indexOf($scope.parentChildRoleIdDict[children[i]][j]) === -1) { - $scope.parentChildRoleIdDict[key].push($scope.parentChildRoleIdDict[children[i]][j]); - } - } - } else { - - } - } - } - - }; - - - var ListMenuIdToRemove = []; - //$scope.parentObj = {ListMenuIdToRemove : []}; - //get the list of menuId that needs to be removed - for (let i = 0; i < res.length; i++) { - if ((res[i].children.length==0)&&(!res[i].roleId)) { - var menuIdToRemove = res[i].menuId; - if (ListMenuIdToRemove.indexOf(menuIdToRemove) === -1){ - ListMenuIdToRemove.push(menuIdToRemove); - } - } - } - - // a scope variable that marks whether each functional menu item should be displayed. - $scope.toShowItemDict = {}; - for (let i = 0; i < res.length; i++) { - if (res[i].roleId==null) { - if (res[i].children.length==0) { - $scope.toShowItemDict[res[i].menuId]=false; - } else if(res[i].children.length>0){ - if($scope.parentChildDict[res[i].menuId].length === _.intersection($scope.parentChildDict[res[i].menuId], ListMenuIdToRemove).length){ - $scope.toShowItemDict[res[i].menuId]=false; - } else { - $scope.toShowItemDict[res[i].menuId]=true; - } - } - } else { - $scope.toShowItemDict[res[i].menuId]=true; - } - } - - // Sort the top-level menu items in order based on the - // column - res.sort(function (a, b) { - return a.column - b.column; - }); - - // Sort all the children in order based on the column - for (let i = 0; i < res.length; i++) { - res[i].children.sort(function (a, b) { - return a.column - b.column; - }); - } - - // Forming actual parent items - for (let i = 0; i < res.length; i++) { - let parentId = res[i].parentMenuId; - if (parentId === null) { - actualData.push(res[i]); - } - } - - // $scope.treedata = actualData; - var treedata = actualData[0].children; - $scope.treedata = []; - for (var i in treedata) { - if (!(treedata[i].label.indexOf(exclude_list) > -1)) { - $scope.treedata.push(treedata[i]) - } - } - - }).catch(err => { - $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ', err); - }).finally(() => { - this.isLoadingTable = false; - }) - - }).catch(err => { - $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ', err); - }) - ; - } - - - let getAppRoleIds = () => { - $scope.notifObj= {isCategoriesFunctionalMenu:false}; - notificationService.getAppRoleIds().then(res => { - - res = res.data; - let actualData = []; - // var exclude_list = ['Favorites'] - var app_id_name_list = {}; - $scope.checkboxIdDict = {}; - $scope.checkBoxObj = {isAnyRoleSelected:false}; - - for (let i = 0; i < res.length; i++) { - if (!(res[i].appId in app_id_name_list)) { - app_id_name_list[res[i].appId] = res[i].appName; - } - - res[i].children = []; - res[i].label = res[i].roleName; - res[i].id = res[i].roleId; - res[i].menuId = res[i].roleId; - res[i].parentMenuId = res[i].appId; - res[i].can_check = true; - res[i].roleId = [res[i].roleId]; - $scope.checkboxIdDict[res[i].id] = { 'is_box_checked': false, 'role_id': res[i].roleId}; - } - - for (var app_id in app_id_name_list) { - var new_res = {}; - new_res.children = []; - new_res.label = app_id_name_list[app_id]; - new_res.id = app_id; - new_res.menuId = app_id; - new_res.parentMenuId = null; - new_res.appId = null; - new_res.can_check = true; - new_res.roleId = null; - $scope.checkboxIdDict[new_res.id]= { 'is_box_checked': false, 'role_id': new_res.roleId }; - res.push(new_res); - } - $scope.parentChildRoleIdDict ={}; - //Adding actual child items to children array in res objects - for (let i = 0; i < res.length; i++) { - let parentId = res[i].menuId; - $scope.parentChildRoleIdDict[parentId]=[]; - for (let j = 0; j < res.length; j++) { - let childId = res[j].parentMenuId; - if (parentId == childId) { - res[i].children.push(res[j]); - if (res[j].roleId) { - for (let k in res[j].roleId) { - $scope.parentChildRoleIdDict[parentId].push(res[j].roleId[k]); - } - - } - } - } - } - //Forming actual parent items - for (let i = 0; i < res.length; i++) { - let parentId = res[i].parentMenuId; - if (parentId === null) { - actualData.push(res[i]); - } - } - - $scope.treedata = actualData; - }).catch(err => { - $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ', err); - }).finally(() => { - this.isLoadingTable = false; - }) - } - $scope.getFunctionalMenu= function() { - $scope.treeTitle="Functional Menu"; - getFunctionalMenu(); - } - $scope.getAppRoleIds = function() { - $scope.treeTitle="Applications/Roles"; - getAppRoleIds(); - } - - init(); - getFunctionalMenu(); - - } - - } - - userNotificationsModalCtrl.$inject = ['$scope', '$log', 'functionalMenuService', 'confirmBoxService', 'notificationService', '$modal', 'ngDialog', '$state', '$filter']; - angular.module('ecompApp').controller('userNotificationsModalCtrl', userNotificationsModalCtrl); - - angular.module('ecompApp').directive('attDatepickerCustom', ['$log', function($log) { - return { - restrict: 'A', - require: 'ngModel', - scope: {}, - - controller: ['$scope', '$element', '$attrs', '$compile', 'datepickerConfig', 'datepickerService', function($scope, $element, $attrs, $compile, datepickerConfig, datepickerService) { - var dateFormatString = angular.isDefined($attrs.dateFormat) ? $scope.$parent.$eval($attrs.dateFormat) : datepickerConfig.dateFormat; - var selectedDateMessage = '
    the date you selected is {{$parent.current | date : \'' + dateFormatString + '\'}}
    '; - $element.removeAttr('att-datepicker-custom'); - $element.removeAttr('ng-model'); - $element.attr('ng-value', '$parent.current | date:"EEEE, MMMM d, y"'); - $element.attr('aria-describedby', 'datepicker'); - - $element.attr('maxlength', 10); - - var wrapperElement = angular.element('
    '); - wrapperElement.attr('datepicker-popup', ''); - wrapperElement.attr('current', 'current'); - - datepickerService.setAttributes($attrs, wrapperElement); - datepickerService.bindScope($attrs, $scope); - - wrapperElement.html(''); - wrapperElement.append($element.prop('outerHTML')); - if (navigator.userAgent.match(/MSIE 8/) === null) { - wrapperElement.append(selectedDateMessage); - } - var elm = wrapperElement.prop('outerHTML'); - elm = $compile(elm)($scope); - $element.replaceWith(elm); - }], - link: function(scope, elem, attr, ctrl) { - if (!ctrl) { - // do nothing if no ng-model - $log.error("ng-model is required."); - return; - } - - scope.$watch('current', function(value) { - ctrl.$setViewValue(value); - }); - ctrl.$render = function() { - scope.current = ctrl.$viewValue; - }; - - } - }; - }]); - - angular.module('ecompApp').directive('jqTreeUserNotif', ['functionalMenuService', '$log', 'confirmBoxService', '$compile', function (functionalMenuService, $log, confirmBoxService, $compile) { - return { - scope: true, - templateUrl: 'jq-tree-tmpl-user-notif.html', - link: function (scope, el, attrs) { - - var $jqTree = el.find('#jqTreeUserNotif').tree({ - data: scope.treedata, - autoOpen: scope.editModeObj.isEditMode, - dragAndDrop: false, - onCreateLi: function (node, $li) { - node.is_checked = false; - if (node.roleId&&scope.roleObj.notificationRoleIds) { - node.is_checked = (node.roleId.length === _.intersection(node.roleId, scope.roleObj.notificationRoleIds).length); - } - if (typeof node.id =="string"){ - $li.attr('id', node.id.replace(/\s+/g, '_')); - } - var isChecked = ''; - if (node.is_checked) { - isChecked = 'checked="checked"'; - } - if (node.can_check) { - var toShow = true; - if (scope.notifObj.isCategoriesFunctionalMenu) { - toShow = scope.toShowItemDict[node.menuId]; - } - var isDisabled = ""; - if (scope.editModeObj.isEditMode) { - isDisabled = " disabled" - - //if node is a parent/grandparent node - if (node.children.length>0){ - //whether to show node first - if (_.intersection(scope.parentChildRoleIdDict[node.menuId], scope.roleObj.notificationRoleIds).length) { - toShow=true; - if (scope.parentChildRoleIdDict[node.menuId].length==_.intersection(scope.parentChildRoleIdDict[node.menuId], scope.roleObj.notificationRoleIds).length) { - isChecked = 'checked="checked"'; - } - } else { - toShow=false; - } - } - //if node is a child node - else { - if (node.is_checked) { - toShow=true; - } else { - toShow=false; - } - } - - } - - - - var template = '' - - var templateEl = angular.element(template); - var $jqCheckbox = $compile(templateEl)(scope); - if (toShow){ - $li.find('.jqtree-element').prepend($jqCheckbox); - } else { - $li.find('.jqtree-element').remove(); - } - } - } - }); - - scope.thisCheckboxClicked = function (e) { - - var nodeId = e.target.attributes[4].value; - - - - var sBrowser, sUsrAg = window.navigator.userAgent; - //if (sUsrAg.indexOf("Firefox") > -1) { - - if (sUsrAg.indexOf("Trident") > -1) { - nodeId = e.target.attributes[5].value; - } - -// if (sUsrAg.indexOf("MSIE") > 1) { -// alert("hELLO tHIS IS IE10"); -// nodeId = e.target.attributes[3].value; -// alert('nodeId 26 of IE 45 : '+nodeId); -// } -// - var version = navigator.userAgent.match(/Firefox\/(.*)$/); - - if(version && version.length > 1){ - if(parseInt(version[1]) >= 50){ - nodeId = e.target.attributes[3].value; - } else if(parseInt(version[1]) >= 45){ - - nodeId = e.target.attributes[2].value; - } - } - var thisNode = el.find('#jqTreeUserNotif').tree('getNodeById', nodeId); - var isChecked = e.target.checked; - scope.checkboxIdDict[nodeId]['is_box_checked'] = isChecked; - - thisNode = angular.element(thisNode); - if (thisNode[0].hasOwnProperty('children') && thisNode[0].children.length > 0) { - var jsNodeCheckList = angular.element(e.target).parent().next().find('.js-node-check') - // check/uncheck children items - jsNodeCheckList.prop('checked', isChecked); - - for (var i in jsNodeCheckList) { - var singlediv = jsNodeCheckList[i]; - if (typeof singlediv == 'object' & (!singlediv.length)) { - - var tempNodeId = angular.element(singlediv)[0].attributes[4].value; - - - - if (sUsrAg.indexOf("Trident") > -1) { - - var tempNodeId = angular.element(singlediv)[0].attributes[5].value; - - - } - -// if (sUsrAg.indexOf("MSIE") > 0) { -// var tempNodeId = angular.element(singlediv)[0].attributes[3].value; -// alert('tempNodeId 2 FF 45 : '+tempNodeId); -// } - if(version && version.length > 1){ - if(parseInt(version[1]) >= 50){ - tempNodeId = angular.element(singlediv)[0].attributes[3].value; - } - else if(parseInt(version[1]) >= 45){ - tempNodeId = angular.element(singlediv)[0].attributes[2].value; - } - } - scope.checkboxIdDict[tempNodeId]['is_box_checked'] = isChecked; - } - } - } - - scope.checkBoxObj.isAnyRoleSelected = false; - for (var key in scope.checkboxIdDict) { - if (scope.checkboxIdDict[key]['is_box_checked']&&scope.checkboxIdDict[key]['role_id']) { - scope.checkBoxObj.isAnyRoleSelected = true; - break; - } - } - } - - - - scope.$watch('treedata', function (oldValue, newValue) { - if (oldValue !== newValue) { - $jqTree.tree('loadData', scope.treedata); - $jqTree.tree('reload', function () { - }); - } - }); - } - }; - }]); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; + +(function () { + + class userNotificationsModalCtrl { + constructor($scope, $log, functionalMenuService, confirmBoxService, notificationService, $modal, ngDialog, $state, $filter) { + + let newNotifModel = { + 'isOnlineUsersOnly': null, + 'isForAllRolesOptions': null, + 'selectedPriority': null, + 'isActive': null, + 'startTime': null, + 'endTime': null, + 'msgHeader': null, + 'msgDescription': null, + 'roleIds': null, + 'roleObj': {notificationRoleIds:null} + }; + + $scope.notificationId = null; + $scope.selectedCat = null; + $scope.selectedEcompFunc = null; + this.YN_index_mapping = { + "Y": 0, + "N": 1 + } + + $scope.onlineAllUsersOptions = [ + { "index": 0, "value": "Y", "title": "Online Users Only" }, + { "index": 1, "value": "N", "title": "Online & Offline Users" } + + ]; + + $scope.isForAllRolesOptions = [ + { "index": 0, "value": "Y", "title": "Yes" }, + { "index": 1, "value": "N", "title": "No" } + ]; + + $scope.priorityOptions = [ + { "index": 0, "value": 1, "title": "Normal" }, + { "index": 1, "value": 2, "title": "Important" } + ]; + + $scope.isActiveOptions = [ + { "index": 0, "value": "Y", "title": "Yes" }, + { "index": 1, "value": "N", "title": "No" } + ]; + $scope.isActive = $scope.isActiveOptions[0]; + $scope.selectPriority = $scope.priorityOptions[0]; + $scope.isOnlineUsersOnly = $scope.onlineAllUsersOptions[1]; + $scope.isForAllRoles=$scope.isForAllRolesOptions[0].value; + $scope.isFunctionalMenu ="Y"; + + $scope.selectedPriority=$scope.priorityOptions[0].value; + + // $scope.notificationRoleIds = []; + $scope.msgHeader = ''; + $scope.msgDescription = ''; + $scope.treeTitle="Functional Menu"; + $scope.notifObj= {isCategoriesFunctionalMenu:true}; + + let init = () => { + // $log.info('userNotificationsModalCtrl::init'); + this.isSaving = false; + var today = new Date(); + $scope.minDate = today.toISOString().substring(0, 10); + var threeMonthsFromNow = new Date(); + threeMonthsFromNow.setMonth(threeMonthsFromNow.getMonth() + 3); + $scope.maxDate = threeMonthsFromNow.toISOString().substring(0, 10); + if ($scope.ngDialogData && $scope.ngDialogData.notif) { + // $log.debug('userNotificationsModalCtrl:init:: Edit + // notification mode for', $scope.ngDialogData.notif); + $scope.isEditMode = true; + $scope.editModeObj = {isEditMode: true}; + this.notif = _.clone($scope.ngDialogData.notif); + $scope.modalPgTitle = 'View Notification' + $scope.isOnlineUsersOnly = $scope.onlineAllUsersOptions[this.YN_index_mapping[this.notif.isForOnlineUsers]]; + $scope.isForAllRoles = $scope.isForAllRolesOptions[this.YN_index_mapping[this.notif.isForAllRoles]].value; + $scope.isActive = $scope.isActiveOptions[this.YN_index_mapping[this.notif.activeYn]]; + $scope.selectedPriority = $scope.priorityOptions[this.notif.priority - 1].value; + $scope.startTime = new Date(this.notif.startTime); + $scope.endTime = new Date(this.notif.endTime); + $scope.msgHeader = this.notif.msgHeader; + $scope.msgDescription = this.notif.msgDescription; + $scope.notificationId = this.notif.notificationId; + $scope.notificationRoleIds = this.notif.roleIds; + $scope.roleObj = {notificationRoleIds:this.notif.roleIds}; + } else { + // $log.debug('AppDetailsModalCtrl:init:: New app mode'); + $scope.isEditMode = false; + $scope.editModeObj = {isEditMode: false}; + $scope.modalPgTitle = 'Add a New Notification' + this.notif = _.clone(newNotifModel); + $scope.roleObj = {notificationRoleIds:null}; + } + }; + this.conflictMessages = {}; + this.scrollApi = {}; + let handleConflictErrors = err => { + if(!err.data){ + return; + } + if(!err.data.length){ // support objects + err.data = [err.data] + } + _.forEach(err.data, item => { + _.forEach(item.fields, field => { + // set conflict message + this.conflictMessages[field.name] = errorMessageByCode[item.errorCode]; + // set field as invalid + $scope.appForm[field.name].$setValidity('conflict', false); + // set watch once to clear error after user correction + watchOnce[field.name](); + }); + }); + this.scrollApi.scrollTop(); + }; + + let resetConflict = fieldName => { + delete this.conflictMessages[fieldName]; + if($scope.appForm[fieldName]){ + $scope.appForm[fieldName].$setValidity('conflict', true); + } + }; + $scope.addUserNotificationValidation = function () { + // // pre-processing + if (!($scope.isEditMode)) { + var validation=false; + + if($scope.startTime && $scope.endTime && $scope.msgHeader != '' && $scope.msgDescription != '' && ($scope.startTime<$scope.endTime)){ + validation=true; + if( $scope.isForAllRoles=='N'){ + validation = $scope.checkBoxObj.isAnyRoleSelected; + } + } + else{ + validation=false; + } + + + return !validation; + } + } + + /* format the value for viewing a notification */ + $scope.formatStartDate = function () { + if ($scope.startTime) { + $scope.startTime = $filter('date')($scope.startTime, 'medium'); + } + } + + /* format the value for viewing a notification */ + $scope.formatEndDate = function () { + if($scope.endTime){ + $scope.endTime = $filter('date')($scope.endTime, 'medium'); + } + } + + $scope.addUserNotification = function () { + $scope.notificationRoleIds = []; + // pre-processing + for (var key in $scope.checkboxIdDict) { + if ($scope.checkboxIdDict[key].is_box_checked && ($scope.checkboxIdDict[key].role_id != null)) { + var role_ids = $scope.checkboxIdDict[key].role_id; + for (var i in role_ids) { + if (!($scope.notificationRoleIds.indexOf(role_ids[i]) > -1)) { + $scope.notificationRoleIds.push(role_ids[i]); + } + } + } + } + + $scope.notificationRoleIds.sort(); + if (($scope.isOnlineUsersOnly) && ($scope.isForAllRoles) && ($scope.selectedPriority) && ($scope.isActive) + && ($scope.startTime) && ($scope.endTime) && ($scope.msgHeader != '') && ($scope.msgDescription != '')) { + this.newUserNotification = + { + 'notificationId':$scope.notificationId, + 'isForOnlineUsers': $scope.isOnlineUsersOnly.value, + 'isForAllRoles': $scope.isForAllRoles, + 'priority': $scope.selectedPriority, + 'activeYn': $scope.isActive.value, + 'startTime': $scope.startTime, + 'endTime': $scope.endTime, + 'msgHeader': $scope.msgHeader, + 'msgDescription': $scope.msgDescription, + 'roleIds': $scope.notificationRoleIds, + 'createdDate': new Date() + }; + + // POST ajax call here; + if ($scope.isEditMode) { + notificationService.updateAdminNotification(this.newUserNotification) + .then(() => { + //$log.debug('NotificationService:updateAdminNotification:: Admin notification update succeeded!'); + $scope.closeThisDialog(true); + // emptyCookies(); + }).catch(err => { + $log.error('notificationService.updateAdminNotfication failed: ' + JSON.stringify(err)); + switch (err.status) { + case '409': // Conflict + // handleConflictErrors(err); + break; + case '500': // Internal Server Error + confirmBoxService.showInformation('There was a problem updating the notification. ' + + 'Please try again later. Error: ' + err.status).then(isConfirmed => { }); + break; + case '403': // Forbidden... possible + // webjunction error to + // try again + confirmBoxService.showInformation('There was a problem updating the notification. ' + + 'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => { }); + break; + default: + confirmBoxService.showInformation('There was a problem updating the notification. ' + + 'Please try again. If the problem persists, then try again later. Error: ' + err.status).then(isConfirmed => { }); + } + }).finally(() => { + // for bug in IE 11 + var objOffsetVersion = objAgent.indexOf("MSIE"); + if (objOffsetVersion != -1) { + $log.debug('AppDetailsModalCtrl:updateOnboardingApp:: Browser is IE, forcing Refresh'); + $window.location.reload(); + } + // for bug in IE 11 + }); + + } else { + notificationService.addAdminNotification(this.newUserNotification) + .then((res) => { + $log.debug('notificationService:addAdminNotification:: Admin notification creation succeeded!,',res); + if(res.status=='ERROR'){ + confirmBoxService.showInformation('There was a problem adding the notification. ' + + ' Error: ' + res.response).then(isConfirmed => { }); + + + } + else{ + $scope.closeThisDialog(true); + } + + // emptyCookies(); + }).catch(err => { + switch (err.status) { + case '409': // Conflict + // handleConflictErrors(err); + break; + case '500': // Internal Server Error + confirmBoxService.showInformation('There was a problem adding the notification. ' + + 'Please try again later. Error: ' + err.status).then(isConfirmed => { }); + break; + default: + confirmBoxService.showInformation('There was a problem adding the notification. ' + + 'Please try again. If the problem persists, then try again later. Error: ' + + err.status).then(isConfirmed => { }); + } + $log.error('notificationService:addAdminNotification error:: ' + JSON.stringify(err)); + }) + } + + + } else { + $log.warn('please fill in all required fields'); + confirmBoxService.showInformation('Please fill in all required fields').then(isConfirmed => { }); + } + } + // Populate the category list for category dropdown list + let getFunctionalMenu = () => { + this.isLoadingTable = true; + $scope.notifObj= {isCategoriesFunctionalMenu:true}; + functionalMenuService.getFunctionalMenuRole().then(role_res => { + var menu_role_dict = {}; + for (var i in role_res) { + // if first time appear in menu_role_dict + if (!(role_res[i].menuId in menu_role_dict)) { + menu_role_dict[role_res[i].menuId] = [role_res[i].roleId]; + } else { + menu_role_dict[role_res[i].menuId].push(role_res[i].roleId); + } + } + functionalMenuService.getManagedFunctionalMenuForNotificationTree().then(res => { + let actualData = []; + var exclude_list = ['Favorites'] + // Adding children and label attribute to all objects in + $scope.checkboxIdDict = {}; + $scope.checkBoxObj = {isAnyRoleSelected:false}; + for (let i = 0; i < res.length; i++) { + res[i].children = []; + res[i].label = res[i].text; + res[i].id = res[i].text; + // res[i].is_box_checked = false; + res[i].can_check = true; + res[i].roleId = menu_role_dict[res[i].menuId]; + $scope.checkboxIdDict[res[i].id] = { 'is_box_checked': false, 'role_id': res[i].roleId }; + } + + // Adding actual child items to children array in res + // objects + $scope.parentChildDict ={}; + $scope.parentChildRoleIdDict ={}; + for (let i = 0; i < res.length; i++) { + let parentId = res[i].menuId; + $scope.parentChildDict[parentId] = []; + $scope.parentChildRoleIdDict[parentId]=[]; + for (let j = 0; j < res.length; j++) { + let childId = res[j].parentMenuId; + if (parentId === childId) { + res[i].children.push(res[j]); + $scope.parentChildDict[parentId].push(res[j].menuId); + //if res[j].roleId is defined + if (res[j].roleId) { + for (let k in res[j].roleId) { + $scope.parentChildRoleIdDict[parentId].push(res[j].roleId[k]); + } + + } + } + } + } + + //check if grand children exist + for (var key in $scope.parentChildDict){ + var children = $scope.parentChildDict[key]; + var isGrandParent = false; + if (children.length>0) { + for (var i in children) { + if ($scope.parentChildDict[children[i]].length>0){ + isGrandParent = true; + break; + } + } + } + if (isGrandParent) { + for (var i in children) { + // if the child has children + if ($scope.parentChildDict[children[i]].length>0) { + for (var j in $scope.parentChildRoleIdDict[children[i]]) { + + if ($scope.parentChildRoleIdDict[key].indexOf($scope.parentChildRoleIdDict[children[i]][j]) === -1) { + $scope.parentChildRoleIdDict[key].push($scope.parentChildRoleIdDict[children[i]][j]); + } + } + } else { + + } + } + } + + }; + + + var ListMenuIdToRemove = []; + //$scope.parentObj = {ListMenuIdToRemove : []}; + //get the list of menuId that needs to be removed + for (let i = 0; i < res.length; i++) { + if ((res[i].children.length==0)&&(!res[i].roleId)) { + var menuIdToRemove = res[i].menuId; + if (ListMenuIdToRemove.indexOf(menuIdToRemove) === -1){ + ListMenuIdToRemove.push(menuIdToRemove); + } + } + } + + // a scope variable that marks whether each functional menu item should be displayed. + $scope.toShowItemDict = {}; + for (let i = 0; i < res.length; i++) { + if (res[i].roleId==null) { + if (res[i].children.length==0) { + $scope.toShowItemDict[res[i].menuId]=false; + } else if(res[i].children.length>0){ + if($scope.parentChildDict[res[i].menuId].length === _.intersection($scope.parentChildDict[res[i].menuId], ListMenuIdToRemove).length){ + $scope.toShowItemDict[res[i].menuId]=false; + } else { + $scope.toShowItemDict[res[i].menuId]=true; + } + } + } else { + $scope.toShowItemDict[res[i].menuId]=true; + } + } + + // Sort the top-level menu items in order based on the + // column + res.sort(function (a, b) { + return a.column - b.column; + }); + + // Sort all the children in order based on the column + for (let i = 0; i < res.length; i++) { + res[i].children.sort(function (a, b) { + return a.column - b.column; + }); + } + + // Forming actual parent items + for (let i = 0; i < res.length; i++) { + let parentId = res[i].parentMenuId; + if (parentId === null) { + actualData.push(res[i]); + } + } + + // $scope.treedata = actualData; + var treedata = actualData[0].children; + $scope.treedata = []; + for (var i in treedata) { + if (!(treedata[i].label.indexOf(exclude_list) > -1)) { + $scope.treedata.push(treedata[i]) + } + } + + }).catch(err => { + $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ', err); + }).finally(() => { + this.isLoadingTable = false; + }) + + }).catch(err => { + $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ', err); + }) + ; + } + + + let getAppRoleIds = () => { + $scope.notifObj= {isCategoriesFunctionalMenu:false}; + notificationService.getAppRoleIds().then(res => { + + res = res.data; + let actualData = []; + // var exclude_list = ['Favorites'] + var app_id_name_list = {}; + $scope.checkboxIdDict = {}; + $scope.checkBoxObj = {isAnyRoleSelected:false}; + + for (let i = 0; i < res.length; i++) { + if (!(res[i].appId in app_id_name_list)) { + app_id_name_list[res[i].appId] = res[i].appName; + } + + res[i].children = []; + res[i].label = res[i].roleName; + res[i].id = res[i].roleId; + res[i].menuId = res[i].roleId; + res[i].parentMenuId = res[i].appId; + res[i].can_check = true; + res[i].roleId = [res[i].roleId]; + $scope.checkboxIdDict[res[i].id] = { 'is_box_checked': false, 'role_id': res[i].roleId}; + } + + for (var app_id in app_id_name_list) { + var new_res = {}; + new_res.children = []; + new_res.label = app_id_name_list[app_id]; + new_res.id = app_id; + new_res.menuId = app_id; + new_res.parentMenuId = null; + new_res.appId = null; + new_res.can_check = true; + new_res.roleId = null; + $scope.checkboxIdDict[new_res.id]= { 'is_box_checked': false, 'role_id': new_res.roleId }; + res.push(new_res); + } + $scope.parentChildRoleIdDict ={}; + //Adding actual child items to children array in res objects + for (let i = 0; i < res.length; i++) { + let parentId = res[i].menuId; + $scope.parentChildRoleIdDict[parentId]=[]; + for (let j = 0; j < res.length; j++) { + let childId = res[j].parentMenuId; + if (parentId == childId) { + res[i].children.push(res[j]); + if (res[j].roleId) { + for (let k in res[j].roleId) { + $scope.parentChildRoleIdDict[parentId].push(res[j].roleId[k]); + } + + } + } + } + } + //Forming actual parent items + for (let i = 0; i < res.length; i++) { + let parentId = res[i].parentMenuId; + if (parentId === null) { + actualData.push(res[i]); + } + } + + $scope.treedata = actualData; + }).catch(err => { + $log.error('FunctionalMenuCtrl:getFunctionalMenu:: error ', err); + }).finally(() => { + this.isLoadingTable = false; + }) + } + $scope.getFunctionalMenu= function() { + $scope.treeTitle="Functional Menu"; + getFunctionalMenu(); + } + $scope.getAppRoleIds = function() { + $scope.treeTitle="Applications/Roles"; + getAppRoleIds(); + } + + init(); + getFunctionalMenu(); + + } + + } + + userNotificationsModalCtrl.$inject = ['$scope', '$log', 'functionalMenuService', 'confirmBoxService', 'notificationService', '$modal', 'ngDialog', '$state', '$filter']; + angular.module('ecompApp').controller('userNotificationsModalCtrl', userNotificationsModalCtrl); + + angular.module('ecompApp').directive('attDatepickerCustom', ['$log', function($log) { + return { + restrict: 'A', + require: 'ngModel', + scope: {}, + + controller: ['$scope', '$element', '$attrs', '$compile', 'datepickerConfig', 'datepickerService', function($scope, $element, $attrs, $compile, datepickerConfig, datepickerService) { + var dateFormatString = angular.isDefined($attrs.dateFormat) ? $scope.$parent.$eval($attrs.dateFormat) : datepickerConfig.dateFormat; + var selectedDateMessage = '
    the date you selected is {{$parent.current | date : \'' + dateFormatString + '\'}}
    '; + $element.removeAttr('att-datepicker-custom'); + $element.removeAttr('ng-model'); + $element.attr('ng-value', '$parent.current | date:"EEEE, MMMM d, y"'); + $element.attr('aria-describedby', 'datepicker'); + + $element.attr('maxlength', 10); + + var wrapperElement = angular.element('
    '); + wrapperElement.attr('datepicker-popup', ''); + wrapperElement.attr('current', 'current'); + + datepickerService.setAttributes($attrs, wrapperElement); + datepickerService.bindScope($attrs, $scope); + + wrapperElement.html(''); + wrapperElement.append($element.prop('outerHTML')); + if (navigator.userAgent.match(/MSIE 8/) === null) { + wrapperElement.append(selectedDateMessage); + } + var elm = wrapperElement.prop('outerHTML'); + elm = $compile(elm)($scope); + $element.replaceWith(elm); + }], + link: function(scope, elem, attr, ctrl) { + if (!ctrl) { + // do nothing if no ng-model + $log.error("ng-model is required."); + return; + } + + scope.$watch('current', function(value) { + ctrl.$setViewValue(value); + }); + ctrl.$render = function() { + scope.current = ctrl.$viewValue; + }; + + } + }; + }]); + + angular.module('ecompApp').directive('jqTreeUserNotif', ['functionalMenuService', '$log', 'confirmBoxService', '$compile', function (functionalMenuService, $log, confirmBoxService, $compile) { + return { + scope: true, + templateUrl: 'jq-tree-tmpl-user-notif.html', + link: function (scope, el, attrs) { + + var $jqTree = el.find('#jqTreeUserNotif').tree({ + data: scope.treedata, + autoOpen: scope.editModeObj.isEditMode, + dragAndDrop: false, + onCreateLi: function (node, $li) { + node.is_checked = false; + if (node.roleId&&scope.roleObj.notificationRoleIds) { + node.is_checked = (node.roleId.length === _.intersection(node.roleId, scope.roleObj.notificationRoleIds).length); + } + if (typeof node.id =="string"){ + $li.attr('id', node.id.replace(/\s+/g, '_')); + } + var isChecked = ''; + if (node.is_checked) { + isChecked = 'checked="checked"'; + } + if (node.can_check) { + var toShow = true; + if (scope.notifObj.isCategoriesFunctionalMenu) { + toShow = scope.toShowItemDict[node.menuId]; + } + var isDisabled = ""; + if (scope.editModeObj.isEditMode) { + isDisabled = " disabled" + + //if node is a parent/grandparent node + if (node.children.length>0){ + //whether to show node first + if (_.intersection(scope.parentChildRoleIdDict[node.menuId], scope.roleObj.notificationRoleIds).length) { + toShow=true; + if (scope.parentChildRoleIdDict[node.menuId].length==_.intersection(scope.parentChildRoleIdDict[node.menuId], scope.roleObj.notificationRoleIds).length) { + isChecked = 'checked="checked"'; + } + } else { + toShow=false; + } + } + //if node is a child node + else { + if (node.is_checked) { + toShow=true; + } else { + toShow=false; + } + } + + } + + + + var template = '' + + var templateEl = angular.element(template); + var $jqCheckbox = $compile(templateEl)(scope); + if (toShow){ + $li.find('.jqtree-element').prepend($jqCheckbox); + } else { + $li.find('.jqtree-element').remove(); + } + } + } + }); + + scope.thisCheckboxClicked = function (e) { + + var nodeId = e.target.attributes[4].value; + + + + var sBrowser, sUsrAg = window.navigator.userAgent; + //if (sUsrAg.indexOf("Firefox") > -1) { + + if (sUsrAg.indexOf("Trident") > -1) { + nodeId = e.target.attributes[5].value; + } + +// if (sUsrAg.indexOf("MSIE") > 1) { +// alert("hELLO tHIS IS IE10"); +// nodeId = e.target.attributes[3].value; +// alert('nodeId 26 of IE 45 : '+nodeId); +// } +// + var version = navigator.userAgent.match(/Firefox\/(.*)$/); + + if(version && version.length > 1){ + if(parseInt(version[1]) >= 50){ + nodeId = e.target.attributes[3].value; + } else if(parseInt(version[1]) >= 45){ + + nodeId = e.target.attributes[2].value; + } + } + var thisNode = el.find('#jqTreeUserNotif').tree('getNodeById', nodeId); + var isChecked = e.target.checked; + scope.checkboxIdDict[nodeId]['is_box_checked'] = isChecked; + + thisNode = angular.element(thisNode); + if (thisNode[0].hasOwnProperty('children') && thisNode[0].children.length > 0) { + var jsNodeCheckList = angular.element(e.target).parent().next().find('.js-node-check') + // check/uncheck children items + jsNodeCheckList.prop('checked', isChecked); + + for (var i in jsNodeCheckList) { + var singlediv = jsNodeCheckList[i]; + if (typeof singlediv == 'object' & (!singlediv.length)) { + + var tempNodeId = angular.element(singlediv)[0].attributes[4].value; + + + + if (sUsrAg.indexOf("Trident") > -1) { + + var tempNodeId = angular.element(singlediv)[0].attributes[5].value; + + + } + +// if (sUsrAg.indexOf("MSIE") > 0) { +// var tempNodeId = angular.element(singlediv)[0].attributes[3].value; +// alert('tempNodeId 2 FF 45 : '+tempNodeId); +// } + if(version && version.length > 1){ + if(parseInt(version[1]) >= 50){ + tempNodeId = angular.element(singlediv)[0].attributes[3].value; + } + else if(parseInt(version[1]) >= 45){ + tempNodeId = angular.element(singlediv)[0].attributes[2].value; + } + } + scope.checkboxIdDict[tempNodeId]['is_box_checked'] = isChecked; + } + } + } + + scope.checkBoxObj.isAnyRoleSelected = false; + for (var key in scope.checkboxIdDict) { + if (scope.checkboxIdDict[key]['is_box_checked']&&scope.checkboxIdDict[key]['role_id']) { + scope.checkBoxObj.isAnyRoleSelected = true; + break; + } + } + } + + + + scope.$watch('treedata', function (oldValue, newValue) { + if (oldValue !== newValue) { + $jqTree.tree('loadData', scope.treedata); + $jqTree.tree('reload', function () { + }); + } + }); + } + }; + }]); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.modal.page.html b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.modal.page.html index e342692a..ac7f4895 100644 --- a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.modal.page.html +++ b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.modal.page.html @@ -1,161 +1,167 @@ - -
    - -
    {{modalPgTitle}}
    -
    -
    -
    -
    Broadcast to All Categories
    - -
    -
    -
    - * - Categories -
    -
    - -
    - - -
    - -
    - - - At least - one category is required - -
    -
    - -
    - -
    -
    -
    -
    - - - - -
    -
    - -
    -
    Priority
    - -
    -
    -
    -
    - -
    -
    -
    - * - Start Date (Local Time) -
    - -
    - Start Date is Required -
    -
    -
    -
    - -
    -
    - * End Date (Local Time) -
    - -
    - End Date is Required -
    -
    - End Date must be greater than start Date -
    -
    -
    - -
    -
    - * Title -
    - -
    - Title is Required -
    -
    - -
    -
    - * Message -
    - -
    - Message is Required -
    -
    - -
    - - - -
    - -
    -
    -
    + +
    + +
    {{modalPgTitle}}
    +
    +
    +
    +
    Broadcast to All Categories
    + +
    +
    +
    + * + Categories +
    +
    + +
    + + +
    + +
    + + + At least + one category is required + +
    +
    + +
    + +
    +
    +
    +
    + + + + +
    +
    + +
    +
    Priority
    + +
    +
    +
    +
    + +
    +
    +
    + * + Start Date (Local Time) +
    + +
    + Start Date is Required +
    +
    +
    +
    + +
    +
    + * End Date (Local Time) +
    + +
    + End Date is Required +
    +
    + End Date must be greater than start Date +
    +
    +
    + +
    +
    + * Title +
    + +
    + Title is Required +
    +
    + +
    +
    + * Message +
    + +
    + Message is Required +
    +
    + +
    + + + +
    + +
    +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.tpl.html b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.tpl.html index 742946f2..72c92c21 100644 --- a/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/user-notifications-admin/user.notifications.tpl.html @@ -1,117 +1,117 @@ - -
    -
    -
    -
    -

    User Notifications

    -
    -
    - -
    - -
    -
    - -
    - - -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Message SourceMessageStart Date (Local Time)End Date (Local Time)PriorityCreated ByCreated TimeAll Users (Roles)?View/Delete
    -
    {{rowData.msgSource}}
    -
    -
    {{rowData.msgHeader}}
    -
    -
    -
    -
    {{rowData.startTime | - date:'medium'}}
    -
    -
    {{rowData.endTime | - date:'medium'}}
    -
    -
    {{priorityItems[rowData.priority]}}
    -
    -
    {{!rowData.loginId ?externalNotification: rowData.loginId}}
    -
    -
    {{rowData.createdDate | - date:'medium'}}
    -
    -
    {{rowData.isForAllRoles}}
    -
    - -

    /

    -

    /

    -

    - - -
    - -
    -
    - - -
    -
    -
    + +
    +
    +
    +
    +

    User Notifications

    +
    +
    + +
    + +
    +
    + +
    + + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Message SourceMessageStart Date (Local Time)End Date (Local Time)PriorityCreated ByCreated TimeAll Users (Roles)?View/Delete
    +
    {{rowData.msgSource}}
    +
    +
    {{rowData.msgHeader}}
    +
    +
    +
    +
    {{rowData.startTime | + date:'medium'}}
    +
    +
    {{rowData.endTime | + date:'medium'}}
    +
    +
    {{priorityItems[rowData.priority]}}
    +
    +
    {{!rowData.loginId ?externalNotification: rowData.loginId}}
    +
    +
    {{rowData.createdDate | + date:'medium'}}
    +
    +
    {{rowData.isForAllRoles}}
    +
    + +

    /

    +

    /

    +

    + + +
    + +
    +
    + + +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.ack.html b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.ack.html index 9527c750..e3bcf0a4 100644 --- a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.ack.html +++ b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.ack.html @@ -1,32 +1,32 @@ - -
    -
    -
    Bulk User Upload Acknowledgement
    -
    -

    The valid entries have been uploaded.

    - -
    -
    OK
    -
    -
    -
    -
    + +
    +
    +
    Bulk User Upload Acknowledgement
    +
    +

    The valid entries have been uploaded.

    + +
    +
    OK
    +
    +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.confirm.html b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.confirm.html index a3c0b534..6df7d240 100644 --- a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.confirm.html +++ b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.confirm.html @@ -1,83 +1,83 @@ - -
    -
    Bulk User Upload Confirmation
    -
    - - -
    - {{progressMsg}} -
    -
    - -
    - -
    -
    - Click OK to upload the valid requests. - Invalid requests will be ignored.
    -
    - - - - - - - - - - - - - - - - - - -
    LineOrg User ID - App - RoleStatus
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -
    - - - -
    -
    -
    + +
    +
    Bulk User Upload Confirmation
    +
    + + +
    + {{progressMsg}} +
    +
    + +
    + +
    +
    + Click OK to upload the valid requests. + Invalid requests will be ignored.
    +
    + + + + + + + + + + + + + + + + + + +
    LineOrg User ID + App + RoleStatus
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + + + +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.controller.js b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.controller.js index e3046b86..e73fe290 100644 --- a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.controller.js +++ b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.controller.js @@ -1,577 +1,577 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * bulk user upload controller - */ -'use strict'; -(function () { - class BulkUserModalCtrl { - constructor($scope, $log, $filter, $q, usersService, applicationsService, confirmBoxService, functionalMenuService, ngDialog) { - - // Set to true for copious console output - var debug = false; - // Roles fetched from app service - var appRolesResult = []; - // Users fetched from user service - var userCheckResult = []; - // Requests for user-role assignment built by validator - var appUserRolesRequest = []; - - let init = () => { - if (debug) - $log.debug('BulkUserModalCtrl::init'); - // Angular insists on this. - $scope.fileModel = {}; - // Model for drop-down - $scope.adminApps = []; - // Enable modal controls - this.step1 = true; - this.fileSelected = false; - - // Flag that indicates background work is proceeding - $scope.isProcessing = true; - - // Load user's admin applications - applicationsService.getAdminApps().promise().then(apps => { - if (debug) - $log.debug('BulkUserModalCtrl::init: getAdminApps returned' + JSON.stringify(apps)); - if (!apps || typeof(apps) != 'object') { - $log.error('BulkUserModalCtrl::init: getAdminApps returned unexpected data'); - } - else { - if (debug) - $log.debug('BulkUserModalCtrl::init: admin apps length is ', apps.length); - - // Sort app names and populate the drop-down model - let sortedApps = apps.sort(getSortOrder('name', true)); - for (let i = 0; i < sortedApps.length; ++i) { - $scope.adminApps.push({ - index: i, - id: sortedApps[i].id, - value: sortedApps[i].name, - title: sortedApps[i].name - }); - } - // Pick the first one in the list - $scope.selectedApplication = $scope.adminApps[0]; - } - $scope.isProcessing = false; - }).catch(err => { - $log.error('BulkUserModalCtrl::init: getAdminApps threw', err); - $scope.isProcessing = false; - }); - - }; // init - - // Answers a function that compares properties with the specified name. - let getSortOrder = (prop, foldCase) => { - return function(a, b) { - let aProp = foldCase ? a[prop].toLowerCase() : a[prop]; - let bProp = foldCase ? b[prop].toLowerCase() : b[prop]; - if (aProp > bProp) - return 1; - else if (aProp < bProp) - return -1; - else - return 0; - } - } - - //This is a fix for dropdown selection, due to b2b dropdown only update value field - $scope.$watch('selectedApplication.value', (newVal, oldVal) => { - for(var i=0;i<$scope.adminApps.length;i++){ - if($scope.adminApps[i].value==newVal){ - $scope.selectedApplication=angular.copy($scope.adminApps[i]);; - } - } - }); - - // Invoked when user picks an app on the drop-down. - $scope.appSelected = () => { - if (debug) - $log.debug('BulkUserModalCtrl::appSelected: selectedApplication.id is ' + $scope.selectedApplication.id); - this.appSelected = true; - } - - // Caches the file name supplied by the event handler. - $scope.fileChangeHandler = (event, files) => { - this.fileSelected = true; - this.fileToRead = files[0]; - if (debug) - $log.debug("BulkUserModalCtrl::fileChangeHandler: file is ", this.fileToRead); - }; // file change handler - - /** - * Reads the contents of the file, calls portal endpoints - * to validate roles, userIds and existing role assignments; - * ultimately builds array of requests to be sent. - * Creates scope variable with input file contents for - * communication with functions. - * - * This function performs a synchronous step-by-step process - * using asynchronous promises. The code could all be inline - * here but the nesting becomes unwieldy. - */ - $scope.readValidateFile = () => { - $scope.isProcessing = true; - $scope.progressMsg = 'Reading upload file..'; - var reader = new FileReader(); - reader.onload = function(event) { - $scope.uploadFile = $filter('csvToObj')(reader.result); - if (debug) - $log.debug('BulkUserModalCtrl::readValidateFile onload: data length is ' + $scope.uploadFile.length); - // sort input by orgUserId - $scope.uploadFile.sort(getSortOrder('orgUserId', true)); - - let appid = $scope.selectedApplication.id; - $scope.progressMsg = 'Fetching application roles..'; - functionalMenuService.getManagedRolesMenu(appid).then(function (rolesObj) { - if (debug) - $log.debug("BulkUserModalCtrl::readValidateFile: managedRolesMenu returned " + JSON.stringify(rolesObj)); - appRolesResult = rolesObj; - $scope.progressMsg = 'Validating application roles..'; - $scope.verifyRoles(); - - let userPromises = $scope.buildUserChecks(); - if (debug) - $log.debug('BulkUserModalCtrl::readValidateFile: userPromises length is ' + userPromises.length); - $scope.progressMsg = 'Validating Org Users..'; - $q.all(userPromises).then(function() { - if (debug) - $log.debug('BulkUserModalCtrl::readValidateFile: userCheckResult length is ' + userCheckResult.length); - $scope.evalUserCheckResults(); - - let appPromises = $scope.buildAppRoleChecks(); - if (debug) - $log.debug('BulkUserModalCtrl::readValidateFile: appPromises length is ' + appPromises.length); - $scope.progressMsg = 'Querying application for user roles..'; - $q.all(appPromises).then( function() { - if (debug) - $log.debug('BulkUserModalCtrl::readValidateFile: appUserRolesRequest length is ' + appUserRolesRequest.length); - $scope.evalAppRoleCheckResults(); - - // Re sort by line for the confirmation dialog - $scope.uploadFile.sort(getSortOrder('line', false)); - // We're done, confirm box may show the table - if (debug) - $log.debug('BulkUserModalCtrl::readValidateFile inner-then ends'); - $scope.progressMsg = 'Done.'; - $scope.isProcessing = false; - }, - function(error) { - $log.error('BulkUserModalCtrl::readValidateFile: failed retrieving user-app roles'); - $scope.isProcessing = false; - } - ); // then of app promises - }, - function(error) { - $log.error('BulkUserModalCtrl::readValidateFile: failed retrieving user info'); - $scope.isProcessing = false; - } - ); // then of user promises - }, - function(error) { - $log.error('BulkUserModalCtrl::readValidateFile: failed retrieving app role info'); - $scope.isProcessing = false; - } - ); // then of role promise - - } // onload - - // Invoke the reader on the selected file - reader.readAsText(this.fileToRead); - }; - - /** - * Evaluates the result set returned by the app role service. - * Sets an uploadFile array element status if a role is not defined. - * Reads and writes scope variable uploadFile. - * Reads closure variable appRolesResult. - */ - $scope.verifyRoles = () => { - if (debug) - $log.debug('BulkUserModalCtrl::verifyRoles: appRoles is ' + JSON.stringify(appRolesResult)); - // check roles in upload file against defined app roles - $scope.uploadFile.forEach( function (uploadRow) { - // skip rows that already have a defined status: headers etc. - if (uploadRow.status) { - if (debug) - $log.debug('BulkUserModalCtrl::verifyRoles: skip row ' + uploadRow.line); - return; - } - uploadRow.role = uploadRow.role.trim(); - var foundRole=false; - for (var i=0; i < appRolesResult.length; i++) { - if (uploadRow.role.toUpperCase() === appRolesResult[i].rolename.trim().toUpperCase()) { - if (debug) - $log.debug('BulkUserModalCtrl::verifyRoles: match on role ' + uploadRow.role); - foundRole=true; - break; - } - }; - if (!foundRole) { - if (debug) - $log.debug('BulkUserModalCtrl::verifyRoles: NO match on role ' + uploadRow.role); - uploadRow.status = 'Invalid role'; - }; - }); // foreach - }; // verifyRoles - - /** - * Builds and returns an array of promises to invoke the - * searchUsers service for each unique Org User UID in the input. - * Reads and writes scope variable uploadFile, which must be sorted by Org User UID. - * The promise function writes to closure variable userCheckResult - */ - $scope.buildUserChecks = () => { - if (debug) - $log.debug('BulkUserModalCtrl::buildUserChecks: uploadFile length is ' + $scope.uploadFile.length); - userCheckResult = []; - let promises = []; - let prevRow = null; - $scope.uploadFile.forEach(function (uploadRow) { - if (uploadRow.status) { - if (debug) - $log.debug('BulkUserModalCtrl::buildUserChecks: skip row ' + uploadRow.line); - return; - }; - // detect repeated UIDs - if (prevRow == null || prevRow.orgUserId.toLowerCase() !== uploadRow.orgUserId.toLowerCase()) { - if (debug) - $log.debug('BulkUserModalCtrl::buildUserChecks: create request for orgUserId ' + uploadRow.orgUserId); - let userPromise = usersService.searchUsers(uploadRow.orgUserId).promise().then( (usersList) => { - if (typeof usersList[0] !== "undefined") { - userCheckResult.push({ - orgUserId: usersList[0].orgUserId, - firstName: usersList[0].firstName, - lastName: usersList[0].lastName, - jobTitle: usersList[0].jobTitle - }); - } - else { - // User not found. - if (debug) - $log.debug('BulkUserModalCtrl::buildUserChecks: searchUsers returned null'); - } - }, function(error){ - $log.error('BulkUserModalCtrl::buildUserChecks: searchUsers failed ' + JSON.stringify(error)); - }); - promises.push(userPromise); - } - else { - if (debug) - $log.debug('BulkUserModalCtrl::buildUserChecks: skip repeated orgUserId ' + uploadRow.orgUserId); - } - prevRow = uploadRow; - }); // foreach - return promises; - }; // buildUserChecks - - /** - * Evaluates the result set returned by the user service to set - * the uploadFile array element status if the user was not found. - * Reads and writes scope variable uploadFile. - * Reads closure variable userCheckResult. - */ - $scope.evalUserCheckResults = () => { - if (debug) - $log.debug('BulkUserModalCtrl::evalUserCheckResult: uploadFile length is ' + $scope.uploadFile.length); - $scope.uploadFile.forEach(function (uploadRow) { - if (uploadRow.status) { - if (debug) - $log.debug('BulkUserModalCtrl::evalUserCheckResults: skip row ' + uploadRow.line); - return; - }; - let foundorgUserId = false; - userCheckResult.forEach(function(userItem) { - if (uploadRow.orgUserId.toLowerCase() === userItem.orgUserId.toLowerCase()) { - if (debug) - $log.debug('BulkUserModalCtrl::evalUserCheckResults: found orgUserId ' + uploadRow.orgUserId); - foundorgUserId=true; - }; - }); - if (!foundorgUserId) { - if (debug) - $log.debug('BulkUserModalCtrl::evalUserCheckResults: NO match on orgUserId ' + uploadRow.orgUserId); - uploadRow.status = 'Invalid orgUserId'; - } - }); // foreach - }; // evalUserCheckResults - - /** - * Builds and returns an array of promises to invoke the getUserAppRoles - * service for each unique Org User in the input file. - * Each promise creates an update to be sent to the remote application - * with all role names. - * Reads scope variable uploadFile, which must be sorted by Org User. - * The promise function writes to closure variable appUserRolesRequest - */ - $scope.buildAppRoleChecks = () => { - if (debug) - $log.debug('BulkUserModalCtrl::buildAppRoleChecks: uploadFile length is ' + $scope.uploadFile.length); - appUserRolesRequest = []; - let appId = $scope.selectedApplication.id; - let promises = []; - let prevRow = null; - $scope.uploadFile.forEach( function (uploadRow) { - if (uploadRow.status) { - if (debug) - $log.debug('BulkUserModalCtrl::buildAppRoleChecks: skip row ' + uploadRow.line); - return; - } - // Because the input is sorted, generate only one request for each Org User - if (prevRow == null || prevRow.orgUserId.toLowerCase() !== uploadRow.orgUserId.toLowerCase()) { - if (debug) - $log.debug('BulkUserModalCtrl::buildAppRoleChecks: create request for orgUserId ' + uploadRow.orgUserId); - let appPromise = usersService.getUserAppRoles(appId, uploadRow.orgUserId).promise().then( (userAppRolesResult) => { - // Reply for unknown user has all defined roles with isApplied=false on each. - if (typeof userAppRolesResult[0] !== "undefined") { - if (debug) - $log.debug('BulkUserModalCtrl::buildAppRoleChecks: adding result ' - + JSON.stringify(userAppRolesResult)); - appUserRolesRequest.push({ - orgUserId: uploadRow.orgUserId, - userAppRoles: userAppRolesResult - }); - } else { - $log.error('BulkUserModalCtrl::buildAppRoleChecks: getUserAppRoles returned ' + JSON.stringify(userAppRolesResult)); - }; - }, function(error){ - $log.error('BulkUserModalCtrl::buildAppRoleChecks: getUserAppRoles failed ', error); - }); - promises.push(appPromise); - } else { - if (debug) - $log.debug('BulkUserModalCtrl::buildAppRoleChecks: duplicate orgUserId, skip: '+ uploadRow.orgUserId); - } - prevRow = uploadRow; - }); // foreach - return promises; - }; // buildAppRoleChecks - - /** - * Evaluates the result set returned by the app service and adjusts - * the list of updates to be sent to the remote application by setting - * isApplied=true for each role name found in the upload file. - * Reads and writes scope variable uploadFile. - * Reads closure variable appUserRolesRequest. - */ - $scope.evalAppRoleCheckResults = () => { - if (debug) - $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: uploadFile length is ' + $scope.uploadFile.length); - $scope.uploadFile.forEach(function (uploadRow) { - if (uploadRow.status) { - if (debug) - $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: skip row ' + uploadRow.line); - return; - } - // Search for the match in the app-user-roles array - appUserRolesRequest.forEach( function (appUserRoleObj) { - if (uploadRow.orgUserId.toLowerCase() === appUserRoleObj.orgUserId.toLowerCase()) { - if (debug) - $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: match on orgUserId ' + uploadRow.orgUserId); - let roles = appUserRoleObj.userAppRoles; - roles.forEach(function (appRoleItem) { - //if (debug) - // $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: checking uploadRow.role=' - // + uploadRow.role + ', appRoleItem.roleName= ' + appRoleItem.roleName); - if (uploadRow.role === appRoleItem.roleName) { - if (appRoleItem.isApplied) { - if (debug) - $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: existing role ' - + appRoleItem.roleName); - uploadRow.status = 'Role exists'; - } - else { - if (debug) - $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: new role ' - + appRoleItem.roleName); - // After much back-and-forth I decided a clear indicator - // is better than blank in the table status column. - uploadRow.status = 'OK'; - appRoleItem.isApplied = true; - } - // This count is not especially interesting. - // numberUserRolesSucceeded++; - } - }); // for each role - } - }); // for each result - }); // for each row - }; // evalAppRoleCheckResults - - /** - * Sends requests to Portal requesting user role assignment. - * That endpoint handles creation of the user at the remote app if necessary. - * Reads closure variable appUserRolesRequest. - * Invoked by the Next button on the confirmation dialog. - */ - $scope.updateDB = () => { - $scope.isProcessing = true; - $scope.progressMsg = 'Sending requests to application..'; - if (debug) - $log.debug('BulkUserModalCtrl::updateDB: request length is ' + appUserRolesRequest.length); - var numberUsersSucceeded = 0; - let promises = []; - appUserRolesRequest.forEach(function(appUserRoleObj) { - if (debug) - $log.debug('BulkUserModalCtrl::updateDB: appUserRoleObj is ' + JSON.stringify(appUserRoleObj)); - let updateRequest = { - orgUserId: appUserRoleObj.orgUserId, - appId: $scope.selectedApplication.id, - appRoles: appUserRoleObj.userAppRoles - }; - if (debug) - $log.debug('BulkUserModalCtrl::updateDB: updateRequest is ' + JSON.stringify(updateRequest)); - let updatePromise = usersService.updateUserAppRoles(updateRequest).promise().then(res => { - if (debug) - $log.debug('BulkUserModalCtrl::updateDB: updated successfully: ' + JSON.stringify(res)); - numberUsersSucceeded++; - }).catch(err => { - // What to do if one of many fails?? - $log.error('BulkUserModalCtrl::updateDB failed: ', err); - confirmBoxService.showInformation( - 'Failed to update the user application roles. ' + - 'Error: ' + err.status).then(isConfirmed => { }); - }).finally( () => { - // $log.debug('BulkUserModalCtrl::updateDB: finally()'); - }); - promises.push(updatePromise); - }); // for each - - // Run all the promises - $q.all(promises).then(function(){ - $scope.isProcessing = false; - confirmBoxService.showInformation('Processed ' + numberUsersSucceeded + ' users.').then(isConfirmed => { - // Close the upload-confirm dialog - ngDialog.close(); - }); - }); - }; // updateDb - - // Sets the variable that hides/reveals the user controls - $scope.step2 = () => { - this.fileSelected = false; - $scope.selectedFile = null; - $scope.fileModel = null; - this.step1 = false; - } - - // Navigate between dialog screens using step number: 1,2,... - $scope.navigateBack = () => { - this.step1 = true; - this.fileSelected = false; - }; - - // Opens a dialog to show the data to be uploaded. - // Invoked by the upload button on the bulk user dialog. - $scope.confirmUpload = () => { - // Start the process - $scope.readValidateFile(); - // Dialog shows progress - ngDialog.open({ - templateUrl: 'app/views/users/new-user-dialogs/bulk-user.confirm.html', - scope: $scope - }); - }; - - // Invoked by the Cancel button on the confirmation dialog. - $scope.cancelUpload = () => { - ngDialog.close(); - }; - - init(); - } // constructor - } // class - BulkUserModalCtrl.$inject = ['$scope', '$log', '$filter', '$q', 'usersService', 'applicationsService', 'confirmBoxService', 'functionalMenuService', 'ngDialog']; - angular.module('ecompApp').controller('BulkUserModalCtrl', BulkUserModalCtrl); - - angular.module('ecompApp').directive('fileChange', ['$parse', function($parse){ - return { - require: 'ngModel', - restrict: 'A', - link : function($scope, element, attrs, ngModel) { - var attrHandler = $parse(attrs['fileChange']); - var handler=function(e) { - $scope.$apply(function() { - attrHandler($scope, { $event:e, files:e.target.files } ); - $scope.selectedFile = e.target.files[0].name; - }); - }; - element[0].addEventListener('change',handler,false); - } - } - }]); - - angular.module('ecompApp').filter('csvToObj',function() { - return function(input) { - var result = []; - var len, i, line, o; - var lines = input.split('\n'); - // Need 1-based index below - for (len = lines.length, i = 1; i <= len; ++i) { - // Use 0-based index for array - line = lines[i - 1].trim(); - if (line.length == 0) { - // console.log("Skipping blank line"); - result.push({ - line: i, - orgUserId: '', - role: '', - status: 'Blank line' - }); - continue; - } - o = line.split(','); - if (o.length !== 2) { - // other lengths not valid for upload - result.push({ - line: i, - orgUserId: line, - role: '', - status: 'Failed to find 2 comma-separated values' - }); - } - else { - // console.log("Valid line: ", val); - let entry = { - line: i, - orgUserId: o[0], - role: o[1] - // leave status undefined, this could be valid. - }; - if (o[0].toLowerCase() === 'orgUserId') { - // not valid for upload, so set status - entry.status = 'Header'; - } - else if (o[0].trim() == '' || o[1].trim() == '') { - // defend against line with only a single comma etc. - entry.status = 'Failed to find 2 non-empty values'; - } - result.push(entry); - } // len 2 - } // for - return result; - }; - }); - - - -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * bulk user upload controller + */ +'use strict'; +(function () { + class BulkUserModalCtrl { + constructor($scope, $log, $filter, $q, usersService, applicationsService, confirmBoxService, functionalMenuService, ngDialog) { + + // Set to true for copious console output + var debug = false; + // Roles fetched from app service + var appRolesResult = []; + // Users fetched from user service + var userCheckResult = []; + // Requests for user-role assignment built by validator + var appUserRolesRequest = []; + + let init = () => { + if (debug) + $log.debug('BulkUserModalCtrl::init'); + // Angular insists on this. + $scope.fileModel = {}; + // Model for drop-down + $scope.adminApps = []; + // Enable modal controls + this.step1 = true; + this.fileSelected = false; + + // Flag that indicates background work is proceeding + $scope.isProcessing = true; + + // Load user's admin applications + applicationsService.getAdminApps().promise().then(apps => { + if (debug) + $log.debug('BulkUserModalCtrl::init: getAdminApps returned' + JSON.stringify(apps)); + if (!apps || typeof(apps) != 'object') { + $log.error('BulkUserModalCtrl::init: getAdminApps returned unexpected data'); + } + else { + if (debug) + $log.debug('BulkUserModalCtrl::init: admin apps length is ', apps.length); + + // Sort app names and populate the drop-down model + let sortedApps = apps.sort(getSortOrder('name', true)); + for (let i = 0; i < sortedApps.length; ++i) { + $scope.adminApps.push({ + index: i, + id: sortedApps[i].id, + value: sortedApps[i].name, + title: sortedApps[i].name + }); + } + // Pick the first one in the list + $scope.selectedApplication = $scope.adminApps[0]; + } + $scope.isProcessing = false; + }).catch(err => { + $log.error('BulkUserModalCtrl::init: getAdminApps threw', err); + $scope.isProcessing = false; + }); + + }; // init + + // Answers a function that compares properties with the specified name. + let getSortOrder = (prop, foldCase) => { + return function(a, b) { + let aProp = foldCase ? a[prop].toLowerCase() : a[prop]; + let bProp = foldCase ? b[prop].toLowerCase() : b[prop]; + if (aProp > bProp) + return 1; + else if (aProp < bProp) + return -1; + else + return 0; + } + } + + //This is a fix for dropdown selection, due to b2b dropdown only update value field + $scope.$watch('selectedApplication.value', (newVal, oldVal) => { + for(var i=0;i<$scope.adminApps.length;i++){ + if($scope.adminApps[i].value==newVal){ + $scope.selectedApplication=angular.copy($scope.adminApps[i]);; + } + } + }); + + // Invoked when user picks an app on the drop-down. + $scope.appSelected = () => { + if (debug) + $log.debug('BulkUserModalCtrl::appSelected: selectedApplication.id is ' + $scope.selectedApplication.id); + this.appSelected = true; + } + + // Caches the file name supplied by the event handler. + $scope.fileChangeHandler = (event, files) => { + this.fileSelected = true; + this.fileToRead = files[0]; + if (debug) + $log.debug("BulkUserModalCtrl::fileChangeHandler: file is ", this.fileToRead); + }; // file change handler + + /** + * Reads the contents of the file, calls portal endpoints + * to validate roles, userIds and existing role assignments; + * ultimately builds array of requests to be sent. + * Creates scope variable with input file contents for + * communication with functions. + * + * This function performs a synchronous step-by-step process + * using asynchronous promises. The code could all be inline + * here but the nesting becomes unwieldy. + */ + $scope.readValidateFile = () => { + $scope.isProcessing = true; + $scope.progressMsg = 'Reading upload file..'; + var reader = new FileReader(); + reader.onload = function(event) { + $scope.uploadFile = $filter('csvToObj')(reader.result); + if (debug) + $log.debug('BulkUserModalCtrl::readValidateFile onload: data length is ' + $scope.uploadFile.length); + // sort input by orgUserId + $scope.uploadFile.sort(getSortOrder('orgUserId', true)); + + let appid = $scope.selectedApplication.id; + $scope.progressMsg = 'Fetching application roles..'; + functionalMenuService.getManagedRolesMenu(appid).then(function (rolesObj) { + if (debug) + $log.debug("BulkUserModalCtrl::readValidateFile: managedRolesMenu returned " + JSON.stringify(rolesObj)); + appRolesResult = rolesObj; + $scope.progressMsg = 'Validating application roles..'; + $scope.verifyRoles(); + + let userPromises = $scope.buildUserChecks(); + if (debug) + $log.debug('BulkUserModalCtrl::readValidateFile: userPromises length is ' + userPromises.length); + $scope.progressMsg = 'Validating Org Users..'; + $q.all(userPromises).then(function() { + if (debug) + $log.debug('BulkUserModalCtrl::readValidateFile: userCheckResult length is ' + userCheckResult.length); + $scope.evalUserCheckResults(); + + let appPromises = $scope.buildAppRoleChecks(); + if (debug) + $log.debug('BulkUserModalCtrl::readValidateFile: appPromises length is ' + appPromises.length); + $scope.progressMsg = 'Querying application for user roles..'; + $q.all(appPromises).then( function() { + if (debug) + $log.debug('BulkUserModalCtrl::readValidateFile: appUserRolesRequest length is ' + appUserRolesRequest.length); + $scope.evalAppRoleCheckResults(); + + // Re sort by line for the confirmation dialog + $scope.uploadFile.sort(getSortOrder('line', false)); + // We're done, confirm box may show the table + if (debug) + $log.debug('BulkUserModalCtrl::readValidateFile inner-then ends'); + $scope.progressMsg = 'Done.'; + $scope.isProcessing = false; + }, + function(error) { + $log.error('BulkUserModalCtrl::readValidateFile: failed retrieving user-app roles'); + $scope.isProcessing = false; + } + ); // then of app promises + }, + function(error) { + $log.error('BulkUserModalCtrl::readValidateFile: failed retrieving user info'); + $scope.isProcessing = false; + } + ); // then of user promises + }, + function(error) { + $log.error('BulkUserModalCtrl::readValidateFile: failed retrieving app role info'); + $scope.isProcessing = false; + } + ); // then of role promise + + } // onload + + // Invoke the reader on the selected file + reader.readAsText(this.fileToRead); + }; + + /** + * Evaluates the result set returned by the app role service. + * Sets an uploadFile array element status if a role is not defined. + * Reads and writes scope variable uploadFile. + * Reads closure variable appRolesResult. + */ + $scope.verifyRoles = () => { + if (debug) + $log.debug('BulkUserModalCtrl::verifyRoles: appRoles is ' + JSON.stringify(appRolesResult)); + // check roles in upload file against defined app roles + $scope.uploadFile.forEach( function (uploadRow) { + // skip rows that already have a defined status: headers etc. + if (uploadRow.status) { + if (debug) + $log.debug('BulkUserModalCtrl::verifyRoles: skip row ' + uploadRow.line); + return; + } + uploadRow.role = uploadRow.role.trim(); + var foundRole=false; + for (var i=0; i < appRolesResult.length; i++) { + if (uploadRow.role.toUpperCase() === appRolesResult[i].rolename.trim().toUpperCase()) { + if (debug) + $log.debug('BulkUserModalCtrl::verifyRoles: match on role ' + uploadRow.role); + foundRole=true; + break; + } + }; + if (!foundRole) { + if (debug) + $log.debug('BulkUserModalCtrl::verifyRoles: NO match on role ' + uploadRow.role); + uploadRow.status = 'Invalid role'; + }; + }); // foreach + }; // verifyRoles + + /** + * Builds and returns an array of promises to invoke the + * searchUsers service for each unique Org User UID in the input. + * Reads and writes scope variable uploadFile, which must be sorted by Org User UID. + * The promise function writes to closure variable userCheckResult + */ + $scope.buildUserChecks = () => { + if (debug) + $log.debug('BulkUserModalCtrl::buildUserChecks: uploadFile length is ' + $scope.uploadFile.length); + userCheckResult = []; + let promises = []; + let prevRow = null; + $scope.uploadFile.forEach(function (uploadRow) { + if (uploadRow.status) { + if (debug) + $log.debug('BulkUserModalCtrl::buildUserChecks: skip row ' + uploadRow.line); + return; + }; + // detect repeated UIDs + if (prevRow == null || prevRow.orgUserId.toLowerCase() !== uploadRow.orgUserId.toLowerCase()) { + if (debug) + $log.debug('BulkUserModalCtrl::buildUserChecks: create request for orgUserId ' + uploadRow.orgUserId); + let userPromise = usersService.searchUsers(uploadRow.orgUserId).promise().then( (usersList) => { + if (typeof usersList[0] !== "undefined") { + userCheckResult.push({ + orgUserId: usersList[0].orgUserId, + firstName: usersList[0].firstName, + lastName: usersList[0].lastName, + jobTitle: usersList[0].jobTitle + }); + } + else { + // User not found. + if (debug) + $log.debug('BulkUserModalCtrl::buildUserChecks: searchUsers returned null'); + } + }, function(error){ + $log.error('BulkUserModalCtrl::buildUserChecks: searchUsers failed ' + JSON.stringify(error)); + }); + promises.push(userPromise); + } + else { + if (debug) + $log.debug('BulkUserModalCtrl::buildUserChecks: skip repeated orgUserId ' + uploadRow.orgUserId); + } + prevRow = uploadRow; + }); // foreach + return promises; + }; // buildUserChecks + + /** + * Evaluates the result set returned by the user service to set + * the uploadFile array element status if the user was not found. + * Reads and writes scope variable uploadFile. + * Reads closure variable userCheckResult. + */ + $scope.evalUserCheckResults = () => { + if (debug) + $log.debug('BulkUserModalCtrl::evalUserCheckResult: uploadFile length is ' + $scope.uploadFile.length); + $scope.uploadFile.forEach(function (uploadRow) { + if (uploadRow.status) { + if (debug) + $log.debug('BulkUserModalCtrl::evalUserCheckResults: skip row ' + uploadRow.line); + return; + }; + let foundorgUserId = false; + userCheckResult.forEach(function(userItem) { + if (uploadRow.orgUserId.toLowerCase() === userItem.orgUserId.toLowerCase()) { + if (debug) + $log.debug('BulkUserModalCtrl::evalUserCheckResults: found orgUserId ' + uploadRow.orgUserId); + foundorgUserId=true; + }; + }); + if (!foundorgUserId) { + if (debug) + $log.debug('BulkUserModalCtrl::evalUserCheckResults: NO match on orgUserId ' + uploadRow.orgUserId); + uploadRow.status = 'Invalid orgUserId'; + } + }); // foreach + }; // evalUserCheckResults + + /** + * Builds and returns an array of promises to invoke the getUserAppRoles + * service for each unique Org User in the input file. + * Each promise creates an update to be sent to the remote application + * with all role names. + * Reads scope variable uploadFile, which must be sorted by Org User. + * The promise function writes to closure variable appUserRolesRequest + */ + $scope.buildAppRoleChecks = () => { + if (debug) + $log.debug('BulkUserModalCtrl::buildAppRoleChecks: uploadFile length is ' + $scope.uploadFile.length); + appUserRolesRequest = []; + let appId = $scope.selectedApplication.id; + let promises = []; + let prevRow = null; + $scope.uploadFile.forEach( function (uploadRow) { + if (uploadRow.status) { + if (debug) + $log.debug('BulkUserModalCtrl::buildAppRoleChecks: skip row ' + uploadRow.line); + return; + } + // Because the input is sorted, generate only one request for each Org User + if (prevRow == null || prevRow.orgUserId.toLowerCase() !== uploadRow.orgUserId.toLowerCase()) { + if (debug) + $log.debug('BulkUserModalCtrl::buildAppRoleChecks: create request for orgUserId ' + uploadRow.orgUserId); + let appPromise = usersService.getUserAppRoles(appId, uploadRow.orgUserId).promise().then( (userAppRolesResult) => { + // Reply for unknown user has all defined roles with isApplied=false on each. + if (typeof userAppRolesResult[0] !== "undefined") { + if (debug) + $log.debug('BulkUserModalCtrl::buildAppRoleChecks: adding result ' + + JSON.stringify(userAppRolesResult)); + appUserRolesRequest.push({ + orgUserId: uploadRow.orgUserId, + userAppRoles: userAppRolesResult + }); + } else { + $log.error('BulkUserModalCtrl::buildAppRoleChecks: getUserAppRoles returned ' + JSON.stringify(userAppRolesResult)); + }; + }, function(error){ + $log.error('BulkUserModalCtrl::buildAppRoleChecks: getUserAppRoles failed ', error); + }); + promises.push(appPromise); + } else { + if (debug) + $log.debug('BulkUserModalCtrl::buildAppRoleChecks: duplicate orgUserId, skip: '+ uploadRow.orgUserId); + } + prevRow = uploadRow; + }); // foreach + return promises; + }; // buildAppRoleChecks + + /** + * Evaluates the result set returned by the app service and adjusts + * the list of updates to be sent to the remote application by setting + * isApplied=true for each role name found in the upload file. + * Reads and writes scope variable uploadFile. + * Reads closure variable appUserRolesRequest. + */ + $scope.evalAppRoleCheckResults = () => { + if (debug) + $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: uploadFile length is ' + $scope.uploadFile.length); + $scope.uploadFile.forEach(function (uploadRow) { + if (uploadRow.status) { + if (debug) + $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: skip row ' + uploadRow.line); + return; + } + // Search for the match in the app-user-roles array + appUserRolesRequest.forEach( function (appUserRoleObj) { + if (uploadRow.orgUserId.toLowerCase() === appUserRoleObj.orgUserId.toLowerCase()) { + if (debug) + $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: match on orgUserId ' + uploadRow.orgUserId); + let roles = appUserRoleObj.userAppRoles; + roles.forEach(function (appRoleItem) { + //if (debug) + // $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: checking uploadRow.role=' + // + uploadRow.role + ', appRoleItem.roleName= ' + appRoleItem.roleName); + if (uploadRow.role === appRoleItem.roleName) { + if (appRoleItem.isApplied) { + if (debug) + $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: existing role ' + + appRoleItem.roleName); + uploadRow.status = 'Role exists'; + } + else { + if (debug) + $log.debug('BulkUserModalCtrl::evalAppRoleCheckResults: new role ' + + appRoleItem.roleName); + // After much back-and-forth I decided a clear indicator + // is better than blank in the table status column. + uploadRow.status = 'OK'; + appRoleItem.isApplied = true; + } + // This count is not especially interesting. + // numberUserRolesSucceeded++; + } + }); // for each role + } + }); // for each result + }); // for each row + }; // evalAppRoleCheckResults + + /** + * Sends requests to Portal requesting user role assignment. + * That endpoint handles creation of the user at the remote app if necessary. + * Reads closure variable appUserRolesRequest. + * Invoked by the Next button on the confirmation dialog. + */ + $scope.updateDB = () => { + $scope.isProcessing = true; + $scope.progressMsg = 'Sending requests to application..'; + if (debug) + $log.debug('BulkUserModalCtrl::updateDB: request length is ' + appUserRolesRequest.length); + var numberUsersSucceeded = 0; + let promises = []; + appUserRolesRequest.forEach(function(appUserRoleObj) { + if (debug) + $log.debug('BulkUserModalCtrl::updateDB: appUserRoleObj is ' + JSON.stringify(appUserRoleObj)); + let updateRequest = { + orgUserId: appUserRoleObj.orgUserId, + appId: $scope.selectedApplication.id, + appRoles: appUserRoleObj.userAppRoles + }; + if (debug) + $log.debug('BulkUserModalCtrl::updateDB: updateRequest is ' + JSON.stringify(updateRequest)); + let updatePromise = usersService.updateUserAppRoles(updateRequest).promise().then(res => { + if (debug) + $log.debug('BulkUserModalCtrl::updateDB: updated successfully: ' + JSON.stringify(res)); + numberUsersSucceeded++; + }).catch(err => { + // What to do if one of many fails?? + $log.error('BulkUserModalCtrl::updateDB failed: ', err); + confirmBoxService.showInformation( + 'Failed to update the user application roles. ' + + 'Error: ' + err.status).then(isConfirmed => { }); + }).finally( () => { + // $log.debug('BulkUserModalCtrl::updateDB: finally()'); + }); + promises.push(updatePromise); + }); // for each + + // Run all the promises + $q.all(promises).then(function(){ + $scope.isProcessing = false; + confirmBoxService.showInformation('Processed ' + numberUsersSucceeded + ' users.').then(isConfirmed => { + // Close the upload-confirm dialog + ngDialog.close(); + }); + }); + }; // updateDb + + // Sets the variable that hides/reveals the user controls + $scope.step2 = () => { + this.fileSelected = false; + $scope.selectedFile = null; + $scope.fileModel = null; + this.step1 = false; + } + + // Navigate between dialog screens using step number: 1,2,... + $scope.navigateBack = () => { + this.step1 = true; + this.fileSelected = false; + }; + + // Opens a dialog to show the data to be uploaded. + // Invoked by the upload button on the bulk user dialog. + $scope.confirmUpload = () => { + // Start the process + $scope.readValidateFile(); + // Dialog shows progress + ngDialog.open({ + templateUrl: 'app/views/users/new-user-dialogs/bulk-user.confirm.html', + scope: $scope + }); + }; + + // Invoked by the Cancel button on the confirmation dialog. + $scope.cancelUpload = () => { + ngDialog.close(); + }; + + init(); + } // constructor + } // class + BulkUserModalCtrl.$inject = ['$scope', '$log', '$filter', '$q', 'usersService', 'applicationsService', 'confirmBoxService', 'functionalMenuService', 'ngDialog']; + angular.module('ecompApp').controller('BulkUserModalCtrl', BulkUserModalCtrl); + + angular.module('ecompApp').directive('fileChange', ['$parse', function($parse){ + return { + require: 'ngModel', + restrict: 'A', + link : function($scope, element, attrs, ngModel) { + var attrHandler = $parse(attrs['fileChange']); + var handler=function(e) { + $scope.$apply(function() { + attrHandler($scope, { $event:e, files:e.target.files } ); + $scope.selectedFile = e.target.files[0].name; + }); + }; + element[0].addEventListener('change',handler,false); + } + } + }]); + + angular.module('ecompApp').filter('csvToObj',function() { + return function(input) { + var result = []; + var len, i, line, o; + var lines = input.split('\n'); + // Need 1-based index below + for (len = lines.length, i = 1; i <= len; ++i) { + // Use 0-based index for array + line = lines[i - 1].trim(); + if (line.length == 0) { + // console.log("Skipping blank line"); + result.push({ + line: i, + orgUserId: '', + role: '', + status: 'Blank line' + }); + continue; + } + o = line.split(','); + if (o.length !== 2) { + // other lengths not valid for upload + result.push({ + line: i, + orgUserId: line, + role: '', + status: 'Failed to find 2 comma-separated values' + }); + } + else { + // console.log("Valid line: ", val); + let entry = { + line: i, + orgUserId: o[0], + role: o[1] + // leave status undefined, this could be valid. + }; + if (o[0].toLowerCase() === 'orgUserId') { + // not valid for upload, so set status + entry.status = 'Header'; + } + else if (o[0].trim() == '' || o[1].trim() == '') { + // defend against line with only a single comma etc. + entry.status = 'Failed to find 2 non-empty values'; + } + result.push(entry); + } // len 2 + } // for + return result; + }; + }); + + + +})(); diff --git a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.modal.html b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.modal.html index 3d479cb9..7945e54a 100644 --- a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.modal.html +++ b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/bulk-user.modal.html @@ -1,70 +1,76 @@ - -
    -
    Bulk User Upload
    -
    -
    -
    Select Application:
    -
    - - - -
    -
    - -
    -
    Select Upload File:
    - - - {{selectedFile}} -
    File must have one entry per line with this format: -
    orgUserId, role name
    -
    -
    - - -
    - -
    - -
    - - - - - -
    -
    -
    + +
    +
    Bulk User Upload
    +
    +
    +
    Select Application:
    +
    + + + +
    +
    + +
    +
    Select Upload File:
    + + + {{selectedFile}} +
    File must have one entry per line with this format: +
    orgUserId, role name
    +
    +
    + + +
    + +
    + +
    + + + + + +
    +
    +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.controller.js b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.controller.js index 882f1e8f..6550a1ee 100644 --- a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.controller.js +++ b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.controller.js @@ -1,216 +1,217 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 12/20/15. - */ -'use strict'; -(function () { - class NewUserModalCtrl { - constructor($scope, $log, usersService, applicationsService, confirmBoxService) { - let init = () => { - //$log.info('NewUserModalCtrl::init'); - this.isSaving = false; - this.anyChanges = false; - this.adminApps = []; - this.isGettingAdminApps = false; - if($scope.ngDialogData && $scope.ngDialogData.selectedUser && $scope.ngDialogData.dialogState){ - this.selectedUser = $scope.ngDialogData.selectedUser; - this.dialogState = $scope.ngDialogData.dialogState; - this.isShowBack = false; - if(this.dialogState === 3){ - this.getUserAppsRoles(); - } - }else{ - this.isShowBack = true; - this.selectedUser = null; - this.dialogState = 1; - } - }; - - this.appChanged = (index) => { - let myApp = this.adminApps[index]; - //$log.debug('NewUserModalCtrl::appChanged: index: ', index, '; app id: ', myApp.id, 'app name: ',myApp.name); - myApp.isChanged = true; - this.anyChanges = true; - } - - this.deleteApp = (app) => { - let appMessage = this.selectedUser.firstName + ' ' + this.selectedUser.lastName; - confirmBoxService.deleteItem(appMessage).then(isConfirmed => { - if(isConfirmed){ - this.anyChanges = true; - app.isChanged = true; - app.isDeleted = true; // use this to hide the app in the display - app.appRoles.forEach(function(role){ - role.isApplied = false; - }); - } - }).catch(err => { - $log.error('NewUserModalCtrl::deleteApp error: ',err); - confirmBoxService.showInformation('There was a problem deleting the the applications. ' + - 'Please try again later. Error: ' + err.status).then(isConfirmed => {}); - }); - }; - - this.getUserAppsRoles = () => { - if (!this.selectedUser || !this.selectedUser.orgUserId) { - $log.error('NewUserModalCtrl::getUserAppsRoles error: No user is selected'); - this.dialogState = 1; - return; - } - //$log.debug('NewUserModalCtrl::getUserAppsRoles: about to call getAdminAppsSimpler'); - this.isGettingAdminApps = true; - applicationsService.getAdminAppsSimpler().then((apps) => { - //$log.debug('NewUserModalCtrl::getUserAppsRoles: beginning of then for getAdminAppsSimpler'); - this.isGettingAdminApps = false; - if (!apps || !apps.length) { - $log.error('NewUserModalCtrl::getUserAppsRoles error: no admin apps found'); - return null; - } - //$log.debug('NewUserModalCtrl::getUserAppsRoles: then for getAdminAppsSimpler: step 2'); - //$log.debug('NewUserModalCtrl::getUserAppsRoles: admin apps: ', apps); - this.adminApps = apps; - this.dialogState = 3; - this.userAppRoles = {}; - this.numberAppsProcessed = 0; - this.isLoading = true; - apps.forEach(app => { - //$log.debug('NewUserModalCtrl::getUserAppsRoles: app: id: ', app.id, 'name: ',app.name); - // Keep track of which app has changed, so we know which apps to update using a BE API - app.isChanged = false; - // Each of these specifies a state, which corresponds to a different message and style that gets displayed - app.isLoading = true; - app.isError = false; - app.isDeleted = false; - app.printNoChanges = false; - app.isUpdating = false; - app.isErrorUpdating = false; - app.isDoneUpdating = false; - app.errorMessage = ""; - usersService.getUserAppRoles(app.id, this.selectedUser.orgUserId).promise().then((userAppRolesResult) => { - //$log.debug('NewUserModalCtrl::getUserAppsRoles: got a result for app: ',app.id,': ',app.name,': ',userAppRolesResult); - app.appRoles = userAppRolesResult; - app.isLoading = false; - - }).catch(err => { - $log.error(err); - app.isError = true; - app.isLoading = false; - app.errorMessage = err.headers('FEErrorString'); - //$log.debug('NewUserModalCtrl::getUserAppsRoles: in new-user.controller: response header: '+err.headers('FEErrorString')); - }).finally(()=>{ - this.numberAppsProcessed++; - if (this.numberAppsProcessed === this.adminApps.length) { - this.isLoading = false; - } - }); - }) - return; - }).catch(err => { - $log.error(err); - }) - - } - - /** - * Update the selected user apps with the new roles. - * If no roles remain, set the user to inactive. - */ - this.updateUserAppsRoles = () => { - // $log.debug('NewUserModalCtrl::updateUserAppsRoles: entering updateUserAppsRoles'); - if(!this.selectedUser || !this.selectedUser.orgUserId || !this.adminApps){ - $log.error('NewUserModalCtrl::updateUserAppsRoles: mmissing arguments'); - return; - } - this.isSaving = true; - //$log.debug('NewUserModalCtrl::updateUserAppsRoles: going to update user: ' + this.selectedUser.orgUserId); - this.numberAppsProcessed = 0; - this.numberAppsSucceeded = 0; - this.adminApps.forEach(app => { - if (app.isChanged) { - //$log.debug('NewUserModalCtrl::updateUserAppsRoles: app roles have changed; going to update: id: ', app.id, '; name: ', app.name); - app.isUpdating = true; - var newUserAppRoles = { - orgUserId: this.selectedUser.orgUserId, - appId: app.id, - appRoles: app.appRoles, - appName: app.name - }; - usersService.updateUserAppRoles(newUserAppRoles).promise() - .then(res => { - //$log.debug('NewUserModalCtrl::updateUserAppsRoles: User app roles updated successfully on app: ',app.id); - app.isUpdating = false; - app.isDoneUpdating = true; - this.numberAppsSucceeded++; - }).catch(err => { - $log.error(err); - app.isErrorUpdating = true; - confirmBoxService.showInformation( - 'Failed to update the user application roles: ' + err.status) - .then(isConfirmed => {}); - }).finally(()=>{ - this.numberAppsProcessed++; - if (this.numberAppsProcessed === this.adminApps.length) { - this.isSaving = false; // hide the spinner - } - if (this.numberAppsSucceeded === this.adminApps.length) { - $scope.closeThisDialog(true);//close and resolve dialog promise with true (to update the table) - } - }) - } else { - //$log.debug('NewUserModalCtrl::updateUserAppsRoles: app roles have NOT changed; NOT going to update: id: ', app.id, '; name: ', app.name); - app.noChanges = true; - app.isError = false; //remove the error message; just show the No Changes messages - this.numberAppsProcessed++; - this.numberAppsSucceeded++; - if (this.numberAppsProcessed === this.adminApps.length) { - this.isSaving = false; // hide the spinner - } - if (this.numberAppsSucceeded === this.adminApps.length) { - $scope.closeThisDialog(true);//close and resolve dialog promise with true (to update the table) - } - } - }); - }; - - /** - * Navigate between dialog screens using step number: 1,2,... - */ - this.navigateBack = () => { - if (this.dialogState === 1) { - //back from 1st screen? - } - if (this.dialogState === 3) { - this.dialogState = 1; - } - }; - - init(); - - $scope.$on('$stateChangeStart', e => { - //Disable navigation when modal is opened - //**Nabil - note: this will cause the history back state to be replaced with current state - e.preventDefault(); - }); - } - } - NewUserModalCtrl.$inject = ['$scope', '$log', 'usersService', 'applicationsService', 'confirmBoxService']; - angular.module('ecompApp').controller('NewUserModalCtrl', NewUserModalCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 12/20/15. + */ +'use strict'; +(function () { + class NewUserModalCtrl { + constructor($scope, $log, usersService, applicationsService, confirmBoxService) { + var extRequestValue = false; + let init = () => { + //$log.info('NewUserModalCtrl::init'); + this.isSaving = false; + this.anyChanges = false; + this.adminApps = []; + this.isGettingAdminApps = false; + if($scope.ngDialogData && $scope.ngDialogData.selectedUser && $scope.ngDialogData.dialogState){ + this.selectedUser = $scope.ngDialogData.selectedUser; + this.dialogState = $scope.ngDialogData.dialogState; + this.isShowBack = false; + if(this.dialogState === 3){ + this.getUserAppsRoles(); + } + }else{ + this.isShowBack = true; + this.selectedUser = null; + this.dialogState = 1; + } + }; + + this.appChanged = (index) => { + let myApp = this.adminApps[index]; + //$log.debug('NewUserModalCtrl::appChanged: index: ', index, '; app id: ', myApp.id, 'app name: ',myApp.name); + myApp.isChanged = true; + this.anyChanges = true; + } + + this.deleteApp = (app) => { + let appMessage = this.selectedUser.firstName + ' ' + this.selectedUser.lastName; + confirmBoxService.deleteItem(appMessage).then(isConfirmed => { + if(isConfirmed){ + this.anyChanges = true; + app.isChanged = true; + app.isDeleted = true; // use this to hide the app in the display + app.appRoles.forEach(function(role){ + role.isApplied = false; + }); + } + }).catch(err => { + $log.error('NewUserModalCtrl::deleteApp error: ',err); + confirmBoxService.showInformation('There was a problem deleting the the applications. ' + + 'Please try again later. Error: ' + err.status).then(isConfirmed => {}); + }); + }; + + this.getUserAppsRoles = () => { + if (!this.selectedUser || !this.selectedUser.orgUserId) { + $log.error('NewUserModalCtrl::getUserAppsRoles error: No user is selected'); + this.dialogState = 1; + return; + } + //$log.debug('NewUserModalCtrl::getUserAppsRoles: about to call getAdminAppsSimpler'); + this.isGettingAdminApps = true; + applicationsService.getAdminAppsSimpler().then((apps) => { + //$log.debug('NewUserModalCtrl::getUserAppsRoles: beginning of then for getAdminAppsSimpler'); + this.isGettingAdminApps = false; + if (!apps || !apps.length) { + $log.error('NewUserModalCtrl::getUserAppsRoles error: no admin apps found'); + return null; + } + //$log.debug('NewUserModalCtrl::getUserAppsRoles: then for getAdminAppsSimpler: step 2'); + //$log.debug('NewUserModalCtrl::getUserAppsRoles: admin apps: ', apps); + this.adminApps = apps; + this.dialogState = 3; + this.userAppRoles = {}; + this.numberAppsProcessed = 0; + this.isLoading = true; + apps.forEach(app => { + //$log.debug('NewUserModalCtrl::getUserAppsRoles: app: id: ', app.id, 'name: ',app.name); + // Keep track of which app has changed, so we know which apps to update using a BE API + app.isChanged = false; + // Each of these specifies a state, which corresponds to a different message and style that gets displayed + app.isLoading = true; + app.isError = false; + app.isDeleted = false; + app.printNoChanges = false; + app.isUpdating = false; + app.isErrorUpdating = false; + app.isDoneUpdating = false; + app.errorMessage = ""; + usersService.getUserAppRoles(app.id, this.selectedUser.orgUserId, extRequestValue).promise().then((userAppRolesResult) => { + //$log.debug('NewUserModalCtrl::getUserAppsRoles: got a result for app: ',app.id,': ',app.name,': ',userAppRolesResult); + app.appRoles = userAppRolesResult; + app.isLoading = false; + + }).catch(err => { + $log.error(err); + app.isError = true; + app.isLoading = false; + app.errorMessage = err.headers('FEErrorString'); + //$log.debug('NewUserModalCtrl::getUserAppsRoles: in new-user.controller: response header: '+err.headers('FEErrorString')); + }).finally(()=>{ + this.numberAppsProcessed++; + if (this.numberAppsProcessed === this.adminApps.length) { + this.isLoading = false; + } + }); + }) + return; + }).catch(err => { + $log.error(err); + }) + + } + + /** + * Update the selected user apps with the new roles. + * If no roles remain, set the user to inactive. + */ + this.updateUserAppsRoles = () => { + // $log.debug('NewUserModalCtrl::updateUserAppsRoles: entering updateUserAppsRoles'); + if(!this.selectedUser || !this.selectedUser.orgUserId || !this.adminApps){ + $log.error('NewUserModalCtrl::updateUserAppsRoles: mmissing arguments'); + return; + } + this.isSaving = true; + //$log.debug('NewUserModalCtrl::updateUserAppsRoles: going to update user: ' + this.selectedUser.orgUserId); + this.numberAppsProcessed = 0; + this.numberAppsSucceeded = 0; + this.adminApps.forEach(app => { + if (app.isChanged) { + //$log.debug('NewUserModalCtrl::updateUserAppsRoles: app roles have changed; going to update: id: ', app.id, '; name: ', app.name); + app.isUpdating = true; + var newUserAppRoles = { + orgUserId: this.selectedUser.orgUserId, + appId: app.id, + appRoles: app.appRoles, + appName: app.name + }; + usersService.updateUserAppRoles(newUserAppRoles).promise() + .then(res => { + //$log.debug('NewUserModalCtrl::updateUserAppsRoles: User app roles updated successfully on app: ',app.id); + app.isUpdating = false; + app.isDoneUpdating = true; + this.numberAppsSucceeded++; + }).catch(err => { + $log.error(err); + app.isErrorUpdating = true; + confirmBoxService.showInformation( + 'Failed to update the user application roles: ' + err.status) + .then(isConfirmed => {}); + }).finally(()=>{ + this.numberAppsProcessed++; + if (this.numberAppsProcessed === this.adminApps.length) { + this.isSaving = false; // hide the spinner + } + if (this.numberAppsSucceeded === this.adminApps.length) { + $scope.closeThisDialog(true);//close and resolve dialog promise with true (to update the table) + } + }) + } else { + //$log.debug('NewUserModalCtrl::updateUserAppsRoles: app roles have NOT changed; NOT going to update: id: ', app.id, '; name: ', app.name); + app.noChanges = true; + app.isError = false; //remove the error message; just show the No Changes messages + this.numberAppsProcessed++; + this.numberAppsSucceeded++; + if (this.numberAppsProcessed === this.adminApps.length) { + this.isSaving = false; // hide the spinner + } + if (this.numberAppsSucceeded === this.adminApps.length) { + $scope.closeThisDialog(true);//close and resolve dialog promise with true (to update the table) + } + } + }); + }; + + /** + * Navigate between dialog screens using step number: 1,2,... + */ + this.navigateBack = () => { + if (this.dialogState === 1) { + //back from 1st screen? + } + if (this.dialogState === 3) { + this.dialogState = 1; + } + }; + + init(); + + $scope.$on('$stateChangeStart', e => { + //Disable navigation when modal is opened + //**Nabil - note: this will cause the history back state to be replaced with current state + e.preventDefault(); + }); + } + } + NewUserModalCtrl.$inject = ['$scope', '$log', 'usersService', 'applicationsService', 'confirmBoxService']; + angular.module('ecompApp').controller('NewUserModalCtrl', NewUserModalCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.controller.spec.js b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.controller.spec.js index 8d5ac749..bdc29583 100644 --- a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.controller.spec.js @@ -1,255 +1,255 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 12/20/15. - */ -'use strict'; - -describe('Controller: NewUserModalCtrl ', () => { - beforeEach(module('testUtils')); - beforeEach(module('ecompApp')); - - let promisesTestUtils; - //destroy $http default cache before starting to prevent the error 'default cache already exists' - //_promisesTestUtils_ comes from testUtils for promises resolve/reject - beforeEach(inject((_CacheFactory_, _promisesTestUtils_)=> { - _CacheFactory_.destroyAll(); - promisesTestUtils = _promisesTestUtils_; - })); - - let newUser, $controller, $q, $rootScope, $log, $scope; - - let applicationsServiceMock, usersServiceMock, confirmBoxServiceMock; - let deferredAdminApps, deferredUsersAccounts, deferredUsersAppRoles, deferredUsersAppRoleUpdate; - - beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { - $rootScope = _$rootScope_; - $q = _$q_; - $controller = _$controller_; - $log = _$log_; - })); - - beforeEach(()=> { - [deferredAdminApps, deferredUsersAccounts, deferredUsersAppRoles, deferredUsersAppRoleUpdate] = [$q.defer(),$q.defer(), $q.defer(), $q.defer()]; - - /*applicationsServiceMock = { - getAdminApps: () => { - var promise = () => {return deferredAdminApps.promise}; - var cancel = jasmine.createSpy(); - return { - promise: promise, - cancel: cancel - } - } - };*/ - - confirmBoxServiceMock = { - deleteItem: () => { - var promise = () => {return deferredAdminApps.promise}; - var cancel = jasmine.createSpy(); - return { - promise: promise, - cancel: cancel - } - } - }; - - applicationsServiceMock = jasmine.createSpyObj('applicationsServiceMock', ['getAdminAppsSimpler']); - applicationsServiceMock.getAdminAppsSimpler.and.returnValue(deferredAdminApps.promise); - - usersServiceMock = jasmine.createSpyObj('usersServiceMock', ['getAccountUsers','getUserAppRoles','updateUserAppsRoles']); - - //applicationsServiceMock.getAdminApps().promise().and.returnValue(deferredAdminApps.promise); - usersServiceMock.getAccountUsers.and.returnValue(deferredUsersAccounts.promise); - usersServiceMock.getUserAppRoles.and.returnValue(deferredUsersAppRoles.promise); - usersServiceMock.updateUserAppsRoles.and.returnValue(deferredUsersAppRoleUpdate.promise); - - $scope = $rootScope.$new(); - newUser = $controller('NewUserModalCtrl', { - $scope: $scope, - $log: $log, - usersService: usersServiceMock, - applicationsService: applicationsServiceMock, - confirmBoxService: confirmBoxServiceMock - }); - //$scope.users = users; - }); - - /*beforeEach(()=> { - scope = $rootScope.$new(); - newUser = $controller('NewUserModalCtrl', { - $scope: scope, - $log: $log, - usersService: usersService, - applicationsService: applicationsService, - confirmBoxService: confirmBoxService - }); - });*/ - - - it('should open modal window without user when no user is selected', ()=> { - expect(newUser.selectedUser).toBe(null); - }); - - it('should open modal window with selectedUser apps roles when user is selected', ()=> { - let roles = {apps: [{id: 1, appRoles: [{id: 3, isApplied: true}]}]}; - let someUser = {orgUserId: 'asdfjl'}; - - deferredUsersAppRoles.resolve(roles); - deferredAdminApps.resolve(roles.apps); - - $scope.ngDialogData = { - selectedUser: someUser, - dialogState: 2 - }; - - //inject ngDialogData to the scope controller - newUser = $controller('NewUserModalCtrl', { - $scope: $scope, - $log: $log, - usersService: usersServiceMock, - applicationsService: applicationsServiceMock, - confirmBoxService: confirmBoxServiceMock - }); - - newUser.getUserAppsRoles(); - $scope.$apply(); - - expect(newUser.selectedUser).toBe(someUser); - expect(newUser.adminApps).toEqual(roles.apps); - }); - - it('should push to apps order list only apps that has applied roles when initializing', () => { - let roles = {apps: [{appId: 13, appRoles: [{id: 3, isApplied: true}]},{appId: 20, appRoles: [{id: 3, isApplied: false}]}]}; - let someUser = {orgUserId: 'asdfjl'}; - - deferredUsersAppRoles.resolve(roles); - //deferredAdminApps.resolve(roles.apps); - - $scope.ngDialogData = { - selectedUser: someUser, - dialogState: 2 - }; - - //inject ngDialogData to the scope controller - newUser = $controller('NewUserModalCtrl', { - $scope: $scope, - $log: $log, - usersService: usersServiceMock, - applicationsService: applicationsServiceMock, - confirmBoxService: confirmBoxServiceMock - }); - - $scope.$apply(); - - // expect(newUser.appsOrder).toEqual([13]); - }); - - it('should push app to apps order list when applying at least one role to user from app', () => { - let roles = {apps: [{appId: 13, appRoles: [{id: 3, isApplied: true}]},{appId: 20, appRoles: [{id: 3, isApplied: false}]}]}; - let someUser = {orgUserId: 'asdfjl'}; - - // promisesTestUtils.resolvePromise(usersService, 'getUserAppsRoles', roles); - deferredUsersAppRoles.resolve(roles); - - $scope.ngDialogData = { - selectedUser: someUser, - dialogState: 2 - }; - - //inject ngDialogData to the scope controller - newUser = $controller('NewUserModalCtrl', { - $scope: $scope, - $log: $log, - usersService: usersServiceMock, - applicationsService: applicationsServiceMock, - confirmBoxService: confirmBoxServiceMock - }); - - //$scope.$apply(); - //newUser.updateAppsOrder({appId: 39, appRoles: [{id: 13, isApplied: true}]}); - $scope.$apply(); - - // expect(newUser.appsOrder).toEqual([13, 39]); - }); - - - it('should remove app from list when removing all user roles in it', () => { - let roles = {apps: [{appName: 'aaa', appId: 13, appRoles: [{id: 3, isApplied: true}]},{appName: 'vvv', appId: 20, appRoles: [{id: 3, isApplied: true}]}]}; - let someUser = {orgUserId: 'asdfjl'}; - - // promisesTestUtils.resolvePromise(usersService, 'getUserAppsRoles', roles); - promisesTestUtils.resolvePromise(confirmBoxServiceMock, 'deleteItem', true); - - deferredUsersAppRoles.resolve(roles); - - $scope.ngDialogData = { - selectedUser: someUser, - dialogState: 2 - }; - - //inject ngDialogData to the scope controller - newUser = $controller('NewUserModalCtrl', { - $scope: $scope, - $log: $log, - usersService: usersServiceMock, - applicationsService: applicationsServiceMock, - confirmBoxService: confirmBoxServiceMock - }); - - $scope.$apply(); - newUser.deleteApp(roles.apps[0]); - $scope.$apply(); - - // expect(newUser.appsOrder).toEqual([20]); - }); - - it('should close the modal when update changes succeeded', () => { - let roles = {apps: [{appName: 'aaa', appId: 13, appRoles: [{id: 3, isApplied: true}]},{appName: 'vvv', appId: 20, appRoles: [{id: 3, isApplied: true}]}]}; - let someUser = {orgUserId: 'asdfjl'}; - //promisesTestUtils.resolvePromise(usersServiceMock, 'getUserAppsRoles', roles); - //promisesTestUtils.resolvePromise(usersServiceMock, 'updateUserAppsRoles'); - deferredUsersAppRoles.resolve(roles); - deferredUsersAppRoleUpdate.resolve(); - deferredAdminApps.resolve(roles.apps); - - $scope.ngDialogData = { - selectedUser: someUser, - dialogState: 2 - }; - - //inject ngDialogData to the scope controller - newUser = $controller('NewUserModalCtrl', { - $scope: $scope, - $log: $log, - usersService: usersServiceMock, - applicationsService: applicationsServiceMock, - confirmBoxService: confirmBoxServiceMock - }); - $scope.closeThisDialog = function(){}; - spyOn($scope, 'closeThisDialog'); - - newUser.getUserAppsRoles(); - $scope.$apply(); - newUser.updateUserAppsRoles(); - $scope.$apply(); - expect($scope.closeThisDialog).toHaveBeenCalledWith(true); - }); - }); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 12/20/15. + */ +'use strict'; + +describe('Controller: NewUserModalCtrl ', () => { + beforeEach(module('testUtils')); + beforeEach(module('ecompApp')); + + let promisesTestUtils; + //destroy $http default cache before starting to prevent the error 'default cache already exists' + //_promisesTestUtils_ comes from testUtils for promises resolve/reject + beforeEach(inject((_CacheFactory_, _promisesTestUtils_)=> { + _CacheFactory_.destroyAll(); + promisesTestUtils = _promisesTestUtils_; + })); + + let newUser, $controller, $q, $rootScope, $log, $scope; + + let applicationsServiceMock, usersServiceMock, confirmBoxServiceMock; + let deferredAdminApps, deferredUsersAccounts, deferredUsersAppRoles, deferredUsersAppRoleUpdate; + + beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { + $rootScope = _$rootScope_; + $q = _$q_; + $controller = _$controller_; + $log = _$log_; + })); + + beforeEach(()=> { + [deferredAdminApps, deferredUsersAccounts, deferredUsersAppRoles, deferredUsersAppRoleUpdate] = [$q.defer(),$q.defer(), $q.defer(), $q.defer()]; + + /*applicationsServiceMock = { + getAdminApps: () => { + var promise = () => {return deferredAdminApps.promise}; + var cancel = jasmine.createSpy(); + return { + promise: promise, + cancel: cancel + } + } + };*/ + + confirmBoxServiceMock = { + deleteItem: () => { + var promise = () => {return deferredAdminApps.promise}; + var cancel = jasmine.createSpy(); + return { + promise: promise, + cancel: cancel + } + } + }; + + applicationsServiceMock = jasmine.createSpyObj('applicationsServiceMock', ['getAdminAppsSimpler']); + applicationsServiceMock.getAdminAppsSimpler.and.returnValue(deferredAdminApps.promise); + + usersServiceMock = jasmine.createSpyObj('usersServiceMock', ['getAccountUsers','getUserAppRoles','updateUserAppsRoles']); + + //applicationsServiceMock.getAdminApps().promise().and.returnValue(deferredAdminApps.promise); + usersServiceMock.getAccountUsers.and.returnValue(deferredUsersAccounts.promise); + usersServiceMock.getUserAppRoles.and.returnValue(deferredUsersAppRoles.promise); + usersServiceMock.updateUserAppsRoles.and.returnValue(deferredUsersAppRoleUpdate.promise); + + $scope = $rootScope.$new(); + newUser = $controller('NewUserModalCtrl', { + $scope: $scope, + $log: $log, + usersService: usersServiceMock, + applicationsService: applicationsServiceMock, + confirmBoxService: confirmBoxServiceMock + }); + //$scope.users = users; + }); + + /*beforeEach(()=> { + scope = $rootScope.$new(); + newUser = $controller('NewUserModalCtrl', { + $scope: scope, + $log: $log, + usersService: usersService, + applicationsService: applicationsService, + confirmBoxService: confirmBoxService + }); + });*/ + + + it('should open modal window without user when no user is selected', ()=> { + expect(newUser.selectedUser).toBe(null); + }); + + it('should open modal window with selectedUser apps roles when user is selected', ()=> { + let roles = {apps: [{id: 1, appRoles: [{id: 3, isApplied: true}]}]}; + let someUser = {orgUserId: 'asdfjl'}; + + deferredUsersAppRoles.resolve(roles); + deferredAdminApps.resolve(roles.apps); + + $scope.ngDialogData = { + selectedUser: someUser, + dialogState: 2 + }; + + //inject ngDialogData to the scope controller + newUser = $controller('NewUserModalCtrl', { + $scope: $scope, + $log: $log, + usersService: usersServiceMock, + applicationsService: applicationsServiceMock, + confirmBoxService: confirmBoxServiceMock + }); + + newUser.getUserAppsRoles(); + $scope.$apply(); + + expect(newUser.selectedUser).toBe(someUser); + expect(newUser.adminApps).toEqual(roles.apps); + }); + + it('should push to apps order list only apps that has applied roles when initializing', () => { + let roles = {apps: [{appId: 13, appRoles: [{id: 3, isApplied: true}]},{appId: 20, appRoles: [{id: 3, isApplied: false}]}]}; + let someUser = {orgUserId: 'asdfjl'}; + + deferredUsersAppRoles.resolve(roles); + //deferredAdminApps.resolve(roles.apps); + + $scope.ngDialogData = { + selectedUser: someUser, + dialogState: 2 + }; + + //inject ngDialogData to the scope controller + newUser = $controller('NewUserModalCtrl', { + $scope: $scope, + $log: $log, + usersService: usersServiceMock, + applicationsService: applicationsServiceMock, + confirmBoxService: confirmBoxServiceMock + }); + + $scope.$apply(); + + // expect(newUser.appsOrder).toEqual([13]); + }); + + it('should push app to apps order list when applying at least one role to user from app', () => { + let roles = {apps: [{appId: 13, appRoles: [{id: 3, isApplied: true}]},{appId: 20, appRoles: [{id: 3, isApplied: false}]}]}; + let someUser = {orgUserId: 'asdfjl'}; + + // promisesTestUtils.resolvePromise(usersService, 'getUserAppsRoles', roles); + deferredUsersAppRoles.resolve(roles); + + $scope.ngDialogData = { + selectedUser: someUser, + dialogState: 2 + }; + + //inject ngDialogData to the scope controller + newUser = $controller('NewUserModalCtrl', { + $scope: $scope, + $log: $log, + usersService: usersServiceMock, + applicationsService: applicationsServiceMock, + confirmBoxService: confirmBoxServiceMock + }); + + //$scope.$apply(); + //newUser.updateAppsOrder({appId: 39, appRoles: [{id: 13, isApplied: true}]}); + $scope.$apply(); + + // expect(newUser.appsOrder).toEqual([13, 39]); + }); + + + it('should remove app from list when removing all user roles in it', () => { + let roles = {apps: [{appName: 'aaa', appId: 13, appRoles: [{id: 3, isApplied: true}]},{appName: 'vvv', appId: 20, appRoles: [{id: 3, isApplied: true}]}]}; + let someUser = {orgUserId: 'asdfjl'}; + + // promisesTestUtils.resolvePromise(usersService, 'getUserAppsRoles', roles); + promisesTestUtils.resolvePromise(confirmBoxServiceMock, 'deleteItem', true); + + deferredUsersAppRoles.resolve(roles); + + $scope.ngDialogData = { + selectedUser: someUser, + dialogState: 2 + }; + + //inject ngDialogData to the scope controller + newUser = $controller('NewUserModalCtrl', { + $scope: $scope, + $log: $log, + usersService: usersServiceMock, + applicationsService: applicationsServiceMock, + confirmBoxService: confirmBoxServiceMock + }); + + $scope.$apply(); + newUser.deleteApp(roles.apps[0]); + $scope.$apply(); + + // expect(newUser.appsOrder).toEqual([20]); + }); + + it('should close the modal when update changes succeeded', () => { + let roles = {apps: [{appName: 'aaa', appId: 13, appRoles: [{id: 3, isApplied: true}]},{appName: 'vvv', appId: 20, appRoles: [{id: 3, isApplied: true}]}]}; + let someUser = {orgUserId: 'asdfjl'}; + //promisesTestUtils.resolvePromise(usersServiceMock, 'getUserAppsRoles', roles); + //promisesTestUtils.resolvePromise(usersServiceMock, 'updateUserAppsRoles'); + deferredUsersAppRoles.resolve(roles); + deferredUsersAppRoleUpdate.resolve(); + deferredAdminApps.resolve(roles.apps); + + $scope.ngDialogData = { + selectedUser: someUser, + dialogState: 2 + }; + + //inject ngDialogData to the scope controller + newUser = $controller('NewUserModalCtrl', { + $scope: $scope, + $log: $log, + usersService: usersServiceMock, + applicationsService: applicationsServiceMock, + confirmBoxService: confirmBoxServiceMock + }); + $scope.closeThisDialog = function(){}; + spyOn($scope, 'closeThisDialog'); + + newUser.getUserAppsRoles(); + $scope.$apply(); + newUser.updateUserAppsRoles(); + $scope.$apply(); + expect($scope.closeThisDialog).toHaveBeenCalledWith(true); + }); + }); diff --git a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.modal.html b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.modal.html index 5f26152b..5fec021a 100644 --- a/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.modal.html +++ b/ecomp-portal-FE-common/client/app/views/users/new-user-dialogs/new-user.modal.html @@ -1,84 +1,90 @@ - -
    - -
    - - - -
    - - - -
    -
    - -
    -
    - - -
    -
    - Access and roles: -
    - -
    -
    -
    {{app.name | elipsis: 27}}
    -
    - -
    -
    {{app.errorMessage}}
    -
    Contacting application...
    -
    No changes
    -
    Updating application...
    -
    Finished updating application
    -
    Could not update application...
    -
    -
    -
    -
    - -
    - - - - -
    - -
    - -
    - - - -
    + +
    + +
    + + + +
    + + + +
    +
    + +
    +
    + + +
    +
    + Access and roles: +
    + +
    +
    +
    {{app.name | elipsis: 27}}
    +
    + +
    +
    {{app.errorMessage}}
    +
    Contacting application...
    +
    No changes
    +
    Updating application...
    +
    Finished updating application
    +
    Could not update application...
    +
    +
    +
    +
    + +
    + + + + +
    + +
    + +
    + + + +
    + + diff --git a/ecomp-portal-FE-common/client/app/views/users/users.controller.js b/ecomp-portal-FE-common/client/app/views/users/users.controller.js index 1aa67601..ac223ed6 100644 --- a/ecomp-portal-FE-common/client/app/views/users/users.controller.js +++ b/ecomp-portal-FE-common/client/app/views/users/users.controller.js @@ -1,243 +1,244 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class UsersCtrl { - constructor($log, applicationsService, usersService, confirmBoxService, $scope, ngDialog) { - this.$log = $log; - $scope.adminAppsIsNull = false; - $scope.appsIsDown = false; - $scope.noUsersInApp = false; - $scope.multiAppAdmin = false; - - $log.info('UsersCtrl:: initializing...'); - /** - * Handle all active HTTP requests - * activeRequests @type {Array[requests with cancel option]} - */ - let activeRequests = []; - let clearReq = (req) => { - activeRequests.splice(activeRequests.indexOf(req), 1); - }; - - let init = () => { - this.isLoadingTable = false; - this.selectedApp = null; - this.isAppSelectDisabled = false; - this.selectApp = 'Select application'; - this.adminApps = [{index: 0, id: 0, value: this.selectApp, title: this.selectApp}]; - getAdminApps(); - - /*Table general configuration params*/ - this.searchString = ''; - /*Table data*/ - this.usersTableHeaders = ['First Name', 'Last Name', 'User ID', 'Roles']; - this.accountUsers = []; - }; - - let getAdminApps = () => { - $log.debug('UsersCtrl::getAdminApps: - Starting getAdminApps'); - try { - this.isLoadingTable = true; - let adminAppsReq = applicationsService.getAdminApps(); - adminAppsReq.promise().then(apps => { - if (!apps || !apps.length) { - $log.error('UsersCtrl::getAdminApps: - no apps found'); - return null; - } - $log.debug('UsersCtrl::getAdminApps: Apps for this user are: ' + JSON.stringify(apps)); - if (apps.length >= 2) { - $log.info('UsersCtrl::getAdminApps: - more than one app for this admin:', apps.length, ' apps'); - $scope.multiAppAdmin = true; - } else { - this.adminApps = [] ; - } - let sortedApps = apps.sort(getSortOrder("name")); - let realAppIndex = 1; - for(let i=1; i<=sortedApps.length; i++){ - this.adminApps.push({ - index: realAppIndex, - id: sortedApps[i - 1].id, - value: sortedApps[i - 1].name, - title: sortedApps[i - 1].name - }); - realAppIndex = realAppIndex + 1; - } - - $log.debug('UsersCtrl::getAdminApps: Apps for this user are: ' + JSON.stringify(this.adminApps)); - - this.selectedApp = this.adminApps[0]; - clearReq(adminAppsReq); - $scope.adminAppsIsNull = false; - }).catch(e => { - $scope.adminAppsIsNull = true; - $log.error('UsersCtrl::getAdminApps: - getAdminApps() failed = '+ e.message); - clearReq(adminAppsReq); - confirmBoxService.showInformation('There was a problem retrieving the applications. ' + - 'Please try again later.').then(isConfirmed => {}); - - }).finally(() => { - this.isLoadingTable = false; - }); - } catch (e) { - $scope.adminAppsIsNull = true; - $log.error('UsersCtrl::getAdminApps: - getAdminApps() failed!'); - this.isLoadingTable = false; - } - }; - - let getSortOrder = (prop) => { - return function(a, b) { - if (a[prop] > b[prop]) { - return 1; - } else if (a[prop] < b[prop]) { - return -1; - } - return 0; - } - } - - this.updateUsersList = () => { - $scope.appsIsDown = false; - $scope.noUsersInApp = false; - // $log.debug('UsersCtrl::updateUsersList: Starting updateUsersList'); - //reset search string - this.searchString = ''; - //should i disable this too in case of moving between tabs? - this.isAppSelectDisabled = true; - //activate spinner - this.isLoadingTable = true; - - if(this.adminApps!=null && this.selectedApp!=null){ - var tempSelected = null; - for(let i=0; i<=this.adminApps.length; i++){ - if(typeof this.adminApps[i] != 'undefined' && this.selectedApp.value==this.adminApps[i].value){ - tempSelected=_.clone(this.adminApps[i]); - } - } - if(tempSelected!=null){ - this.selectedApp= tempSelected; - } - } - - if (this.selectedApp.title != this.selectApp) { // 'Select Application' - usersService.getAccountUsers(this.selectedApp.id) - .then(accountUsers => { - $log.debug('UsersCtrl::updateUsersList accountUsers: '+ accountUsers); - if (angular.isObject(accountUsers)===false) { - $log.error('UsersCtrl::updateUsersList accountUsers: App is down!'); - $scope.appsIsDown = true; - } - $log.debug('UsersCtrl::updateUsersList length: '+ Object.keys(accountUsers).length); - this.isAppSelectDisabled = false; - this.accountUsers = accountUsers; - if (angular.isObject(accountUsers) && Object.keys(accountUsers).length === 0) { - $log.debug('UsersCtrl::updateUsersList accountUsers: App has no users.'); - $scope.noUsersInApp = true; - } - }).catch(err => { - this.isAppSelectDisabled = false; - $log.error('UsersCtrl::updateUsersList error: ' + err); - confirmBoxService.showInformation('There was a problem updating the users List. ' + - 'Please try again later.').then(isConfirmed => {}); - $scope.appsIsDown = true; - }).finally(() => { - this.isLoadingTable = false; - $scope.noAppSelected = false; - }); - } else { - // this.selectedApp = this.adminApps[0]; - this.isAppSelectDisabled = false; - this.isLoadingTable = false; - $scope.noUsersInApp = false; - $scope.noAppSelected = true; - } - }; - - - this.openAddNewUserModal = (user) => { - let data = null; - if (user) { - data = { - dialogState: 3, - selectedUser: { - orgUserId: user.orgUserId, - firstName: user.firstName, - lastName: user.lastName - } - } - } - ngDialog.open({ - templateUrl: 'app/views/users/new-user-dialogs/new-user.modal.html', - controller: 'NewUserModalCtrl', - controllerAs: 'newUser', - data: data - }).closePromise.then(needUpdate => { - if (needUpdate.value === true) { - $log.debug('UsersCtrl::openAddNewUserModal updating table data...'); - this.updateUsersList(); - } - }); - }; - - this.openBulkUserUploadModal = (adminApps) => { - let data = null; - if (adminApps) { - data = { - dialogState: 3, - selectedApplication: { - appid: adminApps[0].appid, - appName: adminApps[0].appName - } - } - } - ngDialog.open({ - templateUrl: 'app/views/users/new-user-dialogs/bulk-user.modal.html', - controller: 'BulkUserModalCtrl', - controllerAs: 'bulkUser', - data: data - }).closePromise.then(needUpdate => { - this.updateUsersList(); - }); - }; - - - $scope.$watch('users.selectedApp.value', (newVal, oldVal) => { - if (!newVal || _.isEqual(newVal, oldVal)) { - return; - } - $log.debug('UsersCtrl::openAddNewUserModal:$watch selectedApp -> Fire with: ', newVal); - this.accountUsers = []; //reset table and show swirl here - this.updateUsersList(); - }); - - $scope.$on('$destroy', () => { - //cancel all active requests when closing the modal - activeRequests.forEach(req => { - req.cancel(); - }); - }); - - init(); - } - } - UsersCtrl.$inject = ['$log', 'applicationsService', 'usersService', 'confirmBoxService', '$scope', 'ngDialog']; - angular.module('ecompApp').controller('UsersCtrl', UsersCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class UsersCtrl { + constructor($log, applicationsService, usersService, confirmBoxService, $scope, ngDialog) { + this.$log = $log; + $scope.adminAppsIsNull = false; + $scope.appsIsDown = false; + $scope.noUsersInApp = false; + $scope.multiAppAdmin = false; + + $log.info('UsersCtrl:: initializing...'); + /** + * Handle all active HTTP requests + * activeRequests @type {Array[requests with cancel option]} + */ + let activeRequests = []; + let clearReq = (req) => { + activeRequests.splice(activeRequests.indexOf(req), 1); + }; + + let init = () => { + this.isLoadingTable = false; + this.selectedApp = null; + this.isAppSelectDisabled = false; + this.selectApp = 'Select application'; + this.adminApps = [{index: 0, id: 0, value: this.selectApp, title: this.selectApp}]; + getAdminApps(); + + /*Table general configuration params*/ + this.searchString = ''; + /*Table data*/ + this.usersTableHeaders = ['First Name', 'Last Name', 'User ID', 'Roles']; + this.accountUsers = []; + }; + + let getAdminApps = () => { + $log.debug('UsersCtrl::getAdminApps: - Starting getAdminApps'); + try { + this.isLoadingTable = true; + let adminAppsReq = applicationsService.getAdminApps(); + adminAppsReq.promise().then(apps => { + if (!apps || !apps.length) { + $log.error('UsersCtrl::getAdminApps: - no apps found'); + return null; + } + $log.debug('UsersCtrl::getAdminApps: Apps for this user are: ' + JSON.stringify(apps)); + if (apps.length >= 2) { + $log.info('UsersCtrl::getAdminApps: - more than one app for this admin:', apps.length, ' apps'); + $scope.multiAppAdmin = true; + } else { + this.adminApps = [] ; + } + let sortedApps = apps.sort(getSortOrder("name")); + let realAppIndex = 1; + for(let i=1; i<=sortedApps.length; i++){ + this.adminApps.push({ + index: realAppIndex, + id: sortedApps[i - 1].id, + value: sortedApps[i - 1].name, + title: sortedApps[i - 1].name + }); + realAppIndex = realAppIndex + 1; + } + + $log.debug('UsersCtrl::getAdminApps: Apps for this user are: ' + JSON.stringify(this.adminApps)); + + this.selectedApp = this.adminApps[0]; + clearReq(adminAppsReq); + $scope.adminAppsIsNull = false; + }).catch(e => { + $scope.adminAppsIsNull = true; + $log.error('UsersCtrl::getAdminApps: - getAdminApps() failed = '+ e.message); + clearReq(adminAppsReq); + confirmBoxService.showInformation('There was a problem retrieving the applications. ' + + 'Please try again later.').then(isConfirmed => {}); + + }).finally(() => { + this.isLoadingTable = false; + }); + } catch (e) { + $scope.adminAppsIsNull = true; + $log.error('UsersCtrl::getAdminApps: - getAdminApps() failed!'); + this.isLoadingTable = false; + } + }; + + let getSortOrder = (prop) => { + return function(a, b) { + if (a[prop] > b[prop]) { + return 1; + } else if (a[prop] < b[prop]) { + return -1; + } + return 0; + } + } + + this.updateUsersList = () => { + $scope.appsIsDown = false; + $scope.noUsersInApp = false; + // $log.debug('UsersCtrl::updateUsersList: Starting updateUsersList'); + //reset search string + this.searchString = ''; + //should i disable this too in case of moving between tabs? + this.isAppSelectDisabled = true; + //activate spinner + this.isLoadingTable = true; + + if(this.adminApps!=null && this.selectedApp!=null){ + var tempSelected = null; + for(let i=0; i<=this.adminApps.length; i++){ + if(typeof this.adminApps[i] != 'undefined' && this.selectedApp.value==this.adminApps[i].value){ + tempSelected=_.clone(this.adminApps[i]); + } + } + if(tempSelected!=null){ + this.selectedApp= tempSelected; + } + } + + if (this.selectedApp.title != this.selectApp) { // 'Select Application' + usersService.getAccountUsers(this.selectedApp.id) + .then(accountUsers => { + $log.debug('UsersCtrl::updateUsersList accountUsers: '+ accountUsers); + if (angular.isObject(accountUsers)===false) { + $log.error('UsersCtrl::updateUsersList accountUsers: App is down!'); + $scope.appsIsDown = true; + } + $log.debug('UsersCtrl::updateUsersList length: '+ Object.keys(accountUsers).length); + this.isAppSelectDisabled = false; + this.accountUsers = accountUsers; + if (angular.isObject(accountUsers) && Object.keys(accountUsers).length === 0) { + $log.debug('UsersCtrl::updateUsersList accountUsers: App has no users.'); + $scope.noUsersInApp = true; + } + }).catch(err => { + this.isAppSelectDisabled = false; + $log.error('UsersCtrl::updateUsersList error: ' + err); + confirmBoxService.showInformation('There was a problem updating the users List. ' + + 'Please try again later.').then(isConfirmed => {}); + $scope.appsIsDown = true; + }).finally(() => { + this.isLoadingTable = false; + $scope.noAppSelected = false; + }); + } else { + // this.selectedApp = this.adminApps[0]; + this.isAppSelectDisabled = false; + this.isLoadingTable = false; + $scope.noUsersInApp = false; + $scope.noAppSelected = true; + } + }; + + + this.openAddNewUserModal = (user) => { + let data = null; + if (user) { + data = { + dialogState: 3, + selectedUser: { + orgUserId: user.orgUserId, + firstName: user.firstName, + lastName: user.lastName, + + } + } + } + ngDialog.open({ + templateUrl: 'app/views/users/new-user-dialogs/new-user.modal.html', + controller: 'NewUserModalCtrl', + controllerAs: 'newUser', + data: data + }).closePromise.then(needUpdate => { + if (needUpdate.value === true) { + $log.debug('UsersCtrl::openAddNewUserModal updating table data...'); + this.updateUsersList(); + } + }); + }; + + this.openBulkUserUploadModal = (adminApps) => { + let data = null; + if (adminApps) { + data = { + dialogState: 3, + selectedApplication: { + appid: adminApps[0].appid, + appName: adminApps[0].appName + } + } + } + ngDialog.open({ + templateUrl: 'app/views/users/new-user-dialogs/bulk-user.modal.html', + controller: 'BulkUserModalCtrl', + controllerAs: 'bulkUser', + data: data + }).closePromise.then(needUpdate => { + this.updateUsersList(); + }); + }; + + + $scope.$watch('users.selectedApp.value', (newVal, oldVal) => { + if (!newVal || _.isEqual(newVal, oldVal)) { + return; + } + $log.debug('UsersCtrl::openAddNewUserModal:$watch selectedApp -> Fire with: ', newVal); + this.accountUsers = []; //reset table and show swirl here + this.updateUsersList(); + }); + + $scope.$on('$destroy', () => { + //cancel all active requests when closing the modal + activeRequests.forEach(req => { + req.cancel(); + }); + }); + + init(); + } + } + UsersCtrl.$inject = ['$log', 'applicationsService', 'usersService', 'confirmBoxService', '$scope', 'ngDialog']; + angular.module('ecompApp').controller('UsersCtrl', UsersCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/users/users.controller.spec.js b/ecomp-portal-FE-common/client/app/views/users/users.controller.spec.js index 96231163..0b3c0110 100644 --- a/ecomp-portal-FE-common/client/app/views/users/users.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/users/users.controller.spec.js @@ -1,141 +1,141 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -// /** -// * Created by nnaffar on 12/17/15. -// */ -// 'use strict'; -// -// describe('Controller: UsersCtrl ', () => { -// beforeEach(module('ecompApp')); -// -// //destroy $http default cache before starting to prevent the error 'default cache already exists' -// beforeEach(inject((_CacheFactory_)=> { -// _CacheFactory_.destroyAll(); -// })); -// -// let users, $controller, $q, $rootScope, $log, $scope; -// -// beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { -// [$controller, $q, $rootScope, $log] = [_$controller_, _$q_, _$rootScope_, _$log_]; -// })); -// -// let applicationsServiceMock, usersServiceMock; -// let deferredAdminApps, deferredUsersAccounts; -// beforeEach(()=> { -// [deferredAdminApps, deferredUsersAccounts] = [$q.defer(), $q.defer()]; -// -// applicationsServiceMock = { -// getAdminApps: () => { -// var promise = () => {return deferredAdminApps.promise}; -// var cancel = jasmine.createSpy(); -// return { -// promise: promise, -// cancel: cancel -// } -// } -// }; -// -// usersServiceMock = jasmine.createSpyObj('usersServiceMock', ['getAccountUsers']); -// -// //applicationsServiceMock.getAdminApps().promise().and.returnValue(deferredAdminApps.promise); -// usersServiceMock.getAccountUsers.and.returnValue(deferredUsersAccounts.promise); -// -// $scope = $rootScope.$new(); -// users = $controller('UsersCtrl', { -// $log: $log, -// applicationsService: applicationsServiceMock, -// usersService: usersServiceMock, -// $scope: $scope -// }); -// $scope.users = users; -// }); -// -// //MOCKS -// let appsListMock = [ -// {value: 'SSP', title: 'SSP', id: 3}, -// {value: 'ASDC', title: 'ASDC', id: 23}, -// {value: 'Formation', title: 'Formation', id: 223} -// ]; -// -// let usersListMock = [ -// { -// "orgUserId": "nn605g", -// "firstName": "Nabil", -// "lastName": "Naffar", -// "roles": [ -// { -// "roleId": 1, -// "roleName": "Standard user" -// }, -// { -// "roleId": 9, -// "roleName": "Super standard user" -// }, -// { -// "roleId": 2, -// "roleName": "Super duper standard user" -// } -// ] -// }]; -// let secondUsersListMock = [ -// { -// "orgUserId": "sadf7", -// "firstName": "John", -// "lastName": "Hall", -// "roles": [ -// { -// "roleId": 1, -// "roleName": "Standard user" -// }, -// { -// "roleId": 2, -// "roleName": "Super duper standard user" -// } -// ] -// }]; -// -// it('should get all user\'s administrated applications when initializing the view', ()=> { -// deferredAdminApps.resolve(appsListMock); -// deferredUsersAccounts.resolve(usersListMock); -// $scope.$apply(); -// expect(users.adminApps).toEqual(appsListMock); -// expect(users.selectedApp).toEqual(appsListMock[0]); -// }); -// -// it('should get first application users by default when initializing the view', () => { -// $scope.$apply(); -// deferredAdminApps.resolve(appsListMock); -// deferredUsersAccounts.resolve(usersListMock); -// $scope.$apply(); -// expect(users.accountUsers).toEqual(usersListMock); -// }); -// -// it('should get application users when changing application', () => { -// $scope.$apply(); -// deferredAdminApps.resolve(appsListMock); -// $scope.$apply(); -// -// users.selectedApp = appsListMock[1]; -// deferredUsersAccounts.resolve(secondUsersListMock); -// $scope.$apply('users');//change app -// -// expect(users.accountUsers).toEqual(secondUsersListMock); -// }); -// }); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +// /** +// * Created by nnaffar on 12/17/15. +// */ +// 'use strict'; +// +// describe('Controller: UsersCtrl ', () => { +// beforeEach(module('ecompApp')); +// +// //destroy $http default cache before starting to prevent the error 'default cache already exists' +// beforeEach(inject((_CacheFactory_)=> { +// _CacheFactory_.destroyAll(); +// })); +// +// let users, $controller, $q, $rootScope, $log, $scope; +// +// beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { +// [$controller, $q, $rootScope, $log] = [_$controller_, _$q_, _$rootScope_, _$log_]; +// })); +// +// let applicationsServiceMock, usersServiceMock; +// let deferredAdminApps, deferredUsersAccounts; +// beforeEach(()=> { +// [deferredAdminApps, deferredUsersAccounts] = [$q.defer(), $q.defer()]; +// +// applicationsServiceMock = { +// getAdminApps: () => { +// var promise = () => {return deferredAdminApps.promise}; +// var cancel = jasmine.createSpy(); +// return { +// promise: promise, +// cancel: cancel +// } +// } +// }; +// +// usersServiceMock = jasmine.createSpyObj('usersServiceMock', ['getAccountUsers']); +// +// //applicationsServiceMock.getAdminApps().promise().and.returnValue(deferredAdminApps.promise); +// usersServiceMock.getAccountUsers.and.returnValue(deferredUsersAccounts.promise); +// +// $scope = $rootScope.$new(); +// users = $controller('UsersCtrl', { +// $log: $log, +// applicationsService: applicationsServiceMock, +// usersService: usersServiceMock, +// $scope: $scope +// }); +// $scope.users = users; +// }); +// +// //MOCKS +// let appsListMock = [ +// {value: 'SSP', title: 'SSP', id: 3}, +// {value: 'ASDC', title: 'ASDC', id: 23}, +// {value: 'Formation', title: 'Formation', id: 223} +// ]; +// +// let usersListMock = [ +// { +// "orgUserId": "nn605g", +// "firstName": "Nabil", +// "lastName": "Naffar", +// "roles": [ +// { +// "roleId": 1, +// "roleName": "Standard user" +// }, +// { +// "roleId": 9, +// "roleName": "Super standard user" +// }, +// { +// "roleId": 2, +// "roleName": "Super duper standard user" +// } +// ] +// }]; +// let secondUsersListMock = [ +// { +// "orgUserId": "sadf7", +// "firstName": "John", +// "lastName": "Hall", +// "roles": [ +// { +// "roleId": 1, +// "roleName": "Standard user" +// }, +// { +// "roleId": 2, +// "roleName": "Super duper standard user" +// } +// ] +// }]; +// +// it('should get all user\'s administrated applications when initializing the view', ()=> { +// deferredAdminApps.resolve(appsListMock); +// deferredUsersAccounts.resolve(usersListMock); +// $scope.$apply(); +// expect(users.adminApps).toEqual(appsListMock); +// expect(users.selectedApp).toEqual(appsListMock[0]); +// }); +// +// it('should get first application users by default when initializing the view', () => { +// $scope.$apply(); +// deferredAdminApps.resolve(appsListMock); +// deferredUsersAccounts.resolve(usersListMock); +// $scope.$apply(); +// expect(users.accountUsers).toEqual(usersListMock); +// }); +// +// it('should get application users when changing application', () => { +// $scope.$apply(); +// deferredAdminApps.resolve(appsListMock); +// $scope.$apply(); +// +// users.selectedApp = appsListMock[1]; +// deferredUsersAccounts.resolve(secondUsersListMock); +// $scope.$apply('users');//change app +// +// expect(users.accountUsers).toEqual(secondUsersListMock); +// }); +// }); diff --git a/ecomp-portal-FE-common/client/app/views/users/users.less b/ecomp-portal-FE-common/client/app/views/users/users.less index 7a0e9ebb..4c38b33c 100644 --- a/ecomp-portal-FE-common/client/app/views/users/users.less +++ b/ecomp-portal-FE-common/client/app/views/users/users.less @@ -1,25 +1,30 @@ .users-page-main{ - .bg_portalWhite;//white for 1702 - //.bg_portalGray; // gray for 1610 - position: @page-main-position; - top: @page-main-top; - left: @page-main-left; - right: @page-main-right; - bottom: @page-main-bottom; - padding-top: @padding-top; - overflow-y: @page-main-overflow-y; - padding-left: @padding-left-side; -#input-table-search::-webkit-input-placeholder, -{ -font-style: italic; - color: #D7D7D7; -} + .bg_portalWhite;//white for 1702 + //.bg_portalGray; // gray for 1610 + position: @page-main-position; + top: @page-main-top; + left: @page-main-left; + right: @page-main-right; + bottom: @page-main-bottom; + padding-top: @padding-top; + overflow-y: @page-main-overflow-y; + padding-left: @padding-left-side; + #input-table-search::-webkit-input-placeholder, + { + font-style: italic; + color: #D7D7D7; + } .users-table { - width: @table-width; - //margin-left: @table-margin-left; - margin: 0 auto; - + width: @table-width; + //margin-left: @table-margin-left; + margin: 0 auto; } + + .table-users-div{ + width:15px; + font-size:23px; + cursor: pointer; + } .error-text { width: 1170px; diff --git a/ecomp-portal-FE-common/client/app/views/users/users.tpl.html b/ecomp-portal-FE-common/client/app/views/users/users.tpl.html index ff3edde0..606ced6e 100644 --- a/ecomp-portal-FE-common/client/app/views/users/users.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/users/users.tpl.html @@ -1,98 +1,98 @@ - -
    -
    -
    -
    -

    Users

    -
    -
    -
    -
    -
    - -
    -
    - -
    - - -
    -
    -
    -
    -

    Use the 'Select application' dropdown to see users.

    -
    -
    -

     

    -

    - No users found. Select "Add User" to add a User to the application. -

    -
    -
    -

     

    -

    - Failed to communicate with the application. - Please try again later or contact a system administrator. -

    -
    -
    - -
    - - - - - - - - - - - - - - - - - -
    First NameLast NameUser IDRoles
    -
    -
    -
    -
    -
    -

    Attention:

    -

     

    -

    It appears that you have not been added as an admin yet to an application.

    -

     

    -

    Click on the Admins link to the left and check and see if you are listed as an admin for an application. - If not, you can add yourself to the appropriate application.

    -
    -
    -
    - -
    + +
    +
    +
    +
    +

    Users

    +
    +
    +
    +
    +
    + +
    +
    + +
    + + +
    +
    +
    +
    +

    Use the 'Select application' dropdown to see users.

    +
    +
    +

     

    +

    + No users found. Select "Add User" to add a User to the application. +

    +
    +
    +

     

    +

    + Failed to communicate with the application. + Please try again later or contact a system administrator. +

    +
    +
    + +
    + + + + + + + + + + + + + + + + + +
    First NameLast NameUser IDRoles
    +
    +
    +
    +
    +
    +

    Attention:

    +

     

    +

    It appears that you have not been added as an admin yet to an application.

    +

     

    +

    Click on the Admins link to the left and check and see if you are listed as an admin for an application. + If not, you can add yourself to the appropriate application.

    +
    +
    +
    + +
    diff --git a/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.controller.js b/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.controller.js index 2b0cc5cf..859b9a8e 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.controller.js +++ b/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.controller.js @@ -1,350 +1,350 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - - class WidgetCatalogCtrl { - constructor(widgetsService, $log, $cookies, $scope, conf, beReaderService, widgetsCatalogService, userProfileService,dashboardService,$compile, ngDialog) { - - $scope.editWidgetModalPopup = function(availableData, resourceType) { - $scope.editData = JSON.stringify(availableData); - $scope.availableDataTemp = $scope.availableData; - ngDialog.open({ - templateUrl : 'app/views/dashboard/dashboard-widget-manage.html', - controller : 'CommonWidgetController', - resolve : { - message : function message() { - var message = { - type : resourceType, - availableData : $scope.editData - }; - return message; - } - } - }).closePromise.then(needUpdate => { - if(resourceType=='NEWS'){ - $scope.updateNews(); - }else if(resourceType=='EVENTS'){ - $scope.updateEvents(); - }else if(resourceType=='IMPORTANTRESOURCES'){ - $scope.updateImportRes(); - } - }); - }; - - $scope.WidgetCatView = []; - $scope.applyPresentationDetailsToWidgetsCatalog = function(widgetsReturned){ - var rowNo = 0; - for (var i = 0; i < widgetsReturned.length; i++) { - $scope.WidgetCatView[i] = { - sizeX : 2, - sizeY : 2, - headerText:'', - widgetIdentifier : '', - url : '', - widgetid: '', - attrb:'', - select: false, - }; - $scope.WidgetCatView[i].widgetid = widgetsReturned[i].id; - $scope.WidgetCatView[i].headerText = widgetsReturned[i].headerName; - - if(widgetsReturned[i].headerName === 'widget-news'){ - $scope.WidgetCatView[i].widgetIdentifier = 'NEWS'; - } - else - if(widgetsReturned[i].headerName === 'widget-resources'){ - $scope.WidgetCatView[i].widgetIdentifier = 'IMPORTANTRESOURCES'; - } - else - if(widgetsReturned[i].headerName === 'widget-events'){ - $scope.WidgetCatView[i].widgetIdentifier = 'EVENTS'; - } - - $scope.WidgetCatView[i].url = widgetsReturned[i].url; - $scope.WidgetCatView[i].attrb = widgetsReturned[i].attrs; - $scope.WidgetCatView[i].select = widgetsReturned[i].select; - } - - $scope.widgetViewData = $scope.WidgetCatView; - - } - - /** Widget code starts */ - let getUserWidgets = (loginName) => { - - this.isCommError = false; - var conf = this.conf; - widgetsCatalogService.getUserWidgets(loginName).then(res => { - - if(!(res instanceof Array)){ - this.isCommError = true; - return; - } - for(var i = 0; i < res.length; i++){ - var widget_id = res[i][0]; - var widget_name = res[i][1]; - let url = this.conf.api.widgetCommon + "/" + widget_id + "/framework.js"; - $scope.widgetsList.push({ - id: widget_id, - name: widget_name, - headerName: widget_name, - url: url, - attrs: [{attr: 'data-' + widget_id, value: ''}], - status: res[i][4], - select: (res[i][4] == 'S' || res[i][4] === null) ? true : false - }); - var script = document - .createElement('script'); - script.src = url; - script.async = true; - var entry = document - .getElementsByTagName('script')[0]; - entry.parentNode - .insertBefore(script, entry); - } - $scope.applyPresentationDetailsToWidgetsCatalog($scope.widgetsList); - }).catch(err => { - $log.error('WidgetCatalogCtrl::getUserWidgets caught error', err); - }).finally(()=> { - - }); - }; - - let init = () => { - userProfileService.getUserProfile() - .then(profile=> { - // $log.info('WidgetCatalogCtrl::getUserProfile: ', - // profile); - $scope.orgUserId = profile.orgUserId; - $scope.widgetsViewData = []; - $scope.widgetsView = []; - getUserWidgets($scope.orgUserId); - }); - this.conf = conf; - $scope.widgetsList = []; - }; - - /** Widget code ends */ - - $scope.activateThis = function(ele){ - $compile(ele.contents())($scope); - $scope.$apply(); - }; - $scope.setCommonWidget = function() { - /* News Events Resources */ - var widgetLength = ($scope.widgetsViewData==null || $scope.widgetsViewData.length==0) ? 0:$scope.widgetsViewData.length; - $scope.widgetsViewData[widgetLength] = { - sizeX: 2, - sizeY: 2, - headerText: 'News', - width: '', - height: '', - url: '', - selected:true - }; - $scope.widgetsViewData[widgetLength+1] = { - sizeX: 2, - sizeY: 2, - headerText: 'Calendar Events', - width: '', - height: '', - url: '', - selected:true - }; - $scope.widgetsViewData[widgetLength+2] = { - sizeX: 2, - sizeY: 2, - headerText: 'Resources', - width: '', - height: '', - url: '', - selected:true - }; - - /* Setting News data */ - $scope.newsData = []; - $scope.updateNews = function() { - $scope.newsData.length=0; - dashboardService.getCommonWidgetData('NEWS').then(function(res) { - // $log.info(res.message); - var newsDataJsonArray = res.response.items; - for (var i = 0; i < newsDataJsonArray.length; i++) { - $scope.newsData.push(newsDataJsonArray[i]); - } - })['catch'](function(err) { - $log.error('dashboard controller: failed to get news list', err); - }); - } - $scope.updateNews(); - /* Setting Events data */ - - $scope.eventData = []; - - $scope.updateEvents = function() { - $scope.eventData.length=0; - dashboardService.getCommonWidgetData('EVENTS').then(function(res) { - var eventDataJsonArray = res.response.items; - for (var i = 0; i < eventDataJsonArray.length; i++) { - if(eventDataJsonArray[i].eventDate !=null) { - // yyyy-mm-dd - eventDataJsonArray[i].year = eventDataJsonArray[i].eventDate.substring(2,4); - eventDataJsonArray[i].mon = eventDataJsonArray[i].eventDate.substring(5,7); - eventDataJsonArray[i].day = eventDataJsonArray[i].eventDate.substring(8,10); - } - $scope.eventData.push(eventDataJsonArray[i]); - } - })['catch'](function(err) { - $log.error('dashboard controller: failed to get Events list', err); - }); - } - $scope.updateEvents(); - /* Setting Important Resources data */ - - $scope.importResData = []; - $scope.updateImportRes = function() { - $scope.importResData.length=0; - dashboardService.getCommonWidgetData('IMPORTANTRESOURCES').then( - function(res) { - // $log.info(res); - var importResDataJSONArray = res.response.items; - for (var i = 0; i < importResDataJSONArray.length; i++) { - $scope.importResData.push(importResDataJSONArray[i]); - } - })['catch'](function(err) { - $log.error('dashboard controller: failed to get resources list...', err); - }); - } - $scope.updateImportRes(); - - /** ******End hardcoded news events and resources*************** */ - - } - - $scope.newsGridsterItem = { - headerText : 'Test', - subHeaderText : '' - }; - - $scope.newsGridsterItem = { - headerText : 'News', - subHeaderText : '' - }; - - $scope.eventsGridsterItem = { - headerText : 'Events', - subHeaderText : '' - }; - - $scope.impoResGridsterItem = { - headerText : 'Resources', - subHeaderText : '' - }; - - this.gridsterOpts = { - columns: 6, - colWidth: 190, - rowHeight: 190, - margins: [20, 20], - outerMargin: true, - pushing: true, - floating: true, - swapping: true, - draggable: { - handle: '.icon-content-gridguide' - } - }; - - // Run this function when user clicks on checkbox. - $scope.storeSelection = function(widget) { - - // not needed as only 'SHOW' and 'HIDE' status_cd is expected from the micro service now - /*var pendingFlag = false; - if(widget.access) - pendingFlag = false; - else - pendingFlag = widget.pending; */ - - var appData = { - widgetId: widget.widgetid, - select : widget.select, - // pending : pendingFlag - }; - - widgetsCatalogService.updateWidgetCatalog(appData).then( - function(result) { - // $log.debug('CatalogCtrl:storeSelection result is ', result); - })['catch'](function(err) { - $log.error('CatalogCtrl:storeSelection: exception: ', err); - }); - }; - - init(); - } - } - - - - WidgetCatalogCtrl.$inject = ['widgetsService', '$log', '$cookies', '$scope', 'conf', 'beReaderService', 'widgetsCatalogService', 'userProfileService','dashboardService','$compile','ngDialog']; - angular.module('ecompApp').controller('WidgetCatalogCtrl', WidgetCatalogCtrl); - - angular.module('ecompApp').constant('refreshInterval', '30000'); - - angular.module('ecompApp').directive('refreshIframe', ['$interval', 'refreshInterval', function ($interval, refreshInterval) { - - function link(scope, element, attrs) { - var timeoutId; - - function updateIframe() { - if(attrs.isEnlarged == "false") - { - element.attr('src', element.attr('src')); - } - } - - element.on('$destroy', function () { - $interval.cancel(timeoutId); - }); - - // start the UI update process; save the timeoutId for cancelling - /* - * timeoutId = $interval(function () { updateIframe(); // update DOM }, - * refreshInterval); - */ - } - - return { - link: link - }; - } ]); - -})(); - - -app.directive('dynAttr', function() { - return { - scope: { list: '=dynAttr' }, - link: function(scope, elem, attrs){ - for(var attr in scope.list){ - elem.attr(scope.list[attr].attr, scope.list[attr].value); - } - } - }; -}); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + + class WidgetCatalogCtrl { + constructor(widgetsService, $log, $cookies, $scope, conf, beReaderService, widgetsCatalogService, userProfileService,dashboardService,$compile, ngDialog) { + + $scope.editWidgetModalPopup = function(availableData, resourceType) { + $scope.editData = JSON.stringify(availableData); + $scope.availableDataTemp = $scope.availableData; + ngDialog.open({ + templateUrl : 'app/views/dashboard/dashboard-widget-manage.html', + controller : 'CommonWidgetController', + resolve : { + message : function message() { + var message = { + type : resourceType, + availableData : $scope.editData + }; + return message; + } + } + }).closePromise.then(needUpdate => { + if(resourceType=='NEWS'){ + $scope.updateNews(); + }else if(resourceType=='EVENTS'){ + $scope.updateEvents(); + }else if(resourceType=='IMPORTANTRESOURCES'){ + $scope.updateImportRes(); + } + }); + }; + + $scope.WidgetCatView = []; + $scope.applyPresentationDetailsToWidgetsCatalog = function(widgetsReturned){ + var rowNo = 0; + for (var i = 0; i < widgetsReturned.length; i++) { + $scope.WidgetCatView[i] = { + sizeX : 2, + sizeY : 2, + headerText:'', + widgetIdentifier : '', + url : '', + widgetid: '', + attrb:'', + select: false, + }; + $scope.WidgetCatView[i].widgetid = widgetsReturned[i].id; + $scope.WidgetCatView[i].headerText = widgetsReturned[i].headerName; + + if(widgetsReturned[i].headerName === 'widget-news'){ + $scope.WidgetCatView[i].widgetIdentifier = 'NEWS'; + } + else + if(widgetsReturned[i].headerName === 'widget-resources'){ + $scope.WidgetCatView[i].widgetIdentifier = 'IMPORTANTRESOURCES'; + } + else + if(widgetsReturned[i].headerName === 'widget-events'){ + $scope.WidgetCatView[i].widgetIdentifier = 'EVENTS'; + } + + $scope.WidgetCatView[i].url = widgetsReturned[i].url; + $scope.WidgetCatView[i].attrb = widgetsReturned[i].attrs; + $scope.WidgetCatView[i].select = widgetsReturned[i].select; + } + + $scope.widgetViewData = $scope.WidgetCatView; + + } + + /** Widget code starts */ + let getUserWidgets = (loginName) => { + + this.isCommError = false; + var conf = this.conf; + widgetsCatalogService.getUserWidgets(loginName).then(res => { + + if(!(res instanceof Array)){ + this.isCommError = true; + return; + } + for(var i = 0; i < res.length; i++){ + var widget_id = res[i][0]; + var widget_name = res[i][1]; + let url = this.conf.api.widgetCommon + "/" + widget_id + "/framework.js"; + $scope.widgetsList.push({ + id: widget_id, + name: widget_name, + headerName: widget_name, + url: url, + attrs: [{attr: 'data-' + widget_id, value: ''}], + status: res[i][4], + select: (res[i][4] == 'S' || res[i][4] === null) ? true : false + }); + var script = document + .createElement('script'); + script.src = url; + script.async = true; + var entry = document + .getElementsByTagName('script')[0]; + entry.parentNode + .insertBefore(script, entry); + } + $scope.applyPresentationDetailsToWidgetsCatalog($scope.widgetsList); + }).catch(err => { + $log.error('WidgetCatalogCtrl::getUserWidgets caught error', err); + }).finally(()=> { + + }); + }; + + let init = () => { + userProfileService.getUserProfile() + .then(profile=> { + // $log.info('WidgetCatalogCtrl::getUserProfile: ', + // profile); + $scope.orgUserId = profile.orgUserId; + $scope.widgetsViewData = []; + $scope.widgetsView = []; + getUserWidgets($scope.orgUserId); + }); + this.conf = conf; + $scope.widgetsList = []; + }; + + /** Widget code ends */ + + $scope.activateThis = function(ele){ + $compile(ele.contents())($scope); + $scope.$apply(); + }; + $scope.setCommonWidget = function() { + /* News Events Resources */ + var widgetLength = ($scope.widgetsViewData==null || $scope.widgetsViewData.length==0) ? 0:$scope.widgetsViewData.length; + $scope.widgetsViewData[widgetLength] = { + sizeX: 2, + sizeY: 2, + headerText: 'News', + width: '', + height: '', + url: '', + selected:true + }; + $scope.widgetsViewData[widgetLength+1] = { + sizeX: 2, + sizeY: 2, + headerText: 'Calendar Events', + width: '', + height: '', + url: '', + selected:true + }; + $scope.widgetsViewData[widgetLength+2] = { + sizeX: 2, + sizeY: 2, + headerText: 'Resources', + width: '', + height: '', + url: '', + selected:true + }; + + /* Setting News data */ + $scope.newsData = []; + $scope.updateNews = function() { + $scope.newsData.length=0; + dashboardService.getCommonWidgetData('NEWS').then(function(res) { + // $log.info(res.message); + var newsDataJsonArray = res.response.items; + for (var i = 0; i < newsDataJsonArray.length; i++) { + $scope.newsData.push(newsDataJsonArray[i]); + } + })['catch'](function(err) { + $log.error('dashboard controller: failed to get news list', err); + }); + } + $scope.updateNews(); + /* Setting Events data */ + + $scope.eventData = []; + + $scope.updateEvents = function() { + $scope.eventData.length=0; + dashboardService.getCommonWidgetData('EVENTS').then(function(res) { + var eventDataJsonArray = res.response.items; + for (var i = 0; i < eventDataJsonArray.length; i++) { + if(eventDataJsonArray[i].eventDate !=null) { + // yyyy-mm-dd + eventDataJsonArray[i].year = eventDataJsonArray[i].eventDate.substring(2,4); + eventDataJsonArray[i].mon = eventDataJsonArray[i].eventDate.substring(5,7); + eventDataJsonArray[i].day = eventDataJsonArray[i].eventDate.substring(8,10); + } + $scope.eventData.push(eventDataJsonArray[i]); + } + })['catch'](function(err) { + $log.error('dashboard controller: failed to get Events list', err); + }); + } + $scope.updateEvents(); + /* Setting Important Resources data */ + + $scope.importResData = []; + $scope.updateImportRes = function() { + $scope.importResData.length=0; + dashboardService.getCommonWidgetData('IMPORTANTRESOURCES').then( + function(res) { + // $log.info(res); + var importResDataJSONArray = res.response.items; + for (var i = 0; i < importResDataJSONArray.length; i++) { + $scope.importResData.push(importResDataJSONArray[i]); + } + })['catch'](function(err) { + $log.error('dashboard controller: failed to get resources list...', err); + }); + } + $scope.updateImportRes(); + + /** ******End hardcoded news events and resources*************** */ + + } + + $scope.newsGridsterItem = { + headerText : 'Test', + subHeaderText : '' + }; + + $scope.newsGridsterItem = { + headerText : 'News', + subHeaderText : '' + }; + + $scope.eventsGridsterItem = { + headerText : 'Events', + subHeaderText : '' + }; + + $scope.impoResGridsterItem = { + headerText : 'Resources', + subHeaderText : '' + }; + + this.gridsterOpts = { + columns: 6, + colWidth: 190, + rowHeight: 190, + margins: [20, 20], + outerMargin: true, + pushing: true, + floating: true, + swapping: true, + draggable: { + handle: '.icon-content-gridguide' + } + }; + + // Run this function when user clicks on checkbox. + $scope.storeSelection = function(widget) { + + // not needed as only 'SHOW' and 'HIDE' status_cd is expected from the micro service now + /*var pendingFlag = false; + if(widget.access) + pendingFlag = false; + else + pendingFlag = widget.pending; */ + + var appData = { + widgetId: widget.widgetid, + select : widget.select, + // pending : pendingFlag + }; + + widgetsCatalogService.updateWidgetCatalog(appData).then( + function(result) { + // $log.debug('CatalogCtrl:storeSelection result is ', result); + })['catch'](function(err) { + $log.error('CatalogCtrl:storeSelection: exception: ', err); + }); + }; + + init(); + } + } + + + + WidgetCatalogCtrl.$inject = ['widgetsService', '$log', '$cookies', '$scope', 'conf', 'beReaderService', 'widgetsCatalogService', 'userProfileService','dashboardService','$compile','ngDialog']; + angular.module('ecompApp').controller('WidgetCatalogCtrl', WidgetCatalogCtrl); + + angular.module('ecompApp').constant('refreshInterval', '30000'); + + angular.module('ecompApp').directive('refreshIframe', ['$interval', 'refreshInterval', function ($interval, refreshInterval) { + + function link(scope, element, attrs) { + var timeoutId; + + function updateIframe() { + if(attrs.isEnlarged == "false") + { + element.attr('src', element.attr('src')); + } + } + + element.on('$destroy', function () { + $interval.cancel(timeoutId); + }); + + // start the UI update process; save the timeoutId for cancelling + /* + * timeoutId = $interval(function () { updateIframe(); // update DOM }, + * refreshInterval); + */ + } + + return { + link: link + }; + } ]); + +})(); + + +app.directive('dynAttr', function() { + return { + scope: { list: '=dynAttr' }, + link: function(scope, elem, attrs){ + for(var attr in scope.list){ + elem.attr(scope.list[attr].attr, scope.list[attr].value); + } + } + }; +}); diff --git a/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.controller.spec.js b/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.controller.spec.js index 77659d93..5c42f4ce 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.controller.spec.js @@ -1,20 +1,20 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ + diff --git a/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.tpl.html b/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.tpl.html index 1b77a28c..84bf0f57 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/widget-catalog/widget-catalog.tpl.html @@ -1,76 +1,76 @@ - -
    -
    -
    -
    -

    Widget Catalog

    -
    -
    -
    -
    Failed to - communicate with the widget microservice.
    -
    -
    -
    -
      -
    • -
      -
      - -

      {{ widget.headerText}}

      -
      - -
      -
      -
      -
      -
      -
      -
    • -
    -
    -
    -
    -
    -
    X
    - -
    -
    -
    - -
    - To request access to an application widget, please visit the Get Access page. -
    -
    -
    -
    + +
    +
    +
    +
    +

    Widget Catalog

    +
    +
    +
    +
    Failed to + communicate with the widget microservice.
    +
    +
    +
    +
      +
    • +
      +
      + +

      {{ widget.headerText}}

      +
      + +
      +
      +
      +
      +
      +
      +
    • +
    +
    +
    +
    +
    +
    X
    + +
    +
    +
    + +
    + To request access to an application widget, please visit the Get Access page. +
    +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.controller.js b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.controller.js index 0a9dd12c..ad88c02b 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.controller.js +++ b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.controller.js @@ -1,381 +1,381 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class WidgetOnboardingDetailsModalCtrl { - constructor($scope, $log, $interval, applicationsService, adminsService, microserviceService, widgetsCatalogService, errorMessageByCode, ECOMP_URL_REGEX, $window,userProfileService, confirmBoxService, $cookies) { - - this.appUpdate = function(){ - this.hasSelectedApp = false; - this.appCounter = 0; - for(var i = 0; i < this.availableApps.length; i++){ - if(this.availableApps[i].isSelected){ - this.appCounter++; - if(!this.hasSelectedApp) - this.hasSelectedApp = true; - } - if(this.availableApps[i].isSelected - && this.availableApps[i].roles.length == 0){ - var index = i; - this.availableRoles = []; - adminsService.getRolesByApp(this.availableApps[i].id).then(roles => { - for(var i = 0; i < roles.length; i++){ - this.availableRoles.push({ - id: roles[i].id, - name: roles[i].name, - isSelected: false, - }); - } - this.availableApps[index].roles = this.availableRoles; - }); - } - } - this.allRoleSelected = true; - this.checkRoleSelected(); - } - - this.roleUpdate = function(app){ - this.allRoleSelected = true; - for(var i = 0; i < app.roles.length; i++){ - if(app.roles[i].isSelected){ - app.roleSelected = true; - this.checkRoleSelected(); - return; - } - } - app.roleSelected = false; - this.checkRoleSelected(); - } - - this.checkRoleSelected = function(){ - for(var i = 0; i < this.availableApps.length; i++){ - if(this.availableApps[i].isSelected - && !this.availableApps[i].roleSelected){ - this.allRoleSelected = false; - return; - } - } - } - - this.getAppName = function(appId){ - for(var i = 0; i < this.availableApps.length; i++){ - if(this.availableApps[i].id == appId){ - return this.availableApps[i].name; - } - } - } - - let newWidgetModel = { - name: null, - roleId: null, - roleName: null, - appId: null, - appName: null, - url: null, - showAppOptions: false, - showRoleOptions: false, - hasSelectedApp: false - }; - - let getAvailableApps = () => { - - if(this.isEditMode == false){ - applicationsService.getAppsForSuperAdminAndAccountAdmin().then(apps => { - this.availableApps=[]; - for(var i=0;i { - $log.error(err); - }); - } - else if(this.isEditMode == true){ - if(this.widget.allowAllUser == "Y") - this.widget.allUser = true; - applicationsService.getAppsForSuperAdminAndAccountAdmin().then(apps => { - this.availableApps=[]; - let selectedApps = {}; - var availableApps = this.availableApps; - this.allRoleSelected = true; - for(var i=0; i < this.widget.widgetRoles.length; i++){ - if(selectedApps[this.widget.widgetRoles[i].app.appId] != undefined) - selectedApps[this.widget.widgetRoles[i].app.appId] += this.widget.widgetRoles[i].roleId + ";" + this.widget.widgetRoles[i].roleName + ";"; - else{ - selectedApps[this.widget.widgetRoles[i].app.appId] = this.widget.widgetRoles[i].roleId + ";" + this.widget.widgetRoles[i].roleName + ";"; - this.appCounter++; - } - } - apps.forEach(function(app, index){ - availableApps.push({ - id: app.id, - name: app.name, - roles: [], - roleSelected: false, - isSelected: false, - }); - if(selectedApps[app.id] != undefined){ - adminsService.getRolesByApp(app.id).then(roles => { - var role = selectedApps[app.id].split(';'); - var selectedRoles = []; - var n = 0; - while((n+1) < role.length){ - selectedRoles.push({ - id: role[n++], - name: role[n++], - isSelected: true, - }); - } - for(var m = 0; m < roles.length; m++){ - var hasSelected = true; - for(var n = 0; n < selectedRoles.length; n++){ - if(selectedRoles[n].id == roles[m].id){ - hasSelected = false; - break; - } - } - if(hasSelected){ - selectedRoles.push({ - id: roles[m].id, - name: roles[m].name, - isSelected: false, - }); - } - } - availableApps[index].roleSelected = true; - availableApps[index].isSelected = true; - availableApps[index].roles = selectedRoles; - }); - } - }) - }) - } - }; - - let getAvailableServices = () =>{ - microserviceService.getServiceList().then(services => { - this.availableServices = []; - for(var i = 0; i < services.length; i++){ - this.availableServices.push({ - id: services[i].id, - name: services[i].name, - option: services[i].name + ": " + services[i].url - }); - - if(this.widget.service != null && this.widget.service.id == services[i].id){ - this.widget.serviceURL = this.availableServices[i]; - } - } - }).catch(err => { - $log.error(err); - }); - } - - - let init = () => { - $log.info('WidgetOnboardingDetailsModalCtrl::init'); - this.widgetsList = []; - this.duplicatedName = true; - this.allRoleSelected = false; - this.appCounter = 0; - this.isSaving = false; - this.allUser = false; - this.emptyWidgetName = false; - - if ($scope.ngDialogData && $scope.ngDialogData.widget) { - this.isEditMode = true; - this.allRoleSelected = true; - this.widget = _.clone($scope.ngDialogData.widget); - } else { - this.isEditMode = false; - this.widget = _.clone(newWidgetModel); - } - - widgetsCatalogService.getManagedWidgets().then(res => { - for(var i = 0; i < res.length; i++){ - this.widgetsList.push(res[i].name); - } - }).catch(err => { - $log.error('WidgetOnboardingDetailsModalCtrl::init error: ' + err); - }).finally(()=> { - this.isLoadingTable = false; - }); - getAvailableApps(); - getAvailableServices(); - }; - this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; - this.conflictMessages = {}; - this.scrollApi = {}; - - let resetConflict = fieldName => { - delete this.conflictMessages[fieldName]; - if($scope.widgetForm[fieldName]){ - $scope.widgetForm[fieldName].$setValidity('conflict', true); - } - }; - - this.updateSelectedRole = () => { - if (!this.selectedRole) { - return; - } - this.widget.RoleId = this.selectedRole.id; - this.widget.RoleName = this.selectedRole.name; - }; - - let emptyCookies = () => { - userProfileService.getUserProfile() - .then(profile=> { - $log.info('AppDetailsModalCtrl::emptyCookies profile: ', profile); - $scope.orgUserId = profile.orgUserId; - $log.info('user has the following orgUserId: ' + profile.orgUserId); - if ($cookies.getObject($scope.orgUserId + '_widget') != undefined && $cookies.getObject($scope.orgUserId + '_widget') != null) { - $cookies.remove($scope.orgUserId + '_widget'); - } - }); - }; - - this.updateWidgetName = () => { - for(var i = 0; i < this.widgetsList.length; i++){ - if(this.widget.name.toUpperCase() == this.widgetsList[i].toUpperCase()){ - this.duplicatedName = false; - return; - } - } - this.duplicatedName = true; - }; - - this.saveChanges = () => { - - if(!this.isEditMode) - this.updateWidgetName(); - - if(this.duplicatedName == false - || this.widget.name == '' - || this.widget.name == undefined){ - this.emptyWidgetName = true; - return; - } - - if((this.widget.file == undefined && !this.isEditMode) || - (!this.widget.allUser && this.appCounter == 0) || - this.widget.name == null || - (!this.widget.allUser && !this.allRoleSelected) || - this.widget.saving == true) - return; - - - this.widget.saving = true; - var selectedRoles = []; - if(!this.widget.allUser){ - for(var i = 0; i < this.availableApps.length; i++){ - if(this.availableApps[i].isSelected){ - for(var n = 0; n < this.availableApps[i].roles.length; n++) { - if(this.availableApps[i].roles[n].isSelected){ - var role = { - app: { - appId: this.availableApps[i].id - }, - roleId: this.availableApps[i].roles[n].id, - roleName: this.availableApps[i].roles[n].name, - }; - selectedRoles.push(role); - } - } - } - } - } - - var allowAllUser = 0; - if(this.widget.allUser) - allowAllUser = 1; - - var serviceId = null; - if(this.widget.serviceURL != null && - this.widget.serviceURL != undefined){ - serviceId = this.widget.serviceURL.id; - } - - - var file_loc = this.widget.name + ".zip"; - var newWidget = { - name: this.widget.name, - desc: this.widget.desc, - widgetRoles: selectedRoles, - fileLocation: file_loc, - allowAllUser: allowAllUser, - serviceId: serviceId - }; - - if(this.isEditMode){ - - if(this.widget.file != undefined){ - widgetsCatalogService.updateWidgetWithFile(this.widget.file, this.widget.id, newWidget).then(res => { - if(!res.valid){ - if(!res.error){ - confirmBoxService.showInformation("Could not save. Please retry."); - this.widget.saving = false; - return; - } - confirmBoxService.showInformation(res.error); - this.widget.saving = false; - return; - } - $scope.closeThisDialog(true); - this.widget.saving = false; - }); - } - else{ - widgetsCatalogService.updateWidget(this.widget.id, newWidget) - .then(() => { - $scope.closeThisDialog(true); - }); - } - } - else{ - widgetsCatalogService.createWidget(newWidget, this.widget.file).then(res => { - if(!res.valid){ - if(!res.error) - confirmBoxService.showInformation("Could not save. Please retry."); - else - confirmBoxService.showInformation(res.error); - this.widget.saving = false; - return; - } - $scope.closeThisDialog(true); - this.widget.saving = false; - }); - } - }; - init(); - $scope.$on('$stateChangeStart', e => { - e.preventDefault(); - }); - } - } - WidgetOnboardingDetailsModalCtrl.$inject = ['$scope', '$log', '$interval', 'applicationsService', 'adminsService', 'microserviceService', 'widgetsCatalogService', 'errorMessageByCode', 'ECOMP_URL_REGEX', '$window','userProfileService', 'confirmBoxService', '$cookies']; - angular.module('ecompApp').controller('WidgetOnboardingDetailsModalCtrl', WidgetOnboardingDetailsModalCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class WidgetOnboardingDetailsModalCtrl { + constructor($scope, $log, $interval, applicationsService, adminsService, microserviceService, widgetsCatalogService, errorMessageByCode, ECOMP_URL_REGEX, $window,userProfileService, confirmBoxService, $cookies) { + + this.appUpdate = function(){ + this.hasSelectedApp = false; + this.appCounter = 0; + for(var i = 0; i < this.availableApps.length; i++){ + if(this.availableApps[i].isSelected){ + this.appCounter++; + if(!this.hasSelectedApp) + this.hasSelectedApp = true; + } + if(this.availableApps[i].isSelected + && this.availableApps[i].roles.length == 0){ + var index = i; + this.availableRoles = []; + adminsService.getRolesByApp(this.availableApps[i].id).then(roles => { + for(var i = 0; i < roles.length; i++){ + this.availableRoles.push({ + id: roles[i].id, + name: roles[i].name, + isSelected: false, + }); + } + this.availableApps[index].roles = this.availableRoles; + }); + } + } + this.allRoleSelected = true; + this.checkRoleSelected(); + } + + this.roleUpdate = function(app){ + this.allRoleSelected = true; + for(var i = 0; i < app.roles.length; i++){ + if(app.roles[i].isSelected){ + app.roleSelected = true; + this.checkRoleSelected(); + return; + } + } + app.roleSelected = false; + this.checkRoleSelected(); + } + + this.checkRoleSelected = function(){ + for(var i = 0; i < this.availableApps.length; i++){ + if(this.availableApps[i].isSelected + && !this.availableApps[i].roleSelected){ + this.allRoleSelected = false; + return; + } + } + } + + this.getAppName = function(appId){ + for(var i = 0; i < this.availableApps.length; i++){ + if(this.availableApps[i].id == appId){ + return this.availableApps[i].name; + } + } + } + + let newWidgetModel = { + name: null, + roleId: null, + roleName: null, + appId: null, + appName: null, + url: null, + showAppOptions: false, + showRoleOptions: false, + hasSelectedApp: false + }; + + let getAvailableApps = () => { + + if(this.isEditMode == false){ + applicationsService.getAppsForSuperAdminAndAccountAdmin().then(apps => { + this.availableApps=[]; + for(var i=0;i { + $log.error(err); + }); + } + else if(this.isEditMode == true){ + if(this.widget.allowAllUser == "Y") + this.widget.allUser = true; + applicationsService.getAppsForSuperAdminAndAccountAdmin().then(apps => { + this.availableApps=[]; + let selectedApps = {}; + var availableApps = this.availableApps; + this.allRoleSelected = true; + for(var i=0; i < this.widget.widgetRoles.length; i++){ + if(selectedApps[this.widget.widgetRoles[i].app.appId] != undefined) + selectedApps[this.widget.widgetRoles[i].app.appId] += this.widget.widgetRoles[i].roleId + ";" + this.widget.widgetRoles[i].roleName + ";"; + else{ + selectedApps[this.widget.widgetRoles[i].app.appId] = this.widget.widgetRoles[i].roleId + ";" + this.widget.widgetRoles[i].roleName + ";"; + this.appCounter++; + } + } + apps.forEach(function(app, index){ + availableApps.push({ + id: app.id, + name: app.name, + roles: [], + roleSelected: false, + isSelected: false, + }); + if(selectedApps[app.id] != undefined){ + adminsService.getRolesByApp(app.id).then(roles => { + var role = selectedApps[app.id].split(';'); + var selectedRoles = []; + var n = 0; + while((n+1) < role.length){ + selectedRoles.push({ + id: role[n++], + name: role[n++], + isSelected: true, + }); + } + for(var m = 0; m < roles.length; m++){ + var hasSelected = true; + for(var n = 0; n < selectedRoles.length; n++){ + if(selectedRoles[n].id == roles[m].id){ + hasSelected = false; + break; + } + } + if(hasSelected){ + selectedRoles.push({ + id: roles[m].id, + name: roles[m].name, + isSelected: false, + }); + } + } + availableApps[index].roleSelected = true; + availableApps[index].isSelected = true; + availableApps[index].roles = selectedRoles; + }); + } + }) + }) + } + }; + + let getAvailableServices = () =>{ + microserviceService.getServiceList().then(services => { + this.availableServices = []; + for(var i = 0; i < services.length; i++){ + this.availableServices.push({ + id: services[i].id, + name: services[i].name, + option: services[i].name + ": " + services[i].url + }); + + if(this.widget.serviceId != null && this.widget.serviceId == services[i].id){ + this.widget.serviceURL = this.availableServices[i]; + } + } + }).catch(err => { + $log.error(err); + }); + } + + + let init = () => { + $log.info('WidgetOnboardingDetailsModalCtrl::init'); + this.widgetsList = []; + this.duplicatedName = true; + this.allRoleSelected = false; + this.appCounter = 0; + this.isSaving = false; + this.allUser = false; + this.emptyWidgetName = false; + + if ($scope.ngDialogData && $scope.ngDialogData.widget) { + this.isEditMode = true; + this.allRoleSelected = true; + this.widget = _.clone($scope.ngDialogData.widget); + } else { + this.isEditMode = false; + this.widget = _.clone(newWidgetModel); + } + + widgetsCatalogService.getManagedWidgets().then(res => { + for(var i = 0; i < res.length; i++){ + this.widgetsList.push(res[i].name); + } + }).catch(err => { + $log.error('WidgetOnboardingDetailsModalCtrl::init error: ' + err); + }).finally(()=> { + this.isLoadingTable = false; + }); + getAvailableApps(); + getAvailableServices(); + }; + this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; + this.conflictMessages = {}; + this.scrollApi = {}; + + let resetConflict = fieldName => { + delete this.conflictMessages[fieldName]; + if($scope.widgetForm[fieldName]){ + $scope.widgetForm[fieldName].$setValidity('conflict', true); + } + }; + + this.updateSelectedRole = () => { + if (!this.selectedRole) { + return; + } + this.widget.RoleId = this.selectedRole.id; + this.widget.RoleName = this.selectedRole.name; + }; + + let emptyCookies = () => { + userProfileService.getUserProfile() + .then(profile=> { + $log.info('AppDetailsModalCtrl::emptyCookies profile: ', profile); + $scope.orgUserId = profile.orgUserId; + $log.info('user has the following orgUserId: ' + profile.orgUserId); + if ($cookies.getObject($scope.orgUserId + '_widget') != undefined && $cookies.getObject($scope.orgUserId + '_widget') != null) { + $cookies.remove($scope.orgUserId + '_widget'); + } + }); + }; + + this.updateWidgetName = () => { + for(var i = 0; i < this.widgetsList.length; i++){ + if(this.widget.name.toUpperCase() == this.widgetsList[i].toUpperCase()){ + this.duplicatedName = false; + return; + } + } + this.duplicatedName = true; + }; + + this.saveChanges = () => { + + if(!this.isEditMode) + this.updateWidgetName(); + + if(this.duplicatedName == false + || this.widget.name == '' + || this.widget.name == undefined){ + this.emptyWidgetName = true; + return; + } + + if((this.widget.file == undefined && !this.isEditMode) || + (!this.widget.allUser && this.appCounter == 0) || + this.widget.name == null || + (!this.widget.allUser && !this.allRoleSelected) || + this.widget.saving == true) + return; + + + this.widget.saving = true; + var selectedRoles = []; + if(!this.widget.allUser){ + for(var i = 0; i < this.availableApps.length; i++){ + if(this.availableApps[i].isSelected){ + for(var n = 0; n < this.availableApps[i].roles.length; n++) { + if(this.availableApps[i].roles[n].isSelected){ + var role = { + app: { + appId: this.availableApps[i].id + }, + roleId: this.availableApps[i].roles[n].id, + roleName: this.availableApps[i].roles[n].name, + }; + selectedRoles.push(role); + } + } + } + } + } + + var allowAllUser = 0; + if(this.widget.allUser) + allowAllUser = 1; + + var serviceId = null; + if(this.widget.serviceURL != null && + this.widget.serviceURL != undefined){ + serviceId = this.widget.serviceURL.id; + } + + + var file_loc = this.widget.name + ".zip"; + var newWidget = { + name: this.widget.name, + desc: this.widget.desc, + widgetRoles: selectedRoles, + fileLocation: file_loc, + allowAllUser: allowAllUser, + serviceId: serviceId + }; + + if(this.isEditMode){ + + if(this.widget.file != undefined){ + widgetsCatalogService.updateWidgetWithFile(this.widget.file, this.widget.id, newWidget).then(res => { + if(!res.valid){ + if(!res.error){ + confirmBoxService.showInformation("Could not save. Please retry."); + this.widget.saving = false; + return; + } + confirmBoxService.showInformation(res.error); + this.widget.saving = false; + return; + } + $scope.closeThisDialog(true); + this.widget.saving = false; + }); + } + else{ + widgetsCatalogService.updateWidget(this.widget.id, newWidget) + .then(() => { + $scope.closeThisDialog(true); + }); + } + } + else{ + widgetsCatalogService.createWidget(newWidget, this.widget.file).then(res => { + if(!res.valid){ + if(!res.error) + confirmBoxService.showInformation("Could not save. Please retry."); + else + confirmBoxService.showInformation(res.error); + this.widget.saving = false; + return; + } + $scope.closeThisDialog(true); + this.widget.saving = false; + }); + } + }; + init(); + $scope.$on('$stateChangeStart', e => { + e.preventDefault(); + }); + } + } + WidgetOnboardingDetailsModalCtrl.$inject = ['$scope', '$log', '$interval', 'applicationsService', 'adminsService', 'microserviceService', 'widgetsCatalogService', 'errorMessageByCode', 'ECOMP_URL_REGEX', '$window','userProfileService', 'confirmBoxService', '$cookies']; + angular.module('ecompApp').controller('WidgetOnboardingDetailsModalCtrl', WidgetOnboardingDetailsModalCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.controller.spec.js b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.controller.spec.js index 1762fadb..927836ae 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.controller.spec.js @@ -1,154 +1,154 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -// 'use strict'; -// describe('Controller: WidgetDetailsModalCtrl', ()=> { -// /** -// * INITIALIZATION -// */ -// beforeEach(module('testUtils')); -// beforeEach(module('ecompApp')); -// -// let promisesTestUtils; -// //destroy $http default cache before starting to prevent the error 'default cache already exists' -// //_promisesTestUtils_ comes from testUtils for promises resolve/reject -// beforeEach(inject((_CacheFactory_, _promisesTestUtils_)=> { -// _CacheFactory_.destroyAll(); -// promisesTestUtils = _promisesTestUtils_; -// })); -// -// let widgetDetails, scope, $controller, $q, $rootScope, $log, widgetsService, errorMessageByCode, ECOMP_URL_REGEX; -// let deferredAdminApps, deferredUserProfile; -// let applicationsServiceMock, widgetsServiceMock, userProfileServiceMock; -// beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { -// [$controller, $q, $rootScope, $log] = [_$controller_, _$q_, _$rootScope_, _$log_]; -// -// deferredAdminApps = $q.defer(); -// deferredUserProfile = $q.defer(); -// /*applicationsServiceMock = { -// getAppsForSuperAdminAndAccountAdmin: () => { -// var promise = () => {return deferredAdminApps.promise}; -// var cancel = jasmine.createSpy(); -// return { -// promise: promise, -// cancel: cancel -// } -// } -// };*/ -// -// widgetsServiceMock = { -// updateWidget: () => { -// var promise = () => {return deferredAdminApps.promise}; -// var cancel = jasmine.createSpy(); -// return { -// promise: promise, -// cancel: cancel -// } -// }, -// createWidget: () => { -// var promise = () => {return deferredAdminApps.promise}; -// var cancel = jasmine.createSpy(); -// return { -// promise: promise, -// cancel: cancel -// } -// } -// }; -// -// userProfileServiceMock = jasmine.createSpyObj('userProfileServiceMock',['getUserProfile']); -// userProfileServiceMock.getUserProfile.and.returnValue(deferredUserProfile.promise); -// -// applicationsServiceMock = jasmine.createSpyObj('applicationsServiceMock',['getAppsForSuperAdminAndAccountAdmin']); -// applicationsServiceMock.getAppsForSuperAdminAndAccountAdmin.and.returnValue(deferredAdminApps.promise); -// -// })); -// -// beforeEach(()=> { -// errorMessageByCode = []; -// ECOMP_URL_REGEX = ""; -// scope = $rootScope.$new(); -// createController(scope); -// }); -// -// let createController = scopeObj => { -// widgetDetails = $controller('WidgetDetailsModalCtrl', { -// $scope: scope, -// $log: $log, -// applicationsService: applicationsServiceMock, -// widgetsService: widgetsServiceMock, -// errorMessageByCode: errorMessageByCode, -// ECOMP_URL_REGEX: ECOMP_URL_REGEX, -// userProfileService: userProfileServiceMock -// }); -// }; -// -// /** -// * MOCK DATA -// */ -// let newWidgetModel = { -// name: null, -// appId: null, -// appName: null, -// width: 360, -// height: 300, -// url: null -// }; -// let exsistingWidget = { -// name: 'some widget', -// appId: 1, -// appName: 'APP NAME', -// width: 360, -// height: 300, -// url: 'http://a.com' -// }; -// let adminApps = [{id: 1, name: 'a'}, {id: 2, name: 'b'}]; -// -// /** -// * TEST CASES -// */ -// it('should initialize controller with new widget mode when opening the modal without selected widget', ()=> { -// expect(widgetDetails.widget).toEqual(newWidgetModel); -// }); -// -// it('should initialize controller with exsisting widget details when opening the modal with selected widget', ()=> { -// scope.ngDialogData = { -// widget: exsistingWidget -// }; -// createController(scope); -// expect(widgetDetails.widget).toEqual(exsistingWidget); -// }); -// -// it('should populate widget selected app name and id when initializing controller with widget', () =>{ -// deferredAdminApps.resolve(adminApps); -// scope.ngDialogData = { -// widget: exsistingWidget -// }; -// createController(scope); -// scope.$apply(); -// expect(widgetDetails.widget.appId).toEqual(adminApps[0].id); -// expect(widgetDetails.widget.appName).toEqual(adminApps[0].name); -// }); -// -// //TODO: -// //save changes fail - conflict handling -// //save changes success -// -// -// -// }); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +// 'use strict'; +// describe('Controller: WidgetDetailsModalCtrl', ()=> { +// /** +// * INITIALIZATION +// */ +// beforeEach(module('testUtils')); +// beforeEach(module('ecompApp')); +// +// let promisesTestUtils; +// //destroy $http default cache before starting to prevent the error 'default cache already exists' +// //_promisesTestUtils_ comes from testUtils for promises resolve/reject +// beforeEach(inject((_CacheFactory_, _promisesTestUtils_)=> { +// _CacheFactory_.destroyAll(); +// promisesTestUtils = _promisesTestUtils_; +// })); +// +// let widgetDetails, scope, $controller, $q, $rootScope, $log, widgetsService, errorMessageByCode, ECOMP_URL_REGEX; +// let deferredAdminApps, deferredUserProfile; +// let applicationsServiceMock, widgetsServiceMock, userProfileServiceMock; +// beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { +// [$controller, $q, $rootScope, $log] = [_$controller_, _$q_, _$rootScope_, _$log_]; +// +// deferredAdminApps = $q.defer(); +// deferredUserProfile = $q.defer(); +// /*applicationsServiceMock = { +// getAppsForSuperAdminAndAccountAdmin: () => { +// var promise = () => {return deferredAdminApps.promise}; +// var cancel = jasmine.createSpy(); +// return { +// promise: promise, +// cancel: cancel +// } +// } +// };*/ +// +// widgetsServiceMock = { +// updateWidget: () => { +// var promise = () => {return deferredAdminApps.promise}; +// var cancel = jasmine.createSpy(); +// return { +// promise: promise, +// cancel: cancel +// } +// }, +// createWidget: () => { +// var promise = () => {return deferredAdminApps.promise}; +// var cancel = jasmine.createSpy(); +// return { +// promise: promise, +// cancel: cancel +// } +// } +// }; +// +// userProfileServiceMock = jasmine.createSpyObj('userProfileServiceMock',['getUserProfile']); +// userProfileServiceMock.getUserProfile.and.returnValue(deferredUserProfile.promise); +// +// applicationsServiceMock = jasmine.createSpyObj('applicationsServiceMock',['getAppsForSuperAdminAndAccountAdmin']); +// applicationsServiceMock.getAppsForSuperAdminAndAccountAdmin.and.returnValue(deferredAdminApps.promise); +// +// })); +// +// beforeEach(()=> { +// errorMessageByCode = []; +// ECOMP_URL_REGEX = ""; +// scope = $rootScope.$new(); +// createController(scope); +// }); +// +// let createController = scopeObj => { +// widgetDetails = $controller('WidgetDetailsModalCtrl', { +// $scope: scope, +// $log: $log, +// applicationsService: applicationsServiceMock, +// widgetsService: widgetsServiceMock, +// errorMessageByCode: errorMessageByCode, +// ECOMP_URL_REGEX: ECOMP_URL_REGEX, +// userProfileService: userProfileServiceMock +// }); +// }; +// +// /** +// * MOCK DATA +// */ +// let newWidgetModel = { +// name: null, +// appId: null, +// appName: null, +// width: 360, +// height: 300, +// url: null +// }; +// let exsistingWidget = { +// name: 'some widget', +// appId: 1, +// appName: 'APP NAME', +// width: 360, +// height: 300, +// url: 'http://a.com' +// }; +// let adminApps = [{id: 1, name: 'a'}, {id: 2, name: 'b'}]; +// +// /** +// * TEST CASES +// */ +// it('should initialize controller with new widget mode when opening the modal without selected widget', ()=> { +// expect(widgetDetails.widget).toEqual(newWidgetModel); +// }); +// +// it('should initialize controller with exsisting widget details when opening the modal with selected widget', ()=> { +// scope.ngDialogData = { +// widget: exsistingWidget +// }; +// createController(scope); +// expect(widgetDetails.widget).toEqual(exsistingWidget); +// }); +// +// it('should populate widget selected app name and id when initializing controller with widget', () =>{ +// deferredAdminApps.resolve(adminApps); +// scope.ngDialogData = { +// widget: exsistingWidget +// }; +// createController(scope); +// scope.$apply(); +// expect(widgetDetails.widget.appId).toEqual(adminApps[0].id); +// expect(widgetDetails.widget.appName).toEqual(adminApps[0].name); +// }); +// +// //TODO: +// //save changes fail - conflict handling +// //save changes success +// +// +// +// }); diff --git a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.modal.html b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.modal.html index 2fa56443..9e1c1696 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.modal.html +++ b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-details-dialog/widget-details.modal.html @@ -1,156 +1,156 @@ - -
    -
    Widget Details
    - -
    -
    - -
    -
    Widget Name
    - - -
    -
    Name - not available - choose different name
    -
    - -
    -
    - Widget Name is - required Widget Name must - be letters, numbers, or underscore -
    -
    -
    - - -
    -
    Widget Description
    - -
    - -
    - -
    Allow all user - access
    -
    - - -
    -
    Service Endpoint
    -
    - -
    -
    - -
    -
    Application Name
    -
    - -
    -
    -
    Please - select at least one Application
    -
    -
    - -
    -
    User Role Name
    -
    -
    -
    {{appRoles.name}}
    -
    - -
    -
    Please select at least one role
    -
    -
    -
    -
    -
    - -
    -
    Upload Widget
    -
    - - - -
    -
    Please upload your widget (.zip)
    -
    -
    -
    -
    -
    - -
    - - - - -
    - - - -
    + +
    +
    Widget Details
    + +
    +
    + +
    +
    Widget Name
    + + +
    +
    Name + not available - choose different name
    +
    + +
    +
    + Widget Name is + required Widget Name must + be letters, numbers, space, dash or underscore +
    +
    +
    + + +
    +
    Widget Description
    + +
    + +
    +
    Service Endpoint
    +
    + +
    +
    + +
    + +
    Allow all user + access
    +
    + +
    +
    Application Name
    +
    + +
    +
    +
    Please + select at least one Application
    +
    +
    + +
    +
    User Role Name
    +
    +
    +
    {{appRoles.name}}
    +
    + +
    +
    Please select at least one role
    +
    +
    +
    +
    +
    + +
    +
    Upload Widget
    +
    + + + +
    +
    Please upload your widget (.zip)
    +
    +
    +
    +
    +
    + +
    + + + + +
    + + + +
    diff --git a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.controller.js b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.controller.js index a9e5c416..661c63a3 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.controller.js +++ b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.controller.js @@ -1,204 +1,204 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class WidgetOnboardingCtrl { - constructor($log, applicationsService, widgetsCatalogService, ngDialog, confirmBoxService, - userProfileService, $cookies, $scope) { - $scope.infoMessage = true; - - let populateAvailableApps = widgets => { - let allPortalsFilterObject = {index: 0, title: 'All applications', value: ''}; - this.availableApps = [allPortalsFilterObject]; - this.filterByApp = this.availableApps[0]; - applicationsService.getAppsForSuperAdminAndAccountAdmin().then(myApps => { - var reSortedApp = myApps.sort(getSortOrder("name")); - var realAppIndex = 1; - for (let i = 1; i <= reSortedApp.length; i++) { - if (!reSortedApp[i-1].restrictedApp) { - this.availableApps.push({ - index: realAppIndex, - title: reSortedApp[i - 1].name, - value: reSortedApp[i - 1].name - }) - realAppIndex = realAppIndex + 1; - } - } - }).catch(err => { - $log.error('WidgetOnboardingCtrl:getAppsForSuperAdmin failed', err); - }); - }; - - let getOnboardingWidgets = () => { - this.isLoadingTable = true; - this.isCommError = false; - widgetsCatalogService.getManagedWidgets().then(res => { - if(!(res instanceof Array)){ - this.isCommError = true; - return; - } - - var reSortedWidget = res.sort(getSortOrder("name")); - $scope.widgetsList = reSortedWidget; - for(var i = 0; i < $scope.widgetsList.length; i++){ - let set = new Set(); - var info = ""; - var appContent = []; - var appName = []; - for(var n = 0; n < $scope.widgetsList[i].widgetRoles.length; n++){ - set.add($scope.widgetsList[i].widgetRoles[n].app.appName); - } - if($scope.widgetsList[i].allowAllUser == "Y"){ - info = "All Applications"; - appContent.push("All Applications"); - appName.push("All Applications"); - } - - set.forEach(function (item) { - info = item.toString() + " - "; - for(var n = 0; n < $scope.widgetsList[i].widgetRoles.length; n++){ - if(item.toString() == $scope.widgetsList[i].widgetRoles[n].app.appName){ - info += $scope.widgetsList[i].widgetRoles[n].roleName + "; "; - } - } - appContent.push(info); - appName.push(item.toString()); - }); - $scope.widgetsList[i].appContent = appContent; - $scope.widgetsList[i].appName = appName; - } - populateAvailableApps(reSortedWidget); - }).catch(err => { - // Land here when the micro service is down - $log.error('WidgetOnboardingCtrl::getOnboardingWidgets caught error', err); - }).finally(()=> { - this.isLoadingTable = false; - }); - - }; - - - // Refactor this into a directive - let getSortOrder = (prop) => { - return function(a, b) { - if (a[prop].toLowerCase() > b[prop].toLowerCase()) { - return 1; - } else if (a[prop].toLowerCase() < b[prop].toLowerCase()) { - return -1; - } - return 0; - } - } - - $scope.hideMe = function () { - $scope.infoMessage = false; - } - - let init = () => { - this.isLoadingTable = false; - getOnboardingWidgets(); - this.searchString = ''; - this.widgetsTableHeaders = [ - {name: 'Widget Name', value: 'name', isSortable: false} - ]; - $scope.widgetsList = []; - }; - - this.filterByDropdownValue = item => { - if(this.filterByApp.value === '') - return true; - - for(var i = 0; i < item.appName.length; i++){ - if(item.appName[i] == this.filterByApp.value - || item.appName[i] == 'All Applications'){ - return true; - } - } - return false; - }; - - this.openWidgetCatalogDetailsModal = (selectedWidget) => { - let data = null; - if(selectedWidget){ - if(!selectedWidget.id){ - $log.error('WidgetOnboardingCtrl:openWidgetCatalogDetailModal: widget id not found'); - return; - } - data = { - widget: selectedWidget - } - } - ngDialog.open({ - templateUrl: 'app/views/widget-onboarding/widget-details-dialog/widget-details.modal.html', - controller: 'WidgetOnboardingDetailsModalCtrl', - controllerAs: 'widgetOnboardingDetails', - data: data - }).closePromise.then(needUpdate => { - if(needUpdate.value === true){ - getOnboardingWidgets(); - } - }); - }; - - this.deleteWidget = widget => { - - confirmBoxService.deleteItem(widget.name).then(isConfirmed => { - if(isConfirmed){ - if(!widget || !widget.id){ - $log.error('WidgetOnboardingCtrl::deleteWidget: No widget or ID... cannot delete'); - return; - } - widgetsCatalogService.deleteWidget(widget.id).then(() => { - $scope.widgetsList.splice($scope.widgetsList.indexOf(widget), 1); - }).catch(err => { - $log.error('WidgetOnboardingCtrl::deleteWidget error:',err); - }); - } - }).catch(err => { - $log.error('WidgetOnboardingCtrl::deleteWidget error:',err); - }); - - }; - - - this.downloadWidget = widget => { - widgetsCatalogService.downloadWidgetFile(widget.id).then(res => { - var data = res; - var filename = widget.name + ".zip"; - - if (data == undefined || data == null){ - confirmBoxService.showInformation("Could not download. Please retry."); - return; - } - var a = document.createElement('a'); - var blob = new Blob([data], {type: 'application/octet-stream'}); - a.href = URL.createObjectURL(blob); - a.download = filename; - a.click(); - }); - }; - - init(); - } - } - WidgetOnboardingCtrl.$inject = ['$log', 'applicationsService', 'widgetsCatalogService', 'ngDialog', 'confirmBoxService', - 'userProfileService','$cookies', '$scope']; - angular.module('ecompApp').controller('WidgetOnboardingCtrl', WidgetOnboardingCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class WidgetOnboardingCtrl { + constructor($log, applicationsService, widgetsCatalogService, ngDialog, confirmBoxService, + userProfileService, $cookies, $scope) { + $scope.infoMessage = true; + + let populateAvailableApps = widgets => { + let allPortalsFilterObject = {index: 0, title: 'All applications', value: ''}; + this.availableApps = [allPortalsFilterObject]; + this.filterByApp = this.availableApps[0]; + applicationsService.getAppsForSuperAdminAndAccountAdmin().then(myApps => { + var reSortedApp = myApps.sort(getSortOrder("name")); + var realAppIndex = 1; + for (let i = 1; i <= reSortedApp.length; i++) { + if (!reSortedApp[i-1].restrictedApp) { + this.availableApps.push({ + index: realAppIndex, + title: reSortedApp[i - 1].name, + value: reSortedApp[i - 1].name + }) + realAppIndex = realAppIndex + 1; + } + } + }).catch(err => { + $log.error('WidgetOnboardingCtrl:getAppsForSuperAdmin failed', err); + }); + }; + + let getOnboardingWidgets = () => { + this.isLoadingTable = true; + this.isCommError = false; + widgetsCatalogService.getManagedWidgets().then(res => { + if(!(res instanceof Array)){ + this.isCommError = true; + return; + } + + var reSortedWidget = res.sort(getSortOrder("name")); + $scope.widgetsList = reSortedWidget; + for(var i = 0; i < $scope.widgetsList.length; i++){ + let set = new Set(); + var info = ""; + var appContent = []; + var appName = []; + for(var n = 0; n < $scope.widgetsList[i].widgetRoles.length; n++){ + set.add($scope.widgetsList[i].widgetRoles[n].app.appName); + } + if($scope.widgetsList[i].allowAllUser == "Y"){ + info = "All Applications"; + appContent.push("All Applications"); + appName.push("All Applications"); + } + + set.forEach(function (item) { + info = item.toString() + " - "; + for(var n = 0; n < $scope.widgetsList[i].widgetRoles.length; n++){ + if(item.toString() == $scope.widgetsList[i].widgetRoles[n].app.appName){ + info += $scope.widgetsList[i].widgetRoles[n].roleName + "; "; + } + } + appContent.push(info); + appName.push(item.toString()); + }); + $scope.widgetsList[i].appContent = appContent; + $scope.widgetsList[i].appName = appName; + } + populateAvailableApps(reSortedWidget); + }).catch(err => { + // Land here when the micro service is down + $log.error('WidgetOnboardingCtrl::getOnboardingWidgets caught error', err); + }).finally(()=> { + this.isLoadingTable = false; + }); + + }; + + + // Refactor this into a directive + let getSortOrder = (prop) => { + return function(a, b) { + if (a[prop].toLowerCase() > b[prop].toLowerCase()) { + return 1; + } else if (a[prop].toLowerCase() < b[prop].toLowerCase()) { + return -1; + } + return 0; + } + } + + $scope.hideMe = function () { + $scope.infoMessage = false; + } + + let init = () => { + this.isLoadingTable = false; + getOnboardingWidgets(); + this.searchString = ''; + this.widgetsTableHeaders = [ + {name: 'Widget Name', value: 'name', isSortable: false} + ]; + $scope.widgetsList = []; + }; + + this.filterByDropdownValue = item => { + if(this.filterByApp.value === '') + return true; + + for(var i = 0; i < item.appName.length; i++){ + if(item.appName[i] == this.filterByApp.value + || item.appName[i] == 'All Applications'){ + return true; + } + } + return false; + }; + + this.openWidgetCatalogDetailsModal = (selectedWidget) => { + let data = null; + if(selectedWidget){ + if(!selectedWidget.id){ + $log.error('WidgetOnboardingCtrl:openWidgetCatalogDetailModal: widget id not found'); + return; + } + data = { + widget: selectedWidget + } + } + ngDialog.open({ + templateUrl: 'app/views/widget-onboarding/widget-details-dialog/widget-details.modal.html', + controller: 'WidgetOnboardingDetailsModalCtrl', + controllerAs: 'widgetOnboardingDetails', + data: data + }).closePromise.then(needUpdate => { + if(needUpdate.value === true){ + getOnboardingWidgets(); + } + }); + }; + + this.deleteWidget = widget => { + + confirmBoxService.deleteItem(widget.name).then(isConfirmed => { + if(isConfirmed){ + if(!widget || !widget.id){ + $log.error('WidgetOnboardingCtrl::deleteWidget: No widget or ID... cannot delete'); + return; + } + widgetsCatalogService.deleteWidget(widget.id).then(() => { + $scope.widgetsList.splice($scope.widgetsList.indexOf(widget), 1); + }).catch(err => { + $log.error('WidgetOnboardingCtrl::deleteWidget error:',err); + }); + } + }).catch(err => { + $log.error('WidgetOnboardingCtrl::deleteWidget error:',err); + }); + + }; + + + this.downloadWidget = widget => { + widgetsCatalogService.downloadWidgetFile(widget.id).then(res => { + var data = res; + var filename = widget.name + ".zip"; + + if (data == undefined || data == null){ + confirmBoxService.showInformation("Could not download. Please retry."); + return; + } + var a = document.createElement('a'); + var blob = new Blob([data], {type: 'application/octet-stream'}); + a.href = URL.createObjectURL(blob); + a.download = filename; + a.click(); + }); + }; + + init(); + } + } + WidgetOnboardingCtrl.$inject = ['$log', 'applicationsService', 'widgetsCatalogService', 'ngDialog', 'confirmBoxService', + 'userProfileService','$cookies', '$scope']; + angular.module('ecompApp').controller('WidgetOnboardingCtrl', WidgetOnboardingCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.controller.spec.js b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.controller.spec.js index 77659d93..5c42f4ce 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.controller.spec.js @@ -1,20 +1,20 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ - +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ + diff --git a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.less b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.less index f832b8f9..6085a908 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.less +++ b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.less @@ -24,9 +24,15 @@ font-style: italic; .ico_trash_default; } .c-ecomp-abs-select{ + height: 25px; width: 440px; display: inline-block; margin-right: 10px; } +#widget-onboarding-button-add +{ +margin-bottom: 8px; +} + } diff --git a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.tpl.html b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.tpl.html index 808deb8c..aae0fd7c 100644 --- a/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/widget-onboarding/widget-onboarding.tpl.html @@ -1,113 +1,115 @@ - -
    -
    -
    -
    -

    Widget Onboarding

    -
    -
    -
    -
    -
    - -
    -
    - - - - -
    Failed to communicate - with the widget microservice.
    - -
    -
    - - - - - - - - - - - - - - - - - - - - - - -
    {{header.name}}ApplicationDownloadDelete
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    + +
    +
    +
    +
    +

    Widget Onboarding

    +
    +
    +
    +
    +
    + +
    +
    + + + + +
    Failed to communicate + with the widget microservice.
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    {{header.name}}ApplicationDownloadDelete
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.controller.js b/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.controller.js index eb628b4f..a7c29043 100644 --- a/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.controller.js +++ b/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.controller.js @@ -1,226 +1,226 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -/** - * Created by nnaffar on 12/20/15. - */ -'use strict'; -(function () { - class WidgetDetailsModalCtrl { - constructor($scope, $log, applicationsService, widgetsService, errorMessageByCode, - ECOMP_URL_REGEX, $window, userProfileService, $cookies, $rootScope) { - - let newWidgetModel = { - name: null, - appId: null, - appName: null, - width: 360, - height: 300, - url: null - }; - - let getAvailableApps = () => { - applicationsService.getAppsForSuperAdminAndAccountAdmin().then(apps => { - this.availableApps=[]; - for(var i=0;i { - confirmBoxService.showInformation('There was a problem retrieving the Widgets. ' + - 'Please try again later.').then(isConfirmed => {}); - $log.error('WidgetDetailsModalCtrl::getAvailableApps error: '+ err); - }); - }; - /**/ - - let init = () => { - this.isSaving = false; - if ($scope.ngDialogData && $scope.ngDialogData.widget) { - $log.debug('WidgetDetailsModalCtrl::getAvailableApps: Edit widget mode for', $scope.ngDialogData.widget); - this.isEditMode = true; - this.widget = _.clone($scope.ngDialogData.widget); - } else { - $log.debug('WidgetDetailsModalCtrl::init: New app mode'); - this.isEditMode = false; - this.widget = _.clone(newWidgetModel); - } - getAvailableApps(); - }; - - this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; - - //This part handles conflict errors (409) - this.conflictMessages = {}; - this.scrollApi = {}; - let handleConflictErrors = err => { - if(!err.data){ - return; - } - if(!err.data.length){ //support objects - err.data = [err.data] - } - _.forEach(err.data, item => { - _.forEach(item.fields, field => { - //set conflict message - this.conflictMessages[field.name] = errorMessageByCode[item.errorCode]; - //set field as invalid - $scope.widgetForm[field.name].$setValidity('conflict', false); - //set watch once to clear error after user correction - watchOnce[field.name](); - }); - }); - this.scrollApi.scrollTop(); - }; - - let resetConflict = fieldName => { - delete this.conflictMessages[fieldName]; - if($scope.widgetForm[fieldName]){ - $scope.widgetForm[fieldName].$setValidity('conflict', true); - } - }; - - let watchOnce = { - name: () => { - let unregisterName = $scope.$watchGroup(['widgetDetails.selectedApp','widgetDetails.widget.name'], (newVal, oldVal) => { - if(newVal.toLowerCase() !== oldVal.toLowerCase()){ - resetConflict('name'); - unregisterName(); - } - }); - }, - url: () => { - let unregisterUrl = $scope.$watch('widgetDetails.widget.url', (newVal, oldVal) => { - if(newVal.toLowerCase() !== oldVal.toLowerCase()) { - resetConflict('url'); - unregisterUrl(); - } - }); - } - }; - //*************************** - - this.updateSelectedApp = () => { - if (!this.selectedApp) { - return; - } - this.widget.appId = this.selectedApp.id; - this.widget.appName = this.selectedApp.name; - }; - - let emptyCookies = () => { - userProfileService.getUserProfile() - .then(profile=> { - $scope.orgUserId = profile.orgUserId; - if ($cookies.getObject($scope.orgUserId + '_widget') != undefined && $cookies.getObject($scope.orgUserId + '_widget') != null) { - $cookies.remove($scope.orgUserId + '_widget'); - } - }).catch(err => { - $log.error('WidgetDetailsModalCtrl::emptyCookies: There was a problem emptying the cookies! No user error presented though.'); - }); - }; - - this.saveChanges = () => { - if($scope.widgetForm.$invalid){ - return; - } - this.isSaving = true; - if(this.isEditMode){ - widgetsService.updateWidget(this.widget.id, this.widget) - .then(() => { - $log.debug('WidgetDetailsModalCtrl::saveChanges: Widget update succeeded!'); - $scope.closeThisDialog(true); - emptyCookies(); - }).catch(err => { - if(err.status === 409){//Conflict - handleConflictErrors(err); - } else { - confirmBoxService.showInformation('There was a problem saving the Widget. ' + - 'Please try again later. Error Status: ' + err.status).then(isConfirmed => {}); - } - $log.error('WidgetDetailsModalCtrl::saveChanges error: ', err); - }).finally(()=>{ - this.isSaving = false; - // for bug in IE 11 - var objOffsetVersion = objAgent.indexOf("MSIE"); - if (objOffsetVersion != -1) { - $log.debug('WidgetDetailsModalCtrl::saveChanges: Browser is IE, forcing Refresh'); - $window.location.reload(); // for bug in IE 11 - } - // for bug in IE 11 - }); - } else { - widgetsService.createWidget(this.widget) - .then(() => { - $log.debug('WidgetDetailsModalCtrl::createWidget: Widget creation succeeded!'); - $scope.closeThisDialog(true); - emptyCookies(); - $rootScope.noWidgets = false; - }).catch(err => { - if(err.status === 409){//Conflict - handleConflictErrors(err); - } else { - confirmBoxService.showInformation('There was a problem creating the Widget. ' + - 'Please try again later. Error Status: ' + err.status).then(isConfirmed => {}); - } - $log.error('WidgetDetailsModalCtrl::createWidget error: ',err); - }).finally(()=>{ - this.isSaving = false; - // for bug in IE 11 - var objOffsetVersion = objAgent.indexOf("MSIE"); - if (objOffsetVersion != -1) { - $log.debug('WidgetDetailsModalCtrl::createWidget: Browser is IE, forcing Refresh'); - $window.location.reload(); // for bug in IE 11 - } - // for bug in IE 11 - }); - } - }; - - init(); - - $scope.$on('$stateChangeStart', e => { - //Disable navigation when modal is opened - e.preventDefault(); - }); - } - } - WidgetDetailsModalCtrl.$inject = ['$scope', '$log', 'applicationsService', 'widgetsService', 'errorMessageByCode', - 'ECOMP_URL_REGEX', '$window','userProfileService','$cookies', '$rootScope']; - angular.module('ecompApp').controller('WidgetDetailsModalCtrl', WidgetDetailsModalCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +/** + * Created by nnaffar on 12/20/15. + */ +'use strict'; +(function () { + class WidgetDetailsModalCtrl { + constructor($scope, $log, applicationsService, widgetsService, errorMessageByCode, + ECOMP_URL_REGEX, $window, userProfileService, $cookies, $rootScope) { + + let newWidgetModel = { + name: null, + appId: null, + appName: null, + width: 360, + height: 300, + url: null + }; + + let getAvailableApps = () => { + applicationsService.getAppsForSuperAdminAndAccountAdmin().then(apps => { + this.availableApps=[]; + for(var i=0;i { + confirmBoxService.showInformation('There was a problem retrieving the Widgets. ' + + 'Please try again later.').then(isConfirmed => {}); + $log.error('WidgetDetailsModalCtrl::getAvailableApps error: '+ err); + }); + }; + /**/ + + let init = () => { + this.isSaving = false; + if ($scope.ngDialogData && $scope.ngDialogData.widget) { + $log.debug('WidgetDetailsModalCtrl::getAvailableApps: Edit widget mode for', $scope.ngDialogData.widget); + this.isEditMode = true; + this.widget = _.clone($scope.ngDialogData.widget); + } else { + $log.debug('WidgetDetailsModalCtrl::init: New app mode'); + this.isEditMode = false; + this.widget = _.clone(newWidgetModel); + } + getAvailableApps(); + }; + + this.ECOMP_URL_REGEX = ECOMP_URL_REGEX; + + //This part handles conflict errors (409) + this.conflictMessages = {}; + this.scrollApi = {}; + let handleConflictErrors = err => { + if(!err.data){ + return; + } + if(!err.data.length){ //support objects + err.data = [err.data] + } + _.forEach(err.data, item => { + _.forEach(item.fields, field => { + //set conflict message + this.conflictMessages[field.name] = errorMessageByCode[item.errorCode]; + //set field as invalid + $scope.widgetForm[field.name].$setValidity('conflict', false); + //set watch once to clear error after user correction + watchOnce[field.name](); + }); + }); + this.scrollApi.scrollTop(); + }; + + let resetConflict = fieldName => { + delete this.conflictMessages[fieldName]; + if($scope.widgetForm[fieldName]){ + $scope.widgetForm[fieldName].$setValidity('conflict', true); + } + }; + + let watchOnce = { + name: () => { + let unregisterName = $scope.$watchGroup(['widgetDetails.selectedApp','widgetDetails.widget.name'], (newVal, oldVal) => { + if(newVal.toLowerCase() !== oldVal.toLowerCase()){ + resetConflict('name'); + unregisterName(); + } + }); + }, + url: () => { + let unregisterUrl = $scope.$watch('widgetDetails.widget.url', (newVal, oldVal) => { + if(newVal.toLowerCase() !== oldVal.toLowerCase()) { + resetConflict('url'); + unregisterUrl(); + } + }); + } + }; + //*************************** + + this.updateSelectedApp = () => { + if (!this.selectedApp) { + return; + } + this.widget.appId = this.selectedApp.id; + this.widget.appName = this.selectedApp.name; + }; + + let emptyCookies = () => { + userProfileService.getUserProfile() + .then(profile=> { + $scope.orgUserId = profile.orgUserId; + if ($cookies.getObject($scope.orgUserId + '_widget') != undefined && $cookies.getObject($scope.orgUserId + '_widget') != null) { + $cookies.remove($scope.orgUserId + '_widget'); + } + }).catch(err => { + $log.error('WidgetDetailsModalCtrl::emptyCookies: There was a problem emptying the cookies! No user error presented though.'); + }); + }; + + this.saveChanges = () => { + if($scope.widgetForm.$invalid){ + return; + } + this.isSaving = true; + if(this.isEditMode){ + widgetsService.updateWidget(this.widget.id, this.widget) + .then(() => { + $log.debug('WidgetDetailsModalCtrl::saveChanges: Widget update succeeded!'); + $scope.closeThisDialog(true); + emptyCookies(); + }).catch(err => { + if(err.status === 409){//Conflict + handleConflictErrors(err); + } else { + confirmBoxService.showInformation('There was a problem saving the Widget. ' + + 'Please try again later. Error Status: ' + err.status).then(isConfirmed => {}); + } + $log.error('WidgetDetailsModalCtrl::saveChanges error: ', err); + }).finally(()=>{ + this.isSaving = false; + // for bug in IE 11 + var objOffsetVersion = objAgent.indexOf("MSIE"); + if (objOffsetVersion != -1) { + $log.debug('WidgetDetailsModalCtrl::saveChanges: Browser is IE, forcing Refresh'); + $window.location.reload(); // for bug in IE 11 + } + // for bug in IE 11 + }); + } else { + widgetsService.createWidget(this.widget) + .then(() => { + $log.debug('WidgetDetailsModalCtrl::createWidget: Widget creation succeeded!'); + $scope.closeThisDialog(true); + emptyCookies(); + $rootScope.noWidgets = false; + }).catch(err => { + if(err.status === 409){//Conflict + handleConflictErrors(err); + } else { + confirmBoxService.showInformation('There was a problem creating the Widget. ' + + 'Please try again later. Error Status: ' + err.status).then(isConfirmed => {}); + } + $log.error('WidgetDetailsModalCtrl::createWidget error: ',err); + }).finally(()=>{ + this.isSaving = false; + // for bug in IE 11 + var objOffsetVersion = objAgent.indexOf("MSIE"); + if (objOffsetVersion != -1) { + $log.debug('WidgetDetailsModalCtrl::createWidget: Browser is IE, forcing Refresh'); + $window.location.reload(); // for bug in IE 11 + } + // for bug in IE 11 + }); + } + }; + + init(); + + $scope.$on('$stateChangeStart', e => { + //Disable navigation when modal is opened + e.preventDefault(); + }); + } + } + WidgetDetailsModalCtrl.$inject = ['$scope', '$log', 'applicationsService', 'widgetsService', 'errorMessageByCode', + 'ECOMP_URL_REGEX', '$window','userProfileService','$cookies', '$rootScope']; + angular.module('ecompApp').controller('WidgetDetailsModalCtrl', WidgetDetailsModalCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.controller.spec.js b/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.controller.spec.js index 1762fadb..927836ae 100644 --- a/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.controller.spec.js @@ -1,154 +1,154 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -// 'use strict'; -// describe('Controller: WidgetDetailsModalCtrl', ()=> { -// /** -// * INITIALIZATION -// */ -// beforeEach(module('testUtils')); -// beforeEach(module('ecompApp')); -// -// let promisesTestUtils; -// //destroy $http default cache before starting to prevent the error 'default cache already exists' -// //_promisesTestUtils_ comes from testUtils for promises resolve/reject -// beforeEach(inject((_CacheFactory_, _promisesTestUtils_)=> { -// _CacheFactory_.destroyAll(); -// promisesTestUtils = _promisesTestUtils_; -// })); -// -// let widgetDetails, scope, $controller, $q, $rootScope, $log, widgetsService, errorMessageByCode, ECOMP_URL_REGEX; -// let deferredAdminApps, deferredUserProfile; -// let applicationsServiceMock, widgetsServiceMock, userProfileServiceMock; -// beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { -// [$controller, $q, $rootScope, $log] = [_$controller_, _$q_, _$rootScope_, _$log_]; -// -// deferredAdminApps = $q.defer(); -// deferredUserProfile = $q.defer(); -// /*applicationsServiceMock = { -// getAppsForSuperAdminAndAccountAdmin: () => { -// var promise = () => {return deferredAdminApps.promise}; -// var cancel = jasmine.createSpy(); -// return { -// promise: promise, -// cancel: cancel -// } -// } -// };*/ -// -// widgetsServiceMock = { -// updateWidget: () => { -// var promise = () => {return deferredAdminApps.promise}; -// var cancel = jasmine.createSpy(); -// return { -// promise: promise, -// cancel: cancel -// } -// }, -// createWidget: () => { -// var promise = () => {return deferredAdminApps.promise}; -// var cancel = jasmine.createSpy(); -// return { -// promise: promise, -// cancel: cancel -// } -// } -// }; -// -// userProfileServiceMock = jasmine.createSpyObj('userProfileServiceMock',['getUserProfile']); -// userProfileServiceMock.getUserProfile.and.returnValue(deferredUserProfile.promise); -// -// applicationsServiceMock = jasmine.createSpyObj('applicationsServiceMock',['getAppsForSuperAdminAndAccountAdmin']); -// applicationsServiceMock.getAppsForSuperAdminAndAccountAdmin.and.returnValue(deferredAdminApps.promise); -// -// })); -// -// beforeEach(()=> { -// errorMessageByCode = []; -// ECOMP_URL_REGEX = ""; -// scope = $rootScope.$new(); -// createController(scope); -// }); -// -// let createController = scopeObj => { -// widgetDetails = $controller('WidgetDetailsModalCtrl', { -// $scope: scope, -// $log: $log, -// applicationsService: applicationsServiceMock, -// widgetsService: widgetsServiceMock, -// errorMessageByCode: errorMessageByCode, -// ECOMP_URL_REGEX: ECOMP_URL_REGEX, -// userProfileService: userProfileServiceMock -// }); -// }; -// -// /** -// * MOCK DATA -// */ -// let newWidgetModel = { -// name: null, -// appId: null, -// appName: null, -// width: 360, -// height: 300, -// url: null -// }; -// let exsistingWidget = { -// name: 'some widget', -// appId: 1, -// appName: 'APP NAME', -// width: 360, -// height: 300, -// url: 'http://a.com' -// }; -// let adminApps = [{id: 1, name: 'a'}, {id: 2, name: 'b'}]; -// -// /** -// * TEST CASES -// */ -// it('should initialize controller with new widget mode when opening the modal without selected widget', ()=> { -// expect(widgetDetails.widget).toEqual(newWidgetModel); -// }); -// -// it('should initialize controller with exsisting widget details when opening the modal with selected widget', ()=> { -// scope.ngDialogData = { -// widget: exsistingWidget -// }; -// createController(scope); -// expect(widgetDetails.widget).toEqual(exsistingWidget); -// }); -// -// it('should populate widget selected app name and id when initializing controller with widget', () =>{ -// deferredAdminApps.resolve(adminApps); -// scope.ngDialogData = { -// widget: exsistingWidget -// }; -// createController(scope); -// scope.$apply(); -// expect(widgetDetails.widget.appId).toEqual(adminApps[0].id); -// expect(widgetDetails.widget.appName).toEqual(adminApps[0].name); -// }); -// -// //TODO: -// //save changes fail - conflict handling -// //save changes success -// -// -// -// }); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +// 'use strict'; +// describe('Controller: WidgetDetailsModalCtrl', ()=> { +// /** +// * INITIALIZATION +// */ +// beforeEach(module('testUtils')); +// beforeEach(module('ecompApp')); +// +// let promisesTestUtils; +// //destroy $http default cache before starting to prevent the error 'default cache already exists' +// //_promisesTestUtils_ comes from testUtils for promises resolve/reject +// beforeEach(inject((_CacheFactory_, _promisesTestUtils_)=> { +// _CacheFactory_.destroyAll(); +// promisesTestUtils = _promisesTestUtils_; +// })); +// +// let widgetDetails, scope, $controller, $q, $rootScope, $log, widgetsService, errorMessageByCode, ECOMP_URL_REGEX; +// let deferredAdminApps, deferredUserProfile; +// let applicationsServiceMock, widgetsServiceMock, userProfileServiceMock; +// beforeEach(inject((_$controller_, _$q_, _$rootScope_, _$log_)=> { +// [$controller, $q, $rootScope, $log] = [_$controller_, _$q_, _$rootScope_, _$log_]; +// +// deferredAdminApps = $q.defer(); +// deferredUserProfile = $q.defer(); +// /*applicationsServiceMock = { +// getAppsForSuperAdminAndAccountAdmin: () => { +// var promise = () => {return deferredAdminApps.promise}; +// var cancel = jasmine.createSpy(); +// return { +// promise: promise, +// cancel: cancel +// } +// } +// };*/ +// +// widgetsServiceMock = { +// updateWidget: () => { +// var promise = () => {return deferredAdminApps.promise}; +// var cancel = jasmine.createSpy(); +// return { +// promise: promise, +// cancel: cancel +// } +// }, +// createWidget: () => { +// var promise = () => {return deferredAdminApps.promise}; +// var cancel = jasmine.createSpy(); +// return { +// promise: promise, +// cancel: cancel +// } +// } +// }; +// +// userProfileServiceMock = jasmine.createSpyObj('userProfileServiceMock',['getUserProfile']); +// userProfileServiceMock.getUserProfile.and.returnValue(deferredUserProfile.promise); +// +// applicationsServiceMock = jasmine.createSpyObj('applicationsServiceMock',['getAppsForSuperAdminAndAccountAdmin']); +// applicationsServiceMock.getAppsForSuperAdminAndAccountAdmin.and.returnValue(deferredAdminApps.promise); +// +// })); +// +// beforeEach(()=> { +// errorMessageByCode = []; +// ECOMP_URL_REGEX = ""; +// scope = $rootScope.$new(); +// createController(scope); +// }); +// +// let createController = scopeObj => { +// widgetDetails = $controller('WidgetDetailsModalCtrl', { +// $scope: scope, +// $log: $log, +// applicationsService: applicationsServiceMock, +// widgetsService: widgetsServiceMock, +// errorMessageByCode: errorMessageByCode, +// ECOMP_URL_REGEX: ECOMP_URL_REGEX, +// userProfileService: userProfileServiceMock +// }); +// }; +// +// /** +// * MOCK DATA +// */ +// let newWidgetModel = { +// name: null, +// appId: null, +// appName: null, +// width: 360, +// height: 300, +// url: null +// }; +// let exsistingWidget = { +// name: 'some widget', +// appId: 1, +// appName: 'APP NAME', +// width: 360, +// height: 300, +// url: 'http://a.com' +// }; +// let adminApps = [{id: 1, name: 'a'}, {id: 2, name: 'b'}]; +// +// /** +// * TEST CASES +// */ +// it('should initialize controller with new widget mode when opening the modal without selected widget', ()=> { +// expect(widgetDetails.widget).toEqual(newWidgetModel); +// }); +// +// it('should initialize controller with exsisting widget details when opening the modal with selected widget', ()=> { +// scope.ngDialogData = { +// widget: exsistingWidget +// }; +// createController(scope); +// expect(widgetDetails.widget).toEqual(exsistingWidget); +// }); +// +// it('should populate widget selected app name and id when initializing controller with widget', () =>{ +// deferredAdminApps.resolve(adminApps); +// scope.ngDialogData = { +// widget: exsistingWidget +// }; +// createController(scope); +// scope.$apply(); +// expect(widgetDetails.widget.appId).toEqual(adminApps[0].id); +// expect(widgetDetails.widget.appName).toEqual(adminApps[0].name); +// }); +// +// //TODO: +// //save changes fail - conflict handling +// //save changes success +// +// +// +// }); diff --git a/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.modal.html b/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.modal.html index 46a5b1c7..0f77ef63 100644 --- a/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.modal.html +++ b/ecomp-portal-FE-common/client/app/views/widgets/widget-details-dialog/widget-details.modal.html @@ -1,152 +1,152 @@ - -
    -
    Widget Details
    - -
    -
    - - -
    -
    Application Name
    -
    - -
    -
    -
    - Application is required -
    -
    -
    -
    -
    Widget Name
    - - -
    - -
    -
    -
    - Widget Name is required - Widget Name must be letters, numbers, or underscore -
    -
    -
    -
    -
    -
    Width
    - - -
    -
    - Widget width is required - Minimum width is 300 -
    -
    -
    -
    -
    Height
    - - -
    -
    - Widget height is required - Minimum height is 200 -
    -
    -
    -
    -
    -
    URL
    - - - - -
    - -
    -
    -
    - Widget URL is required - Incorrect URL pattern -
    - -
    - -
    -
    -
    -
    - -
    Save
    -
    Cancel
    -
    -
    + +
    +
    Widget Details
    + +
    +
    + + +
    +
    Application Name
    +
    + +
    +
    +
    + Application is required +
    +
    +
    +
    +
    Widget Name
    + + +
    + +
    +
    +
    + Widget Name is required + Widget Name must be letters, numbers, or underscore +
    +
    +
    +
    +
    +
    Width
    + + +
    +
    + Widget width is required + Minimum width is 300 +
    +
    +
    +
    +
    Height
    + + +
    +
    + Widget height is required + Minimum height is 200 +
    +
    +
    +
    +
    +
    URL
    + + + + +
    + +
    +
    +
    + Widget URL is required + Incorrect URL pattern +
    + +
    + +
    +
    +
    +
    + +
    Save
    +
    Cancel
    +
    +
    diff --git a/ecomp-portal-FE-common/client/app/views/widgets/widgets.controller.js b/ecomp-portal-FE-common/client/app/views/widgets/widgets.controller.js index e46f1ce5..1998d6d1 100644 --- a/ecomp-portal-FE-common/client/app/views/widgets/widgets.controller.js +++ b/ecomp-portal-FE-common/client/app/views/widgets/widgets.controller.js @@ -1,168 +1,168 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ -'use strict'; -(function () { - class WidgetsCtrl { - constructor($log, applicationsService, widgetsService, ngDialog, confirmBoxService, - userProfileService, $cookies, $scope, $rootScope) { - //$log.info('WidgetsCtrl::init: Starting Up'); - $scope.infoMessage = true; - $rootScope.noWidgets = false; - - let populateAvailableApps = widgets => { - let allPortalsFilterObject = {index: 0, title: 'All applications', value: ''}; - this.availableApps = [allPortalsFilterObject]; - this.filterByApp = this.availableApps[0]; - applicationsService.getAppsForSuperAdminAndAccountAdmin().then(myApps => { - var reSortedApp = myApps.sort(getSortOrder("name")); - var realAppIndex = 1; - for (let i = 1; i <= reSortedApp.length; i++) { - if (!reSortedApp[i-1].restrictedApp) { - $log.debug('WidgetsCtrl::populateAvailableApps: pushing {index: ', realAppIndex, 'title: ', reSortedApp[i - 1].name, - 'value: ', reSortedApp[i - 1].name, '}'); - this.availableApps.push({ - index: realAppIndex, - title: reSortedApp[i - 1].name, - value: reSortedApp[i - 1].name - }) - realAppIndex = realAppIndex + 1; - } - } - }).catch(err => { - $log.error(err); - }); - }; - - let getOnboardingWidgets = () => { - this.isLoadingTable = true; - widgetsService.getManagedWidgets().then(res => { - $log.debug('WidgetsCtrl.getOnboardingWidgets:: ' + JSON.stringify(res)); - // if (JSON.stringify(res) === '[]') { - // confirmBoxService.showInformation('There are currently no Widgets. ').then(isConfirmed => {}); - // } - var reSortedWidget = res.sort(getSortOrder("name")); - this.widgetsList = reSortedWidget; - populateAvailableApps(reSortedWidget); - // $log.info('WidgetsHomeCtrl::getUserWidgets count : ' + $scope.widgetsList.length); - if (Object.keys(res).length === 0 ) { - $rootScope.noWidgets = true; - $scope.isLoadingTable = false; - $log.info('WidgetsHomeCtrl::getUserWidgets: There are no available Widgets'); - } - }).catch(err => { - confirmBoxService.showInformation('There was a problem retrieving the Widgets. ' + - 'Please try again later.').then(isConfirmed => {}); - $log.error('WidgetsCtrl::getOnboardingWidgets error: ' + err); - }).finally(()=> { - this.isLoadingTable = false; - }); - }; - - // Refactor this into a directive - let getSortOrder = (prop) => { - return function(a, b) { - // $log.debug('a = ' + JSON.stringify(a) + "| b = " + JSON.stringify(b)); - if (a[prop].toLowerCase() > b[prop].toLowerCase()) { - return 1; - } else if (a[prop].toLowerCase() < b[prop].toLowerCase()) { - return -1; - } - return 0; - } - } - - $scope.hideMe = function () { - $scope.infoMessage = false; - } - - let init = () => { - this.isLoadingTable = false; - getOnboardingWidgets(); - - /*Table general configuration params*/ - this.searchString = ''; - /*Table data*/ - this.widgetsTableHeaders = [ - {name: 'Widget Name', value: 'name', isSortable: false}, - {name: 'Application', value: 'appName', isSortable: true}, - {name: 'Width', value: 'width', isSortable: false}, - {name: 'Height', value: 'height', isSortable: false} - ]; - this.widgetsList = []; - }; - - this.filterByDropdownValue = item => { - if(this.filterByApp.value === ''){ - return true; - } - return item.appName === this.filterByApp.value; - }; - - this.openWidgetDetailsModal = (selectedWidget) => { - let data = null; - if(selectedWidget){ - if(!selectedWidget.id){ - $log.error('Widget id not found'); - return; - } - data = { - widget: selectedWidget - } - } - ngDialog.open({ - templateUrl: 'app/views/widgets/widget-details-dialog/widget-details.modal.html', - controller: 'WidgetDetailsModalCtrl', - controllerAs: 'widgetDetails', - data: data - }).closePromise.then(needUpdate => { - if(needUpdate.value === true){ - $log.debug('WidgetsCtrl::openWidgetDetailsModal: updating table data...'); - getOnboardingWidgets(); - } - }); - }; - - this.deleteWidget = widget => { - confirmBoxService.deleteItem(widget.name).then(isConfirmed => { - if(isConfirmed){ - if(!widget || !widget.id){ - $log.error('WidgetsCtrl::deleteWidget: No widget or ID... cannot delete'); - return; - } - widgetsService.deleteWidget(widget.id).then(() => { - this.widgetsList.splice(this.widgetsList.indexOf(widget), 1); - }).catch(err => { - $log.error('WidgetsCtrl::deleteWidget error:',err); - confirmBoxService.showInformation('There was a problem deleting the Widget. ' + - 'Please try again later.').then(isConfirmed => {}); - }); - } - }).catch(err => { - $log.error('WidgetsCtrl::deleteWidget error:',err); - }); - }; - - init(); - } - } - WidgetsCtrl.$inject = ['$log', 'applicationsService', 'widgetsService', 'ngDialog', 'confirmBoxService', - 'userProfileService','$cookies', '$scope', '$rootScope']; - angular.module('ecompApp').controller('WidgetsCtrl', WidgetsCtrl); -})(); +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ +'use strict'; +(function () { + class WidgetsCtrl { + constructor($log, applicationsService, widgetsService, ngDialog, confirmBoxService, + userProfileService, $cookies, $scope, $rootScope) { + //$log.info('WidgetsCtrl::init: Starting Up'); + $scope.infoMessage = true; + $rootScope.noWidgets = false; + + let populateAvailableApps = widgets => { + let allPortalsFilterObject = {index: 0, title: 'All applications', value: ''}; + this.availableApps = [allPortalsFilterObject]; + this.filterByApp = this.availableApps[0]; + applicationsService.getAppsForSuperAdminAndAccountAdmin().then(myApps => { + var reSortedApp = myApps.sort(getSortOrder("name")); + var realAppIndex = 1; + for (let i = 1; i <= reSortedApp.length; i++) { + if (!reSortedApp[i-1].restrictedApp) { + $log.debug('WidgetsCtrl::populateAvailableApps: pushing {index: ', realAppIndex, 'title: ', reSortedApp[i - 1].name, + 'value: ', reSortedApp[i - 1].name, '}'); + this.availableApps.push({ + index: realAppIndex, + title: reSortedApp[i - 1].name, + value: reSortedApp[i - 1].name + }) + realAppIndex = realAppIndex + 1; + } + } + }).catch(err => { + $log.error(err); + }); + }; + + let getOnboardingWidgets = () => { + this.isLoadingTable = true; + widgetsService.getManagedWidgets().then(res => { + $log.debug('WidgetsCtrl.getOnboardingWidgets:: ' + JSON.stringify(res)); + // if (JSON.stringify(res) === '[]') { + // confirmBoxService.showInformation('There are currently no Widgets. ').then(isConfirmed => {}); + // } + var reSortedWidget = res.sort(getSortOrder("name")); + this.widgetsList = reSortedWidget; + populateAvailableApps(reSortedWidget); + // $log.info('WidgetsHomeCtrl::getUserWidgets count : ' + $scope.widgetsList.length); + if (Object.keys(res).length === 0 ) { + $rootScope.noWidgets = true; + $scope.isLoadingTable = false; + $log.info('WidgetsHomeCtrl::getUserWidgets: There are no available Widgets'); + } + }).catch(err => { + confirmBoxService.showInformation('There was a problem retrieving the Widgets. ' + + 'Please try again later.').then(isConfirmed => {}); + $log.error('WidgetsCtrl::getOnboardingWidgets error: ' + err); + }).finally(()=> { + this.isLoadingTable = false; + }); + }; + + // Refactor this into a directive + let getSortOrder = (prop) => { + return function(a, b) { + // $log.debug('a = ' + JSON.stringify(a) + "| b = " + JSON.stringify(b)); + if (a[prop].toLowerCase() > b[prop].toLowerCase()) { + return 1; + } else if (a[prop].toLowerCase() < b[prop].toLowerCase()) { + return -1; + } + return 0; + } + } + + $scope.hideMe = function () { + $scope.infoMessage = false; + } + + let init = () => { + this.isLoadingTable = false; + getOnboardingWidgets(); + + /*Table general configuration params*/ + this.searchString = ''; + /*Table data*/ + this.widgetsTableHeaders = [ + {name: 'Widget Name', value: 'name', isSortable: false}, + {name: 'Application', value: 'appName', isSortable: true}, + {name: 'Width', value: 'width', isSortable: false}, + {name: 'Height', value: 'height', isSortable: false} + ]; + this.widgetsList = []; + }; + + this.filterByDropdownValue = item => { + if(this.filterByApp.value === ''){ + return true; + } + return item.appName === this.filterByApp.value; + }; + + this.openWidgetDetailsModal = (selectedWidget) => { + let data = null; + if(selectedWidget){ + if(!selectedWidget.id){ + $log.error('Widget id not found'); + return; + } + data = { + widget: selectedWidget + } + } + ngDialog.open({ + templateUrl: 'app/views/widgets/widget-details-dialog/widget-details.modal.html', + controller: 'WidgetDetailsModalCtrl', + controllerAs: 'widgetDetails', + data: data + }).closePromise.then(needUpdate => { + if(needUpdate.value === true){ + $log.debug('WidgetsCtrl::openWidgetDetailsModal: updating table data...'); + getOnboardingWidgets(); + } + }); + }; + + this.deleteWidget = widget => { + confirmBoxService.deleteItem(widget.name).then(isConfirmed => { + if(isConfirmed){ + if(!widget || !widget.id){ + $log.error('WidgetsCtrl::deleteWidget: No widget or ID... cannot delete'); + return; + } + widgetsService.deleteWidget(widget.id).then(() => { + this.widgetsList.splice(this.widgetsList.indexOf(widget), 1); + }).catch(err => { + $log.error('WidgetsCtrl::deleteWidget error:',err); + confirmBoxService.showInformation('There was a problem deleting the Widget. ' + + 'Please try again later.').then(isConfirmed => {}); + }); + } + }).catch(err => { + $log.error('WidgetsCtrl::deleteWidget error:',err); + }); + }; + + init(); + } + } + WidgetsCtrl.$inject = ['$log', 'applicationsService', 'widgetsService', 'ngDialog', 'confirmBoxService', + 'userProfileService','$cookies', '$scope', '$rootScope']; + angular.module('ecompApp').controller('WidgetsCtrl', WidgetsCtrl); +})(); diff --git a/ecomp-portal-FE-common/client/app/views/widgets/widgets.controller.spec.js b/ecomp-portal-FE-common/client/app/views/widgets/widgets.controller.spec.js index 3841a2b3..32cc3a1f 100644 --- a/ecomp-portal-FE-common/client/app/views/widgets/widgets.controller.spec.js +++ b/ecomp-portal-FE-common/client/app/views/widgets/widgets.controller.spec.js @@ -1,19 +1,19 @@ -/*- - * ================================================================================ - * ECOMP Portal - * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property - * ================================================================================ - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ================================================================================ - */ +/*- + * ================================================================================ + * ECOMP Portal + * ================================================================================ + * Copyright (C) 2017 AT&T Intellectual Property + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ================================================================================ + */ diff --git a/ecomp-portal-FE-common/client/app/views/widgets/widgets.tpl.html b/ecomp-portal-FE-common/client/app/views/widgets/widgets.tpl.html index 8afb8267..9d6f66f8 100644 --- a/ecomp-portal-FE-common/client/app/views/widgets/widgets.tpl.html +++ b/ecomp-portal-FE-common/client/app/views/widgets/widgets.tpl.html @@ -1,81 +1,81 @@ - -
    -
    -
    -
    Widget Onboarding
    -
    -
    -
    -
    -
    - - -
    Add Widget
    -
    -
    - Only widgets for active applications are displayed. - -
    -
    - There are currently no widgets available. -
    - - -
    - - - - - - - - - - - - - - - -
    {{header.name}}URLDelete
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    + +
    +
    +
    +
    Widget Onboarding
    +
    +
    +
    +
    +
    + + +
    Add Widget
    +
    +
    + Only widgets for active applications are displayed. + +
    +
    + There are currently no widgets available. +
    + + +
    + + + + + + + + + + + + + + + +
    {{header.name}}URLDelete
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + +
    diff --git a/ecomp-portal-FE-common/client/bower_components_external/b2b/css/b2b-angular/b2b-angular.css b/ecomp-portal-FE-common/client/bower_components_external/b2b/css/b2b-angular/b2b-angular.css index 32774d62..47181f80 100644 --- a/ecomp-portal-FE-common/client/bower_components_external/b2b/css/b2b-angular/b2b-angular.css +++ b/ecomp-portal-FE-common/client/bower_components_external/b2b/css/b2b-angular/b2b-angular.css @@ -1,11827 +1,11827 @@ -/*! b2b-angular-library - v1.0.1 - Last updated: 2017-03-02. Copyright (c) 2016 AT&T Services, Inc. */ -.b2b-horizontal-table { - border: 1px solid; - width: 651px; } - .b2b-horizontal-table ::-webkit-scrollbar { - height: 10px; } - .b2b-horizontal-table ::-webkit-scrollbar-thumb { - background: #666666; - border-radius: 5px; } - .b2b-horizontal-table .b2b-horizontal-table-inner-container { - width: 650px; - padding-left: 150px; - overflow-x: scroll; } - .b2b-horizontal-table th:first-child { - background-color: #FFFFFF; } - .b2b-horizontal-table td:first-child { - background-color: #FFFFFF; - border-top: 1px solid #cccccc; - border-right: 1px solid #cccccc; - margin-top: -0.5px; } - .b2b-horizontal-table tr th:nth-child(2), .b2b-horizontal-table tr td:nth-child(2) { - border-left: none; } - .b2b-horizontal-table .b2b-horizontal-table-column-info { - padding-top: 16px; - text-align: center; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .btn-arrow:hover, .b2b-horizontal-table .b2b-horizontal-table-arrows .btn-arrow:focus { - text-decoration: none; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .left { - float: left; - margin: 10px; - color: #0568ae; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .left[disabled] { - color: #767676; - cursor: not-allowed; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .right { - float: right; - clear: right; - margin: 10px; - color: #0568ae; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .right[disabled] { - color: #767676; - cursor: not-allowed; } - .b2b-horizontal-table .b2b-horizontal-table-arrows .right.btn-arrow .btn { - margin-right: 0; - margin-left: 10px; } - -@-moz-document url-prefix() { - .b2b-horizontal-table td:first-child { - border-top: none; } } -* { - box-sizing: border-box; } - -:root { - -ms-overflow-style: -ms-autohiding-scrollbar; - overflow-y: scroll; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; - box-sizing: border-box; - font: 0.625pc/1.5 sans-serif; - text-rendering: optimizeLegibility; } - -html { - overflow-y: scroll; - -webkit-overflow-scrolling: touch; - height: 100%; - position: relative; } - -h1, -h2, -h3, -h4, -h5, -p, -blockquote, -figure, -ol, -ul { - margin: 0; - padding: 0; } - -/* a:focus { - outline: thin dotted #191919; -} */ -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: top; } - -sup { - top: .75em; - display: inline-block; } - -sub { - bottom: -0.25em; } - -img { - max-width: 100%; - height: auto; - vertical-align: middle; - border: 0; - -ms-interpolation-mode: bicubic; } - -.img-no-rwd { - max-width: inherit !important; } - -svg { - display: inline-block; } - -.responsive-img { - width: 100%; - height: auto; } - -button, -input, -select, -textarea { - margin: 0; - font-size: 100%; - vertical-align: middle; } - -::-moz-focus-inner { - padding: 0; - border: 0; } - -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - appearance: button; - cursor: pointer; } - -label, -select, -button, -input[type="button"], -input[type="reset"], -input[type="submit"], -input[type="radio"], -input[type="checkbox"] { - cursor: pointer; } - -input[type=search] { - -webkit-appearance: textfield; } - -input[type=search]:-webkit-search-cancel-button, -input[type=search]:-webkit-search-decoration { - -webkit-appearance: none; } - -textarea { - overflow: auto; - vertical-align: top; - resize: none; } - -select { - -moz-appearance: none; - -webkit-appearance: none; } - -[aria-busy=true] { - cursor: progress; } - -[aria-controls] { - cursor: pointer; } - -body { - background-color: #ffffff; - color: #191919; - font-family: "Omnes-ECOMP-W02", Arial; -/* font-size: 1.6rem; - line-height: 2rem;*/ - margin: 0; - position: relative; - width: 100%; - -moz-osx-font-smoothing: grayscale; - -webkit-font-smoothing: antialiased; } - -small { - font-size: 1.6rem; } - -.container { - margin: 0 auto; - padding: 0; } - -.tooltip { - display: inline-block; - height: 20px; - margin: 1px 0 0 7px; - vertical-align: middle; } - -.tooltip-wrapper { - display: none; } - -@font-face { - font-family: "Omnes-ECOMP-W02"; - src: url("fonts/Omnes_ATTW02.eot"); - src: url("fonts/Omnes_ATTW02.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02.woff") format("woff"), url("fonts/Omnes_ATTW02.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Medium"; - src: url("fonts/Omnes_ATTW02Medium.eot"); - src: url("fonts/Omnes_ATTW02Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Medium.woff") format("woff"), url("fonts/Omnes_ATTW02Medium.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Italic"; - src: url("fonts/Omnes_ATTW02Italic.eot"); - src: url("fonts/Omnes_ATTW02Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Italic.woff") format("woff"), url("fonts/Omnes_ATTW02Italic.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Light"; - src: url("fonts/Omnes_ATTW02Light.eot"); - src: url("fonts/Omnes_ATTW02Light.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Light.woff") format("woff"), url("fonts/Omnes_ATTW02Light.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Bold"; - src: url("fonts/Omnes_ATTW02Bold.eot"); - src: url("fonts/Omnes_ATTW02Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Bold.woff") format("woff"), url("fonts/Omnes_ATTW02Bold.woff2") format("woff2"), url("fonts/Omnes_ATTW02Bold.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Light-Italic"; - src: url("fonts/Omnes_ATTW02LightItalic.eot"); - src: url("fonts/Omnes_ATTW02LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02LightItalic.woff") format("woff"), url("fonts/Omnes_ATTW02LightItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02LightItalic.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Medium-Italic"; - src: url("fonts/Omnes_ATTW02MediumItalic.eot"); - src: url("fonts/Omnes_ATTW02MediumItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02MediumItalic.woff") format("woff"), url("fonts/Omnes_ATTW02MediumItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02MediumItalic.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Bold-Italic"; - src: url("fonts/Omnes_ATTW02BoldItalic.eot"); - src: url("fonts/Omnes_ATTW02BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02BoldItalic.woff") format("woff"), url("fonts/Omnes_ATTW02BoldItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02BoldItalic.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -/* TODO: Build a reference page for these classes */ -.font-regular { - font-family: "Omnes-ECOMP-W02", Arial !important; } - -.font-light { - font-family: "Omnes-ECOMP-W02-Light", Arial !important; } - -.font-italic { - font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } - -.font-light-italic { - font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } - -.font-medium { - font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } - -.font-medium-italic { - font-family: "Omnes-ECOMP-W02-Medium-Italic", Arial !important; } - -.font-reset { - font-style: normal; - font-variant: normal; - font-weight: normal; - text-transform: none; } - -.visible-phone { - display: none !important; } - -.visible-tablet { - display: none !important; } - -.hidden-desktop { - display: none !important; } - -.visible-desktop { - display: inherit !important; } - -.row, -.row-nowrap { - margin-left: 0; } - -.row:before, -.row-nowrap:before, -.row:after, -.row-nowrap:after { - display: table; - content: ""; - line-height: 0; } - -.row:after, -.row-nowrap:after { - clear: both; } - -.row:before, -.row-nowrap:before, -.row:after, -.row-nowrap:after { - display: table; - content: ""; - line-height: 0; } - -.row:after, -.row-nowrap:after { - clear: both; } - -.row, -.row-nowrap { - display: flex; } - -.row > [class*="span"], -.row-nowrap > [class*="span"] { - float: left; - margin-right: 14px; - margin-right: 1.40845%\9; } - -.row > [class*="span"]:last-child, -.row-nowrap > [class*="span"]:last-child { - margin-right: 0; } - -.row > [class*="span"].centered, -.row-nowrap > [class*="span"].centered { - margin-left: auto !important; - margin-right: auto !important; } - -.row.no-flex, -.row-nowrap.no-flex { - display: block; } - -.row.no-flex > [class*="span"], -.row-nowrap.no-flex > [class*="span"] { - margin-right: 1.408450704225352%; } - -.row.no-flex > [class*="span"]:last-child, -.row-nowrap.no-flex > [class*="span"]:last-child { - margin-right: 0; } - -.row.flex-justify, -.row-nowrap.flex-justify { - justify-content: space-between; } - -.row.flex-justify > [class*="span"], -.row-nowrap.flex-justify > [class*="span"] { - flex: 1 1 0; } - -.row.flex-justify > .flex-col, -.row-nowrap.flex-justify > .flex-col { - margin-right: 14px; - margin-right: 1.40845%\9; } - -.row.flex-wrap, -.row-nowrap.flex-wrap { - flex-wrap: wrap; } - -.align-items-top { - align-items: flex-start; } - -.align-items-center { - align-items: center; } - -.align-items-bottom { - align-items: flex-end; } - -.align-self-top { - align-self: flex-start; } - -.align-self-center { - align-self: center; } - -.align-self-bottom { - align-self: flex-end; } - -.row .fixed-230 { - flex: 0; - display: block; - width: 230px; - vertical-align: top; - min-width: 230px; - background-color: #efefef; } - -.row .fluid-space { - flex: 1 1 0; - display: block; - vertical-align: top; - padding-left: 0; - padding-right: 20px; - width: 100%; } - -.row .fixed-230 + .fluid-space { - padding-left: 20px; - padding-right: 20px; } - -.row .fluid-space:last-child { - padding-right: 0; } - -.span1 { - width: 7.042253521126761%; } - -.span2 { - width: 15.49295774647887%; } - -.span3 { - width: 23.94366197183099%; } - -.span4 { - width: 32.3943661971831%; } - -.span5 { - width: 40.84507042253521%; } - -.span6 { - width: 49.29577464788733%; } - -.span7 { - width: 57.74647887323944%; } - -.span8 { - width: 66.19718309859155%; } - -.span9 { - width: 74.64788732394367%; } - -.span10 { - width: 83.09859154929578%; } - -.span11 { - width: 91.54929577464789%; } - -.span12 { - width: 100%; } - -.offset1 { - margin-left: 8.450704225352113%; } - -.offset2 { - margin-left: 16.90140845070423%; } - -.offset3 { - margin-left: 25.35211267605634%; } - -.offset4 { - margin-left: 33.8028169%; } - -.offset5 { - margin-left: 42.25352113%; } - -.offset6 { - margin-left: 50.70422535%; } - -.offset7 { - margin-left: 59.15492958%; } - -.offset8 { - margin-left: 67.6056338%; } - -.offset9 { - margin-left: 76.05633803%; } - -.offset10 { - margin-left: 84.50704225%; } - -.offset11 { - margin-left: 92.95774648%; } - -.align-center { - margin: 0 auto; - text-align: center; } - -[class*="span"].align-center { - margin: 0 auto !important; - float: none; } - -.align-left .container { - padding-left: 0 !important; - margin: 0 !important; } - -/* BEGIN RESPONSIVE-4.LESS ************** */ -@media (min-width: 1025px) { - .row > [class*="span"], - .row-nowrap > [class*="span"] { - margin-right: 20px; - margin-right: 1.487301587301587%\9; } - .container { - padding-left: 20px; - padding-right: 20px; - max-width: 1260px; } - /* 1col = 6.878306878306879 */ - /* 1colgutter = 1.587301587301587 */ - .span0 { - display: none; } - .span1 { - width: 6.878306878306879%; } - .span2 { - width: 15.34391534391534%; } - .span3 { - width: 23.80952380952381%; } - .span4 { - width: 32.27513227513228%; } - .span5 { - width: 40.74074074074074%; } - .span6 { - width: 49.20634920634921%; } - .span7 { - width: 57.67195767195767%; } - .span8 { - width: 66.13756613756614%; } - .span9 { - width: 74.60317460317461%; } - .span10 { - width: 83.06878306878308%; } - .span11 { - width: 91.53439153439154%; } - .span12 { - width: 100%; } - .offset1 { - margin-left: 8.465608465608466%; } - .offset2 { - margin-left: 16.93121693121693%; } - .offset3 { - margin-left: 25.3968253968254%; } - .offset4 { - margin-left: 33.86243386%; } - .offset5 { - margin-left: 42.32804233%; } - .offset6 { - margin-left: 50.79365079%; } - .offset7 { - margin-left: 59.25925926%; } - .offset8 { - margin-left: 67.72486772%; } - .offset9 { - margin-left: 76.19047619%; } - .offset10 { - margin-left: 84.65608466%; } - .offset11 { - margin-left: 93.12169312%; } - .tooltip-size-control { - position: relative; - width: 400px; } - .thumbnails > li { - margin-left: 1.40845070422535%; } - .row .thumbnails { - margin-left: 0; } } - -/* END RESPONSIVE-4.LESS ****************** */ -/* BEGIN RESPONSIVE-3.LESS ******************* */ -@media (min-width: 768px) and (max-width: 1024px) { - .hidden-desktop { - display: inherit !important; } - .visible-desktop { - display: none !important; } - .visible-tablet { - display: inherit !important; } - .hidden-tablet { - display: none !important; } - .container { - width: 100%; - margin: 0 auto; - padding-left: 20px; - padding-right: 20px; } - .span0-md { - display: none; } - .span1-md { - width: 7.042253521126761%; } - .span2-md { - width: 15.49295774647887%; } - .span3-md { - width: 23.94366197183099%; } - .span4-md { - width: 32.3943661971831%; } - .span5-md { - width: 40.84507042253521%; } - .span6-md { - width: 49.29577464788733%; } - .span7-md { - width: 57.74647887323944%; } - .span8-md { - width: 66.19718309859155%; } - .span9-md { - width: 74.64788732394367%; } - .span10-md { - width: 83.09859154929578%; } - .span11-md { - width: 91.54929577464789%; } - .span12-md { - width: 100%; } - .offset1-md { - margin-left: 8.450704225352113%; } - .offset2-md { - margin-left: 16.90140845070423%; } - .offset3-md { - margin-left: 25.35211267605634%; } - .offset4-md { - margin-left: 33.8028169%; } - .offset5-md { - margin-left: 42.25352113%; } - .offset6-md { - margin-left: 50.70422535%; } - .offset7-md { - margin-left: 59.15492958%; } - .offset8-md { - margin-left: 67.6056338%; } - .offset9-md { - margin-left: 76.05633803%; } - .offset10-md { - margin-left: 84.50704225%; } - .offset11-md { - margin-left: 92.95774648%; } - .tooltip-size-control { - position: relative; - width: 300px; } } - -/* END RESPONSIVE-3.LESS ******************* */ -/* BEGIN RESPONSIVE-2.LESS *************** */ -@media (max-width: 767px) { - .hidden-desktop { - display: inherit !important; } - .visible-desktop { - display: none !important; } - .visible-phone { - display: inherit !important; } - .visible-tablet { - display: inherit !important; } - .hidden-phone { - display: none !important; } - .hidden-tablet { - display: none !important; } - .container { - width: auto; - padding-left: 15px; - padding-right: 15px; } - /*.row{ display:block; }*/ - .row > [class*="span"] { - float: none; - margin-left: 0; - margin-right: 0; - width: 100%; } - .row { - display: block; } - .row.flex > .flex-col, - .row-nowrap.flex > .flex-col { - margin-right: 0; } - .row .fixed-230 { - display: block; - width: 100%; } - .row .fluid-space { - display: block; - padding-left: 0; - padding-right: 0; - width: auto; } - .row .fluid-space + .fixed-230 { - padding-left: 0; } - .row .fluid-space:last-child { - padding-right: 0; } - .span0-sm { - display: none; } - .span1-sm { - width: 7.042253521126761%; } - .span2-sm { - width: 15.49295774647887%; } - .span3-sm { - width: 23.94366197183099%; } - .span4-sm { - width: 32.3943661971831%; } - .span5-sm { - width: 40.84507042253521%; } - .span6-sm { - width: 49.29577464788733%; } - .span7-sm { - width: 57.74647887323944%; } - .span8-sm { - width: 66.19718309859155%; } - .span9-sm { - width: 74.64788732394367%; } - .span10-sm { - width: 83.09859154929578%; } - .span11-sm { - width: 91.54929577464789%; } - .span12-sm { - width: 100%; } - .offset1-sm { - margin-left: 8.450704225352113%; } - .offset2-sm { - margin-left: 16.90140845070423%; } - .offset3-sm { - margin-left: 25.35211267605634%; } - .offset4-sm { - margin-left: 33.8028169%; } - .offset5-sm { - margin-left: 42.25352113%; } - .offset6-sm { - margin-left: 50.70422535%; } - .offset7-sm { - margin-left: 59.15492958%; } - .offset8-sm { - margin-left: 67.6056338%; } - .offset9-sm { - margin-left: 76.05633803%; } - .offset10-sm { - margin-left: 84.50704225%; } - .offset11-sm { - margin-left: 92.95774648%; } - input { - padding: 8px 15px 8px 15px; } - .field-group input.input-emphasized[type="search"] + .reset-field:after { - top: 14px; } - .field-group input.input-emphasized[type="search"] + .reset-field { - height: 46px; - top: 1px; } - .marquee { - margin-bottom: 30px; } - .marquee .blur-overlay { - border-radius: 0; - position: absolute; - bottom: 0; - left: 0; - width: 100%; - margin: 0; - padding: 34px 15px 30px; } - .marquee + div { - margin-top: 30px; } - .marquee h1 { - font-size: 1.8rem; - letter-spacing: -0.035px; } - .marquee .lead { - font-size: 3.0rem; - line-height: 3.6rem; - margin-bottom: 0; } - .marquee p:not(.lead) { - font-family: "Omnes-ECOMP-W02-Light" , Arial; - font-size: 1.8rem; - margin-bottom: 0; } - .marquee .btn-fullwidth { - margin-top: 10px; - width: 100%; - float: none; } - .tooltip-size-control { - width: 100%; } - .table-wrapper, - .accordion-table-layout { - margin-left: -15px; - margin-right: -15px; } - .table-wrapper caption { - padding-left: 15px; } } - -@media (max-width: 480px) { - .span1-xsm { - width: 7.042253521126761%; } - .span2-xsm { - width: 15.49295774647887%; } - .span3-xsm { - width: 23.94366197183099%; } - .span4-xsm { - width: 32.3943661971831%; } - .span5-xsm { - width: 40.84507042253521%; } - .span6-xsm { - width: 49.29577464788733%; } - .span7-xsm { - width: 57.74647887323944%; } - .span8-xsm { - width: 66.19718309859155%; } - .span9-xsm { - width: 74.64788732394367%; } - .span10-xsm { - width: 83.09859154929578%; } - .span11-xsm { - width: 91.54929577464789%; } - .span12-xsm { - width: 100%; } - .offset1-xsm { - margin-left: 8.450704225352113%; } - .offset2-xsm { - margin-left: 16.90140845070423%; } - .offset3-xsm { - margin-left: 25.35211267605634%; } - .offset4-xsm { - margin-left: 33.8028169%; } - .offset5-xsm { - margin-left: 42.25352113%; } - .offset6-xsm { - margin-left: 50.70422535%; } - .offset7-xsm { - margin-left: 59.15492958%; } - .offset8-xsm { - margin-left: 67.6056338%; } - .offset9-xsm { - margin-left: 76.05633803%; } - .offset10-xsm { - margin-left: 84.50704225%; } - .offset11-xsm { - margin-left: 92.95774648%; } } - -/* END RESPONSIVE-2.LESS ******************* */ -/* BEGIN RESPONSIVE-1.LESS ************** */ -.xxxxxxxx-begin-responsive-480px.less { - /* placeholder */ } - -@media (max-width: 480px) { - .hidden-desktop { - display: inherit !important; } - .hidden-tablet { - display: inherit !important; } - .hidden-phone { - display: none !important; } - .visible-desktop { - display: none !important; } - .visible-tablet { - display: none !important; } - .visible-phone { - display: inherit !important; } - .container { - width: auto; - padding-left: 15px; - padding-right: 15px; } } - -@font-face { - font-family: 'icoPrimary'; - src: url("fonts/icons/icoPrimary.eot?timestamp=@@timestamp"); - src: url("fonts/icons/icoPrimary.eot?timestamp=@@timestamp#iefix") format("embedded-opentype"), url("data:font/woff2; charset=utf-8;base64,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") format("woff2"), url("data:application/font-woff; charset=utf-8;base64,d09GRgABAAAAACJAAAsAAAAAIfQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgEAQFaGNtYXAAAAFoAAAAfAAAAHy9F7zuZ2FzcAAAAeQAAAAIAAAACAAAABBnbHlmAAAB7AAAHRgAAB0Yg9YlNWhlYWQAAB8EAAAANgAAADYLSS2jaGhlYQAAHzwAAAAkAAAAJAbOAvZobXR4AAAfYAAAAKAAAACglK4SEGxvY2EAACAAAAAAUgAAAFKIhIEEbWF4cAAAIFQAAAAgAAAAIAA4ANNuYW1lAAAgdAAAAaoAAAGq0IdVx3Bvc3QAACIgAAAAIAAAACAAAwAAAAMD6QGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6jwCzP7NATMCzAEzAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAGAAAAAUABAAAwAEAAEAIOkb6SLpJekn6WzqPP/9//8AAAAAACDpAOkf6SXpJ+ls6jz//f//AAH/4xcEFwEW/xb+FroV6wADAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAYACf7JA/0CtwASAC0ATABzAJgArQAAFx4DMzI+AjcOAyMiJicFMj4CNz4BNz4BNw4DIyIuAiceAzMnIi4CJxQWFx4BFx4DMzI+Ajc+AT0BDgMjAQ4BBwYWFx4DMzI+Ajc2NCcuAScWDgIjIi4CNT4BNTIwIyUeARUUDgIjIiY1NDY3DgEHDgEVFB4CMzI+AjU0JicuAScnLgEjIgYHDgEVFBYzMj4CNTYmJ8ogSE5ULDBbVE0hDzlUbkN1mSgBWC9gWk8dEh4PCRAGHGuLpFU8eWxXGRddf55YiGGQYzYHBAQCDQsXU3mhZYqwaC0GCQsJda3SZv6cCxYEAgMCDEmExolTkXBJCwQEBxELAXarvEZKhmQ7AgQCAgMXAgE+c6VmmFcJCxMjEQcHVIeqVluGWCoPEw0ZDUo6gElJgzoRFJCEQXFUMAIPD84ZJxsOESEuHQodGxQqGBoNGiYaDCYYDiEPKUQvGhMmOCYzTjQb3ig8Rx8VMBMJGA0YNy8eJzY2DxVGIh0lUEMsAaIVQRMJCgcYPDMjFCc5JQ0fExUwEzFQOB8cMEIlCxEGogIFBBU2LyBWJQwaDRMlFQgQBCY+LBgbKzYbExsWDRYKNiIlJSQJEgogORIcJBIGDggAAAEA+gCaAw0A5gANAAAlISImNTQ2MyEyFhUUBgLg/kAOGBURAcYPGBqaFRERFRURERUAAAACAAD+wAQAAsAAEwAnAAABIi4CNTQ+AjMyHgIVFA4CAyIOAhUUHgIzMj4CNTQuAgIAarqLUVGLumpquotRUYu6al+of0pKfqlfX6h/Skp+qf7AUYu6amq6i1FRi7pqarqLUQPQSn6pX1+of0pKf6hfX6h/SgAAAAADAEn/UgO3Ai4AEAAgADAAAAEhIgYdARQWMyEyNj0BNCYjESEiBh0BFBYzITI2PQE0JgMhIgYdARQWMyEyNj0BNCYDkvzcDxYWDwMkDxYWD/zcDxYWDwMkDxYWD/zcDxYWDwMkDxYWAi4WD0kPFhYPSQ8W/tsVD0oPFRUPSg8V/twWD0kPFhYPSQ8WAAQAqv8VA1YCawAPAB0AKgA7AAABISIGFREUFjMhMjY1ETQmAyMiJjU0NjsBMhYVFAY3DgEHBiY3PgE3NhYHNxQGIyEiJjURNDYzITIWFREDIv28Fh4eFgJEFh4ew0QJDQ0JRAkMDIQCEgwWHwQDEgwWHwUbDAj97ggLCwgCEggMAmseFf0QFR4eFQLwFR785QwJCQ0NCQkMDQwSAgQfFQwSAwQfFmwIDAwIAlYICwsI/aoAAAYAnP8VA2QCawAQACEASABUAGEAbwAAATQmIyEiBhURFBYzITI2NREDISImNQM0NjMhMhYVERQGIwMRFAYjISImNTQ2MyEyNjURNCYjISIGFREUBiMiJjURNDYzITIWFQMiBhUUFjMyNjU0JgciJjU0NjMyFhUUBiMnFAYrASImNTQ2OwEyFgNkHRT9mhQdHRQCZhQdMf2aCxABEQsCZgwQEAwYEg3+CAUGBgUB+AQFBQT+CAQFBwQFBhINAfgNElERGRkREhgYEggNDQgJDAwJTQYEVgQGBgRWBAYCOxQcHBT9ChQcHBQC9vzvEAsC9gsQEAv9CgsQAtT92Q0RBgUEBgUEAicDBQUD/pQEBwcEAWwMEhIM/ZwYEREYGBERGD0MCAgMDAgIDBQEBgYEBQYGAAAAAgBj/24DnQIBACIAMwAAASEiBhURFBYzIRUjIgYVFBYzITI2NTQmKwE1ITI2NRE0JiMDFAYjISImNRE0NjMhMhYVEQNp/S4WHh4WAU2IDBAQDAFIDBAQDIgBTRYeHhYFDAn9YgkMDAkCngkMAgEeFf5IFh47EQwLERELDBE7HhYBuBUe/i8JDAwJAYQIDAwI/nwAAAMAdf9/A4sCGgAiADIAWQAAASEiBhURFBYzIRUjIgYVFBYzITI2NTQmKwE1ITI2NRE0JiMTFAYjISImNRE0NjMhMhYVBxEUBiMhIiY1NDYzITI2NRE0JiMhIgYVERQGIyImNRE0NjMhMhYVA2X9NhAWFhABWpkEBwcEAUgEBwcEmQFaEBYWEBEKB/02BwoKBwLKBwonDgr9yQQHBwQCNwECAgH9kgECBgUEBg4KAm4KDgIaFw/+CRAWQgcEBAcHBAQHQhYQAfcPF/3jBwkJBwH3BwkJBzD+bgoOBgUEBgIBAZIBAgIB/vYEBwcEAQoKDg4KAAADAQT/DwL8AngAHAAqADsAAAEuASsBIgYHDgEVERQWFx4BOwEyNjc+ATURNCYnAyMiJjU0NjsBMhYVFAY3FAYjISImNRE0NjMhMhYVEQKrJHUPBg91JCgpKSgkdQ8HDnUkKCkpKIBWDRISDVYNEhKLDAj+oggMDAgBXggMAnMDAgIDBCsm/UolKwQDAgIDBCslArYmKwT82BINDRITDA0ShwgMDAgCFgkMDAn96gAAAAIAAP7ABAACwAATACcAAAEiLgI1ND4CMzIeAhUUDgIDIg4CFRQeAjMyPgI1NC4CAgBquotRUYu6amq6i1FRi7pqUIxoPD1ojE9QjGg8PGiM/sBRi7pqarqLUVGLumpquotRA4A8aIxQUIxoPD1ojE9QjGg8AAAAAAEAAP7ABAACwAAoAAABBx4BFRQOAiMiLgI1ND4CMzUiDgIVFB4CMzI+AjU0LgInA2lYMzw9aIxPT4xoPT1ojE9quotRUYu6amq6i1EVJzgjAilbM4xPT4xoPT1ojE9PjGg9gFGLumpquotRUYu6ajVlXFEiAAAAAAIA+v+6Aw0BxgANABsAAAUiJjURNDYzMhYVERQGNyEiJjU0NjMhMhYVFAYCAA4YFRERFRjS/kAOGBURAcYPGBpGFREBwA4YFRH+Og8R4BURERUVEREVAAAFAQD/DAMAAnsAHAA6AEkAVwB+AAABLgEjIgYHDgEVERQWFx4BMzoBMTI2Nz4BNRE0JhMUBgcOASMiJicuATURNDY3PgEzOgExMhYXHgEVEScjIgYVFBY7ATI2NTQmIxUjIiY1NDY7ATIWFRQGExEUBiMhIiY1NDYzITI2NRE0JiMhIgYVERQGIyImNRE0NjMhMhYVAqsngAQEgCcqKysqJHMQAgIEgCcqKysVHyIngQEBgSciHx8iI3YNAgEBgSciH79WERgYEVYRGBgRVggMDAhWCAwMlRMN/rAFBgYFAVAFBgYF/rAFBgYEBQYTDQFQDRMCdgQBAQQDLSj9SictBAMBAQMELScCtigt/PUfIAMEAQEEAyAfArYfIQMEAQEEAyEf/UorGBERGRkRERg+DAkIDAwICQwCnf3hDhIGBQQGBgUCHwQGBgT+fwQGBgQBgQ0SEg0AAAMAVf8VA6sCawAUAC4APwAAJRQOAiMiLgI1ND4CMzIeAhUFMzQ2NTQmIyIGFRQWNz4BMzIWFRQGBwYWMQcUFjsBMjY9ATQmKwEiBh0BA6tDdJxYWJx0Q0N0nFhYnHRD/iM+lFNKU040AQUwNigtgQgBAQ0VFAoUFhYUChQVwFicdENDdJxYWJx0Q0N0nFhoTzBdOEhVIh8LAiM8JiA7KmgHAnEUFBQUCRQWFhQJAAAAAwBV/xUDqwJrABQAKwA7AAAlFA4CIyIuAjU0PgIzMh4CFSUTHgE7ATI2NxM2JicuASsBIgYHDgEXEzQmKwEiBh0BFBY7ATI2NQOrQ3ScWFicdENDdJxYWJx0Q/4cGAEKEQkRCwIXAgQHBxMMFAwTBwcEAnQcGgsZHBwZCxocwFicdENDdJxYWJx0Q0N0nFjg/vQIGxkLAQoPFwcIBwcIBxcO/kQZHBwZChkcHBkAAAACARr/YQLmAh8AIQAyAAAlPgM1NCYjIgYHBiY1ND4CMzIWFRQOAgcOASMiJjcTMzI2PQE0JisBIgYdARQWMwGvATlENzQxQ0AFAVwcOVc7bHk8ST8CAx4XGiECMRAhJCMiECEhIx91QkAlICImK04rAxA2GzoxIGVSQD8sLi8ODRgY/uwhIA0iISIhDSAhAAACANL/hAMrAesAEQAjAAAXIiYnJjQ3ATYyFxYUBwEOASMhIiYnASY0NzYyFwEWFAcOASP3ChIJDg4CDw8qEQ8P/fEIEgsCDwsSCP3xDg4PKhECDw8PCRIKfAgGDyoRAg8PDw8qEf30CAkIBgIPDyoRDw/98Q4qEgYIAAAAAgAA/sAEAALAABMAJwAAASIuAjU0PgIzMh4CFRQOAgMiDgIVFB4CMzI+AjU0LgICAGq6i1FRi7pqarqLUVGLumpfqH9KSn6pX1+of0pKfqn+wFGLumpquotRUYu6amq6i1ED0Ep+qV9fqH9KSn+oX1+of0oAAAAAAQDV/4oDLgHcABYAAAkBDgEjIiYvASY2Nz4BHwEBPgEXHgEHAy7+yQgcDw4ZCb8LAw0NJg2jASILJhAQCAoBnP4MDhANC/AOJgwMAQySAZAPBwsKJhAAAAMAaP9SA5kCLgAuAEUAVQAABRQGBw4BIyEiJicuATU0MDE8ATE0NjU+ATcBPgEzMTIWFwEeARcUFhUwFhU4ARUBFx4BOwEyNj8BNiYnLgErASIGBw4BFxM0JisBIgYdARQWOwEyNjUDmRANDiUU/ZcVJQ4NDwECCAYBNQ4rGRkrDgE1BggCAQH+PRIBBwwHDQcCEQIEBQQOCQ8JDgUFBAJWFRMIExQUEwgTFVwRIQsLCgoLCyERAQEBBAgEChUKAhcZHh4Z/ekKFQoECAQBAQEBkcUGFBMIxAoRBgUGBgUGEAv+uRMVFRMHExQUEwAAAAEAav+DA6EB/QBIAAABIS4BJy4BKwEiBhUUFjsBEhY5AR4BFw4BFRQWMzI2NTQmJzMUBhUUFjMyNjU0JicmIisBIiYnITgBMzgBMTI2PwI0NjU0JiMDcf3hBQkEAg8KnwsREQuIPhcJJR4DBCodHSoBAYwBKR4dKiYaAgQB/zQsCQGTAREaBD4BAR0TAZoVJxEJDREMCxH+7mQmMw0HDwgdKiodBAcDAwcEHSoqHRwoAgEhHRQQ6QUCBAIUHQAAAAQAXf9zA6QB5wAuAGsAkwCuAAAlMCIxISImNTQ2MzEFMDI5ATI2PwEwNDU0JiMhIiY1NDYzMSEyFhUcARUPAQ4BIxcUBiMiJjU8ATcjHAEVFAYjIiY1NDY3LgEnMCYDIyImNTQ2OwEyFhcUHgIVHgEXPgEzMhYXMz4BMzIWFSUxLgEnOAExLgEnLgEjIgYHMQ4BBzgBMQ4BBzEOARUUFjMyNjU0JjUFNCYjIgYHMQ4BBzgBMQ4BBzEUBhUUFjMyNjUDNgH+bwQHBwQBkQEKDgI/EAv96wQGBgQCFRQcAT4EGhElMCEiMAGYMCEiMAYGExoIF0GWBAYGBJ4EBgEcIhwHFhALHREZKQmjCigZIjD+sAEBAQEDAQgbEAsUCAIEAgEDAgMFJBkZIwEBOyQYERoIAgMBAQEBASQZGCRLBwQFBgELCe0DAQsQBwQEBx0UAgQCBekQFIchMDAhAwUDAwUDITAwIQwVCRAwIGUBHwYFBAYEBAJ6k3sCHSkOCwwcFhYcMCILAwUDAwUCDRAIBwIDAgMEAgcPCBgkJBgDBQMLGSQQDQIFAwMFAwMFAxgkJBgAAAABADP/MQPNAlUANQAAJTQmIyE1NC4CIyIOAh0BOAExFBYzMjY1OAE5ATU0NjMyFh0BIyIGFTERMRQWMyEyNjUxEQPNIBb+eiZBVzEyV0ElHRUUHVI6OVILFyAgFwH0FyChFh+YMFQ/JCQ/VDAdFR0dFR03TU03mB8W/sQWHh4WATwAAAAEAF//SgOhAjYADQAbAG4AgAAABSEiJjU0NjMhMhYVFAYnISImNTQ2MyEyFhUUBjc0JiMhNTQuAiMiDgIdARQWFx4BMzI2PQE0NjMyFh0BFBYzMjY9ATQmIyIGHQEUBiMiJicuAT0BND4CMzIeAh0BIyIGBxEeATMhMjY3MxEDFAYjISImNRE0NjMhMhYVERUDMf7HBQYGBQE5BAcHBP7HBQYGBQE5BAcHbCIX/rQjPFEuLlI8IwgIBxIKEyBHMjJHBgQFBlM7O1QVCAYLBAQFIDdJKilKNiBHFyEBASEXAagVHwQBFRUP/lgOFRUOAagPFT8GBQQGBgQFBnYHBAQHBwQEB1YWIZwsTjoiIjpOLEILEwcFBxkYQjBFRTBCBAYGBEI5UVE5QhALAwQDCwZCKEY0Hx80RiicIRf+9RcgGhIBF/70DhQUDgELDhQUDv79CAAAAgDP/zEDMQJVACAAKgAAJTQmKwE1NC4CIyIOAh0BIyIGFTERMRQWMyEyNjUxESU0NjMyFh0BITUDMSAXCyVBVzIxV0EmCxcgIBcB9Bcg/kRSOTpS/umhFh+YMFQ/JCQ/VDCYHxb+xBYeHhYBPM03TU03mJgAAAAABQDN/xQDMwJsAB8ARABdAGsAeQAAJTQmJzU0LgIjIg4CHQEOAQcjERUzHgEzITI2NzMRATIeAh0BIzU0JiMiBh0BFBYzMjY9ATQ2MzIWHQEhNTQ+AjMBFAYjISImJzURNT4BMyE4ATkBMzIWFRMHJyEiJjU0NjMhMhYVFAYnISImNTQ2MyEyFhUUBgMzIBcoRFw0NFxEKBQeBAEBBCQXAeYXJAQB/s0wVD4lRl5DQl4GBQQGUjk6Uf6PJD9ULwEdGRH+GhIYAQEZEQGJXREZAQFp/pkFBgYFAWcEBgYE/pkFBgYFAWcEBgaFFyIDuTJYQiYmQlgyuQIcFP7DCxUeHhUBPgHRIjxQLri4QFxcQEoFBgYFSjhOTji4uC5QPCL8/BEXFxEDASwDERgYEf7ZC0sGBAUGBgUEBocHBAQHBwQEBwAADQB2/1QDhQJQACIAMgBCAEkAWQBpAHkAiQCZAKAAsADAANAAAAEjNTQmIw4BHQEhNTQmIw4BHQEjIgYVERQWMyEyNjURNCYjARQGKwEiJj0BNDY7ATIWFTUUBisBIiY9ATQ2OwEyFhUnLgE1MxQGExQGKwEiJj0BNDY7ATIWFTUUBisBIiY9ATQ2OwEyFhUTFAYrASImPQE0NjsBMhYVNRQGKwEiJj0BNDY7ATIWFTUUBisBIiY9ATQ2OwEyFhU3MxQGJy4BExQGKwEiJj0BNDY7ATIWFTUUBisBIiY9ATQ2OwEyFhU1FAYrASImPQE0NjsBMhYVA2ZhGRERFv6TGRERFmENEhINAtENEhIN/c8GBXEEBgYEcQUGBgVxBAYGBHEFBhgRFlEZuQYEcQUGBgVxBAYGBHEFBgYFcQQGsgYEcQQGBgRxBAYGBHEEBgYEcQQGBgRxBAYGBHEEBhtRGRERFpgGBHIEBgYEcgQGBgRyBAYGBHIEBgYEcgQGBgRyBAYB/ikRGAEaESYpERgBGhEmEg39lA0SEg0CbA0S/ZoFBgYFbAUGBgVCBAYGBG0EBgYE+gEXERIY/ewFBgYFbAUGBgVCBAYGBG0EBgYE/uUFBgYFbAUGBgVCBAYGBG0EBgYEQQQGBgRtBAYGBHUSGAEBF/3TBQYGBWwFBgYFQgQGBgRtBAYGBEEEBgYEbQQGBgQAAA8Abv9mA5ICdwApAC4AMgA2ADoAPgBCAFAAXgCEAIkAkQCVAJkAoQAAJTgBNRE0JisBNTQmIyIGHQEhNTQmIyIGHQEjIgYVERQWMyEyNjUROAE1BTMVIzU7ARUjJSM1MwcjNTMXMxUjNzMVIwM0NjMyFh0BFAYjIiY1JTQ2MzIWHQEUBiMiJjUnNDY7ARUUFjMyNj0BIRUUFjMyNj0BMzIWFREjNTMyNjU0JiMhNRcVIzUzAyImPQEzFSMzNTMVMzUzFTMjNTMVFAYjA5IeFkweFRUf/qkeFRUeTBYeHhYCvBYe/PGyssirqwFwr6/Fq6sWr6/Fq6sQEQ0MEhIMDRH+QhIMDBISDAwSgBINTB4VFR4BVx8VFR5MDRGsMAQHBwT9g7KyspMNErKTqasWr6ONqxENwQEBMRUfHBYeHhYcHBYeHhYcHxX9phUeHhUBJwELlpaWq6KioreWlpYCIw0REQ1RDBISDFENERENUQwSEgwBDBIfFR4eFR8fFR4eFR8SDP7YogYFBAZxhqKi/g4SDHKQkJCQkJByDBIAAAAAAQC6/3kDSAIHAB8AACUUBisBFRQGIyImPQEjIiY1NDY7ATU0NjMyFh0BMzIWA0gpHrkpHh0quR0qKh25Kh0eKbkeKcAdKrkdKioduSodHSq5HSoqHbkqAAEAuQB5A0cBBwANAAAlISImNTQ2MyEyFhUUBgMA/gAdKiodAgAdKip5Kh0dKiodHSoAAAAGAGn/ZAOdAhYADQAbADoARwBWAGcAAAE0JisBIgYVFBY7AT4BFzQmIyEiBhUUFjMhPgEXIzU0Ji8BLgEjISIGFREjIgYdARQWMyEyNj0BLgEjATQ2MyEVFBY7ARUhEQMiJjU0NjsBMhYVFAYrAQUUBiMhIiY9ATQ2MyEyFh0BAiYMC6oJDgwLqgsMig0L/tAJDw0LATAJD6w9CAdsBxMJ/oYRGDoYIyMYAr4YIwMkGv26CAcBRwgEb/4vWwkODAtbCQ4MC1sCLAgG/k4GCAgGAa8GCAFKCA8NCgsNAg1PCQ4MCwsNAwxD0gkUBm0GCBcS/rYjG8cYIiIYxx0kASoHCG8FB8EBLf5sDQsJDgwLCQ+ABwgIBxEHCAgHEQAAAAAIAGP/XgOfAh8AEAAhAC8APQBLAFkAhACHAAAFISImPQE0NjMhMhYdAQ4BIwEiBh0BFBYzITI2PQE0JiMhFzQmKwEiBhUUFjsBMjYFNCYjISIGFRQWMyEyNgM0JiMhIgYVFBYzITI2JzQmKwEiBhUUFjsBMjYlJy4BIyEiBhURFBYzMjY1ETQ2MyEyFhcVFBY7ARQWHQEUFjMyNj0BLgEnJxcjA1z9SBonJxoCuxomAica/UgSFxcSArsSFxcS/UWeBwWBBAcHBIEFBwGOCAT+eAQICAQBiAQIGAcE/qMEBwcEAV0GBbUHBacEBwcEpwUHAQRsCRgL/q0WHwcFBAgTDQFTAgUCBwV9AwgEBAgFCgl4Z2eiJhrHGyYmG8caJgEzFxLHERgYEccSFzcEBwcEBQcHjgUHBwUEBwcBSQQICAQECAhQBQcHBQQIBk9tCAkfFv7/BAgIBAEBDhABAn4ECAIEA4kECAgEiQ4bBltmAAIAWP8VA60CawAUACsAAAEiDgIVFB4CMzI+AjU0LgIjFwEOASMiJi8BJjY3NjIfARM+ARceAQcCAlibdENDdJtYWZt0Q0N0m1nz/v4IFg0MFAifCQILCx8Mh/IJIA0NBwkCa0N0nFhYnHRDQ3ScWFicdEP1/l8LDQoJyAwfCwoKegFODAYJCCANAAAAAwBV/xUDqwJrABQAIQAuAAAlFA4CIyIuAjU0PgIzMh4CFQUyNiMuATcTIwMGFjMTMjY1NCYjIgYVFBYzA6tDdJxYWJx0Q0N0nFhYnHRD/j4hDAEYDAY3RTgJGyY5FRcVFBUXFRTAWJx0Q0N0nFhYnHRDQ3ScWPohAhYbAQb++ygtAaMbEw8RGxMOEgABAHb/QQOKAi4AKAAAATYyHwEeAR8BHgEPAQ4BHwEWBi8BJiIPAQYmPwE2Ji8BJjY/AT4BPwEB5QsgC1ELNBm1GQoSgxIUBB8FGhehF0AWohcZBB8EFBKDEgoZtRk0C1ECLhcXoxcmAxsDHxJ/Ej0ZtBkSC1UMDFULEhm0GT0SfxIfAxsDJhejAAAAAAEAmv/vA1cBfQAZAAATNDY3NjIfATc2MhcWFAcBDgEjIiYnAS4BNZoKChQ4FPT0FDkUFBT+7w0kExMjDv7wCgoBTA0ZChQU9PUUFBQ4FP7uDQ8PDQERChkNAAAAAQAAAAEAAJw5MTFfDzz1AAsEAAAAAADUFPWTAAAAANQU9ZMAAP7ABAACwAAAAAgAAgAAAAAAAAABAAACzP7NAAAEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAAKAQAAAAAAAAAAAAAAACuAAAEAAAJBAAA+gQAAAAEAABJBAAAqgQAAJwEAABjBAAAdQQAAQQEAAAABAAAAAQAAPoEAAEABAAAVQQAAFUEAAEaBAAA0gQAAAAEAADVBAAAaAQAAGoEAABdBAAAMwQAAF8EAADPBAAAzQQAAHYEAABuBAAAugQAALkEAABpBAAAYwQAAFgEAABVBAAAdgQAAJoAAAAAAAoAFAAeAQ4BKAFkAaoCBAKeAugDYgO6A/YEMgReBQoFYgW6BgIGQAZ8BqgHIAeACFoInAlGCYIKJAsuC/4MKgxEDNQNjA3SDhgOXg6MAAAAAQAAACgA0QAPAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAoAAAABAAAAAAACAAcAewABAAAAAAADAAoAPwABAAAAAAAEAAoAkAABAAAAAAAFAAsAHgABAAAAAAAGAAoAXQABAAAAAAAKABoArgADAAEECQABABQACgADAAEECQACAA4AggADAAEECQADABQASQADAAEECQAEABQAmgADAAEECQAFABYAKQADAAEECQAGABQAZwADAAEECQAKADQAyGljb1ByaW1hcnkAaQBjAG8AUAByAGkAbQBhAHIAeVZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGljb1ByaW1hcnkAaQBjAG8AUAByAGkAbQBhAHIAeWljb1ByaW1hcnkAaQBjAG8AUAByAGkAbQBhAHIAeVJlZ3VsYXIAUgBlAGcAdQBsAGEAcmljb1ByaW1hcnkAaQBjAG8AUAByAGkAbQBhAHIAeUZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("woff"), url("fonts/icons/icoPrimary.ttf?timestamp=@@timestamp") format("truetype"); - font-weight: normal; - font-style: normal; } - -[class*="icon-primary-"], -.nav-links a:after, -.bellyband-link a:after, -.breadcrumb > li:after, -.checkbox input:checked + .skin:after, -.checkbox input.indeterminate + .skin:after, -.checkbox input:indeterminate + .skin:after, -.selectWrap.large:before, -.form-row.error .error-msg:before, -.close:before, -.reset-field:before, -.cssIcon-globe:before, -.selectWrap:after { - color: #0568ae; - display: inline-block; - font-family: 'icoPrimary' !important; - font-style: normal; - font-size: 20px; - font-weight: normal; - font-variant: normal; - height: 1em; - margin-right: 7px; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - position: relative; - speak: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - width: 1em; } - -[class*="icon-primary-"]:before, -[class*="icon-primary-"]:after { - box-sizing: border-box; - display: inline-block; - font-size: 1em; - height: 1em; - position: relative; - top: 0; - left: 0; - vertical-align: middle; - width: 1em; } - -.icon-primary-att-globe:before, -.cssIcon-globe:before { - content: "\e900"; - color: #44c7f5; } - -.icon-primary-hamburger:before { - content: "\e903"; } - -.icon-primary-secure:before { - content: "\e918"; } - -.icon-primary-secureL:before { - content: "\e919"; } - -.icon-primary-padlockopen:before { - content: "\e916"; } - -.icon-primary-padlockopenL:before { - content: "\e917"; } - -.icon-primary-shoppingcart:before { - content: "\e914"; } - -.icon-primary-shoppingcartL:before { - content: "\e915"; } - -.icon-primary-print:before { - content: "\e921"; } - -.icon-primary-printL:before { - content: "\e922"; } - -.icon-primary-mobilesmartphone:before { - content: "\e908"; } - -.icon-primary-mobilesmartphoneL:before { - content: "\e90c"; } - -.icon-primary-tablet:before { - content: "\e904"; } - -.icon-primary-tabletL:before { - content: "\e905"; } - -.icon-primary-tv:before { - content: "\e906"; } - -.icon-primary-tvL:before { - content: "\e907"; } - -.icon-primary-calendar { - width: 100% !important; } - -.icon-primary-calendar:before { - content: "\e91a"; - z-index: 1; } - -.icon-primary-calendarL:before { - content: "\e91b"; } - -.icon-primary-star:before { - content: "\e96c"; } - -.icon-primary-close:before, -.close:before, -.reset-field:before { - content: "\e910"; } - -.icon-primary-down:before { - content: "\ea3c"; } - -.checkbox input.indeterminate + .skin:after, -.icon-primary-subtractminimize:before { - content: "\e920"; } - -.icon-primary-add-maximize:before { - content: "\e91f"; } - -.icon-primary-check:before, -.checkbox input:checked + .skin:after { - content: "\e912"; } - -.icon-primary-questionmark:before { - content: "\e90f"; } - -.icon-primary-badgealert:before, -.form-row.error .error-msg:before { - content: "\e90e"; } - -.icon-primary-approval:before { - content: "\e925"; } - -.icon-primary-flat-info:before { - content: "\e927"; } - -.icon-primary-alert:before { - content: "\e913"; } - -.icon-primary-tooltip:before, -.icon-primary-flat-faq:before { - content: "\e90d"; } - -.icon-primary-tooltip { - font-size: 20px; } - -.nav-links a:after, -.bellyband-link a:after, -.breadcrumb > li:after, -.icon-primary-right:before { - content: "\ea3c"; - transform: rotate(-90deg); } - -.icon-primary-left:before { - content: "\ea3c"; - transform: rotate(90deg); } - -.icon-primary-accordion-plus:after, -.icon-primary-collapsed:after, -.icon-primary-accordion-minus:after, -.icon-primary-expanded:after { - content: ""; - position: absolute; - top: 0; - z-index: 1; } - -.icon-primary-accordion-minus, -.icon-primary-expanded, -.icon-primary-accordion-plus, -.icon-primary-collapsed { - font-size: 20px !important; } - -:not(.ds2-no-colors) .icon-primary-accordion-minus:before, -:not(.ds2-no-colors) .icon-primary-expanded:before { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); - content: ""; } - -:not(.ds2-no-colors) .icon-primary-accordion-plus:before, -:not(.ds2-no-colors) .icon-primary-collapsed:before { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M10.5%2015.9c-.4%200-.8-.3-.8-.8V5.9c0-.4.3-.8.8-.8s.8.3.8.8v9.3c0%20.4-.4.7-.8.7z%22%2F%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); - content: ""; } - -.ds2-no-colors .icon-primary-accordion-minus:before, -.ds2-no-colors .icon-primary-expanded:before { - background-image: none; - content: "\e901"; } - -.ds2-no-colors .icon-primary-accordion-minus:after, -.ds2-no-colors .icon-primary-expanded:after { - content: "\e902"; } - -.ds2-no-colors .icon-primary-accordion-plus:before, -.ds2-no-colors .icon-primary-collapsed:before { - background-image: none; - content: "\e90b"; } - -.ds2-no-colors .icon-primary-accordion-plus:after, -.ds2-no-colors .icon-primary-collapsed:after { - content: "\e911"; } - -.icon-primary-circle-arrow { - outline: 1px solid transparent; - border-radius: 50%; - font-size: 20px !important; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); - margin-right: 7px; } - -.icon-primary-circle-arrow:after { - background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20baseProfile%3D%22tiny%22%3E%3Ccircle%20r%3D%2217%22%20cy%3D%2218%22%20cx%3D%2218%22%20stroke-width%3D%221%22%20fill%3D%22transparent%22%20stroke%3D%22%23ccc%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 2; } - -.icon-primary-circle-arrow:before { - border-radius: 50%; - content: "\ea3c"; - font-size: 12px; - top: 0; - position: absolute; - transform: rotate(-90deg); - width: 20px; - z-index: 1; } - -[class*="icon-primary-"] [class*="icon-primary-"] { - display: inline-block; - float: left; - font-size: 1em; - margin-left: -1em; - position: absolute; } - -[class*="icon-primary-"].white { - color: #fff; } - -[class*="icon-primary-"].black { - color: #000; } - -[class*="icon-primary-"].blue { - color: #0568ae; } - -[class*="icon-primary-"].green { - color: #007a3e; } - -@-webkit-viewport { - width: device-width; } - -@-moz-viewport { - width: device-width; } - -@-ms-viewport { - width: device-width; } - -@-o-viewport { - width: device-width; } - -@viewport { - width: device-width; } - -.clearfix:before, -.clearfix:after { - display: table; - content: ""; - line-height: 0; } - -.clearfix:after { - clear: both; } - -.pull-right { - float: right !important; } - -.pull-left { - float: left !important; } - -.float-children-left:before, -.float-children-left:after { - display: table; - content: ""; - line-height: 0; } - -.float-children-left:after { - clear: both; } - -.float-children-left > div { - float: left; - white-space: nowrap; } - -.block { - display: block !important; } - -.inline { - display: inline !important; } - -.inline-block { - display: inline-block !important; } - -.table-cell { - display: table-cell !important; - width: 1%; - vertical-align: middle; } - -@media (max-width: 767px) { - .full-bleed { - width: auto; - margin-left: -15px; - margin-right: -15px; - padding: 15px; } } - -@media (min-width: 768px) { - .full-bleed { - width: auto; - margin-left: -20px; - margin-right: -20px; - padding: 20px; } } - -@media (max-width: 480px) { - .full-bleed { - width: auto; - margin-left: -15px; - margin-right: -15px; - padding: 0 15px; } } - -.fade { - opacity: 0; - filter: alpha(opacity=0); - transition: opacity .15s linear; } - -.fade.in { - opacity: 1; - filter: alpha(opacity=100); } - -.b2bCollapse { - display: none; } - -.collapse.in { - height: auto; } - -.nowrap { - white-space: nowrap; } - -.pre { - white-space: pre; } - -.hidden-spoken { - border: 0 none !important; - clip: rect(0px, 0px, 0px, 0px) !important; - height: 1px !important; - letter-spacing: 0; - line-height: 0; - overflow: hidden !important; - margin-top: -1px; - padding: 0 !important; - position: absolute !important; - width: 1px !important; } - -[data-sr-text].hidden-spoken:before { - border: 0 none !important; - content: attr(data-sr-text); - clip: rect(0px, 0px, 0px, 0px) !important; - height: 1px !important; - letter-spacing: 0; - line-height: 0; - overflow: hidden !important; - padding: 0 !important; - position: absolute !important; - width: 100% !important; - z-index: -1; } - -[data-sr-text].hidden-spoken { - position: relative !important; - width: auto !important; } - -[data-show-between] { - display: none; - visibility: hidden; } - -.noscroll-y { - overflow-y: hidden !important; } - -.invisible { - visibility: hidden !important; - opacity: 0 !important; } - -.transparent { - background-color: rgba(255, 255, 255, 0) !important; } - -.hide { - display: none !important; } - -.show { - display: block !important; } - -.rel { - position: relative !important; } - -.legend-pad { - padding: 0 15px; } - -.border-top { - border-top-width: 1px !important; } - -.border-left { - border-left-width: 1px !important; } - -.border-right { - border-right-width: 1px !important; } - -.border-bottom { - border-bottom-width: 1px !important; } - -.border-dark { - border-color: #000; } - -.border-light { - border-color: #fff; } - -.no-border-top { - border-top-width: 0 !important; } - -.no-border-left { - border-left-width: 0 !important; } - -.no-border-right { - border-right-width: 0 !important; } - -.no-border-bottom { - border-bottom-width: 0 !important; } - -.align-middle { - margin: 0 auto !important; } - -.align-top { - position: absolute; - top: 0; } - -.align-bottom { - position: absolute; - bottom: 0; } - -.valign-top { - vertical-align: top !important; } - -.valign-middle { - vertical-align: middle !important; } - -.valign-bottom { - vertical-align: bottom !important; } - -.align-children-middle > * { - margin: 0 auto; } - -[class*="valign-children-"] { - display: table; } - -[class*="valign-children-"] > * { - display: table-cell; } - -.valign-children-top > * { - vertical-align: top; } - -.valign-children-middle > * { - vertical-align: middle; } - -.valign-children-bottom > * { - vertical-align: bottom; } - -.no-pad { - padding: 0 !important; } - -.top-space { - margin-top: 60px !important; } - -.bottom-space { - margin-bottom: 60px !important; } - -.top-pad { - padding-top: 60px !important; } - -.bottom-pad { - padding-bottom: 60px !important; } - -@media (max-width: 767px) { - .top-space { - margin-top: 30px !important; } - .bottom-space { - margin-bottom: 30px !important; } - .top-pad { - padding-top: 30px !important; } - .bottom-pad { - padding-bottom: 30px !important; } } - -.affix { - position: fixed; } - -.img-landscape, -.img-portrait { - position: relative; } - -@media (orientation: landscape) { - .img-landscape { - display: block; } - .img-portrait { - display: none !important; } } - -@media (orientation: portrait) { - .img-landscape { - display: none !important; } - .img-portrait { - display: block; } } - -.dark-bg { - background-color: #222222; } - -/* ... JAVASCRIPT HOOKS ................. - ... used by javascript ............... */ -.autoSize, -.autoSize-this { - position: relative; } - -.truncate { - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; } - -.placeholdersjs { - color: #5a5a5a !important; } - -.jshook-return-focus-here { - display: block; } - -.visible-print { - display: none !important; } - -.hidden-print { - display: inherit !important; } - -@media print { - .visible-print { - display: inherit !important; } - .hidden-print { - display: none !important; } - * { - color: #000 !important; - background: transparent !important; - box-shadow: none !important; } - a, - a:visited { - text-decoration: underline; } - pre, - blockquote { - border: 1px solid #000; - page-break-inside: avoid; } - thead { - display: table-header-group; } - tr, - img { - page-break-inside: avoid; } - img { - max-width: 100% !important; } - @page { - margin: 0.5cm; } - p, - h2, - h3 { - orphans: 3; - widows: 3; } - h2, - h3 { - page-break-after: avoid; } } - -.mar-top-0 { - margin-top: 0px; } - -.mar-top-30 { - margin-top: 30px; } - -a:focus { - outline: thin dotted #191919; } - -h1, -h2, -h3, -h4, -h5, -h6 { - font-weight: normal; - text-rendering: optimizeLegibility; - margin: 0; - line-height: 1; } - -.heading-page { - font-size: 3.8rem !important; - font-family: "Omnes-ECOMP-W02-Light", Arial; - margin-bottom: 40px; } - -.heading-major-section { - font-size: 3rem !important; - font-family: "Omnes-ECOMP-W02-Light" , Arial; - margin-bottom: 40px !important; } - -.heading-sub-section { - font-size: 2.4rem !important; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 40px; } - -.heading-group { - font-size: 2rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #ea7400; - margin-bottom: 20px !important; } - -.heading-medium { - font-size: 2rem !important; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - -.heading-medium-emphasis { - font-size: 2rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 20px; } - -.heading-small { - font-size: 1.8rem !important; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - -.heading-small-emphasis { - font-size: 1.8rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 20px; } - -.heading-micro { - font-size: 1.3rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - text-transform: uppercase; - color: #da0081; - margin-bottom: 10px; } - -* + .heading-major-section { - margin-top: 60px; } - -* + .heading-sub-section { - margin-top: 60px; } - -* + .heading-group { - margin-top: 40px !important; } - -* + .heading-medium { - margin-top: 40px; } - -* + .heading-medium-emphasis { - margin-top: 40px; } - -* + .heading-small { - margin-top: 40px; } - -* + .heading-small-emphasis { - margin-top: 40px; } - -* + .heading-micro { - margin-top: 20px; } - -.lead { - color: #666; - font-family: "Omnes-ECOMP-W02-Light-Italic", Arial; - font-size: 2.4rem; - line-height: 2.8rem; - margin-top: 10px; - letter-spacing: -0.024rem; } - -.eyebrow { - text-transform: uppercase; - line-height: .65 !important; } - -.eyebrow, -.subheading { - font-size: 1.4rem !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #666; } - -.eyebrow + .heading-major-section, -.eyebrow + .heading-sub-section { - margin-top: 4px; } - -.subheading { - margin-top: 10px; } - -@media (max-width: 767px) { - h1, - h2, - h3, - h4, - h5, - h6, - .heading-page { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 30px; } - .heading-major-section { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 30px; } - .heading-sub-section { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - .heading-medium { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - .heading-medium-emphasis { - font-size: 2rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; } - .heading-small { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 10px; } - .heading-small-emphasis { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 5px; } - * + .heading-major-section { - margin-top: 30px; } - * + .heading-sub-section { - margin-top: 30px; } - * + .heading-group { - margin-top: 20px; } - * + .heading-medium { - margin-top: 20px; } - * + .heading-medium-emphasis { - margin-top: 20px; } - * + .heading-small { - margin-top: 20px; } - * + .heading-small-emphasis { - margin-top: 20px; } - * + .heading-micro { - margin-top: 10px; } } - -/* Standard Type styles */ -.zeromargin { - margin: 0 !important; } - -a { - color: #0568ae; - text-decoration: none; } - -a:hover, -a:focus { - text-decoration: underline; } - -a:active { - color: #0568ae; } - -.a-min { - font-size: 12px; } - -.a-small { - font-size: 14px; } - -.a-max { - font-size: 18px; } - -a.show-qualifier { - margin-right: 25px; - position: relative; } - -a.show-qualifier:after { - color: #333333; - display: inline-block; - white-space: pre !important; } - -a[href$="pdf"].show-qualifier:after, -a.show-qualifier.pdf:after { - content: " (PDF)"; } - -a[href$="psd"].show-qualifier:after, -a.show-qualifier.psd:after { - content: " (PSD)"; } - -.standalone-link { - display: flex; } - -/* 20px for the icon, 10px left of icon */ -.standalone-link.small { - font-size: 1.4rem; } - -.standalone-link.small i[class*="icon-primary-"] { - font-size: 16px; - top: 2px; } - -.standalone-link.large { - font-size: 1.8rem; } - -.standalone-link.large i[class*="icon-primary-"] { - font-size: 24px; - top: -1px; } - -p { - margin: 0 0 12px 0; - line-height: 2rem; } - -.p-small { - font-size: 1.4rem; - line-height: 1.8rem; } - -p + .p-small { - margin: 10px 0 0; } - -.p-micro { - font-size: 1.2rem; - line-height: 1.5rem; } - -p + .p-micro { - margin: 10px 0 0; } - -.p-max { - font-size: 1.8rem; } - -p + .p-max { - margin: 10px 0 0; } - -b, -strong { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: normal; } - -i, -em { - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; } - -.strike { - text-decoration: line-through; } - -sup { - display: inline-block; - font-style: normal; - height: 1em; - position: relative; - vertical-align: text-top; - width: auto; } - -.text-legal { - color: #5a5a5a; - font-size: 1.1rem; - line-height: 1.5rem; - margin: 0 0 10px; } - -.text-legal.legal-module { - line-height: 1.3rem; - margin: 0 0 12px; } - -.text-legal b, -.text-legal strong { - font-weight: bold; } - -.text-legal a { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.text-left { - text-align: left !important; } - -.text-right { - text-align: right !important; } - -.text-center { - text-align: center !important; } - -.text-justified { - text-align: justify !important; } - -ul { - padding: 0; - margin: 0; - list-style: none; } - -ul.bullet, -ul.no-bullet, -ul.lower-alpha, -ul.lower-roman, -ol { - padding: 0; - margin: 12px 0 0 20px; } - -ul.bullet li, -ul.no-bullet li, -ul.lower-alpha li, -ul.lower-roman li, -ol li { - padding-left: 15px; - line-height: 20px; - position: relative; } - -ul.bullet li + li, -ul.no-bullet li + li, -ul.lower-alpha li + li, -ul.lower-roman li + li, -ol li + li { - margin-top: 12px; } - -ul.bullet > li:before, -ul.no-bullet > li:before, -ul.lower-alpha > li:before, -ul.lower-roman > li:before, -ol > li:before { - background-color: #333333; - border: 2px solid #333333; - border-radius: 100%; - content: " "; - display: block; - height: 1px; - left: 0; - position: absolute; - top: 8px; - width: 1px; } - -ul.bullet ul, -ul.no-bullet ul, -ul.lower-alpha ul, -ul.lower-roman ul, -ol ul, -ul.bullet ol, -ul.no-bullet ol, -ul.lower-alpha ol, -ul.lower-roman ol, -ol ol { - margin-top: 12px; } - -ul + *, -ol + * { - margin-top: 20px; } - -ul.no-bullet, -ul.lower-alpha, -ul.lower-roman { - margin: 0; } - -ul.no-bullet > li, -ul.lower-alpha > li, -ul.lower-roman > li { - padding-left: 0; } - -ul.no-bullet > li:before, -ul.lower-alpha > li:before, -ul.lower-roman > li:before { - display: none !important; } - -ol { - margin: 20px 0 0 32px; } - -ol li { - padding-left: 3px; } - -ol li:before { - display: none; } - -ol ol { - margin-left: 25px; } - -ol ul { - margin-left: -5px; } - -ul ul, -ul ol, -ol ol, -ol ul { - margin-top: 0; } - -ul.lower-roman { - list-style-type: lower-roman; - margin-top: 12px; - margin-left: 35px; - margin-bottom: 0; } - -ul.lower-alpha { - list-style-type: lower-alpha; - margin-top: 12px; - margin-left: 35px; - margin-bottom: 0; } - -dl { - display: table; - margin: 0 0 20px; - width: 100%; } - -dt, -dd { - display: table-cell; } - -.btn { - background-color: transparent; - background-clip: padding-box; - border: 1px solid transparent; - border-radius: 8px; - box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15); - cursor: pointer; - display: inline-block; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 1.9rem; - font-weight: normal; - line-height: 1; - margin: 0 7px 10px 0; - max-width: 470px; - min-width: 70px; - padding: 14px 19px 11px 18px; - position: relative; - text-align: center; - vertical-align: middle; - white-space: nowrap; - overflow: hidden; } - .btn:focus { - outline: 1px dotted #000; - outline-offset: -5px; } - .btn:last-child { - margin-right: 0; } - .btn::-moz-focus-inner { - padding: 0; - border: 0; } - .btn i[class*="icon-primary-"].icon-primary-small { - font-size: 24px; - top: -2px; } - .btn i[class*="icon-primary-"].icon-primary-medium { - font-size: 30px; - top: -2px; } - .btn i[class*="icon-primary-"].icon-primary-large { - font-size: 36px; - top: -2px; } - -a.btn { - vertical-align: middle; } - a.btn:hover { - text-decoration: none; } - -.field-group + .btn { - margin-left: 20px; } - -.btn-primary { - border-color: #ea7400 transparent #d16500; - background-color: #ea7400 transparent #d16500; - background: linear-gradient(to bottom, #ea7400 0%, #d16500 100%); - color: #ffffff; - font-family: "Omnes-ECOMP-W02", Arial; - font-weight: bold; } - .btn-primary:hover { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-primary:focus { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-primary:active { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - -.btn-arrow { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.6rem; - font-weight: normal; - background-color: transparent; - border: none; - padding: 5px 0 0; - top: -4px; - color: #333333; - position: relative; } - .btn-arrow:hover { - text-decoration: underline; } - .btn-arrow:hover .btn-primary { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-arrow:hover .btn-secondary { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-arrow:hover .btn-alt { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } - .btn-arrow:hover .btn-specialty { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-arrow:focus { - text-decoration: underline; - outline: 1px dotted #666; } - .btn-arrow:focus .btn-primary { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-arrow:focus .btn-secondary { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-arrow:focus .btn-alt { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } - .btn-arrow:focus .btn-specialty { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-arrow:active .btn-primary { - text-decoration: none; - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } - .btn-arrow:active .btn-secondary { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-arrow:active .btn-alt { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } - .btn-arrow:active .btn-specialty { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-arrow .btn-alt { - border-color: #087ac2 transparent #0568ae; - background-color: #0568ae; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); - color: #ffffff; } - .btn-arrow .btn-alt:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-arrow .btn-alt:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-arrow .btn-alt:active { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-arrow::-moz-focus-inner { - padding: 0; - border: 0; } - .btn-arrow .btn { - border: 1px solid transparent; - border-radius: 100%; - height: 36px; - margin-bottom: 0; - margin-right: 7px; - max-width: 36px; - min-width: 20px; - padding: 0; - margin-top: -4px; - vertical-align: middle; - width: 36px; } - .btn-arrow .btn .icon-primary-left { - bottom: 0; - display: block; - height: 100%; - left: 0; - line-height: 0; - position: absolute; - right: 0; - text-indent: 0; - top: 0; } - .btn-arrow .btn .icon-primary-left:before { - position: absolute; - font-size: 1.6rem; - left: 1px; - top: 9px; } - .btn-arrow .btn .icon-primary-right { - bottom: 0; - display: block; - height: 100%; - left: 0; - line-height: 0; - position: absolute; - right: 0; - text-indent: 0; - top: 0; - color: #ffffff; } - .btn-arrow .btn .icon-primary-right:before { - position: absolute; - font-size: 1.6rem; - left: 17px; - top: 9px; } - .btn-arrow .btn.btn-primary .icon-primary-left { - color: #fff; } - .btn-arrow .btn.btn-primary .icon-primary-right { - color: #fff; } - .btn-arrow .btn.btn-alt .icon-primary-left { - color: #fff; } - .btn-arrow .btn.btn-alt .icon-primary-right { - color: #fff; } - .btn-arrow .btn.btn-secondary { - border: 1px solid #d2d2d2; } - .btn-arrow .btn.btn-secondary .icon-primary-left { - color: #0568ae; } - .btn-arrow .btn.btn-secondary .icon-primary-right { - color: #0568ae; } - .btn-arrow .btn.btn-small { - height: 20px; - max-width: 20px; - min-width: 20px; - width: 20px; - top: -1px; } - .btn-arrow .btn.btn-small .icon-primary-left:before { - font-size: 10px; - top: 4px; - left: 0; } - .btn-arrow .btn.btn-small .icon-primary-right:before { - font-size: 10px; - top: 4px; - left: 10px; } - .btn-arrow .btn.btn-large .icon-primary-left:before { - font-size: 112%; - top: 12px; - left: 23px; } - .btn-arrow .btn.btn-large .icon-primary-right:before { - font-size: 112%; - top: 12px; - left: 23px; } - -.btn-secondary { - border: 1px solid #d2d2d2; - background-color: #f2f2f2; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - color: #0568ae; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); - padding: 14px 18px 11px 17px; } - .btn-secondary:hover { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-secondary:focus { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - .btn-secondary:active { - color: #0568ae; - outline-color: #000000 !important; - background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } - -.btn-alt { - border-color: #087ac2 transparent #0568ae; - background-color: #0568ae; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); - color: #ffffff; } - .btn-alt:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-alt:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - .btn-alt:active { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } - -.btn-specialty { - border-color: #008744 transparent #007a3e; - background-color: #007a3e; - background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); - color: #ffffff; } - .btn-specialty:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-specialty:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - .btn-specialty:active { - color: #ffffff; - outline-color: #ffffff !important; - background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } - -.btn-clear { - background: transparent !important; - border-color: transparent !important; - font-weight: normal; - font-family: "Omnes-ECOMP-W02", Arial; - box-shadow: none; - text-decoration: none; - color: #0568ae; } - .btn-clear:focus { - text-decoration: underline; } - .btn-clear:hover { - text-decoration: underline; } - -.isIE .btn:focus { - outline: none !important; - text-decoration: none !important; } - .isIE .btn:focus:after { - display: block; - content: ""; - position: absolute; - top: 4px; - left: 4px; - right: 4px; - bottom: 4px; - border: 1px dotted #000; } - -.isIE .btn:active { - outline: none !important; - text-decoration: none !important; } - .isIE .btn:active:after { - display: block; - content: ""; - position: absolute; - top: 4px; - left: 4px; - right: 4px; - bottom: 4px; - border: 1px dotted #000; } - -.isIE .btn.active { - outline: none !important; - text-decoration: none !important; } - .isIE .btn.active:not(:focus):after { - border: 1px solid #000; } - .isIE .btn.active:after { - display: block; - content: ""; - position: absolute; - top: 4px; - left: 4px; - right: 4px; - bottom: 4px; - border: 1px dotted #000; } - -.isIE .btn.btn-primary:focus:after { - border: 2px dashed #fff; } - -.isIE .btn.btn-specialty:focus:after { - border: 2px dashed #fff; } - -.isIE .btn.btn-alt:focus:after { - border: 2px dashed #fff; } - -.btn.disabled { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn.disabled:hover { - color: #f2f2f2; - outline: none !important; } - .btn.disabled:focus { - color: #f2f2f2; - outline: none !important; } - -.btn[disabled] { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn[disabled]:hover { - color: #f2f2f2; - outline: none !important; } - .btn[disabled]:focus { - color: #f2f2f2; - outline: none !important; } - -.btn[disabled="disabled"] { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn[disabled="disabled"]:hover { - color: #f2f2f2; - outline: none !important; } - .btn[disabled="disabled"]:focus { - color: #f2f2f2; - outline: none !important; } - -.btn-arrow[disabled] .btn { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn-arrow[disabled] .btn:hover { - color: #f2f2f2; - outline: none !important; } - .btn-arrow[disabled] .btn:focus { - color: #f2f2f2; - outline: none !important; } - -.btn-arrow[disabled] .icon-primary-left { - color: #fff !important; } - -.btn-arrow[disabled] .icon-primary-right { - color: #fff !important; } - -.btn-arrow.disabled .btn { - background-image: none; - background-color: #767676; - box-shadow: none; - cursor: not-allowed; - color: #ffffff; - border-color: transparent; - outline: 0 !important; } - .btn-arrow.disabled .btn:hover { - color: #f2f2f2; - outline: none !important; } - .btn-arrow.disabled .btn:focus { - color: #f2f2f2; - outline: none !important; } - -.btn-arrow.disabled .icon-primary-left { - color: #fff !important; } - -.btn-arrow.disabled .icon-primary-right { - color: #fff !important; } - -.btn-medium { - padding: 12px 19px 11px 18px; - font-size: 1.7rem; } - -.btn-small { - padding: 10px 19px 9px 18px; - font-size: 1.5rem; - border-radius: 8px; } - -.btn-fullwidth { - width: 100%; } - -*:not(.btn-arrow) > .btn > i[class*="icon-primary-"] { - margin-top: -20px; - margin-bottom: -20px; } - -.enhanced-cta-group { - display: -ms-flexbox; - display: flex; - -ms-flex-direction: row-reverse; - flex-direction: row-reverse; - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3A%23959595%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; - background-position: 0 -1px; - background-repeat: repeat-x; } - .enhanced-cta-group > .cta-button-group { - border-top: 0; - background-image: none !important; } - .enhanced-cta-group > .cta-button-group + .cta-button-group a { - font-size: 1.4rem; - line-height: 1em; } - .enhanced-cta-group > .cta-button-group + .cta-button-group a a { - margin-right: 0; } - .enhanced-cta-group > .cta-button-group hr { - min-height: 14px; } - .enhanced-cta-group > .cta-button-group + .cta-button-group { - -ms-flex-align: center; - -ms-grid-row-align: center; - align-items: center; - -ms-flex-direction: row; - flex-direction: row; - padding: 10px 0; } - -.cta-button-group { - text-align: right; - -ms-flex-align: baseline; - align-items: baseline; - padding: 20px 0 10px; - width: 100%; } - .cta-button-group.nodots { - background-image: none !important; } - .cta-button-group .hidden-phone { - margin-right: 14px; } - .cta-button-group .btn + .btn { - margin-right: 20px !important; } - .cta-button-group .btn:not(.hidden-phone):not(.visible-phone) { - margin-right: 0; } - -.isMobile .btn-arrow .btn.btn-small .icon-primary-left:before { - left: -1px; } - -.isMobile .btn-arrow .btn.btn-large .icon-primary-left:before { - left: 24px; } - -.isMobile .btn-arrow .btn.btn-large .icon-primary-right:before { - left: 24px; } - -@media (max-width: 1024px) { - .field-group + .btn { - margin-left: 15px; } } - -@media (max-width: 767px) { - .cta-button-group { - text-align: center; } - .cta-button-group > .btn { - display: block; - float: none; - width: 100%; - margin-left: auto !important; - margin-right: auto !important; } } - -.btn-group { - border-radius: 8px; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); - display: -ms-flexbox; - display: flex; - -ms-flex-pack: justify; - justify-content: space-between; - margin-bottom: 10px; - max-width: 470px; - min-width: 290px; - position: relative; - vertical-align: middle; - width: 100%; } - .btn-group > .btn { - box-shadow: none; - -ms-flex: 1; - flex: 1; - position: relative; - float: left; - margin-right: -1px; - margin-bottom: 0; - padding-left: 0; - padding-right: 0; - text-align: center; } - .btn-group:not([data-select-color]) .btn.active:not(:first-child) { - margin-right: -1px; - border-left: 1px solid #d2d2d2 !important; } - .btn-group:not([data-select-color]) .btn[disabled]:not(:first-child) { - border-left: 1px solid #d2d2d2 !important; } - .btn-group:not([data-select-color]) .btn[disabled] + .btn[disabled] { - border-left: 1px solid #ebebeb !important; } - .btn-group:not([data-select-color]) > .btn.active { - border-color: #087ac2 transparent #0568ae; - background-color: #0568ae; - background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); - color: #ffffff; } - .btn-group:not([data-select-color]) > .btn.active:hover { - color: #ffffff; - outline-color: #ffffff !important; - background: #0563a6; - border-color: #0563a6; } - .btn-group:not([data-select-color]) > .btn.active:focus { - color: #ffffff; - outline-color: #ffffff !important; - background: #0563a6; - border-color: #0563a6; } - .btn-group:not([data-select-color]) > .btn.active:active { - color: #ffffff; - outline-color: #ffffff !important; - background: #0563a6; - border-color: #0563a6; } - .btn-group:not([data-select-color]) > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; } - .btn-group:not([data-select-color]) > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .btn-group:not([data-select-color]) > .btn:last-child:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .btn-group:not([data-select-color]) > .dropdown-toggle:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - .btn-group > .active { - text-decoration: none; - outline: 1px dotted transparent; } - .btn-group > .active:focus { - outline: 1px dotted #ffffff; } - -.btn-group.btn-fullwidth > .btn { - -ms-flex: 1; - flex: 1; } - -.btn-group[data-select-color] { - margin-top: 5px; - box-shadow: none; - -ms-flex-pack: start; - justify-content: flex-start; - -ms-flex-wrap: wrap; - flex-wrap: wrap; } - .btn-group[data-select-color] .btn { - border: 1px solid #959595; - border-radius: 4px; - box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); - margin-right: 10px; - margin-bottom: 10px; - height: 40px; - font-size: 16px; - color: #333333; - max-width: 60px; - min-width: 60px; - -ms-flex: 0; - flex: 0; } - .btn-group[data-select-color] > .btn.active:focus { - outline: 1px dotted #191919; - outline-offset: 4px; } - -button .btn-fill { - background-clip: padding-box; - border: 0; - border-radius: 4px; - bottom: 0; - display: block; - height: auto; - left: 0; - margin: 5px; - position: absolute; - right: 0; - top: 0; - width: auto; } - -button .btn-fill[style*="#fff"] { - border: 1px solid #d2d2d2; } - -[data-select-color] .btn.active { - background: none !important; - outline: 0; - margin-right: 10px; - border-width: 3px; - color: #333333; - line-height: 12px; } - [data-select-color] .btn.active > .btn-fill { - margin: 3px; } - [data-select-color] .btn.active:hover { - color: #333333; } - -[data-select-color] .btn:active { - background: none !important; - outline: 0; - margin-right: 10px; - border-width: 3px; - color: #333333; - line-height: 12px; } - [data-select-color] .btn:active > .btn-fill { - margin: 3px; } - [data-select-color] .btn:active:hover { - color: #333333; } - -.btn-group[data-select-color="orange"] > .btn.active { - border-color: #ea7400; } - -.btn-group[data-select-color="blue"] > .btn.active { - border-color: #0568ae; } - -.btn-group[data-select-color="green"] > .btn.active { - border-color: #007a3e; } - -.btn-spinbutton-toggle.btn-group { - display: block !important; - height: 40px !important; - margin-top: 5px; - max-width: 138px; - min-width: 138px; - white-space: nowrap; } - -.btn-spinbutton-toggle .btn { - border-radius: 6px; - font-weight: normal; - -ms-flex: unset; - flex: unset; - height: 40px; - letter-spacing: normal; - min-width: auto; - padding: 3px 0 0; - text-align: center; - min-width: 46px; - width: 46px; } - -.btn-spinbutton-toggle .btn[data-max-value] { - border-bottom: 1px solid #d2d2d2; - border-top: 1px solid #d2d2d2; - box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.08) inset; - background-color: #fff; - cursor: text; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 2rem; - font-weight: normal; - padding: 4px 0 0; - text-align: center; - min-width: 46px !important; - width: 46px; } - .btn-spinbutton-toggle .btn[data-max-value]:focus { - border-color: #0568ae; - outline: none; } - .btn-spinbutton-toggle .btn[data-max-value]:focus + .btn { - border-left: 1px solid #0568ae; - transition: border 0.3s linear 0s; } - -.btn-spinbutton-toggle .icon-primary-subtractminimize { - font-size: 30px !important; - color: #0568ae !important; } - -.btn-spinbutton-toggle .icon-primary-add-maximize { - font-size: 30px !important; - color: #0568ae !important; } - -.btn-spinbutton-toggle .btn[disabled].icon-primary-subtractminimize { - background-color: #d2d2d2; - color: #767676 !important; } - -.btn-spinbutton-toggle .btn[disabled].icon-primary-add-maximize { - background-color: #d2d2d2; - color: #767676 !important; } - -.btn-spinbutton-toggle input.btn[disabled] { - background-color: #d2d2d2; - color: #5a5a5a; - cursor: not-allowed; } - -.btn-group.btn-spinbutton-toggle .btn[disabled] + .btn[disabled] { - border-left: 1px solid #f0f0f0 !important; } - -.btn-group.btn-spinbutton-toggle .btn[data-max-value]:focus + .btn:not(:first-child) { - border-left: 1px solid #0568ae !important; } - -@media (max-width: 480px) { - .btn-group:not([data-select-color]) > .btn { - font-size: 1.3rem; - min-width: auto; } } - -.reset-field, -.close { - float: right; - background: none; - width: 34px; - height: 34px; - padding: 0; - overflow: hidden; - display: inline-block; } - -.reset-field { - display: none; } - -.reset-field:before { - font-size: 22px; - color: #5a5a5a; } - -.input-emphasized + .reset-field:before { - font-size: 29px; - color: #5a5a5a; } - -.reset-field:active, -.reset-field:hover, -.reset-field:focus { - display: block !important; } - -button.close { - border: 0; - appearance: none; } - -.corner-button { - box-shadow: 0 -50px 0 0 #f2f2f2 inset; - height: 69px; - /*overflow: hidden;*/ - position: absolute; - right: -35px; - top: -35px; - transform: rotate(45deg); - width: 69px; } - -.corner-button .close:before { - bottom: -7px; - color: #0568ae; - display: block; - font-size: 20px; - height: 50px; - left: -11px; - position: absolute; - width: 50px; } - -.corner-button .close { - float: none; - height: 45px; - margin: 0; - position: absolute; - right: 12px; - top: 45px; - transform: rotate(45deg); - width: 45px; } - -.corner-button .close:focus { - outline: 1px dotted black; } - -.ds2-no-colors .corner-button .close { - border: 1px solid black; } - -.field-group input + .reset-field { - background: none; - height: 36px; - width: 45px; - display: none; - padding: 0; - position: absolute; - right: 0; - top: 0; - box-shadow: none; - border: none; - content: " "; } - -.field-group input[type="search"] + .reset-field, -.field-group input[type="search"] + .btn-search + .reset-field, -.tooltip-onclick input + .reset-field, -.tooltip-onclick input + .icon-primary-tooltip + .reset-field, -.tooltip-onclick textarea + .reset-field, -.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { - right: 45px; } - -.field-group input[type="search"] + .reset-field:after, -.field-group input[type="search"] + .btn-search + .reset-field:after, -.tooltip-onclick input + .reset-field:after, -.tooltip-onclick input + .icon-primary-tooltip + .reset-field:after, -.tooltip-onclick textarea + .reset-field:after, -.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field:after { - background-color: #d2d2d2; - content: ""; - display: block; - height: 20px; - position: absolute; - right: 0; - top: 8px; - width: 1px; } - -.tooltip-onclick input + .reset-field, -.tooltip-onclick input + .icon-primary-tooltip + .reset-field { - right: 50px !important; } - -.tooltip-onclick textarea + .reset-field, -.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { - right: 45px !important; - width: 40px; } - -.field-group input.input-emphasized + .reset-field { - width: 45px; - height: 46px; - right: 6px; } - -.field-group input.input-emphasized + .reset-field:after { - top: 14px; } - -.field-group [disabled] + .reset-field { - display: none; } - -.ds2_touchevents .field-group input + .reset-field:focus, -.ds2_touchevents .field-group input:focus + .reset-field, -.ds2_touchevents textarea:focus + .reset-field, -.ds2_touchevents textarea + .reset-field:focus { - display: block; - position: absolute; - right: 0px; - top: 0; - border: none; } - -.ds2_touchevents .field-group input { - padding: 8px 55px 8px 15px; - -webkit-appearance: none; } - -.ds2_touchevents textarea:focus { - padding: 15px 55px 15px 15px; } - -.ds2_touchevents textarea:focus + .reset-field { - border: none; - position: absolute; - right: 6px; - top: 5px; } - -.ds2_touchevents textarea.hasScrollbar:focus { - padding: 15px 35px 15px 15px; } - -.ds2_touchevents textarea.hasScrollbar:focus + .reset-field { - right: 22px; } - -.form-row.error .error-msg { - display: block; - font-size: 14px; - line-height: 14px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - position: relative; - padding-left: 18px; } - -.form-row.error .error-msg:before { - color: #cf2a2a; - font-size: 14px; - left: 0; - line-height: 14px; - position: absolute; - vertical-align: middle; } - -.form-row.error label, -.form-row.error .error-msg, -.form-row.error button.awd-select, -.form-row.error select.awd-select + span, -.form-row.error .checkbox, -.form-row.error .radio, -.form-row.error legend.error, -.form-row.error input { - color: #cf2a2a; } - -.form-row.error .btn-group > .btn, -.form-row.error button.awd-select, -.form-row.error .awd-select-list, -.form-row.error select.awd-select + span, -.form-row.error textarea, -.form-row.error input, -.form-row.error .checkbox .skin, -.form-row.error .radio .skin { - border-color: #cf2a2a !important; } - -.form-row.error .checkbox input:checked:not(:disabled) + .skin { - background-color: #cf2a2a; } - -.form-row.error .radio input:checked + .skin:after { - background-color: #cf2a2a; } - -.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg { - margin-top: -11px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext { - margin: 0 0 10px; } - -.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:before, -.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:after { - display: none; } - -.error .helpertext { - border-color: #cf2a2a; - /*border-radius:0;*/ } - -.error .helpertext:before { - border-top-color: #cf2a2a; } - -.error .tooltip-onfocus .helpertext { - margin: 14px 0 10px 0; } - -.error [class*="price"], -.error [class*="pricing-"] { - color: #cf2a2a; } - -input:-ms-clear { - display: none; } - -input[type]::-webkit-inner-spin-button, -input[type]::-webkit-outer-spin-button { - -webkit-appearance: none; } - -/* input[type] { - -moz-appearance: textfield; } - */ -form { - margin: 0; } - -fieldset { - padding: 0; - margin: 0; - border: 0; } - -label, -legend { - display: inline-block; - font-size: 1.4rem; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -legend { - display: block; } - -.error-msg { - display: none; } - -select, -textarea, -input { - border-radius: 6px; - color: #5a5a5a; - display: inline-block; - font-size: 1.6rem; - margin: 0px; - padding: 0 15px 0 15px; - vertical-align: middle; - line-height: normal; } - -select::-webkit-input-placeholder, -textarea::-webkit-input-placeholder, -input::-webkit-input-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - -select:-moz-placeholder, -textarea:-moz-placeholder, -input:-moz-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - -select::-moz-placeholder, -textarea::-moz-placeholder, -input::-moz-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - -select:-ms-input-placeholder, -textarea:-ms-input-placeholder, -input:-ms-input-placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - transition: none; - opacity: 1; } - -select:placeholder, -textarea:placeholder, -input:placeholder { - color: #5a5a5a; - font-family: "Omnes-ECOMP-W02-Italic", Arial; - font-style: normal; - opacity: 1; } - -select:last-child, -textarea:last-child, -input:last-child { - margin-right: 0; } - -input:not([type="button"]) { - height: 36px; } - -input.input-emphasized { - font-size: 1.8rem; - height: 48px; - padding: 13px 20px 13px; } - -input[type="search"]:focus { - padding-right: 88px; } - -input[type="search"] { - padding-right: 40px; - -webkit-appearance: none !important; } - -input[type="search"].input-emphasized { - padding-right: 45px; } - -.btn-search[class*="btn"] { - background-color: transparent; - background-position: 50% 50%; - background-size: 20px; - background-repeat: no-repeat; - border: none; - height: 100%; - margin-left: 0; - margin-top: 0; - min-width: 45px !important; - outline-offset: 0; - padding: 0 !important; - position: absolute; - right: 0; - top: 0; - border-radius: 0 5px 5px 0; - min-width: 44px; - width: 44px; } - -.input-emphasized + .btn-search[class*="btn"], -.input-emphasized + .reset-field + .btn-search[class*="btn"] { - background-size: 26px; - height: 46px; - top: 1px; - outline-offset: -3px; - margin-bottom: 0; - border-radius: 0 5px 5px 0; } - -input[type="search"].input-emphasized + .reset-field { - right: 45px !important; } - -.search-suggestion-wrapper { - position: relative; - margin-bottom: 15px; } - -/*styles from dropdown*/ -.search-suggestion-list { - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); - border-radius: 0 0 6px 6px; - position: relative; - border: 1px solid #0568ae; - border-top: 0; - padding: 15px 0; - background-color: #f2f2f2; - z-index: 1000; - width: 100%; - max-height: 400px; - overflow-y: auto; } - -.search-suggestion-list:empty { - display: none; } - -.search-suggestion-item { - position: relative; - z-index: -1; - padding: 0 15px; - line-height: 4.0rem; - color: #5a5a5a; } - -.search-suggestion-item a { - text-decoration: none; - color: #5a5a5a; } - -.search-suggestion-item:hover, -.search-suggestion-item:focus { - cursor: pointer; - background-color: #d2d2d2; } - -input[data-provide="datepicker"], -[data-provide="datepicker"]:-moz-placeholder, -[data-provide="datepicker"]:-ms-input-placeholder, -[data-provide="datepicker"]:-webkit-input-placeholder { - color: #0568ae !important; - opacity: 1; - filter: alpha(opacity=100); } - -input[disabled], -input[readonly], -select[disabled], -select[readonly], -textarea[disabled], -textarea[readonly], -span.icon-primary-calendar.disabled, -span.icon-primary-calendar.readonly { - cursor: not-allowed; - background-color: #f2f2f2; - box-shadow: none; } - -span.icon-primary-calendar.disabled input, -span.icon-primary-calendar.readonly input { - color: #959595 !important; } - -textarea { - display: block; - width: 100%; - max-width: 100%; - padding: 15px; } - -textarea.small { - line-height: 20px; } - -textarea + .reset-field { - display: none; } - -textarea::-webkit-input-placeholder { - line-height: .99; } - -textarea:-moz-placeholder { - line-height: .99; } - -textarea::-moz-placeholder { - line-height: .99; } - -textarea:-ms-input-placeholder { - line-height: .99; } - -textarea:placeholder { - line-height: .99; } - -textarea, -input { - background-color: #ffffff; - border: 1px solid #d2d2d2; -/* -webkit-appearance: none; */ - box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; - transition: border .3s linear 0s; - font-family: "Omnes-ECOMP-W02", Arial; } - -textarea:focus, -input:focus { - outline: 0; - border-color: #0568ae; } - -.input-append { - display: table; } - -.input-append > div { - display: table-cell; - width: 1%; } - -.input-append > .field-group { - width: 100%; } - -.row .field-group input[class*="span"] { - float: none; } - -.field-group { - position: relative; - display: inline-block; } - -label + .field-group, -label + .input-append, -label + .row, -label + .row-nowrap, -label + .form-row { - margin-top: 5px; } - -.field-group { - position: relative; - display: block; } - -.field-group input:not([type="button"])[disabled] { - padding-right: 15px; } - -input:invalid, -textarea:invalid, -select:invalid { - outline: none !important; } - -.form-row { - margin-top: 20px; } - -.form-row.nomar { - margin: 0; } - -.row-nowrap.no-flex.form-row > label + br { - margin-bottom: 5px; } - -span.form-row { - display: inline-block; } - -legend + .form-row { - margin-top: 20px; } - -.tooltip-onclick input { - padding-right: 45px; } - -.ds2_touchevents .tooltip-onclick input:focus { - padding-right: 95px; } - -span.icon-primary-calendar { - display: block; - position: relative; - background-color: #fff; - border-radius: 4px; - overflow: hidden; - height: 36px; } - -span.icon-primary-calendar:before { - position: absolute; - top: 7px; - left: 13px; - color: #0568ae; } - -span.icon-primary-calendar.disabled { - background-color: #f2f2f2; } - -span.icon-primary-calendar.disabled:before { - color: #959595; } - -span.icon-primary-calendar input { - padding-left: 35px; - color: #0568ae; - transition: border-color 0.3s linear 0s; - box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; - position: absolute; - top: 0; - left: 0; } - -.faux-input + input.datepicker-input:not([disabled]) { - cursor: pointer; - margin-left: 0; - background-color: #fff; - position: absolute; - left: 0; - top: 0; - z-index: 0; } - -.faux-input { - background-color: transparent !important; - border: 1px solid transparent; - border-radius: 4px; - font-size: 1.6rem; - height: 35px; - left: 0; - line-height: 35px; - margin-bottom: 10px; - margin-right: 6px; - padding: 0 0 0 35px; - position: relative; - text-align: left; - top: 0; - vertical-align: middle; - width: 100%; - z-index: 1; } - -.faux-input:disabled { - cursor: not-allowed; } - -.faux-input:focus + .datepicker-input, -[data-calendar-state="opened"] + .datepicker-input { - border-color: #0568ae; - box-shadow: 2px 3px 2px -2px rgba(5, 116, 172, 0.35) inset; - outline: 0 none; } - -.form-row.error .error-msg { - display: block; - font-size: 14px; - line-height: 14px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - position: relative; - padding-left: 18px; - margin-top: 10px; } - -.form-row.error .error-msg > .icon-primary-badgealert { - height: 14px; - width: 14px; - position: absolute; - left: 0; - margin-right: 0; } - -.form-row.error .error-msg > .icon-primary-badgealert:before { - color: #cf2a2a; - font-size: 14px; - left: 0; - line-height: 14px; - position: absolute; - vertical-align: middle; } - -.form-row.error label, -.form-row.error .error-msg, -.form-row.error button.awd-select, -.form-row.error select.awd-select + span, -.form-row.error .checkbox, -.form-row.error .radio, -.form-row.error legend.error, -.form-row.error input, -.form-row.error textarea { - color: #cf2a2a; } - -.form-row.error .btn-group > .btn, -.form-row.error button.awd-select, -.form-row.error .awd-select-list, -.form-row.error select.awd-select + span, -.form-row.error textarea, -.form-row.error input, -.form-row.error .checkbox .skin, -.form-row.error .radio .skin { - border-color: #cf2a2a !important; } - -.form-row.error .checkbox input:checked:not(:disabled) + .skin { - background-color: #cf2a2a; } - -.form-row.error .radio input:checked + .skin:after { - background-color: #cf2a2a; } - -.error [class*="price"], -.error [class*="pricing-"] { - color: #cf2a2a; } - -hr, -.hr-or { - display: block; - height: 1px; - margin: 15px 0; - border: none; - background-repeat: repeat-x; - background-color: #959595; - position: relative; } - -hr.dark { - background-color: #959595; } - -hr.lite { - background-color: #d2d2d2; } - -.hr-or:before { - background-color: #fff; - color: #666; - content: " OR "; - display: block; - font-size: 1.4rem; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - height: 16px; - left: 50%; - line-height: 1.6rem; - margin-left: -15px; - margin-top: -8px; - position: absolute; - text-align: center; - top: 50%; - width: 30px; - z-index: 1111; } - -hr.hr-dotted.dark { - background-color: transparent; - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E"); - background-position: bottom; - background-repeat: repeat-x; - background-size: 4px 1px; - width: 100%; } - -hr.hr-dotted.lite { - background-color: transparent; - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(204%2C204%2C204%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E"); } - -hr.is-vertical.dark, -hr.hr-or.dark, -hr.is-vertical.lite, -hr.hr-or.lite { - display: inline-block; - height: auto; - margin: 0 15px; - min-height: 20px; - width: 1px; } - -hr.is-vertical.dark, -hr.hr-or.dark { - background-color: #959595; } - -hr.is-vertical.lite, -hr.hr-or.lite { - background-color: #d2d2d2; } - -.hr-dotted.is-vertical.dark, -.hr-dotted.is-vertical.lite { - background-color: transparent; - background-repeat: repeat-y; - background-size: 1px 4px; - height: auto; - min-height: 20px; - width: 1px; } - -.hr-dotted.is-vertical.dark { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A1px%3B%20height%3A100%25%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%22100%25%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%221%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E"); } - -.hr-dotted.is-vertical.lite { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A1px%3B%20height%3A100%25%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(204%2C204%2C204%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%22100%25%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%221%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E"); } - -.row-nowrap > .span + hr.is-vertical, -.row > .span + hr.is-vertical { - margin: 0 0 0 -20px; } - -@media (max-width: 767px) { - hr, - .hr-or { - margin: 30px 0; } - hr.full { - margin-left: -15px; - margin-right: -15px; } - .hr-or.is-vertical { - min-height: 1px; - height: 1px; - width: 100%; } - .row-nowrap > .span + hr.is-vertical { - margin: 0 0 0 -15px; } - .row > .span + hr.is-vertical { - min-height: 1px; - height: 1px; - width: 100%; - margin: 0; - display: block; } - .row > .span + hr.is-vertical.lite { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(204%2C204%2C204%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; - background-size: 4px 1px; - background-repeat: repeat-x; } - .row > .span + hr.is-vertical.dark { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; - background-size: 4px 1px; - background-repeat: repeat-x; } } - -hr.bottom-space-only { - margin-top: 0; } - -.hr-nomargin { - margin: 0; } - -.radio { - position: relative; - min-height: 24px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.6rem; - margin-bottom: 5px; } - .radio input { - -webkit-tap-highlight-color: transparent; - height: 10px; - margin: 6px; - opacity: 0; - outline: none; - position: absolute; - left: 1px; - top: 1px; - width: 10px; } - .radio input:focus + .skin { - border-color: #0568ae; } - .radio input:focus + .skin:before { - content: ""; - height: 34px; - left: -6px; - top: -6px; - outline: 1px dotted #000000; - position: absolute; - width: 34px; } - .radio input + .skin { - border-radius: 100%; } - .radio input:checked + .skin:after { - background-color: #0568ae; - border-radius: 100%; - border: 3px solid #FFFFFF; - content: ""; - display: block; - height: 16px; - position: absolute; - width: 16px; } - .radio input:disabled + .skin { - cursor: not-allowed; - background-color: #d2d2d2; - border-color: #d2d2d2; - color: #666666; } - .radio input:disabled + .skin + span { - cursor: not-allowed; - color: #666666; } - .radio input:disabled:checked + .skin:after { - background-color: #666666; } - .radio input:invalid + .skin { - border: solid 1px #cf2a2a; } - .radio .skin { - background-color: #FFFFFF; - border: 1px solid #d2d2d2; - border-radius: 3px; - display: inline-block; - height: 24px; - left: 0; - position: absolute; - top: 0; - width: 24px; } - .radio span { - display: inline-block; - margin-left: 34px; - margin-top: 0; - position: relative; - top: 3px; } - .radio label { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; } - -.radio.inline { - display: inline-block; - margin-bottom: 10px; - vertical-align: middle; - margin-right: 10px; } - .radio.inline:last-child { - margin-right: 0; } - -.radio-box { - border: 1px solid #d2d2d2; - border-radius: 8px; } - .radio-box > [role="radio"] label { - padding: 15px 15px 20px 15px; - display: block; - width: 100%; } - .radio-box > [role="radio"] label .skin + span { - top: 2px; } - .radio-box > [role="radio"] + div { - padding: 0 15px 15px 47px; } - .radio-box > [aria-checked="false"] label > input { - top: 15px; - left: 15px; } - .radio-box > [aria-checked="false"] label .skin { - top: 15px; - left: 15px; } - .radio-box > [aria-checked="true"] label > input { - top: 13px; - left: 13px; } - .radio-box > [aria-checked="true"] label .skin { - top: 13px; - left: 13px; } - -.radio-box.active { - border: 3px solid #0568ae; } - .radio-box.active > [role="radio"] label { - padding: 13px 14px 19px 13px; } - -.checkbox { - position: relative; - min-height: 24px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.6rem; - margin-bottom: 5px; } - .checkbox input { - -webkit-tap-highlight-color: transparent; - height: 10px; - margin: 6px; - opacity: 0; - outline: none; - position: absolute; - left: 1px; - top: 1px; - width: 10px; } - .checkbox input:focus + .skin { - border-color: #0568ae; } - .checkbox input:focus + .skin:before { - content: ""; - height: 34px; - left: -6px; - top: -6px; - outline: 1px dotted #000000; - position: absolute; - width: 34px; } - .checkbox input:checked:not(:disabled) + .skin { - background-color: #0568ae; - border-color: #0568ae; } - .checkbox input:checked:disabled + .skin:after { - color: #5A5A5A; } - .checkbox input:checked + .skin:after { - height: 24px; - width: 24px; - background-color: transparent; - font-size: 23.4px; - color: #FFFFFF; - line-height: 21px; } - .checkbox input:disabled + .skin { - cursor: not-allowed; - background-color: #d2d2d2; - border-color: #d2d2d2; - color: #666666; } - .checkbox input:disabled + .skin + span { - cursor: not-allowed; - color: #666666; } - .checkbox input:invalid + .skin { - border: solid 1px #cf2a2a; } - .checkbox input:indeterminate + .skin:after { - background-color: transparent; - font-size: 25px; - color: #0574ac; - content: "\e920"; } - .checkbox .skin { - background-color: #fff; - border: 1px solid #d2d2d2; - border-radius: 3px; - display: inline-block; - height: 24px; - width: 24px; - position: absolute; - left: 0; - top: 0; } - .checkbox span { - display: inline-block; - margin-left: 34px; - margin-top: 0; - position: relative; - top: 3px; } - .checkbox label { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02", Arial; } - .checkbox input { - z-index: 9999; } - .checkbox input.indeterminate + .skin:after { - font-size: 22px; - color: #0568ae; } - -.checkbox.inline { - display: inline-block; - margin-bottom: 10px; - vertical-align: middle; - margin-right: 10px; } - .checkbox.inline:last-child { - margin-right: 0; } - -.checkbox.checkbox-selectall { - margin: 20px 0 0 24px; } - -.terms-after-checkbox { - margin-top: 15px; } - -.indeterminate-margin { - padding-left: 24px; } - -.tiny-accordion { - border-bottom: 1px solid #d2d2d2; } - -.toggle-header, -.inactive-toggle-header { - border-color: #fff; - color: #0568ae; - cursor: pointer; - display: block; - font-size: 2.0rem; - line-height: 2.2rem; - min-height: 41px; - position: relative; - padding: 16px 55px 16px 15px; } - -.toggle-header.opened { - color: #333333; } - -.tiny-accordion .toggle-header, -.tiny-accordion .inactive-toggle-header { - padding: 16px 55px 16px 15px; - border-top: 1px solid #d2d2d2; } - -.tiny-accordion .toggle-header:focus { - text-decoration: underline; } - -.tiny-accordion.iconleft .toggle-header, -.tiny-accordion.iconleft .inactive-toggle-header { - padding: 15px 15px 15px 50px; } - -.accordion-content { - font-size: 1.4rem; } - -.accordion-content .toggle-header:first-child { - margin-top: 16px; } - -.tiny-accordion .toggle-header + .accordion-content { - padding: 0 50px 15px 15px; } - -.tiny-accordion.iconleft .toggle-header + .accordion-content { - padding: 0 15px 15px 50px; } - -.toggle-header .icon-primary-accordion-plus, -.toggle-header .icon-primary-accordion-minus { - display: inline-block; - font-size: 20px; - margin: 0; - padding: 0; - position: absolute; - right: 15px; - vertical-align: middle; - top: 16px; - font-weight: bold; } - -.tiny-accordion.iconleft .toggle-header .icon-primary-accordion-plus, -.tiny-accordion.iconleft .toggle-header .icon-primary-accordion-minus { - left: 15px; } - -.inactive-toggle-header:hover { - cursor: inherit; } - -.tiny-accordion-to-tabs, -.tiny-tabs { - position: relative; - width: 100%; - margin: 0px; - padding: 0px; } - -.tiny-tabs [class*="icon-primary-accordion-"] { - display: none !important; } - -.tiny-accordion-to-tabs:before, -.tiny-accordion-to-tabs:after, -.tiny-tabs:before, -.tiny-tabs:after { - display: table; - content: ""; - line-height: 0; } - -.tiny-accordion-to-tabs:after, -.tiny-tabs:after { - clear: both; } - -.tiny-accordion-to-tabs:before, -.tiny-accordion-to-tabs:after, -.tiny-tabs:before, -.tiny-tabs:after { - display: table; - content: ""; - line-height: 0; } - -.tiny-accordion-to-tabs:after, -.tiny-tabs:after { - clear: both; } - -.tiny-tabs > .toggle-header { - display: inline-block; - float: left; - border-top: none; - overflow: hidden; - height: 70px; - text-align: center; - background-color: #fff; - border-radius: 0px; - padding: 26px 20px 25px 20px !important; - border-top: 1px solid #fff; - -webkit-filter: none; - filter: none; - background-clip: padding-box; - border-bottom: 1px solid #d2d2d2; - font-weight: normal; - border-right: 1px solid #d2d2d2; - white-space: nowrap; } - -.tiny-tabs .toggle-header + div { - left: 0px; - position: absolute; - top: 69px; - border-top: 1px solid #d2d2d2; - padding: 0; - display: block; - border-bottom: none; - width: 100%; } - -.accordion-pad { - padding-top: 30px; - padding-bottom: 30px; } - -.tiny-tabs .opened { - color: #333333; - border-top: 5px solid #0568ae !important; - padding-top: 22px !important; - border-bottom: none; - background-color: #fff; - -webkit-filter: none; - filter: none; - cursor: default; - z-index: 999; } - -.tiny-tabs .toggle-header:focus { - text-decoration: underline; - outline: thin dotted #666; - outline-offset: 0; } - -.tiny-tabs .toggle-header:first-child { - border-left: none; - margin-left: 0; } - -.tiny-tabs .toggle-header:first-child { - border-left: 1px solid #fff; } - -.tiny-tabs .opened:first-child { - border-left: 1px solid #d2d2d2; } - -.tiny-tabs .toggle-header:nth-last-of-type(2) { - border-right-color: #fff; } - -.tiny-tabs .opened:nth-last-of-type(2) { - border-right: 1px solid #d2d2d2; } - -@media (max-width: 767px) { - .tiny-accordion, - .tiny-accordion-to-tabs { - margin-left: -15px; - margin-right: -15px; - width: auto; } - .tiny-accordion-to-tabs { - display: block; - border-bottom: 1px solid #d2d2d2; } - .tiny-accordion-to-tabs .toggle-header { - display: block; - min-height: 41px; - padding: 16px 50px 16px 15px; - border-top: 1px solid #d2d2d2; } - .tiny-accordion-to-tabs .toggle-header:focus { - text-decoration: underline; } - .tiny-accordion-to-tabs .toggle-header + .accordion-content { - padding: 0 50px 15px 15px; } } - -@media (min-width: 768px) { - .tiny-accordion-to-tabs [class*="icon-primary-accordion-"] { - display: none !important; } - .tiny-accordion-to-tabs > .toggle-header { - display: inline-block; - float: left; - border-top: none; - /*overflow: hidden;*/ - height: 70px; - text-align: center; - background-color: #fff; - border-radius: 0px; - padding: 26px 20px 25px 20px !important; - border-top: 1px solid #fff; - -webkit-filter: none; - filter: none; - background-clip: padding-box; - border-bottom: 1px solid #d2d2d2; - font-weight: normal; - border-right: 1px solid #d2d2d2; - white-space: nowrap; } - .tiny-accordion-to-tabs .toggle-header + div { - left: 0px; - position: absolute; - top: 69px; - border-top: 1px solid #d2d2d2; - padding-top: 30px; - padding-left: 20px; - display: block; - border-bottom: none; - width: 100%; } - .tiny-accordion-to-tabs .opened { - color: #333333; - border-top: 5px solid #0568ae !important; - padding-top: 22px !important; - border-bottom: none; - background-color: #fff; - -webkit-filter: none; - filter: none; - cursor: default; - text-decoration: none; - z-index: 999; } - .tiny-accordion-to-tabs .toggle-header:focus { - text-decoration: underline; - outline: thin dotted #666; - outline-offset: 0px; } - .tiny-accordion-to-tabs .toggle-header:nth-last-of-type(2) { - border-right: none; } - .tiny-accordion-to-tabs .toggle-header:first-child { - border-left: none; - margin-left: 0; } - .tiny-accordion-to-tabs .toggle-header:first-child { - border-left: 1px solid #fff; } - .tiny-accordion-to-tabs .opened:first-child { - border-left: 1px solid #d2d2d2; } - .tiny-accordion-to-tabs .opened:nth-last-of-type(2) { - border-right: 1px solid #d2d2d2; } } - -.toggle-header .tooltip .icon-primary-tooltip { - margin-top: -5px; } - -.accordion-content { - transition: all 0.8s linear; } - -.opaque-content { - opacity: 0; } - -.tiny-tabs .toggle-header { - display: inline-block; - float: left; - border-top: none; - overflow: hidden; - height: 70px; - text-align: center; - background-color: #fff; - border-radius: 0px; - padding: 22px 20px 25px 20px !important; - border-top: 5px solid #fff; - -webkit-filter: none; - filter: none; - background-clip: padding-box; - border-bottom: 1px solid #ccc; - font-weight: normal; - border-right: 1px solid #ccc; - white-space: nowrap; } - -.tiny-tabs .toggle-header:first-child { - margin-left: 0; } - -.tiny-tabs div:first-child .toggle-header { - margin-left: 30px; } - -.tiny-tabs > div .toggle-header.opened { - border-bottom: 0 !important; } - -.tiny-accordion-to-tabs > div > div.toggle-header { - background-clip: padding-box; - background-color: #fff; - border-bottom: 1px solid #ccc; - border-radius: 0; - border-top: 5px solid #fff; - display: inline-block; - filter: none; - float: left; - font-weight: normal; - overflow: hidden; - padding: 22px 20px 21px !important; - text-align: center; - white-space: nowrap; } - -.tiny-accordion-to-tabs .toggle-header:first-child { - margin-left: 0; } - -.tiny-accordion-to-tabs div:first-child .toggle-header { - margin-left: 30px; - border-bottom: 0 !important; } - -.tiny-accordion-to-tabs > div .toggle-header.opened { - border-bottom: 0 !important; } - -@media (max-width: 767px) { - .tiny-accordion-to-tabs { - display: block !important; - border-bottom: 1px solid #ccc !important; } - .tiny-accordion-to-tabs > div > div.toggle-header { - display: block !important; - float: none; - text-align: left; - min-height: 41px !important; - padding: 15px 50px 15px 15px !important; - border-top: 1px solid #ccc; } - .tiny-accordion-to-tabs > div > div.toggle-header:first-child { - margin-left: 0 !important; } - .tiny-accordion-to-tabs > div > div.toggle-header + .accordion-content { - padding: 0 50px 15px 15px; } - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus { - background-position: 0 0; - background-size: 20px 40px; } - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { - background-position: 0 -20px; - background-size: 20px 40px; } - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus, - .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { - display: inline-block; - height: 20px; - margin: 0; - padding: 0; - position: absolute; - right: 15px; - vertical-align: middle; - width: 20px; } } - -.alert { - background-color: #5a5a5a; - border-radius: 8px; - color: #fff; - margin-top: 15px; - padding: 0; - position: relative; - border: 0; } - -.alert h3, -.alert h4 { - color: #fff; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 1.6rem; - margin: 0 20px 5px 0; } - -.alert div { - padding: 15px 20px; } - -.alert div:first-child { - border-radius: 8px 0 0 8px; - width: 1%; } - -.alert div:first-child + div { - border: 1px solid transparent; - border-left: none; - border-radius: 0 8px 8px 0; } - -.alert-error { - background-color: #cf2a2a; - border: 1px solid #cf2a2a; } - -.alert-info { - background-color: #44c8f5; - border: 1px solid #44c8f5; } - -.alert-success { - background-color: #c5d63d; - border: 1px solid #c5d63d; } - -.alert [class*="icon-primary-"] { - color: #fff; - font-size: 30px; - margin-right: 0; } - -.alert .close { - height: 30px; - position: absolute; - right: 1px; - top: 1px; - width: 30px; } - -.alert .close:before { - color: #fff; - margin-right: 0; - position: absolute; - right: 9px; - top: 9px; } - -.alert a { - color: #fff; - text-decoration: underline; } - -.alert .close:focus { - outline: 1px dotted #666; } - -.alert p { - font-size: 1.4rem; } - -.alert p:last-child { - margin-bottom: 0; } - -.alert .standalone-link i[class*="icon-primary-"] { - font-size: 20px; - margin-right: 5px; } - -@media (max-width: 767px) { - .alert { - border-radius: 0; - margin: 0 -15px; } - .alert + .alert { - margin-top: 4px; } - .alert div { - padding: 15px 10px; } - .alert div:first-child { - border-radius: 0; - padding: 15px; } - .alert h3, - .alert h4 { - font-size: 1.4rem; } - .alert p { - font-size: 1.2rem; } - .alert .close { - right: 5px; - top: 5px; } - .alert .standalone-link i[class*="icon-primary-"] { - font-size: 16px; } } - -.alert h3 { - margin: 0; - font-size: 16px; } - -.alert p { - font-size: 14px; } - -.alert p a { - color: #FFFFFF; - text-decoration: underline; } - -.alert div:first-child + div { - padding-right: 25px; } - -.alert div:last-child { - padding-right: 20px !important; } - -.alert p [class*="icon-primary-"] { - color: #fff; - font-size: 20px; - margin-right: 0; } - -@media (max-width: 767px) { - .alert h3 { - font-size: 14px; } - .alert div:first-child + div { - padding-right: 20px; } - .alert div:last-child { - padding-right: 15px !important; } - .alert div:first-child { - padding: 15px; } - .alert p { - font-size: 12px; } - .alert p [class*="icon-primary-"] { - font-size: 16px; } } - -.b2b-audio { - width: auto; - margin: 10px auto; - height: 35px; } - .b2b-audio .controls-wrapper { - display: inline-block; - font-size: 25px; - cursor: pointer; } - .b2b-audio .controls-wrapper i { - font-size: 25px; - margin-right: 0px; - color: #444; } - .b2b-audio .controls-wrapper i:hover { - color: #0574AC; } - .b2b-audio .seek-bar-container-wrapper { - display: inline-block; - outline: 0; - min-width: 180px; - margin-right: 10px; - margin-left: 10px; - height: 14px; - padding-top: 5px; } - .b2b-audio .seek-bar-container-wrapper .timing-container { - padding-top: 13px; - color: #333; - font-size: 12px; } - .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-left { - float: left; - line-height: 100%; } - .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-right { - float: right; - line-height: 100%; } - .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-spacer { - clear: both; } - .b2b-audio .seek-bar-tooltip { - text-align: center; - min-width: 76px; } - -.b2b-audio-popover { - width: 22px; } - .b2b-audio-popover .volume-popover { - height: 100px !important; - width: 6px !important; - margin: 7px auto; } - .b2b-audio-popover .min-label { - margin-top: 5px; } - -.b2b-audio-native { - width: auto; - height: auto; } - -.b2b-audio-recorder { - border: 1px solid #ccc; - box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15); - height: 63px; - min-height: 63px; - min-width: 347px; } - .b2b-audio-recorder .b2b-elapsed-time { - margin: 23px 0 24px 15px; - font-size: 16px; - font-style: italic; - color: #767676; } - .b2b-audio-recorder .b2b-controls { - width: 68px; - cursor: pointer; } - .b2b-audio-recorder .b2b-controls i.icoControls-record { - font-size: 64px; - color: black; - float: right; - margin-right: 10px; } - .b2b-audio-recorder .b2b-controls i.icoControls-record:focus, .b2b-audio-recorder .b2b-controls i.icoControls-record:hover { - color: #0568ae; } - .b2b-audio-recorder .b2b-controls i.icoControls-stop { - font-size: 36px; - color: black; - float: right; - margin-right: 20px; - margin-top: 12px; } - .b2b-audio-recorder .b2b-controls i.icoControls-stop:focus, .b2b-audio-recorder .b2b-controls i.icoControls-stop:hover { - color: #0568ae; } - -.b2b-top-btn { - height: 36px; - width: 36px; - border-radius: 7px; } - -.b2b-top-btn > i { - position: absolute; - top: 13px; - left: 9px; - width: 11px; - height: 18px; } - -.b2b-badge { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - background-color: #5A5A5A; - border-radius: 12px; - color: #FFFFFF; - display: inline-block; - font-size: 1.5rem; - font-weight: normal; - height: 20px; - line-height: 0; - margin-top: 0; - min-width: 20px; - padding: 0 5px; - text-align: center; - vertical-align: baseline; } - .b2b-badge:empty { - display: none; } - -* + .b2b-heading-micro { - margin-top: 20px !important; } - -.b2b-heading-micro { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: normal; - text-rendering: optimizeLegibility; - font-size: 1.2rem !important; - text-transform: uppercase !important; - margin-bottom: 20px !important; - line-height: 1.2 !important; } - -.b2b-no-colors .b2b-badge { - border: 1px solid transparent; } - -.btn > .b2b-badge { - margin-right: 5px; } - -a > .b2b-badge { - margin-right: 6px; - padding-top: 10px; } - -.b2b-badge-urgent { - background-color: #cf2a2a; } - -.bellyband-container { - margin: 0 -15px; } - -.bellyband-group { - width: auto; } - -.bellyband-link { - border-top: 1px solid #d2d2d2; } - -.bellyband-link a { - display: block; - height: 40px; - line-height: 40px; - padding: 0 15px; - position: relative; - text-decoration: none; } - -.bellyband-link a:hover > div span, -.bellyband-link a:focus > div span { - text-decoration: underline; } - -.bellyband-link a:after { - color: #666; - font-size: 2.3rem; - height: 20px; - position: absolute; - right: 5px; - top: 12px; - width: 18px; } - -.dark-bg .bellyband-link a:after { - color: white; } - -.bellyband-link img[src$="svg"].hidden-desktop, -.bellyband-link [class*="icon-primary-"].hidden-desktop { - display: inline-block !important; - float: left; - font-size: 24px; - height: 24px; - margin-right: 5px; - margin-top: 8px; - width: 24px; } - -.dark-bg .bellyband-link [class*="icon-primary-"].hidden-desktop, -.dark-bg .bellyband-link [class*="icon-primary-"].visible-desktop { - color: #fff; } - -.bellyband-link img[src$="svg"].visible-desktop { - display: none !important; } - -.bellyband-link p { - margin-top: -10px; - margin-left: 29px; - font-size: 1.4rem; - color: #666; } - -@media (min-width: 481px) and (max-width: 767px) { - .bellyband-container { - display: flex; - margin: 0; } - .bellyband-group { - align-content: flex-start; - align-items: stretch; - display: inline-flex; - flex-direction: column; - flex-wrap: wrap; - margin-top: 1px; - width: 100%; } - .bellyband-group .row { - display: flex !important; } - .bellyband-link { - padding-top: 0; - position: relative; - border-top: none; - margin-bottom: 20px; - width: 50%; } - .bellyband-link a { - height: inherit; - line-height: inherit; - display: flex; - padding: 0; } - .bellyband-link a:after { - display: none; } - .bellyband-link a span { - display: block; - padding-top: 10px; } - .bellyband-link p { - display: block; - padding: 0 15px 0 0; - margin-bottom: 0; - margin-left: 0; - margin-top: 0; } - .bellyband-link a:focus p { - text-decoration: none; } } - -@media (min-width: 768px) { - .bellyband-group { - margin: 0; - max-width: 100%; - display: flex; - flex-wrap: wrap; - justify-content: center; } - .bellyband-group .row { - display: block; } - .bellyband-group .row .span { - float: none; - margin-right: 0; - margin-bottom: 30px; - display: flex; - justify-content: space-between; } - .bellyband-link { - border-top: none; - flex: 0 0 auto; - margin-right: 0; - margin-bottom: 30px; } - .bellyband-link:last-child { - margin-right: 0; } - .bellyband-link a { - height: auto; - line-height: 1; - text-align: center; } - .bellyband-link a:after { - display: none; } - .bellyband-link img[src$="svg"].hidden-desktop, - .bellyband-link [class*="icon-primary-"].hidden-desktop { - display: none !important; } - .bellyband-link img[src$="svg"].visible-desktop, - .bellyband-link [class*="icon-primary-"].visible-desktop { - display: block !important; - font-size: 50px; - height: 50px; - margin-right: 0; - margin-top: 0; - margin-left: auto; - margin-right: auto; - width: auto; } - .bellyband-link a span { - display: block; - margin-top: 12px; - line-height: 2rem; } - .bellyband-link p { - display: block; - text-align: center; - margin-top: 6px; - margin-left: 0; - padding-left: 0 !important; - color: #666; - line-height: 1.8rem; } } - -@media (max-width: 480px) { - .bellyband-link-tall a { - height: auto; - padding: 0 40px 10px 15px; } - .bellyband-link-tall p { - line-height: 1.8rem; - margin-bottom: 0; } - .bellyband-link-tall > a:after { - margin-top: -8px; - top: 50%; } } - -.b2b-boardstrip { - display: inline-block; - width: 100%; - border-bottom: 1px solid #9d9d9d; - position: relative; - padding-top: 15px; } - .b2b-boardstrip .boardstrip-reel { - margin-bottom: 15px; } - .b2b-boardstrip .boardstrip-item--add { - border: 1px dashed #ccc; - background: #FFFFFF; - color: #0574ac; - width: 140px; - height: 80px; - font-size: 14px; - font-family: "Omnes-ECOMP-W02", Arial; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 3px; - position: absolute; - left: 29px; - top: 15px; } - .b2b-boardstrip .boardstrip-item--add:hover, .b2b-boardstrip .boardstrip-item--add:focus { - border: 2px solid #007A3E; - cursor: pointer; } - .b2b-boardstrip .boardstrip-item--add i { - font-size: 14px; - margin-left: auto; - margin-right: auto; - text-align: initial; } - .b2b-boardstrip .boardstrip-item--add .centered { - margin-left: auto; - margin-right: auto; - margin-top: 27px; - margin-bottom: 35px; - display: block; } - .b2b-boardstrip .board-viewport { - float: left; - margin-left: 210px; - max-height: 95px; - position: relative; - height: 95px; - overflow: hidden; - width: 0px; } - .b2b-boardstrip .board-viewport .boardstrip-container { - width: 0px; - margin-left: 0; - left: 0px; - position: absolute; - list-style: none; - -webkit-transition: left 1000ms; - transition: left 1000ms; } - .b2b-boardstrip .board-viewport .board-item { - width: 140px; - height: 80px; - border: 1px solid #ccc; - margin: 0 15px 15px 0; - background-color: #FFFFFF; - border-radius: 3px; - float: left; - overflow: hidden; } - .b2b-boardstrip .board-viewport .board-item:hover, .b2b-boardstrip .board-viewport .board-item:focus { - border: 2px solid #007A3E; - background-color: white; - cursor: pointer; } - .b2b-boardstrip .board-viewport .board-item .board-img { - width: 61px; - height: 40px; - margin: 0 auto; } - .b2b-boardstrip .board-viewport .board-item .board-img img { - max-width: 100%; } - .b2b-boardstrip .board-viewport .board-item .title { - text-align: center; - line-height: 16px; - color: #666; - font-size: 14px; - font-family: "Omnes-ECOMP-W02", Arial; - padding: 10px 0; } - .b2b-boardstrip .board-viewport .board-item.selected { - background-color: #FFFFFF; - border: 2px solid #0574ac; } - .b2b-boardstrip .board-viewport .board-item .board-caret { - cursor: default; - outline: 0; - position: absolute; - bottom: 7px; } - .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-indicator { - border-left: 8px solid transparent; - border-right: 8px solid transparent; - border-bottom: 8px solid #999; - width: 0px; - height: 0px; - position: absolute; - left: 61px; - bottom: -7px; } - .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-arrow-up { - width: 0px; - height: 0px; - border-style: solid; - border-width: 0 8px 8px 8px; - border-color: transparent transparent #FFFFFF transparent; - left: 61px; - position: absolute; } - .b2b-boardstrip .arrow { - font-size: 14px; - cursor: pointer; - color: #0574ac; } - .b2b-boardstrip .arrow:hover { - color: #0574ac; } - .b2b-boardstrip .arrow.disabled { - color: #767676 !important; - cursor: not-allowed; } - .b2b-boardstrip .prev-items { - display: inline-block; - margin-top: auto; - margin-bottom: auto; - margin-right: 15px; - position: absolute; - left: 0; - top: 45px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; } - .b2b-boardstrip .next-items { - display: inline-block; - margin-top: 30px; - margin-bottom: auto; - margin-left: 10px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - -o-user-select: none; - user-select: none; } - .b2b-boardstrip .centered { - display: table-cell; - text-align: center; - vertical-align: middle; } - -.breadcrumb { - padding: 10px 15px; - height: 40px; - list-style: none; - border-bottom: 1px solid #d2d2d2; - font-size: 1.2rem; - width: 100%; - z-index: 1000; } - -.breadcrumb > li { - position: relative; - display: inline-block; - margin-right: 15px; } - -.breadcrumb > li:after { - font-size: 8px; - margin-right: 0; - right: -8px; - color: #333333; } - -.breadcrumb > li:last-child { - color: #333333; } - -.breadcrumb > li:last-child:after { - content: ""; } - -.breadcrumb li > * { - float: none !important; - margin: 0; } - -.breadcrumb { - padding: 10px 15px !important; } - -/* ARROW */ -/* spanish */ -.datepicker { - background-color: #FFFFFF; - padding: 0; - border-radius: 5px; - direction: ltr; } - .datepicker > div { - display: none; } - .datepicker table { - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - margin: 0 0 0 0; } - .datepicker td { - text-align: center; - display: block; - width: 30px; - height: 30px; - border: none; } - .datepicker td span { - display: block; - width: 23%; - height: 54px; - line-height: 54px; - float: left; - margin: 1%; - cursor: pointer; - border-radius: 4px; } - .datepicker td span:hover { - background: #eeeeee; } - .datepicker td span.disabled { - background: none; - color: #5A5A5A; - cursor: default; } - .datepicker td span.disabled:hover { - background: none; - color: #5A5A5A; - cursor: default; } - .datepicker td span.active { - color: #FFFFFF; - background-color: #0568ae; - border-color: #357ebd; } - .datepicker td span.active:hover { - color: #FFFFFF; - background-color: #0568ae; - border-color: #357ebd; } - .datepicker td span.active.disabled { - color: #FFFFFF; - background-color: #0568ae; - border-color: #357ebd; } - .datepicker th { - text-align: center; - display: block; - width: 30px; - height: 30px; - border: none; } - .datepicker tbody:focus { - outline: none; } - .datepicker td.day { - background-color: transparent; - color: #0568ae; - cursor: pointer; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - height: 34px; - line-height: 30rem; - margin: -2px -1px 0 0; - overflow: hidden; - text-align: center; - width: 42px; } - .datepicker:focus { - outline: 1px dotted #191919; - outline-offset: -2px; } - .datepicker th[tabindex]:focus { - outline-offset: -15px; } - .datepicker td.day.focused { - background: #ededed; - cursor: pointer; } - .datepicker td.day.focused.active { - background-color: #ededed; - color: #0568ae; } - .datepicker td.disabled { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; - cursor: default; } - .datepicker td.disabled:hover { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; - cursor: default; } - .datepicker td.disabled:hover .show-date { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; } - .datepicker td.disabled .show-date { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5A5A5A; } - .datepicker td.today { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today:hover { - color: #FFFFFF; - background-color: #0568ae; - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today:active { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today:focus { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today.disabled { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today.active { - color: #FFFFFF; - background-color: #0568ae; } - .datepicker td.today.active:hover { - color: #FFFFFF; } - .datepicker td.selected { - color: #FFFFFF; - background-color: #959595; } - .datepicker td.selected:hover { - color: #FFFFFF; - background-color: #959595; } - .datepicker td.selected.disabled { - color: #FFFFFF; - background-color: #959595; } - .datepicker td.active:not(.new) { - color: #FFFFFF; - border-color: #357ebd; } - .datepicker td.active:not(.new) .show-date { - color: #0568ae; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - .datepicker td.active:hover:not(.new) { - color: #FFFFFF; - border-color: #357ebd; } - .datepicker td.active:hover:not(.new) .show-date { - color: #0568ae; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - .datepicker .start-date .show-date { - background-color: #0568ae; - color: #FFFFFF !important; - border-radius: 5px 0 0 5px; - z-index: 1; } - .datepicker .start-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 20px; - position: absolute; - width: 100%; - z-index: -1; } - .datepicker .between-date .show-date { - background-color: #0568ae; - color: #FFFFFF !important; } - .datepicker .between-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 0; - position: absolute; - width: 100%; - z-index: -1; } - .datepicker .between-date:first-child .show-date:before { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - .datepicker .end-date .show-date { - background-color: #0568ae; - color: #FFFFFF !important; - border-radius: 0 5px 5px 0; } - .datepicker .end-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: -20px; - position: absolute; - width: 100%; - z-index: -1; } - .datepicker .end-date:first-child .show-date:after { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - .datepicker .end-date:first-child .show-date::before { - background-color: #FFFFFF; } - .datepicker tr td.start-date:last-child .show-date:after { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - right: 0; - width: 8px; } - .datepicker tr td.start-date:last-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.start-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.between-date:last-child .show-date:after { - background-color: #FFFFFF; - content: ""; - height: 26px; - position: absolute; - right: 0; - width: 8px; } - .datepicker tr td.between-date:last-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.between-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.end-date:last-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker tr td.end-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - .datepicker th.datepicker-switch { - width: 198px; - font-size: 20px; - font-weight: normal; - cursor: default !important; } - .datepicker thead tr:first-child th { - cursor: pointer; - height: 60px; - line-height: 60px; } - .datepicker thead tr:first-child th.cw { - cursor: default; - background-color: transparent; } - .datepicker tfoot tr th { - cursor: pointer; - height: 60px; - line-height: 60px; - height: auto; - line-height: normal; } - .datepicker tfoot tr th li { - margin-bottom: 5px; } - .datepicker .prev { - color: transparent; - font-size: 0; - margin: 0 -1px -1px 0; - width: 46px; } - .datepicker .prev i { - color: #0568ae; - position: absolute; - font-size: 27px; - margin: 0; - top: 15px; - left: 8px; } - .datepicker .next { - color: transparent; - font-size: 0; - margin: 0 -1px -1px 0; - width: 46px; } - .datepicker .next i { - color: #0568ae; - position: absolute; - font-size: 27px; - margin: 0; - top: 15px; - right: 8px; } - .datepicker .cw { - font-size: 10px; - width: 12px; - padding: 0 2px 0 5px; - vertical-align: middle; } - .datepicker .due-date .show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - background-color: #cf2a2a; - border-radius: 5px; - color: #FFFFFF !important; } - .datepicker .day.active .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; } - .datepicker .day:focus .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; - height: 30px; - left: 4px; - top: 0; - width: 30px; } - .datepicker .due-date.disabled .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; } - .datepicker .day.due-date:focus .show-date:after { - height: 30px; - left: 4px; - top: 0; - width: 30px; } - .datepicker .due-date.old:after { - visibility: hidden; } - .datepicker .due-date.new:after { - visibility: hidden; } - .datepicker .due-date.active:after { - border-color: #FFFFFF; } - .datepicker .due-date.active.focused { - color: #0568ae !important; } - .datepicker .due-date.active.focused:after { - border-color: #cf2a2a !important; } - .datepicker .dow { - height: 24px; - width: 42px; - font-weight: normal; - position: relative; - overflow: hidden; - color: transparent; - letter-spacing: -6px; - margin: 0 -1px -1px 0; } - .datepicker .dow span[aria-hidden="true"] { - bottom: 0; - color: #5A5A5A; - display: block; - left: 1px; - letter-spacing: 0; - line-height: .9; - margin: 0 auto; - padding: 0; - position: relative; - width: 22px; } - .datepicker .calendar-legend { - margin-top: 3px; - margin-bottom: 20px; } - .datepicker .calendar-legend li { - font-size: 1.4rem; - font-weight: normal; - margin-bottom: 5px; - padding-left: 10px; - padding-top: 5px; - position: relative; } - .datepicker i.legend-due-date { - background-color: #cf2a2a; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - .datepicker i.legend-selected-date { - background-color: #FFFFFF; - border: 2px solid #0568ae; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - .datepicker i.legend-selectedisdue { - background-color: #FFFFFF; - border: 2px solid #0568ae; - border-radius: 5px; - display: inline-block; - height: 18px; - margin-right: 8px; - position: relative; - vertical-align: middle; - width: 18px; } - .datepicker i.legend-selectedisdue:after { - background-color: #cf2a2a; - border-radius: 3px; - content: ""; - display: block; - height: 10px; - left: 2px; - position: absolute; - top: 2px; - width: 10px; } - .datepicker .text-left { - width: 100%; } - .datepicker .active.old { - background-color: #ededed !important; - color: #ededed !important; } - -.datepicker-inline { - width: 220px; } - -.datepicker.datepicker-rtl { - direction: rtl; } - .datepicker.datepicker-rtl td span { - float: right; } - -.datepicker-dropdown { - top: 0; - left: 0; } - .datepicker-dropdown:before { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #d2d2d2; - border-top: 0; - border-bottom-color: rgba(0, 0, 0, 0.2); - position: absolute; } - .datepicker-dropdown:after { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #fff; - border-top: 0; - position: absolute; } - -.datepicker-dropdown.datepicker-orient-left:before { - left: 16px; } - -.datepicker-dropdown.datepicker-orient-left:after { - left: 16px; } - -.datepicker-dropdown.datepicker-orient-right:before { - right: 16px; } - -.datepicker-dropdown.datepicker-orient-right:after { - right: 16px; } - -.datepicker-dropdown.datepicker-orient-top:before { - top: -10px; } - -.datepicker-dropdown.datepicker-orient-top:after { - top: -9px; } - -.datepicker-dropdown.datepicker-orient-bottom:before { - bottom: -7px; - border-bottom: 0; - border-top: 7px solid #959595; } - -.datepicker-dropdown.datepicker-orient-bottom:after { - bottom: -6px; - border-bottom: 0; - border-top: 6px solid #fff; } - -.datepicker.days div.datepicker-days { - display: block; } - -.datepicker.months div.datepicker-months { - display: block; } - -.datepicker.years div.datepicker-years { - display: block; } - -.show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #0568ae; - height: 26px; - line-height: 26px; - margin: 4px auto 0; - width: 26px; } - -.input-group.date .input-group-addon i { - cursor: pointer; - width: 16px; - height: 16px; } - -.datepicker.dropdown-menu { - box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); - position: absolute; - top: 100%; - left: 0; - float: left; - display: none; - margin-top: 13px; - width: 290px; - list-style: none; - background-color: #FFFFFF; - border: 1px solid #d2d2d2; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 5px; - color: #333333; - font-size: 13px; - line-height: 1.428571429; - z-index: 1050; } - .datepicker.dropdown-menu th { - display: block; - float: left; - padding: 0; - position: relative; } - .datepicker.dropdown-menu td { - display: block; - float: left; - padding: 0; - position: relative; } - -.s { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -62px 0; } - -.m { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -5px 0; } - -.t { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -19px 0; } - -.w { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -34px 0; } - -.f { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: -49px 0; } - -.d { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - -.l { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - -.v { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - -.j { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: #FFFFFF; - background-repeat: no-repeat; - background-position: 0 0; } - -.b2b-coachmark-label { - z-index: 1060; - opacity: 1; - cursor: not-allowed; - position: relative; } - -.b2b-coachmark-highlight { - border: 1px solid #d3d3d3; - cursor: default; - z-index: 1045; - opacity: 1; - background-color: #ffffff; - border-radius: 10px; - position: relative; - box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); - padding: 10px; - position: absolute; } - -.b2b-coachmark-highlight-mask { - z-index: 1100; - opacity: .1; } - -.b2b-coachmark-container { - border: 1px solid #cccccc; - width: 316px; - pointer-events: auto; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - font-size: 16px; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - background: #fff; - border-radius: 20px; - box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15); - color: #333; - line-height: 20px; - position: absolute; - top: 50px; - left: -97px; - display: block; - background-color: #ffffff; - z-index: 1050; - opacity: 1; } - .b2b-coachmark-container i.b2b-coachmark-caret { - position: absolute; - top: -12px; - left: 47%; - opacity: 1; - z-index: 1050; } - .b2b-coachmark-container i.b2b-coachmark-caret:before { - content: ""; - border-left: 12px solid transparent; - border-right: 12px solid transparent; - border-bottom: 12px solid #d3d3d3; - position: absolute; - top: -1px; } - .b2b-coachmark-container i.b2b-coachmark-caret:after { - content: ""; - border-left: 12px solid transparent; - border-right: 12px solid transparent; - border-bottom: 12px solid #fff; - position: absolute; } - .b2b-coachmark-container .b2b-coachmark-header { - position: relative; - height: 47px; - overflow: hidden; } - .b2b-coachmark-container .b2b-coachmark-header .corner-button { - box-shadow: 0 -24px 0 0 #f2f2f2 inset; - height: 69px; - position: absolute; - right: -33px; - top: -38px; - transform: rotate(45deg); - width: 69px; } - .b2b-coachmark-container .b2b-coachmark-countlabel { - font-size: 12px; - font-family: "Omnes-ECOMP-W02, Arial"; - color: #333333; - margin-left: 20px; - margin-top: 20px; } - .b2b-coachmark-container .b2b-coachmark-content { - padding: 0px 20px 20px 20px; - float: left; } - .b2b-coachmark-container .b2b-coachmark-content .icon-misc-dimmer { - font-size: 32px; - float: left; - margin-right: 10px; - width: 32px; } - .b2b-coachmark-container .b2b-coachmark-content .offscreen-text { - position: absolute; - left: -10000px; - top: auto; - width: 1px; - height: 1px; - overflow: hidden; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-content-header { - font-size: 16px; - color: #333333; - line-height: 18px; - float: left; - width: 220px; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-description { - font-size: 14px; - line-height: 18px; - color: #333333; - width: 100%; - float: left; - margin-top: 15px; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group { - margin-top: 20px; - float: left; - text-align: right; - width: 100%; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group .b2b-coachmark-link { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 15px; - color: #0574ac; - line-height: 18px; - margin-right: 20px; } - .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group button { - font-size: 15px; - margin: 0px; } - -.datepicker { - background-color: #fff; - padding: 0; - border-radius: 5px; - direction: ltr; } - -.datepicker-inline { - width: 220px; } - -.datepicker.datepicker-rtl { - direction: rtl; } - -.datepicker.datepicker-rtl td span { - float: right; } - -.datepicker-dropdown { - top: 0; - left: 0; } - -/* ARROW */ -.datepicker-dropdown:before { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #d2d2d2; - border-top: 0; - border-bottom-color: rgba(0, 0, 0, 0.2); - position: absolute; } - -.datepicker-dropdown:after { - content: " "; - display: inline-block; - border-left: 10px solid transparent; - border-right: 10px solid transparent; - border-bottom: 10px solid #fff; - border-top: 0; - position: absolute; } - -.datepicker-dropdown.datepicker-orient-left:before, -.datepicker-dropdown.datepicker-orient-left:after { - left: 16px; } - -.datepicker-dropdown.datepicker-orient-right:before, -.datepicker-dropdown.datepicker-orient-right:after { - right: 16px; } - -.datepicker-dropdown.datepicker-orient-top:before { - top: -10px; } - -.datepicker-dropdown.datepicker-orient-top:after { - top: -9px; } - -.datepicker-dropdown.datepicker-orient-bottom:before { - bottom: -7px; - border-bottom: 0; - border-top: 7px solid #959595; } - -.datepicker-dropdown.datepicker-orient-bottom:after { - bottom: -6px; - border-bottom: 0; - border-top: 6px solid #fff; } - -.datepicker > div { - display: none; } - -.datepicker.days div.datepicker-days { - display: block; } - -.datepicker.months div.datepicker-months { - display: block; } - -.datepicker.years div.datepicker-years { - display: block; } - -.datepicker table { - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - margin: 0 0 0 0; } - -.datepicker td, -.datepicker th { - text-align: center; - display: block; - width: 30px; - height: 30px; - border: none; } - -.datepicker tbody :focus { - outline: none; } - -.datepicker td.day { - background-color: transparent; - color: #0568ae; - cursor: pointer; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - height: 34px; - line-height: 30rem; - margin: -2px -1px 0 0; - overflow: hidden; - text-align: center; - width: 42px; } - -.datepicker :focus { - outline: 1px dotted #000; - outline-offset: -2px; } - -.datepicker td.day.focused { - background: #ededed; - cursor: pointer; } - -.datepicker td.day.focused.active { - background-color: #ededed; - color: #0568ae; } - -.datepicker td.disabled, -.datepicker td.disabled:hover { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5a5a5a; - cursor: default; } - -.datepicker td.today, -.datepicker td.today:hover, -.datepicker td.today.disabled { - color: #fff; - background-color: #0568ae; } - -.datepicker td.today.active, -.datepicker td.today:active, -.datepicker td.today:hover, -.datepicker td.today:focus { - color: #fff; - background-color: #0568ae; } - -.datepicker td.today.active:hover { - color: #fff; } - -.datepicker td.selected, -.datepicker td.selected:hover, -.datepicker td.selected.disabled { - color: #ffffff; - background-color: #959595; } - -.datepicker td.active:not(.new), -.datepicker td.active:hover:not(.new) { - color: #ffffff; - border-color: #357ebd; } - -.show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #0568ae; - height: 26px; - line-height: 26px; - margin: 4px auto 0; - width: 26px; } - -.datepicker .start-date .show-date, -.datepicker .between-date .show-date, -.datepicker .end-date .show-date { - background-color: #0568ae; - color: #fff !important; } - -.datepicker .start-date .show-date { - border-radius: 5px 0 0 5px; - z-index: 1; } - -.datepicker .start-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 20px; - position: absolute; - width: 100%; - z-index: -1; } - -.datepicker .between-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: 0; - position: absolute; - width: 100%; - z-index: -1; } - -.datepicker .end-date .show-date { - border-radius: 0 5px 5px 0; } - -.datepicker .end-date .show-date:before { - background-color: #0568ae; - content: ""; - display: block; - height: 26px; - left: -20px; - position: absolute; - width: 100%; - z-index: -1; } - -.datepicker .between-date:first-child .show-date:before { - background-color: #fff; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - -.datepicker .end-date:first-child .show-date:after { - background-color: #fff; - content: ""; - height: 26px; - position: absolute; - left: 0; - width: 8px; } - -.datepicker .end-date:first-child .show-date::before { - background-color: #fff; } - -.datepicker tr td.start-date:last-child .show-date:after, -.datepicker tr td.between-date:last-child .show-date:after { - background-color: #fff; - content: ""; - height: 26px; - position: absolute; - right: 0; - width: 8px; } - -.datepicker tr td.start-date:last-child:focus .show-date:after, -.datepicker tr td.end-date:last-child:focus .show-date:after, -.datepicker tr td.between-date:last-child:focus .show-date:after, -.datepicker tr td.start-date:first-child:focus .show-date:after, -.datepicker tr td.end-date:first-child:focus .show-date:after, -.datepicker tr td.between-date:first-child:focus .show-date:after { - height: 30px; - width: 30px; - background-color: transparent; } - -.datepicker td.active:not(.new) .show-date, -.datepicker td.active:hover:not(.new) .show-date { - color: #0568ae; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.datepicker td.disabled .show-date, -.datepicker td.disabled:hover .show-date { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5a5a5a; } - -.datepicker td span { - display: block; - width: 23%; - height: 54px; - line-height: 54px; - float: left; - margin: 1%; - cursor: pointer; - border-radius: 4px; } - -.datepicker td span:hover { - background: #eeeeee; } - -.datepicker td span.disabled, -.datepicker td span.disabled:hover { - background: none; - color: #5a5a5a; - cursor: default; } - -.datepicker td span.active, -.datepicker td span.active:hover, -.datepicker td span.active.disabled { - color: #ffffff; - background-color: #0568ae; - border-color: #357ebd; } - -.datepicker th.datepicker-switch { - width: 198px; - font-size: 20px; - font-weight: normal; - cursor: default !important; } - -.datepicker thead tr:first-child th, -.datepicker tfoot tr th { - cursor: pointer; - height: 60px; - line-height: 60px; } - -.datepicker tfoot tr th { - height: auto; - line-height: normal; } - -.datepicker tfoot tr th li { - margin-bottom: 5px; } - -.datepicker .prev, -.datepicker .next { - color: transparent; - font-size: 0; - margin: 0 -1px -1px 0; - width: 46px; } - -.datepicker .prev i, -.datepicker .next i { - color: #0568ae; - position: absolute; - font-size: 27px; - margin: 0; - top: 15px; } - -.datepicker .prev i { - left: 8px; } - -.datepicker .next i { - right: 8px; } - -.datepicker .cw { - font-size: 10px; - width: 12px; - padding: 0 2px 0 5px; - vertical-align: middle; } - -.datepicker thead tr:first-child th.cw { - cursor: default; - background-color: transparent; } - -.input-group.date .input-group-addon i { - cursor: pointer; - width: 16px; - height: 16px; } - -.datepicker.dropdown-menu { - box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); - position: absolute; - top: 100%; - left: 0; - float: left; - display: none; - margin-top: 13px; - width: 290px; - list-style: none; - background-color: #ffffff; - border: 1px solid #d2d2d2; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 5px; - color: #333333; - font-size: 13px; - line-height: 1.428571429; - z-index: 1050; } - -.datepicker.dropdown-menu th, -.datepicker.dropdown-menu td { - display: block; - float: left; - padding: 0; - position: relative; } - -.datepicker .due-date .show-date { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - background-color: #cf2a2a; - border-radius: 5px; - color: #fff !important; } - -.datepicker .day.active .show-date:after, -.datepicker .day:focus .show-date:after, -.datepicker .due-date.disabled .show-date:after { - border: 2px solid #0568ae; - border-radius: 7px; - content: ""; - display: block; - height: 30px; - left: 4px; - position: absolute; - top: 0; - width: 30px; } - -.datepicker .day:focus .show-date:after { - height: 30px; - left: 4px; - top: 0; - width: 30px; } - -.datepicker .day.due-date:focus .show-date:after { - height: 30px; - left: 4px; - top: 0; - width: 30px; } - -.datepicker .due-date.old:after, -.datepicker .due-date.new:after { - visibility: hidden; } - -.datepicker .due-date.active:after { - border-color: #fff; } - -.datepicker .due-date.active.focused { - color: #0568ae !important; } - -.datepicker .due-date.active.focused:after { - border-color: #cf2a2a !important; } - -.datepicker .dow { - height: 24px; - width: 42px; - font-weight: normal; - position: relative; - overflow: hidden; - color: transparent; - letter-spacing: -6px; - margin: 0 -1px -1px 0; } - -.datepicker .dow span[aria-hidden="true"] { - bottom: 0; - color: #5a5a5a; - display: block; - left: 1px; - letter-spacing: 0; - line-height: .9; - margin: 0 auto; - padding: 0; - position: relative; - width: 22px; } - -.datepicker .calendar-legend { - margin-top: 3px; - margin-bottom: 20px; } - -.datepicker .calendar-legend li { - font-size: 1.4rem; - font-weight: normal; - margin-bottom: 5px; - padding-left: 10px; - padding-top: 5px; - position: relative; } - -.datepicker i.legend-due-date { - background-color: #cf2a2a; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - -.datepicker i.legend-selected-date { - background-color: #fff; - border: 2px solid #0568ae; - border-radius: 5px; - height: 18px; - width: 18px; - margin-right: 8px; - vertical-align: middle; - display: inline-block; } - -.datepicker i.legend-selectedisdue { - background-color: #fff; - border: 2px solid #0568ae; - border-radius: 5px; - display: inline-block; - height: 18px; - margin-right: 8px; - position: relative; - vertical-align: middle; - width: 18px; } - -.datepicker i.legend-selectedisdue:after { - background-color: #cf2a2a; - border-radius: 3px; - content: ""; - display: block; - height: 10px; - left: 2px; - position: absolute; - top: 2px; - width: 10px; } - -.datepicker .text-left { - width: 100%; } - -.datepicker .active.old { - background-color: #ededed !important; - color: #ededed !important; } - -.s, -.m, -.t, -.w, -.f, -.d, -.l, -.v, -.j { - display: block; - height: 20px; - width: 12px; - margin: 0 auto; - background-color: white; - background-repeat: no-repeat; } - -.s { - background-position: -62px 0; } - -.m { - background-position: -5px 0; } - -.t { - background-position: -19px 0; } - -.w { - background-position: -34px 0; } - -.f { - background-position: -49px 0; } - -/* spanish */ -.d { - background-position: 0 0; } - -.l { - background-position: 0 0; } - -.v { - background-position: 0 0; } - -.j { - background-position: 0 0; } - -/* remove focus outline when dropdown is opened */ -/*resolve blue focus outline over dropdown with error*/ -select { - margin-right: -1; - max-width: 100%; - height: 36px; - line-height: 25px; - width: auto; - background-color: #FFFFFF; } - -.selectWrap.disabled .icon-primary-down { - color: #767676; } - -.selectWrap.disabled input.awd-select { - z-index: 0; - padding: 10px 45px 10px 15px; - text-indent: 0; } - -.selectWrap.disabled button.awd-select { - z-index: 0; - text-indent: 15; } - -.selectWrap.disabled:after { - color: #5A5A5A; - cursor: not-allowed; } - -input.awd-select { - background-color: transparent; - border: 1px solid #d2d2d2; - border-radius: 6px; - box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); - color: #333333; - display: block; - font-family: "Omnes-ECOMP-W02", Arial; - /*font-size: 1.6rem;*/ - height: 36px; - line-height: 0; - margin-bottom: 0; - padding: 12px 45px 8px 0; - position: relative; - text-align: left; - top: 0; - width: 100%; - z-index: 10; - padding: 12px 45px 8px 15px; - user-select: none; } - input.awd-select:focus { - border-color: #0568ae !important; } - -button.awd-select { - background-color: transparent; - border: 1px solid #d2d2d2; - border-radius: 6px; - box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); - color: #333333; - display: block; - font-family: "Omnes-ECOMP-W02", Arial; - /*font-size: 1.6rem;*/ - height: 36px; - line-height: 36px; - margin-bottom: 0; - /*padding-right: 41px;*/ - position: relative; - text-align: left; - top: 0; - width: 100%; - z-index: 10; } - button.awd-select:not(.large) { - text-indent: 15px; - white-space: nowrap; - overflow: hidden; - text-overflow: clip; - text-overflow: ellipsis; } - button.awd-select img { - height: 26px; - margin-right: 7px; - margin-top: -10px; - position: relative; - top: 2px; - vertical-align: text-bottom; } - button.awd-select:focus { - border-color: #0568ae !important; } - button.awd-select i { - font-size: 23px; - position: absolute; - right: 33px; - top: 5px; - z-index: 1000; } - -button.awd-select.large { - align-items: center; - display: flex; - height: 60px; - line-height: 20px; - overflow: hidden; - padding-left: 70px; - vertical-align: middle; } - button.awd-select.large img { - height: 40px; - left: 20px; - position: absolute; - top: 20px; - width: 40px; } - -.selectWrap.large { - height: 60px; } - .selectWrap.large .awd-select-list-item { - align-items: center; - display: flex; - height: 60px; - line-height: 20px; - overflow: hidden; - padding-left: 70px; - vertical-align: middle; } - .selectWrap.large .awd-select-list-item img { - height: 40px; - left: 20px; - position: absolute; - top: 20px; - width: 40px; - top: 10px; } - -button.awd-select.active { - border-radius: 6px 6px 0 0; } - button.awd-select.active:focus { - border-color: #d2d2d2 !important; } - -input.awd-select.active { - border-radius: 6px 6px 0 0; } - input.awd-select.active:focus { - border-color: #d2d2d2 !important; } - -.selectWrapper { - position: relative; } - -span.selectWrap input[readonly]:focus { - color: transparent; - text-shadow: 0 0 0 #000; } - -.isIE.ds2-no-colors .awd-select:focus { - outline: 1px dashed transparent; } - -.awd-select-list { - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); - border-radius: 0 0 6px 6px; - position: absolute; - border: 1px solid #d2d2d2; - border-top: 0; - padding: 0; - background-color: #f2f2f2; - z-index: 1000; - width: 100%; - max-height: 320px; - overflow-y: auto; } - -.awd-select-list-item { - cursor: pointer; - height: 100%; - min-height: 36px; - line-height: 38px; - overflow: hidden; - padding: 0 15px; - position: relative; - text-overflow: ellipsis; - white-space: nowrap; - z-index: 1000; } - .awd-select-list-item:hover { - cursor: pointer; - background-color: #d2d2d2; - outline: 1px dashed transparent; } - .awd-select-list-item:focus { - cursor: pointer; - background-color: #d2d2d2; - outline: 1px dashed transparent; } - .awd-select-list-item img { - margin-top: 0; - margin-right: 7px; - height: 26px; - width: 26px; } - -.selectWrap { - border-radius: 6px; - position: relative; - height: 36px; - line-height: 28px; - display: block; - margin: 0; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } - .selectWrap:not(.large) .awd-select-list-item:first-child { - margin-top: 15px; } - .selectWrap:not(.large) .awd-select-list-item:last-child { - margin-bottom: 15px; } - .selectWrap .icon-primary-down { - font-size: 23px; - margin-top: -11px; - position: absolute; - right: 4px; - top: 50%; } - .selectWrap + [aria-expanded="true"] { - padding-bottom: 9px; - padding-top: 20px; } - -.awd-select-list-item[aria-selected="true"] { - background-color: #d2d2d2; } - -span input.awd-select { - width: 100%; - cursor: pointer; - text-overflow: ellipsis; - padding-right: 45px; } - -li.optgroup-wrapper { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - cursor: default !important; - padding: 0px 15px; } - li.optgroup-wrapper:first-child { - padding-top: 10px; } - li.optgroup-wrapper:hover { - background-color: #f2f2f2; } - -ul.optgroup { - font-family: "Omnes-ECOMP-W02", Arial; - cursor: pointer !important; - margin: 0 -15px; } - ul.optgroup li { - padding: 0 0 0 33px; } - -label + .selectWrap { - margin-top: 4px; } - -.selectorModule { - border-radius: 6px; - position: relative; - height: 36px; - line-height: 28px; - display: block; - margin: 0; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } - -.group .selectWrap { - margin: 0 0 10px 0; } - -select.awd-select { - position: relative; - top: 0; - left: 0; - font-size: 16px; - z-index: 1010; - height: 33px; - min-width: 100%; - opacity: 0.01; } - select.awd-select > optgroup { - padding-left: 8px; - font-style: normal; - margin-top: 10px; } - select.awd-select > optgroup:first-child { - margin-top: 0; } - select.awd-select > optgroup > option { - padding-left: 8px; } - select.awd-select > option { - padding-left: 8px; } - select.awd-select + span { - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); - position: absolute; - top: 0; - left: 0; - z-index: 0; - display: block; - border: 1px solid #d2d2d2; - border-radius: 6px; - height: 35px; - line-height: 0; - padding: 18px 45px 15px 15px; - width: 100%; - font-size: 1.6rem; - padding-right: 45px; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; } - select.awd-select + span > i { - font-size: 23px; - position: absolute; - right: 33px; - top: 5px; - z-index: 1000; } - select.awd-select + span > i:before { - left: 1px; - position: absolute; - top: -1px; } - select.awd-select:focus + span { - border-color: #0568ae; } - -.isIE select.awd-select + span { - line-height: 1; } - -[data-default-option="true"] { - color: #767676 !important; - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - -.placeholdercolor { - color: #767676 !important; - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - -.filterTank button.awd-select { - border-color: #d2d2d2; - background-color: #333333; - color: #FFFFFF; - color: #333333; } - .filterTank button.awd-select:after { - background-color: #FFFFFF !important; - border-color: #d2d2d2; } - -.utility-bg button.awd-select { - border-color: #d2d2d2; - background-color: #333333; - color: #FFFFFF; - color: #333333; } - .utility-bg button.awd-select:after { - background-color: #FFFFFF !important; - border-color: #d2d2d2; } - -.utility-bg select.awd-select + span { - border-color: #d2d2d2; - border-color: #d2d2d2; - background-color: #333333; - background-color: #333333; - color: #FFFFFF; - color: #FFFFFF; } - .utility-bg select.awd-select + span:after { - background-color: #FFFFFF !important; - background-color: #FFFFFF !important; - border-color: #d2d2d2; - border-color: #d2d2d2; } - -.utility-bg select.awd-select:focus + span { - border-color: #d2d2d2; - border-color: #d2d2d2; - background-color: #333333; - background-color: #333333; - color: #FFFFFF; - color: #FFFFFF; } - .utility-bg select.awd-select:focus + span:after { - background-color: #FFFFFF !important; - background-color: #FFFFFF !important; - border-color: #d2d2d2; - border-color: #d2d2d2; } - -.utility-bg select.awd-select:hover + span { - border-color: #d2d2d2; - border-color: #d2d2d2; - background-color: #333333; - background-color: #333333; - color: #FFFFFF; - color: #FFFFFF; } - .utility-bg select.awd-select:hover + span:after { - background-color: #FFFFFF !important; - background-color: #FFFFFF !important; - border-color: #d2d2d2; - border-color: #d2d2d2; } - -input.awd-select[disabled] { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - input.awd-select[disabled] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - -button.awd-select[disabled] { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - button.awd-select[disabled]:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -select.awd-select[disabled] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled] + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -select.awd-select[disabled]:focus + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - -select.awd-select[disabled]:hover + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - -input.awd-select[disabled="disabled"] { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - input.awd-select[disabled="disabled"] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - -select.awd-select[disabled="disabled"] + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled="disabled"] + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -select.awd-select[disabled="disabled"]:focus + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled="disabled"]:focus + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -select.awd-select[disabled="disabled"]:hover + span { - cursor: not-allowed; - border-color: #d2d2d2; - background-color: #d2d2d2; - background-image: none; - color: #5A5A5A; } - select.awd-select[disabled="disabled"]:hover + span:after { - background-color: #d2d2d2 !important; - border-color: #d2d2d2; } - -.ddexpand-wrapper > h2 { - margin-bottom: 11px; } - .ddexpand-wrapper > h2 + p { - margin-bottom: 4px; } - -.ddexpand-wrapper .selectWrap + [aria-expanded="true"] .form-row { - margin-top: 11px; } - -.ddexpand-wrapper .selectWrap + [aria-expanded="true"] .row + .row .form-row { - margin-top: 14px; } - -.modal .awd-select-list { - z-index: 1060 !important; } - -.form-row.error button.awd-select.active:focus { - border-color: #cf2a2a !important; } - -.form-row.error input.awd-select.active:focus { - border-color: #cf2a2a !important; } - -.awd-module-list .module-list-item[aria-selected="true"] { - background-color: #f2f2f2; } - -li.module-list-item[aria-selected="true"]:before { - color: #0568ae; - display: inline-block; - font-family: "icoControls" !important; - font-style: normal; - font-size: 20px; - font-weight: normal; - font-variant: normal; - height: 1em; - margin-right: 7px; - text-transform: none; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - position: relative; - speak: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - vertical-align: middle; - width: 1em; - content: "\e907"; - box-sizing: border-box; - display: inline-block; - font-size: 2em; - height: 1em; - position: absolute; - top: 20px; - right: 0px; - vertical-align: middle; - width: 1em; - color: #007a3e; } - -@media (min-width: 768px) { - span[class*="large"] { - max-width: 370px; } - .large { - max-width: 370px; } } - -@media (max-width: 767px) { - .selectWrap.large:after { - right: 5px; } - .selectWrap.large .awd-select-list-item { - padding-right: 41px; } - .selectWrap + div > h4 { - margin-bottom: 0; - font-size: 16px; } } - -/**********************Dropdown Chrome scrolling fix start ********************/ -input.awd-select { - -webkit-user-select: text; - -moz-user-select: text; - -ms-user-select: text; - user-select: text; } - -input.awd-select.focused { - -webkit-user-select: none !important; - -moz-user-select: none !important; - -ms-user-select: none !important; - user-select: none !important; } - -/**********************Dropdown Chrome scrolling fix end ********************/ -.mpc-expanders { - border-bottom: 1px solid #e4e4e4; - border-top: 1px solid #e4e4e4; } - -.mpc-expanders + .mpc-expanders { - border-top: 0px; } - -.mpc-expanders .heading-medium { - margin-bottom: 10px; } - -.mpc-expanders .p-small { - margin-top: 5px; } - -.mpc-expander-body { - border-top: 1px solid #e4e4e4; } - -.mpc-expander-body .mpc-expanders { - border-bottom: 1px solid #e4e4e4; - border-top: 0; } - -.mpc-expander-body .mpc-expanders:last-child { - border-bottom: 0px; } - -.ddh-blue { - color: #0574ac; } - -.b2b-dragdrop { - border: 1px dashed #bbb; - border-radius: 5px; - padding: 0; - text-align: center; - color: #bbb; - position: relative; } - -.b2b-dragdrop-over { - background: #0091d9; - color: #006496; } - .b2b-dragdrop-over:after { - content: "Drop the file"; - color: #fff; - width: 80px; - height: 20px; - overflow: hidden; - margin: auto; - position: absolute; - top: 0; - left: 0; - bottom: 0; - right: 0; } - -.b2b-file-container { - position: relative; - overflow: hidden; - display: inline-table; - font-weight: 400; } - .b2b-file-container [type=file] { - position: absolute; - cursor: inherit; - display: block; - font-size: 0; - opacity: 0; - height: 0; - width: 0; - left: 0; - top: 0; - -ms-filter: "alpha(Opacity=0)"; } - -.b2b-upload-link { - color: #0568ae; } - -.b2b-flyout { - position: relative; - display: inline-block; - cursor: default; } - -.b2b-flyout-icon { - cursor: pointer; } - .b2b-flyout-icon:focus { - outline: thin dotted #666; - outline-offset: -1px; } - -.b2b-flyout .b2b-flyout-container { - border: 1px solid #d3d3d3; - width: 300px; - padding: 20px; - pointer-events: auto; - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - font-size: 16px; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - background: #fff; - border-radius: 6px; - box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); - color: #333; - line-height: 20px; - position: absolute; - top: 35px; - opacity: 0; - z-index: 1010; - display: none; } - .b2b-flyout .b2b-flyout-container.open-flyout { - opacity: 1; - display: block; } - -.b2b-flyout i.b2b-flyout-caret { - position: absolute; - top: -8px; - left: 50%; - opacity: 0; - z-index: 1011; - display: none; } - .b2b-flyout i.b2b-flyout-caret.open-flyout { - opacity: 1; - display: block; } - .b2b-flyout i.b2b-flyout-caret:before { - content: ""; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - border-bottom: 8px solid #d3d3d3; - position: absolute; - top: -1px; } - .b2b-flyout i.b2b-flyout-caret:after { - content: ""; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - border-bottom: 8px solid #fff; - position: absolute; } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-left i.b2b-flyout-caret { - left: 16px !important; } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-right i.b2b-flyout-caret { - left: inherit !important; - right: 30px !important; } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-above { - box-shadow: 0 -5px 6px 0 rgba(0, 0, 0, 0.25); } - .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret { - top: auto; - bottom: 0px; } - .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:before { - top: auto; - bottom: -9px; - border-top: 8px solid #d3d3d3; - border-bottom: none; } - .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:after { - border-top: 8px solid #fff; - border-bottom: none; } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-centerLeft i.b2b-flyout-caret { - left: inherit !important; - right: -7px !important; - top: 8px; - transform: rotate(90deg); } - -.b2b-flyout .b2b-flyout-container.b2b-flyout-centerRight i.b2b-flyout-caret { - left: -8px !important; - top: 296px; - transform: rotate(-90deg); } - -.b2b-flyout .buttons-group { - margin-top: 20px; } - .b2b-flyout .buttons-group .cta-button-group { - width: 100%; - border-top: 1px solid #ccc; - padding: 20px 0 0; } - .b2b-flyout .buttons-group .cta-button-group button { - margin-bottom: 0; } - -.b2b-flyout .heading { - font-size: 20px; - margin-bottom: 10px; } - -.b2b-flyout .body-text { - font-size: 14px; - margin-bottom: 30px; } - -.b2b-footer-wrapper { - width: 100%; - background-color: #222; } - -.b2b-footer-container { - width: 980px; - margin: 0 auto; - padding-top: 15px; } - .b2b-footer-container .footer-columns { - display: inline-block; - text-align: left; - vertical-align: top; } - .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { - padding-top: 30px; } - .b2b-footer-container .footer-columns.three-column { - width: 33.3%; - padding-left: 75px; } - .b2b-footer-container .footer-columns.four-column { - width: 25%; - padding-left: 75px; } - .b2b-footer-container .footer-columns.five-column { - width: 20%; } - .b2b-footer-container .footer-columns .b2b-footer-header { - color: #009fdb; - font-size: 18px; - font-style: normal; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - line-height: 23.9px; - margin: 0; } - .b2b-footer-container .footer-columns li { - padding: 7.5px 0; } - .b2b-footer-container .footer-columns ul li:first-child { - padding-top: 15px; } - .b2b-footer-container .footer-columns li a { - color: #fff; - font-size: 16px; - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-footer-container .footer-nav-content { - padding-bottom: 10px; } - .b2b-footer-container .footer-nav-content li { - display: inline; - font-size: 14px; - color: #fff; - vertical-align: middle; } - .b2b-footer-container .footer-nav-content li a { - color: #fff; - font-size: 14px; - vertical-align: middle; - margin-right: 5px; - font-family: "Omnes-ECOMP-W02", Arial; } - -.b2b-footer-wrapper .b2b-footer-container hr { - background: #d2d2d2; - margin-top: 50px; } - -.b2b-footer-wrapper .divider-bottom-footer { - padding: 45px 0 50px 0; } - -.b2b-footer-wrapper .footerLogo { - margin: 10px 0 0 0px; - vertical-align: top; } - .b2b-footer-wrapper .footerLogo div { - display: inline-block; } - .b2b-footer-wrapper .footerLogo .icon-primary-att-globe { - font-size: 40px; } - .b2b-footer-wrapper .footerLogo .logo-title { - color: #fff; - margin-left: 10px; - display: inline-block; - font-size: 26px; - margin-top: 0px; } - -.b2b-footer-wrapper .copyright-text { - color: #fff; - font-size: 11px; - text-align: left; - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-footer-wrapper .copyright-text a { - color: #fff; - text-decoration: underline; - display: inline-block; } - .b2b-footer-wrapper .copyright-text a:hover { - text-decoration: none; } - -@media (max-width: 768px) { - .b2b-footer-wrapper { - padding: 0 15px; } - .b2b-footer-container { - width: 100%; } - .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { - width: 50%; } - .b2b-footer-wrapper .divider-bottom-footer { - padding-top: 15px; } - .b2b-footer-wrapper .divider-bottom-footer .footer-links { - width: 100%; } - .b2b-footer-wrapper .footerLogo { - margin: 30px 0 0 0; } - .b2b-footer-wrapper .footerLogo .footer-logo { - margin: 0; - padding-left: 10px; } } - -.b2b-header-tabs { - background-color: #222; - width: 100%; - position: relative; - height: 45px; } - .b2b-header-tabs .icon-primary-att-globe { - color: #0568ae; } - .b2b-header-tabs a:focus { - border: 1px solid white; } - .b2b-header-tabs .header__items { - width: 980px; - margin: 0 auto; - display: block; - list-style: none; - padding: 6px 0px 0px 0px; - border-spacing: 30px 0; } - .b2b-header-tabs .header__item { - display: inline-block; - text-align: left; - width: auto; - font-size: 16px; - font-family: "Omnes-ECOMP-W02, Arial"; - cursor: pointer; - padding: 5px 15px; - color: #fff; } - .b2b-header-tabs .header__item.b2b-headermenu { - padding: 0; } - .b2b-header-tabs .header__item.b2b-headermenu:last-child { - background: none; } - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - color: #fff; - text-decoration: none; - display: inline-block; - padding: 5px 15px; } - .b2b-header-tabs .header__item.active { - background-color: #fff; - border-radius: 2px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - .b2b-header-tabs .header__item.active a.menu__item { - color: #0578ae; } - .b2b-header-tabs li:focus { - outline: 2px solid #0578ae; } - .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { - background-color: #fff; - position: absolute; - width: 100%; - left: 0; - top: 42px; - border-bottom: solid 1px #ccc; - -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - display: none; - z-index: 111; } - .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { - background-color: #fff; - width: 980px; - margin: 0 auto; } - .b2b-header-tabs .header__item.active .header-secondary-wrapper { - display: block; } - .b2b-header-tabs .header-secondary .header-subitem { - display: inline-block; - width: auto; - margin: 0 15px; } - .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { - display: block; } - .b2b-header-tabs .header-secondary .header-subitem a.menu__item { - display: inline-block; - padding: 15px 0; - color: #333; } - .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { - color: #0578ae; } - -/** Secondary Menu **/ -.b2b-labelhide { - position: absolute; - clip: rect(1px, 1px, 1px, 1px); } - -/** Tertiary Level Menu **/ -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - position: absolute; - z-index: 111; - top: 25px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - content: ''; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - position: absolute; - -webkit-transition: left .2s ease-out; - -moz-transition: left .2s ease-out; - transition: left .2s ease-out; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { - border-bottom: 8px solid #fff; - top: 10px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - border-bottom: 8px solid #ccc; - top: 9px; } - -.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { - border-top: solid 1px #ccc; } - -.b2b-header-tabs .header-tertiary:after { - content: ''; - clear: both; - display: block; } - -.b2b-header-tabs .header-tertiary li { - display: inline-block; - padding: 0; - float: left; } - .b2b-header-tabs .header-tertiary li a { - color: #333; - display: block; - padding: 10px 15px; } - .b2b-header-tabs .header-tertiary li label { - text-align: left; - display: block; - font-size: 16px; - font-weight: bold; - color: #857B7B; - padding: 15px 0 0 15px; } - -.b2b-header-tabs .header__item.skip { - padding: 0; - display: inline-block; - cursor: default !important; } - .b2b-header-tabs .header__item.skip a { - color: transparent; - font-size: 12px; - line-height: 15px; - text-decoration: none; } - .b2b-header-tabs .header__item.skip a:focus { - color: #fff; - outline: 2px solid #0578ae; } - -.b2b-header-tabs .selectWrap { - min-width: 150px; } - .b2b-header-tabs .selectWrap button.awd-select { - height: 30px; - line-height: 31px; - font-size: 1rem; - display: inline-block; } - .b2b-header-tabs .selectWrap .awd-select-list { - background-color: #fff; - color: #333; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } - -@media (max-width: 768px) { - .b2b-header-tabs { - padding: 0 15px; } - .b2b-header-tabs .header__items, .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { - width: 100%; } - .b2b-header-tabs .header__item { - padding: 5px 0; } - .b2b-header-tabs .globe-text { - display: none; } - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - padding: 5px 7px 9px 7px; } - .b2b-header-tabs .header__item .header-tertiary-wrapper { - top: 30px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - top: 14px; } - .b2b-header-tabs .header__item .header-secondary-wrapper { - top: 45px; } - .b2b-header-tabs .header__item.profile { - padding-left: 15px; - float: none; } } - -/************* Header - Start *************/ -.b2b-header-tabs { - background-color: #222; - width: 100%; - position: relative; - height: 45px; } - -.b2b-header-tabs .icon-primary-primary-att-globe { - color: #0568ae; - font-size: 34px; - bottom: 1px; } - -/* - *TODO: delete below .icon-primary-att-globel will not be used - *instead the one above, icon-primary-primary-att-globe not available here - */ -.b2b-header-tabs .icon-primary-att-globe { - color: #0568ae; - font-size: 34px; } - -.b2b-header-tabs .globe-text { - margin-left: 20px; - font-size: 2rem; } - -.b2b-header-tabs .header__items { - width: 980px; - margin: 0 auto; - display: block; - list-style: none; - border-spacing: 30px 0; - padding: 3px 0px 0px 0px; } - -.b2b-header-tabs .header__item { - display: inline-block; - text-align: left; - width: auto; - font-size: 14px; - font-family: "Omnes-ECOMP-W02", Arial; - cursor: pointer; - padding: 0 15px 4px 15px; - /*margin-top:-3px;*/ - color: #fff; } - -.b2b-header-tabs .header__item.b2b-headermenu { - padding: 0; } - -.b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - color: #fff; - text-decoration: none; - display: inline-block; - padding: 8px 15px 12px 15px; - font-size: 16px; } - -.b2b-header-tabs .header__item.active { - background-color: #fff; - border-radius: 2px; - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -.b2b-header-tabs .header__item.active a.menu__item { - color: #0578ae; } - -.b2b-header-tabs li:focus { - outline: 2px solid #0578ae; } - -/** profile pop Over **/ -.b2b-header-tabs .header__item.profile { - position: relative; - float: right; } - -/** Secondary Menu **/ -.b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { - background-color: #fff; - position: absolute; - width: 100%; - left: 0; - top: 42px; - border-bottom: solid 1px #ccc; - -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); - display: none; - z-index: 111; } - -.b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { - background-color: #fff; - width: 980px; - margin: 0 auto; } - -.b2b-header-tabs .header__item.active .header-secondary-wrapper, -.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { - display: block; } - -.b2b-header-tabs .header-secondary .header-subitem { - display: inline-block; - width: auto; - margin: 0 15px; } - -.b2b-header-tabs .header-secondary .header-subitem a.menu__item { - display: inline-block; - padding: 15px 0; - color: #333; - font-size: 14px; } - -.b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { - color: #0578ae; } - -.b2b-label-hide { - position: absolute; - clip: rect(1px, 1px, 1px, 1px); } - -/** Tertiary Level Menu **/ -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - content: ''; - border-left: 8px solid transparent; - border-right: 8px solid transparent; - position: absolute; - -webkit-transition: left .2s ease-out; - -moz-transition: left .2s ease-out; - transition: left .2s ease-out; } - -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - position: absolute; - z-index: 111; - top: 25px; } - -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { - border-bottom: 8px solid #fff; - top: 10px; } - -.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { - border-bottom: 8px solid #ccc; - top: 9px; } - -/** Tertiary Level Menu **/ -.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { - border-top: solid 1px #ccc; } - -.b2b-header-tabs .header-tertiary:after { - content: ''; - clear: both; - display: block; } - -.b2b-header-tabs .header-tertiary li { - display: inline-block; - padding: 0; - float: left; } - -.b2b-header-tabs .header-tertiary li a { - color: #333; - display: block; - padding: 7px 15px; - max-width: 228px; } - -.b2b-header-tabs .header-tertiary li label { - text-align: left; - display: block; - font-size: 14px !important; - font-weight: bold; - color: #857B7B; - padding: 15px 0 0 15px; } - -/** Quarternary Level Menu **/ -.b2b-header-tabs .header-quarternary { - width: 100%; - float: left; } - -.b2b-header-tabs .header-quarternary li { - padding-left: 15px; - font-family: "Omnes-ECOMP-W02", Arial; - display: none; } - -.b2b-header-tabs .header-quarternary li.active { - display: block; } - -.b2b-header-tabs .header-quarternary li a { - color: #666666; - font-size: 14px; - padding: 0px 10px 10px 10px; } - -/** Skip Navigation**/ -.b2b-header-tabs .header__item.skip { - padding: 0; - display: inline-block; - cursor: default !important; } - -.b2b-header-tabs .header__item.skip a { - color: transparent; - font-size: 12px; - line-height: 15px; - text-decoration: none; } - -.b2b-header-tabs .header__item.skip a:focus { - color: #fff; - outline: 2px solid #0578ae; } - -/** Dropdown css inside Header ****/ -.b2b-header-tabs .selectWrap { - min-width: 150px; } - -.b2b-header-tabs .selectWrap button.awd-select, .b2b-header-tabs .selectWrap input.awd-select { - height: 36px; - line-height: 8px; - font-size: 1rem; - display: inline-block; } - -.b2b-header-tabs .selectWrap .awd-select-list { - background-color: #fff; - color: #333; - -webkit-transition: opacity .2s ease-out; - -moz-transition: opacity .2s ease-out; - transition: opacity .2s ease-out; - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } - -/* - * responsive header media queries - */ -@media screen and (max-width: 1100px) { - .b2b-header-tabs .globe-text { - display: none; } - .b2b-header-tabs .header__item.profile { - padding-left: 15px; - float: none; } - .b2b-header-tabs .header__items { - padding-top: 0px; } } - -@media screen and (max-width: 950px) { - .header__item.profile { - top: 20px; } - .b2b-header-tabs { - height: 90px; } - .selectWrap { - bottom: 15px; } - .b2b-header-tabs .header__items { - padding-top: 25px; } - .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { - top: 80px; } - .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { - top: 35px; } - .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { - padding-bottom: 30px; } - .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { - margin-top: -28px; } } - -/*************** Header - END ******************/ -.hp-container { - display: block; - max-width: 408px; } - .hp-container i:focus { - outline: thin dotted #666; } - .hp-container .icon-misc-pen { - cursor: pointer; } - .hp-container .icon-misc-trash { - cursor: pointer; } - -.hp-selected { - border-bottom: 1px solid #ccc; - border-bottom: 1px solid #ccc; - margin-bottom: 16px; - padding-bottom: 16px; } - .hp-selected .selected-days { - padding-bottom: 16px; } - .hp-selected .selected-days .day { - padding-top: 10px; - float: left; } - -.hp-checkbox { - padding-top: 20px; - margin: 16px auto 0 auto; } - .hp-checkbox label { - position: relative; - width: 20px; - margin-right: 34px; } - .hp-checkbox label span { - position: absolute; - top: -20px; - left: 0px; - margin-left: 0px; } - -.hp-dropdowns { - margin-top: 15px; - display: flex; - display: -webkit-flex; - display: -ms-flexbox; } - -.hp-buttons { - margin-top: 20px; - display: flex; - display: -webkit-flex; - display: -ms-flexbox; } - -.hp-dropdowns .radio-buttons { - margin-top: 30px; } - .hp-dropdowns .radio-buttons .radio { - margin-right: 15px; } - -@font-face { - font-family: "Omnes-ECOMP-W02"; - src: url("fonts/Omnes_ATTW02.eot"); - src: url("fonts/Omnes_ATTW02.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02.woff") format("woff"), url("fonts/Omnes_ATTW02.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Medium"; - src: url("fonts/Omnes_ATTW02Medium.eot"); - src: url("fonts/Omnes_ATTW02Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Medium.woff") format("woff"), url("fonts/Omnes_ATTW02Medium.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Italic"; - src: url("fonts/Omnes_ATTW02Italic.eot"); - src: url("fonts/Omnes_ATTW02Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Italic.woff") format("woff"), url("fonts/Omnes_ATTW02Italic.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Light"; - src: url("fonts/Omnes_ATTW02Light.eot"); - src: url("fonts/Omnes_ATTW02Light.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Light.woff") format("woff"), url("fonts/Omnes_ATTW02Light.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Bold"; - src: url("fonts/Omnes_ATTW02Bold.eot"); - src: url("fonts/Omnes_ATTW02Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Bold.woff") format("woff"), url("fonts/Omnes_ATTW02Bold.woff2") format("woff2"), url("fonts/Omnes_ATTW02Bold.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Light-Italic"; - src: url("fonts/Omnes_ATTW02LightItalic.eot"); - src: url("fonts/Omnes_ATTW02LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02LightItalic.woff") format("woff"), url("fonts/Omnes_ATTW02LightItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02LightItalic.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Medium-Italic"; - src: url("fonts/Omnes_ATTW02MediumItalic.eot"); - src: url("fonts/Omnes_ATTW02MediumItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02MediumItalic.woff") format("woff"), url("fonts/Omnes_ATTW02MediumItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02MediumItalic.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -@font-face { - font-family: "Omnes-ECOMP-W02-Bold-Italic"; - src: url("fonts/Omnes_ATTW02BoldItalic.eot"); - src: url("fonts/Omnes_ATTW02BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02BoldItalic.woff") format("woff"), url("fonts/Omnes_ATTW02BoldItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02BoldItalic.ttf") format("truetype"); - font-weight: normal; - font-style: normal; } - -/* TODO: Build a reference page for these classes */ -.font-regular { - font-family: "Omnes-ECOMP-W02", Arial !important; } - -.font-light { - font-family: "Omnes-ECOMP-W02-Light", Arial !important; } - -.font-italic { - font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } - -.font-light-italic { - font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } - -.font-medium { - font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } - -.font-medium-italic { - font-family: "Omnes-ECOMP-W02-Medium-Italic", Arial !important; } - -.font-reset { - font-style: normal; - font-variant: normal; - font-weight: normal; - text-transform: none; } - -.b2b-nav-menu { - background-color: #efefef; - border: 1px solid #efefef; - width: 230px; - font-size: 1.4rem; } - -.b2b-subnav-container > ul { - padding: 0px; } - -.b2b-subnav-content { - margin: 0; - margin-bottom: 10px; } - -.b2b-subnav-content > li { - border-bottom: 1px solid #999999; - position: relative; - cursor: pointer; } - -.b2b-subnav-content > li > a { - text-decoration: none; - line-height: 18px; - display: block; - padding: 10px; } - -.b2b-subnav-content > li > a.expand { - color: #333; } - -.b2b-subnav-content > li ul { - overflow: hidden; - max-height: 0; - transition-duration: 0.5s; - transition-timing-function: cubic-bezier(0, 1, 0.5, 1); } - -.b2b-subnav-content > li ul.expand { - transition-duration: 0.7s; - transition-timing-function: ease-in-out; - max-height: 1000px; - overflow: hidden; } - -.b2b-subnav-content > li > a:focus, .b2b-subnav-content > li ul > li > a:focus { - outline: thin dotted #666; } - -.b2b-subnav-content > li ul > li > a { - line-height: 18px; - padding: 8px 0; - display: block; - outline-offset: -4px; - padding-left: 10px; } - -.b2b-icon-primary-plus-minus { - display: inline-block; - height: 20px; - margin-right: 10px; - padding: 0; - position: absolute; - right: 0px; - top: 10px; - vertical-align: middle; - width: 20px; } - -@media (min-width: 320px) and (max-width: 767px) { - .b2b-nav-menu { - background-color: #fff; - border: 1px solid white; - width: 100%; } - .b2b-subnav-content > li { - padding-left: 10px; } - .b2b-subnav-container > ul:first-child { - border-top: 1px solid #999; } - .b2b-icon-primary-plus-minus { - right: 10px; } - .b2b-subnav-content > li li > a.active { - color: #0574ac; - text-decoration: none; - font-family: "Omnes-ECOMP-W02", Arial; } } - -.b2b-list-box-item { - white-space: nowrap; - margin: 1px; - border: 1px solid transparent; - outline: none; - visibility: inherit; - display: inherit; - text-align: left; - overflow: hidden; - cursor: pointer; - padding: 5px 0 5px; - padding-left: 15px; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; } - .b2b-list-box-item:focus { - border: 2px solid #5e8cb3; } - -.b2b-list-box-item--selected { - background-color: #cfdde9; } - -.btn.disabled[ddh-load-button] { - line-height: 46px; - padding: 0 19px 0 18px; } - -.btn.disabled[ddh-load-button] { - color: #666666; } - -.icon-primary-spinner-ddh.large { - height: 50px; - width: 50px; } - -.icon-primary-spinner-ddh.small { - height: 30px; - width: 30px; } - -.icon-primary-spinner-ddh { - -webkit-animation: 1s linear infinite spinner; - animation: 1s linear infinite spinner; - background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiIgaWQ9InN2Zy1zcGlubmVyIiB4PSIwcHgiIHk9IjBweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CiAgIDxwYXRoIGZpbGw9IiNGNUY1RjUiIGQ9Ik0xOCAzNkM4LjEgMzYgMCAyNy45IDAgMThTOC4xIDAgMTggMHMxOCA4LjEgMTggMTgtOC4xIDE4LTE4IDE4em0wLTMxLjVjLTcuNSAwLTEzLjUgNi0xMy41IDEzLjVTMTAuNiAzMS41IDE4IDMxLjVjNy41IDAgMTMuNS02LjEgMTMuNS0xMy41IDAtNy41LTYtMTMuNS0xMy41LTEzLjV6Ii8+CiAgIDxwYXRoIGZpbGw9IiMwNTY4QUUiIGlkPSJzcGlubmVyIiBkPSJNMzAuNyA1LjNsLTMuMSAzLjJjMi40IDIuNCAzLjkgNS44IDMuOSA5LjUgMCA3LjQtNi4xIDEzLjUtMTMuNSAxMy41UzQuNSAyNS40IDQuNSAxOCAxMC42IDQuNSAxOCA0LjVWMEM4LjEgMCAwIDguMSAwIDE4czguMSAxOCAxOCAxOCAxOC04LjEgMTgtMThjMC01LTItOS41LTUuMy0xMi43eiIgdHJhbnNmb3JtPSIiPiAgICAgIAogICA8L3BhdGg+Cjwvc3ZnPg==); } - -.btn-small .icon-primary-spinner-ddh { - height: 30px !important; - width: 30px !important; } - -.btn-small .icon-primary-spinner { - height: 30px; - width: 30px; } - -.load-backdrop { - position: absolute; - top: 50%; - left: 50%; } - -.body.styled-by-modal { - position: fixed; } - -.b2b-modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: -1; } - -.b2b-modal-backdrop.fade { - background-color: #000; - opacity: 0; - filter: alpha(opacity=0); - transition: all 0.3s linear 0s; } - -.b2b-modal-backdrop.fade.in { - z-index: 1040; - opacity: 0.7; - filter: alpha(opacity=70); - background-color: #000; - transition: opacity 0.3s linear 0s; } - -.modalwrapper { - height: 100%; - width: 100%; - left: 0; - overflow-y: hidden; - position: absolute; - right: 0; - padding: 20px; - top: 0; - z-index: -1; } - -.modalwrapper.active { - z-index: 1050; - overflow-y: auto; } - -.modal { - background-clip: padding-box; - background-color: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 8px; - box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.4); - margin: 0 auto; - /*margin-bottom:10%;*/ - outline: medium none; - /*position: absolute;*/ - height: 0; - min-height: 150px; - overflow: hidden; - /*top: 10%;*/ - width: 100%; - z-index: -1; } - -.modalwrapper.modal-docked .modal { - max-height: 80%; - height: 80%; - overflow: hidden; - top: 0; } - -.modal.fade.in { - position: relative; - height: auto; - overflow: auto; - top: 10%; - z-index: 1060; - transition: opacity .5s linear 0s; } - -.modal.fade.in.modal-landscape { - overflow-y: auto; } - -.modal.fade { - transition: opacity .5s linear 0s; } - -.fade.in { - opacity: 1; } - -.fade { - opacity: 0; } - -.b2b-modal-header { - align-items: center; - border-radius: 8px 8px 0 0; - display: flex; - min-height: 60px; - overflow: hidden; - padding: 30px 46px 30px 30px; - position: relative; } - -.b2b-modal-header > h2 { - line-height: 1; - margin: 0; - padding: 0; } - -.modal-header-portrait { - -webkit-overflow-scrolling: auto; } - -.modal-header-landscape { - -webkit-overflow-scrolling: auto; } - -.b2b-modal-body { - -webkit-overflow-scrolling: touch; - padding: 0 30px 20px; - position: relative; - width: auto; } - -.b2b-modal-body:focus { - outline: 1px dotted #333333; } - -.modal-form { - margin-bottom: 0; } - -.b2b-modal-footer { - background-color: #fff; - width: 100%; - padding: 0 30px; - border-radius: 0; - position: absolute; - bottom: 0; } - -:not(.modal-docked) .b2b-modal-footer { - position: relative; } - -.modal-docked .b2b-modal-footer { - border-top: 1px solid #d2d2d2; } - -.modal-landscape .b2b-modal-footer { - position: relative; } - -.b2b-modal-footer .cta-button-group { - display: flex; - justify-content: flex-end; - padding: 20px 0 5px; - width: 100%; } - -.b2b-modal-footer .cta-button-group .btn { - margin-left: auto; - margin-right: auto; - float: right; - margin-left: 10px; } - -.b2b-modal-footer .cta-button-group .btn + .btn { - margin-right: 0 !important; } - -[class*="modal-"] { - width: 100%; } - -.modal-small { - max-width: 420px; } - -.modal-medium { - max-width: 620px; } - -.modal-large { - max-width: 720px; } - -.modal-xlarge { - max-width: 860px; } - -.modal-jumbo { - max-width: 1000px; } - -.modalwrapper.modal-docked { - height: 100%; - display: flex; - align-items: center; } - -.modalwrapper.modal-docked .b2b-modal-body { - height: 80%; - overflow-y: scroll; - padding-bottom: 60px; } - -.modalwrapper.modal-docked .modal { - max-height: 80%; - height: 80%; - overflow: hidden; - top: 0; } - -.modalwrapper.modal-docked .b2b-modal-body > *:last-child { - margin-bottom: 60px; } - -@media (max-width: 767px) { - .modalwrapper { - padding: 15px; - overflow-x: hidden; } - .modal.fade.in { - top: 0; - right: 0; - left: 0; - margin-bottom: 15px; - border: none; } - .b2b-modal-header { - padding: 20px 46px 20px 15px; } - .b2b-modal-body { - width: 100%; - padding: 0 15px 15px; } - .modalwrapper.modal-docked { - position: absolute; - height: 100%; - padding: 0; } - .modalwrapper.modal-docked .modal.fade.in { - margin-bottom: 0; - width: 100% !important; - max-height: 100%; - height: 100%; - border-radius: 0; } - .modalwrapper.modal-docked .b2b-modal-body { - overflow-y: scroll; - height: 100%; } - .modalwrapper.modal-docked.modal-landscape { - overflow-y: hidden; - position: fixed; } - .modalwrapper.modal-docked.modal-landscape .modal { - overflow-y: scroll; - max-width: 100%; } - .modalwrapper.modal-docked.modal-landscape .b2b-modal-body { - height: auto; - overflow-y: hidden; } - .b2b-modal-footer { - padding: 0 15px; } - .b2b-modal-footer .cta-button-group { - display: block; - padding: 15px 0; } - .b2b-modal-footer .cta-button-group .btn { - float: none; } - .b2b-modal-footer .cta-button-group .btn + .btn { - margin-bottom: 0; } - .b2b-modal-footer .cta-button-group a.visible-phone { - align-items: center; - display: flex !important; - height: 42px; - justify-content: center; } } - -.b2b-modal-footer > .cta-button-group { - line-height: 40px; } - -.ajaxed, -.modal.fade.in .b2b-modal-header, -.modal.fade.in .b2b-modal-body, -.modal.fade.in .b2b-modal-footer { - animation-duration: 0.01s; - -o-animation-duration: 0.01s; - -ms-animation-duration: 0.01s; - -moz-animation-duration: 0.01s; - -webkit-animation-duration: 0.01s; - animation-name: DOMinsertion; - -o-animation-name: DOMinsertion; - -ms-animation-name: DOMinsertion; - -moz-animation-name: DOMinsertion; - -webkit-animation-name: DOMinsertion; } - -.monthselector thead tr th { - min-width: 46px; } - -.monthselector thead tr:after { - content: ""; - position: absolute; - left: 20px; - top: 52px; - height: 1px; - width: 85%; - border-bottom: 1px solid #ccc; } - -.monthselector tbody tr:last-child { - height: 50px; } - -.monthselector td.day { - margin: 1px 4px !important; - width: 64px !important; } - -.monthselector .datepicker-switch { - width: 195px !important; } - -.monthselector .show-date { - width: 30px !important; } - -.monthselector button.faux-input { - width: 100%; } - .monthselector button.faux-input:focus { - border: 1px solid #0574ac; } - .monthselector button.faux-input:disabled { - cursor: not-allowed; } - -.monthselector .cta-button-group { - padding: 0 20px; } - .monthselector .cta-button-group a { - margin-right: 20px; } - -.monthselector .day.active .show-date:after, .monthselector .day:focus .show-date:after, .monthselector .due-date.disabled .show-date:after { - height: 30px; - left: 9px !important; - top: 0; - width: 42px !important; } - -.monthselector .disabled.day:focus .show-date:after { - border: none; } - -.monthselector .icon-primary-calendar { - display: block; } - -.b2b-ml-nav { - padding: 0 10px 0 10px; - width: 320px; } - -.b2b-ml-nav ul { - list-style: none; - list-style-type: none; } - -.b2b-ml-nav a { - display: block; - padding: 0 0 5px 30px; - line-height: 22px; - margin-left: -10px; - color: #333; - font-size: 1.4rem; } - -.b2b-ml-nav a:focus { - outline-offset: 1px; } - -.b2b-ml-nav li:focus { - outline: none; } - -.b2b-ml-nav li:focus > a { - outline: thin dotted #666; - outline-offset: 1px; } - -.b2b-ml-nav ul li { - border-left: 1px solid #ccc; } - -.b2b-ml-nav ul ul { - padding: 0 0 0 20px; } - -.b2b-ml-nav ul > li { - position: relative; - line-height: 18px; } - -.b2b-ml-nav a > span { - background-color: #FFF; - display: inline; - margin: 0; - padding: 0; - position: absolute; - left: -11px; - top: 0; } - -.b2b-ml-nav a > span > i { - font-size: 20px; } - -.b2b-ml-nav a:only-child { - color: #0574ac; } - -.b2b-ml-nav a:only-child > span { - left: -6px; - border-radius: 50%; - line-height: 7px; - top: 5px; } - -.b2b-ml-nav a:only-child > span > i { - background-color: inherit; - background: #fff; - font-size: 10px; } - -.b2b-ml-nav ul li:first-child > a:only-child > span { - left: -6px; - border-radius: 50%; - line-height: 12px; - top: 0px; } - -.b2b-ml-nav li a + ul { - display: none; } - -.b2b-ml-nav li a.active + ul { - display: block; } - -/*to overide ng-doc inline property for library demo - TODO: Move to docs.css*/ -.b2b-ml-nav a [class^="icon-primary-"], a [class*=" icon-primary-"], a [class^="icon-primary-"]:before, a [class*=" icon-primary-"]:before { - display: inline-block; } - -.b2b-alerts-messages { - background-color: #fff; - border-radius: 8px; - height: auto; } - .b2b-alerts-messages h3 { - color: #333 !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 0 !important; } - .b2b-alerts-messages h4 { - color: #333 !important; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - margin-bottom: 0 !important; } - .b2b-alerts-messages .alert-info { - background-color: #0574ac; - border: 0; } - .b2b-alerts-messages .alert-error { - background-color: #cf2a2a; - border: 0; } - .b2b-alerts-messages .alert-success { - background-color: #1b7e28; - border: 0; } - .b2b-alerts-messages div:nth-child(2) { - padding: 0 0 15px 10px; - vertical-align: baseline; } - .b2b-alerts-messages .close:before { - color: #767676; } - .b2b-alerts-messages p { - font-size: 14px; - color: #333; - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-alerts-messages p a { - color: #333; } - .b2b-alerts-messages .btn-small { - margin-bottom: 0px; } - -.b2b-alerts-success { - border: 1px solid #1b7e28; } - -.b2b-alerts-error { - border: 1px solid #cf2a2a; } - -.b2b-alerts-info { - border: 1px solid #0574ac; } - -/* TODO: Rearange this and move to patches if needed */ -.b2b-breadcrumb-css-override > li { - margin-right: 24px; } - -.b2b-breadcrumb-css-override li > * { - float: left !important; } - -.b2b-css-override ul.nav-tabs { - margin-bottom: 0; } - -.b2b-css-override div.tab-content { - margin-top: 0; - border-top: none; } - -.b2b-css-override .tab-content .prettyprint, .b2b-css-override .usage .prettyprint { - max-height: 500px; - overflow-y: auto; } - -.b2b-top-nav-buttons-css-override { - margin-bottom: 0; - margin-top: 2px; } - -.b2b-auto-width { - width: auto !important; } - -.b2b-toggle-header-active { - color: #0568ae; } - -.b2b-toggle-header-inactive { - color: #333333; } - -.b2b-toggle-header-icon { - cursor: pointer; } - -.tab-content > .tab-pane { - display: none; } - -.tab-content > .active { - display: block; } - -.icon-primary-circle:before { - background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 1; } - -.ds2-no-colors .icon-primary-circle:before { - background-image: none; - content: "\e902"; } - -i:focus { - outline: thin dotted #666; } - -.p-col-md-12 { - width: 50%; } - -.pager__item { - border-radius: 0; - cursor: default; - display: inline-block; - margin: 5px; - width: 22px; - height: 23px; - /*transition: all 0.3s ease-out 0s;*/ - vertical-align: baseline; } - -.pager { - padding-top: 10px; - padding-bottom: 20px; - text-align: center; - margin: 0 auto; } - -.pager__item--input { - color: #067ab4; - max-height: 32px; - max-width: 40px; - padding-left: 0; - padding-right: 0; - text-align: center; - margin-left: 10px; } - -.row.section-row { - margin-bottom: 20px; } - -.pager__item--active { - border-bottom: 2px solid #0574ac; - border-radius: 0; - color: #333333; } - -.pager a.pager__item--active:hover { - cursor: default; } - -.pager a:hover, .pager a:focus { - text-decoration: none; - color: #333333; - cursor: pointer; } - -.pager a.disabled:hover, .pager a.disabled:focus { - cursor: not-allowed; } - -.row.section-row.b2b-page { - display: block; } - -a.pager__item--next:focus, a.pager__item--prev:focus { - text-decoration: none; - border: 0; } - -.pager__item--next, .pager__item--prev { - margin: 5px; - padding: 1.5px 6px 1.5px 6px; } - -.pager .disabled i { - pointer-events: none; - cursor: default; - color: #c4c4c4; } - -.fieldLabel { - color: #666666; } - -.fieldLabel input { - color: #666666; } - -.pSelect { - float: right; - width: 150px; } - -.numericResult { - margin-bottom: 20px; - font-size: 1.6rem; - margin-top: 20px; - display: inline-block; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.mobile-view > .pager__item { - margin: 5px 10px; - width: 24px; - height: 34px; - vertical-align: middle; - line-height: 34px; } - -.fade1, .fadel { - opacity: 0.4; } - -.fade2, .fadesl { - opacity: 0.6; } - -h4#pagination-truncated { - margin-top: 50px; } - -h4#pagination-large-count { - margin-top: 50px; } - -.p-col-md-12 input { - margin-left: 20px; } - -.pager a .icon-primary-right:before { - display: inline-block; } - -.pager a .icon-primary-left:before { - display: inline-block; } - -.page-heading { - background: white none repeat scroll 0 0; - margin-bottom: -12px; - padding-left: 10px; - padding-right: 10px; - position: relative; } - -.numericResult:focus { - outline: 1px dotted #0574ac; } - -.page-heading-group { - color: #ef6f00; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.pager > div > span.fieldLabel { - margin-left: 18px; } - -.pager .fieldLabel .btn-arrow { - top: 0; - left: 10px; } - -.b2b-p-col-md-12 { - width: 50%; } - .b2b-p-col-md-12 input { - margin-left: 20px; } - -.b2b-pager__item { - border-radius: 0; - cursor: default; - display: inline-block; - margin: 5px; - min-width: 23px; - height: 23px; - vertical-align: baseline; } - -.b2b-pager__item--noclick { - pointer-events: none !important; - cursor: default !important; } - -.b2b-pager { - padding-top: 10px; - padding-bottom: 20px; - text-align: center; - margin: 0 auto; } - .b2b-pager a:hover { - text-decoration: none; - color: #333333; - cursor: pointer; } - .b2b-pager a:focus { - text-decoration: none; - color: #333333; - cursor: pointer; } - .b2b-pager a .icon-primary-right:before { - display: inline-block; } - .b2b-pager a .icon-primary-left:before { - display: inline-block; } - .b2b-pager .disabled i { - pointer-events: none; - cursor: default; - color: #c4c4c4; } - -.b2b-pager__item--input { - color: #067ab4; - max-height: 32px; - max-width: 60px; - padding-left: 0; - padding-right: 0; - text-align: center; - margin-left: 10px; } - -.row.section-row { - margin-bottom: 20px; } - -.b2b-pager__item--active { - border-bottom: 2px solid #0574ac; - border-radius: 0; - color: #333333; } - -.row.section-row.b2b-page { - display: block; } - -a.b2b-pager__item--next:focus { - text-decoration: none; - border: 0; } - -a.b2b-pager__item--next-disabled { - outline: 0; } - -a.b2b-pager__item--next-disabled > [class^="icon-primary-"] { - color: #cccccc; - cursor: not-allowed; - outline: 0; } - -a.b2b-pager__item--prev:focus { - text-decoration: none; - border: 0; } - -a.b2b-pager__item--prev-disabled { - outline: 0; } - -a.b2b-pager__item--prev-disabled > [class^="icon-primary-"] { - color: #cccccc; - cursor: not-allowed; } - -.b2b-pager__item--next { - margin: 5px; - padding: 1.5px 6px 1.5px 6px; } - -.b2b-pager__item--prev { - margin: 5px; - padding: 1.5px 6px 1.5px 6px; } - -.fieldLabel { - color: #666666; } - .fieldLabel input { - color: #666666; } - .fieldLabel .btn-arrow { - top: 0; - left: 10px; } - -.b2b-pSelect { - float: right; - width: 150px; } - -.b2b-numericResult { - margin-bottom: 20px; - font-size: 1.6rem; - margin-top: 20px; } - -.b2b-mobile-view > .b2b-pager__item { - margin: 5px 10px; - min-width: 23px; - height: 34px; - vertical-align: middle; - line-height: 34px; } - -.b2b-fade1 { - opacity: 0.4; } - -.b2b-fade2 { - opacity: 0.6; } - -.b2b-fadesl { - opacity: 0.6; } - -h4#b2b-pagination-truncated { - margin-top: 50px; } - -h4#b2b-pagination-large-count { - margin-top: 50px; } - -.b2b-page-heading { - background: white none repeat scroll 0 0; - margin-bottom: -12px; - padding-left: 10px; - padding-right: 10px; - position: relative; } - -.b2b-numericResult:focus { - outline: 1px dotted #0574ac; } - -.b2b-page-heading-group { - color: #ef6f00; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.b2b-pager > div > span.fieldLabel { - margin-left: 18px; } - -input.b2b-phone-mask-input { - padding-right: 15px; } - input.b2b-phone-mask-input:hover, input.b2b-phone-mask-input:focus { - padding-right: 15px; } - -/************************** Start - Should be removed after the styling in global is fixed *******************/ -input::-ms-clear { - display: none; } - -/************************** End - Should be removed after the styling in global is fixed *******************/ -@media (max-width: 767px) { - input::-ms-clear { - display: block; } } - -.pivot-link-group { - background-color: #5a5a5a; - border-top: 1px solid #959595; } - -.pivot-links > li { - border-bottom: 1px solid #959595; } - -.pivot-links > li > a { - color: #fff; - display: block; - padding: 12px 15px 10px; - line-height: normal; } - -.b2b-profile-block-container { - min-height: 200px; - height: auto; - background-color: #fff; - border-radius: 8px; - border: 1px solid #ccc; - box-shadow: 0px 1px 1px 1px #ccc; - display: inline-table; - margin: 15px 15px; } - -.b2b-profile-block-details p, .b2b-profile-block-details div { - padding: 2px 7px; - font-size: 1.4rem; } - -.b2b-profile-block-details .radio-label, .b2b-profile-block-details a { - font-size: 1.4rem; } - -.b2b-profile-block-details p label, .b2b-profile-block-details p span { - padding-left: 10px; } - -.b2b-profile-block-footer { - margin-bottom: 12px; - margin-top: 5px; - height: 35px; } - -.b2b-profile-block-details p { - word-wrap: break-word; - height: 61px; } - .b2b-profile-block-details p:first-child { - margin-top: 10px; } - .b2b-profile-block-details p:after { - content: ' '; - display: block; - border: 0.2px solid #ccc; - margin-top: 12px; } - -.b2b-profile-block-details .radio { - margin-left: 15px; - height: 30px; } - -.b2b-approval-icon { - color: #1b7e28; - float: right; - position: relative; - left: 10px; } - .b2b-approval-icon i { - color: #1b7e28; - float: right; } - -.b2b-profile-link { - float: right; - position: relative; - left: -4px; } - -a.link-profile { - position: relative; - left: -5px; - float: right; - margin-bottom: 16px; } - -.b2b-profile-block-radio { - position: relative; - top: -5px; } - -.b2b-profile-card { - min-width: 229px; - min-height: 354px; - margin: 10px; - border: solid 1px #CCC; - font-family: "Omnes-ECOMP-W02", Arial; - display: inline-block; - vertical-align: top; } - .b2b-profile-card .top-block { - padding: 15px 20px; - background-color: #e4e4e4; - max-height: 153px; } - .b2b-profile-card .bottom-block { - padding: 15px 20px 15px 20px; - background-color: #fff; } - .b2b-profile-card .profile-image { - background: #e4e4e4; - margin-bottom: 15px; - text-align: center; } - .b2b-profile-card .profile-image .default-img { - display: inline-block; - width: 60px; - height: 60px; - margin-bottom: 10px; - border: 6px solid #fff; - border-radius: 99em; - -webkit-border-radius: 99em; - -moz-border-radius: 99em; - /* background-color: #eee; */ } - -.profile-image img { - display: inline-block; - width: 60px; - height: 60px; - margin-bottom: 10px; - border: 6px solid #fff; - border-radius: 99em; - -webkit-border-radius: 99em; - -moz-border-radius: 99em; - /* background-color: #eee; */ } - -.b2b-profile-card .profile-image .default-img { - font-family: "Omnes-ECOMP-W02", Arial; - color: #333; - background-color: #fff; - font-size: 32px; - line-height: 22px; - padding: 5px; - padding-top: 13px; - width: 60px; - height: 60px; - text-transform: uppercase; } - -.b2b-profile-card .profile-image .name { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - color: #333; - text-align: center; - margin-bottom: 5px; - margin-top: 5px; - overflow: hidden; - word-break: break-word; - white-space: normal; - text-transform: capitalize; } - -.b2b-profile-card .profile-image .status-icon { - border-radius: 10px; - border: 1px solid #fff; - margin: 0 3px 0 0; - width: 10px; - height: 10px; - display: inline-block; - vertical-align: middle; } - -.b2b-profile-card .profile-image .status { - font-size: 12px; - line-height: 15px; - text-align: center; - margin: 0 15px 0 0; - color: #444; } - -.b2b-profile-card .status .circle { - width: 10px; - height: 10px; - border-radius: 50%; - margin: 30px 6px 0px 20px; - text-align: center; - background-color: #444; } - -.b2b-profile-card .profile-image .status-green { - background-color: #0c0; } - -.b2b-profile-card .profile-image .status-red { - background-color: red; } - -.b2b-profile-card .profile-image .status-blue { - background-color: #00f; } - -.b2b-profile-card .profile-image .status-yellow { - background-color: #ff0; } - -.b2b-profile-card .profile-image .status .status-badge { - margin-left: 5px; - border: dotted 1px #444; - background-color: transparent; - font-weight: 400; - color: #444; - height: 17px; - padding: 0 5px; - font-size: 11px; - padding-left: 5px; - padding-right: 5px; } - -.b2b-profile-card .profile-details { - background: #fff; } - .b2b-profile-card .profile-details label { - display: block; - cursor: text; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: bolder; - font-size: 14px; - color: #333; - padding: 0; - margin: 0; } - .b2b-profile-card .profile-details div { - margin: 0; - font-size: 14px; - color: #333; - padding-bottom: 6.5px; } - -.b2b-profile-card .b2b-add-user { - background: white; - border-style: dotted; - font-size: 16px; - color: #333; - position: relative; } - .b2b-profile-card .b2b-add-user i { - font-size: 30px; - padding-bottom: 15px; } - -.b2b-profile-card .atcenter { - cursor: pointer; - margin-top: 60%; - vertical-align: middle; - text-align: center; } - -.b2b-profile-card .tooltip { - cursor: pointer; } - .b2b-profile-card .tooltip .helpertext { - position: relative; - color: white; } - -.b2b-profile-card .tooltip-wrapper { - position: relative; } - -/* Overrides for tooltip absolute positioning */ -@media (min-width: 1025px) { - .b2b-profile-card .tooltip-size-control { - width: 100% !important; } } - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 0 0; } - to { - background-position: 80px 0; } } - -@keyframes progress-bar-stripes { - from { - background-position: 0 0; } - to { - background-position: 80px 0; } } - -.progress { - background-color: #e4e4e4; - border-radius: 4px; - height: 14px; - margin-bottom: 20px; - min-width: 250px; - overflow: hidden; - padding: 0; - position: relative; } - -a .progress { - margin-bottom: 0; } - -.progress .bar { - background-color: #666; - border-radius: 4px; - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - height: 100%; - width: 0; } - -.progress-arrow { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; - -webkit-align-items: center; - -ms-flex-align: center; - align-items: center; - -webkit-justify-content: flex-end; - -ms-flex-pack: end; - justify-content: flex-end; } - -.progress-link + .usage-bar { - margin-top: 5px; } - -.progress-success .bar, .progress .bar-success { - background-color: #1b7e28; } - -.progress-warning .bar, .progress .bar-warning { - background-color: #ef6f00; } - -.progress-danger .bar, .progress .bar-danger { - background-color: #cf2a2a; } - -.progress.increment { - display: -webkit-flex; - display: -ms-flexbox; - display: flex; } - -.progress.increment .bar:first-child:not(:last-child) { - border-right: none; - border-radius: 4px 0 0 4px; } - -.progress.increment .bar:last-child:not(:first-child) { - border-left: none; - border-radius: 0 4px 4px 0; } - -.progress.increment .bar + .bar:not(:last-child) { - border-left: none; - border-right: none; - border-radius: 0; } - -.progress.increment .bar:not(:first-child) { - border-left: 1px solid white !important; } - -.usage-bar { - display: table; - float: none; - width: 100%; - margin-bottom: 1px; } - -.usage-bar > .usage-text { - display: table-cell; - width: 1%; } - -.progress + .usage-bar { - margin-top: -15px; } - -.usage-bar .usage-text { - font-size: 1.4rem; } - -.usage-bar .usage-text:first-child { - white-space: nowrap; } - -.usage-bar .usage-text.text-right { - vertical-align: top; - font-size: 1.4rem; - width: auto !important; } - -.usage-bar .usage-text.text-right:before { - content: ""; - display: table; - height: .1em; } - -.usage-bar.billing-cycle .usage-text { - font-size: 1.4rem; } - -.usage-bar.billing-cycle .usage-text.text-right { - vertical-align: bottom; } - -.progress.autocolor [data-percentage="1"], .progress.autocolor [data-percentage="2"], .progress.autocolor [data-percentage="3"], .progress.autocolor [data-percentage="4"], .progress.autocolor [data-percentage="5"], .progress.autocolor [data-percentage="6"], .progress.autocolor [data-percentage="7"], .progress.autocolor [data-percentage="8"], .progress.autocolor [data-percentage="9"], .progress.autocolor [data-percentage="10"] .progress.autocolor [data-percentage^="2"], .progress.autocolor [data-percentage^="3"], .progress.autocolor [data-percentage^="4"], .progress.autocolor [data-percentage^="5"], .progress.autocolor [data-percentage="60"], .progress.autocolor [data-percentage="61"], .progress.autocolor [data-percentage="62"], .progress.autocolor [data-percentage="63"], .progress.autocolor [data-percentage="64"] { - background-color: #1b7e28; } - -.progress.autocolor [data-percentage="65"], .progress.autocolor [data-percentage="66"], .progress.autocolor [data-percentage="67"], .progress.autocolor [data-percentage="68"], .progress.autocolor [data-percentage="69"], .progress.autocolor [data-percentage^="7"], .progress.autocolor [data-percentage^="8"] { - background-color: #ef6f00; } - -.progress.autocolor [data-percentage^="9"], .progress.autocolor [data-percentage="100"] { - background-color: #cf2a2a; } - -.b2b-seek-bar-container { - position: relative; } - .b2b-seek-bar-container div { - position: absolute; } - .b2b-seek-bar-container .b2b-seek-bar-track-container { - width: 100%; } - .b2b-seek-bar-container .b2b-seek-bar-track { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; } - .b2b-seek-bar-container .b2b-seek-bar-track-fill { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; - width: 0; - background-color: #157BB2; - transition: width 0s linear; } - -.seek-bar-container .seek-bar-knob-container { - transition: left 0s linear; } - -.b2b-seek-bar-container .b2b-seek-bar-knob { - width: 14px; - height: 14px; - border-radius: 10px; - top: -4px; - left: -8px; - border: 1px solid #cccccc; - background: white; - cursor: pointer; } - -.b2b-seek-bar-container .b2b-seek-bar-knob:focus { - outline: thin dotted #666; } - -.b2b-seek-bar-container.vertical { - width: 100%; - height: 100%; - margin: 0 auto; - position: relative; - border-radius: 10px; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-track-container { - position: relative; - height: 100%; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-track { - position: absolute; - height: 100%; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-track-fill { - position: absolute; - bottom: 0; - height: 0; - width: 100%; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-knob-container { - transition: bottom .01s linear; - position: relative; - bottom: 0; } - .b2b-seek-bar-container.vertical .b2b-seek-bar-knob { - position: absolute; - border-radius: 10px; - top: -7px; - left: -4px; } - -.form-search .search-query { - width: 100% !important; } - -.form-search .well { - margin-top: 0; } - -.form-search > ul.nav > li.section { - min-height: 20px !important; } - -input.b2b-search-input-field { - margin-bottom: 0px; } - -.search-suggestion-list { - background-color: #FFFFFF; - border: 1px solid #ccc; - border-radius: 0 0 6px 6px; - box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); - margin-top: -5px; - max-height: 400px; - overflow-x: hidden; - overflow-y: auto; - padding: 15px 0; - position: absolute; - width: 100%; - z-index: 1000; } - .search-suggestion-list > li.active { - background-color: #cccccc; } - .search-suggestion-list:empty { - display: none; } - -.b2b-search-hightlight { - font-weight: bold; } - -input[type="text"]::-moz-placeholder { - color: #767676; - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - -input[type="text"]:focus { - z-index: 1000; } - -input[type="text"] + .reset-field { - background-color: #FFFFFF; - height: 90%; - top: 5%; } - -.btn-search:focus { - outline: 1px dotted #0574ac; } - -.field-group input:not([type="button"])[disabled] ~ .btn-search { - background-color: #eee; } - -.btn-search[class*="btn"] { - background-color: #FFFFFF; - background-size: 20px 20px; - border-radius: 0 1.5rem 1.5rem 0; - height: 3rem; - min-width: 4.4rem !important; - right: 0.15rem; - top: 0.15rem; - width: 4.4rem; } - -.search-suggestion-wrapper { - margin-bottom: 15px; - position: relative; } - .search-suggestion-wrapper .no-result { - padding: 0px 15px; } - -.search-suggestion-item { - color: #333333; - line-height: 4rem; - padding: 0 15px; - position: relative; - z-index: 1000; } - .search-suggestion-item:hover { - background-color: #e4e4e4; - cursor: pointer; } - .search-suggestion-item:focus { - background-color: #e4e4e4; - cursor: pointer; } - .search-suggestion-item a { - color: #333333; - text-decoration: none; } - -.btn-search i { - color: #767676; } - -input.b2b-search-input-field:focus ~ .btn-search > i, .btn-search:focus > i { - color: #0568ae; } - -button.btn-search[disabled] { - cursor: not-allowed; } - button.btn-search[disabled] i { - color: #767676; } - -.linkSelectorModule { - position: relative; - height: 32px; - line-height: 20px; - border: 0px; - width: auto; - display: block; } - .linkSelectorModule .icon-primary-down { - font-size: 23px; - margin-top: -10px; - position: absolute; - top: 50%; - margin-left: -30px; } - .linkSelectorModule .selectModule { - background-color: transparent; - border: none; - color: #0568ae; - cursor: pointer; - border: 1px solid transparent; - box-shadow: none; - padding-right: 35px; - position: relative; - user-select: none; - font-size: 1.6rem; } - .linkSelectorModule .selectModule:focus { - border: 1px dotted #ccc; - box-shadow: none; - -moz-user-select: none; } - .linkSelectorModule .selectModule:hover { - text-decoration: underline; } - .linkSelectorModule .active + .moduleWrapper:before { - background-color: #FFFFFF; - border-color: #d2d2d2; - border-style: solid; - border-width: 1px 1px 0 0; - content: ""; - display: block; - height: 15px; - right: 122px; - margin: 0; - position: absolute; - top: -8px; - -webkit-transform: rotate(-45deg); - transform: rotate(-45deg); - width: 15px; } - .linkSelectorModule .moduleWrapper { - top: 40px; } - .linkSelectorModule ul.awd-module-list { - border-radius: 6px 6px 0px 0px; } - -.selectorModule .icon-primary-down { - font-size: 23px; - margin-top: -11px; - position: absolute; - right: 4px; - top: 50%; } - -.selectorModule .selectModule { - border: 1px solid #d2d2d2; - border-radius: 6px; - box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); - display: block; - width: 100%; - padding-left: 15px; - background-color: transparent; - cursor: pointer; } - .selectorModule .selectModule:focus { - border: 1px solid #0568ae; - -moz-user-select: none; } - .selectorModule .selectModule span.module-data { - position: absolute; - bottom: 6px; - line-height: 20px; } - .selectorModule .selectModule img + span.module-data { - padding-left: 45px; } - -.selectorModule .selectModule.active { - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; } - -.selectorModule .moduleWrapper { - position: absolute; - width: 100% !important; - border-top: none; } - -.selectorModule ul.awd-module-list { - border-radius: 0px 0px 6px 6px; } - -.selectorModule .large > img { - height: 30px; - position: absolute; - width: 30px; - top: 20px; - left: 15px; } - -.selectModule { - background-color: transparent; - font-family: "Omnes-ECOMP-W02", Arial; - color: #333333; - font-size: 1.6rem; - height: 36px; - line-height: 35px; - margin-bottom: 0; - position: relative; - text-align: left; - top: 0; - z-index: 10; - padding: 0px; - margin: 0px; - cursor: pointer; } - -.moduleWrapper { - background-color: #FFFFFF; - position: absolute; - color: #191919; - z-index: 9999; - box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15); - border-radius: 0px 0px 6px 6px; } - .moduleWrapper .module-list-item img { - height: 30px; - position: absolute; - width: 30px; - top: 30px; - left: 15px; - align-self: center; } - .moduleWrapper span { - display: block; - white-space: nowrap; - font-size: 1.5rem; } - -.awd-module-list { - overflow-y: auto; - z-index: 9999; - max-height: 360px; - border: 1px solid #d2d2d2; } - .awd-module-list .module-list-item > .module-data { - overflow: ellipsis; - white-space: nowrap; - line-height: 20px; - font-size: 1.6rem; - border-bottom: 1px dotted #959595; - margin: 0px 15px 0px 15px; - padding-right: 50px; - padding-bottom: 14px; - padding-top: 14px; - align-self: center; - width: 100%; } - .awd-module-list .module-list-item:hover { - background-color: #f2f2f2; } - .awd-module-list .module-list-item:active { - background-color: #f2f2f2; } - .awd-module-list .module-list-item[aria-selected="true"] { - background-color: #f2f2f2; } - -.module-list-item { - cursor: pointer; - overflow: hidden; - position: relative; - overflow: ellipsis; - white-space: nowrap; - z-index: 1000; - color: #191919; - display: flex; } - .module-list-item:last-of-type .module-data { - border-bottom: none; } - .module-list-item img + span.module-data { - padding-left: 45px; } - -.module-groups:first-of-type .module-list-item:last-of-type .module-data { - border-bottom: 1px solid #959595; } - -.module-groupitem { - padding-bottom: 4px; } - -.selectorModule.large { - height: 72px; - vertical-align: middle; - text-align: left; } - .selectorModule.large .moduleWrapper { - top: 71px; } - .selectorModule.large input { - height: 72px; - vertical-align: middle; - text-align: left; } - .selectorModule.large button { - height: 72px; - vertical-align: middle; - text-align: left; } - .selectorModule.large .selectModule img { - left: 15px; - top: 21px; } - -ul.module-groupitem li { - margin: 0 -15px 0 -15px; } - -span.module-data span { - display: block; - line-height: 20px; - font-size: 1.5rem; } - -li.module-groups { - cursor: default !important; - padding: 18px 15px 0px 15px; } - -li.module-list-item[selected]:before { - box-sizing: border-box; - display: inline-block; - font-size: 2em; - height: 1em; - position: absolute; - top: 20px; - right: 0px; - vertical-align: middle; - width: 1em; - color: #007a3e; } - -ul.module-optinalcta { - position: relative; - height: 44px; - margin-top: 0px; - border-bottom: 1px solid #d2d2d2; - border-left: 1px solid #d2d2d2; - border-right: 1px solid #d2d2d2; - border-radius: 0px 0px 6px 6px; } - ul.module-optinalcta li { - position: absolute; - bottom: 10px; } - ul.module-optinalcta a { - text-indent: 15px; - padding: 15px; } - -.b2b-slider-container { - position: relative; } - .b2b-slider-container.slider-disabled { - cursor: not-allowed !important; } - .b2b-slider-container div { - position: absolute; } - .b2b-slider-container .slider-track-container { - width: 100%; - cursor: pointer; } - .b2b-slider-container .slider-track { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; } - .b2b-slider-container .slider-track-fill { - width: 100%; - height: 6px; - background-color: #cccccc; - border-radius: 10px; - width: 0; - background-color: #157BB2; - transition: width 0s linear; } - .b2b-slider-container .slider-knob-container { - transition: left 0s linear; } - .b2b-slider-container .slider-knob-container.slider-knob-hidden { - display: none !important; } - .b2b-slider-container .slider-knob { - width: 14px; - height: 14px; - border-radius: 10px; - top: -4px; - left: -8px; - border: 1px solid #cccccc; - background: white; - cursor: pointer; } - .b2b-slider-container .slider-knob:focus { - outline: thin dotted #666; } - -.b2b-slider-endpoints-container { - margin-top: 13px; - color: #333; - font-size: 12px; } - .b2b-slider-endpoints-container .b2b-slider-endpoints-left { - float: left; - line-height: 100%; } - .b2b-slider-endpoints-container .b2b-slider-endpoints-right { - float: right; - line-height: 100%; } - .b2b-slider-endpoints-container::after { - clear: both; - content: ""; - display: block; } - -.b2b-slider-container.vertical { - width: 100%; - height: 100%; - margin: 0 auto; - position: relative; - border-radius: 10px; } - .b2b-slider-container.vertical .slider-track-container { - position: relative; - height: 100%; } - .b2b-slider-container.vertical .slider-track { - position: absolute; - height: 100%; } - .b2b-slider-container.vertical .slider-track-fill { - position: absolute; - bottom: 0; - height: 0; - width: 100%; } - .b2b-slider-container.vertical .slider-knob-container { - transition: bottom 0s linear; - position: relative; - bottom: 0; } - .b2b-slider-container.vertical .slider-knob-container.slider-knob-hidden { - display: none !important; } - .b2b-slider-container.vertical .slider-knob { - position: absolute; - border-radius: 10px; - top: -7px; - left: -4px; } - -.icon-primary-spinner { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20id%3D%22svg-spinner%22%20x%3D%220px%22%20y%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%0A%20%20%20%3Cpath%20fill%3D%22%23F5F5F5%22%20d%3D%22M18%2036C8.1%2036%200%2027.9%200%2018S8.1%200%2018%200s18%208.1%2018%2018-8.1%2018-18%2018zm0-31.5c-7.5%200-13.5%206-13.5%2013.5S10.6%2031.5%2018%2031.5c7.5%200%2013.5-6.1%2013.5-13.5%200-7.5-6-13.5-13.5-13.5z%22%2F%3E%0A%20%20%20%3Cpath%20fill%3D%22%230568AE%22%20id%3D%22spinner%22%20d%3D%22M30.7%205.3l-3.1%203.2c2.4%202.4%203.9%205.8%203.9%209.5%200%207.4-6.1%2013.5-13.5%2013.5S4.5%2025.4%204.5%2018%2010.6%204.5%2018%204.5V0C8.1%200%200%208.1%200%2018s8.1%2018%2018%2018%2018-8.1%2018-18c0-5-2-9.5-5.3-12.7z%22%3E%0A%20%20%20%20%20%20%3CanimateTransform%20%0A%20%20%20%20%20%20%20%20%20attributeType%3D%22xml%22%0A%20%20%20%20%20%20%20%20%20attributeName%3D%22transform%22%0A%20%20%20%20%20%20%20%20%20type%3D%22rotate%22%0A%20%20%20%20%20%20%20%20%20from%3D%220%2018%2018%22%0A%20%20%20%20%20%20%20%20%20to%3D%22360%2018%2018%22%0A%20%20%20%20%20%20%20%20%20dur%3D%221.0s%22%0A%20%20%20%20%20%20%20%20%20repeatCount%3D%22indefinite%22%0A%20%20%20%20%20%20%2F%3E%0A%20%20%20%3C%2Fpath%3E%0A%3C%2Fsvg%3E"); - height: 50px; - width: 50px; } - -.icon-primary-spinner.small { - margin-right: 5px; - height: 30px !important; - width: 30px !important; } - -.isIE .icon-primary-spinner, -.isIE .icon-primary-spinner.small { - animation: spinner 1s linear infinite; } - -.ds2-no-colors .icon-primary-spinner { - animation: spinner 1s linear infinite; - border: 5px dotted transparent; - border-radius: 50%; } - -@keyframes spinner { - 0% { - transform: rotate(0deg); } - 100% { - transform: rotate(359deg); } } - -.b2b-status-tracker > .btn-arrow:nth-of-type(1) { - margin-right: 10px; } - -.b2b-status-tracker > .btn-arrow:nth-of-type(2) { - margin-left: 20px; } - -.b2b-status-tracker > .btn-arrow { - height: 20px; - margin-top: 25px; - overflow: visible; } - .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-left { - margin-right: 5px; - color: #0574ac; } - .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-right { - color: #0574ac; } - -.b2b-status-tracker > .b2b-status-tracker-step { - padding: 0; - position: relative; } - -.b2b-status-tracker-step { - margin-left: 5px; } - -.b2b-status-tracker > .b2b-status-tracker-step .b2b-status-tracker-heading { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - color: #767676; - margin-bottom: 10px; } - -.b2b-status-tracker > .b2b-status-tracker-step.complete > .b2b-status-tracker-heading { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #1b7e28; } - -.b2b-status-tracker > .b2b-status-tracker-step.complete > .progress > .progress-bar { - width: 100%; - background-color: #1b7e28; } - -.b2b-status-tracker > .b2b-status-tracker-step.complete > .b2b-status-tracker-estimate { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #333333; } - .b2b-status-tracker > .b2b-status-tracker-step.complete > .b2b-status-tracker-estimate > .icoControls-approval { - color: #1b7e28; } - -.b2b-status-tracker > .b2b-status-tracker-step.current > .b2b-status-tracker-heading { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #333333; } - -.b2b-status-tracker > .b2b-status-tracker-step.current > .progress > .progress-bar { - width: 100%; - background-color: #333333; } - -.b2b-status-tracker > .b2b-status-tracker-step.current > .b2b-status-tracker-estimate > .icon-misc-time { - color: #333333; } - -.b2b-status-tracker > .b2b-status-tracker-step > .progress { - position: relative; - border-radius: 1.5px; - height: 3px; - margin-bottom: 10px; - background-color: #c5c5c5; } - .b2b-status-tracker > .b2b-status-tracker-step > .progress > .progress-bar { - width: 0; - height: 3px; } - -.b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - color: #767676; - margin-bottom: 10px; } - .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate > .icon-misc-time { - color: #767676; } - -.b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 12px; - color: #767676; - padding-right: 15px; } - -.step-indicator { - height: auto; - padding: 40px 0; } - -.step-heading { - color: #333333; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 3.8rem; - line-height: 0.8; } - -.steps { - display: flex; - height: 5px; - margin-top: 60px; - position: relative; } - -.steps li { - color: #5a5a5a; - flex: 1; - margin-right: 5px; - background-color: #c4c4c4; - outline: 1px solid transparent; } - -.steps li:first-child { - border-radius: 4px 0 0 4px; } - -.steps li:last-child { - margin-right: 0; - border-radius: 0 4px 4px 0; } - -.steps li.step-on, -.steps li.step-done { - background-color: #007a3e; - color: #007a3e; - border: 1px solid transparent; } - -.step-text { - bottom: 29px; - display: inline-block; - font-size: 1.8rem; - margin-top: 0; - position: relative; - white-space: nowrap; } - -.step-on .step-text { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.steps li .step-text[data-large-text]:before { - content: attr(data-large-text) " "; } - -.step-confirmation { - color: #007a3e; - margin-bottom: 30px; } - -.step-confirmation > div { - display: flex; } - -.step-confirmation > div i { - color: #007a3e; - font-size: 50px; - margin-right: 10px; } - -.step-confirmation.centered > div i { - margin-left: -60px; } - -.step-confirmation > div h3 { - font-size: 2.4rem; - margin: 26px 0 20px; } - -.step-confirmation > p { - margin: 0; } - -@media (max-width: 1024px) { - .step-indicator { - padding: 25px 0; } - .steps { - margin-top: 0; } - .step-heading { - font-size: 2.4rem; - margin-bottom: 11px; } - .step-text { - display: none; } - .step-on .step-text { - bottom: 6px; - display: block; - font-size: 1.2rem; - left: 0; - line-height: 1; - margin-top: 10px; - position: absolute; - top: 4px; } - .steps li .step-text[data-sm-text]:before { - content: attr(data-sm-text) " "; - color: #333333; } - .step-confirmation { - margin-top: 30px !important; } } - -@media (max-width: 767px) { - .step-confirmation.centered > div i { - margin-left: 0; } - .step-confirmation.centered > p { - margin-left: 40px; } - .step-confirmation > div h3 { - font-size: 1.8rem; - margin: 13px 0 10px; } - .step-confirmation > div i { - font-size: 30px; - margin-right: 10px; } } - -.step-indicator.vertical { - height: auto; } - -.vertical .step-heading { - font-size: 24px; } - -.vertical .steps { - display: block; - height: inherit; - width: 100%; } - -.vertical .steps li { - align-items: center; - background-color: transparent; - display: flex; - height: 60px; - margin: 0 0 4px; - padding: 0 0 0 20px; - position: relative; } - -.vertical .steps li .step-text { - align-self: center; - color: #0568ae; - display: block; - margin: 0; - position: relative; - font-size: 14px; - top: 0; } - -.vertical .steps li .step-text[data-large-text]:before { - content: attr(data-large-text) " "; } - -.vertical .steps li:after { - background-color: transparent; - border-left: 4px solid #d2d2d2; - content: ""; - height: 60px; - left: 0; - margin: 0; - padding: 0; - position: absolute; - top: 0; - width: 4px; } - -.vertical .steps li.step-on:after, -.vertical .steps li.step-done:after { - border-color: #0568ae; } - -.b2b-step-tracker { - height: auto; - padding: 0px 0px 0px 0px; } - .b2b-step-tracker .btn.btn-left { - margin-right: 10px; } - .b2b-step-tracker .btn.btn-right { - margin-left: 5px; } - .b2b-step-tracker .b2b-left-arrow { - float: left; - margin-top: -5px; } - .b2b-step-tracker .b2b-right-arrow { - float: right; - margin-top: -5px; } - .b2b-step-tracker .b2b-steps { - display: flex; - height: 5px; - margin-top: 30px; - position: relative; } - .b2b-step-tracker .b2b-steps li { - color: #767676; - flex: 1; - margin-right: 5px; - background-color: #767676; - outline: 1px solid transparent; - height: 3px; } - .b2b-step-tracker .b2b-steps li.b2b-step-done { - background-color: #1b7e28; - color: #007a3e; - height: 3px; } - .b2b-step-tracker .b2b-steps li.b2b-step-on { - background-color: #333333; - color: #333333; - height: 3px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - .b2b-step-tracker .b2b-steps li .b2b-step-text { - bottom: 29px; - display: inline-block; - font-size: 14px; - margin-top: 0; - position: relative; - white-space: nowrap; } - .b2b-step-tracker .b2b-steps li .b2b-step-text[data-large-text]:before { - content: attr(data-large-text) " "; } - .b2b-step-tracker .b2b-steps li:first-child { - border-radius: 2px 0 0 2px; } - .b2b-step-tracker .b2b-steps li:last-child { - margin-right: 0; - border-radius: 0 2px 2px 0; } - -@media (max-width: 1024px) { - .b2b-step-tracker { - padding: 25px 0; } - .b2b-step-tracker .b2b-steps { - margin-top: 0; } - .b2b-step-tracker .b2b-steps li .b2b-step-text { - display: none; } - .b2b-step-tracker .b2b-steps li .b2b-step-text[data-sm-text]:before { - content: attr(data-sm-text) " "; - color: #333333; } - .b2b-step-tracker .b2b-steps li.b2b-step-on .b2b-step-text { - bottom: 6px; - display: block; - font-size: 10px; - left: 0; - line-height: 1; - margin-top: 10px; - position: absolute; - top: 4px; } } - -.strength-meter-container { - height: 26px; - max-width: 450px; } - -.strength-meter-gauge { - border-radius: 2px; - background-color: #d2d2d2; - height: 5px; - display: block; - position: relative; - outline: 1px solid transparent; } - -.strength-meter-gauge-fill { - height: 100%; - display: block; - border-radius: 2px; - text-indent: -9999px; - width: 0%; - border: 2px solid transparent; } - -.strength-meter-gauge-fill.strength-meter-animate { - transition: width 0.5s linear, background-color 0.5s linear; } - -.strength-meter-animate[style*="20"] { - background-color: #cf2a2a; } - -.strength-meter-animate[style*="20"] + .strength-meter-divider + .strength-meter-content:after { - content: "Unacceptable"; } - -.strength-meter-animate[style*="40"] { - background-color: #ea7400; } - -.strength-meter-animate[style*="40"] + .strength-meter-divider + .strength-meter-content:after { - content: "Weak"; } - -.strength-meter-animate[style*="60"] { - background-color: #ea7400; } - -.strength-meter-animate[style*="60"] + .strength-meter-divider + .strength-meter-content:after { - content: "Fair"; } - -.strength-meter-animate[style*="80"] { - background-color: #007a3e; } - -.strength-meter-animate[style*="80"] + .strength-meter-divider + .strength-meter-content:after { - content: "Good"; } - -.strength-meter-animate[style*="100"] { - background-color: #007a3e; } - -.strength-meter-animate[style*="100"] + .strength-meter-divider + .strength-meter-content:after { - content: "Excellent"; } - -.strength-meter-divider { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - display: flex; - overflow: hidden; } - -.strength-meter-divider span { - background: transparent; - display: block; - flex-grow: 1; - border-right: solid 1px #fff; } - -.strength-meter-divider span:first-child { - border-radius: 2px 0 0 2px; } - -.strength-meter-divider span + .strength-meter-divider span { - border-radius: 0; } - -.strength-meter-divider span:last-child { - border-radius: 0 2px 2px 0; - border-right: 0; } - -.strength-meter-content { - font-size: 14px; - line-height: 1; - padding-top: 7px; - position: absolute; } - -.strength-meter-content:before { - font-family: "Omnes-ECOMP-W02", Arial; - content: "Password strength: "; } - -.strength-meter-content:after { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.strength-meter-container { - height: 26px; - min-width: 290px; - max-width: 450px; } - -.strength-meter-container .strength-meter-gauge { - border-radius: 2px; - background-color: #cccccc; - box-shadow: 0 1px 1px -1px #333 inset; - height: 5px; - display: block; - overflow: hidden; - position: relative; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill { - height: 100%; - box-shadow: 0 1px 1px -1px #999 inset; - display: block; - text-indent: -9999px; - width: 0%; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill.strength-meter-animate { - transition: width 0ms ease-out, background-color 0ms ease-in; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-divider { - position: absolute; - top: 0; - bottom: 0; - left: 0; - right: 0; - display: flex; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-divider span { - background: transparent; - display: block; - flex-grow: 1; - border-right: solid 1px #fff; } - -.strength-meter-container > .strength-meter-gauge > .strength-meter-divider span:last-child { - border-right: 0; } - -.strength-meter-container > .strength-meter-content { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - line-height: 1; - padding-top: 7px; } - -.strength-meter-container > .strength-meter-content:before { - content: none; } - -.strength-meter-container > .strength-meter-content > .strength-meter-content-state { - font-family: "Omnes-ECOMP-W02-Medium", Arial; } - -.btn-switch-label { - display: flex; - align-items: center; } - .btn-switch-label:focus .btn-switch { - outline: 1px dotted #666; - outline-offset: 5px; } - .btn-switch-label input:focus .btn-switch { - outline: 1px dotted #666; - outline-offset: 5px; } - .btn-switch-label > span { - flex: 1; } - -.btn-switch { - background-color: #fff; - border: 1px solid #d2d2d2; - border-radius: 16px; - box-shadow: 0 4px 5px -5px rgba(0, 0, 0, 0.15) inset, 0 5px 5px -5px rgba(0, 0, 0, 0.15); - height: 32px; - overflow: hidden; - position: relative; - width: 80px; - user-select: none; } - .btn-switch input[type="checkbox"] { - left: 0; - margin: 0; - opacity: 0; - position: absolute; - top: 0; - transition: none; } - .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on .activo { - font: 0px/0 "Omnes-ECOMP-W02"; } - .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on + .btn + .btn-slider-off .inactivo { - font: 0px/0 "Omnes-ECOMP-W02"; } - .btn-switch input:checked + .switch-overlay { - left: 0; - transition: all .3s linear .0s; } - .btn-switch input:checked + .switch-overlay .switch-handle { - background-color: #007a3e; - background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); - transition: background-color 0.3s linear 0s; - border: 1px solid transparent; } - .btn-switch input + .switch-overlay { - left: -48px; - transition: all .3s linear .0s; } - .btn-switch input + .switch-overlay .switch-handle { - background-color: #f2f2f2; - background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); - transition: background-color 0.3s linear 0s; - border: 1px solid #d2d2d2; } - .btn-switch input[disabled] + .switch-overlay { - left: 0; - width: 100% !important; - background-color: #d2d2d2; - color: #959595; - cursor: not-allowed !important; } - .btn-switch input[disabled] + .switch-overlay .btn-slider-on { - display: none; } - .btn-switch input[disabled] + .switch-overlay .activo { - display: none; } - .btn-switch input[disabled] + .switch-overlay .switch-handle { - display: none; } - .btn-switch input[disabled] + .switch-overlay .btn-slider-off { - left: 0; - text-align: center; - padding: 0; } - .btn-switch input[disabled]:checked + .switch-overlay { - left: 0; - width: 100% !important; - background-color: #fff; } - .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off { - display: none; } - .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off + .inactivo { - display: none; } - .btn-switch input[disabled]:checked + .switch-overlay .switch-handle { - display: none; } - .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-on { - display: block; - text-align: center; - padding: 0; - color: #007a3e !important; - font-weight: bold; } - .btn-switch input[disabled]:checked + .switch-overlay .activo { - display: block; - text-align: center; - padding: 0; - color: #007a3e !important; - font-weight: bold; } - .btn-switch input[disabled]:checked + .btn-slider-on { - display: block; } - .btn-switch input[disabled] + .btn-slider-on + .switch-handle { - width: 100%; - margin: 0; } - .btn-switch input[disabled] + .btn-slider-on + .switch-handle + .btn-slider-off { - display: block; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on { - display: none; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo { - border: medium none; - color: #666; - font: 16px/32px "Omnes-ECOMP-W02"; - height: auto; - margin: 0 auto; - width: auto; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo:before { - display: none; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { - display: block; - padding: 0; - text-align: center; - color: #333333; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo { - border: medium none; - color: #666; - font: 16px/32px "Omnes-ECOMP-W02"; - height: auto; - margin: 0 auto; - width: auto; } - .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo:before { - display: none; } - .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on { - display: block; - padding: 0; - text-align: center; - color: #007a3e; } - .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { - display: none; } - .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .activo { - color: #007a3e; - font-weight: bold; } - -.switch-overlay { - border-radius: 16px; - color: black !important; - font-size: 1.6rem; - height: 32px; - left: 0; - position: absolute; - top: -1px; - width: 126px; - overflow: hidden; } - -.btn-slider-on { - left: -1px; - text-align: left; - padding-left: 12px; - display: inline-block; - font-family: "Omnes-ECOMP-W02", Arial; - height: 32px; - line-height: 32px; - position: absolute; - top: 1px; - width: 80px; } - -.btn-slider-off { - display: inline-block; - font-family: "Omnes-ECOMP-W02", Arial; - height: 32px; - line-height: 32px; - position: absolute; - top: 1px; - width: 80px; - right: 1px; - text-align: right; - padding-right: 11px; } - -.switch-handle { - border-radius: 50%; - display: inline-block; - height: 26px; - left: 50px; - position: absolute; - top: 3px; - width: 26px; } - -.activo { - display: block; - font-size: 0.1px; - line-height: 40px; - overflow: hidden; } - .activo:before { - background-image: none; - border-left: 3px solid #007a3e; - content: " "; - height: 18px; - left: 22px; - margin: 2px auto; - position: absolute; - top: 5px; - width: 0; } - -.inactivo { - font-size: 0.1px; - line-height: 40px; } - .inactivo:before { - background-image: none; - border: 3px solid #959595; - border-radius: 100%; - content: " "; - display: block; - position: absolute; - top: 4px; - right: 3px; - height: 16px; - width: 16px; } - -table { - max-width: 100%; - background-color: transparent; - border-collapse: collapse; - border-spacing: 0; - width: 100%; - margin-bottom: 20px; } - -table caption { - text-align: left; } - -table thead th { - vertical-align: bottom; } - -table th, -table td { - padding: 19px 20px; - line-height: 1; - font-size: 1.4rem; - text-align: left; - vertical-align: top; - word-wrap: break-word; } - -table th { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 1.6rem; - font-weight: normal; - color: #333333; - padding: 13px 20px; } - -table tbody td { - border-left: 1px solid #d2d2d2; - border-top: 1px solid #d2d2d2; } - -table tbody td:first-child { - border-left: none; } - -.tiny-accordion.iconleft.accordion-table-layout .toggle-header, -.tiny-accordion.iconleft.accordion-table-layout .toggle-header + .accordion-content, -.tiny-accordion.iconleft.accordion-table-layout .inactive-toggle-header { - padding: 0 0 0 50px; } - -.faux-table-cell, -.inactive-toggle-header .faux-table-cell { - display: table-cell; - width: 100%; - padding: 13px 0 10px 0; - font-size: 16px; - color: #333333; } - -.accordion-content .faux-table-cell { - display: table-cell; - width: 100%; - padding: 0 0 10px 0; } - -.faux-table-cell:last-child { - text-align: right; - min-width: 100px; - max-width: 150px; - width: 1%; - background-color: #f2f2f2; - color: #333333; - font-size: 14px; - border-left: 1px solid #d2d2d2; - padding: 0 20px 0 10px; } - -.tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { - opacity: 1; } - -.tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { - opacity: 0; - transition: opacity .3s linear .2s; } - -@media (max-width: 767px) { - table th, - table td { - padding: 19px 10px; } - table th:first-child, - table td:first-child { - padding: 19px 15px; } } - -.data-row-list ul > li { - background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; } - -table { - border-bottom: 1px solid #d2d2d2; } - -table th, -table td { - padding: 15px 15px 10px; } - -.data-row .col-1 { - white-space: nowrap; - padding: 15px 15px 0 15px; - position: relative; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; - border-top: 1px solid #d2d2d2; } - -.data-row.has-button .col-1 { - padding: 0; } - -.complex-table .data-row .col-1 { - color: #0568ae; - cursor: pointer; } - -.data-row.opened { - box-shadow: 0 -2px 0 0 #d2d2d2; } - -.data-row.opened td, -.data-row.opened th { - border-left: 1px solid transparent; - border-bottom: 1px solid transparent; } - -.data-row.opened + .data-row-list { - box-shadow: 0 1px 0 0 #d2d2d2; } - -.data-row.opened + .data-row-list > td { - padding-top: 0; } - -.data-row.opened + .data-row-list + .data-row.opened { - box-shadow: 0 -1px 0 0 #d2d2d2; } - -.data-row button { - background-color: transparent; - border: medium none; - border-radius: 0; - color: #0568ae; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; - left: 0; - margin: 0; - padding: 12px 15px 7px; - position: relative; - text-align: left; - top: 0; - vertical-align: middle; } - -.data-row button:focus { - outline: 1px dotted black; } - -.data-row .col-1 i { - top: -1px; - margin-right: 10px; - display: inline-block !important; } - -.data-row-list th:first-child { - background-color: inherit !important; - border-top: none; - padding: 0 15px 15px; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; } - -.data-row-list ul { - margin: 0 0 0 30px; } - -.data-row-list ul > li:before { - display: none; } - -.data-row-list ul > li { - /* background-image in tables.less */ - background-position: left 13px; - background-repeat: repeat-x; - background-size: 4px 1px; - display: table; - padding-left: 0; - width: 100%; } - -.data-row-list li div { - display: table-cell; - background-color: white; - float: left; - text-align: left; - padding-left: 0; - padding-right: 7px; } - -.data-row-list li div + div { - float: right; - text-align: right; - padding-right: 0; - padding-left: 7px; } - -.complex-table td:nth-child(1), -.complex-table td:nth-child(2), -.complex-table td:nth-child(3), -.complex-table td:nth-child(4), -.complex-table td:nth-child(5), -.complex-table td:nth-child(6), -.complex-table td:nth-child(7), -.complex-table td:nth-child(8), -.complex-table td:nth-child(9) { - white-space: nowrap; } - -th:nth-child(8) { - word-wrap: break-word; - word-spacing: 0; } - -.align-col-right { - text-align: right; } - -.complex-table th:not(:first-child), -.complex-table td:not(:first-child) { - text-align: right; } - -.striped tbody > tr td { - background-color: transparent !important; } - -.striped tbody > tr.data-row.odd, -.striped tbody > tr.data-row.odd + .data-row-list, -.striped tbody > tr.data-row.odd + .data-row-list li div { - background-color: #f2f2f2 !important; } - -.striped tbody > tr:not('.data-row'):nth-child(even) { - background-color: #f2f2f2; } - -.b2b-table-div .selectWrap { - width: 290px; - position: relative; - left: 10px; - display: inline-table; - margin-bottom: 0px; } - -.b2b-external-sort-div { - float: right; - padding-bottom: 25px; } - -.b2b-external-sort-div .sortButton { - font-size: 36px; - border: 1px solid #ccc; - background: #FFF; - border-radius: 6px; } - -.b2b-external-sort-label { - padding-bottom: 10px; } - -.b2b-external-sort-div a:hover { - cursor: pointer; } - -.b2b-external-sort-div a:hover, .b2b-external-sort-div a:focus { - text-decoration: none; } - -.b2b-external-sort-label label { - position: relative; - left: 10px; } - -.tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { - background: 0 0; - cursor: default; } - -.tablesorter-default .tablesorter-header .tablesorter-header-inner { - /* background-image: url(images/tables/upanddown.png);*/ - background-position: center right; - background-repeat: no-repeat; - cursor: pointer; - white-space: normal; - display: inline-block; - vertical-align: baseline; - zoom: 1; - *display: inline; - *vertical-align: auto; - /* padding: 0 24px 0 0;*/ } - -.tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { - padding: 0; } - -.tablesorter-default .tablesorter-header.tablesort-sortable .tablesorter-header-inner span { - margin-right: 24px; - display: inline-block; } - -/* -.tablesorter-default thead .headerSortUp .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner { - background-image: url(images/tables/up.png); -} - -.tablesorter-default thead .headerSortDown .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { - background-image: url(images/tables/down.png); -} -*/ -.tablesorter-default thead .headerSortUp .tablesorter-header-inner, -.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner, -.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner, -.tablesorter-default thead .headerSortDown .tablesorter-header-inner, -.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner, -.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { - padding-right: 0; - line-height: 16px; } - -.tablesorter-default thead .headerSortUp .tablesorter-header-inner:after, -.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner:after, -.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner:after { - font-family: 'icoPrimary' !important; - speak: none; - font-style: normal; - font-size: 24px; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 14px; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -moz-user-select: none; - -ms-user-select: none; - -webkit-user-select: none; - user-select: none; - content: "\ea3c"; - /* position: relative;*/ - position: absolute; - text-decoration: inherit; - display: inline-block; - transform: rotate(180deg); - margin-left: -22px; - margin-top: 2px; } - -.tablesorter-default thead .headerSortDown .tablesorter-header-inner:after, -.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner:after, -.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner:after { - font-family: 'icoPrimary' !important; - speak: none; - font-style: normal; - font-size: 24px; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 14px; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; - -moz-user-select: none; - -ms-user-select: none; - -webkit-user-select: none; - user-select: none; - content: "\ea3c"; - /* position: relative;*/ - position: absolute; - text-decoration: inherit; - display: inline-block; - margin-left: -22px; - margin-top: 2px; } - -.tablesorter-search-highlight { - font-weight: 700; } - -.tablesorter-headerRow th:focus { - outline: thin dotted #666; - outline-offset: -1px; } - -.b2b-table-message { - font-family: "Omnes-ECOMP-W02", Arial; } - .b2b-table-message .b2b-magnify-glass { - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20enable-background%3D%22new%200%200%2036%2036%22%3E%3Cpath%20d%3D%22M27.847%208.26c-1.805-1.803-4.202-2.795-6.751-2.795-2.548%200-4.945.993-6.749%202.796-1.803%201.803-2.796%204.2-2.796%206.75%200%201.879.543%203.681%201.576%205.242l-7.059%207.059c-.357.356-.554.831-.554%201.336-.001.505.196.98.554%201.337.357.356.832.552%201.336.552.503%200%20.977-.196%201.336-.553l7.047-7.048c1.576%201.062%203.402%201.622%205.309%201.622%202.55%200%204.948-.993%206.751-2.796%201.803-1.804%202.796-4.201%202.796-6.751%200-2.549-.993-4.947-2.796-6.751zm-6.761.96c3.186%200%205.778%202.592%205.778%205.778%200%203.186-2.592%205.778-5.778%205.778-3.186%200-5.778-2.592-5.778-5.778%200-3.185%202.592-5.778%205.778-5.778z%22%20fill%3D%22%23767676%22%2F%3E%3C%2Fsvg%3E"); - background-repeat: no-repeat; - background-position: center; - height: 50px; } - .b2b-table-message .b2b-alert { - font-size: 50px; } - .b2b-table-message .b2b-loading-dots { - font-size: 50px; - margin-bottom: 20px; } - .b2b-table-message .b2b-message { - text-align: center; - padding-bottom: 45px; - padding-top: 40px; - border-style: solid; - border-width: 1px; - border-top: none; - padding-bottom: 45px; - border-color: #d2d2d2; - width: 100%; - min-height: 220px; } - .b2b-table-message .b2b-error-title { - font-family: "Omnes-ECOMP-W02", Arial; - color: #444444; - line-height: 26px; - margin-top: 10px; } - .b2b-table-message .b2b-message-title { - color: #444; - font-family: "Omnes-ECOMP-W02", Arial; } - -.b2b-table-scrollbar { - border: 1px solid; - width: 651px; } - .b2b-table-scrollbar .b2b-table-inner-container { - width: 650px; - padding-left: 150px; - overflow-x: scroll; } - .b2b-table-scrollbar th:first-child { - background-color: #FFFFFF; } - .b2b-table-scrollbar td:first-child { - background-color: #FFFFFF; - border-top: 1px solid #cccccc; - border-right: 1px solid #cccccc; - margin-top: -0.5px; } - .b2b-table-scrollbar tr { - th: nth-child(2), td; } - .b2b-table-scrollbar tr :nth-child(2) { - border-left: none; } - .b2b-table-scrollbar tr:last-child > td:first-child { - border-bottom: 1px solid #cccccc; } - -.b2b-scrollbar-arrow-left { - float: left; - margin: 10px; } - -.b2b-scrollbar-arrow-right { - float: right; - clear: right; - margin: 10px; } - .b2b-scrollbar-arrow-right.btn-arrow .btn { - margin-right: 0; } - -.b2b-table-scrollbar ::-webkit-scrollbar { - height: 10px; } - -.b2b-table-scrollbar ::-webkit-scrollbar-thumb { - background: #666666; - border-radius: 5px; } - -.tabs { - margin-left: 0; - margin-bottom: 20px; - list-style: none; } - -.tabs > li > a { - display: block; } - -.tabs > li > a:hover, -.tabs > li > a:focus { - text-decoration: none; - background-color: #d2d2d2; } - -.tabs > .pull-right { - float: right; } - -.tabs:before, -.tabs:after { - display: table; - content: ""; - line-height: 0; } - -.tabs:after { - clear: both; } - -.tabs > li { - float: left; } - -.tabs > li > a { - padding-right: 20px; - padding-left: 20px; - margin-right: 3px; - line-height: 16px; } - -.tabs { - margin: 0; } - -.tabs > li { - margin-bottom: -1px; } - -.tabs > li:first-child { - margin-left: 20px; } - -.tabs > li > a { - padding: 12px 20px; - border: 1px solid #d2d2d2; - border-radius: 6px 6px 0 0; - background-color: #f2f2f2; - color: #5a5a5a; - border-color: #d2d2d2; } - -.tabs > li > a { - margin-right: 6px; } - -.tabs > li > a, -.tabs > li > a:hover, -.tabs > li > a:focus { - background-image: none; - background-color: #ffffff; - color: #5a5a5a; - border-color: #d2d2d2; - border-bottom: 1px solid transparent; - cursor: pointer; } - -.tabs.tabs-justified, -.tabs.promo-tabs { - width: 100%; - border-bottom: 0; - margin-bottom: -1px; } - -.tabs.tabs-justified > li, -.tabs.promo-tabs > li { - display: table-cell; - float: none; - width: 1%; - border-left: 1px solid #d2d2d2; } - -.tabs.tabs-justified > li.active, -.tabs.promo-tabs > li.active { - position: relative; - z-index: 1000; } - -.tabs.tabs-justified > li > a { - padding-right: 5px; - padding-left: 5px; } - -.tabs.tabs-justified > li > a, -.tabs.promo-tabs > li > a { - text-align: center; } - -.tabs.promo-tabs > li > a { - padding: 0; - margin: 0; - border-radius: 0; - border: none; - color: #0568ae; - font-size: 1.2rem; - text-align: center; - padding: 6px 10px 10px; - border-top: 4px solid #e6e6e6; - filter: none; - border-bottom: 1px solid #d2d2d2; - background-color: #f9f9f9; } - -.tabs > li:last-child > a { - margin-right: 0; } - -.tabs.promo-tabs > li.active > a { - color: #333333; - border-top: 4px solid #ea7400; - border-bottom-color: white; - background-color: #fff !important; - filter: none; - cursor: default; } - -.tabs.promo-tabs > li:first-child { - border-left: none; } - -.tabs.promo-tabs > li > a img { - max-width: inherit; - max-height: 39px; - margin: 0 auto 5px auto; - display: block; } - -.tabbable:before, -.tabbable:after { - display: table; - content: ""; - line-height: 0; } - -.tabbable:after { - clear: both; } - -.tab-content { - overflow: auto; - border: 1px solid #e6e6e6; } - -.tabs.promo-tabs + .tab-content { - border: none; - border-bottom: 1px solid #e6e6e6; } - -.tab-content > .tab-pane { - padding: 10px 15px; } - -.tab-content.noborder { - border: none; } - -.tab-content.noborder > .tab-pane { - padding: 0; } - -.tab-content > .tab-pane { - display: none; } - -.tab-content > .active { - display: block; } - -.tabs.promo-tabs > li > a { - font-size: 2.0rem; - height: 70px; - padding: 20px 20px 24px; - background-color: #FFFFFF; - border-top: 5px solid #FFFFFF; - white-space: nowrap; } - -.tabs.promo-tabs > li.active > a { - border-top: 5px solid #0574ac; } - -.tabs.promo-tabs > li > a:hover { - color: #333333; } - -.tabs.promo-tabs > li { - width: auto; } - -.tabs > li[disabled="disabled"] > a:hover { - cursor: not-allowed; } - -.b2b-tags { - background-color: #f2f2f2; - -webkit-transition: all .3s ease-out; - -moz-transition: all .3s ease-out; - transition: all .3s ease-out; - margin: 3px 5px 3px 0; - padding: 2px 15px; - border-radius: 6px; - border: 1px solid #c9c9c9; - display: inline-block; } - .b2b-tags .tags__item { - font-size: 14px; - vertical-align: baseline; - zoom: 1; - color: #333; } - .b2b-tags .tags__item i { - color: #0574ac; - font-size: 14px; - font-weight: bold; - margin-left: 10px; } - .b2b-tags .tags__item i:hover { - cursor: pointer; } - .b2b-tags .tags__item i:focus { - outline: thin dotted #666; } - .b2b-tags .tags__item:last-child { - margin-right: 0; } - .b2b-tags .tags__item:hover { - text-decoration: none; } - .b2b-tags .tags__item:focus { - outline: 1px dotted #666; } - -.tooltip-size-control { - display: block; } - -.tooltip { - display: inline-block; - height: 20px; - vertical-align: middle; - margin: 1px 0 0 7px; } - -p .tooltip { - margin: -3px 7px 0 0; } - -label .tooltip { - margin: 1px 0 0 7px; } - -.tooltip .icon-primary-tooltip { - background: none; - border: none; - display: inline-block; - font-size: 20px; - height: 20px; - margin: 0; - position: relative; - width: 20px; } - -.tooltip .icon-primary-tooltip:before { - top: 0; } - -.tooltip .icon-primary-tooltip:focus { - text-decoration: none; - outline: 1px dotted black; } - -.tooltip.active .icon-primary-tooltip:focus { - outline: none; } - -.tooltip .arrow { - display: none; - border-color: transparent; - border-style: solid; - background-color: #0568ae; - height: 20px; - width: 20px; - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - opacity: 0; - transform: rotate(45deg); } - -.tooltip.active .icon-primary-tooltip[data-placement="top"] .arrow { - display: block; - bottom: 32px; - top: auto; - border-width: 0 1px 1px 0; } - -.tooltip.active .icon-primary-tooltip[data-placement="bottom"] .arrow { - border-width: 1px 0 0 1px; - display: block; - bottom: -33px; - top: auto; } - -.tooltip.active .arrow { - opacity: 1; } - -.tooltip .closingtooltip { - display: block; } - -.tooltip.active .closingtooltip { - display: none; } - -.tooltip-wrapper { - position: absolute; - margin-top: 20px; - left: 15px; - right: 15px; - display: none; - opacity: 0; - z-index: 1010; - text-align: left; } - -.helpertext { - background-color: #0568ae; - border: 1px solid transparent; - border-radius: 6px; - color: #fff; - display: none; - margin: 0; - padding: 25px; - position: relative; - text-align: left; - width: 100%; - top: 0; - z-index: 1009; } - -.tooltip .helpertext { - position: absolute; } - -.tooltip.active .icon-primary-tooltip[data-placement="bottom"] + .tooltip-wrapper .helpertext { - bottom: inherit; - top: 19px; } - -.tooltip.active .icon-primary-tooltip[data-placement="top"] + .tooltip-wrapper .helpertext { - top: inherit; - bottom: 38px; } - -.tooltip.active .tooltip-wrapper { - opacity: 1; - display: block; - margin-top: 0; } - -.tooltip.active .tooltip-wrapper .helpertext { - display: block; } - -.tooltip-onclick .btn.icon-primary-tooltip { - border: medium none; - box-shadow: none; - color: #0568ae; - font-size: 20px; - height: 34px; - line-height: 36px; - margin: 0; - min-width: 50px; - padding: 0; - position: absolute; - right: 0; - top: 0; } - -.tooltip-onclick .icon-primary-tooltip:before { - display: inline; - position: relative; } - -.tooltip-onclick textarea + .reset-field + .icon-primary-tooltip { - top: 4px; - right: 5px; - min-width: 40px; } - -.tooltip-onclick.active .helpertext:before, -.tooltip-onfocus.active .helpertext:before { - background-color: #0568ae; - border-color: transparent; - border-style: solid; - border-width: 1px 1px 0 0; - content: ""; - display: block; - height: 15px; - left: 17px; - margin: 0; - position: absolute; - top: -7px; - transform: rotate(-45deg); - width: 15px; } - -.tooltip-onclick.active .helpertext { - display: block; - opacity: 1; - margin: 14px 0 0; } - -.tooltip-onclick.active .helpertext:before { - left: inherit; - right: 18px; } - -.tooltip-onclick .reset-field { - right: 37px; } - -.tooltip-onclick .reset-field:before { - position: relative; - top: -1px; } - -.tooltip-onfocus.active .helpertext { - display: block; - margin: 14px 0 10px 0; } - -.popover-title { - display: block; - font-size: 14px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-weight: bold; - margin-bottom: 8px; - white-space: normal; } - -.popover-content { - display: block; - font-size: 12px; - font-family: "Omnes-ECOMP-W02", Arial; - line-height: 1.5rem; - white-space: normal; } - -.popover-content span, -.popover-content p { - line-height: 1.5rem; } - -.popover-content p:last-child { - margin-bottom: 0; } - -.tooltip .tooltip-element { - position: relative; } - -.tooltip .icon-primary-tooltip:hover { - text-decoration: none; } - -.tooltip.active .tooltip-element[data-placement="top"] .arrow { - display: block; - bottom: 32px; - top: auto; } - -.tooltip.active .tooltip-element[data-placement="bottom"] .arrow { - display: block; - border-color: transparent transparent #0574ac; - bottom: -33px; - top: auto; } - -.tooltip.active .tooltip-element[data-placement="bottom"] + .tooltip-wrapper .helpertext { - bottom: inherit; - top: 19px; } - -.tooltip.active .tooltip-element[data-placement="top"] + .tooltip-wrapper .helpertext { - top: inherit; - bottom: 38px; } - -.b2b-tree { - padding: 0 10px 0 10px; - width: 320px; } - .b2b-tree ul { - list-style: none; - list-style-type: none; } - .b2b-tree a { - display: block; - padding: 0 0 5px 30px; - line-height: 22px; - margin-left: -10px; - font-size: 1.4rem; - outline-offset: -1px; } - .b2b-tree li:focus { - outline: none; } - .b2b-tree li:focus > a { - outline: thin dotted #666; - outline-offset: -1px; } - .b2b-tree ul li { - border-left: 1px solid #ccc; } - .b2b-tree ul li.bg > a { - color: #333; - background-image: url("../style/images/treebg.png"); } - .b2b-tree ul li .b2b-tree-tooltip { - display: none; - position: absolute; - top: -25px; - left: 100%; - white-space: nowrap; - margin-left: 10px; - z-index: 1010; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 12px; } - .b2b-tree ul li .b2b-tree-tooltip-content { - background-color: #0568ae; - margin-left: 9px; - border-radius: 6px; - color: #fff; - padding: 25px; } - .b2b-tree ul li .b2b-tree-arrow-left { - width: 0; - height: 0; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - border-right: 10px solid #0568ae; - position: absolute; - top: 25px; } - .b2b-tree ul li.activeTooltip > a .b2b-tree-tooltip { - display: block; } - .b2b-tree ul ul { - padding: 0 0 0 20px; } - .b2b-tree ul > li { - position: relative; - line-height: 18px; } - .b2b-tree a > span.b2b-tree-node-icon { - background-color: #FFF; - display: inline; - margin: 0; - padding: 0; - position: absolute; - left: -11px; - top: 0; - line-height: 14px; - width: 11px; } - .b2b-tree a > span.b2b-tree-node-icon > i { - font-size: 20px; } - .b2b-tree a:only-child { - color: #0574ac; } - .b2b-tree a:only-child > span.b2b-tree-node-icon { - left: -11px; - border-radius: 50%; - line-height: 7px; - top: 0; } - .b2b-tree a:only-child > span.b2b-tree-node-icon > i { - background-color: inherit; - background: #fff; } - .b2b-tree a > span.b2b-tree-node-icon > i.icon-primary-circle { - background-color: inherit; - background: #fff; - font-size: 10px; } - .b2b-tree a.b2b-locked-node:after { - content: "\ec58"; - float: right; - font-family: 'icoSecurityalerts' !important; } - .b2b-tree a:hover .b2b-locked-node:after { - text-decoration: none; } - .b2b-tree ul li:first-child > a:only-child > span.b2b-tree-node-icon { - left: -11px; - border-radius: 50%; - line-height: 12px; } - .b2b-tree ul li:last-child > a:only-child > span.b2b-tree-node-icon { - height: 27px; - background-color: #fff; } - .b2b-tree li a + ul { - height: 0; - overflow: hidden; } - .b2b-tree li a.active + ul { - height: auto; - overflow: visible; } - .b2b-tree li a.grp { - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - .b2b-tree li a.grp.active { - color: #333; } - .b2b-tree span.end { - left: -6px !important; - top: 5px !important; } - .b2b-tree span.first-link { - width: 3px !important; - height: 15px !important; - top: 0px !important; - left: -2px !important; - background: #fff; } - -.b2b-tree-checkbox { - padding: 0 10px 0 10px; - width: 320px; } - .b2b-tree-checkbox ul { - list-style: none; - list-style-type: none; } - .b2b-tree-checkbox a { - display: block; - padding: 0 0 5px 30px; - line-height: 22px; - margin-left: -10px; - font-size: 14px; - outline-offset: -1px; } - .b2b-tree-checkbox li:focus { - outline: none; } - .b2b-tree-checkbox li:focus > a { - outline: thin dotted #666; - outline-offset: -1px; } - .b2b-tree-checkbox ul li { - border-left: 1px solid #ccc; } - .b2b-tree-checkbox ul ul { - padding: 0 0 0 20px; } - .b2b-tree-checkbox ul > li { - position: relative; - line-height: 18px; } - .b2b-tree-checkbox a > span.nodeIcon { - background-color: #FFF; - display: inline; - margin: 0; - padding: 0; - position: absolute; - left: -11px; - top: 0; - line-height: 14px; - width: 11px; } - .b2b-tree-checkbox a > span.nodeIcon > i { - font-size: 20px; } - .b2b-tree-checkbox a > span.nodeIcon.end { - margin-top: 10px; } - .b2b-tree-checkbox a:only-child { - color: #0574ac; } - .b2b-tree-checkbox a:only-child > span.nodeIcon { - left: -11px; - border-radius: 50%; - line-height: 7px; - top: 0; } - .b2b-tree-checkbox a:only-child > span.nodeIcon > i { - background-color: inherit; - background: #fff; } - .b2b-tree-checkbox a > span.nodeIcon > i.icon-primary-circle { - background-color: inherit; - background: #fff; - font-size: 10px; } - .b2b-tree-checkbox ul li:first-child > a:only-child > span { - left: -11px; - border-radius: 50%; - line-height: 12px; - top: 0px; } - .b2b-tree-checkbox ul li:first-child > a:only-child > span.end { - margin-top: 0px; } - .b2b-tree-checkbox ul li:first-child > a:only-child > span i.icon-primary-circle { - top: 8px; } - .b2b-tree-checkbox ul li:last-child > a:only-child > span { - height: 34px; - background-color: #fff; } - .b2b-tree-checkbox li a + ul { - height: 0; - overflow: hidden; } - .b2b-tree-checkbox li a.active + ul { - height: auto; } - .b2b-tree-checkbox li a.grp { - font-family: "Omnes-ECOMP-W02-Italic", Arial; } - .b2b-tree-checkbox span.end { - left: -6px !important; } - .b2b-tree-checkbox .checkbox { - margin-bottom: 0px; - margin-top: 2px; - font-size: 14px; } - .b2b-tree-checkbox .checkbox input:indeterminate + .skin:after { - content: "\2014"; - padding-left: 2px; - font-family: inherit !important; - line-height: inherit !important; } - .b2b-tree-checkbox span.first-link { - width: 3px !important; - height: 15px !important; - top: 0px !important; - left: -2px !important; - background: #fff; } - -.b2b-widget-window { - width: 147px; - right: 5px; - top: 60px; - position: absolute; - border: 1px solid #ccc; - background-color: #fff; - border-radius: 8px; - z-index: 1000; } - .b2b-widget-window li { - margin: 15px; } - -.b2b-widget-container { - background-color: #fff; - border-radius: 8px; - border: 1px solid #ccc; - position: relative; } - .b2b-widget-container .b2b-widget-header { - font-family: "Omnes-ECOMP-W02", Arial; - color: #333; - height: 55px; - padding-left: 15px; - padding-top: 19px; } - .b2b-widget-container .b2b-widget-header .header { - font-size: 18px; } - .b2b-widget-container .b2b-widget-header-icons { - font-size: 16px; - color: #0574ac; } - -.b2b-widget-header-icons button { - border: none; - background: transparent; - color: #0574ac; } - .b2b-widget-header-icons button:focus { - outline-style: solid; - outline-width: 1px; - outline-color: #0574ac; } - .b2b-widget-header-icons button:first-child { - margin-right: 0px; } - -.b2b-widget-container .b2b-widget-content { - height: 325px; - margin: 0; - padding: 20px; - position: relative; - border-top: 1px solid #ccc; } - -.b2b-widget-content .form-row:first-child { - margin-top: 0; } - -.b2b-widget-header-icons button.icoControls-gear:focus, .b2b-widget-header-icons button.icon-primary-close:focus { - outline: thin dotted #666; } - -.b2b-widget-header .icon-primary-close:before { - content: '-'; - display: inline-block; - margin: 0; - padding: 0; - outline: none; } - -.b2b-widget-window .arrow_box { - background: #fff; - border: 1px solid #ccc; } - -.b2b-widget-window.arrow_box:after, .b2b-widget-window.arrow_box:before { - bottom: 100%; - left: 75%; - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; - pointer-events: none; } - -.b2b-widget-window.arrow_box:after { - border-color: rgba(255, 255, 255, 0); - border-bottom-color: #fff; - border-width: 10px; - margin-left: 1px; } - -.b2b-widget-window.arrow_box:before { - border-color: rgba(204, 204, 204, 0); - border-bottom-color: #ccc; - border-width: 11px; - margin-left: 0px; } - -/************************** Overrides for Filters ***************************/ -.filter-container .filter-header h2 { - line-height: 1 !important; - margin: 0 !important; } - -.filter-container .icon-primary-spinner:before { - content: none; } - -.filter-container .fixed-230-subnav { - margin: 10px !important; - width: inherit !important; } - -.filter-container .unlinked:focus { - outline: thin dotted #666 !important; } - -.filter-container .unlinked.active { - color: inherit !important; } - -.filter-container .fixed-230-subnav a > i { - background: none; } - -.filter-container .fixed-230-subnav ul { - margin: 0 0 10px 10px; } - -/************************** Overrides for Filters ***************************/ -.row .filter-container { - background-color: #fff; } - -.filter-header { - overflow: hidden; - padding: 20px 0; - position: relative; } - -.filter-header h2 { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 2.4rem; - margin-bottom: 0; } - -.filter-selected { - border-top: 1px solid #ccc; - padding-top: 20px; } - -.filter-selected > span { - font-size: 1.3rem; - text-transform: uppercase; } - -.filter-selected > a.clear-all-filters { - float: right; - font-size: 1.4rem; } - -.filter-selected > span, -.filter-selected > a.clear-all-filters { - font-family: Omnes-ECOMP-W02-Medium, Arial; } - -.filter-selected-group { - padding-top: 15px; } - -.filter-selected-badge { - background-color: #f2f2f2; - border-radius: 15px; - display: inline-block; - font-size: 1.4rem; - margin-bottom: 10px; - padding: 0 0 0 12px; } - -.filter-selected-badge .icoControls-optionsoff { - background: transparent none repeat scroll 0 0; - border: medium none; - font-size: 2.5em; - margin: 0; - padding: 0; } - -.filters .fixed-230-subnav > ng-transclude > div:first-child { - border-top: 1px solid #ccc; } - -.filters .fixed-230-subnav > ng-transclude > div { - border-bottom: 1px solid #ccc; } - -.filter-results { - align-items: center; - border-bottom: 1px solid #ccc; - display: flex; - flex-wrap: wrap; - height: 50px; - -webkit-justify-content: space-between; - -ms-flex-pack: justify; - justify-content: space-between; } - -.filter-results-sortby > span { - text-transform: uppercase; } - -.filter-results-view .icon-primary-content-gridguide { - font-size: 2em; - margin-right: 0; } - -.filter-container .fixed-230-subnav > ng-transclude > div > a { - font-size: 1.8rem; - margin: 0; - padding: 15px 20px 15px 0; - color: #0574ac !important; - cursor: pointer !important; - font-family: "Omnes-ECOMP-W02", Arial !important; - outline-offset: inherit !important; - position: relative; - height: auto; - width: auto; } - -.filter-container .fixed-230-subnav a > i { - right: 0; - top: 15px; } - -.filter-container .fixed-230-subnav .icon-primary-collapsed:before, .filter-container .fixed-230-subnav .icon-primary-expanded:before { - float: right; } - -.filter-container .fixed-230-subnav ul.collapse { - position: inherit; - transition: height 0.5s ease; - height: 0; - overflow: hidden; } - -.filter-container .checkbox .icon-primary-spinner { - height: 24px; - position: absolute; - width: 24px; } - -.fixed-230-subnav.affix { - margin: -28px 0 0; } - -#nav-menu .b2b-menu, -#nav-menu .fixed-230-subnav { - margin: 0; } - -.b2b-menu > li, -.fixed-230-subnav > div { - border-bottom: 1px solid #ccc; - line-height: 4.0rem; } - -.b2b-menu > li:first-child, -.fixed-230-subnav > li:first-child { - border-top: 1px solid #ccc; } - -.b2b-menu div > a, -.fixed-230-subnav div > a { - color: #0574ac; - cursor: pointer; - display: block; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 1.4rem; - margin: 0; - outline-offset: -1px; - padding: 0 10px; - position: relative; } - -.fixed-230-subnav div > a.live { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - color: #666; } - -.fixed-230-subnav > ng-transclude > div li > a { - display: block; - font-size: 1.4rem; - line-height: 20px; } - -.fixed-230-subnav > ng-transclude > div li > a.active { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - text-decoration: none; - color: #666; } - -#nav-menu .fixed-230-subnav a > i { - top: 10px; } - -.fixed-230-subnav > li > a.active > i:after { - display: none; } - -.b2b-menu ul, -.fixed-230-subnav ul { - margin: 0 0 10px 0; } - -.b2b-menu ul div a, -.fixed-230-subnav ul div a { - padding: 0 10px; } - -.unlinked { - outline: medium none !important; - text-decoration: none !important; } - -@media (max-width: 1024px) { - .filter-container .fixed-230-subnav { - margin: 0 20px; - width: auto; } - .filter-container .fixed-230-subnav > li { - margin: 0; } - .row .filter-container { - display: none; - height: 100%; - left: 0; - position: fixed; - overflow: auto; - top: 0; - transition: all 0.5s ease 0s; - width: 285px; - z-index: 9999; } - .filter-header { - padding-left: 20px; } - .filter-selected { - margin: 0 20px 10px; } } - -.b2b-pane-selector-wrapper { - width: 100%; - display: block; - border-top: solid 1px #ccc; - border-bottom: solid 1px #ccc; } - .b2b-pane-selector-wrapper .side-nav { - width: 20% !important; - display: inline-block; - float: left; } - .b2b-pane-selector-wrapper .pane-container { - width: 80%; - vertical-align: top; - margin: 0; - padding-top: 30px; - border-left: solid 1px #ccc; - font-family: "Omnes-ECOMP-W02", Arial; - display: none; } - .b2b-pane-selector-wrapper .pane-container.active { - display: inline-block; } - .b2b-pane-selector-wrapper .pane-container .pane-container-top { - padding-left: 15px; } - .b2b-pane-selector-wrapper .pane-container .panes { - display: -webkit-flex; - display: flex; - border-top: solid 1px #ccc; - margin-top: 30px; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block { - height: inherit; - overflow-y: auto; - border-right: solid 1px #ccc; - position: relative; - flex: 1; - -webkit-flex: 1; - /* Safari 6.1+ */ - -ms-flex: 1; - /* IE 10 */ } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block:focus { - outline: dotted 1px #333333; } - .b2b-pane-selector-wrapper .pane-container .search-block { - position: relative; - float: right; } - .b2b-pane-selector-wrapper .pane-container .search-block input[type="search"]:focus { - padding-right: 40px; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row p { - margin-top: 15px; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div { - border-bottom: solid 1px #ccc; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row { - display: block; - padding: 19px 14px 19px 14px; - margin-top: 0px; - border: dotted 1px transparent; - border-bottom: solid 1px #ccc; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:focus { - border: dotted 1px #333333 !important; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:last-child { - border-bottom: none; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block > .no-content { - text-align: center; - border-bottom: none; - display: block; - position: absolute; - top: 45%; - left: 0; - right: 0; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div:last-child { - border-bottom: none; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row span.margin-chk { - margin: 15px 15px 0px 15px; - float: left; } - .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row .checkbox-selectall { - margin: 0px 0 0 24px !important; } - .b2b-pane-selector-wrapper .side-nav li { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - border: none; - border-top: solid 1px #ccc; - display: block !important; - width: auto !important; - margin-left: 0px !important; } - .b2b-pane-selector-wrapper .side-nav li.active { - background-color: #f6f6f6; - position: inherit !important; } - .b2b-pane-selector-wrapper .side-nav li.active > a { - font-size: 16px; - color: #333; - text-decoration: none; - border: none; - background-color: transparent; - padding: 20px 15px; - display: block; - height: auto; - border-left: 4px solid #0574ac; } - .b2b-pane-selector-wrapper .side-nav li > a { - font-size: 16px; - color: #333; - text-decoration: none; - border: none; - background-color: transparent; - padding: 20px 15px; - display: block; - height: auto; - text-align: left; } - .b2b-pane-selector-wrapper .side-nav li > a:focus { - border-right: dotted 1px #333333; } - .b2b-pane-selector-wrapper .side-nav li:first-child { - border-top: none; - margin-left: none !important; } -/********************* Utility CSS Starts **********************/ -.offscreen-text { - position: absolute; - left: -10000px; - top: auto; - width: 1px; - height: 1px; - overflow: hidden; } - -/********************* Utility CSS Ends **********************/ -/* Fix for alignment issue on Cancel link inside modal */ -.b2b-modal-footer > .cta-button-group { - line-height: 40px; } - -/* .att-dark-green { // Not used - color: #007a3e; -} */ -.colors-off-msg { - display: none; } - -button .colors-off-msg { - position: relative; } - -.ds2-no-colors .colors-off-msg { - display: block; } - -.ds2-no-colors [data-colordatatext] button .colors-off-msg { - font-size: 1.1rem; - line-height: normal; - padding: 5px 0; - position: absolute; - top: 0; - white-space: normal; - width: 60px; } - -/* Not used -.make-all-white * { - color: #fff; -} -.make-all-white a { - text-decoration: underline; -} */ -.loader > span { - display: block; - padding-top: 20px; } - -.modal > .loader { - left: 50%; - margin-left: -25px; - margin-top: -25px; - position: absolute; - top: 50%; } - -#pageLevelLoader.modal { - background-color: transparent; - border: none; - box-shadow: none; - top: 40%; } - -.modal.fade .loader { - display: none; } - -.modal.fade.in .loader { - display: block; } - -.btn.disabled[data-loading-text] { - padding: 0 19px 0 18px; - line-height: 46px; } - -.btn.disabled[data-loading-text] img { - position: relative; - top: 2px; } - -/* Seems to already be in docs.css -.fixed-230.leftnav { - position: relative; -} -.fixed-230-subnav { - margin: 10px; -} -.fixed-230-subnav > li:first-child { - border-top: none; -} -.fixed-230-subnav > li { - border-bottom: 1px solid #d2d2d2; -} -.fixed-230-subnav > li > a { - display: block; - font-size: 1.4rem; - line-height: normal; - margin: 0 -9px; - padding: 11px 35px 12px 9px; - outline-offset: 0; - position: relative; -} -.fixed-230-subnav > li > a.live { - color: #333333; - font-family: "Omnes-ECOMP-W02-Medium"; -} -.fixed-230-subnav a > i { - right: 10px; - margin: 0; - position: absolute; - top: 10px; -} -.fixed-230-subnav a > i:after { - display: none; -} -.fixed-230-subnav > li li > a { - display: block; - font-size: 1.4rem; - line-height: 18px; -} -.fixed-230-subnav > li li > a.active { - color: #333333; - font-family: "Omnes-ECOMP-W02-Medium"; - text-decoration: none; -} -.fixed-230-subnav ul { - margin: 0 0 10px; -} */ -.unlinked { - color: #0568ae !important; - font-family: "Omnes-ECOMP-W02" !important; } - -.unlinked.active { - color: inherit !important; } - -/* @media (max-width: 767px) { - .row.has-leftnav { - flex-wrap: wrap; - } - .row.has-leftnav .fluid-space { - padding-right: 0; - } - .row .fixed-230 { - background-color: #fff; - width: auto; - } - .row .leftnav { - background-color: #fff !important; - display: block !important; - } - .fixed-230-subnav { - margin: 10px 0 0; - width: 100%; - } - .fixed-230-subnav > li { - margin-left: -15px; - margin-right: -15px; - } - .fixed-230-subnav > li:first-child { - border-top: 1px solid #d2d2d2; - } - .fixed-230-subnav > li > a { - margin: 0; - } - .fixed-230-subnav a:hover, - .fixed-230-subnav a:focus { - text-decoration: none !important; - } - .fixed-230-subnav > li li > a { - padding: 5px 10px; - } - .fixed-230-subnav > li li > a.active { - color: inherit; - font-family: "Omnes-ECOMP-W02-Medium"; - } -} */ -@keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -@-moz-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -@-webkit-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -@-ms-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -@-o-keyframes DOMinsertion { - from { - outline-color: transparent; } - to { - outline-color: transparent; } } - -.ajaxed, -.modal.fade.in .b2b-modal-header, -.modal.fade.in .b2b-modal-body, -.modal.fade.in .b2b-modal-footer { - animation-duration: 0.01s; - -o-animation-duration: 0.01s; - -ms-animation-duration: 0.01s; - -moz-animation-duration: 0.01s; - -webkit-animation-duration: 0.01s; - animation-name: DOMinsertion; - -o-animation-name: DOMinsertion; - -ms-animation-name: DOMinsertion; - -moz-animation-name: DOMinsertion; - -webkit-animation-name: DOMinsertion; } - -.dda-css-override ul.nav-tabs { - margin-bottom: 0; } - -.dda-css-override div.tab-content { - margin-top: 0; - border-top: none; } - -.dda-css-override .tab-content .prettyprint, .dda-css-override .usage .prettyprint { - max-height: 500px; - overflow-y: auto; } - -.formsWithinProcessButton { - margin-right: 0px; } - -.heading-sub-section-form { - font-size: 2.4rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; - margin-top: 10px; } - -.heading-small-form { - font-size: 1.6rem; - font-family: "Omnes-ECOMP-W02, Arial"; - margin-top: 0px; } - -.icon-primary-form-sizeL { - font-size: 50px; } - -.icon-primary-form-size { - font-size: 30px; } - -.spanformfix { - margin-right: 15px !important; } - -@media (max-width: 767px) { - .heading-sub-section-form { - font-size: 1.8rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-bottom: 20px; - padding-top: 10px; - margin-top: 30px; } - .heading-small-form { - font-size: 1.4rem; - font-family: "Omnes-ECOMP-W02", Arial; - margin-top: 0px; } } - -@media (max-width: 479px) { - .icon-primary-form-resizeL { - display: none; } - .icon-primary-form-resize { - display: none; } - .heading-center-form { - margin-left: 20px; } } - -@media (min-width: 480px) { - .icon-primary-form-resizeL { - display: none; } - .icon-primary-form-resize { - display: inherit; } - .icon-primary-center-min { - margin-top: 30px; } } - -@media (min-width: 768px) { - .icon-primary-form-resizeL { - display: inherit; - margin-top: 30px; } - .icon-primary-form-resize { - display: none; } - .center-form-align { - margin-top: 35px; } } - -@media (min-width: 1024px) { - .icon-primary-form-resizeL { - display: inherit; - margin-top: 0px; } - .icon-primary-form-resize { - display: none; } - .center-form-align { - margin-top: 5px; } } - -.data-row.has-button td.col-1 { - padding: 0; } - -.tab-content > .tab-pane { - display: none; } - -.tab-content > .active { - display: block; } - -.icon-primary-circle:before { - background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 1; } - -.icon-primary-primary-circle:before { - background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); - content: ""; - position: absolute; - top: 0; - z-index: 1; } -/* Flyout inputs color is not aligned */ -textarea, input { - color: #333; } - -.isIE .btn-primary.btn:focus::after, -.isIE .btn-specialty.btn:focus::after, -.isIE .btn-alt.btn:focus::after { - border: 1px dashed #fff !important; } -.b2b-config-section-container { - height: auto; - min-height: 330px; - width: 815px; - background-color: #fff; - border: 1px solid #ccc; - display: inline-table; - border-radius: 6px; } - -.b2b-config-section-first-div { - border-right: 1px solid #ccc; - height: auto; - min-height: 330px; } - -.b2b-config-section-icon-primary-font { - font-size: 50px; - height: 31px; - line-height: 31px; } - -.b2b-config-section-padding { - padding: 20px 20px 15px 15px; - height: auto; } - -.b2b-config-sec-flyout { - position: relative; - left: 10px; - float: right; - color: #0574ac; - font-size: 16px; - font-family: "Omnes-ECOMP-W02", Arial; } - -.b2b-config-sec-divider { - border-bottom: 1px solid #ccc; } - -.b2b-confi-sec-span-border { - border-right: 1px solid; - height: auto; } - -.b2b-config-sec-speed-div { - text-align: center; - margin-top: 20px; } - -.b2b-config-sec-label-font { - font-size: 16px; } - -.b2b-config-sec-expander-main { - padding: 0 5px 0px 15px; } - -.b2b-config-sec-expander-body .b2b-config-vlan-padding { - padding: 5px 15px 10px 0px; } - -.b2b-conif-sec-row-height { - height: 110px; } - -.b2b-config-sec-expander-body { - font-size: 14px; } - .b2b-config-sec-expander-body .b2b-config-vlan-data { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - padding-left: 15px; } - -.b2b-config-sec-expander-body-first-div { - border-top: 1px solid #ccc; } - -.b2b-config-sec-expander-body .tooltip { - position: static; - opacity: 1; } - -.b2b-config-section-container .row > [class*="span"] { - margin-right: 0px; } - -.b2b-config-vlan-icons { - font-size: 16px; - float: right; - margin-right: 0px; } - -.b2b-config-section-container .span6 { - width: 50%; } - -.b2b-config-sec-data-link-style { - position: relative; - left: 95%; - top: 30px; - border-radius: 50%; - width: 23px; - height: 23px; - background: #fff; - border: 1px solid #ccc; - color: #666666; } - -.b2b-config-sec-text-align { - text-align: center; - margin-top: 15px; - margin-bottom: 35px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #333333; } - -.b2b-config-port-text-align { - text-align: center; - margin-top: 15px; - margin-bottom: 8px; - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #333333; } - -.b2b-config-port-text-label { - margin-top: 6px; - margin-bottom: 8px; - font-size: 14px; - text-align: center; } - -.b2b-confi-sec-last-div p { - font-size: 14px; - padding: 10px 15px 0 15px; } - -.b2b-confi-sec-router-label { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px; - color: #333333; - float: left; - width: 100%; - margin-bottom: 7px; } - -.b2b-config-vlan-label { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 14px; - color: #333333; - margin-top: 1px; - margin-bottom: 9px; } - -.b2b-config-vlan-info { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - color: #333333; - margin-bottom: 1px; } - .b2b-config-vlan-info .icon-misc-pen { - padding-left: 7px; } - -.b2b-confi-sec-model-label { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - color: #333333; } - -.b2b-confi-sec-router-info { - float: left; - width: 62%; } - -.b2b-config-sec-speed-sec { - border-right: 1px solid #ccc; } - -.b2b-config-sec-speed-label { - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 20px; - color: #333333; - text-align: center; } - .b2b-config-sec-speed-label i { - margin-left: 15px; - font-size: 16px; } - -.b2b-config-sec-yellow-flag-div { - width: 1.6%; - background-color: #ffb18c; } - -.b2b-config-sec-expander-icons { - margin-top: 6px; } - .b2b-config-sec-expander-icons .icon-misc-trash { - margin-right: 10px; } - -.b2b-config-sec-yellow-flag .b2b-config-sec-expander-icons { - left: 40px; } - -.b2b-config-sec-expander-body-icons .icon-misc-pen { - position: relative; - left: 18px; } -.b2b-directory-listing .listBox { - height: 310px; - width: 450px; - padding-left: 1px; - padding-right: 1px; - font-family: "Omnes-ECOMP-W02", Arial; } - -.b2b-directory-listing .listBox:focus { - outline: thin dotted #666; } - -.b2b-directory-listing .b2b-directory-listing-no-results { - font-weight: bold; } - -.b2b-directory-listing .b2b-directory-listing-list { - font-family: "Omnes-ECOMP-W02", Arial; - color: #5a5a5a; - overflow-x: hidden; - position: relative; - height: 300px; - border: 1px solid #333; - border-radius: 6px; - margin-bottom: 10px; } - -.b2b-directory-listing .b2b-directory-listing-item { - margin: 1px; - border: 1px solid transparent; - outline: none; - text-align: left; - overflow: hidden; - cursor: pointer; - padding-top: 13px; - padding-bottom: 7px; - padding-left: 15px; - -moz-user-select: none; - -webkit-user-select: none; - -ms-user-select: none; - word-wrap: break-word; } - .b2b-directory-listing .b2b-directory-listing-item:focus { - border: 1px #3399FF solid; } - -.b2b-directory-listing .b2b-directory-listing-item-selected { - color: #fff; - background-color: #3399FF; } - -.b2b-directory-listing input[type="text"] { - padding-right: 30px; } - .b2b-directory-listing input[type="text"]:focus, .b2b-directory-listing input[type="text"]:hover { - padding-right: 30px; } - -.b2b-directory-listing .row .btns { - margin-right: 90px; - margin-left: -115px; - margin-top: 100px; } - -.b2b-directory-listing .btn-right { - margin-bottom: 15px !important; } - .b2b-directory-listing .btn-right:after { - content: " \27A1"; } - -.b2b-directory-listing .btn-left { - margin-top: 10px !important; } - -.b2b-directory-listing .btn-remove { - margin-right: auto !important; - margin-bottom: 15px; } - -.b2b-directory-listing .btn-remove-all { - margin-top: 0; - margin-bottom: 61px !important; - /* need to be removed */ - margin-right: auto !important; } - -.b2b-directory-listing .btn-add-all { - margin-top: 0; - margin-bottom: 61px !important; } - -.b2b-directory-listing .btn-left:before { - content: "\2B05 "; } - -.b2b-directory-listing .btn-search[class*="btn"] { - right: 0.09rem; } - -.b2b-directory-listing .btn { - width: 130px; } - -.b2b-directory-listing-disabled { - cursor: not-allowed; } - -.b2b-directory-listing-label-heading { - margin-top: 24px; - padding-bottom: 5px; } - -.b2b-dl-list-box option { - padding-top: 13px; - padding-bottom: 7px; - padding-left: 15px; } - -.b2b-dl-modal-button-div { - padding-top: 110px; - text-align: center; } -.b2b-tmpl-notification-card { - border-radius: 6px; - height: auto; - width: 420px; - background-color: #ffffff; - border: 1px solid rgba(0, 0, 0, 0.1); - border-radius: 8px; - overflow: hidden; } - .b2b-tmpl-notification-card .b2b-tmpl-card-header { - padding-left: 30px; - font-family: "Omnes-ECOMP-W02", Arial; - color: #333333; - font-size: 24px; - margin-top: 2px; - display: inline-block; - min-height: 60px; - position: relative; } - .b2b-tmpl-notification-card .b2b-tmpl-card-body { - padding: 0 30px 20px; - position: relative; } - .b2b-tmpl-notification-card .b2b-tmpl-card-header-title { - margin-top: 10px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button { - box-shadow: 0 -50px 0 0 #f2f2f2 inset; - height: 69px; - position: absolute; - border-color: #f2f2f2 #f2f2f2 transparent transparent; - border-style: solid; - border-width: 35px; - height: 0; - right: -295px; - top: -4px; - width: 69px; - /*Old properties */ - box-shadow: none; - transform: none; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close { - height: 48px; - right: -40px; - top: -40px; - width: 48px; - position: relative; - /*Old properties */ - transform: none; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:before { - color: #0568ae; - display: block; - font-size: 20px; - height: auto; - right: -4px; - top: 4px; - width: auto; - /*Old properties */ - left: auto; - height: auto; - bottom: auto; } - .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:focus { - outline: 1px dotted black; } - .b2b-tmpl-notification-card button.close { - -webkit-appearance: none; - moz-appearance: none; - appearance: none; } - .b2b-tmpl-notification-card .b2b-tmpl-card-icon-primary-cirlce { - width: 30px; - height: 30px; - border-radius: 50%; } - .b2b-tmpl-notification-card .b2b-tmpl-card-outer-cirlce { - background: #f0f5f5; - border-radius: 50%; - height: 16px; - width: 16px; - vertical-align: middle; } - .b2b-tmpl-notification-card .b2b-tmpl-card-inner-cirlce { - background: #fff; - width: 22px; - height: 22px; - position: relative; - border-radius: 50%; - display: block; - left: 4px; - top: 4px; - border: 1px solid #767676; } - .b2b-tmpl-notification-card .b2b-tmpl-card-row { - padding-top: 10px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-sub-header { - margin-top: 0px; } - .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item { - background-color: #fff; - margin-top: 25px; - border-top: 1px solid #ccc; } - .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item .cta-button-group { - line-height: 40px; - padding-top: 20px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-edit-section .cta-button-group { - line-height: 40px; - padding-top: 15px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-add-item-container { - padding-top: 30px; } - .b2b-tmpl-notification-card .b2b-tmpl-card-link-active { - pointer-events: none; - cursor: default; - color: #ccc; } - .b2b-tmpl-notification-card .b2b-tmpl-card-cursor:hover { - cursor: pointer; } -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon { - text-align: center; - margin-top: 91px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon i { - font-size: 99px; - color: #1b7e28; } - -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading { - color: #333333; - text-align: center; - margin-top: 20px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading h1 { - font-size: 38px; } - -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading { - color: #333333; - text-align: center; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading h5 { - font-size: 18px; } - -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info { - padding-left: 18%; - font-size: 16px; - margin-top: 20px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info ul { - list-style-type: disc; - list-style-position: inside; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info li { - padding-top: 5px; } - -.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section { - font-size: 15px; - color: #0574ac; - margin-top: 20px; - text-align: center; - margin-bottom: 55px; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section .b2b-tmpl-order-confirmation-link { - margin-right: 8%; } - .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section a { - cursor: pointer; } -.b2b-tmpl-profile-block-container { - min-height: 200px; - height: auto; - background-color: #fff; - border-radius: 8px; - border: 1px solid #ccc; - box-shadow: 0px 1px 1px 1px #ccc; - display: inline-table; - margin: 15px 15px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-title { - font-weight: bold; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-footer { - margin-bottom: 12px; - margin-top: 5px; - height: 35px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p { - word-wrap: break-word; - height: 61px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:first-child { - margin-top: 10px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:after { - content: ' '; - display: block; - border: 0.2px solid #ccc; - margin-top: 12px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio { - margin-left: 15px; - height: 30px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details div { - padding: 2px 7px; - font-size: 14px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio-label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details a { - font-size: 14px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p span { - padding-left: 10px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon { - color: #1b7e28; - float: right; - position: relative; - left: 10px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon i { - color: #1b7e28; - float: right; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-link { - float: right; - position: relative; - left: -4px; } - .b2b-tmpl-profile-block-container a.link-profile { - position: relative; - left: -5px; - float: right; - margin-bottom: 16px; } - .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-radio { - position: relative; - top: -5px; } -.b2b-static-route-container { - padding-left: 32px; - display: inline-block; } - -.b2b-static-route-label-heading { - font-family: "Omnes-ECOMP-W02-Medium", Arial; - font-size: 16px !important; - color: #333333; - font-style: normal; - text-align: left; } - -label.b2b-static-route-label-heading { - margin-bottom: 12px; - margin-top: 15px; - display: block; } - -#b2b-static-route-input { - margin: 5px 0 5px; } - -.b2b-static-route-list { - margin-bottom: 30px; - width: 216px; - float: left; - margin-right: 20px; - max-height: 540px; - overflow-y: auto; } - .b2b-static-route-list .status-text { - flex: 1; - display: flex; - align-items: center; - outline: 0; } - -.b2b-static-route-list-item { - border: 1px #cccccc solid; - font-family: "Omnes-ECOMP-W02", Arial; - font-size: 14px; - display: flex; - cursor: pointer; } - .b2b-static-route-list-item > .status-bar { - padding: 20px 0 20px; - background-color: #ea7400; - border-radius: 0; - width: 10px; - display: inline-block; - margin-right: 20px; - height: 100%; - float: left; } - .b2b-static-route-list-item > .status-bar:after { - content: '.'; - visibility: hidden; } - .b2b-static-route-list-item > .status-bar-unedited { - padding: 20px 0 20px; - background-color: #ffb81c; - border-radius: 0; - width: 10px; - display: inline-block; - margin-right: 20px; - height: 100%; - float: left; - background-color: transparent; } - .b2b-static-route-list-item > .status-bar-unedited:after { - content: '.'; - visibility: hidden; } - -.b2b-static-route-list-item:focus { - outline: 1px dashed #00f; } - -.b2b-static-route-list-item--selected { - background: #f2f2f2; } - -.b2b-static-route-content { - display: inline-block; } - - -/* -To Remove later -*/ - -.selectWrap::after { - align-items: center; - background-position: 7px 7px; - background-repeat: no-repeat; - background-size: auto 23px; - border-left: 1px solid transparent; - color: #0568ae; - display: flex; - font-size: 23px; - height: 36px; - margin-right: 0; - overflow: hidden; - position: absolute; - right: 0; - text-indent: 7px; - top: 0; - user-select: none; - width: 41px; - z-index: 0; - position: absolute !important; - display: flex !important; +/*! b2b-angular-library - v1.0.1 - Last updated: 2017-03-02. Copyright (c) 2016 AT&T Services, Inc. */ +.b2b-horizontal-table { + border: 1px solid; + width: 651px; } + .b2b-horizontal-table ::-webkit-scrollbar { + height: 10px; } + .b2b-horizontal-table ::-webkit-scrollbar-thumb { + background: #666666; + border-radius: 5px; } + .b2b-horizontal-table .b2b-horizontal-table-inner-container { + width: 650px; + padding-left: 150px; + overflow-x: scroll; } + .b2b-horizontal-table th:first-child { + background-color: #FFFFFF; } + .b2b-horizontal-table td:first-child { + background-color: #FFFFFF; + border-top: 1px solid #cccccc; + border-right: 1px solid #cccccc; + margin-top: -0.5px; } + .b2b-horizontal-table tr th:nth-child(2), .b2b-horizontal-table tr td:nth-child(2) { + border-left: none; } + .b2b-horizontal-table .b2b-horizontal-table-column-info { + padding-top: 16px; + text-align: center; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .btn-arrow:hover, .b2b-horizontal-table .b2b-horizontal-table-arrows .btn-arrow:focus { + text-decoration: none; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .left { + float: left; + margin: 10px; + color: #0568ae; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .left[disabled] { + color: #767676; + cursor: not-allowed; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .right { + float: right; + clear: right; + margin: 10px; + color: #0568ae; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .right[disabled] { + color: #767676; + cursor: not-allowed; } + .b2b-horizontal-table .b2b-horizontal-table-arrows .right.btn-arrow .btn { + margin-right: 0; + margin-left: 10px; } + +@-moz-document url-prefix() { + .b2b-horizontal-table td:first-child { + border-top: none; } } +* { + box-sizing: border-box; } + +:root { + -ms-overflow-style: -ms-autohiding-scrollbar; + overflow-y: scroll; + -ms-text-size-adjust: 100%; + -webkit-text-size-adjust: 100%; + box-sizing: border-box; + font: 0.625pc/1.5 sans-serif; + text-rendering: optimizeLegibility; } + +html { + overflow-y: scroll; + -webkit-overflow-scrolling: touch; + height: 100%; + position: relative; } + +h1, +h2, +h3, +h4, +h5, +p, +blockquote, +figure, +ol, +ul { + margin: 0; + padding: 0; } + +/* a:focus { + outline: thin dotted #191919; +} */ +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: top; } + +sup { + top: .75em; + display: inline-block; } + +sub { + bottom: -0.25em; } + +img { + max-width: 100%; + height: auto; + vertical-align: middle; + border: 0; + -ms-interpolation-mode: bicubic; } + +.img-no-rwd { + max-width: inherit !important; } + +svg { + display: inline-block; } + +.responsive-img { + width: 100%; + height: auto; } + +button, +input, +select, +textarea { + margin: 0; + font-size: 100%; + vertical-align: middle; } + +::-moz-focus-inner { + padding: 0; + border: 0; } + +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + appearance: button; + cursor: pointer; } + +label, +select, +button, +input[type="button"], +input[type="reset"], +input[type="submit"], +input[type="radio"], +input[type="checkbox"] { + cursor: pointer; } + +input[type=search] { + -webkit-appearance: textfield; } + +input[type=search]:-webkit-search-cancel-button, +input[type=search]:-webkit-search-decoration { + -webkit-appearance: none; } + +textarea { + overflow: auto; + vertical-align: top; + resize: none; } + +select { + -moz-appearance: none; + -webkit-appearance: none; } + +[aria-busy=true] { + cursor: progress; } + +[aria-controls] { + cursor: pointer; } + +body { + background-color: #ffffff; + color: #191919; + font-family: "Omnes-ECOMP-W02", Arial; +/* font-size: 1.6rem; + line-height: 2rem;*/ + margin: 0; + position: relative; + width: 100%; + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; } + +small { + font-size: 1.6rem; } + +.container { + margin: 0 auto; + padding: 0; } + +.tooltip { + display: inline-block; + height: 20px; + margin: 1px 0 0 7px; + vertical-align: middle; } + +.tooltip-wrapper { + display: none; } + +@font-face { + font-family: "Omnes-ECOMP-W02"; + src: url("fonts/Omnes_ATTW02.eot"); + src: url("fonts/Omnes_ATTW02.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02.woff") format("woff"), url("fonts/Omnes_ATTW02.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Medium"; + src: url("fonts/Omnes_ATTW02Medium.eot"); + src: url("fonts/Omnes_ATTW02Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Medium.woff") format("woff"), url("fonts/Omnes_ATTW02Medium.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Italic"; + src: url("fonts/Omnes_ATTW02Italic.eot"); + src: url("fonts/Omnes_ATTW02Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Italic.woff") format("woff"), url("fonts/Omnes_ATTW02Italic.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Light"; + src: url("fonts/Omnes_ATTW02Light.eot"); + src: url("fonts/Omnes_ATTW02Light.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Light.woff") format("woff"), url("fonts/Omnes_ATTW02Light.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Bold"; + src: url("fonts/Omnes_ATTW02Bold.eot"); + src: url("fonts/Omnes_ATTW02Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Bold.woff") format("woff"), url("fonts/Omnes_ATTW02Bold.woff2") format("woff2"), url("fonts/Omnes_ATTW02Bold.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Light-Italic"; + src: url("fonts/Omnes_ATTW02LightItalic.eot"); + src: url("fonts/Omnes_ATTW02LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02LightItalic.woff") format("woff"), url("fonts/Omnes_ATTW02LightItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02LightItalic.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Medium-Italic"; + src: url("fonts/Omnes_ATTW02MediumItalic.eot"); + src: url("fonts/Omnes_ATTW02MediumItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02MediumItalic.woff") format("woff"), url("fonts/Omnes_ATTW02MediumItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02MediumItalic.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Bold-Italic"; + src: url("fonts/Omnes_ATTW02BoldItalic.eot"); + src: url("fonts/Omnes_ATTW02BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02BoldItalic.woff") format("woff"), url("fonts/Omnes_ATTW02BoldItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02BoldItalic.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +/* TODO: Build a reference page for these classes */ +.font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + +.font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + +.font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + +.font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + +.font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + +.font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic", Arial !important; } + +.font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + +.visible-phone { + display: none !important; } + +.visible-tablet { + display: none !important; } + +.hidden-desktop { + display: none !important; } + +.visible-desktop { + display: inherit !important; } + +.row, +.row-nowrap { + margin-left: 0; } + +.row:before, +.row-nowrap:before, +.row:after, +.row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + +.row:after, +.row-nowrap:after { + clear: both; } + +.row:before, +.row-nowrap:before, +.row:after, +.row-nowrap:after { + display: table; + content: ""; + line-height: 0; } + +.row:after, +.row-nowrap:after { + clear: both; } + +.row, +.row-nowrap { + display: flex; } + +.row > [class*="span"], +.row-nowrap > [class*="span"] { + float: left; + margin-right: 14px; + margin-right: 1.40845%\9; } + +.row > [class*="span"]:last-child, +.row-nowrap > [class*="span"]:last-child { + margin-right: 0; } + +.row > [class*="span"].centered, +.row-nowrap > [class*="span"].centered { + margin-left: auto !important; + margin-right: auto !important; } + +.row.no-flex, +.row-nowrap.no-flex { + display: block; } + +.row.no-flex > [class*="span"], +.row-nowrap.no-flex > [class*="span"] { + margin-right: 1.408450704225352%; } + +.row.no-flex > [class*="span"]:last-child, +.row-nowrap.no-flex > [class*="span"]:last-child { + margin-right: 0; } + +.row.flex-justify, +.row-nowrap.flex-justify { + justify-content: space-between; } + +.row.flex-justify > [class*="span"], +.row-nowrap.flex-justify > [class*="span"] { + flex: 1 1 0; } + +.row.flex-justify > .flex-col, +.row-nowrap.flex-justify > .flex-col { + margin-right: 14px; + margin-right: 1.40845%\9; } + +.row.flex-wrap, +.row-nowrap.flex-wrap { + flex-wrap: wrap; } + +.align-items-top { + align-items: flex-start; } + +.align-items-center { + align-items: center; } + +.align-items-bottom { + align-items: flex-end; } + +.align-self-top { + align-self: flex-start; } + +.align-self-center { + align-self: center; } + +.align-self-bottom { + align-self: flex-end; } + +.row .fixed-230 { + flex: 0; + display: block; + width: 230px; + vertical-align: top; + min-width: 230px; + background-color: #efefef; } + +.row .fluid-space { + flex: 1 1 0; + display: block; + vertical-align: top; + padding-left: 0; + padding-right: 20px; + width: 100%; } + +.row .fixed-230 + .fluid-space { + padding-left: 20px; + padding-right: 20px; } + +.row .fluid-space:last-child { + padding-right: 0; } + +.span1 { + width: 7.042253521126761%; } + +.span2 { + width: 15.49295774647887%; } + +.span3 { + width: 23.94366197183099%; } + +.span4 { + width: 32.3943661971831%; } + +.span5 { + width: 40.84507042253521%; } + +.span6 { + width: 49.29577464788733%; } + +.span7 { + width: 57.74647887323944%; } + +.span8 { + width: 66.19718309859155%; } + +.span9 { + width: 74.64788732394367%; } + +.span10 { + width: 83.09859154929578%; } + +.span11 { + width: 91.54929577464789%; } + +.span12 { + width: 100%; } + +.offset1 { + margin-left: 8.450704225352113%; } + +.offset2 { + margin-left: 16.90140845070423%; } + +.offset3 { + margin-left: 25.35211267605634%; } + +.offset4 { + margin-left: 33.8028169%; } + +.offset5 { + margin-left: 42.25352113%; } + +.offset6 { + margin-left: 50.70422535%; } + +.offset7 { + margin-left: 59.15492958%; } + +.offset8 { + margin-left: 67.6056338%; } + +.offset9 { + margin-left: 76.05633803%; } + +.offset10 { + margin-left: 84.50704225%; } + +.offset11 { + margin-left: 92.95774648%; } + +.align-center { + margin: 0 auto; + text-align: center; } + +[class*="span"].align-center { + margin: 0 auto !important; + float: none; } + +.align-left .container { + padding-left: 0 !important; + margin: 0 !important; } + +/* BEGIN RESPONSIVE-4.LESS ************** */ +@media (min-width: 1025px) { + .row > [class*="span"], + .row-nowrap > [class*="span"] { + margin-right: 20px; + margin-right: 1.487301587301587%\9; } + .container { + padding-left: 20px; + padding-right: 20px; + max-width: 1260px; } + /* 1col = 6.878306878306879 */ + /* 1colgutter = 1.587301587301587 */ + .span0 { + display: none; } + .span1 { + width: 6.878306878306879%; } + .span2 { + width: 15.34391534391534%; } + .span3 { + width: 23.80952380952381%; } + .span4 { + width: 32.27513227513228%; } + .span5 { + width: 40.74074074074074%; } + .span6 { + width: 49.20634920634921%; } + .span7 { + width: 57.67195767195767%; } + .span8 { + width: 66.13756613756614%; } + .span9 { + width: 74.60317460317461%; } + .span10 { + width: 83.06878306878308%; } + .span11 { + width: 91.53439153439154%; } + .span12 { + width: 100%; } + .offset1 { + margin-left: 8.465608465608466%; } + .offset2 { + margin-left: 16.93121693121693%; } + .offset3 { + margin-left: 25.3968253968254%; } + .offset4 { + margin-left: 33.86243386%; } + .offset5 { + margin-left: 42.32804233%; } + .offset6 { + margin-left: 50.79365079%; } + .offset7 { + margin-left: 59.25925926%; } + .offset8 { + margin-left: 67.72486772%; } + .offset9 { + margin-left: 76.19047619%; } + .offset10 { + margin-left: 84.65608466%; } + .offset11 { + margin-left: 93.12169312%; } + .tooltip-size-control { + position: relative; + width: 400px; } + .thumbnails > li { + margin-left: 1.40845070422535%; } + .row .thumbnails { + margin-left: 0; } } + +/* END RESPONSIVE-4.LESS ****************** */ +/* BEGIN RESPONSIVE-3.LESS ******************* */ +@media (min-width: 768px) and (max-width: 1024px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: inherit !important; } + .hidden-tablet { + display: none !important; } + .container { + width: 100%; + margin: 0 auto; + padding-left: 20px; + padding-right: 20px; } + .span0-md { + display: none; } + .span1-md { + width: 7.042253521126761%; } + .span2-md { + width: 15.49295774647887%; } + .span3-md { + width: 23.94366197183099%; } + .span4-md { + width: 32.3943661971831%; } + .span5-md { + width: 40.84507042253521%; } + .span6-md { + width: 49.29577464788733%; } + .span7-md { + width: 57.74647887323944%; } + .span8-md { + width: 66.19718309859155%; } + .span9-md { + width: 74.64788732394367%; } + .span10-md { + width: 83.09859154929578%; } + .span11-md { + width: 91.54929577464789%; } + .span12-md { + width: 100%; } + .offset1-md { + margin-left: 8.450704225352113%; } + .offset2-md { + margin-left: 16.90140845070423%; } + .offset3-md { + margin-left: 25.35211267605634%; } + .offset4-md { + margin-left: 33.8028169%; } + .offset5-md { + margin-left: 42.25352113%; } + .offset6-md { + margin-left: 50.70422535%; } + .offset7-md { + margin-left: 59.15492958%; } + .offset8-md { + margin-left: 67.6056338%; } + .offset9-md { + margin-left: 76.05633803%; } + .offset10-md { + margin-left: 84.50704225%; } + .offset11-md { + margin-left: 92.95774648%; } + .tooltip-size-control { + position: relative; + width: 300px; } } + +/* END RESPONSIVE-3.LESS ******************* */ +/* BEGIN RESPONSIVE-2.LESS *************** */ +@media (max-width: 767px) { + .hidden-desktop { + display: inherit !important; } + .visible-desktop { + display: none !important; } + .visible-phone { + display: inherit !important; } + .visible-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .hidden-tablet { + display: none !important; } + .container { + width: auto; + padding-left: 15px; + padding-right: 15px; } + /*.row{ display:block; }*/ + .row > [class*="span"] { + float: none; + margin-left: 0; + margin-right: 0; + width: 100%; } + .row { + display: block; } + .row.flex > .flex-col, + .row-nowrap.flex > .flex-col { + margin-right: 0; } + .row .fixed-230 { + display: block; + width: 100%; } + .row .fluid-space { + display: block; + padding-left: 0; + padding-right: 0; + width: auto; } + .row .fluid-space + .fixed-230 { + padding-left: 0; } + .row .fluid-space:last-child { + padding-right: 0; } + .span0-sm { + display: none; } + .span1-sm { + width: 7.042253521126761%; } + .span2-sm { + width: 15.49295774647887%; } + .span3-sm { + width: 23.94366197183099%; } + .span4-sm { + width: 32.3943661971831%; } + .span5-sm { + width: 40.84507042253521%; } + .span6-sm { + width: 49.29577464788733%; } + .span7-sm { + width: 57.74647887323944%; } + .span8-sm { + width: 66.19718309859155%; } + .span9-sm { + width: 74.64788732394367%; } + .span10-sm { + width: 83.09859154929578%; } + .span11-sm { + width: 91.54929577464789%; } + .span12-sm { + width: 100%; } + .offset1-sm { + margin-left: 8.450704225352113%; } + .offset2-sm { + margin-left: 16.90140845070423%; } + .offset3-sm { + margin-left: 25.35211267605634%; } + .offset4-sm { + margin-left: 33.8028169%; } + .offset5-sm { + margin-left: 42.25352113%; } + .offset6-sm { + margin-left: 50.70422535%; } + .offset7-sm { + margin-left: 59.15492958%; } + .offset8-sm { + margin-left: 67.6056338%; } + .offset9-sm { + margin-left: 76.05633803%; } + .offset10-sm { + margin-left: 84.50704225%; } + .offset11-sm { + margin-left: 92.95774648%; } + input { + padding: 8px 15px 8px 15px; } + .field-group input.input-emphasized[type="search"] + .reset-field:after { + top: 14px; } + .field-group input.input-emphasized[type="search"] + .reset-field { + height: 46px; + top: 1px; } + .marquee { + margin-bottom: 30px; } + .marquee .blur-overlay { + border-radius: 0; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + margin: 0; + padding: 34px 15px 30px; } + .marquee + div { + margin-top: 30px; } + .marquee h1 { + font-size: 1.8rem; + letter-spacing: -0.035px; } + .marquee .lead { + font-size: 3.0rem; + line-height: 3.6rem; + margin-bottom: 0; } + .marquee p:not(.lead) { + font-family: "Omnes-ECOMP-W02-Light" , Arial; + font-size: 1.8rem; + margin-bottom: 0; } + .marquee .btn-fullwidth { + margin-top: 10px; + width: 100%; + float: none; } + .tooltip-size-control { + width: 100%; } + .table-wrapper, + .accordion-table-layout { + margin-left: -15px; + margin-right: -15px; } + .table-wrapper caption { + padding-left: 15px; } } + +@media (max-width: 480px) { + .span1-xsm { + width: 7.042253521126761%; } + .span2-xsm { + width: 15.49295774647887%; } + .span3-xsm { + width: 23.94366197183099%; } + .span4-xsm { + width: 32.3943661971831%; } + .span5-xsm { + width: 40.84507042253521%; } + .span6-xsm { + width: 49.29577464788733%; } + .span7-xsm { + width: 57.74647887323944%; } + .span8-xsm { + width: 66.19718309859155%; } + .span9-xsm { + width: 74.64788732394367%; } + .span10-xsm { + width: 83.09859154929578%; } + .span11-xsm { + width: 91.54929577464789%; } + .span12-xsm { + width: 100%; } + .offset1-xsm { + margin-left: 8.450704225352113%; } + .offset2-xsm { + margin-left: 16.90140845070423%; } + .offset3-xsm { + margin-left: 25.35211267605634%; } + .offset4-xsm { + margin-left: 33.8028169%; } + .offset5-xsm { + margin-left: 42.25352113%; } + .offset6-xsm { + margin-left: 50.70422535%; } + .offset7-xsm { + margin-left: 59.15492958%; } + .offset8-xsm { + margin-left: 67.6056338%; } + .offset9-xsm { + margin-left: 76.05633803%; } + .offset10-xsm { + margin-left: 84.50704225%; } + .offset11-xsm { + margin-left: 92.95774648%; } } + +/* END RESPONSIVE-2.LESS ******************* */ +/* BEGIN RESPONSIVE-1.LESS ************** */ +.xxxxxxxx-begin-responsive-480px.less { + /* placeholder */ } + +@media (max-width: 480px) { + .hidden-desktop { + display: inherit !important; } + .hidden-tablet { + display: inherit !important; } + .hidden-phone { + display: none !important; } + .visible-desktop { + display: none !important; } + .visible-tablet { + display: none !important; } + .visible-phone { + display: inherit !important; } + .container { + width: auto; + padding-left: 15px; + padding-right: 15px; } } + +@font-face { + font-family: 'icoPrimary'; + src: url("fonts/icons/icoPrimary.eot?timestamp=@@timestamp"); + src: url("fonts/icons/icoPrimary.eot?timestamp=@@timestamp#iefix") format("embedded-opentype"), url("data:font/woff2; charset=utf-8;base64,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") format("woff2"), url("data:application/font-woff; charset=utf-8;base64,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") format("woff"), url("fonts/icons/icoPrimary.ttf?timestamp=@@timestamp") format("truetype"); + font-weight: normal; + font-style: normal; } + +[class*="icon-primary-"], +.nav-links a:after, +.bellyband-link a:after, +.breadcrumb > li:after, +.checkbox input:checked + .skin:after, +.checkbox input.indeterminate + .skin:after, +.checkbox input:indeterminate + .skin:after, +.selectWrap.large:before, +.form-row.error .error-msg:before, +.close:before, +.reset-field:before, +.cssIcon-globe:before, +.selectWrap:after { + color: #0568ae; + display: inline-block; + font-family: 'icoPrimary' !important; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + height: 1em; + margin-right: 7px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + width: 1em; } + +[class*="icon-primary-"]:before, +[class*="icon-primary-"]:after { + box-sizing: border-box; + display: inline-block; + font-size: 1em; + height: 1em; + position: relative; + top: 0; + left: 0; + vertical-align: middle; + width: 1em; } + +.icon-primary-att-globe:before, +.cssIcon-globe:before { + content: "\e900"; + color: #44c7f5; } + +.icon-primary-hamburger:before { + content: "\e903"; } + +.icon-primary-secure:before { + content: "\e918"; } + +.icon-primary-secureL:before { + content: "\e919"; } + +.icon-primary-padlockopen:before { + content: "\e916"; } + +.icon-primary-padlockopenL:before { + content: "\e917"; } + +.icon-primary-shoppingcart:before { + content: "\e914"; } + +.icon-primary-shoppingcartL:before { + content: "\e915"; } + +.icon-primary-print:before { + content: "\e921"; } + +.icon-primary-printL:before { + content: "\e922"; } + +.icon-primary-mobilesmartphone:before { + content: "\e908"; } + +.icon-primary-mobilesmartphoneL:before { + content: "\e90c"; } + +.icon-primary-tablet:before { + content: "\e904"; } + +.icon-primary-tabletL:before { + content: "\e905"; } + +.icon-primary-tv:before { + content: "\e906"; } + +.icon-primary-tvL:before { + content: "\e907"; } + +.icon-primary-calendar { + width: 100% !important; } + +.icon-primary-calendar:before { + content: "\e91a"; + z-index: 1; } + +.icon-primary-calendarL:before { + content: "\e91b"; } + +.icon-primary-star:before { + content: "\e96c"; } + +.icon-primary-close:before, +.close:before, +.reset-field:before { + content: "\e910"; } + +.icon-primary-down:before { + content: "\ea3c"; } + +.checkbox input.indeterminate + .skin:after, +.icon-primary-subtractminimize:before { + content: "\e920"; } + +.icon-primary-add-maximize:before { + content: "\e91f"; } + +.icon-primary-check:before, +.checkbox input:checked + .skin:after { + content: "\e912"; } + +.icon-primary-questionmark:before { + content: "\e90f"; } + +.icon-primary-badgealert:before, +.form-row.error .error-msg:before { + content: "\e90e"; } + +.icon-primary-approval:before { + content: "\e925"; } + +.icon-primary-flat-info:before { + content: "\e927"; } + +.icon-primary-alert:before { + content: "\e913"; } + +.icon-primary-tooltip:before, +.icon-primary-flat-faq:before { + content: "\e90d"; } + +.icon-primary-tooltip { + font-size: 20px; } + +.nav-links a:after, +.bellyband-link a:after, +.breadcrumb > li:after, +.icon-primary-right:before { + content: "\ea3c"; + transform: rotate(-90deg); } + +.icon-primary-left:before { + content: "\ea3c"; + transform: rotate(90deg); } + +.icon-primary-accordion-plus:after, +.icon-primary-collapsed:after, +.icon-primary-accordion-minus:after, +.icon-primary-expanded:after { + content: ""; + position: absolute; + top: 0; + z-index: 1; } + +.icon-primary-accordion-minus, +.icon-primary-expanded, +.icon-primary-accordion-plus, +.icon-primary-collapsed { + font-size: 20px !important; } + +:not(.ds2-no-colors) .icon-primary-accordion-minus:before, +:not(.ds2-no-colors) .icon-primary-expanded:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + +:not(.ds2-no-colors) .icon-primary-accordion-plus:before, +:not(.ds2-no-colors) .icon-primary-collapsed:before { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M10.5%2015.9c-.4%200-.8-.3-.8-.8V5.9c0-.4.3-.8.8-.8s.8.3.8.8v9.3c0%20.4-.4.7-.8.7z%22%2F%3E%3Cpath%20fill%3D%22%230568ae%22%20d%3D%22M15.1%2011.3H5.9c-.4%200-.8-.3-.8-.8s.3-.8.8-.8h9.3c.4%200%20.8.3.8.8s-.4.8-.9.8z%22%2F%3E%3Cpath%20fill%3D%22%23d2d2d2%22%20d%3D%22M10.5%2021C4.7%2021%200%2016.3%200%2010.5S4.7%200%2010.5%200%2021%204.7%2021%2010.5%2016.3%2021%2010.5%2021zm0-20C5.3%201%201%205.3%201%2010.5S5.3%2020%2010.5%2020s9.5-4.3%209.5-9.5S15.7%201%2010.5%201z%22%2F%3E%3C%2Fsvg%3E"); + content: ""; } + +.ds2-no-colors .icon-primary-accordion-minus:before, +.ds2-no-colors .icon-primary-expanded:before { + background-image: none; + content: "\e901"; } + +.ds2-no-colors .icon-primary-accordion-minus:after, +.ds2-no-colors .icon-primary-expanded:after { + content: "\e902"; } + +.ds2-no-colors .icon-primary-accordion-plus:before, +.ds2-no-colors .icon-primary-collapsed:before { + background-image: none; + content: "\e90b"; } + +.ds2-no-colors .icon-primary-accordion-plus:after, +.ds2-no-colors .icon-primary-collapsed:after { + content: "\e911"; } + +.icon-primary-circle-arrow { + outline: 1px solid transparent; + border-radius: 50%; + font-size: 20px !important; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); + margin-right: 7px; } + +.icon-primary-circle-arrow:after { + background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20baseProfile%3D%22tiny%22%3E%3Ccircle%20r%3D%2217%22%20cy%3D%2218%22%20cx%3D%2218%22%20stroke-width%3D%221%22%20fill%3D%22transparent%22%20stroke%3D%22%23ccc%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 2; } + +.icon-primary-circle-arrow:before { + border-radius: 50%; + content: "\ea3c"; + font-size: 12px; + top: 0; + position: absolute; + transform: rotate(-90deg); + width: 20px; + z-index: 1; } + +[class*="icon-primary-"] [class*="icon-primary-"] { + display: inline-block; + float: left; + font-size: 1em; + margin-left: -1em; + position: absolute; } + +[class*="icon-primary-"].white { + color: #fff; } + +[class*="icon-primary-"].black { + color: #000; } + +[class*="icon-primary-"].blue { + color: #0568ae; } + +[class*="icon-primary-"].green { + color: #007a3e; } + +@-webkit-viewport { + width: device-width; } + +@-moz-viewport { + width: device-width; } + +@-ms-viewport { + width: device-width; } + +@-o-viewport { + width: device-width; } + +@viewport { + width: device-width; } + +.clearfix:before, +.clearfix:after { + display: table; + content: ""; + line-height: 0; } + +.clearfix:after { + clear: both; } + +.pull-right { + float: right !important; } + +.pull-left { + float: left !important; } + +.float-children-left:before, +.float-children-left:after { + display: table; + content: ""; + line-height: 0; } + +.float-children-left:after { + clear: both; } + +.float-children-left > div { + float: left; + white-space: nowrap; } + +.block { + display: block !important; } + +.inline { + display: inline !important; } + +.inline-block { + display: inline-block !important; } + +.table-cell { + display: table-cell !important; + width: 1%; + vertical-align: middle; } + +@media (max-width: 767px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 15px; } } + +@media (min-width: 768px) { + .full-bleed { + width: auto; + margin-left: -20px; + margin-right: -20px; + padding: 20px; } } + +@media (max-width: 480px) { + .full-bleed { + width: auto; + margin-left: -15px; + margin-right: -15px; + padding: 0 15px; } } + +.fade { + opacity: 0; + filter: alpha(opacity=0); + transition: opacity .15s linear; } + +.fade.in { + opacity: 1; + filter: alpha(opacity=100); } + +.b2bCollapse { + display: none; } + +.collapse.in { + height: auto; } + +.nowrap { + white-space: nowrap; } + +.pre { + white-space: pre; } + +.hidden-spoken { + border: 0 none !important; + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + margin-top: -1px; + padding: 0 !important; + position: absolute !important; + width: 1px !important; } + +[data-sr-text].hidden-spoken:before { + border: 0 none !important; + content: attr(data-sr-text); + clip: rect(0px, 0px, 0px, 0px) !important; + height: 1px !important; + letter-spacing: 0; + line-height: 0; + overflow: hidden !important; + padding: 0 !important; + position: absolute !important; + width: 100% !important; + z-index: -1; } + +[data-sr-text].hidden-spoken { + position: relative !important; + width: auto !important; } + +[data-show-between] { + display: none; + visibility: hidden; } + +.noscroll-y { + overflow-y: hidden !important; } + +.invisible { + visibility: hidden !important; + opacity: 0 !important; } + +.transparent { + background-color: rgba(255, 255, 255, 0) !important; } + +.hide { + display: none !important; } + +.show { + display: block !important; } + +.rel { + position: relative !important; } + +.legend-pad { + padding: 0 15px; } + +.border-top { + border-top-width: 1px !important; } + +.border-left { + border-left-width: 1px !important; } + +.border-right { + border-right-width: 1px !important; } + +.border-bottom { + border-bottom-width: 1px !important; } + +.border-dark { + border-color: #000; } + +.border-light { + border-color: #fff; } + +.no-border-top { + border-top-width: 0 !important; } + +.no-border-left { + border-left-width: 0 !important; } + +.no-border-right { + border-right-width: 0 !important; } + +.no-border-bottom { + border-bottom-width: 0 !important; } + +.align-middle { + margin: 0 auto !important; } + +.align-top { + position: absolute; + top: 0; } + +.align-bottom { + position: absolute; + bottom: 0; } + +.valign-top { + vertical-align: top !important; } + +.valign-middle { + vertical-align: middle !important; } + +.valign-bottom { + vertical-align: bottom !important; } + +.align-children-middle > * { + margin: 0 auto; } + +[class*="valign-children-"] { + display: table; } + +[class*="valign-children-"] > * { + display: table-cell; } + +.valign-children-top > * { + vertical-align: top; } + +.valign-children-middle > * { + vertical-align: middle; } + +.valign-children-bottom > * { + vertical-align: bottom; } + +.no-pad { + padding: 0 !important; } + +.top-space { + margin-top: 60px !important; } + +.bottom-space { + margin-bottom: 60px !important; } + +.top-pad { + padding-top: 60px !important; } + +.bottom-pad { + padding-bottom: 60px !important; } + +@media (max-width: 767px) { + .top-space { + margin-top: 30px !important; } + .bottom-space { + margin-bottom: 30px !important; } + .top-pad { + padding-top: 30px !important; } + .bottom-pad { + padding-bottom: 30px !important; } } + +.affix { + position: fixed; } + +.img-landscape, +.img-portrait { + position: relative; } + +@media (orientation: landscape) { + .img-landscape { + display: block; } + .img-portrait { + display: none !important; } } + +@media (orientation: portrait) { + .img-landscape { + display: none !important; } + .img-portrait { + display: block; } } + +.dark-bg { + background-color: #222222; } + +/* ... JAVASCRIPT HOOKS ................. + ... used by javascript ............... */ +.autoSize, +.autoSize-this { + position: relative; } + +.truncate { + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + +.placeholdersjs { + color: #5a5a5a !important; } + +.jshook-return-focus-here { + display: block; } + +.visible-print { + display: none !important; } + +.hidden-print { + display: inherit !important; } + +@media print { + .visible-print { + display: inherit !important; } + .hidden-print { + display: none !important; } + * { + color: #000 !important; + background: transparent !important; + box-shadow: none !important; } + a, + a:visited { + text-decoration: underline; } + pre, + blockquote { + border: 1px solid #000; + page-break-inside: avoid; } + thead { + display: table-header-group; } + tr, + img { + page-break-inside: avoid; } + img { + max-width: 100% !important; } + @page { + margin: 0.5cm; } + p, + h2, + h3 { + orphans: 3; + widows: 3; } + h2, + h3 { + page-break-after: avoid; } } + +.mar-top-0 { + margin-top: 0px; } + +.mar-top-30 { + margin-top: 30px; } + +a:focus { + outline: thin dotted #191919; } + +h1, +h2, +h3, +h4, +h5, +h6 { + font-weight: normal; + text-rendering: optimizeLegibility; + margin: 0; + line-height: 1; } + +.heading-page { + font-size: 3.8rem !important; + font-family: "Omnes-ECOMP-W02-Light", Arial; + margin-bottom: 40px; } + +.heading-major-section { + font-size: 3rem !important; + font-family: "Omnes-ECOMP-W02-Light" , Arial; + margin-bottom: 40px !important; } + +.heading-sub-section { + font-size: 2.4rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 40px; } + +.heading-group { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #ea7400; + margin-bottom: 20px !important; } + +.heading-medium { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + +.heading-medium-emphasis { + font-size: 2rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + +.heading-small { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + +.heading-small-emphasis { + font-size: 1.8rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 20px; } + +.heading-micro { + font-size: 1.3rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-transform: uppercase; + color: #da0081; + margin-bottom: 10px; } + +* + .heading-major-section { + margin-top: 60px; } + +* + .heading-sub-section { + margin-top: 60px; } + +* + .heading-group { + margin-top: 40px !important; } + +* + .heading-medium { + margin-top: 40px; } + +* + .heading-medium-emphasis { + margin-top: 40px; } + +* + .heading-small { + margin-top: 40px; } + +* + .heading-small-emphasis { + margin-top: 40px; } + +* + .heading-micro { + margin-top: 20px; } + +.lead { + color: #666; + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial; + font-size: 2.4rem; + line-height: 2.8rem; + margin-top: 10px; + letter-spacing: -0.024rem; } + +.eyebrow { + text-transform: uppercase; + line-height: .65 !important; } + +.eyebrow, +.subheading { + font-size: 1.4rem !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #666; } + +.eyebrow + .heading-major-section, +.eyebrow + .heading-sub-section { + margin-top: 4px; } + +.subheading { + margin-top: 10px; } + +@media (max-width: 767px) { + h1, + h2, + h3, + h4, + h5, + h6, + .heading-page { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 30px; } + .heading-major-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 30px; } + .heading-sub-section { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-medium-emphasis { + font-size: 2rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; } + .heading-small { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 10px; } + .heading-small-emphasis { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 5px; } + * + .heading-major-section { + margin-top: 30px; } + * + .heading-sub-section { + margin-top: 30px; } + * + .heading-group { + margin-top: 20px; } + * + .heading-medium { + margin-top: 20px; } + * + .heading-medium-emphasis { + margin-top: 20px; } + * + .heading-small { + margin-top: 20px; } + * + .heading-small-emphasis { + margin-top: 20px; } + * + .heading-micro { + margin-top: 10px; } } + +/* Standard Type styles */ +.zeromargin { + margin: 0 !important; } + +a { + color: #0568ae; + text-decoration: none; } + +a:hover, +a:focus { + text-decoration: underline; } + +a:active { + color: #0568ae; } + +.a-min { + font-size: 12px; } + +.a-small { + font-size: 14px; } + +.a-max { + font-size: 18px; } + +a.show-qualifier { + margin-right: 25px; + position: relative; } + +a.show-qualifier:after { + color: #333333; + display: inline-block; + white-space: pre !important; } + +a[href$="pdf"].show-qualifier:after, +a.show-qualifier.pdf:after { + content: " (PDF)"; } + +a[href$="psd"].show-qualifier:after, +a.show-qualifier.psd:after { + content: " (PSD)"; } + +.standalone-link { + display: flex; } + +/* 20px for the icon, 10px left of icon */ +.standalone-link.small { + font-size: 1.4rem; } + +.standalone-link.small i[class*="icon-primary-"] { + font-size: 16px; + top: 2px; } + +.standalone-link.large { + font-size: 1.8rem; } + +.standalone-link.large i[class*="icon-primary-"] { + font-size: 24px; + top: -1px; } + +p { + margin: 0 0 12px 0; + line-height: 2rem; } + +.p-small { + font-size: 1.4rem; + line-height: 1.8rem; } + +p + .p-small { + margin: 10px 0 0; } + +.p-micro { + font-size: 1.2rem; + line-height: 1.5rem; } + +p + .p-micro { + margin: 10px 0 0; } + +.p-max { + font-size: 1.8rem; } + +p + .p-max { + margin: 10px 0 0; } + +b, +strong { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; } + +i, +em { + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; } + +.strike { + text-decoration: line-through; } + +sup { + display: inline-block; + font-style: normal; + height: 1em; + position: relative; + vertical-align: text-top; + width: auto; } + +.text-legal { + color: #5a5a5a; + font-size: 1.1rem; + line-height: 1.5rem; + margin: 0 0 10px; } + +.text-legal.legal-module { + line-height: 1.3rem; + margin: 0 0 12px; } + +.text-legal b, +.text-legal strong { + font-weight: bold; } + +.text-legal a { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.text-left { + text-align: left !important; } + +.text-right { + text-align: right !important; } + +.text-center { + text-align: center !important; } + +.text-justified { + text-align: justify !important; } + +ul { + padding: 0; + margin: 0; + list-style: none; } + +ul.bullet, +ul.no-bullet, +ul.lower-alpha, +ul.lower-roman, +ol { + padding: 0; + margin: 12px 0 0 20px; } + +ul.bullet li, +ul.no-bullet li, +ul.lower-alpha li, +ul.lower-roman li, +ol li { + padding-left: 15px; + line-height: 20px; + position: relative; } + +ul.bullet li + li, +ul.no-bullet li + li, +ul.lower-alpha li + li, +ul.lower-roman li + li, +ol li + li { + margin-top: 12px; } + +ul.bullet > li:before, +ul.no-bullet > li:before, +ul.lower-alpha > li:before, +ul.lower-roman > li:before, +ol > li:before { + background-color: #333333; + border: 2px solid #333333; + border-radius: 100%; + content: " "; + display: block; + height: 1px; + left: 0; + position: absolute; + top: 8px; + width: 1px; } + +ul.bullet ul, +ul.no-bullet ul, +ul.lower-alpha ul, +ul.lower-roman ul, +ol ul, +ul.bullet ol, +ul.no-bullet ol, +ul.lower-alpha ol, +ul.lower-roman ol, +ol ol { + margin-top: 12px; } + +ul + *, +ol + * { + margin-top: 20px; } + +ul.no-bullet, +ul.lower-alpha, +ul.lower-roman { + margin: 0; } + +ul.no-bullet > li, +ul.lower-alpha > li, +ul.lower-roman > li { + padding-left: 0; } + +ul.no-bullet > li:before, +ul.lower-alpha > li:before, +ul.lower-roman > li:before { + display: none !important; } + +ol { + margin: 20px 0 0 32px; } + +ol li { + padding-left: 3px; } + +ol li:before { + display: none; } + +ol ol { + margin-left: 25px; } + +ol ul { + margin-left: -5px; } + +ul ul, +ul ol, +ol ol, +ol ul { + margin-top: 0; } + +ul.lower-roman { + list-style-type: lower-roman; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + +ul.lower-alpha { + list-style-type: lower-alpha; + margin-top: 12px; + margin-left: 35px; + margin-bottom: 0; } + +dl { + display: table; + margin: 0 0 20px; + width: 100%; } + +dt, +dd { + display: table-cell; } + +.btn { + background-color: transparent; + background-clip: padding-box; + border: 1px solid transparent; + border-radius: 8px; + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15); + cursor: pointer; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.9rem; + font-weight: normal; + line-height: 1; + margin: 0 7px 10px 0; + max-width: 470px; + min-width: 70px; + padding: 14px 19px 11px 18px; + position: relative; + text-align: center; + vertical-align: middle; + white-space: nowrap; + overflow: hidden; } + .btn:focus { + outline: 1px dotted #000; + outline-offset: -5px; } + .btn:last-child { + margin-right: 0; } + .btn::-moz-focus-inner { + padding: 0; + border: 0; } + .btn i[class*="icon-primary-"].icon-primary-small { + font-size: 24px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-medium { + font-size: 30px; + top: -2px; } + .btn i[class*="icon-primary-"].icon-primary-large { + font-size: 36px; + top: -2px; } + +a.btn { + vertical-align: middle; } + a.btn:hover { + text-decoration: none; } + +.field-group + .btn { + margin-left: 20px; } + +.btn-primary { + border-color: #ea7400 transparent #d16500; + background-color: #ea7400 transparent #d16500; + background: linear-gradient(to bottom, #ea7400 0%, #d16500 100%); + color: #ffffff; + font-family: "Omnes-ECOMP-W02", Arial; + font-weight: bold; } + .btn-primary:hover { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:focus { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-primary:active { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + +.btn-arrow { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + font-weight: normal; + background-color: transparent; + border: none; + padding: 5px 0 0; + top: -4px; + color: #333333; + position: relative; } + .btn-arrow:hover { + text-decoration: underline; } + .btn-arrow:hover .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:hover .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:hover .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:hover .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:focus { + text-decoration: underline; + outline: 1px dotted #666; } + .btn-arrow:focus .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:focus .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:focus .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:focus .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow:active .btn-primary { + text-decoration: none; + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #d16500 0%, #ea7400 100%); } + .btn-arrow:active .btn-secondary { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-arrow:active .btn-alt { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); } + .btn-arrow:active .btn-specialty { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-arrow .btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-arrow .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-arrow::-moz-focus-inner { + padding: 0; + border: 0; } + .btn-arrow .btn { + border: 1px solid transparent; + border-radius: 100%; + height: 36px; + margin-bottom: 0; + margin-right: 7px; + max-width: 36px; + min-width: 20px; + padding: 0; + margin-top: -4px; + vertical-align: middle; + width: 36px; } + .btn-arrow .btn .icon-primary-left { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; } + .btn-arrow .btn .icon-primary-left:before { + position: absolute; + font-size: 1.6rem; + left: 1px; + top: 9px; } + .btn-arrow .btn .icon-primary-right { + bottom: 0; + display: block; + height: 100%; + left: 0; + line-height: 0; + position: absolute; + right: 0; + text-indent: 0; + top: 0; + color: #ffffff; } + .btn-arrow .btn .icon-primary-right:before { + position: absolute; + font-size: 1.6rem; + left: 17px; + top: 9px; } + .btn-arrow .btn.btn-primary .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-primary .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-left { + color: #fff; } + .btn-arrow .btn.btn-alt .icon-primary-right { + color: #fff; } + .btn-arrow .btn.btn-secondary { + border: 1px solid #d2d2d2; } + .btn-arrow .btn.btn-secondary .icon-primary-left { + color: #0568ae; } + .btn-arrow .btn.btn-secondary .icon-primary-right { + color: #0568ae; } + .btn-arrow .btn.btn-small { + height: 20px; + max-width: 20px; + min-width: 20px; + width: 20px; + top: -1px; } + .btn-arrow .btn.btn-small .icon-primary-left:before { + font-size: 10px; + top: 4px; + left: 0; } + .btn-arrow .btn.btn-small .icon-primary-right:before { + font-size: 10px; + top: 4px; + left: 10px; } + .btn-arrow .btn.btn-large .icon-primary-left:before { + font-size: 112%; + top: 12px; + left: 23px; } + .btn-arrow .btn.btn-large .icon-primary-right:before { + font-size: 112%; + top: 12px; + left: 23px; } + +.btn-secondary { + border: 1px solid #d2d2d2; + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + color: #0568ae; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + padding: 14px 18px 11px 17px; } + .btn-secondary:hover { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:focus { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + .btn-secondary:active { + color: #0568ae; + outline-color: #000000 !important; + background: linear-gradient(to bottom, #f2f2f2 0%, #fcfcfc 100%); } + +.btn-alt { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-alt:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + .btn-alt:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #0568ae 0%, #087ac2 100%); } + +.btn-specialty { + border-color: #008744 transparent #007a3e; + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + color: #ffffff; } + .btn-specialty:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + .btn-specialty:active { + color: #ffffff; + outline-color: #ffffff !important; + background: linear-gradient(to bottom, #007a3e 0%, #008744 100%); } + +.btn-clear { + background: transparent !important; + border-color: transparent !important; + font-weight: normal; + font-family: "Omnes-ECOMP-W02", Arial; + box-shadow: none; + text-decoration: none; + color: #0568ae; } + .btn-clear:focus { + text-decoration: underline; } + .btn-clear:hover { + text-decoration: underline; } + +.isIE .btn:focus { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:focus:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + +.isIE .btn:active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn:active:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + +.isIE .btn.active { + outline: none !important; + text-decoration: none !important; } + .isIE .btn.active:not(:focus):after { + border: 1px solid #000; } + .isIE .btn.active:after { + display: block; + content: ""; + position: absolute; + top: 4px; + left: 4px; + right: 4px; + bottom: 4px; + border: 1px dotted #000; } + +.isIE .btn.btn-primary:focus:after { + border: 2px dashed #fff; } + +.isIE .btn.btn-specialty:focus:after { + border: 2px dashed #fff; } + +.isIE .btn.btn-alt:focus:after { + border: 2px dashed #fff; } + +.btn.disabled { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn.disabled:hover { + color: #f2f2f2; + outline: none !important; } + .btn.disabled:focus { + color: #f2f2f2; + outline: none !important; } + +.btn[disabled] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled]:focus { + color: #f2f2f2; + outline: none !important; } + +.btn[disabled="disabled"] { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn[disabled="disabled"]:hover { + color: #f2f2f2; + outline: none !important; } + .btn[disabled="disabled"]:focus { + color: #f2f2f2; + outline: none !important; } + +.btn-arrow[disabled] .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow[disabled] .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow[disabled] .btn:focus { + color: #f2f2f2; + outline: none !important; } + +.btn-arrow[disabled] .icon-primary-left { + color: #fff !important; } + +.btn-arrow[disabled] .icon-primary-right { + color: #fff !important; } + +.btn-arrow.disabled .btn { + background-image: none; + background-color: #767676; + box-shadow: none; + cursor: not-allowed; + color: #ffffff; + border-color: transparent; + outline: 0 !important; } + .btn-arrow.disabled .btn:hover { + color: #f2f2f2; + outline: none !important; } + .btn-arrow.disabled .btn:focus { + color: #f2f2f2; + outline: none !important; } + +.btn-arrow.disabled .icon-primary-left { + color: #fff !important; } + +.btn-arrow.disabled .icon-primary-right { + color: #fff !important; } + +.btn-medium { + padding: 12px 19px 11px 18px; + font-size: 1.7rem; } + +.btn-small { + padding: 10px 19px 9px 18px; + font-size: 1.5rem; + border-radius: 8px; } + +.btn-fullwidth { + width: 100%; } + +*:not(.btn-arrow) > .btn > i[class*="icon-primary-"] { + margin-top: -20px; + margin-bottom: -20px; } + +.enhanced-cta-group { + display: -ms-flexbox; + display: flex; + -ms-flex-direction: row-reverse; + flex-direction: row-reverse; + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3A%23959595%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; + background-position: 0 -1px; + background-repeat: repeat-x; } + .enhanced-cta-group > .cta-button-group { + border-top: 0; + background-image: none !important; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a { + font-size: 1.4rem; + line-height: 1em; } + .enhanced-cta-group > .cta-button-group + .cta-button-group a a { + margin-right: 0; } + .enhanced-cta-group > .cta-button-group hr { + min-height: 14px; } + .enhanced-cta-group > .cta-button-group + .cta-button-group { + -ms-flex-align: center; + -ms-grid-row-align: center; + align-items: center; + -ms-flex-direction: row; + flex-direction: row; + padding: 10px 0; } + +.cta-button-group { + text-align: right; + -ms-flex-align: baseline; + align-items: baseline; + padding: 20px 0 10px; + width: 100%; } + .cta-button-group.nodots { + background-image: none !important; } + .cta-button-group .hidden-phone { + margin-right: 14px; } + .cta-button-group .btn + .btn { + margin-right: 20px !important; } + .cta-button-group .btn:not(.hidden-phone):not(.visible-phone) { + margin-right: 0; } + +.isMobile .btn-arrow .btn.btn-small .icon-primary-left:before { + left: -1px; } + +.isMobile .btn-arrow .btn.btn-large .icon-primary-left:before { + left: 24px; } + +.isMobile .btn-arrow .btn.btn-large .icon-primary-right:before { + left: 24px; } + +@media (max-width: 1024px) { + .field-group + .btn { + margin-left: 15px; } } + +@media (max-width: 767px) { + .cta-button-group { + text-align: center; } + .cta-button-group > .btn { + display: block; + float: none; + width: 100%; + margin-left: auto !important; + margin-right: auto !important; } } + +.btn-group { + border-radius: 8px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + display: -ms-flexbox; + display: flex; + -ms-flex-pack: justify; + justify-content: space-between; + margin-bottom: 10px; + max-width: 470px; + min-width: 290px; + position: relative; + vertical-align: middle; + width: 100%; } + .btn-group > .btn { + box-shadow: none; + -ms-flex: 1; + flex: 1; + position: relative; + float: left; + margin-right: -1px; + margin-bottom: 0; + padding-left: 0; + padding-right: 0; + text-align: center; } + .btn-group:not([data-select-color]) .btn.active:not(:first-child) { + margin-right: -1px; + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled]:not(:first-child) { + border-left: 1px solid #d2d2d2 !important; } + .btn-group:not([data-select-color]) .btn[disabled] + .btn[disabled] { + border-left: 1px solid #ebebeb !important; } + .btn-group:not([data-select-color]) > .btn.active { + border-color: #087ac2 transparent #0568ae; + background-color: #0568ae; + background: linear-gradient(to bottom, #087ac2 0%, #0568ae 100%); + color: #ffffff; } + .btn-group:not([data-select-color]) > .btn.active:hover { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:focus { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn.active:active { + color: #ffffff; + outline-color: #ffffff !important; + background: #0563a6; + border-color: #0563a6; } + .btn-group:not([data-select-color]) > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; } + .btn-group:not([data-select-color]) > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; } + .btn-group:not([data-select-color]) > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group:not([data-select-color]) > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; } + .btn-group > .active { + text-decoration: none; + outline: 1px dotted transparent; } + .btn-group > .active:focus { + outline: 1px dotted #ffffff; } + +.btn-group.btn-fullwidth > .btn { + -ms-flex: 1; + flex: 1; } + +.btn-group[data-select-color] { + margin-top: 5px; + box-shadow: none; + -ms-flex-pack: start; + justify-content: flex-start; + -ms-flex-wrap: wrap; + flex-wrap: wrap; } + .btn-group[data-select-color] .btn { + border: 1px solid #959595; + border-radius: 4px; + box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.15); + margin-right: 10px; + margin-bottom: 10px; + height: 40px; + font-size: 16px; + color: #333333; + max-width: 60px; + min-width: 60px; + -ms-flex: 0; + flex: 0; } + .btn-group[data-select-color] > .btn.active:focus { + outline: 1px dotted #191919; + outline-offset: 4px; } + +button .btn-fill { + background-clip: padding-box; + border: 0; + border-radius: 4px; + bottom: 0; + display: block; + height: auto; + left: 0; + margin: 5px; + position: absolute; + right: 0; + top: 0; + width: auto; } + +button .btn-fill[style*="#fff"] { + border: 1px solid #d2d2d2; } + +[data-select-color] .btn.active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn.active > .btn-fill { + margin: 3px; } + [data-select-color] .btn.active:hover { + color: #333333; } + +[data-select-color] .btn:active { + background: none !important; + outline: 0; + margin-right: 10px; + border-width: 3px; + color: #333333; + line-height: 12px; } + [data-select-color] .btn:active > .btn-fill { + margin: 3px; } + [data-select-color] .btn:active:hover { + color: #333333; } + +.btn-group[data-select-color="orange"] > .btn.active { + border-color: #ea7400; } + +.btn-group[data-select-color="blue"] > .btn.active { + border-color: #0568ae; } + +.btn-group[data-select-color="green"] > .btn.active { + border-color: #007a3e; } + +.btn-spinbutton-toggle.btn-group { + display: block !important; + height: 40px !important; + margin-top: 5px; + max-width: 138px; + min-width: 138px; + white-space: nowrap; } + +.btn-spinbutton-toggle .btn { + border-radius: 6px; + font-weight: normal; + -ms-flex: unset; + flex: unset; + height: 40px; + letter-spacing: normal; + min-width: auto; + padding: 3px 0 0; + text-align: center; + min-width: 46px; + width: 46px; } + +.btn-spinbutton-toggle .btn[data-max-value] { + border-bottom: 1px solid #d2d2d2; + border-top: 1px solid #d2d2d2; + box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + background-color: #fff; + cursor: text; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 2rem; + font-weight: normal; + padding: 4px 0 0; + text-align: center; + min-width: 46px !important; + width: 46px; } + .btn-spinbutton-toggle .btn[data-max-value]:focus { + border-color: #0568ae; + outline: none; } + .btn-spinbutton-toggle .btn[data-max-value]:focus + .btn { + border-left: 1px solid #0568ae; + transition: border 0.3s linear 0s; } + +.btn-spinbutton-toggle .icon-primary-subtractminimize { + font-size: 30px !important; + color: #0568ae !important; } + +.btn-spinbutton-toggle .icon-primary-add-maximize { + font-size: 30px !important; + color: #0568ae !important; } + +.btn-spinbutton-toggle .btn[disabled].icon-primary-subtractminimize { + background-color: #d2d2d2; + color: #767676 !important; } + +.btn-spinbutton-toggle .btn[disabled].icon-primary-add-maximize { + background-color: #d2d2d2; + color: #767676 !important; } + +.btn-spinbutton-toggle input.btn[disabled] { + background-color: #d2d2d2; + color: #5a5a5a; + cursor: not-allowed; } + +.btn-group.btn-spinbutton-toggle .btn[disabled] + .btn[disabled] { + border-left: 1px solid #f0f0f0 !important; } + +.btn-group.btn-spinbutton-toggle .btn[data-max-value]:focus + .btn:not(:first-child) { + border-left: 1px solid #0568ae !important; } + +@media (max-width: 480px) { + .btn-group:not([data-select-color]) > .btn { + font-size: 1.3rem; + min-width: auto; } } + +.reset-field, +.close { + float: right; + background: none; + width: 34px; + height: 34px; + padding: 0; + overflow: hidden; + display: inline-block; } + +.reset-field { + display: none; } + +.reset-field:before { + font-size: 22px; + color: #5a5a5a; } + +.input-emphasized + .reset-field:before { + font-size: 29px; + color: #5a5a5a; } + +.reset-field:active, +.reset-field:hover, +.reset-field:focus { + display: block !important; } + +button.close { + border: 0; + appearance: none; } + +.corner-button { + box-shadow: 0 -50px 0 0 #f2f2f2 inset; + height: 69px; + /*overflow: hidden;*/ + position: absolute; + right: -35px; + top: -35px; + transform: rotate(45deg); + width: 69px; } + +.corner-button .close:before { + bottom: -7px; + color: #0568ae; + display: block; + font-size: 20px; + height: 50px; + left: -11px; + position: absolute; + width: 50px; } + +.corner-button .close { + float: none; + height: 45px; + margin: 0; + position: absolute; + right: 12px; + top: 45px; + transform: rotate(45deg); + width: 45px; } + +.corner-button .close:focus { + outline: 1px dotted black; } + +.ds2-no-colors .corner-button .close { + border: 1px solid black; } + +.field-group input + .reset-field { + background: none; + height: 36px; + width: 45px; + display: none; + padding: 0; + position: absolute; + right: 0; + top: 0; + box-shadow: none; + border: none; + content: " "; } + +.field-group input[type="search"] + .reset-field, +.field-group input[type="search"] + .btn-search + .reset-field, +.tooltip-onclick input + .reset-field, +.tooltip-onclick input + .icon-primary-tooltip + .reset-field, +.tooltip-onclick textarea + .reset-field, +.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px; } + +.field-group input[type="search"] + .reset-field:after, +.field-group input[type="search"] + .btn-search + .reset-field:after, +.tooltip-onclick input + .reset-field:after, +.tooltip-onclick input + .icon-primary-tooltip + .reset-field:after, +.tooltip-onclick textarea + .reset-field:after, +.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field:after { + background-color: #d2d2d2; + content: ""; + display: block; + height: 20px; + position: absolute; + right: 0; + top: 8px; + width: 1px; } + +.tooltip-onclick input + .reset-field, +.tooltip-onclick input + .icon-primary-tooltip + .reset-field { + right: 50px !important; } + +.tooltip-onclick textarea + .reset-field, +.tooltip-onclick textarea + .icon-primary-tooltip + .reset-field { + right: 45px !important; + width: 40px; } + +.field-group input.input-emphasized + .reset-field { + width: 45px; + height: 46px; + right: 6px; } + +.field-group input.input-emphasized + .reset-field:after { + top: 14px; } + +.field-group [disabled] + .reset-field { + display: none; } + +.ds2_touchevents .field-group input + .reset-field:focus, +.ds2_touchevents .field-group input:focus + .reset-field, +.ds2_touchevents textarea:focus + .reset-field, +.ds2_touchevents textarea + .reset-field:focus { + display: block; + position: absolute; + right: 0px; + top: 0; + border: none; } + +.ds2_touchevents .field-group input { + padding: 8px 55px 8px 15px; + -webkit-appearance: none; } + +.ds2_touchevents textarea:focus { + padding: 15px 55px 15px 15px; } + +.ds2_touchevents textarea:focus + .reset-field { + border: none; + position: absolute; + right: 6px; + top: 5px; } + +.ds2_touchevents textarea.hasScrollbar:focus { + padding: 15px 35px 15px 15px; } + +.ds2_touchevents textarea.hasScrollbar:focus + .reset-field { + right: 22px; } + +.form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; } + +.form-row.error .error-msg:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + +.form-row.error label, +.form-row.error .error-msg, +.form-row.error button.awd-select, +.form-row.error select.awd-select + span, +.form-row.error .checkbox, +.form-row.error .radio, +.form-row.error legend.error, +.form-row.error input { + color: #cf2a2a; } + +.form-row.error .btn-group > .btn, +.form-row.error button.awd-select, +.form-row.error .awd-select-list, +.form-row.error select.awd-select + span, +.form-row.error textarea, +.form-row.error input, +.form-row.error .checkbox .skin, +.form-row.error .radio .skin { + border-color: #cf2a2a !important; } + +.form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + +.form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + +.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg { + margin-top: -11px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext { + margin: 0 0 10px; } + +.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:before, +.error .tooltip-onclick .icon-primary-tooltip.active + .error-msg + .helpertext:after { + display: none; } + +.error .helpertext { + border-color: #cf2a2a; + /*border-radius:0;*/ } + +.error .helpertext:before { + border-top-color: #cf2a2a; } + +.error .tooltip-onfocus .helpertext { + margin: 14px 0 10px 0; } + +.error [class*="price"], +.error [class*="pricing-"] { + color: #cf2a2a; } + +input:-ms-clear { + display: none; } + +input[type]::-webkit-inner-spin-button, +input[type]::-webkit-outer-spin-button { + -webkit-appearance: none; } + +/* input[type] { + -moz-appearance: textfield; } + */ +form { + margin: 0; } + +fieldset { + padding: 0; + margin: 0; + border: 0; } + +label, +legend { + display: inline-block; + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +legend { + display: block; } + +.error-msg { + display: none; } + +select, +textarea, +input { + border-radius: 6px; + color: #5a5a5a; + display: inline-block; + font-size: 1.6rem; + margin: 0px; + padding: 0 15px 0 15px; + vertical-align: middle; + line-height: normal; } + +select::-webkit-input-placeholder, +textarea::-webkit-input-placeholder, +input::-webkit-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + +select:-moz-placeholder, +textarea:-moz-placeholder, +input:-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + +select::-moz-placeholder, +textarea::-moz-placeholder, +input::-moz-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + +select:-ms-input-placeholder, +textarea:-ms-input-placeholder, +input:-ms-input-placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + transition: none; + opacity: 1; } + +select:placeholder, +textarea:placeholder, +input:placeholder { + color: #5a5a5a; + font-family: "Omnes-ECOMP-W02-Italic", Arial; + font-style: normal; + opacity: 1; } + +select:last-child, +textarea:last-child, +input:last-child { + margin-right: 0; } + +input:not([type="button"]) { + height: 36px; } + +input.input-emphasized { + font-size: 1.8rem; + height: 48px; + padding: 13px 20px 13px; } + +input[type="search"]:focus { + padding-right: 88px; } + +input[type="search"] { + padding-right: 40px; + -webkit-appearance: none !important; } + +input[type="search"].input-emphasized { + padding-right: 45px; } + +.btn-search[class*="btn"] { + background-color: transparent; + background-position: 50% 50%; + background-size: 20px; + background-repeat: no-repeat; + border: none; + height: 100%; + margin-left: 0; + margin-top: 0; + min-width: 45px !important; + outline-offset: 0; + padding: 0 !important; + position: absolute; + right: 0; + top: 0; + border-radius: 0 5px 5px 0; + min-width: 44px; + width: 44px; } + +.input-emphasized + .btn-search[class*="btn"], +.input-emphasized + .reset-field + .btn-search[class*="btn"] { + background-size: 26px; + height: 46px; + top: 1px; + outline-offset: -3px; + margin-bottom: 0; + border-radius: 0 5px 5px 0; } + +input[type="search"].input-emphasized + .reset-field { + right: 45px !important; } + +.search-suggestion-wrapper { + position: relative; + margin-bottom: 15px; } + +/*styles from dropdown*/ +.search-suggestion-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: relative; + border: 1px solid #0568ae; + border-top: 0; + padding: 15px 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 400px; + overflow-y: auto; } + +.search-suggestion-list:empty { + display: none; } + +.search-suggestion-item { + position: relative; + z-index: -1; + padding: 0 15px; + line-height: 4.0rem; + color: #5a5a5a; } + +.search-suggestion-item a { + text-decoration: none; + color: #5a5a5a; } + +.search-suggestion-item:hover, +.search-suggestion-item:focus { + cursor: pointer; + background-color: #d2d2d2; } + +input[data-provide="datepicker"], +[data-provide="datepicker"]:-moz-placeholder, +[data-provide="datepicker"]:-ms-input-placeholder, +[data-provide="datepicker"]:-webkit-input-placeholder { + color: #0568ae !important; + opacity: 1; + filter: alpha(opacity=100); } + +input[disabled], +input[readonly], +select[disabled], +select[readonly], +textarea[disabled], +textarea[readonly], +span.icon-primary-calendar.disabled, +span.icon-primary-calendar.readonly { + cursor: not-allowed; + background-color: #f2f2f2; + box-shadow: none; } + +span.icon-primary-calendar.disabled input, +span.icon-primary-calendar.readonly input { + color: #959595 !important; } + +textarea { + display: block; + width: 100%; + max-width: 100%; + padding: 15px; } + +textarea.small { + line-height: 20px; } + +textarea + .reset-field { + display: none; } + +textarea::-webkit-input-placeholder { + line-height: .99; } + +textarea:-moz-placeholder { + line-height: .99; } + +textarea::-moz-placeholder { + line-height: .99; } + +textarea:-ms-input-placeholder { + line-height: .99; } + +textarea:placeholder { + line-height: .99; } + +textarea, +input { + background-color: #ffffff; + border: 1px solid #d2d2d2; +/* -webkit-appearance: none; */ + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + transition: border .3s linear 0s; + font-family: "Omnes-ECOMP-W02", Arial; } + +textarea:focus, +input:focus { + outline: 0; + border-color: #0568ae; } + +.input-append { + display: table; } + +.input-append > div { + display: table-cell; + width: 1%; } + +.input-append > .field-group { + width: 100%; } + +.row .field-group input[class*="span"] { + float: none; } + +.field-group { + position: relative; + display: inline-block; } + +label + .field-group, +label + .input-append, +label + .row, +label + .row-nowrap, +label + .form-row { + margin-top: 5px; } + +.field-group { + position: relative; + display: block; } + +.field-group input:not([type="button"])[disabled] { + padding-right: 15px; } + +input:invalid, +textarea:invalid, +select:invalid { + outline: none !important; } + +.form-row { + margin-top: 20px; } + +.form-row.nomar { + margin: 0; } + +.row-nowrap.no-flex.form-row > label + br { + margin-bottom: 5px; } + +span.form-row { + display: inline-block; } + +legend + .form-row { + margin-top: 20px; } + +.tooltip-onclick input { + padding-right: 45px; } + +.ds2_touchevents .tooltip-onclick input:focus { + padding-right: 95px; } + +span.icon-primary-calendar { + display: block; + position: relative; + background-color: #fff; + border-radius: 4px; + overflow: hidden; + height: 36px; } + +span.icon-primary-calendar:before { + position: absolute; + top: 7px; + left: 13px; + color: #0568ae; } + +span.icon-primary-calendar.disabled { + background-color: #f2f2f2; } + +span.icon-primary-calendar.disabled:before { + color: #959595; } + +span.icon-primary-calendar input { + padding-left: 35px; + color: #0568ae; + transition: border-color 0.3s linear 0s; + box-shadow: 2px 3px 2px -2px rgba(0, 0, 0, 0.08) inset; + position: absolute; + top: 0; + left: 0; } + +.faux-input + input.datepicker-input:not([disabled]) { + cursor: pointer; + margin-left: 0; + background-color: #fff; + position: absolute; + left: 0; + top: 0; + z-index: 0; } + +.faux-input { + background-color: transparent !important; + border: 1px solid transparent; + border-radius: 4px; + font-size: 1.6rem; + height: 35px; + left: 0; + line-height: 35px; + margin-bottom: 10px; + margin-right: 6px; + padding: 0 0 0 35px; + position: relative; + text-align: left; + top: 0; + vertical-align: middle; + width: 100%; + z-index: 1; } + +.faux-input:disabled { + cursor: not-allowed; } + +.faux-input:focus + .datepicker-input, +[data-calendar-state="opened"] + .datepicker-input { + border-color: #0568ae; + box-shadow: 2px 3px 2px -2px rgba(5, 116, 172, 0.35) inset; + outline: 0 none; } + +.form-row.error .error-msg { + display: block; + font-size: 14px; + line-height: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + position: relative; + padding-left: 18px; + margin-top: 10px; } + +.form-row.error .error-msg > .icon-primary-badgealert { + height: 14px; + width: 14px; + position: absolute; + left: 0; + margin-right: 0; } + +.form-row.error .error-msg > .icon-primary-badgealert:before { + color: #cf2a2a; + font-size: 14px; + left: 0; + line-height: 14px; + position: absolute; + vertical-align: middle; } + +.form-row.error label, +.form-row.error .error-msg, +.form-row.error button.awd-select, +.form-row.error select.awd-select + span, +.form-row.error .checkbox, +.form-row.error .radio, +.form-row.error legend.error, +.form-row.error input, +.form-row.error textarea { + color: #cf2a2a; } + +.form-row.error .btn-group > .btn, +.form-row.error button.awd-select, +.form-row.error .awd-select-list, +.form-row.error select.awd-select + span, +.form-row.error textarea, +.form-row.error input, +.form-row.error .checkbox .skin, +.form-row.error .radio .skin { + border-color: #cf2a2a !important; } + +.form-row.error .checkbox input:checked:not(:disabled) + .skin { + background-color: #cf2a2a; } + +.form-row.error .radio input:checked + .skin:after { + background-color: #cf2a2a; } + +.error [class*="price"], +.error [class*="pricing-"] { + color: #cf2a2a; } + +hr, +.hr-or { + display: block; + height: 1px; + margin: 15px 0; + border: none; + background-repeat: repeat-x; + background-color: #959595; + position: relative; } + +hr.dark { + background-color: #959595; } + +hr.lite { + background-color: #d2d2d2; } + +.hr-or:before { + background-color: #fff; + color: #666; + content: " OR "; + display: block; + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + height: 16px; + left: 50%; + line-height: 1.6rem; + margin-left: -15px; + margin-top: -8px; + position: absolute; + text-align: center; + top: 50%; + width: 30px; + z-index: 1111; } + +hr.hr-dotted.dark { + background-color: transparent; + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E"); + background-position: bottom; + background-repeat: repeat-x; + background-size: 4px 1px; + width: 100%; } + +hr.hr-dotted.lite { + background-color: transparent; + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(204%2C204%2C204%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E"); } + +hr.is-vertical.dark, +hr.hr-or.dark, +hr.is-vertical.lite, +hr.hr-or.lite { + display: inline-block; + height: auto; + margin: 0 15px; + min-height: 20px; + width: 1px; } + +hr.is-vertical.dark, +hr.hr-or.dark { + background-color: #959595; } + +hr.is-vertical.lite, +hr.hr-or.lite { + background-color: #d2d2d2; } + +.hr-dotted.is-vertical.dark, +.hr-dotted.is-vertical.lite { + background-color: transparent; + background-repeat: repeat-y; + background-size: 1px 4px; + height: auto; + min-height: 20px; + width: 1px; } + +.hr-dotted.is-vertical.dark { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A1px%3B%20height%3A100%25%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%22100%25%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%221%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E"); } + +.hr-dotted.is-vertical.lite { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A1px%3B%20height%3A100%25%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(204%2C204%2C204%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%22100%25%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%221%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E"); } + +.row-nowrap > .span + hr.is-vertical, +.row > .span + hr.is-vertical { + margin: 0 0 0 -20px; } + +@media (max-width: 767px) { + hr, + .hr-or { + margin: 30px 0; } + hr.full { + margin-left: -15px; + margin-right: -15px; } + .hr-or.is-vertical { + min-height: 1px; + height: 1px; + width: 100%; } + .row-nowrap > .span + hr.is-vertical { + margin: 0 0 0 -15px; } + .row > .span + hr.is-vertical { + min-height: 1px; + height: 1px; + width: 100%; + margin: 0; + display: block; } + .row > .span + hr.is-vertical.lite { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(204%2C204%2C204%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; + background-size: 4px 1px; + background-repeat: repeat-x; } + .row > .span + hr.is-vertical.dark { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; + background-size: 4px 1px; + background-repeat: repeat-x; } } + +hr.bottom-space-only { + margin-top: 0; } + +.hr-nomargin { + margin: 0; } + +.radio { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + margin-bottom: 5px; } + .radio input { + -webkit-tap-highlight-color: transparent; + height: 10px; + margin: 6px; + opacity: 0; + outline: none; + position: absolute; + left: 1px; + top: 1px; + width: 10px; } + .radio input:focus + .skin { + border-color: #0568ae; } + .radio input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .radio input + .skin { + border-radius: 100%; } + .radio input:checked + .skin:after { + background-color: #0568ae; + border-radius: 100%; + border: 3px solid #FFFFFF; + content: ""; + display: block; + height: 16px; + position: absolute; + width: 16px; } + .radio input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .radio input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .radio input:disabled:checked + .skin:after { + background-color: #666666; } + .radio input:invalid + .skin { + border: solid 1px #cf2a2a; } + .radio .skin { + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + left: 0; + position: absolute; + top: 0; + width: 24px; } + .radio span { + display: inline-block; + margin-left: 34px; + margin-top: 0; + position: relative; + top: 3px; } + .radio label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + +.radio.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .radio.inline:last-child { + margin-right: 0; } + +.radio-box { + border: 1px solid #d2d2d2; + border-radius: 8px; } + .radio-box > [role="radio"] label { + padding: 15px 15px 20px 15px; + display: block; + width: 100%; } + .radio-box > [role="radio"] label .skin + span { + top: 2px; } + .radio-box > [role="radio"] + div { + padding: 0 15px 15px 47px; } + .radio-box > [aria-checked="false"] label > input { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="false"] label .skin { + top: 15px; + left: 15px; } + .radio-box > [aria-checked="true"] label > input { + top: 13px; + left: 13px; } + .radio-box > [aria-checked="true"] label .skin { + top: 13px; + left: 13px; } + +.radio-box.active { + border: 3px solid #0568ae; } + .radio-box.active > [role="radio"] label { + padding: 13px 14px 19px 13px; } + +.checkbox { + position: relative; + min-height: 24px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.6rem; + margin-bottom: 5px; } + .checkbox input { + -webkit-tap-highlight-color: transparent; + height: 10px; + margin: 6px; + opacity: 0; + outline: none; + position: absolute; + left: 1px; + top: 1px; + width: 10px; } + .checkbox input:focus + .skin { + border-color: #0568ae; } + .checkbox input:focus + .skin:before { + content: ""; + height: 34px; + left: -6px; + top: -6px; + outline: 1px dotted #000000; + position: absolute; + width: 34px; } + .checkbox input:checked:not(:disabled) + .skin { + background-color: #0568ae; + border-color: #0568ae; } + .checkbox input:checked:disabled + .skin:after { + color: #5A5A5A; } + .checkbox input:checked + .skin:after { + height: 24px; + width: 24px; + background-color: transparent; + font-size: 23.4px; + color: #FFFFFF; + line-height: 21px; } + .checkbox input:disabled + .skin { + cursor: not-allowed; + background-color: #d2d2d2; + border-color: #d2d2d2; + color: #666666; } + .checkbox input:disabled + .skin + span { + cursor: not-allowed; + color: #666666; } + .checkbox input:invalid + .skin { + border: solid 1px #cf2a2a; } + .checkbox input:indeterminate + .skin:after { + background-color: transparent; + font-size: 25px; + color: #0574ac; + content: "\e920"; } + .checkbox .skin { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 3px; + display: inline-block; + height: 24px; + width: 24px; + position: absolute; + left: 0; + top: 0; } + .checkbox span { + display: inline-block; + margin-left: 34px; + margin-top: 0; + position: relative; + top: 3px; } + .checkbox label { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02", Arial; } + .checkbox input { + z-index: 9999; } + .checkbox input.indeterminate + .skin:after { + font-size: 22px; + color: #0568ae; } + +.checkbox.inline { + display: inline-block; + margin-bottom: 10px; + vertical-align: middle; + margin-right: 10px; } + .checkbox.inline:last-child { + margin-right: 0; } + +.checkbox.checkbox-selectall { + margin: 20px 0 0 24px; } + +.terms-after-checkbox { + margin-top: 15px; } + +.indeterminate-margin { + padding-left: 24px; } + +.tiny-accordion { + border-bottom: 1px solid #d2d2d2; } + +.toggle-header, +.inactive-toggle-header { + border-color: #fff; + color: #0568ae; + cursor: pointer; + display: block; + font-size: 2.0rem; + line-height: 2.2rem; + min-height: 41px; + position: relative; + padding: 16px 55px 16px 15px; } + +.toggle-header.opened { + color: #333333; } + +.tiny-accordion .toggle-header, +.tiny-accordion .inactive-toggle-header { + padding: 16px 55px 16px 15px; + border-top: 1px solid #d2d2d2; } + +.tiny-accordion .toggle-header:focus { + text-decoration: underline; } + +.tiny-accordion.iconleft .toggle-header, +.tiny-accordion.iconleft .inactive-toggle-header { + padding: 15px 15px 15px 50px; } + +.accordion-content { + font-size: 1.4rem; } + +.accordion-content .toggle-header:first-child { + margin-top: 16px; } + +.tiny-accordion .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + +.tiny-accordion.iconleft .toggle-header + .accordion-content { + padding: 0 15px 15px 50px; } + +.toggle-header .icon-primary-accordion-plus, +.toggle-header .icon-primary-accordion-minus { + display: inline-block; + font-size: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; + vertical-align: middle; + top: 16px; + font-weight: bold; } + +.tiny-accordion.iconleft .toggle-header .icon-primary-accordion-plus, +.tiny-accordion.iconleft .toggle-header .icon-primary-accordion-minus { + left: 15px; } + +.inactive-toggle-header:hover { + cursor: inherit; } + +.tiny-accordion-to-tabs, +.tiny-tabs { + position: relative; + width: 100%; + margin: 0px; + padding: 0px; } + +.tiny-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + +.tiny-accordion-to-tabs:before, +.tiny-accordion-to-tabs:after, +.tiny-tabs:before, +.tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + +.tiny-accordion-to-tabs:after, +.tiny-tabs:after { + clear: both; } + +.tiny-accordion-to-tabs:before, +.tiny-accordion-to-tabs:after, +.tiny-tabs:before, +.tiny-tabs:after { + display: table; + content: ""; + line-height: 0; } + +.tiny-accordion-to-tabs:after, +.tiny-tabs:after { + clear: both; } + +.tiny-tabs > .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + +.tiny-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding: 0; + display: block; + border-bottom: none; + width: 100%; } + +.accordion-pad { + padding-top: 30px; + padding-bottom: 30px; } + +.tiny-tabs .opened { + color: #333333; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; + cursor: default; + z-index: 999; } + +.tiny-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0; } + +.tiny-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + +.tiny-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + +.tiny-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + +.tiny-tabs .toggle-header:nth-last-of-type(2) { + border-right-color: #fff; } + +.tiny-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } + +@media (max-width: 767px) { + .tiny-accordion, + .tiny-accordion-to-tabs { + margin-left: -15px; + margin-right: -15px; + width: auto; } + .tiny-accordion-to-tabs { + display: block; + border-bottom: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header { + display: block; + min-height: 41px; + padding: 16px 50px 16px 15px; + border-top: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; } + .tiny-accordion-to-tabs .toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } } + +@media (min-width: 768px) { + .tiny-accordion-to-tabs [class*="icon-primary-accordion-"] { + display: none !important; } + .tiny-accordion-to-tabs > .toggle-header { + display: inline-block; + float: left; + border-top: none; + /*overflow: hidden;*/ + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 26px 20px 25px 20px !important; + border-top: 1px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #d2d2d2; + font-weight: normal; + border-right: 1px solid #d2d2d2; + white-space: nowrap; } + .tiny-accordion-to-tabs .toggle-header + div { + left: 0px; + position: absolute; + top: 69px; + border-top: 1px solid #d2d2d2; + padding-top: 30px; + padding-left: 20px; + display: block; + border-bottom: none; + width: 100%; } + .tiny-accordion-to-tabs .opened { + color: #333333; + border-top: 5px solid #0568ae !important; + padding-top: 22px !important; + border-bottom: none; + background-color: #fff; + -webkit-filter: none; + filter: none; + cursor: default; + text-decoration: none; + z-index: 999; } + .tiny-accordion-to-tabs .toggle-header:focus { + text-decoration: underline; + outline: thin dotted #666; + outline-offset: 0px; } + .tiny-accordion-to-tabs .toggle-header:nth-last-of-type(2) { + border-right: none; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: none; + margin-left: 0; } + .tiny-accordion-to-tabs .toggle-header:first-child { + border-left: 1px solid #fff; } + .tiny-accordion-to-tabs .opened:first-child { + border-left: 1px solid #d2d2d2; } + .tiny-accordion-to-tabs .opened:nth-last-of-type(2) { + border-right: 1px solid #d2d2d2; } } + +.toggle-header .tooltip .icon-primary-tooltip { + margin-top: -5px; } + +.accordion-content { + transition: all 0.8s linear; } + +.opaque-content { + opacity: 0; } + +.tiny-tabs .toggle-header { + display: inline-block; + float: left; + border-top: none; + overflow: hidden; + height: 70px; + text-align: center; + background-color: #fff; + border-radius: 0px; + padding: 22px 20px 25px 20px !important; + border-top: 5px solid #fff; + -webkit-filter: none; + filter: none; + background-clip: padding-box; + border-bottom: 1px solid #ccc; + font-weight: normal; + border-right: 1px solid #ccc; + white-space: nowrap; } + +.tiny-tabs .toggle-header:first-child { + margin-left: 0; } + +.tiny-tabs div:first-child .toggle-header { + margin-left: 30px; } + +.tiny-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + +.tiny-accordion-to-tabs > div > div.toggle-header { + background-clip: padding-box; + background-color: #fff; + border-bottom: 1px solid #ccc; + border-radius: 0; + border-top: 5px solid #fff; + display: inline-block; + filter: none; + float: left; + font-weight: normal; + overflow: hidden; + padding: 22px 20px 21px !important; + text-align: center; + white-space: nowrap; } + +.tiny-accordion-to-tabs .toggle-header:first-child { + margin-left: 0; } + +.tiny-accordion-to-tabs div:first-child .toggle-header { + margin-left: 30px; + border-bottom: 0 !important; } + +.tiny-accordion-to-tabs > div .toggle-header.opened { + border-bottom: 0 !important; } + +@media (max-width: 767px) { + .tiny-accordion-to-tabs { + display: block !important; + border-bottom: 1px solid #ccc !important; } + .tiny-accordion-to-tabs > div > div.toggle-header { + display: block !important; + float: none; + text-align: left; + min-height: 41px !important; + padding: 15px 50px 15px 15px !important; + border-top: 1px solid #ccc; } + .tiny-accordion-to-tabs > div > div.toggle-header:first-child { + margin-left: 0 !important; } + .tiny-accordion-to-tabs > div > div.toggle-header + .accordion-content { + padding: 0 50px 15px 15px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus { + background-position: 0 0; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { + background-position: 0 -20px; + background-size: 20px 40px; } + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-plus, + .tiny-accordion-to-tabs > div > div.toggle-header .icon-primary-accordion-minus { + display: inline-block; + height: 20px; + margin: 0; + padding: 0; + position: absolute; + right: 15px; + vertical-align: middle; + width: 20px; } } + +.alert { + background-color: #5a5a5a; + border-radius: 8px; + color: #fff; + margin-top: 15px; + padding: 0; + position: relative; + border: 0; } + +.alert h3, +.alert h4 { + color: #fff; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.6rem; + margin: 0 20px 5px 0; } + +.alert div { + padding: 15px 20px; } + +.alert div:first-child { + border-radius: 8px 0 0 8px; + width: 1%; } + +.alert div:first-child + div { + border: 1px solid transparent; + border-left: none; + border-radius: 0 8px 8px 0; } + +.alert-error { + background-color: #cf2a2a; + border: 1px solid #cf2a2a; } + +.alert-info { + background-color: #44c8f5; + border: 1px solid #44c8f5; } + +.alert-success { + background-color: #c5d63d; + border: 1px solid #c5d63d; } + +.alert [class*="icon-primary-"] { + color: #fff; + font-size: 30px; + margin-right: 0; } + +.alert .close { + height: 30px; + position: absolute; + right: 1px; + top: 1px; + width: 30px; } + +.alert .close:before { + color: #fff; + margin-right: 0; + position: absolute; + right: 9px; + top: 9px; } + +.alert a { + color: #fff; + text-decoration: underline; } + +.alert .close:focus { + outline: 1px dotted #666; } + +.alert p { + font-size: 1.4rem; } + +.alert p:last-child { + margin-bottom: 0; } + +.alert .standalone-link i[class*="icon-primary-"] { + font-size: 20px; + margin-right: 5px; } + +@media (max-width: 767px) { + .alert { + border-radius: 0; + margin: 0 -15px; } + .alert + .alert { + margin-top: 4px; } + .alert div { + padding: 15px 10px; } + .alert div:first-child { + border-radius: 0; + padding: 15px; } + .alert h3, + .alert h4 { + font-size: 1.4rem; } + .alert p { + font-size: 1.2rem; } + .alert .close { + right: 5px; + top: 5px; } + .alert .standalone-link i[class*="icon-primary-"] { + font-size: 16px; } } + +.alert h3 { + margin: 0; + font-size: 16px; } + +.alert p { + font-size: 14px; } + +.alert p a { + color: #FFFFFF; + text-decoration: underline; } + +.alert div:first-child + div { + padding-right: 25px; } + +.alert div:last-child { + padding-right: 20px !important; } + +.alert p [class*="icon-primary-"] { + color: #fff; + font-size: 20px; + margin-right: 0; } + +@media (max-width: 767px) { + .alert h3 { + font-size: 14px; } + .alert div:first-child + div { + padding-right: 20px; } + .alert div:last-child { + padding-right: 15px !important; } + .alert div:first-child { + padding: 15px; } + .alert p { + font-size: 12px; } + .alert p [class*="icon-primary-"] { + font-size: 16px; } } + +.b2b-audio { + width: auto; + margin: 10px auto; + height: 35px; } + .b2b-audio .controls-wrapper { + display: inline-block; + font-size: 25px; + cursor: pointer; } + .b2b-audio .controls-wrapper i { + font-size: 25px; + margin-right: 0px; + color: #444; } + .b2b-audio .controls-wrapper i:hover { + color: #0574AC; } + .b2b-audio .seek-bar-container-wrapper { + display: inline-block; + outline: 0; + min-width: 180px; + margin-right: 10px; + margin-left: 10px; + height: 14px; + padding-top: 5px; } + .b2b-audio .seek-bar-container-wrapper .timing-container { + padding-top: 13px; + color: #333; + font-size: 12px; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-left { + float: left; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-right { + float: right; + line-height: 100%; } + .b2b-audio .seek-bar-container-wrapper .timing-container .timing-container-spacer { + clear: both; } + .b2b-audio .seek-bar-tooltip { + text-align: center; + min-width: 76px; } + +.b2b-audio-popover { + width: 22px; } + .b2b-audio-popover .volume-popover { + height: 100px !important; + width: 6px !important; + margin: 7px auto; } + .b2b-audio-popover .min-label { + margin-top: 5px; } + +.b2b-audio-native { + width: auto; + height: auto; } + +.b2b-audio-recorder { + border: 1px solid #ccc; + box-shadow: 0px 1px 2px 0 rgba(0, 0, 0, 0.15); + height: 63px; + min-height: 63px; + min-width: 347px; } + .b2b-audio-recorder .b2b-elapsed-time { + margin: 23px 0 24px 15px; + font-size: 16px; + font-style: italic; + color: #767676; } + .b2b-audio-recorder .b2b-controls { + width: 68px; + cursor: pointer; } + .b2b-audio-recorder .b2b-controls i.icoControls-record { + font-size: 64px; + color: black; + float: right; + margin-right: 10px; } + .b2b-audio-recorder .b2b-controls i.icoControls-record:focus, .b2b-audio-recorder .b2b-controls i.icoControls-record:hover { + color: #0568ae; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop { + font-size: 36px; + color: black; + float: right; + margin-right: 20px; + margin-top: 12px; } + .b2b-audio-recorder .b2b-controls i.icoControls-stop:focus, .b2b-audio-recorder .b2b-controls i.icoControls-stop:hover { + color: #0568ae; } + +.b2b-top-btn { + height: 36px; + width: 36px; + border-radius: 7px; } + +.b2b-top-btn > i { + position: absolute; + top: 13px; + left: 9px; + width: 11px; + height: 18px; } + +.b2b-badge { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #5A5A5A; + border-radius: 12px; + color: #FFFFFF; + display: inline-block; + font-size: 1.5rem; + font-weight: normal; + height: 20px; + line-height: 0; + margin-top: 0; + min-width: 20px; + padding: 0 5px; + text-align: center; + vertical-align: baseline; } + .b2b-badge:empty { + display: none; } + +* + .b2b-heading-micro { + margin-top: 20px !important; } + +.b2b-heading-micro { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: normal; + text-rendering: optimizeLegibility; + font-size: 1.2rem !important; + text-transform: uppercase !important; + margin-bottom: 20px !important; + line-height: 1.2 !important; } + +.b2b-no-colors .b2b-badge { + border: 1px solid transparent; } + +.btn > .b2b-badge { + margin-right: 5px; } + +a > .b2b-badge { + margin-right: 6px; + padding-top: 10px; } + +.b2b-badge-urgent { + background-color: #cf2a2a; } + +.bellyband-container { + margin: 0 -15px; } + +.bellyband-group { + width: auto; } + +.bellyband-link { + border-top: 1px solid #d2d2d2; } + +.bellyband-link a { + display: block; + height: 40px; + line-height: 40px; + padding: 0 15px; + position: relative; + text-decoration: none; } + +.bellyband-link a:hover > div span, +.bellyband-link a:focus > div span { + text-decoration: underline; } + +.bellyband-link a:after { + color: #666; + font-size: 2.3rem; + height: 20px; + position: absolute; + right: 5px; + top: 12px; + width: 18px; } + +.dark-bg .bellyband-link a:after { + color: white; } + +.bellyband-link img[src$="svg"].hidden-desktop, +.bellyband-link [class*="icon-primary-"].hidden-desktop { + display: inline-block !important; + float: left; + font-size: 24px; + height: 24px; + margin-right: 5px; + margin-top: 8px; + width: 24px; } + +.dark-bg .bellyband-link [class*="icon-primary-"].hidden-desktop, +.dark-bg .bellyband-link [class*="icon-primary-"].visible-desktop { + color: #fff; } + +.bellyband-link img[src$="svg"].visible-desktop { + display: none !important; } + +.bellyband-link p { + margin-top: -10px; + margin-left: 29px; + font-size: 1.4rem; + color: #666; } + +@media (min-width: 481px) and (max-width: 767px) { + .bellyband-container { + display: flex; + margin: 0; } + .bellyband-group { + align-content: flex-start; + align-items: stretch; + display: inline-flex; + flex-direction: column; + flex-wrap: wrap; + margin-top: 1px; + width: 100%; } + .bellyband-group .row { + display: flex !important; } + .bellyband-link { + padding-top: 0; + position: relative; + border-top: none; + margin-bottom: 20px; + width: 50%; } + .bellyband-link a { + height: inherit; + line-height: inherit; + display: flex; + padding: 0; } + .bellyband-link a:after { + display: none; } + .bellyband-link a span { + display: block; + padding-top: 10px; } + .bellyband-link p { + display: block; + padding: 0 15px 0 0; + margin-bottom: 0; + margin-left: 0; + margin-top: 0; } + .bellyband-link a:focus p { + text-decoration: none; } } + +@media (min-width: 768px) { + .bellyband-group { + margin: 0; + max-width: 100%; + display: flex; + flex-wrap: wrap; + justify-content: center; } + .bellyband-group .row { + display: block; } + .bellyband-group .row .span { + float: none; + margin-right: 0; + margin-bottom: 30px; + display: flex; + justify-content: space-between; } + .bellyband-link { + border-top: none; + flex: 0 0 auto; + margin-right: 0; + margin-bottom: 30px; } + .bellyband-link:last-child { + margin-right: 0; } + .bellyband-link a { + height: auto; + line-height: 1; + text-align: center; } + .bellyband-link a:after { + display: none; } + .bellyband-link img[src$="svg"].hidden-desktop, + .bellyband-link [class*="icon-primary-"].hidden-desktop { + display: none !important; } + .bellyband-link img[src$="svg"].visible-desktop, + .bellyband-link [class*="icon-primary-"].visible-desktop { + display: block !important; + font-size: 50px; + height: 50px; + margin-right: 0; + margin-top: 0; + margin-left: auto; + margin-right: auto; + width: auto; } + .bellyband-link a span { + display: block; + margin-top: 12px; + line-height: 2rem; } + .bellyband-link p { + display: block; + text-align: center; + margin-top: 6px; + margin-left: 0; + padding-left: 0 !important; + color: #666; + line-height: 1.8rem; } } + +@media (max-width: 480px) { + .bellyband-link-tall a { + height: auto; + padding: 0 40px 10px 15px; } + .bellyband-link-tall p { + line-height: 1.8rem; + margin-bottom: 0; } + .bellyband-link-tall > a:after { + margin-top: -8px; + top: 50%; } } + +.b2b-boardstrip { + display: inline-block; + width: 100%; + border-bottom: 1px solid #9d9d9d; + position: relative; + padding-top: 15px; } + .b2b-boardstrip .boardstrip-reel { + margin-bottom: 15px; } + .b2b-boardstrip .boardstrip-item--add { + border: 1px dashed #ccc; + background: #FFFFFF; + color: #0574ac; + width: 140px; + height: 80px; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + -webkit-border-radius: 3px; + -moz-border-radius: 3px; + border-radius: 3px; + position: absolute; + left: 29px; + top: 15px; } + .b2b-boardstrip .boardstrip-item--add:hover, .b2b-boardstrip .boardstrip-item--add:focus { + border: 2px solid #007A3E; + cursor: pointer; } + .b2b-boardstrip .boardstrip-item--add i { + font-size: 14px; + margin-left: auto; + margin-right: auto; + text-align: initial; } + .b2b-boardstrip .boardstrip-item--add .centered { + margin-left: auto; + margin-right: auto; + margin-top: 27px; + margin-bottom: 35px; + display: block; } + .b2b-boardstrip .board-viewport { + float: left; + margin-left: 210px; + max-height: 95px; + position: relative; + height: 95px; + overflow: hidden; + width: 0px; } + .b2b-boardstrip .board-viewport .boardstrip-container { + width: 0px; + margin-left: 0; + left: 0px; + position: absolute; + list-style: none; + -webkit-transition: left 1000ms; + transition: left 1000ms; } + .b2b-boardstrip .board-viewport .board-item { + width: 140px; + height: 80px; + border: 1px solid #ccc; + margin: 0 15px 15px 0; + background-color: #FFFFFF; + border-radius: 3px; + float: left; + overflow: hidden; } + .b2b-boardstrip .board-viewport .board-item:hover, .b2b-boardstrip .board-viewport .board-item:focus { + border: 2px solid #007A3E; + background-color: white; + cursor: pointer; } + .b2b-boardstrip .board-viewport .board-item .board-img { + width: 61px; + height: 40px; + margin: 0 auto; } + .b2b-boardstrip .board-viewport .board-item .board-img img { + max-width: 100%; } + .b2b-boardstrip .board-viewport .board-item .title { + text-align: center; + line-height: 16px; + color: #666; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + padding: 10px 0; } + .b2b-boardstrip .board-viewport .board-item.selected { + background-color: #FFFFFF; + border: 2px solid #0574ac; } + .b2b-boardstrip .board-viewport .board-item .board-caret { + cursor: default; + outline: 0; + position: absolute; + bottom: 7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-indicator { + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #999; + width: 0px; + height: 0px; + position: absolute; + left: 61px; + bottom: -7px; } + .b2b-boardstrip .board-viewport .board-item .board-caret .board-caret-arrow-up { + width: 0px; + height: 0px; + border-style: solid; + border-width: 0 8px 8px 8px; + border-color: transparent transparent #FFFFFF transparent; + left: 61px; + position: absolute; } + .b2b-boardstrip .arrow { + font-size: 14px; + cursor: pointer; + color: #0574ac; } + .b2b-boardstrip .arrow:hover { + color: #0574ac; } + .b2b-boardstrip .arrow.disabled { + color: #767676 !important; + cursor: not-allowed; } + .b2b-boardstrip .prev-items { + display: inline-block; + margin-top: auto; + margin-bottom: auto; + margin-right: 15px; + position: absolute; + left: 0; + top: 45px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .next-items { + display: inline-block; + margin-top: 30px; + margin-bottom: auto; + margin-left: 10px; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -o-user-select: none; + user-select: none; } + .b2b-boardstrip .centered { + display: table-cell; + text-align: center; + vertical-align: middle; } + +.breadcrumb { + padding: 10px 15px; + height: 40px; + list-style: none; + border-bottom: 1px solid #d2d2d2; + font-size: 1.2rem; + width: 100%; + z-index: 1000; } + +.breadcrumb > li { + position: relative; + display: inline-block; + margin-right: 15px; } + +.breadcrumb > li:after { + font-size: 8px; + margin-right: 0; + right: -8px; + color: #333333; } + +.breadcrumb > li:last-child { + color: #333333; } + +.breadcrumb > li:last-child:after { + content: ""; } + +.breadcrumb li > * { + float: none !important; + margin: 0; } + +.breadcrumb { + padding: 10px 15px !important; } + +/* ARROW */ +/* spanish */ +.datepicker { + background-color: #FFFFFF; + padding: 0; + border-radius: 5px; + direction: ltr; } + .datepicker > div { + display: none; } + .datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + .datepicker td { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + .datepicker td span:hover { + background: #eeeeee; } + .datepicker td span.disabled { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.disabled:hover { + background: none; + color: #5A5A5A; + cursor: default; } + .datepicker td span.active { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active:hover { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker td span.active.disabled { + color: #FFFFFF; + background-color: #0568ae; + border-color: #357ebd; } + .datepicker th { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + .datepicker tbody:focus { + outline: none; } + .datepicker td.day { + background-color: transparent; + color: #0568ae; + cursor: pointer; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; + overflow: hidden; + text-align: center; + width: 42px; } + .datepicker:focus { + outline: 1px dotted #191919; + outline-offset: -2px; } + .datepicker th[tabindex]:focus { + outline-offset: -15px; } + .datepicker td.day.focused { + background: #ededed; + cursor: pointer; } + .datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + .datepicker td.disabled { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; + cursor: default; } + .datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.disabled .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5A5A5A; } + .datepicker td.today { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:hover { + color: #FFFFFF; + background-color: #0568ae; + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today:focus { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.disabled { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active { + color: #FFFFFF; + background-color: #0568ae; } + .datepicker td.today.active:hover { + color: #FFFFFF; } + .datepicker td.selected { + color: #FFFFFF; + background-color: #959595; } + .datepicker td.selected:hover { + color: #FFFFFF; + background-color: #959595; } + .datepicker td.selected.disabled { + color: #FFFFFF; + background-color: #959595; } + .datepicker td.active:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker td.active:hover:not(.new) { + color: #FFFFFF; + border-color: #357ebd; } + .datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .datepicker .start-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 5px 0 0 5px; + z-index: 1; } + .datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .between-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; } + .datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .between-date:first-child .show-date:before { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + .datepicker .end-date .show-date { + background-color: #0568ae; + color: #FFFFFF !important; + border-radius: 0 5px 5px 0; } + .datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; + position: absolute; + width: 100%; + z-index: -1; } + .datepicker .end-date:first-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + .datepicker .end-date:first-child .show-date::before { + background-color: #FFFFFF; } + .datepicker tr td.start-date:last-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.start-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.start-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:last-child .show-date:after { + background-color: #FFFFFF; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + .datepicker tr td.between-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:last-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker tr td.end-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + .datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + .datepicker thead tr:first-child th { + cursor: pointer; + height: 60px; + line-height: 60px; } + .datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + .datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; + height: auto; + line-height: normal; } + .datepicker tfoot tr th li { + margin-bottom: 5px; } + .datepicker .prev { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .prev i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + left: 8px; } + .datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + .datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; + right: 8px; } + .datepicker .cw { + font-size: 10px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + .datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #FFFFFF !important; } + .datepicker .day.active .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day:focus .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + .datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + .datepicker .due-date.old:after { + visibility: hidden; } + .datepicker .due-date.new:after { + visibility: hidden; } + .datepicker .due-date.active:after { + border-color: #FFFFFF; } + .datepicker .due-date.active.focused { + color: #0568ae !important; } + .datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + .datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; + position: relative; + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + .datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5A5A5A; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + .datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + .datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + .datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selected-date { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + .datepicker i.legend-selectedisdue { + background-color: #FFFFFF; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; + position: relative; + vertical-align: middle; + width: 18px; } + .datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; + content: ""; + display: block; + height: 10px; + left: 2px; + position: absolute; + top: 2px; + width: 10px; } + .datepicker .text-left { + width: 100%; } + .datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + +.datepicker-inline { + width: 220px; } + +.datepicker.datepicker-rtl { + direction: rtl; } + .datepicker.datepicker-rtl td span { + float: right; } + +.datepicker-dropdown { + top: 0; + left: 0; } + .datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + .datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + +.datepicker-dropdown.datepicker-orient-left:before { + left: 16px; } + +.datepicker-dropdown.datepicker-orient-left:after { + left: 16px; } + +.datepicker-dropdown.datepicker-orient-right:before { + right: 16px; } + +.datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + +.datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + +.datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + +.datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + +.datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + +.datepicker.days div.datepicker-days { + display: block; } + +.datepicker.months div.datepicker-months { + display: block; } + +.datepicker.years div.datepicker-years { + display: block; } + +.show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + +.input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + +.datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #FFFFFF; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + .datepicker.dropdown-menu th { + display: block; + float: left; + padding: 0; + position: relative; } + .datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + +.s { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -62px 0; } + +.m { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -5px 0; } + +.t { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -19px 0; } + +.w { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -34px 0; } + +.f { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: -49px 0; } + +.d { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + +.l { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + +.v { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + +.j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: #FFFFFF; + background-repeat: no-repeat; + background-position: 0 0; } + +.b2b-coachmark-label { + z-index: 1060; + opacity: 1; + cursor: not-allowed; + position: relative; } + +.b2b-coachmark-highlight { + border: 1px solid #d3d3d3; + cursor: default; + z-index: 1045; + opacity: 1; + background-color: #ffffff; + border-radius: 10px; + position: relative; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + padding: 10px; + position: absolute; } + +.b2b-coachmark-highlight-mask { + z-index: 1100; + opacity: .1; } + +.b2b-coachmark-container { + border: 1px solid #cccccc; + width: 316px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 20px; + box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.15); + color: #333; + line-height: 20px; + position: absolute; + top: 50px; + left: -97px; + display: block; + background-color: #ffffff; + z-index: 1050; + opacity: 1; } + .b2b-coachmark-container i.b2b-coachmark-caret { + position: absolute; + top: -12px; + left: 47%; + opacity: 1; + z-index: 1050; } + .b2b-coachmark-container i.b2b-coachmark-caret:before { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #d3d3d3; + position: absolute; + top: -1px; } + .b2b-coachmark-container i.b2b-coachmark-caret:after { + content: ""; + border-left: 12px solid transparent; + border-right: 12px solid transparent; + border-bottom: 12px solid #fff; + position: absolute; } + .b2b-coachmark-container .b2b-coachmark-header { + position: relative; + height: 47px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-header .corner-button { + box-shadow: 0 -24px 0 0 #f2f2f2 inset; + height: 69px; + position: absolute; + right: -33px; + top: -38px; + transform: rotate(45deg); + width: 69px; } + .b2b-coachmark-container .b2b-coachmark-countlabel { + font-size: 12px; + font-family: "Omnes-ECOMP-W02, Arial"; + color: #333333; + margin-left: 20px; + margin-top: 20px; } + .b2b-coachmark-container .b2b-coachmark-content { + padding: 0px 20px 20px 20px; + float: left; } + .b2b-coachmark-container .b2b-coachmark-content .icon-misc-dimmer { + font-size: 32px; + float: left; + margin-right: 10px; + width: 32px; } + .b2b-coachmark-container .b2b-coachmark-content .offscreen-text { + position: absolute; + left: -10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-content-header { + font-size: 16px; + color: #333333; + line-height: 18px; + float: left; + width: 220px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-description { + font-size: 14px; + line-height: 18px; + color: #333333; + width: 100%; + float: left; + margin-top: 15px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group { + margin-top: 20px; + float: left; + text-align: right; + width: 100%; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group .b2b-coachmark-link { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 15px; + color: #0574ac; + line-height: 18px; + margin-right: 20px; } + .b2b-coachmark-container .b2b-coachmark-content .b2b-coachmark-btn-group button { + font-size: 15px; + margin: 0px; } + +.datepicker { + background-color: #fff; + padding: 0; + border-radius: 5px; + direction: ltr; } + +.datepicker-inline { + width: 220px; } + +.datepicker.datepicker-rtl { + direction: rtl; } + +.datepicker.datepicker-rtl td span { + float: right; } + +.datepicker-dropdown { + top: 0; + left: 0; } + +/* ARROW */ +.datepicker-dropdown:before { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #d2d2d2; + border-top: 0; + border-bottom-color: rgba(0, 0, 0, 0.2); + position: absolute; } + +.datepicker-dropdown:after { + content: " "; + display: inline-block; + border-left: 10px solid transparent; + border-right: 10px solid transparent; + border-bottom: 10px solid #fff; + border-top: 0; + position: absolute; } + +.datepicker-dropdown.datepicker-orient-left:before, +.datepicker-dropdown.datepicker-orient-left:after { + left: 16px; } + +.datepicker-dropdown.datepicker-orient-right:before, +.datepicker-dropdown.datepicker-orient-right:after { + right: 16px; } + +.datepicker-dropdown.datepicker-orient-top:before { + top: -10px; } + +.datepicker-dropdown.datepicker-orient-top:after { + top: -9px; } + +.datepicker-dropdown.datepicker-orient-bottom:before { + bottom: -7px; + border-bottom: 0; + border-top: 7px solid #959595; } + +.datepicker-dropdown.datepicker-orient-bottom:after { + bottom: -6px; + border-bottom: 0; + border-top: 6px solid #fff; } + +.datepicker > div { + display: none; } + +.datepicker.days div.datepicker-days { + display: block; } + +.datepicker.months div.datepicker-months { + display: block; } + +.datepicker.years div.datepicker-years { + display: block; } + +.datepicker table { + -webkit-touch-callout: none; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + margin: 0 0 0 0; } + +.datepicker td, +.datepicker th { + text-align: center; + display: block; + width: 30px; + height: 30px; + border: none; } + +.datepicker tbody :focus { + outline: none; } + +.datepicker td.day { + background-color: transparent; + color: #0568ae; + cursor: pointer; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + height: 34px; + line-height: 30rem; + margin: -2px -1px 0 0; + overflow: hidden; + text-align: center; + width: 42px; } + +.datepicker :focus { + outline: 1px dotted #000; + outline-offset: -2px; } + +.datepicker td.day.focused { + background: #ededed; + cursor: pointer; } + +.datepicker td.day.focused.active { + background-color: #ededed; + color: #0568ae; } + +.datepicker td.disabled, +.datepicker td.disabled:hover { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; + cursor: default; } + +.datepicker td.today, +.datepicker td.today:hover, +.datepicker td.today.disabled { + color: #fff; + background-color: #0568ae; } + +.datepicker td.today.active, +.datepicker td.today:active, +.datepicker td.today:hover, +.datepicker td.today:focus { + color: #fff; + background-color: #0568ae; } + +.datepicker td.today.active:hover { + color: #fff; } + +.datepicker td.selected, +.datepicker td.selected:hover, +.datepicker td.selected.disabled { + color: #ffffff; + background-color: #959595; } + +.datepicker td.active:not(.new), +.datepicker td.active:hover:not(.new) { + color: #ffffff; + border-color: #357ebd; } + +.show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #0568ae; + height: 26px; + line-height: 26px; + margin: 4px auto 0; + width: 26px; } + +.datepicker .start-date .show-date, +.datepicker .between-date .show-date, +.datepicker .end-date .show-date { + background-color: #0568ae; + color: #fff !important; } + +.datepicker .start-date .show-date { + border-radius: 5px 0 0 5px; + z-index: 1; } + +.datepicker .start-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 20px; + position: absolute; + width: 100%; + z-index: -1; } + +.datepicker .between-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: 0; + position: absolute; + width: 100%; + z-index: -1; } + +.datepicker .end-date .show-date { + border-radius: 0 5px 5px 0; } + +.datepicker .end-date .show-date:before { + background-color: #0568ae; + content: ""; + display: block; + height: 26px; + left: -20px; + position: absolute; + width: 100%; + z-index: -1; } + +.datepicker .between-date:first-child .show-date:before { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + +.datepicker .end-date:first-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + left: 0; + width: 8px; } + +.datepicker .end-date:first-child .show-date::before { + background-color: #fff; } + +.datepicker tr td.start-date:last-child .show-date:after, +.datepicker tr td.between-date:last-child .show-date:after { + background-color: #fff; + content: ""; + height: 26px; + position: absolute; + right: 0; + width: 8px; } + +.datepicker tr td.start-date:last-child:focus .show-date:after, +.datepicker tr td.end-date:last-child:focus .show-date:after, +.datepicker tr td.between-date:last-child:focus .show-date:after, +.datepicker tr td.start-date:first-child:focus .show-date:after, +.datepicker tr td.end-date:first-child:focus .show-date:after, +.datepicker tr td.between-date:first-child:focus .show-date:after { + height: 30px; + width: 30px; + background-color: transparent; } + +.datepicker td.active:not(.new) .show-date, +.datepicker td.active:hover:not(.new) .show-date { + color: #0568ae; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.datepicker td.disabled .show-date, +.datepicker td.disabled:hover .show-date { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; } + +.datepicker td span { + display: block; + width: 23%; + height: 54px; + line-height: 54px; + float: left; + margin: 1%; + cursor: pointer; + border-radius: 4px; } + +.datepicker td span:hover { + background: #eeeeee; } + +.datepicker td span.disabled, +.datepicker td span.disabled:hover { + background: none; + color: #5a5a5a; + cursor: default; } + +.datepicker td span.active, +.datepicker td span.active:hover, +.datepicker td span.active.disabled { + color: #ffffff; + background-color: #0568ae; + border-color: #357ebd; } + +.datepicker th.datepicker-switch { + width: 198px; + font-size: 20px; + font-weight: normal; + cursor: default !important; } + +.datepicker thead tr:first-child th, +.datepicker tfoot tr th { + cursor: pointer; + height: 60px; + line-height: 60px; } + +.datepicker tfoot tr th { + height: auto; + line-height: normal; } + +.datepicker tfoot tr th li { + margin-bottom: 5px; } + +.datepicker .prev, +.datepicker .next { + color: transparent; + font-size: 0; + margin: 0 -1px -1px 0; + width: 46px; } + +.datepicker .prev i, +.datepicker .next i { + color: #0568ae; + position: absolute; + font-size: 27px; + margin: 0; + top: 15px; } + +.datepicker .prev i { + left: 8px; } + +.datepicker .next i { + right: 8px; } + +.datepicker .cw { + font-size: 10px; + width: 12px; + padding: 0 2px 0 5px; + vertical-align: middle; } + +.datepicker thead tr:first-child th.cw { + cursor: default; + background-color: transparent; } + +.input-group.date .input-group-addon i { + cursor: pointer; + width: 16px; + height: 16px; } + +.datepicker.dropdown-menu { + box-shadow: 0 10px 15px -10px rgba(0, 0, 0, 0.7); + position: absolute; + top: 100%; + left: 0; + float: left; + display: none; + margin-top: 13px; + width: 290px; + list-style: none; + background-color: #ffffff; + border: 1px solid #d2d2d2; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 5px; + color: #333333; + font-size: 13px; + line-height: 1.428571429; + z-index: 1050; } + +.datepicker.dropdown-menu th, +.datepicker.dropdown-menu td { + display: block; + float: left; + padding: 0; + position: relative; } + +.datepicker .due-date .show-date { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + background-color: #cf2a2a; + border-radius: 5px; + color: #fff !important; } + +.datepicker .day.active .show-date:after, +.datepicker .day:focus .show-date:after, +.datepicker .due-date.disabled .show-date:after { + border: 2px solid #0568ae; + border-radius: 7px; + content: ""; + display: block; + height: 30px; + left: 4px; + position: absolute; + top: 0; + width: 30px; } + +.datepicker .day:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + +.datepicker .day.due-date:focus .show-date:after { + height: 30px; + left: 4px; + top: 0; + width: 30px; } + +.datepicker .due-date.old:after, +.datepicker .due-date.new:after { + visibility: hidden; } + +.datepicker .due-date.active:after { + border-color: #fff; } + +.datepicker .due-date.active.focused { + color: #0568ae !important; } + +.datepicker .due-date.active.focused:after { + border-color: #cf2a2a !important; } + +.datepicker .dow { + height: 24px; + width: 42px; + font-weight: normal; + position: relative; + overflow: hidden; + color: transparent; + letter-spacing: -6px; + margin: 0 -1px -1px 0; } + +.datepicker .dow span[aria-hidden="true"] { + bottom: 0; + color: #5a5a5a; + display: block; + left: 1px; + letter-spacing: 0; + line-height: .9; + margin: 0 auto; + padding: 0; + position: relative; + width: 22px; } + +.datepicker .calendar-legend { + margin-top: 3px; + margin-bottom: 20px; } + +.datepicker .calendar-legend li { + font-size: 1.4rem; + font-weight: normal; + margin-bottom: 5px; + padding-left: 10px; + padding-top: 5px; + position: relative; } + +.datepicker i.legend-due-date { + background-color: #cf2a2a; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + +.datepicker i.legend-selected-date { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + height: 18px; + width: 18px; + margin-right: 8px; + vertical-align: middle; + display: inline-block; } + +.datepicker i.legend-selectedisdue { + background-color: #fff; + border: 2px solid #0568ae; + border-radius: 5px; + display: inline-block; + height: 18px; + margin-right: 8px; + position: relative; + vertical-align: middle; + width: 18px; } + +.datepicker i.legend-selectedisdue:after { + background-color: #cf2a2a; + border-radius: 3px; + content: ""; + display: block; + height: 10px; + left: 2px; + position: absolute; + top: 2px; + width: 10px; } + +.datepicker .text-left { + width: 100%; } + +.datepicker .active.old { + background-color: #ededed !important; + color: #ededed !important; } + +.s, +.m, +.t, +.w, +.f, +.d, +.l, +.v, +.j { + display: block; + height: 20px; + width: 12px; + margin: 0 auto; + background-color: white; + background-repeat: no-repeat; } + +.s { + background-position: -62px 0; } + +.m { + background-position: -5px 0; } + +.t { + background-position: -19px 0; } + +.w { + background-position: -34px 0; } + +.f { + background-position: -49px 0; } + +/* spanish */ +.d { + background-position: 0 0; } + +.l { + background-position: 0 0; } + +.v { + background-position: 0 0; } + +.j { + background-position: 0 0; } + +/* remove focus outline when dropdown is opened */ +/*resolve blue focus outline over dropdown with error*/ +select { + margin-right: -1; + max-width: 100%; + height: 36px; + line-height: 25px; + width: auto; + background-color: #FFFFFF; } + +.selectWrap.disabled .icon-primary-down { + color: #767676; } + +.selectWrap.disabled input.awd-select { + z-index: 0; + padding: 10px 45px 10px 15px; + text-indent: 0; } + +.selectWrap.disabled button.awd-select { + z-index: 0; + text-indent: 15; } + +.selectWrap.disabled:after { + color: #5A5A5A; + cursor: not-allowed; } + +input.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 0; + margin-bottom: 0; + padding: 12px 45px 8px 0; + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; + padding: 12px 45px 8px 15px; + user-select: none; } + input.awd-select:focus { + border-color: #0568ae !important; } + +button.awd-select { + background-color: transparent; + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + color: #333333; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + /*font-size: 1.6rem;*/ + height: 36px; + line-height: 36px; + margin-bottom: 0; + /*padding-right: 41px;*/ + position: relative; + text-align: left; + top: 0; + width: 100%; + z-index: 10; } + button.awd-select:not(.large) { + text-indent: 15px; + white-space: nowrap; + overflow: hidden; + text-overflow: clip; + text-overflow: ellipsis; } + button.awd-select img { + height: 26px; + margin-right: 7px; + margin-top: -10px; + position: relative; + top: 2px; + vertical-align: text-bottom; } + button.awd-select:focus { + border-color: #0568ae !important; } + button.awd-select i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + +button.awd-select.large { + align-items: center; + display: flex; + height: 60px; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + button.awd-select.large img { + height: 40px; + left: 20px; + position: absolute; + top: 20px; + width: 40px; } + +.selectWrap.large { + height: 60px; } + .selectWrap.large .awd-select-list-item { + align-items: center; + display: flex; + height: 60px; + line-height: 20px; + overflow: hidden; + padding-left: 70px; + vertical-align: middle; } + .selectWrap.large .awd-select-list-item img { + height: 40px; + left: 20px; + position: absolute; + top: 20px; + width: 40px; + top: 10px; } + +button.awd-select.active { + border-radius: 6px 6px 0 0; } + button.awd-select.active:focus { + border-color: #d2d2d2 !important; } + +input.awd-select.active { + border-radius: 6px 6px 0 0; } + input.awd-select.active:focus { + border-color: #d2d2d2 !important; } + +.selectWrapper { + position: relative; } + +span.selectWrap input[readonly]:focus { + color: transparent; + text-shadow: 0 0 0 #000; } + +.isIE.ds2-no-colors .awd-select:focus { + outline: 1px dashed transparent; } + +.awd-select-list { + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + border-radius: 0 0 6px 6px; + position: absolute; + border: 1px solid #d2d2d2; + border-top: 0; + padding: 0; + background-color: #f2f2f2; + z-index: 1000; + width: 100%; + max-height: 320px; + overflow-y: auto; } + +.awd-select-list-item { + cursor: pointer; + height: 100%; + min-height: 36px; + line-height: 38px; + overflow: hidden; + padding: 0 15px; + position: relative; + text-overflow: ellipsis; + white-space: nowrap; + z-index: 1000; } + .awd-select-list-item:hover { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item:focus { + cursor: pointer; + background-color: #d2d2d2; + outline: 1px dashed transparent; } + .awd-select-list-item img { + margin-top: 0; + margin-right: 7px; + height: 26px; + width: 26px; } + +.selectWrap { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + .selectWrap:not(.large) .awd-select-list-item:first-child { + margin-top: 15px; } + .selectWrap:not(.large) .awd-select-list-item:last-child { + margin-bottom: 15px; } + .selectWrap .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + .selectWrap + [aria-expanded="true"] { + padding-bottom: 9px; + padding-top: 20px; } + +.awd-select-list-item[aria-selected="true"] { + background-color: #d2d2d2; } + +span input.awd-select { + width: 100%; + cursor: pointer; + text-overflow: ellipsis; + padding-right: 45px; } + +li.optgroup-wrapper { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + cursor: default !important; + padding: 0px 15px; } + li.optgroup-wrapper:first-child { + padding-top: 10px; } + li.optgroup-wrapper:hover { + background-color: #f2f2f2; } + +ul.optgroup { + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer !important; + margin: 0 -15px; } + ul.optgroup li { + padding: 0 0 0 33px; } + +label + .selectWrap { + margin-top: 4px; } + +.selectorModule { + border-radius: 6px; + position: relative; + height: 36px; + line-height: 28px; + display: block; + margin: 0; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); } + +.group .selectWrap { + margin: 0 0 10px 0; } + +select.awd-select { + position: relative; + top: 0; + left: 0; + font-size: 16px; + z-index: 1010; + height: 33px; + min-width: 100%; + opacity: 0.01; } + select.awd-select > optgroup { + padding-left: 8px; + font-style: normal; + margin-top: 10px; } + select.awd-select > optgroup:first-child { + margin-top: 0; } + select.awd-select > optgroup > option { + padding-left: 8px; } + select.awd-select > option { + padding-left: 8px; } + select.awd-select + span { + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + background: -webkit-linear-gradient(top, #fcfcfc 0%, #f2f2f2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="@att-gray-highlight", endColorstr="@att-functional-bg-gray", GradientType=0); + position: absolute; + top: 0; + left: 0; + z-index: 0; + display: block; + border: 1px solid #d2d2d2; + border-radius: 6px; + height: 35px; + line-height: 0; + padding: 18px 45px 15px 15px; + width: 100%; + font-size: 1.6rem; + padding-right: 45px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } + select.awd-select + span > i { + font-size: 23px; + position: absolute; + right: 33px; + top: 5px; + z-index: 1000; } + select.awd-select + span > i:before { + left: 1px; + position: absolute; + top: -1px; } + select.awd-select:focus + span { + border-color: #0568ae; } + +.isIE select.awd-select + span { + line-height: 1; } + +[data-default-option="true"] { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + +.placeholdercolor { + color: #767676 !important; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + +.filterTank button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .filterTank button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + +.utility-bg button.awd-select { + border-color: #d2d2d2; + background-color: #333333; + color: #FFFFFF; + color: #333333; } + .utility-bg button.awd-select:after { + background-color: #FFFFFF !important; + border-color: #d2d2d2; } + +.utility-bg select.awd-select + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + +.utility-bg select.awd-select:focus + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:focus + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + +.utility-bg select.awd-select:hover + span { + border-color: #d2d2d2; + border-color: #d2d2d2; + background-color: #333333; + background-color: #333333; + color: #FFFFFF; + color: #FFFFFF; } + .utility-bg select.awd-select:hover + span:after { + background-color: #FFFFFF !important; + background-color: #FFFFFF !important; + border-color: #d2d2d2; + border-color: #d2d2d2; } + +input.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + +button.awd-select[disabled] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + button.awd-select[disabled]:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +select.awd-select[disabled] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +select.awd-select[disabled]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + +select.awd-select[disabled]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + +input.awd-select[disabled="disabled"] { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + input.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + +select.awd-select[disabled="disabled"] + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"] + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +select.awd-select[disabled="disabled"]:focus + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:focus + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +select.awd-select[disabled="disabled"]:hover + span { + cursor: not-allowed; + border-color: #d2d2d2; + background-color: #d2d2d2; + background-image: none; + color: #5A5A5A; } + select.awd-select[disabled="disabled"]:hover + span:after { + background-color: #d2d2d2 !important; + border-color: #d2d2d2; } + +.ddexpand-wrapper > h2 { + margin-bottom: 11px; } + .ddexpand-wrapper > h2 + p { + margin-bottom: 4px; } + +.ddexpand-wrapper .selectWrap + [aria-expanded="true"] .form-row { + margin-top: 11px; } + +.ddexpand-wrapper .selectWrap + [aria-expanded="true"] .row + .row .form-row { + margin-top: 14px; } + +.modal .awd-select-list { + z-index: 1060 !important; } + +.form-row.error button.awd-select.active:focus { + border-color: #cf2a2a !important; } + +.form-row.error input.awd-select.active:focus { + border-color: #cf2a2a !important; } + +.awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + +li.module-list-item[aria-selected="true"]:before { + color: #0568ae; + display: inline-block; + font-family: "icoControls" !important; + font-style: normal; + font-size: 20px; + font-weight: normal; + font-variant: normal; + height: 1em; + margin-right: 7px; + text-transform: none; + line-height: 1; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + position: relative; + speak: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + vertical-align: middle; + width: 1em; + content: "\e907"; + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + +@media (min-width: 768px) { + span[class*="large"] { + max-width: 370px; } + .large { + max-width: 370px; } } + +@media (max-width: 767px) { + .selectWrap.large:after { + right: 5px; } + .selectWrap.large .awd-select-list-item { + padding-right: 41px; } + .selectWrap + div > h4 { + margin-bottom: 0; + font-size: 16px; } } + +/**********************Dropdown Chrome scrolling fix start ********************/ +input.awd-select { + -webkit-user-select: text; + -moz-user-select: text; + -ms-user-select: text; + user-select: text; } + +input.awd-select.focused { + -webkit-user-select: none !important; + -moz-user-select: none !important; + -ms-user-select: none !important; + user-select: none !important; } + +/**********************Dropdown Chrome scrolling fix end ********************/ +.mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 1px solid #e4e4e4; } + +.mpc-expanders + .mpc-expanders { + border-top: 0px; } + +.mpc-expanders .heading-medium { + margin-bottom: 10px; } + +.mpc-expanders .p-small { + margin-top: 5px; } + +.mpc-expander-body { + border-top: 1px solid #e4e4e4; } + +.mpc-expander-body .mpc-expanders { + border-bottom: 1px solid #e4e4e4; + border-top: 0; } + +.mpc-expander-body .mpc-expanders:last-child { + border-bottom: 0px; } + +.ddh-blue { + color: #0574ac; } + +.b2b-dragdrop { + border: 1px dashed #bbb; + border-radius: 5px; + padding: 0; + text-align: center; + color: #bbb; + position: relative; } + +.b2b-dragdrop-over { + background: #0091d9; + color: #006496; } + .b2b-dragdrop-over:after { + content: "Drop the file"; + color: #fff; + width: 80px; + height: 20px; + overflow: hidden; + margin: auto; + position: absolute; + top: 0; + left: 0; + bottom: 0; + right: 0; } + +.b2b-file-container { + position: relative; + overflow: hidden; + display: inline-table; + font-weight: 400; } + .b2b-file-container [type=file] { + position: absolute; + cursor: inherit; + display: block; + font-size: 0; + opacity: 0; + height: 0; + width: 0; + left: 0; + top: 0; + -ms-filter: "alpha(Opacity=0)"; } + +.b2b-upload-link { + color: #0568ae; } + +.b2b-flyout { + position: relative; + display: inline-block; + cursor: default; } + +.b2b-flyout-icon { + cursor: pointer; } + .b2b-flyout-icon:focus { + outline: thin dotted #666; + outline-offset: -1px; } + +.b2b-flyout .b2b-flyout-container { + border: 1px solid #d3d3d3; + width: 300px; + padding: 20px; + pointer-events: auto; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + font-size: 16px; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + background: #fff; + border-radius: 6px; + box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.25); + color: #333; + line-height: 20px; + position: absolute; + top: 35px; + opacity: 0; + z-index: 1010; + display: none; } + .b2b-flyout .b2b-flyout-container.open-flyout { + opacity: 1; + display: block; } + +.b2b-flyout i.b2b-flyout-caret { + position: absolute; + top: -8px; + left: 50%; + opacity: 0; + z-index: 1011; + display: none; } + .b2b-flyout i.b2b-flyout-caret.open-flyout { + opacity: 1; + display: block; } + .b2b-flyout i.b2b-flyout-caret:before { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #d3d3d3; + position: absolute; + top: -1px; } + .b2b-flyout i.b2b-flyout-caret:after { + content: ""; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + border-bottom: 8px solid #fff; + position: absolute; } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-left i.b2b-flyout-caret { + left: 16px !important; } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-right i.b2b-flyout-caret { + left: inherit !important; + right: 30px !important; } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-above { + box-shadow: 0 -5px 6px 0 rgba(0, 0, 0, 0.25); } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret { + top: auto; + bottom: 0px; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:before { + top: auto; + bottom: -9px; + border-top: 8px solid #d3d3d3; + border-bottom: none; } + .b2b-flyout .b2b-flyout-container.b2b-flyout-above i.b2b-flyout-caret:after { + border-top: 8px solid #fff; + border-bottom: none; } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-centerLeft i.b2b-flyout-caret { + left: inherit !important; + right: -7px !important; + top: 8px; + transform: rotate(90deg); } + +.b2b-flyout .b2b-flyout-container.b2b-flyout-centerRight i.b2b-flyout-caret { + left: -8px !important; + top: 296px; + transform: rotate(-90deg); } + +.b2b-flyout .buttons-group { + margin-top: 20px; } + .b2b-flyout .buttons-group .cta-button-group { + width: 100%; + border-top: 1px solid #ccc; + padding: 20px 0 0; } + .b2b-flyout .buttons-group .cta-button-group button { + margin-bottom: 0; } + +.b2b-flyout .heading { + font-size: 20px; + margin-bottom: 10px; } + +.b2b-flyout .body-text { + font-size: 14px; + margin-bottom: 30px; } + +.b2b-footer-wrapper { + width: 100%; + background-color: #222; } + +.b2b-footer-container { + width: 980px; + margin: 0 auto; + padding-top: 15px; } + .b2b-footer-container .footer-columns { + display: inline-block; + text-align: left; + vertical-align: top; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + padding-top: 30px; } + .b2b-footer-container .footer-columns.three-column { + width: 33.3%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.four-column { + width: 25%; + padding-left: 75px; } + .b2b-footer-container .footer-columns.five-column { + width: 20%; } + .b2b-footer-container .footer-columns .b2b-footer-header { + color: #009fdb; + font-size: 18px; + font-style: normal; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + line-height: 23.9px; + margin: 0; } + .b2b-footer-container .footer-columns li { + padding: 7.5px 0; } + .b2b-footer-container .footer-columns ul li:first-child { + padding-top: 15px; } + .b2b-footer-container .footer-columns li a { + color: #fff; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-container .footer-nav-content { + padding-bottom: 10px; } + .b2b-footer-container .footer-nav-content li { + display: inline; + font-size: 14px; + color: #fff; + vertical-align: middle; } + .b2b-footer-container .footer-nav-content li a { + color: #fff; + font-size: 14px; + vertical-align: middle; + margin-right: 5px; + font-family: "Omnes-ECOMP-W02", Arial; } + +.b2b-footer-wrapper .b2b-footer-container hr { + background: #d2d2d2; + margin-top: 50px; } + +.b2b-footer-wrapper .divider-bottom-footer { + padding: 45px 0 50px 0; } + +.b2b-footer-wrapper .footerLogo { + margin: 10px 0 0 0px; + vertical-align: top; } + .b2b-footer-wrapper .footerLogo div { + display: inline-block; } + .b2b-footer-wrapper .footerLogo .icon-primary-att-globe { + font-size: 40px; } + .b2b-footer-wrapper .footerLogo .logo-title { + color: #fff; + margin-left: 10px; + display: inline-block; + font-size: 26px; + margin-top: 0px; } + +.b2b-footer-wrapper .copyright-text { + color: #fff; + font-size: 11px; + text-align: left; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-footer-wrapper .copyright-text a { + color: #fff; + text-decoration: underline; + display: inline-block; } + .b2b-footer-wrapper .copyright-text a:hover { + text-decoration: none; } + +@media (max-width: 768px) { + .b2b-footer-wrapper { + padding: 0 15px; } + .b2b-footer-container { + width: 100%; } + .b2b-footer-container .footer-columns.three-column, .b2b-footer-container .footer-columns.four-column, .b2b-footer-container .footer-columns.five-column { + width: 50%; } + .b2b-footer-wrapper .divider-bottom-footer { + padding-top: 15px; } + .b2b-footer-wrapper .divider-bottom-footer .footer-links { + width: 100%; } + .b2b-footer-wrapper .footerLogo { + margin: 30px 0 0 0; } + .b2b-footer-wrapper .footerLogo .footer-logo { + margin: 0; + padding-left: 10px; } } + +.b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + .b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; } + .b2b-header-tabs a:focus { + border: 1px solid white; } + .b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; + display: block; + list-style: none; + padding: 6px 0px 0px 0px; + border-spacing: 30px 0; } + .b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 16px; + font-family: "Omnes-ECOMP-W02, Arial"; + cursor: pointer; + padding: 5px 15px; + color: #fff; } + .b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + .b2b-header-tabs .header__item.b2b-headermenu:last-child { + background: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 5px 15px; } + .b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + .b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + .b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + .b2b-header-tabs .header__item.active .header-secondary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; } + .b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + +/** Secondary Menu **/ +.b2b-labelhide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + +/** Tertiary Level Menu **/ +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + +.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + +.b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + +.b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + .b2b-header-tabs .header-tertiary li a { + color: #333; + display: block; + padding: 10px 15px; } + .b2b-header-tabs .header-tertiary li label { + text-align: left; + display: block; + font-size: 16px; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + +.b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + .b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + .b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + +.b2b-header-tabs .selectWrap { + min-width: 150px; } + .b2b-header-tabs .selectWrap button.awd-select { + height: 30px; + line-height: 31px; + font-size: 1rem; + display: inline-block; } + .b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + +@media (max-width: 768px) { + .b2b-header-tabs { + padding: 0 15px; } + .b2b-header-tabs .header__items, .b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + width: 100%; } + .b2b-header-tabs .header__item { + padding: 5px 0; } + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding: 5px 7px 9px 7px; } + .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 14px; } + .b2b-header-tabs .header__item .header-secondary-wrapper { + top: 45px; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } } + +/************* Header - Start *************/ +.b2b-header-tabs { + background-color: #222; + width: 100%; + position: relative; + height: 45px; } + +.b2b-header-tabs .icon-primary-primary-att-globe { + color: #0568ae; + font-size: 34px; + bottom: 1px; } + +/* + *TODO: delete below .icon-primary-att-globel will not be used + *instead the one above, icon-primary-primary-att-globe not available here + */ +.b2b-header-tabs .icon-primary-att-globe { + color: #0568ae; + font-size: 34px; } + +.b2b-header-tabs .globe-text { + margin-left: 20px; + font-size: 2rem; } + +.b2b-header-tabs .header__items { + width: 980px; + margin: 0 auto; + display: block; + list-style: none; + border-spacing: 30px 0; + padding: 3px 0px 0px 0px; } + +.b2b-header-tabs .header__item { + display: inline-block; + text-align: left; + width: auto; + font-size: 14px; + font-family: "Omnes-ECOMP-W02", Arial; + cursor: pointer; + padding: 0 15px 4px 15px; + /*margin-top:-3px;*/ + color: #fff; } + +.b2b-header-tabs .header__item.b2b-headermenu { + padding: 0; } + +.b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + color: #fff; + text-decoration: none; + display: inline-block; + padding: 8px 15px 12px 15px; + font-size: 16px; } + +.b2b-header-tabs .header__item.active { + background-color: #fff; + border-radius: 2px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; } + +.b2b-header-tabs .header__item.active a.menu__item { + color: #0578ae; } + +.b2b-header-tabs li:focus { + outline: 2px solid #0578ae; } + +/** profile pop Over **/ +.b2b-header-tabs .header__item.profile { + position: relative; + float: right; } + +/** Secondary Menu **/ +.b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + background-color: #fff; + position: absolute; + width: 100%; + left: 0; + top: 42px; + border-bottom: solid 1px #ccc; + -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + -moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.16); + display: none; + z-index: 111; } + +.b2b-header-tabs .header-secondary, .b2b-header-tabs .header-tertiary { + background-color: #fff; + width: 980px; + margin: 0 auto; } + +.b2b-header-tabs .header__item.active .header-secondary-wrapper, +.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary-wrapper { + display: block; } + +.b2b-header-tabs .header-secondary .header-subitem { + display: inline-block; + width: auto; + margin: 0 15px; } + +.b2b-header-tabs .header-secondary .header-subitem a.menu__item { + display: inline-block; + padding: 15px 0; + color: #333; + font-size: 14px; } + +.b2b-header-tabs .header-secondary .header-subitem a.menu__item:hover, .b2b-header-tabs .header-secondary .header-subitem a.menu__item:focus { + color: #0578ae; } + +.b2b-label-hide { + position: absolute; + clip: rect(1px, 1px, 1px, 1px); } + +/** Tertiary Level Menu **/ +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after, +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + content: ''; + border-left: 8px solid transparent; + border-right: 8px solid transparent; + position: absolute; + -webkit-transition: left .2s ease-out; + -moz-transition: left .2s ease-out; + transition: left .2s ease-out; } + +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + position: absolute; + z-index: 111; + top: 25px; } + +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:after { + border-bottom: 8px solid #fff; + top: 10px; } + +.b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret:before { + border-bottom: 8px solid #ccc; + top: 9px; } + +/** Tertiary Level Menu **/ +.b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + border-top: solid 1px #ccc; } + +.b2b-header-tabs .header-tertiary:after { + content: ''; + clear: both; + display: block; } + +.b2b-header-tabs .header-tertiary li { + display: inline-block; + padding: 0; + float: left; } + +.b2b-header-tabs .header-tertiary li a { + color: #333; + display: block; + padding: 7px 15px; + max-width: 228px; } + +.b2b-header-tabs .header-tertiary li label { + text-align: left; + display: block; + font-size: 14px !important; + font-weight: bold; + color: #857B7B; + padding: 15px 0 0 15px; } + +/** Quarternary Level Menu **/ +.b2b-header-tabs .header-quarternary { + width: 100%; + float: left; } + +.b2b-header-tabs .header-quarternary li { + padding-left: 15px; + font-family: "Omnes-ECOMP-W02", Arial; + display: none; } + +.b2b-header-tabs .header-quarternary li.active { + display: block; } + +.b2b-header-tabs .header-quarternary li a { + color: #666666; + font-size: 14px; + padding: 0px 10px 10px 10px; } + +/** Skip Navigation**/ +.b2b-header-tabs .header__item.skip { + padding: 0; + display: inline-block; + cursor: default !important; } + +.b2b-header-tabs .header__item.skip a { + color: transparent; + font-size: 12px; + line-height: 15px; + text-decoration: none; } + +.b2b-header-tabs .header__item.skip a:focus { + color: #fff; + outline: 2px solid #0578ae; } + +/** Dropdown css inside Header ****/ +.b2b-header-tabs .selectWrap { + min-width: 150px; } + +.b2b-header-tabs .selectWrap button.awd-select, .b2b-header-tabs .selectWrap input.awd-select { + height: 36px; + line-height: 8px; + font-size: 1rem; + display: inline-block; } + +.b2b-header-tabs .selectWrap .awd-select-list { + background-color: #fff; + color: #333; + -webkit-transition: opacity .2s ease-out; + -moz-transition: opacity .2s ease-out; + transition: opacity .2s ease-out; + box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176); } + +/* + * responsive header media queries + */ +@media screen and (max-width: 1100px) { + .b2b-header-tabs .globe-text { + display: none; } + .b2b-header-tabs .header__item.profile { + padding-left: 15px; + float: none; } + .b2b-header-tabs .header__items { + padding-top: 0px; } } + +@media screen and (max-width: 950px) { + .header__item.profile { + top: 20px; } + .b2b-header-tabs { + height: 90px; } + .selectWrap { + bottom: 15px; } + .b2b-header-tabs .header__items { + padding-top: 25px; } + .b2b-header-tabs .header__item .header-secondary-wrapper, .b2b-header-tabs .header__item .header-tertiary-wrapper { + top: 80px; } + .b2b-header-tabs .header-secondary .header-subitem.active i.menuCaret { + top: 35px; } + .b2b-header-tabs .header__item.b2b-headermenu a.menu__item { + padding-bottom: 30px; } + .b2b-header-tabs .header-secondary .header-subitem.active .header-tertiary { + margin-top: -28px; } } + +/*************** Header - END ******************/ +.hp-container { + display: block; + max-width: 408px; } + .hp-container i:focus { + outline: thin dotted #666; } + .hp-container .icon-misc-pen { + cursor: pointer; } + .hp-container .icon-misc-trash { + cursor: pointer; } + +.hp-selected { + border-bottom: 1px solid #ccc; + border-bottom: 1px solid #ccc; + margin-bottom: 16px; + padding-bottom: 16px; } + .hp-selected .selected-days { + padding-bottom: 16px; } + .hp-selected .selected-days .day { + padding-top: 10px; + float: left; } + +.hp-checkbox { + padding-top: 20px; + margin: 16px auto 0 auto; } + .hp-checkbox label { + position: relative; + width: 20px; + margin-right: 34px; } + .hp-checkbox label span { + position: absolute; + top: -20px; + left: 0px; + margin-left: 0px; } + +.hp-dropdowns { + margin-top: 15px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + +.hp-buttons { + margin-top: 20px; + display: flex; + display: -webkit-flex; + display: -ms-flexbox; } + +.hp-dropdowns .radio-buttons { + margin-top: 30px; } + .hp-dropdowns .radio-buttons .radio { + margin-right: 15px; } + +@font-face { + font-family: "Omnes-ECOMP-W02"; + src: url("fonts/Omnes_ATTW02.eot"); + src: url("fonts/Omnes_ATTW02.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02.woff") format("woff"), url("fonts/Omnes_ATTW02.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Medium"; + src: url("fonts/Omnes_ATTW02Medium.eot"); + src: url("fonts/Omnes_ATTW02Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Medium.woff") format("woff"), url("fonts/Omnes_ATTW02Medium.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Italic"; + src: url("fonts/Omnes_ATTW02Italic.eot"); + src: url("fonts/Omnes_ATTW02Italic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Italic.woff") format("woff"), url("fonts/Omnes_ATTW02Italic.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Light"; + src: url("fonts/Omnes_ATTW02Light.eot"); + src: url("fonts/Omnes_ATTW02Light.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Light.woff") format("woff"), url("fonts/Omnes_ATTW02Light.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Bold"; + src: url("fonts/Omnes_ATTW02Bold.eot"); + src: url("fonts/Omnes_ATTW02Bold.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02Bold.woff") format("woff"), url("fonts/Omnes_ATTW02Bold.woff2") format("woff2"), url("fonts/Omnes_ATTW02Bold.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Light-Italic"; + src: url("fonts/Omnes_ATTW02LightItalic.eot"); + src: url("fonts/Omnes_ATTW02LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02LightItalic.woff") format("woff"), url("fonts/Omnes_ATTW02LightItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02LightItalic.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Medium-Italic"; + src: url("fonts/Omnes_ATTW02MediumItalic.eot"); + src: url("fonts/Omnes_ATTW02MediumItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02MediumItalic.woff") format("woff"), url("fonts/Omnes_ATTW02MediumItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02MediumItalic.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +@font-face { + font-family: "Omnes-ECOMP-W02-Bold-Italic"; + src: url("fonts/Omnes_ATTW02BoldItalic.eot"); + src: url("fonts/Omnes_ATTW02BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/Omnes_ATTW02BoldItalic.woff") format("woff"), url("fonts/Omnes_ATTW02BoldItalic.woff2") format("woff2"), url("fonts/Omnes_ATTW02BoldItalic.ttf") format("truetype"); + font-weight: normal; + font-style: normal; } + +/* TODO: Build a reference page for these classes */ +.font-regular { + font-family: "Omnes-ECOMP-W02", Arial !important; } + +.font-light { + font-family: "Omnes-ECOMP-W02-Light", Arial !important; } + +.font-italic { + font-family: "Omnes-ECOMP-W02-Italic", Arial !important; } + +.font-light-italic { + font-family: "Omnes-ECOMP-W02-Light-Italic", Arial !important; } + +.font-medium { + font-family: "Omnes-ECOMP-W02-Medium", Arial !important; } + +.font-medium-italic { + font-family: "Omnes-ECOMP-W02-Medium-Italic", Arial !important; } + +.font-reset { + font-style: normal; + font-variant: normal; + font-weight: normal; + text-transform: none; } + +.b2b-nav-menu { + background-color: #efefef; + border: 1px solid #efefef; + width: 230px; + font-size: 1.4rem; } + +.b2b-subnav-container > ul { + padding: 0px; } + +.b2b-subnav-content { + margin: 0; + margin-bottom: 10px; } + +.b2b-subnav-content > li { + border-bottom: 1px solid #999999; + position: relative; + cursor: pointer; } + +.b2b-subnav-content > li > a { + text-decoration: none; + line-height: 18px; + display: block; + padding: 10px; } + +.b2b-subnav-content > li > a.expand { + color: #333; } + +.b2b-subnav-content > li ul { + overflow: hidden; + max-height: 0; + transition-duration: 0.5s; + transition-timing-function: cubic-bezier(0, 1, 0.5, 1); } + +.b2b-subnav-content > li ul.expand { + transition-duration: 0.7s; + transition-timing-function: ease-in-out; + max-height: 1000px; + overflow: hidden; } + +.b2b-subnav-content > li > a:focus, .b2b-subnav-content > li ul > li > a:focus { + outline: thin dotted #666; } + +.b2b-subnav-content > li ul > li > a { + line-height: 18px; + padding: 8px 0; + display: block; + outline-offset: -4px; + padding-left: 10px; } + +.b2b-icon-primary-plus-minus { + display: inline-block; + height: 20px; + margin-right: 10px; + padding: 0; + position: absolute; + right: 0px; + top: 10px; + vertical-align: middle; + width: 20px; } + +@media (min-width: 320px) and (max-width: 767px) { + .b2b-nav-menu { + background-color: #fff; + border: 1px solid white; + width: 100%; } + .b2b-subnav-content > li { + padding-left: 10px; } + .b2b-subnav-container > ul:first-child { + border-top: 1px solid #999; } + .b2b-icon-primary-plus-minus { + right: 10px; } + .b2b-subnav-content > li li > a.active { + color: #0574ac; + text-decoration: none; + font-family: "Omnes-ECOMP-W02", Arial; } } + +.b2b-list-box-item { + white-space: nowrap; + margin: 1px; + border: 1px solid transparent; + outline: none; + visibility: inherit; + display: inherit; + text-align: left; + overflow: hidden; + cursor: pointer; + padding: 5px 0 5px; + padding-left: 15px; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; } + .b2b-list-box-item:focus { + border: 2px solid #5e8cb3; } + +.b2b-list-box-item--selected { + background-color: #cfdde9; } + +.btn.disabled[ddh-load-button] { + line-height: 46px; + padding: 0 19px 0 18px; } + +.btn.disabled[ddh-load-button] { + color: #666666; } + +.icon-primary-spinner-ddh.large { + height: 50px; + width: 50px; } + +.icon-primary-spinner-ddh.small { + height: 30px; + width: 30px; } + +.icon-primary-spinner-ddh { + -webkit-animation: 1s linear infinite spinner; + animation: 1s linear infinite spinner; + background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNiAzNiIgaWQ9InN2Zy1zcGlubmVyIiB4PSIwcHgiIHk9IjBweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CiAgIDxwYXRoIGZpbGw9IiNGNUY1RjUiIGQ9Ik0xOCAzNkM4LjEgMzYgMCAyNy45IDAgMThTOC4xIDAgMTggMHMxOCA4LjEgMTggMTgtOC4xIDE4LTE4IDE4em0wLTMxLjVjLTcuNSAwLTEzLjUgNi0xMy41IDEzLjVTMTAuNiAzMS41IDE4IDMxLjVjNy41IDAgMTMuNS02LjEgMTMuNS0xMy41IDAtNy41LTYtMTMuNS0xMy41LTEzLjV6Ii8+CiAgIDxwYXRoIGZpbGw9IiMwNTY4QUUiIGlkPSJzcGlubmVyIiBkPSJNMzAuNyA1LjNsLTMuMSAzLjJjMi40IDIuNCAzLjkgNS44IDMuOSA5LjUgMCA3LjQtNi4xIDEzLjUtMTMuNSAxMy41UzQuNSAyNS40IDQuNSAxOCAxMC42IDQuNSAxOCA0LjVWMEM4LjEgMCAwIDguMSAwIDE4czguMSAxOCAxOCAxOCAxOC04LjEgMTgtMThjMC01LTItOS41LTUuMy0xMi43eiIgdHJhbnNmb3JtPSIiPiAgICAgIAogICA8L3BhdGg+Cjwvc3ZnPg==); } + +.btn-small .icon-primary-spinner-ddh { + height: 30px !important; + width: 30px !important; } + +.btn-small .icon-primary-spinner { + height: 30px; + width: 30px; } + +.load-backdrop { + position: absolute; + top: 50%; + left: 50%; } + +.body.styled-by-modal { + position: fixed; } + +.b2b-modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: -1; } + +.b2b-modal-backdrop.fade { + background-color: #000; + opacity: 0; + filter: alpha(opacity=0); + transition: all 0.3s linear 0s; } + +.b2b-modal-backdrop.fade.in { + z-index: 1040; + opacity: 0.7; + filter: alpha(opacity=70); + background-color: #000; + transition: opacity 0.3s linear 0s; } + +.modalwrapper { + height: 100%; + width: 100%; + left: 0; + overflow-y: hidden; + position: absolute; + right: 0; + padding: 20px; + top: 0; + z-index: -1; } + +.modalwrapper.active { + z-index: 1050; + overflow-y: auto; } + +.modal { + background-clip: padding-box; + background-color: #ffffff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.4); + margin: 0 auto; + /*margin-bottom:10%;*/ + outline: medium none; + /*position: absolute;*/ + height: 0; + min-height: 150px; + overflow: hidden; + /*top: 10%;*/ + width: 100%; + z-index: -1; } + +.modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + +.modal.fade.in { + position: relative; + height: auto; + overflow: auto; + top: 10%; + z-index: 1060; + transition: opacity .5s linear 0s; } + +.modal.fade.in.modal-landscape { + overflow-y: auto; } + +.modal.fade { + transition: opacity .5s linear 0s; } + +.fade.in { + opacity: 1; } + +.fade { + opacity: 0; } + +.b2b-modal-header { + align-items: center; + border-radius: 8px 8px 0 0; + display: flex; + min-height: 60px; + overflow: hidden; + padding: 30px 46px 30px 30px; + position: relative; } + +.b2b-modal-header > h2 { + line-height: 1; + margin: 0; + padding: 0; } + +.modal-header-portrait { + -webkit-overflow-scrolling: auto; } + +.modal-header-landscape { + -webkit-overflow-scrolling: auto; } + +.b2b-modal-body { + -webkit-overflow-scrolling: touch; + padding: 0 30px 20px; + position: relative; + width: auto; } + +.b2b-modal-body:focus { + outline: 1px dotted #333333; } + +.modal-form { + margin-bottom: 0; } + +.b2b-modal-footer { + background-color: #fff; + width: 100%; + padding: 0 30px; + border-radius: 0; + position: absolute; + bottom: 0; } + +:not(.modal-docked) .b2b-modal-footer { + position: relative; } + +.modal-docked .b2b-modal-footer { + border-top: 1px solid #d2d2d2; } + +.modal-landscape .b2b-modal-footer { + position: relative; } + +.b2b-modal-footer .cta-button-group { + display: flex; + justify-content: flex-end; + padding: 20px 0 5px; + width: 100%; } + +.b2b-modal-footer .cta-button-group .btn { + margin-left: auto; + margin-right: auto; + float: right; + margin-left: 10px; } + +.b2b-modal-footer .cta-button-group .btn + .btn { + margin-right: 0 !important; } + +[class*="modal-"] { + width: 100%; } + +.modal-small { + max-width: 420px; } + +.modal-medium { + max-width: 620px; } + +.modal-large { + max-width: 720px; } + +.modal-xlarge { + max-width: 860px; } + +.modal-jumbo { + max-width: 1000px; } + +.modalwrapper.modal-docked { + height: 100%; + display: flex; + align-items: center; } + +.modalwrapper.modal-docked .b2b-modal-body { + height: 80%; + overflow-y: scroll; + padding-bottom: 60px; } + +.modalwrapper.modal-docked .modal { + max-height: 80%; + height: 80%; + overflow: hidden; + top: 0; } + +.modalwrapper.modal-docked .b2b-modal-body > *:last-child { + margin-bottom: 60px; } + +@media (max-width: 767px) { + .modalwrapper { + padding: 15px; + overflow-x: hidden; } + .modal.fade.in { + top: 0; + right: 0; + left: 0; + margin-bottom: 15px; + border: none; } + .b2b-modal-header { + padding: 20px 46px 20px 15px; } + .b2b-modal-body { + width: 100%; + padding: 0 15px 15px; } + .modalwrapper.modal-docked { + position: absolute; + height: 100%; + padding: 0; } + .modalwrapper.modal-docked .modal.fade.in { + margin-bottom: 0; + width: 100% !important; + max-height: 100%; + height: 100%; + border-radius: 0; } + .modalwrapper.modal-docked .b2b-modal-body { + overflow-y: scroll; + height: 100%; } + .modalwrapper.modal-docked.modal-landscape { + overflow-y: hidden; + position: fixed; } + .modalwrapper.modal-docked.modal-landscape .modal { + overflow-y: scroll; + max-width: 100%; } + .modalwrapper.modal-docked.modal-landscape .b2b-modal-body { + height: auto; + overflow-y: hidden; } + .b2b-modal-footer { + padding: 0 15px; } + .b2b-modal-footer .cta-button-group { + display: block; + padding: 15px 0; } + .b2b-modal-footer .cta-button-group .btn { + float: none; } + .b2b-modal-footer .cta-button-group .btn + .btn { + margin-bottom: 0; } + .b2b-modal-footer .cta-button-group a.visible-phone { + align-items: center; + display: flex !important; + height: 42px; + justify-content: center; } } + +.b2b-modal-footer > .cta-button-group { + line-height: 40px; } + +.ajaxed, +.modal.fade.in .b2b-modal-header, +.modal.fade.in .b2b-modal-body, +.modal.fade.in .b2b-modal-footer { + animation-duration: 0.01s; + -o-animation-duration: 0.01s; + -ms-animation-duration: 0.01s; + -moz-animation-duration: 0.01s; + -webkit-animation-duration: 0.01s; + animation-name: DOMinsertion; + -o-animation-name: DOMinsertion; + -ms-animation-name: DOMinsertion; + -moz-animation-name: DOMinsertion; + -webkit-animation-name: DOMinsertion; } + +.monthselector thead tr th { + min-width: 46px; } + +.monthselector thead tr:after { + content: ""; + position: absolute; + left: 20px; + top: 52px; + height: 1px; + width: 85%; + border-bottom: 1px solid #ccc; } + +.monthselector tbody tr:last-child { + height: 50px; } + +.monthselector td.day { + margin: 1px 4px !important; + width: 64px !important; } + +.monthselector .datepicker-switch { + width: 195px !important; } + +.monthselector .show-date { + width: 30px !important; } + +.monthselector button.faux-input { + width: 100%; } + .monthselector button.faux-input:focus { + border: 1px solid #0574ac; } + .monthselector button.faux-input:disabled { + cursor: not-allowed; } + +.monthselector .cta-button-group { + padding: 0 20px; } + .monthselector .cta-button-group a { + margin-right: 20px; } + +.monthselector .day.active .show-date:after, .monthselector .day:focus .show-date:after, .monthselector .due-date.disabled .show-date:after { + height: 30px; + left: 9px !important; + top: 0; + width: 42px !important; } + +.monthselector .disabled.day:focus .show-date:after { + border: none; } + +.monthselector .icon-primary-calendar { + display: block; } + +.b2b-ml-nav { + padding: 0 10px 0 10px; + width: 320px; } + +.b2b-ml-nav ul { + list-style: none; + list-style-type: none; } + +.b2b-ml-nav a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + color: #333; + font-size: 1.4rem; } + +.b2b-ml-nav a:focus { + outline-offset: 1px; } + +.b2b-ml-nav li:focus { + outline: none; } + +.b2b-ml-nav li:focus > a { + outline: thin dotted #666; + outline-offset: 1px; } + +.b2b-ml-nav ul li { + border-left: 1px solid #ccc; } + +.b2b-ml-nav ul ul { + padding: 0 0 0 20px; } + +.b2b-ml-nav ul > li { + position: relative; + line-height: 18px; } + +.b2b-ml-nav a > span { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; } + +.b2b-ml-nav a > span > i { + font-size: 20px; } + +.b2b-ml-nav a:only-child { + color: #0574ac; } + +.b2b-ml-nav a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 7px; + top: 5px; } + +.b2b-ml-nav a:only-child > span > i { + background-color: inherit; + background: #fff; + font-size: 10px; } + +.b2b-ml-nav ul li:first-child > a:only-child > span { + left: -6px; + border-radius: 50%; + line-height: 12px; + top: 0px; } + +.b2b-ml-nav li a + ul { + display: none; } + +.b2b-ml-nav li a.active + ul { + display: block; } + +/*to overide ng-doc inline property for library demo - TODO: Move to docs.css*/ +.b2b-ml-nav a [class^="icon-primary-"], a [class*=" icon-primary-"], a [class^="icon-primary-"]:before, a [class*=" icon-primary-"]:before { + display: inline-block; } + +.b2b-alerts-messages { + background-color: #fff; + border-radius: 8px; + height: auto; } + .b2b-alerts-messages h3 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; } + .b2b-alerts-messages h4 { + color: #333 !important; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + margin-bottom: 0 !important; } + .b2b-alerts-messages .alert-info { + background-color: #0574ac; + border: 0; } + .b2b-alerts-messages .alert-error { + background-color: #cf2a2a; + border: 0; } + .b2b-alerts-messages .alert-success { + background-color: #1b7e28; + border: 0; } + .b2b-alerts-messages div:nth-child(2) { + padding: 0 0 15px 10px; + vertical-align: baseline; } + .b2b-alerts-messages .close:before { + color: #767676; } + .b2b-alerts-messages p { + font-size: 14px; + color: #333; + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-alerts-messages p a { + color: #333; } + .b2b-alerts-messages .btn-small { + margin-bottom: 0px; } + +.b2b-alerts-success { + border: 1px solid #1b7e28; } + +.b2b-alerts-error { + border: 1px solid #cf2a2a; } + +.b2b-alerts-info { + border: 1px solid #0574ac; } + +/* TODO: Rearange this and move to patches if needed */ +.b2b-breadcrumb-css-override > li { + margin-right: 24px; } + +.b2b-breadcrumb-css-override li > * { + float: left !important; } + +.b2b-css-override ul.nav-tabs { + margin-bottom: 0; } + +.b2b-css-override div.tab-content { + margin-top: 0; + border-top: none; } + +.b2b-css-override .tab-content .prettyprint, .b2b-css-override .usage .prettyprint { + max-height: 500px; + overflow-y: auto; } + +.b2b-top-nav-buttons-css-override { + margin-bottom: 0; + margin-top: 2px; } + +.b2b-auto-width { + width: auto !important; } + +.b2b-toggle-header-active { + color: #0568ae; } + +.b2b-toggle-header-inactive { + color: #333333; } + +.b2b-toggle-header-icon { + cursor: pointer; } + +.tab-content > .tab-pane { + display: none; } + +.tab-content > .active { + display: block; } + +.icon-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } + +.ds2-no-colors .icon-primary-circle:before { + background-image: none; + content: "\e902"; } + +i:focus { + outline: thin dotted #666; } + +.p-col-md-12 { + width: 50%; } + +.pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 5px; + width: 22px; + height: 23px; + /*transition: all 0.3s ease-out 0s;*/ + vertical-align: baseline; } + +.pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + +.pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 40px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 10px; } + +.row.section-row { + margin-bottom: 20px; } + +.pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + +.pager a.pager__item--active:hover { + cursor: default; } + +.pager a:hover, .pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + +.pager a.disabled:hover, .pager a.disabled:focus { + cursor: not-allowed; } + +.row.section-row.b2b-page { + display: block; } + +a.pager__item--next:focus, a.pager__item--prev:focus { + text-decoration: none; + border: 0; } + +.pager__item--next, .pager__item--prev { + margin: 5px; + padding: 1.5px 6px 1.5px 6px; } + +.pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + +.fieldLabel { + color: #666666; } + +.fieldLabel input { + color: #666666; } + +.pSelect { + float: right; + width: 150px; } + +.numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; + display: inline-block; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.mobile-view > .pager__item { + margin: 5px 10px; + width: 24px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + +.fade1, .fadel { + opacity: 0.4; } + +.fade2, .fadesl { + opacity: 0.6; } + +h4#pagination-truncated { + margin-top: 50px; } + +h4#pagination-large-count { + margin-top: 50px; } + +.p-col-md-12 input { + margin-left: 20px; } + +.pager a .icon-primary-right:before { + display: inline-block; } + +.pager a .icon-primary-left:before { + display: inline-block; } + +.page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + +.numericResult:focus { + outline: 1px dotted #0574ac; } + +.page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.pager > div > span.fieldLabel { + margin-left: 18px; } + +.pager .fieldLabel .btn-arrow { + top: 0; + left: 10px; } + +.b2b-p-col-md-12 { + width: 50%; } + .b2b-p-col-md-12 input { + margin-left: 20px; } + +.b2b-pager__item { + border-radius: 0; + cursor: default; + display: inline-block; + margin: 5px; + min-width: 23px; + height: 23px; + vertical-align: baseline; } + +.b2b-pager__item--noclick { + pointer-events: none !important; + cursor: default !important; } + +.b2b-pager { + padding-top: 10px; + padding-bottom: 20px; + text-align: center; + margin: 0 auto; } + .b2b-pager a:hover { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a:focus { + text-decoration: none; + color: #333333; + cursor: pointer; } + .b2b-pager a .icon-primary-right:before { + display: inline-block; } + .b2b-pager a .icon-primary-left:before { + display: inline-block; } + .b2b-pager .disabled i { + pointer-events: none; + cursor: default; + color: #c4c4c4; } + +.b2b-pager__item--input { + color: #067ab4; + max-height: 32px; + max-width: 60px; + padding-left: 0; + padding-right: 0; + text-align: center; + margin-left: 10px; } + +.row.section-row { + margin-bottom: 20px; } + +.b2b-pager__item--active { + border-bottom: 2px solid #0574ac; + border-radius: 0; + color: #333333; } + +.row.section-row.b2b-page { + display: block; } + +a.b2b-pager__item--next:focus { + text-decoration: none; + border: 0; } + +a.b2b-pager__item--next-disabled { + outline: 0; } + +a.b2b-pager__item--next-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; + outline: 0; } + +a.b2b-pager__item--prev:focus { + text-decoration: none; + border: 0; } + +a.b2b-pager__item--prev-disabled { + outline: 0; } + +a.b2b-pager__item--prev-disabled > [class^="icon-primary-"] { + color: #cccccc; + cursor: not-allowed; } + +.b2b-pager__item--next { + margin: 5px; + padding: 1.5px 6px 1.5px 6px; } + +.b2b-pager__item--prev { + margin: 5px; + padding: 1.5px 6px 1.5px 6px; } + +.fieldLabel { + color: #666666; } + .fieldLabel input { + color: #666666; } + .fieldLabel .btn-arrow { + top: 0; + left: 10px; } + +.b2b-pSelect { + float: right; + width: 150px; } + +.b2b-numericResult { + margin-bottom: 20px; + font-size: 1.6rem; + margin-top: 20px; } + +.b2b-mobile-view > .b2b-pager__item { + margin: 5px 10px; + min-width: 23px; + height: 34px; + vertical-align: middle; + line-height: 34px; } + +.b2b-fade1 { + opacity: 0.4; } + +.b2b-fade2 { + opacity: 0.6; } + +.b2b-fadesl { + opacity: 0.6; } + +h4#b2b-pagination-truncated { + margin-top: 50px; } + +h4#b2b-pagination-large-count { + margin-top: 50px; } + +.b2b-page-heading { + background: white none repeat scroll 0 0; + margin-bottom: -12px; + padding-left: 10px; + padding-right: 10px; + position: relative; } + +.b2b-numericResult:focus { + outline: 1px dotted #0574ac; } + +.b2b-page-heading-group { + color: #ef6f00; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.b2b-pager > div > span.fieldLabel { + margin-left: 18px; } + +input.b2b-phone-mask-input { + padding-right: 15px; } + input.b2b-phone-mask-input:hover, input.b2b-phone-mask-input:focus { + padding-right: 15px; } + +/************************** Start - Should be removed after the styling in global is fixed *******************/ +input::-ms-clear { + display: none; } + +/************************** End - Should be removed after the styling in global is fixed *******************/ +@media (max-width: 767px) { + input::-ms-clear { + display: block; } } + +.pivot-link-group { + background-color: #5a5a5a; + border-top: 1px solid #959595; } + +.pivot-links > li { + border-bottom: 1px solid #959595; } + +.pivot-links > li > a { + color: #fff; + display: block; + padding: 12px 15px 10px; + line-height: normal; } + +.b2b-profile-block-container { + min-height: 200px; + height: auto; + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + box-shadow: 0px 1px 1px 1px #ccc; + display: inline-table; + margin: 15px 15px; } + +.b2b-profile-block-details p, .b2b-profile-block-details div { + padding: 2px 7px; + font-size: 1.4rem; } + +.b2b-profile-block-details .radio-label, .b2b-profile-block-details a { + font-size: 1.4rem; } + +.b2b-profile-block-details p label, .b2b-profile-block-details p span { + padding-left: 10px; } + +.b2b-profile-block-footer { + margin-bottom: 12px; + margin-top: 5px; + height: 35px; } + +.b2b-profile-block-details p { + word-wrap: break-word; + height: 61px; } + .b2b-profile-block-details p:first-child { + margin-top: 10px; } + .b2b-profile-block-details p:after { + content: ' '; + display: block; + border: 0.2px solid #ccc; + margin-top: 12px; } + +.b2b-profile-block-details .radio { + margin-left: 15px; + height: 30px; } + +.b2b-approval-icon { + color: #1b7e28; + float: right; + position: relative; + left: 10px; } + .b2b-approval-icon i { + color: #1b7e28; + float: right; } + +.b2b-profile-link { + float: right; + position: relative; + left: -4px; } + +a.link-profile { + position: relative; + left: -5px; + float: right; + margin-bottom: 16px; } + +.b2b-profile-block-radio { + position: relative; + top: -5px; } + +.b2b-profile-card { + min-width: 229px; + min-height: 354px; + margin: 10px; + border: solid 1px #CCC; + font-family: "Omnes-ECOMP-W02", Arial; + display: inline-block; + vertical-align: top; } + .b2b-profile-card .top-block { + padding: 15px 20px; + background-color: #e4e4e4; + max-height: 153px; } + .b2b-profile-card .bottom-block { + padding: 15px 20px 15px 20px; + background-color: #fff; } + .b2b-profile-card .profile-image { + background: #e4e4e4; + margin-bottom: 15px; + text-align: center; } + .b2b-profile-card .profile-image .default-img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + +.profile-image img { + display: inline-block; + width: 60px; + height: 60px; + margin-bottom: 10px; + border: 6px solid #fff; + border-radius: 99em; + -webkit-border-radius: 99em; + -moz-border-radius: 99em; + /* background-color: #eee; */ } + +.b2b-profile-card .profile-image .default-img { + font-family: "Omnes-ECOMP-W02", Arial; + color: #333; + background-color: #fff; + font-size: 32px; + line-height: 22px; + padding: 5px; + padding-top: 13px; + width: 60px; + height: 60px; + text-transform: uppercase; } + +.b2b-profile-card .profile-image .name { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + color: #333; + text-align: center; + margin-bottom: 5px; + margin-top: 5px; + overflow: hidden; + word-break: break-word; + white-space: normal; + text-transform: capitalize; } + +.b2b-profile-card .profile-image .status-icon { + border-radius: 10px; + border: 1px solid #fff; + margin: 0 3px 0 0; + width: 10px; + height: 10px; + display: inline-block; + vertical-align: middle; } + +.b2b-profile-card .profile-image .status { + font-size: 12px; + line-height: 15px; + text-align: center; + margin: 0 15px 0 0; + color: #444; } + +.b2b-profile-card .status .circle { + width: 10px; + height: 10px; + border-radius: 50%; + margin: 30px 6px 0px 20px; + text-align: center; + background-color: #444; } + +.b2b-profile-card .profile-image .status-green { + background-color: #0c0; } + +.b2b-profile-card .profile-image .status-red { + background-color: red; } + +.b2b-profile-card .profile-image .status-blue { + background-color: #00f; } + +.b2b-profile-card .profile-image .status-yellow { + background-color: #ff0; } + +.b2b-profile-card .profile-image .status .status-badge { + margin-left: 5px; + border: dotted 1px #444; + background-color: transparent; + font-weight: 400; + color: #444; + height: 17px; + padding: 0 5px; + font-size: 11px; + padding-left: 5px; + padding-right: 5px; } + +.b2b-profile-card .profile-details { + background: #fff; } + .b2b-profile-card .profile-details label { + display: block; + cursor: text; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: bolder; + font-size: 14px; + color: #333; + padding: 0; + margin: 0; } + .b2b-profile-card .profile-details div { + margin: 0; + font-size: 14px; + color: #333; + padding-bottom: 6.5px; } + +.b2b-profile-card .b2b-add-user { + background: white; + border-style: dotted; + font-size: 16px; + color: #333; + position: relative; } + .b2b-profile-card .b2b-add-user i { + font-size: 30px; + padding-bottom: 15px; } + +.b2b-profile-card .atcenter { + cursor: pointer; + margin-top: 60%; + vertical-align: middle; + text-align: center; } + +.b2b-profile-card .tooltip { + cursor: pointer; } + .b2b-profile-card .tooltip .helpertext { + position: relative; + color: white; } + +.b2b-profile-card .tooltip-wrapper { + position: relative; } + +/* Overrides for tooltip absolute positioning */ +@media (min-width: 1025px) { + .b2b-profile-card .tooltip-size-control { + width: 100% !important; } } + +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + +@keyframes progress-bar-stripes { + from { + background-position: 0 0; } + to { + background-position: 80px 0; } } + +.progress { + background-color: #e4e4e4; + border-radius: 4px; + height: 14px; + margin-bottom: 20px; + min-width: 250px; + overflow: hidden; + padding: 0; + position: relative; } + +a .progress { + margin-bottom: 0; } + +.progress .bar { + background-color: #666; + border-radius: 4px; + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + height: 100%; + width: 0; } + +.progress-arrow { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; + -webkit-align-items: center; + -ms-flex-align: center; + align-items: center; + -webkit-justify-content: flex-end; + -ms-flex-pack: end; + justify-content: flex-end; } + +.progress-link + .usage-bar { + margin-top: 5px; } + +.progress-success .bar, .progress .bar-success { + background-color: #1b7e28; } + +.progress-warning .bar, .progress .bar-warning { + background-color: #ef6f00; } + +.progress-danger .bar, .progress .bar-danger { + background-color: #cf2a2a; } + +.progress.increment { + display: -webkit-flex; + display: -ms-flexbox; + display: flex; } + +.progress.increment .bar:first-child:not(:last-child) { + border-right: none; + border-radius: 4px 0 0 4px; } + +.progress.increment .bar:last-child:not(:first-child) { + border-left: none; + border-radius: 0 4px 4px 0; } + +.progress.increment .bar + .bar:not(:last-child) { + border-left: none; + border-right: none; + border-radius: 0; } + +.progress.increment .bar:not(:first-child) { + border-left: 1px solid white !important; } + +.usage-bar { + display: table; + float: none; + width: 100%; + margin-bottom: 1px; } + +.usage-bar > .usage-text { + display: table-cell; + width: 1%; } + +.progress + .usage-bar { + margin-top: -15px; } + +.usage-bar .usage-text { + font-size: 1.4rem; } + +.usage-bar .usage-text:first-child { + white-space: nowrap; } + +.usage-bar .usage-text.text-right { + vertical-align: top; + font-size: 1.4rem; + width: auto !important; } + +.usage-bar .usage-text.text-right:before { + content: ""; + display: table; + height: .1em; } + +.usage-bar.billing-cycle .usage-text { + font-size: 1.4rem; } + +.usage-bar.billing-cycle .usage-text.text-right { + vertical-align: bottom; } + +.progress.autocolor [data-percentage="1"], .progress.autocolor [data-percentage="2"], .progress.autocolor [data-percentage="3"], .progress.autocolor [data-percentage="4"], .progress.autocolor [data-percentage="5"], .progress.autocolor [data-percentage="6"], .progress.autocolor [data-percentage="7"], .progress.autocolor [data-percentage="8"], .progress.autocolor [data-percentage="9"], .progress.autocolor [data-percentage="10"] .progress.autocolor [data-percentage^="2"], .progress.autocolor [data-percentage^="3"], .progress.autocolor [data-percentage^="4"], .progress.autocolor [data-percentage^="5"], .progress.autocolor [data-percentage="60"], .progress.autocolor [data-percentage="61"], .progress.autocolor [data-percentage="62"], .progress.autocolor [data-percentage="63"], .progress.autocolor [data-percentage="64"] { + background-color: #1b7e28; } + +.progress.autocolor [data-percentage="65"], .progress.autocolor [data-percentage="66"], .progress.autocolor [data-percentage="67"], .progress.autocolor [data-percentage="68"], .progress.autocolor [data-percentage="69"], .progress.autocolor [data-percentage^="7"], .progress.autocolor [data-percentage^="8"] { + background-color: #ef6f00; } + +.progress.autocolor [data-percentage^="9"], .progress.autocolor [data-percentage="100"] { + background-color: #cf2a2a; } + +.b2b-seek-bar-container { + position: relative; } + .b2b-seek-bar-container div { + position: absolute; } + .b2b-seek-bar-container .b2b-seek-bar-track-container { + width: 100%; } + .b2b-seek-bar-container .b2b-seek-bar-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; } + .b2b-seek-bar-container .b2b-seek-bar-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; } + +.seek-bar-container .seek-bar-knob-container { + transition: left 0s linear; } + +.b2b-seek-bar-container .b2b-seek-bar-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + +.b2b-seek-bar-container .b2b-seek-bar-knob:focus { + outline: thin dotted #666; } + +.b2b-seek-bar-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-container { + position: relative; + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track { + position: absolute; + height: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob-container { + transition: bottom .01s linear; + position: relative; + bottom: 0; } + .b2b-seek-bar-container.vertical .b2b-seek-bar-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + +.form-search .search-query { + width: 100% !important; } + +.form-search .well { + margin-top: 0; } + +.form-search > ul.nav > li.section { + min-height: 20px !important; } + +input.b2b-search-input-field { + margin-bottom: 0px; } + +.search-suggestion-list { + background-color: #FFFFFF; + border: 1px solid #ccc; + border-radius: 0 0 6px 6px; + box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15); + margin-top: -5px; + max-height: 400px; + overflow-x: hidden; + overflow-y: auto; + padding: 15px 0; + position: absolute; + width: 100%; + z-index: 1000; } + .search-suggestion-list > li.active { + background-color: #cccccc; } + .search-suggestion-list:empty { + display: none; } + +.b2b-search-hightlight { + font-weight: bold; } + +input[type="text"]::-moz-placeholder { + color: #767676; + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + +input[type="text"]:focus { + z-index: 1000; } + +input[type="text"] + .reset-field { + background-color: #FFFFFF; + height: 90%; + top: 5%; } + +.btn-search:focus { + outline: 1px dotted #0574ac; } + +.field-group input:not([type="button"])[disabled] ~ .btn-search { + background-color: #eee; } + +.btn-search[class*="btn"] { + background-color: #FFFFFF; + background-size: 20px 20px; + border-radius: 0 1.5rem 1.5rem 0; + height: 3rem; + min-width: 4.4rem !important; + right: 0.15rem; + top: 0.15rem; + width: 4.4rem; } + +.search-suggestion-wrapper { + margin-bottom: 15px; + position: relative; } + .search-suggestion-wrapper .no-result { + padding: 0px 15px; } + +.search-suggestion-item { + color: #333333; + line-height: 4rem; + padding: 0 15px; + position: relative; + z-index: 1000; } + .search-suggestion-item:hover { + background-color: #e4e4e4; + cursor: pointer; } + .search-suggestion-item:focus { + background-color: #e4e4e4; + cursor: pointer; } + .search-suggestion-item a { + color: #333333; + text-decoration: none; } + +.btn-search i { + color: #767676; } + +input.b2b-search-input-field:focus ~ .btn-search > i, .btn-search:focus > i { + color: #0568ae; } + +button.btn-search[disabled] { + cursor: not-allowed; } + button.btn-search[disabled] i { + color: #767676; } + +.linkSelectorModule { + position: relative; + height: 32px; + line-height: 20px; + border: 0px; + width: auto; + display: block; } + .linkSelectorModule .icon-primary-down { + font-size: 23px; + margin-top: -10px; + position: absolute; + top: 50%; + margin-left: -30px; } + .linkSelectorModule .selectModule { + background-color: transparent; + border: none; + color: #0568ae; + cursor: pointer; + border: 1px solid transparent; + box-shadow: none; + padding-right: 35px; + position: relative; + user-select: none; + font-size: 1.6rem; } + .linkSelectorModule .selectModule:focus { + border: 1px dotted #ccc; + box-shadow: none; + -moz-user-select: none; } + .linkSelectorModule .selectModule:hover { + text-decoration: underline; } + .linkSelectorModule .active + .moduleWrapper:before { + background-color: #FFFFFF; + border-color: #d2d2d2; + border-style: solid; + border-width: 1px 1px 0 0; + content: ""; + display: block; + height: 15px; + right: 122px; + margin: 0; + position: absolute; + top: -8px; + -webkit-transform: rotate(-45deg); + transform: rotate(-45deg); + width: 15px; } + .linkSelectorModule .moduleWrapper { + top: 40px; } + .linkSelectorModule ul.awd-module-list { + border-radius: 6px 6px 0px 0px; } + +.selectorModule .icon-primary-down { + font-size: 23px; + margin-top: -11px; + position: absolute; + right: 4px; + top: 50%; } + +.selectorModule .selectModule { + border: 1px solid #d2d2d2; + border-radius: 6px; + box-shadow: 1px 5px 2px -5px rgba(0, 0, 0, 0.15); + display: block; + width: 100%; + padding-left: 15px; + background-color: transparent; + cursor: pointer; } + .selectorModule .selectModule:focus { + border: 1px solid #0568ae; + -moz-user-select: none; } + .selectorModule .selectModule span.module-data { + position: absolute; + bottom: 6px; + line-height: 20px; } + .selectorModule .selectModule img + span.module-data { + padding-left: 45px; } + +.selectorModule .selectModule.active { + border-bottom-right-radius: 0px; + border-bottom-left-radius: 0px; } + +.selectorModule .moduleWrapper { + position: absolute; + width: 100% !important; + border-top: none; } + +.selectorModule ul.awd-module-list { + border-radius: 0px 0px 6px 6px; } + +.selectorModule .large > img { + height: 30px; + position: absolute; + width: 30px; + top: 20px; + left: 15px; } + +.selectModule { + background-color: transparent; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + font-size: 1.6rem; + height: 36px; + line-height: 35px; + margin-bottom: 0; + position: relative; + text-align: left; + top: 0; + z-index: 10; + padding: 0px; + margin: 0px; + cursor: pointer; } + +.moduleWrapper { + background-color: #FFFFFF; + position: absolute; + color: #191919; + z-index: 9999; + box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.15); + border-radius: 0px 0px 6px 6px; } + .moduleWrapper .module-list-item img { + height: 30px; + position: absolute; + width: 30px; + top: 30px; + left: 15px; + align-self: center; } + .moduleWrapper span { + display: block; + white-space: nowrap; + font-size: 1.5rem; } + +.awd-module-list { + overflow-y: auto; + z-index: 9999; + max-height: 360px; + border: 1px solid #d2d2d2; } + .awd-module-list .module-list-item > .module-data { + overflow: ellipsis; + white-space: nowrap; + line-height: 20px; + font-size: 1.6rem; + border-bottom: 1px dotted #959595; + margin: 0px 15px 0px 15px; + padding-right: 50px; + padding-bottom: 14px; + padding-top: 14px; + align-self: center; + width: 100%; } + .awd-module-list .module-list-item:hover { + background-color: #f2f2f2; } + .awd-module-list .module-list-item:active { + background-color: #f2f2f2; } + .awd-module-list .module-list-item[aria-selected="true"] { + background-color: #f2f2f2; } + +.module-list-item { + cursor: pointer; + overflow: hidden; + position: relative; + overflow: ellipsis; + white-space: nowrap; + z-index: 1000; + color: #191919; + display: flex; } + .module-list-item:last-of-type .module-data { + border-bottom: none; } + .module-list-item img + span.module-data { + padding-left: 45px; } + +.module-groups:first-of-type .module-list-item:last-of-type .module-data { + border-bottom: 1px solid #959595; } + +.module-groupitem { + padding-bottom: 4px; } + +.selectorModule.large { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .moduleWrapper { + top: 71px; } + .selectorModule.large input { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large button { + height: 72px; + vertical-align: middle; + text-align: left; } + .selectorModule.large .selectModule img { + left: 15px; + top: 21px; } + +ul.module-groupitem li { + margin: 0 -15px 0 -15px; } + +span.module-data span { + display: block; + line-height: 20px; + font-size: 1.5rem; } + +li.module-groups { + cursor: default !important; + padding: 18px 15px 0px 15px; } + +li.module-list-item[selected]:before { + box-sizing: border-box; + display: inline-block; + font-size: 2em; + height: 1em; + position: absolute; + top: 20px; + right: 0px; + vertical-align: middle; + width: 1em; + color: #007a3e; } + +ul.module-optinalcta { + position: relative; + height: 44px; + margin-top: 0px; + border-bottom: 1px solid #d2d2d2; + border-left: 1px solid #d2d2d2; + border-right: 1px solid #d2d2d2; + border-radius: 0px 0px 6px 6px; } + ul.module-optinalcta li { + position: absolute; + bottom: 10px; } + ul.module-optinalcta a { + text-indent: 15px; + padding: 15px; } + +.b2b-slider-container { + position: relative; } + .b2b-slider-container.slider-disabled { + cursor: not-allowed !important; } + .b2b-slider-container div { + position: absolute; } + .b2b-slider-container .slider-track-container { + width: 100%; + cursor: pointer; } + .b2b-slider-container .slider-track { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; } + .b2b-slider-container .slider-track-fill { + width: 100%; + height: 6px; + background-color: #cccccc; + border-radius: 10px; + width: 0; + background-color: #157BB2; + transition: width 0s linear; } + .b2b-slider-container .slider-knob-container { + transition: left 0s linear; } + .b2b-slider-container .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container .slider-knob { + width: 14px; + height: 14px; + border-radius: 10px; + top: -4px; + left: -8px; + border: 1px solid #cccccc; + background: white; + cursor: pointer; } + .b2b-slider-container .slider-knob:focus { + outline: thin dotted #666; } + +.b2b-slider-endpoints-container { + margin-top: 13px; + color: #333; + font-size: 12px; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-left { + float: left; + line-height: 100%; } + .b2b-slider-endpoints-container .b2b-slider-endpoints-right { + float: right; + line-height: 100%; } + .b2b-slider-endpoints-container::after { + clear: both; + content: ""; + display: block; } + +.b2b-slider-container.vertical { + width: 100%; + height: 100%; + margin: 0 auto; + position: relative; + border-radius: 10px; } + .b2b-slider-container.vertical .slider-track-container { + position: relative; + height: 100%; } + .b2b-slider-container.vertical .slider-track { + position: absolute; + height: 100%; } + .b2b-slider-container.vertical .slider-track-fill { + position: absolute; + bottom: 0; + height: 0; + width: 100%; } + .b2b-slider-container.vertical .slider-knob-container { + transition: bottom 0s linear; + position: relative; + bottom: 0; } + .b2b-slider-container.vertical .slider-knob-container.slider-knob-hidden { + display: none !important; } + .b2b-slider-container.vertical .slider-knob { + position: absolute; + border-radius: 10px; + top: -7px; + left: -4px; } + +.icon-primary-spinner { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20id%3D%22svg-spinner%22%20x%3D%220px%22%20y%3D%220px%22%20xml%3Aspace%3D%22preserve%22%3E%0A%20%20%20%3Cpath%20fill%3D%22%23F5F5F5%22%20d%3D%22M18%2036C8.1%2036%200%2027.9%200%2018S8.1%200%2018%200s18%208.1%2018%2018-8.1%2018-18%2018zm0-31.5c-7.5%200-13.5%206-13.5%2013.5S10.6%2031.5%2018%2031.5c7.5%200%2013.5-6.1%2013.5-13.5%200-7.5-6-13.5-13.5-13.5z%22%2F%3E%0A%20%20%20%3Cpath%20fill%3D%22%230568AE%22%20id%3D%22spinner%22%20d%3D%22M30.7%205.3l-3.1%203.2c2.4%202.4%203.9%205.8%203.9%209.5%200%207.4-6.1%2013.5-13.5%2013.5S4.5%2025.4%204.5%2018%2010.6%204.5%2018%204.5V0C8.1%200%200%208.1%200%2018s8.1%2018%2018%2018%2018-8.1%2018-18c0-5-2-9.5-5.3-12.7z%22%3E%0A%20%20%20%20%20%20%3CanimateTransform%20%0A%20%20%20%20%20%20%20%20%20attributeType%3D%22xml%22%0A%20%20%20%20%20%20%20%20%20attributeName%3D%22transform%22%0A%20%20%20%20%20%20%20%20%20type%3D%22rotate%22%0A%20%20%20%20%20%20%20%20%20from%3D%220%2018%2018%22%0A%20%20%20%20%20%20%20%20%20to%3D%22360%2018%2018%22%0A%20%20%20%20%20%20%20%20%20dur%3D%221.0s%22%0A%20%20%20%20%20%20%20%20%20repeatCount%3D%22indefinite%22%0A%20%20%20%20%20%20%2F%3E%0A%20%20%20%3C%2Fpath%3E%0A%3C%2Fsvg%3E"); + height: 50px; + width: 50px; } + +.icon-primary-spinner.small { + margin-right: 5px; + height: 30px !important; + width: 30px !important; } + +.isIE .icon-primary-spinner, +.isIE .icon-primary-spinner.small { + animation: spinner 1s linear infinite; } + +.ds2-no-colors .icon-primary-spinner { + animation: spinner 1s linear infinite; + border: 5px dotted transparent; + border-radius: 50%; } + +@keyframes spinner { + 0% { + transform: rotate(0deg); } + 100% { + transform: rotate(359deg); } } + +.b2b-status-tracker > .btn-arrow:nth-of-type(1) { + margin-right: 10px; } + +.b2b-status-tracker > .btn-arrow:nth-of-type(2) { + margin-left: 20px; } + +.b2b-status-tracker > .btn-arrow { + height: 20px; + margin-top: 25px; + overflow: visible; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-left { + margin-right: 5px; + color: #0574ac; } + .b2b-status-tracker > .btn-arrow > .btn-secondary > .icon-primary-right { + color: #0574ac; } + +.b2b-status-tracker > .b2b-status-tracker-step { + padding: 0; + position: relative; } + +.b2b-status-tracker-step { + margin-left: 5px; } + +.b2b-status-tracker > .b2b-status-tracker-step .b2b-status-tracker-heading { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #767676; + margin-bottom: 10px; } + +.b2b-status-tracker > .b2b-status-tracker-step.complete > .b2b-status-tracker-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #1b7e28; } + +.b2b-status-tracker > .b2b-status-tracker-step.complete > .progress > .progress-bar { + width: 100%; + background-color: #1b7e28; } + +.b2b-status-tracker > .b2b-status-tracker-step.complete > .b2b-status-tracker-estimate { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #333333; } + .b2b-status-tracker > .b2b-status-tracker-step.complete > .b2b-status-tracker-estimate > .icoControls-approval { + color: #1b7e28; } + +.b2b-status-tracker > .b2b-status-tracker-step.current > .b2b-status-tracker-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #333333; } + +.b2b-status-tracker > .b2b-status-tracker-step.current > .progress > .progress-bar { + width: 100%; + background-color: #333333; } + +.b2b-status-tracker > .b2b-status-tracker-step.current > .b2b-status-tracker-estimate > .icon-misc-time { + color: #333333; } + +.b2b-status-tracker > .b2b-status-tracker-step > .progress { + position: relative; + border-radius: 1.5px; + height: 3px; + margin-bottom: 10px; + background-color: #c5c5c5; } + .b2b-status-tracker > .b2b-status-tracker-step > .progress > .progress-bar { + width: 0; + height: 3px; } + +.b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #767676; + margin-bottom: 10px; } + .b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-estimate > .icon-misc-time { + color: #767676; } + +.b2b-status-tracker > .b2b-status-tracker-step > .b2b-status-tracker-description { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 12px; + color: #767676; + padding-right: 15px; } + +.step-indicator { + height: auto; + padding: 40px 0; } + +.step-heading { + color: #333333; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 3.8rem; + line-height: 0.8; } + +.steps { + display: flex; + height: 5px; + margin-top: 60px; + position: relative; } + +.steps li { + color: #5a5a5a; + flex: 1; + margin-right: 5px; + background-color: #c4c4c4; + outline: 1px solid transparent; } + +.steps li:first-child { + border-radius: 4px 0 0 4px; } + +.steps li:last-child { + margin-right: 0; + border-radius: 0 4px 4px 0; } + +.steps li.step-on, +.steps li.step-done { + background-color: #007a3e; + color: #007a3e; + border: 1px solid transparent; } + +.step-text { + bottom: 29px; + display: inline-block; + font-size: 1.8rem; + margin-top: 0; + position: relative; + white-space: nowrap; } + +.step-on .step-text { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + +.step-confirmation { + color: #007a3e; + margin-bottom: 30px; } + +.step-confirmation > div { + display: flex; } + +.step-confirmation > div i { + color: #007a3e; + font-size: 50px; + margin-right: 10px; } + +.step-confirmation.centered > div i { + margin-left: -60px; } + +.step-confirmation > div h3 { + font-size: 2.4rem; + margin: 26px 0 20px; } + +.step-confirmation > p { + margin: 0; } + +@media (max-width: 1024px) { + .step-indicator { + padding: 25px 0; } + .steps { + margin-top: 0; } + .step-heading { + font-size: 2.4rem; + margin-bottom: 11px; } + .step-text { + display: none; } + .step-on .step-text { + bottom: 6px; + display: block; + font-size: 1.2rem; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } + .steps li .step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; + color: #333333; } + .step-confirmation { + margin-top: 30px !important; } } + +@media (max-width: 767px) { + .step-confirmation.centered > div i { + margin-left: 0; } + .step-confirmation.centered > p { + margin-left: 40px; } + .step-confirmation > div h3 { + font-size: 1.8rem; + margin: 13px 0 10px; } + .step-confirmation > div i { + font-size: 30px; + margin-right: 10px; } } + +.step-indicator.vertical { + height: auto; } + +.vertical .step-heading { + font-size: 24px; } + +.vertical .steps { + display: block; + height: inherit; + width: 100%; } + +.vertical .steps li { + align-items: center; + background-color: transparent; + display: flex; + height: 60px; + margin: 0 0 4px; + padding: 0 0 0 20px; + position: relative; } + +.vertical .steps li .step-text { + align-self: center; + color: #0568ae; + display: block; + margin: 0; + position: relative; + font-size: 14px; + top: 0; } + +.vertical .steps li .step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + +.vertical .steps li:after { + background-color: transparent; + border-left: 4px solid #d2d2d2; + content: ""; + height: 60px; + left: 0; + margin: 0; + padding: 0; + position: absolute; + top: 0; + width: 4px; } + +.vertical .steps li.step-on:after, +.vertical .steps li.step-done:after { + border-color: #0568ae; } + +.b2b-step-tracker { + height: auto; + padding: 0px 0px 0px 0px; } + .b2b-step-tracker .btn.btn-left { + margin-right: 10px; } + .b2b-step-tracker .btn.btn-right { + margin-left: 5px; } + .b2b-step-tracker .b2b-left-arrow { + float: left; + margin-top: -5px; } + .b2b-step-tracker .b2b-right-arrow { + float: right; + margin-top: -5px; } + .b2b-step-tracker .b2b-steps { + display: flex; + height: 5px; + margin-top: 30px; + position: relative; } + .b2b-step-tracker .b2b-steps li { + color: #767676; + flex: 1; + margin-right: 5px; + background-color: #767676; + outline: 1px solid transparent; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-done { + background-color: #1b7e28; + color: #007a3e; + height: 3px; } + .b2b-step-tracker .b2b-steps li.b2b-step-on { + background-color: #333333; + color: #333333; + height: 3px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + bottom: 29px; + display: inline-block; + font-size: 14px; + margin-top: 0; + position: relative; + white-space: nowrap; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-large-text]:before { + content: attr(data-large-text) " "; } + .b2b-step-tracker .b2b-steps li:first-child { + border-radius: 2px 0 0 2px; } + .b2b-step-tracker .b2b-steps li:last-child { + margin-right: 0; + border-radius: 0 2px 2px 0; } + +@media (max-width: 1024px) { + .b2b-step-tracker { + padding: 25px 0; } + .b2b-step-tracker .b2b-steps { + margin-top: 0; } + .b2b-step-tracker .b2b-steps li .b2b-step-text { + display: none; } + .b2b-step-tracker .b2b-steps li .b2b-step-text[data-sm-text]:before { + content: attr(data-sm-text) " "; + color: #333333; } + .b2b-step-tracker .b2b-steps li.b2b-step-on .b2b-step-text { + bottom: 6px; + display: block; + font-size: 10px; + left: 0; + line-height: 1; + margin-top: 10px; + position: absolute; + top: 4px; } } + +.strength-meter-container { + height: 26px; + max-width: 450px; } + +.strength-meter-gauge { + border-radius: 2px; + background-color: #d2d2d2; + height: 5px; + display: block; + position: relative; + outline: 1px solid transparent; } + +.strength-meter-gauge-fill { + height: 100%; + display: block; + border-radius: 2px; + text-indent: -9999px; + width: 0%; + border: 2px solid transparent; } + +.strength-meter-gauge-fill.strength-meter-animate { + transition: width 0.5s linear, background-color 0.5s linear; } + +.strength-meter-animate[style*="20"] { + background-color: #cf2a2a; } + +.strength-meter-animate[style*="20"] + .strength-meter-divider + .strength-meter-content:after { + content: "Unacceptable"; } + +.strength-meter-animate[style*="40"] { + background-color: #ea7400; } + +.strength-meter-animate[style*="40"] + .strength-meter-divider + .strength-meter-content:after { + content: "Weak"; } + +.strength-meter-animate[style*="60"] { + background-color: #ea7400; } + +.strength-meter-animate[style*="60"] + .strength-meter-divider + .strength-meter-content:after { + content: "Fair"; } + +.strength-meter-animate[style*="80"] { + background-color: #007a3e; } + +.strength-meter-animate[style*="80"] + .strength-meter-divider + .strength-meter-content:after { + content: "Good"; } + +.strength-meter-animate[style*="100"] { + background-color: #007a3e; } + +.strength-meter-animate[style*="100"] + .strength-meter-divider + .strength-meter-content:after { + content: "Excellent"; } + +.strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; + overflow: hidden; } + +.strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + +.strength-meter-divider span:first-child { + border-radius: 2px 0 0 2px; } + +.strength-meter-divider span + .strength-meter-divider span { + border-radius: 0; } + +.strength-meter-divider span:last-child { + border-radius: 0 2px 2px 0; + border-right: 0; } + +.strength-meter-content { + font-size: 14px; + line-height: 1; + padding-top: 7px; + position: absolute; } + +.strength-meter-content:before { + font-family: "Omnes-ECOMP-W02", Arial; + content: "Password strength: "; } + +.strength-meter-content:after { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.strength-meter-container { + height: 26px; + min-width: 290px; + max-width: 450px; } + +.strength-meter-container .strength-meter-gauge { + border-radius: 2px; + background-color: #cccccc; + box-shadow: 0 1px 1px -1px #333 inset; + height: 5px; + display: block; + overflow: hidden; + position: relative; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill { + height: 100%; + box-shadow: 0 1px 1px -1px #999 inset; + display: block; + text-indent: -9999px; + width: 0%; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-gauge-fill.strength-meter-animate { + transition: width 0ms ease-out, background-color 0ms ease-in; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-divider { + position: absolute; + top: 0; + bottom: 0; + left: 0; + right: 0; + display: flex; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-divider span { + background: transparent; + display: block; + flex-grow: 1; + border-right: solid 1px #fff; } + +.strength-meter-container > .strength-meter-gauge > .strength-meter-divider span:last-child { + border-right: 0; } + +.strength-meter-container > .strength-meter-content { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + line-height: 1; + padding-top: 7px; } + +.strength-meter-container > .strength-meter-content:before { + content: none; } + +.strength-meter-container > .strength-meter-content > .strength-meter-content-state { + font-family: "Omnes-ECOMP-W02-Medium", Arial; } + +.btn-switch-label { + display: flex; + align-items: center; } + .btn-switch-label:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label input:focus .btn-switch { + outline: 1px dotted #666; + outline-offset: 5px; } + .btn-switch-label > span { + flex: 1; } + +.btn-switch { + background-color: #fff; + border: 1px solid #d2d2d2; + border-radius: 16px; + box-shadow: 0 4px 5px -5px rgba(0, 0, 0, 0.15) inset, 0 5px 5px -5px rgba(0, 0, 0, 0.15); + height: 32px; + overflow: hidden; + position: relative; + width: 80px; + user-select: none; } + .btn-switch input[type="checkbox"] { + left: 0; + margin: 0; + opacity: 0; + position: absolute; + top: 0; + transition: none; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on .activo { + font: 0px/0 "Omnes-ECOMP-W02"; } + .btn-switch input[type="checkbox"] + .switch-overlay .btn-slider-on + .btn + .btn-slider-off .inactivo { + font: 0px/0 "Omnes-ECOMP-W02"; } + .btn-switch input:checked + .switch-overlay { + left: 0; + transition: all .3s linear .0s; } + .btn-switch input:checked + .switch-overlay .switch-handle { + background-color: #007a3e; + background: linear-gradient(to bottom, #008744 0%, #007a3e 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid transparent; } + .btn-switch input + .switch-overlay { + left: -48px; + transition: all .3s linear .0s; } + .btn-switch input + .switch-overlay .switch-handle { + background-color: #f2f2f2; + background: linear-gradient(to bottom, #fcfcfc 0%, #f2f2f2 100%); + transition: background-color 0.3s linear 0s; + border: 1px solid #d2d2d2; } + .btn-switch input[disabled] + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #d2d2d2; + color: #959595; + cursor: not-allowed !important; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[disabled] + .switch-overlay .activo { + display: none; } + .btn-switch input[disabled] + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled] + .switch-overlay .btn-slider-off { + left: 0; + text-align: center; + padding: 0; } + .btn-switch input[disabled]:checked + .switch-overlay { + left: 0; + width: 100% !important; + background-color: #fff; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-off + .inactivo { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .switch-handle { + display: none; } + .btn-switch input[disabled]:checked + .switch-overlay .btn-slider-on { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .switch-overlay .activo { + display: block; + text-align: center; + padding: 0; + color: #007a3e !important; + font-weight: bold; } + .btn-switch input[disabled]:checked + .btn-slider-on { + display: block; } + .btn-switch input[disabled] + .btn-slider-on + .switch-handle { + width: 100%; + margin: 0; } + .btn-switch input[disabled] + .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02"; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on .activo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: block; + padding: 0; + text-align: center; + color: #333333; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo { + border: medium none; + color: #666; + font: 16px/32px "Omnes-ECOMP-W02"; + height: auto; + margin: 0 auto; + width: auto; } + .btn-switch input[type="checkbox"][disabled] + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off .inactivo:before { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on { + display: block; + padding: 0; + text-align: center; + color: #007a3e; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .btn-slider-on + .switch-handle + .btn-slider-off { + display: none; } + .btn-switch input[type="checkbox"][disabled]:checked + .switch-overlay .activo { + color: #007a3e; + font-weight: bold; } + +.switch-overlay { + border-radius: 16px; + color: black !important; + font-size: 1.6rem; + height: 32px; + left: 0; + position: absolute; + top: -1px; + width: 126px; + overflow: hidden; } + +.btn-slider-on { + left: -1px; + text-align: left; + padding-left: 12px; + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; } + +.btn-slider-off { + display: inline-block; + font-family: "Omnes-ECOMP-W02", Arial; + height: 32px; + line-height: 32px; + position: absolute; + top: 1px; + width: 80px; + right: 1px; + text-align: right; + padding-right: 11px; } + +.switch-handle { + border-radius: 50%; + display: inline-block; + height: 26px; + left: 50px; + position: absolute; + top: 3px; + width: 26px; } + +.activo { + display: block; + font-size: 0.1px; + line-height: 40px; + overflow: hidden; } + .activo:before { + background-image: none; + border-left: 3px solid #007a3e; + content: " "; + height: 18px; + left: 22px; + margin: 2px auto; + position: absolute; + top: 5px; + width: 0; } + +.inactivo { + font-size: 0.1px; + line-height: 40px; } + .inactivo:before { + background-image: none; + border: 3px solid #959595; + border-radius: 100%; + content: " "; + display: block; + position: absolute; + top: 4px; + right: 3px; + height: 16px; + width: 16px; } + +table { + max-width: 100%; + background-color: transparent; + border-collapse: collapse; + border-spacing: 0; + width: 100%; + margin-bottom: 20px; } + +table caption { + text-align: left; } + +table thead th { + vertical-align: bottom; } + +table th, +table td { + padding: 19px 20px; + line-height: 1; + font-size: 1.4rem; + text-align: left; + vertical-align: top; + word-wrap: break-word; } + +table th { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 1.6rem; + font-weight: normal; + color: #333333; + padding: 13px 20px; } + +table tbody td { + border-left: 1px solid #d2d2d2; + border-top: 1px solid #d2d2d2; } + +table tbody td:first-child { + border-left: none; } + +.tiny-accordion.iconleft.accordion-table-layout .toggle-header, +.tiny-accordion.iconleft.accordion-table-layout .toggle-header + .accordion-content, +.tiny-accordion.iconleft.accordion-table-layout .inactive-toggle-header { + padding: 0 0 0 50px; } + +.faux-table-cell, +.inactive-toggle-header .faux-table-cell { + display: table-cell; + width: 100%; + padding: 13px 0 10px 0; + font-size: 16px; + color: #333333; } + +.accordion-content .faux-table-cell { + display: table-cell; + width: 100%; + padding: 0 0 10px 0; } + +.faux-table-cell:last-child { + text-align: right; + min-width: 100px; + max-width: 150px; + width: 1%; + background-color: #f2f2f2; + color: #333333; + font-size: 14px; + border-left: 1px solid #d2d2d2; + padding: 0 20px 0 10px; } + +.tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { + opacity: 1; } + +.tiny-accordion.iconleft.accordion-table-layout .toggle-header.opened .hide-when-expanded { + opacity: 0; + transition: opacity .3s linear .2s; } + +@media (max-width: 767px) { + table th, + table td { + padding: 19px 10px; } + table th:first-child, + table td:first-child { + padding: 19px 15px; } } + +.data-row-list ul > li { + background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewport%3D%220%200%201%201%22%20style%3D%22width%3A100%25%3B%20height%3A1px%3B%22%3E%3Cstyle%3Eline%7Bstroke%3Argba(153%2C153%2C153%2C1)%3Bstroke-width%3A2%3B%7D%3C%2Fstyle%3E%3Cline%20y2%3D%221%22%20y1%3D%221%22%20x1%3D%221%22%20x2%3D%22100%25%22%20stroke-dasharray%3D%221%2C%203%22%2F%3E%3C%2Fsvg%3E") !important; } + +table { + border-bottom: 1px solid #d2d2d2; } + +table th, +table td { + padding: 15px 15px 10px; } + +.data-row .col-1 { + white-space: nowrap; + padding: 15px 15px 0 15px; + position: relative; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + border-top: 1px solid #d2d2d2; } + +.data-row.has-button .col-1 { + padding: 0; } + +.complex-table .data-row .col-1 { + color: #0568ae; + cursor: pointer; } + +.data-row.opened { + box-shadow: 0 -2px 0 0 #d2d2d2; } + +.data-row.opened td, +.data-row.opened th { + border-left: 1px solid transparent; + border-bottom: 1px solid transparent; } + +.data-row.opened + .data-row-list { + box-shadow: 0 1px 0 0 #d2d2d2; } + +.data-row.opened + .data-row-list > td { + padding-top: 0; } + +.data-row.opened + .data-row-list + .data-row.opened { + box-shadow: 0 -1px 0 0 #d2d2d2; } + +.data-row button { + background-color: transparent; + border: medium none; + border-radius: 0; + color: #0568ae; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + left: 0; + margin: 0; + padding: 12px 15px 7px; + position: relative; + text-align: left; + top: 0; + vertical-align: middle; } + +.data-row button:focus { + outline: 1px dotted black; } + +.data-row .col-1 i { + top: -1px; + margin-right: 10px; + display: inline-block !important; } + +.data-row-list th:first-child { + background-color: inherit !important; + border-top: none; + padding: 0 15px 15px; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; } + +.data-row-list ul { + margin: 0 0 0 30px; } + +.data-row-list ul > li:before { + display: none; } + +.data-row-list ul > li { + /* background-image in tables.less */ + background-position: left 13px; + background-repeat: repeat-x; + background-size: 4px 1px; + display: table; + padding-left: 0; + width: 100%; } + +.data-row-list li div { + display: table-cell; + background-color: white; + float: left; + text-align: left; + padding-left: 0; + padding-right: 7px; } + +.data-row-list li div + div { + float: right; + text-align: right; + padding-right: 0; + padding-left: 7px; } + +.complex-table td:nth-child(1), +.complex-table td:nth-child(2), +.complex-table td:nth-child(3), +.complex-table td:nth-child(4), +.complex-table td:nth-child(5), +.complex-table td:nth-child(6), +.complex-table td:nth-child(7), +.complex-table td:nth-child(8), +.complex-table td:nth-child(9) { + white-space: nowrap; } + +th:nth-child(8) { + word-wrap: break-word; + word-spacing: 0; } + +.align-col-right { + text-align: right; } + +.complex-table th:not(:first-child), +.complex-table td:not(:first-child) { + text-align: right; } + +.striped tbody > tr td { + background-color: transparent !important; } + +.striped tbody > tr.data-row.odd, +.striped tbody > tr.data-row.odd + .data-row-list, +.striped tbody > tr.data-row.odd + .data-row-list li div { + background-color: #f2f2f2 !important; } + +.striped tbody > tr:not('.data-row'):nth-child(even) { + background-color: #f2f2f2; } + +.b2b-table-div .selectWrap { + width: 290px; + position: relative; + left: 10px; + display: inline-table; + margin-bottom: 0px; } + +.b2b-external-sort-div { + float: right; + padding-bottom: 25px; } + +.b2b-external-sort-div .sortButton { + font-size: 36px; + border: 1px solid #ccc; + background: #FFF; + border-radius: 6px; } + +.b2b-external-sort-label { + padding-bottom: 10px; } + +.b2b-external-sort-div a:hover { + cursor: pointer; } + +.b2b-external-sort-div a:hover, .b2b-external-sort-div a:focus { + text-decoration: none; } + +.b2b-external-sort-label label { + position: relative; + left: 10px; } + +.tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { + background: 0 0; + cursor: default; } + +.tablesorter-default .tablesorter-header .tablesorter-header-inner { + /* background-image: url(images/tables/upanddown.png);*/ + background-position: center right; + background-repeat: no-repeat; + cursor: pointer; + white-space: normal; + display: inline-block; + vertical-align: baseline; + zoom: 1; + *display: inline; + *vertical-align: auto; + /* padding: 0 24px 0 0;*/ } + +.tablesorter-default .tablesorter-header.sorter-false .tablesorter-header-inner { + padding: 0; } + +.tablesorter-default .tablesorter-header.tablesort-sortable .tablesorter-header-inner span { + margin-right: 24px; + display: inline-block; } + +/* +.tablesorter-default thead .headerSortUp .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner { + background-image: url(images/tables/up.png); +} + +.tablesorter-default thead .headerSortDown .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner,.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { + background-image: url(images/tables/down.png); +} +*/ +.tablesorter-default thead .headerSortUp .tablesorter-header-inner, +.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner, +.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner, +.tablesorter-default thead .headerSortDown .tablesorter-header-inner, +.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner, +.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner { + padding-right: 0; + line-height: 16px; } + +.tablesorter-default thead .headerSortUp .tablesorter-header-inner:after, +.tablesorter-default thead .tablesorter-headerAsc .tablesorter-header-inner:after, +.tablesorter-default thead .tablesorter-headerSortUp .tablesorter-header-inner:after { + font-family: 'icoPrimary' !important; + speak: none; + font-style: normal; + font-size: 24px; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 14px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -moz-user-select: none; + -ms-user-select: none; + -webkit-user-select: none; + user-select: none; + content: "\ea3c"; + /* position: relative;*/ + position: absolute; + text-decoration: inherit; + display: inline-block; + transform: rotate(180deg); + margin-left: -22px; + margin-top: 2px; } + +.tablesorter-default thead .headerSortDown .tablesorter-header-inner:after, +.tablesorter-default thead .tablesorter-headerDesc .tablesorter-header-inner:after, +.tablesorter-default thead .tablesorter-headerSortDown .tablesorter-header-inner:after { + font-family: 'icoPrimary' !important; + speak: none; + font-style: normal; + font-size: 24px; + font-weight: normal; + font-variant: normal; + text-transform: none; + line-height: 14px; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + -moz-user-select: none; + -ms-user-select: none; + -webkit-user-select: none; + user-select: none; + content: "\ea3c"; + /* position: relative;*/ + position: absolute; + text-decoration: inherit; + display: inline-block; + margin-left: -22px; + margin-top: 2px; } + +.tablesorter-search-highlight { + font-weight: 700; } + +.tablesorter-headerRow th:focus { + outline: thin dotted #666; + outline-offset: -1px; } + +.b2b-table-message { + font-family: "Omnes-ECOMP-W02", Arial; } + .b2b-table-message .b2b-magnify-glass { + background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%20enable-background%3D%22new%200%200%2036%2036%22%3E%3Cpath%20d%3D%22M27.847%208.26c-1.805-1.803-4.202-2.795-6.751-2.795-2.548%200-4.945.993-6.749%202.796-1.803%201.803-2.796%204.2-2.796%206.75%200%201.879.543%203.681%201.576%205.242l-7.059%207.059c-.357.356-.554.831-.554%201.336-.001.505.196.98.554%201.337.357.356.832.552%201.336.552.503%200%20.977-.196%201.336-.553l7.047-7.048c1.576%201.062%203.402%201.622%205.309%201.622%202.55%200%204.948-.993%206.751-2.796%201.803-1.804%202.796-4.201%202.796-6.751%200-2.549-.993-4.947-2.796-6.751zm-6.761.96c3.186%200%205.778%202.592%205.778%205.778%200%203.186-2.592%205.778-5.778%205.778-3.186%200-5.778-2.592-5.778-5.778%200-3.185%202.592-5.778%205.778-5.778z%22%20fill%3D%22%23767676%22%2F%3E%3C%2Fsvg%3E"); + background-repeat: no-repeat; + background-position: center; + height: 50px; } + .b2b-table-message .b2b-alert { + font-size: 50px; } + .b2b-table-message .b2b-loading-dots { + font-size: 50px; + margin-bottom: 20px; } + .b2b-table-message .b2b-message { + text-align: center; + padding-bottom: 45px; + padding-top: 40px; + border-style: solid; + border-width: 1px; + border-top: none; + padding-bottom: 45px; + border-color: #d2d2d2; + width: 100%; + min-height: 220px; } + .b2b-table-message .b2b-error-title { + font-family: "Omnes-ECOMP-W02", Arial; + color: #444444; + line-height: 26px; + margin-top: 10px; } + .b2b-table-message .b2b-message-title { + color: #444; + font-family: "Omnes-ECOMP-W02", Arial; } + +.b2b-table-scrollbar { + border: 1px solid; + width: 651px; } + .b2b-table-scrollbar .b2b-table-inner-container { + width: 650px; + padding-left: 150px; + overflow-x: scroll; } + .b2b-table-scrollbar th:first-child { + background-color: #FFFFFF; } + .b2b-table-scrollbar td:first-child { + background-color: #FFFFFF; + border-top: 1px solid #cccccc; + border-right: 1px solid #cccccc; + margin-top: -0.5px; } + .b2b-table-scrollbar tr { + th: nth-child(2), td; } + .b2b-table-scrollbar tr :nth-child(2) { + border-left: none; } + .b2b-table-scrollbar tr:last-child > td:first-child { + border-bottom: 1px solid #cccccc; } + +.b2b-scrollbar-arrow-left { + float: left; + margin: 10px; } + +.b2b-scrollbar-arrow-right { + float: right; + clear: right; + margin: 10px; } + .b2b-scrollbar-arrow-right.btn-arrow .btn { + margin-right: 0; } + +.b2b-table-scrollbar ::-webkit-scrollbar { + height: 10px; } + +.b2b-table-scrollbar ::-webkit-scrollbar-thumb { + background: #666666; + border-radius: 5px; } + +.tabs { + margin-left: 0; + margin-bottom: 20px; + list-style: none; } + +.tabs > li > a { + display: block; } + +.tabs > li > a:hover, +.tabs > li > a:focus { + text-decoration: none; + background-color: #d2d2d2; } + +.tabs > .pull-right { + float: right; } + +.tabs:before, +.tabs:after { + display: table; + content: ""; + line-height: 0; } + +.tabs:after { + clear: both; } + +.tabs > li { + float: left; } + +.tabs > li > a { + padding-right: 20px; + padding-left: 20px; + margin-right: 3px; + line-height: 16px; } + +.tabs { + margin: 0; } + +.tabs > li { + margin-bottom: -1px; } + +.tabs > li:first-child { + margin-left: 20px; } + +.tabs > li > a { + padding: 12px 20px; + border: 1px solid #d2d2d2; + border-radius: 6px 6px 0 0; + background-color: #f2f2f2; + color: #5a5a5a; + border-color: #d2d2d2; } + +.tabs > li > a { + margin-right: 6px; } + +.tabs > li > a, +.tabs > li > a:hover, +.tabs > li > a:focus { + background-image: none; + background-color: #ffffff; + color: #5a5a5a; + border-color: #d2d2d2; + border-bottom: 1px solid transparent; + cursor: pointer; } + +.tabs.tabs-justified, +.tabs.promo-tabs { + width: 100%; + border-bottom: 0; + margin-bottom: -1px; } + +.tabs.tabs-justified > li, +.tabs.promo-tabs > li { + display: table-cell; + float: none; + width: 1%; + border-left: 1px solid #d2d2d2; } + +.tabs.tabs-justified > li.active, +.tabs.promo-tabs > li.active { + position: relative; + z-index: 1000; } + +.tabs.tabs-justified > li > a { + padding-right: 5px; + padding-left: 5px; } + +.tabs.tabs-justified > li > a, +.tabs.promo-tabs > li > a { + text-align: center; } + +.tabs.promo-tabs > li > a { + padding: 0; + margin: 0; + border-radius: 0; + border: none; + color: #0568ae; + font-size: 1.2rem; + text-align: center; + padding: 6px 10px 10px; + border-top: 4px solid #e6e6e6; + filter: none; + border-bottom: 1px solid #d2d2d2; + background-color: #f9f9f9; } + +.tabs > li:last-child > a { + margin-right: 0; } + +.tabs.promo-tabs > li.active > a { + color: #333333; + border-top: 4px solid #ea7400; + border-bottom-color: white; + background-color: #fff !important; + filter: none; + cursor: default; } + +.tabs.promo-tabs > li:first-child { + border-left: none; } + +.tabs.promo-tabs > li > a img { + max-width: inherit; + max-height: 39px; + margin: 0 auto 5px auto; + display: block; } + +.tabbable:before, +.tabbable:after { + display: table; + content: ""; + line-height: 0; } + +.tabbable:after { + clear: both; } + +.tab-content { + overflow: auto; + border: 1px solid #e6e6e6; } + +.tabs.promo-tabs + .tab-content { + border: none; + border-bottom: 1px solid #e6e6e6; } + +.tab-content > .tab-pane { + padding: 10px 15px; } + +.tab-content.noborder { + border: none; } + +.tab-content.noborder > .tab-pane { + padding: 0; } + +.tab-content > .tab-pane { + display: none; } + +.tab-content > .active { + display: block; } + +.tabs.promo-tabs > li > a { + font-size: 2.0rem; + height: 70px; + padding: 20px 20px 24px; + background-color: #FFFFFF; + border-top: 5px solid #FFFFFF; + white-space: nowrap; } + +.tabs.promo-tabs > li.active > a { + border-top: 5px solid #0574ac; } + +.tabs.promo-tabs > li > a:hover { + color: #333333; } + +.tabs.promo-tabs > li { + width: auto; } + +.tabs > li[disabled="disabled"] > a:hover { + cursor: not-allowed; } + +.b2b-tags { + background-color: #f2f2f2; + -webkit-transition: all .3s ease-out; + -moz-transition: all .3s ease-out; + transition: all .3s ease-out; + margin: 3px 5px 3px 0; + padding: 2px 15px; + border-radius: 6px; + border: 1px solid #c9c9c9; + display: inline-block; } + .b2b-tags .tags__item { + font-size: 14px; + vertical-align: baseline; + zoom: 1; + color: #333; } + .b2b-tags .tags__item i { + color: #0574ac; + font-size: 14px; + font-weight: bold; + margin-left: 10px; } + .b2b-tags .tags__item i:hover { + cursor: pointer; } + .b2b-tags .tags__item i:focus { + outline: thin dotted #666; } + .b2b-tags .tags__item:last-child { + margin-right: 0; } + .b2b-tags .tags__item:hover { + text-decoration: none; } + .b2b-tags .tags__item:focus { + outline: 1px dotted #666; } + +.tooltip-size-control { + display: block; } + +.tooltip { + display: inline-block; + height: 20px; + vertical-align: middle; + margin: 1px 0 0 7px; } + +p .tooltip { + margin: -3px 7px 0 0; } + +label .tooltip { + margin: 1px 0 0 7px; } + +.tooltip .icon-primary-tooltip { + background: none; + border: none; + display: inline-block; + font-size: 20px; + height: 20px; + margin: 0; + position: relative; + width: 20px; } + +.tooltip .icon-primary-tooltip:before { + top: 0; } + +.tooltip .icon-primary-tooltip:focus { + text-decoration: none; + outline: 1px dotted black; } + +.tooltip.active .icon-primary-tooltip:focus { + outline: none; } + +.tooltip .arrow { + display: none; + border-color: transparent; + border-style: solid; + background-color: #0568ae; + height: 20px; + width: 20px; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + opacity: 0; + transform: rotate(45deg); } + +.tooltip.active .icon-primary-tooltip[data-placement="top"] .arrow { + display: block; + bottom: 32px; + top: auto; + border-width: 0 1px 1px 0; } + +.tooltip.active .icon-primary-tooltip[data-placement="bottom"] .arrow { + border-width: 1px 0 0 1px; + display: block; + bottom: -33px; + top: auto; } + +.tooltip.active .arrow { + opacity: 1; } + +.tooltip .closingtooltip { + display: block; } + +.tooltip.active .closingtooltip { + display: none; } + +.tooltip-wrapper { + position: absolute; + margin-top: 20px; + left: 15px; + right: 15px; + display: none; + opacity: 0; + z-index: 1010; + text-align: left; } + +.helpertext { + background-color: #0568ae; + border: 1px solid transparent; + border-radius: 6px; + color: #fff; + display: none; + margin: 0; + padding: 25px; + position: relative; + text-align: left; + width: 100%; + top: 0; + z-index: 1009; } + +.tooltip .helpertext { + position: absolute; } + +.tooltip.active .icon-primary-tooltip[data-placement="bottom"] + .tooltip-wrapper .helpertext { + bottom: inherit; + top: 19px; } + +.tooltip.active .icon-primary-tooltip[data-placement="top"] + .tooltip-wrapper .helpertext { + top: inherit; + bottom: 38px; } + +.tooltip.active .tooltip-wrapper { + opacity: 1; + display: block; + margin-top: 0; } + +.tooltip.active .tooltip-wrapper .helpertext { + display: block; } + +.tooltip-onclick .btn.icon-primary-tooltip { + border: medium none; + box-shadow: none; + color: #0568ae; + font-size: 20px; + height: 34px; + line-height: 36px; + margin: 0; + min-width: 50px; + padding: 0; + position: absolute; + right: 0; + top: 0; } + +.tooltip-onclick .icon-primary-tooltip:before { + display: inline; + position: relative; } + +.tooltip-onclick textarea + .reset-field + .icon-primary-tooltip { + top: 4px; + right: 5px; + min-width: 40px; } + +.tooltip-onclick.active .helpertext:before, +.tooltip-onfocus.active .helpertext:before { + background-color: #0568ae; + border-color: transparent; + border-style: solid; + border-width: 1px 1px 0 0; + content: ""; + display: block; + height: 15px; + left: 17px; + margin: 0; + position: absolute; + top: -7px; + transform: rotate(-45deg); + width: 15px; } + +.tooltip-onclick.active .helpertext { + display: block; + opacity: 1; + margin: 14px 0 0; } + +.tooltip-onclick.active .helpertext:before { + left: inherit; + right: 18px; } + +.tooltip-onclick .reset-field { + right: 37px; } + +.tooltip-onclick .reset-field:before { + position: relative; + top: -1px; } + +.tooltip-onfocus.active .helpertext { + display: block; + margin: 14px 0 10px 0; } + +.popover-title { + display: block; + font-size: 14px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-weight: bold; + margin-bottom: 8px; + white-space: normal; } + +.popover-content { + display: block; + font-size: 12px; + font-family: "Omnes-ECOMP-W02", Arial; + line-height: 1.5rem; + white-space: normal; } + +.popover-content span, +.popover-content p { + line-height: 1.5rem; } + +.popover-content p:last-child { + margin-bottom: 0; } + +.tooltip .tooltip-element { + position: relative; } + +.tooltip .icon-primary-tooltip:hover { + text-decoration: none; } + +.tooltip.active .tooltip-element[data-placement="top"] .arrow { + display: block; + bottom: 32px; + top: auto; } + +.tooltip.active .tooltip-element[data-placement="bottom"] .arrow { + display: block; + border-color: transparent transparent #0574ac; + bottom: -33px; + top: auto; } + +.tooltip.active .tooltip-element[data-placement="bottom"] + .tooltip-wrapper .helpertext { + bottom: inherit; + top: 19px; } + +.tooltip.active .tooltip-element[data-placement="top"] + .tooltip-wrapper .helpertext { + top: inherit; + bottom: 38px; } + +.b2b-tree { + padding: 0 10px 0 10px; + width: 320px; } + .b2b-tree ul { + list-style: none; + list-style-type: none; } + .b2b-tree a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + font-size: 1.4rem; + outline-offset: -1px; } + .b2b-tree li:focus { + outline: none; } + .b2b-tree li:focus > a { + outline: thin dotted #666; + outline-offset: -1px; } + .b2b-tree ul li { + border-left: 1px solid #ccc; } + .b2b-tree ul li.bg > a { + color: #333; + background-image: url("../style/images/treebg.png"); } + .b2b-tree ul li .b2b-tree-tooltip { + display: none; + position: absolute; + top: -25px; + left: 100%; + white-space: nowrap; + margin-left: 10px; + z-index: 1010; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 12px; } + .b2b-tree ul li .b2b-tree-tooltip-content { + background-color: #0568ae; + margin-left: 9px; + border-radius: 6px; + color: #fff; + padding: 25px; } + .b2b-tree ul li .b2b-tree-arrow-left { + width: 0; + height: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + border-right: 10px solid #0568ae; + position: absolute; + top: 25px; } + .b2b-tree ul li.activeTooltip > a .b2b-tree-tooltip { + display: block; } + .b2b-tree ul ul { + padding: 0 0 0 20px; } + .b2b-tree ul > li { + position: relative; + line-height: 18px; } + .b2b-tree a > span.b2b-tree-node-icon { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; + line-height: 14px; + width: 11px; } + .b2b-tree a > span.b2b-tree-node-icon > i { + font-size: 20px; } + .b2b-tree a:only-child { + color: #0574ac; } + .b2b-tree a:only-child > span.b2b-tree-node-icon { + left: -11px; + border-radius: 50%; + line-height: 7px; + top: 0; } + .b2b-tree a:only-child > span.b2b-tree-node-icon > i { + background-color: inherit; + background: #fff; } + .b2b-tree a > span.b2b-tree-node-icon > i.icon-primary-circle { + background-color: inherit; + background: #fff; + font-size: 10px; } + .b2b-tree a.b2b-locked-node:after { + content: "\ec58"; + float: right; + font-family: 'icoSecurityalerts' !important; } + .b2b-tree a:hover .b2b-locked-node:after { + text-decoration: none; } + .b2b-tree ul li:first-child > a:only-child > span.b2b-tree-node-icon { + left: -11px; + border-radius: 50%; + line-height: 12px; } + .b2b-tree ul li:last-child > a:only-child > span.b2b-tree-node-icon { + height: 27px; + background-color: #fff; } + .b2b-tree li a + ul { + height: 0; + overflow: hidden; } + .b2b-tree li a.active + ul { + height: auto; + overflow: visible; } + .b2b-tree li a.grp { + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + .b2b-tree li a.grp.active { + color: #333; } + .b2b-tree span.end { + left: -6px !important; + top: 5px !important; } + .b2b-tree span.first-link { + width: 3px !important; + height: 15px !important; + top: 0px !important; + left: -2px !important; + background: #fff; } + +.b2b-tree-checkbox { + padding: 0 10px 0 10px; + width: 320px; } + .b2b-tree-checkbox ul { + list-style: none; + list-style-type: none; } + .b2b-tree-checkbox a { + display: block; + padding: 0 0 5px 30px; + line-height: 22px; + margin-left: -10px; + font-size: 14px; + outline-offset: -1px; } + .b2b-tree-checkbox li:focus { + outline: none; } + .b2b-tree-checkbox li:focus > a { + outline: thin dotted #666; + outline-offset: -1px; } + .b2b-tree-checkbox ul li { + border-left: 1px solid #ccc; } + .b2b-tree-checkbox ul ul { + padding: 0 0 0 20px; } + .b2b-tree-checkbox ul > li { + position: relative; + line-height: 18px; } + .b2b-tree-checkbox a > span.nodeIcon { + background-color: #FFF; + display: inline; + margin: 0; + padding: 0; + position: absolute; + left: -11px; + top: 0; + line-height: 14px; + width: 11px; } + .b2b-tree-checkbox a > span.nodeIcon > i { + font-size: 20px; } + .b2b-tree-checkbox a > span.nodeIcon.end { + margin-top: 10px; } + .b2b-tree-checkbox a:only-child { + color: #0574ac; } + .b2b-tree-checkbox a:only-child > span.nodeIcon { + left: -11px; + border-radius: 50%; + line-height: 7px; + top: 0; } + .b2b-tree-checkbox a:only-child > span.nodeIcon > i { + background-color: inherit; + background: #fff; } + .b2b-tree-checkbox a > span.nodeIcon > i.icon-primary-circle { + background-color: inherit; + background: #fff; + font-size: 10px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span { + left: -11px; + border-radius: 50%; + line-height: 12px; + top: 0px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span.end { + margin-top: 0px; } + .b2b-tree-checkbox ul li:first-child > a:only-child > span i.icon-primary-circle { + top: 8px; } + .b2b-tree-checkbox ul li:last-child > a:only-child > span { + height: 34px; + background-color: #fff; } + .b2b-tree-checkbox li a + ul { + height: 0; + overflow: hidden; } + .b2b-tree-checkbox li a.active + ul { + height: auto; } + .b2b-tree-checkbox li a.grp { + font-family: "Omnes-ECOMP-W02-Italic", Arial; } + .b2b-tree-checkbox span.end { + left: -6px !important; } + .b2b-tree-checkbox .checkbox { + margin-bottom: 0px; + margin-top: 2px; + font-size: 14px; } + .b2b-tree-checkbox .checkbox input:indeterminate + .skin:after { + content: "\2014"; + padding-left: 2px; + font-family: inherit !important; + line-height: inherit !important; } + .b2b-tree-checkbox span.first-link { + width: 3px !important; + height: 15px !important; + top: 0px !important; + left: -2px !important; + background: #fff; } + +.b2b-widget-window { + width: 147px; + right: 5px; + top: 60px; + position: absolute; + border: 1px solid #ccc; + background-color: #fff; + border-radius: 8px; + z-index: 1000; } + .b2b-widget-window li { + margin: 15px; } + +.b2b-widget-container { + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + position: relative; } + .b2b-widget-container .b2b-widget-header { + font-family: "Omnes-ECOMP-W02", Arial; + color: #333; + height: 55px; + padding-left: 15px; + padding-top: 19px; } + .b2b-widget-container .b2b-widget-header .header { + font-size: 18px; } + .b2b-widget-container .b2b-widget-header-icons { + font-size: 16px; + color: #0574ac; } + +.b2b-widget-header-icons button { + border: none; + background: transparent; + color: #0574ac; } + .b2b-widget-header-icons button:focus { + outline-style: solid; + outline-width: 1px; + outline-color: #0574ac; } + .b2b-widget-header-icons button:first-child { + margin-right: 0px; } + +.b2b-widget-container .b2b-widget-content { + height: 325px; + margin: 0; + padding: 20px; + position: relative; + border-top: 1px solid #ccc; } + +.b2b-widget-content .form-row:first-child { + margin-top: 0; } + +.b2b-widget-header-icons button.icoControls-gear:focus, .b2b-widget-header-icons button.icon-primary-close:focus { + outline: thin dotted #666; } + +.b2b-widget-header .icon-primary-close:before { + content: '-'; + display: inline-block; + margin: 0; + padding: 0; + outline: none; } + +.b2b-widget-window .arrow_box { + background: #fff; + border: 1px solid #ccc; } + +.b2b-widget-window.arrow_box:after, .b2b-widget-window.arrow_box:before { + bottom: 100%; + left: 75%; + border: solid transparent; + content: " "; + height: 0; + width: 0; + position: absolute; + pointer-events: none; } + +.b2b-widget-window.arrow_box:after { + border-color: rgba(255, 255, 255, 0); + border-bottom-color: #fff; + border-width: 10px; + margin-left: 1px; } + +.b2b-widget-window.arrow_box:before { + border-color: rgba(204, 204, 204, 0); + border-bottom-color: #ccc; + border-width: 11px; + margin-left: 0px; } + +/************************** Overrides for Filters ***************************/ +.filter-container .filter-header h2 { + line-height: 1 !important; + margin: 0 !important; } + +.filter-container .icon-primary-spinner:before { + content: none; } + +.filter-container .fixed-230-subnav { + margin: 10px !important; + width: inherit !important; } + +.filter-container .unlinked:focus { + outline: thin dotted #666 !important; } + +.filter-container .unlinked.active { + color: inherit !important; } + +.filter-container .fixed-230-subnav a > i { + background: none; } + +.filter-container .fixed-230-subnav ul { + margin: 0 0 10px 10px; } + +/************************** Overrides for Filters ***************************/ +.row .filter-container { + background-color: #fff; } + +.filter-header { + overflow: hidden; + padding: 20px 0; + position: relative; } + +.filter-header h2 { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 2.4rem; + margin-bottom: 0; } + +.filter-selected { + border-top: 1px solid #ccc; + padding-top: 20px; } + +.filter-selected > span { + font-size: 1.3rem; + text-transform: uppercase; } + +.filter-selected > a.clear-all-filters { + float: right; + font-size: 1.4rem; } + +.filter-selected > span, +.filter-selected > a.clear-all-filters { + font-family: Omnes-ECOMP-W02-Medium, Arial; } + +.filter-selected-group { + padding-top: 15px; } + +.filter-selected-badge { + background-color: #f2f2f2; + border-radius: 15px; + display: inline-block; + font-size: 1.4rem; + margin-bottom: 10px; + padding: 0 0 0 12px; } + +.filter-selected-badge .icoControls-optionsoff { + background: transparent none repeat scroll 0 0; + border: medium none; + font-size: 2.5em; + margin: 0; + padding: 0; } + +.filters .fixed-230-subnav > ng-transclude > div:first-child { + border-top: 1px solid #ccc; } + +.filters .fixed-230-subnav > ng-transclude > div { + border-bottom: 1px solid #ccc; } + +.filter-results { + align-items: center; + border-bottom: 1px solid #ccc; + display: flex; + flex-wrap: wrap; + height: 50px; + -webkit-justify-content: space-between; + -ms-flex-pack: justify; + justify-content: space-between; } + +.filter-results-sortby > span { + text-transform: uppercase; } + +.filter-results-view .icon-primary-content-gridguide { + font-size: 2em; + margin-right: 0; } + +.filter-container .fixed-230-subnav > ng-transclude > div > a { + font-size: 1.8rem; + margin: 0; + padding: 15px 20px 15px 0; + color: #0574ac !important; + cursor: pointer !important; + font-family: "Omnes-ECOMP-W02", Arial !important; + outline-offset: inherit !important; + position: relative; + height: auto; + width: auto; } + +.filter-container .fixed-230-subnav a > i { + right: 0; + top: 15px; } + +.filter-container .fixed-230-subnav .icon-primary-collapsed:before, .filter-container .fixed-230-subnav .icon-primary-expanded:before { + float: right; } + +.filter-container .fixed-230-subnav ul.collapse { + position: inherit; + transition: height 0.5s ease; + height: 0; + overflow: hidden; } + +.filter-container .checkbox .icon-primary-spinner { + height: 24px; + position: absolute; + width: 24px; } + +.fixed-230-subnav.affix { + margin: -28px 0 0; } + +#nav-menu .b2b-menu, +#nav-menu .fixed-230-subnav { + margin: 0; } + +.b2b-menu > li, +.fixed-230-subnav > div { + border-bottom: 1px solid #ccc; + line-height: 4.0rem; } + +.b2b-menu > li:first-child, +.fixed-230-subnav > li:first-child { + border-top: 1px solid #ccc; } + +.b2b-menu div > a, +.fixed-230-subnav div > a { + color: #0574ac; + cursor: pointer; + display: block; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 1.4rem; + margin: 0; + outline-offset: -1px; + padding: 0 10px; + position: relative; } + +.fixed-230-subnav div > a.live { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + color: #666; } + +.fixed-230-subnav > ng-transclude > div li > a { + display: block; + font-size: 1.4rem; + line-height: 20px; } + +.fixed-230-subnav > ng-transclude > div li > a.active { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + text-decoration: none; + color: #666; } + +#nav-menu .fixed-230-subnav a > i { + top: 10px; } + +.fixed-230-subnav > li > a.active > i:after { + display: none; } + +.b2b-menu ul, +.fixed-230-subnav ul { + margin: 0 0 10px 0; } + +.b2b-menu ul div a, +.fixed-230-subnav ul div a { + padding: 0 10px; } + +.unlinked { + outline: medium none !important; + text-decoration: none !important; } + +@media (max-width: 1024px) { + .filter-container .fixed-230-subnav { + margin: 0 20px; + width: auto; } + .filter-container .fixed-230-subnav > li { + margin: 0; } + .row .filter-container { + display: none; + height: 100%; + left: 0; + position: fixed; + overflow: auto; + top: 0; + transition: all 0.5s ease 0s; + width: 285px; + z-index: 9999; } + .filter-header { + padding-left: 20px; } + .filter-selected { + margin: 0 20px 10px; } } + +.b2b-pane-selector-wrapper { + width: 100%; + display: block; + border-top: solid 1px #ccc; + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .side-nav { + width: 20% !important; + display: inline-block; + float: left; } + .b2b-pane-selector-wrapper .pane-container { + width: 80%; + vertical-align: top; + margin: 0; + padding-top: 30px; + border-left: solid 1px #ccc; + font-family: "Omnes-ECOMP-W02", Arial; + display: none; } + .b2b-pane-selector-wrapper .pane-container.active { + display: inline-block; } + .b2b-pane-selector-wrapper .pane-container .pane-container-top { + padding-left: 15px; } + .b2b-pane-selector-wrapper .pane-container .panes { + display: -webkit-flex; + display: flex; + border-top: solid 1px #ccc; + margin-top: 30px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block { + height: inherit; + overflow-y: auto; + border-right: solid 1px #ccc; + position: relative; + flex: 1; + -webkit-flex: 1; + /* Safari 6.1+ */ + -ms-flex: 1; + /* IE 10 */ } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block:focus { + outline: dotted 1px #333333; } + .b2b-pane-selector-wrapper .pane-container .search-block { + position: relative; + float: right; } + .b2b-pane-selector-wrapper .pane-container .search-block input[type="search"]:focus { + padding-right: 40px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row p { + margin-top: 15px; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div { + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row { + display: block; + padding: 19px 14px 19px 14px; + margin-top: 0px; + border: dotted 1px transparent; + border-bottom: solid 1px #ccc; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:focus { + border: dotted 1px #333333 !important; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row:last-child { + border-bottom: none; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block > .no-content { + text-align: center; + border-bottom: none; + display: block; + position: absolute; + top: 45%; + left: 0; + right: 0; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block div:last-child { + border-bottom: none; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row span.margin-chk { + margin: 15px 15px 0px 15px; + float: left; } + .b2b-pane-selector-wrapper .pane-container .panes div.pane-block .form-row .checkbox-selectall { + margin: 0px 0 0 24px !important; } + .b2b-pane-selector-wrapper .side-nav li { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + border: none; + border-top: solid 1px #ccc; + display: block !important; + width: auto !important; + margin-left: 0px !important; } + .b2b-pane-selector-wrapper .side-nav li.active { + background-color: #f6f6f6; + position: inherit !important; } + .b2b-pane-selector-wrapper .side-nav li.active > a { + font-size: 16px; + color: #333; + text-decoration: none; + border: none; + background-color: transparent; + padding: 20px 15px; + display: block; + height: auto; + border-left: 4px solid #0574ac; } + .b2b-pane-selector-wrapper .side-nav li > a { + font-size: 16px; + color: #333; + text-decoration: none; + border: none; + background-color: transparent; + padding: 20px 15px; + display: block; + height: auto; + text-align: left; } + .b2b-pane-selector-wrapper .side-nav li > a:focus { + border-right: dotted 1px #333333; } + .b2b-pane-selector-wrapper .side-nav li:first-child { + border-top: none; + margin-left: none !important; } +/********************* Utility CSS Starts **********************/ +.offscreen-text { + position: absolute; + left: -10000px; + top: auto; + width: 1px; + height: 1px; + overflow: hidden; } + +/********************* Utility CSS Ends **********************/ +/* Fix for alignment issue on Cancel link inside modal */ +.b2b-modal-footer > .cta-button-group { + line-height: 40px; } + +/* .att-dark-green { // Not used + color: #007a3e; +} */ +.colors-off-msg { + display: none; } + +button .colors-off-msg { + position: relative; } + +.ds2-no-colors .colors-off-msg { + display: block; } + +.ds2-no-colors [data-colordatatext] button .colors-off-msg { + font-size: 1.1rem; + line-height: normal; + padding: 5px 0; + position: absolute; + top: 0; + white-space: normal; + width: 60px; } + +/* Not used +.make-all-white * { + color: #fff; +} +.make-all-white a { + text-decoration: underline; +} */ +.loader > span { + display: block; + padding-top: 20px; } + +.modal > .loader { + left: 50%; + margin-left: -25px; + margin-top: -25px; + position: absolute; + top: 50%; } + +#pageLevelLoader.modal { + background-color: transparent; + border: none; + box-shadow: none; + top: 40%; } + +.modal.fade .loader { + display: none; } + +.modal.fade.in .loader { + display: block; } + +.btn.disabled[data-loading-text] { + padding: 0 19px 0 18px; + line-height: 46px; } + +.btn.disabled[data-loading-text] img { + position: relative; + top: 2px; } + +/* Seems to already be in docs.css +.fixed-230.leftnav { + position: relative; +} +.fixed-230-subnav { + margin: 10px; +} +.fixed-230-subnav > li:first-child { + border-top: none; +} +.fixed-230-subnav > li { + border-bottom: 1px solid #d2d2d2; +} +.fixed-230-subnav > li > a { + display: block; + font-size: 1.4rem; + line-height: normal; + margin: 0 -9px; + padding: 11px 35px 12px 9px; + outline-offset: 0; + position: relative; +} +.fixed-230-subnav > li > a.live { + color: #333333; + font-family: "Omnes-ECOMP-W02-Medium"; +} +.fixed-230-subnav a > i { + right: 10px; + margin: 0; + position: absolute; + top: 10px; +} +.fixed-230-subnav a > i:after { + display: none; +} +.fixed-230-subnav > li li > a { + display: block; + font-size: 1.4rem; + line-height: 18px; +} +.fixed-230-subnav > li li > a.active { + color: #333333; + font-family: "Omnes-ECOMP-W02-Medium"; + text-decoration: none; +} +.fixed-230-subnav ul { + margin: 0 0 10px; +} */ +.unlinked { + color: #0568ae !important; + font-family: "Omnes-ECOMP-W02" !important; } + +.unlinked.active { + color: inherit !important; } + +/* @media (max-width: 767px) { + .row.has-leftnav { + flex-wrap: wrap; + } + .row.has-leftnav .fluid-space { + padding-right: 0; + } + .row .fixed-230 { + background-color: #fff; + width: auto; + } + .row .leftnav { + background-color: #fff !important; + display: block !important; + } + .fixed-230-subnav { + margin: 10px 0 0; + width: 100%; + } + .fixed-230-subnav > li { + margin-left: -15px; + margin-right: -15px; + } + .fixed-230-subnav > li:first-child { + border-top: 1px solid #d2d2d2; + } + .fixed-230-subnav > li > a { + margin: 0; + } + .fixed-230-subnav a:hover, + .fixed-230-subnav a:focus { + text-decoration: none !important; + } + .fixed-230-subnav > li li > a { + padding: 5px 10px; + } + .fixed-230-subnav > li li > a.active { + color: inherit; + font-family: "Omnes-ECOMP-W02-Medium"; + } +} */ +@keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +@-moz-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +@-webkit-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +@-ms-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +@-o-keyframes DOMinsertion { + from { + outline-color: transparent; } + to { + outline-color: transparent; } } + +.ajaxed, +.modal.fade.in .b2b-modal-header, +.modal.fade.in .b2b-modal-body, +.modal.fade.in .b2b-modal-footer { + animation-duration: 0.01s; + -o-animation-duration: 0.01s; + -ms-animation-duration: 0.01s; + -moz-animation-duration: 0.01s; + -webkit-animation-duration: 0.01s; + animation-name: DOMinsertion; + -o-animation-name: DOMinsertion; + -ms-animation-name: DOMinsertion; + -moz-animation-name: DOMinsertion; + -webkit-animation-name: DOMinsertion; } + +.dda-css-override ul.nav-tabs { + margin-bottom: 0; } + +.dda-css-override div.tab-content { + margin-top: 0; + border-top: none; } + +.dda-css-override .tab-content .prettyprint, .dda-css-override .usage .prettyprint { + max-height: 500px; + overflow-y: auto; } + +.formsWithinProcessButton { + margin-right: 0px; } + +.heading-sub-section-form { + font-size: 2.4rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; + margin-top: 10px; } + +.heading-small-form { + font-size: 1.6rem; + font-family: "Omnes-ECOMP-W02, Arial"; + margin-top: 0px; } + +.icon-primary-form-sizeL { + font-size: 50px; } + +.icon-primary-form-size { + font-size: 30px; } + +.spanformfix { + margin-right: 15px !important; } + +@media (max-width: 767px) { + .heading-sub-section-form { + font-size: 1.8rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-bottom: 20px; + padding-top: 10px; + margin-top: 30px; } + .heading-small-form { + font-size: 1.4rem; + font-family: "Omnes-ECOMP-W02", Arial; + margin-top: 0px; } } + +@media (max-width: 479px) { + .icon-primary-form-resizeL { + display: none; } + .icon-primary-form-resize { + display: none; } + .heading-center-form { + margin-left: 20px; } } + +@media (min-width: 480px) { + .icon-primary-form-resizeL { + display: none; } + .icon-primary-form-resize { + display: inherit; } + .icon-primary-center-min { + margin-top: 30px; } } + +@media (min-width: 768px) { + .icon-primary-form-resizeL { + display: inherit; + margin-top: 30px; } + .icon-primary-form-resize { + display: none; } + .center-form-align { + margin-top: 35px; } } + +@media (min-width: 1024px) { + .icon-primary-form-resizeL { + display: inherit; + margin-top: 0px; } + .icon-primary-form-resize { + display: none; } + .center-form-align { + margin-top: 5px; } } + +.data-row.has-button td.col-1 { + padding: 0; } + +.tab-content > .tab-pane { + display: none; } + +.tab-content > .active { + display: block; } + +.icon-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } + +.icon-primary-primary-circle:before { + background-image: url("data:image/svg+xml,%3Csvg%20baseProfile%3D%22tiny%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2036%2036%22%3E%3Ccircle%20fill%3D%22transparent%22%20stroke%3D%22%23666%22%20stroke-miterlimit%3D%2210%22%20cx%3D%2218%22%20cy%3D%2218%22%20r%3D%2216%22%2F%3E%3C%2Fsvg%3E"); + content: ""; + position: absolute; + top: 0; + z-index: 1; } +/* Flyout inputs color is not aligned */ +textarea, input { + color: #333; } + +.isIE .btn-primary.btn:focus::after, +.isIE .btn-specialty.btn:focus::after, +.isIE .btn-alt.btn:focus::after { + border: 1px dashed #fff !important; } +.b2b-config-section-container { + height: auto; + min-height: 330px; + width: 815px; + background-color: #fff; + border: 1px solid #ccc; + display: inline-table; + border-radius: 6px; } + +.b2b-config-section-first-div { + border-right: 1px solid #ccc; + height: auto; + min-height: 330px; } + +.b2b-config-section-icon-primary-font { + font-size: 50px; + height: 31px; + line-height: 31px; } + +.b2b-config-section-padding { + padding: 20px 20px 15px 15px; + height: auto; } + +.b2b-config-sec-flyout { + position: relative; + left: 10px; + float: right; + color: #0574ac; + font-size: 16px; + font-family: "Omnes-ECOMP-W02", Arial; } + +.b2b-config-sec-divider { + border-bottom: 1px solid #ccc; } + +.b2b-confi-sec-span-border { + border-right: 1px solid; + height: auto; } + +.b2b-config-sec-speed-div { + text-align: center; + margin-top: 20px; } + +.b2b-config-sec-label-font { + font-size: 16px; } + +.b2b-config-sec-expander-main { + padding: 0 5px 0px 15px; } + +.b2b-config-sec-expander-body .b2b-config-vlan-padding { + padding: 5px 15px 10px 0px; } + +.b2b-conif-sec-row-height { + height: 110px; } + +.b2b-config-sec-expander-body { + font-size: 14px; } + .b2b-config-sec-expander-body .b2b-config-vlan-data { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + padding-left: 15px; } + +.b2b-config-sec-expander-body-first-div { + border-top: 1px solid #ccc; } + +.b2b-config-sec-expander-body .tooltip { + position: static; + opacity: 1; } + +.b2b-config-section-container .row > [class*="span"] { + margin-right: 0px; } + +.b2b-config-vlan-icons { + font-size: 16px; + float: right; + margin-right: 0px; } + +.b2b-config-section-container .span6 { + width: 50%; } + +.b2b-config-sec-data-link-style { + position: relative; + left: 95%; + top: 30px; + border-radius: 50%; + width: 23px; + height: 23px; + background: #fff; + border: 1px solid #ccc; + color: #666666; } + +.b2b-config-sec-text-align { + text-align: center; + margin-top: 15px; + margin-bottom: 35px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; } + +.b2b-config-port-text-align { + text-align: center; + margin-top: 15px; + margin-bottom: 8px; + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; } + +.b2b-config-port-text-label { + margin-top: 6px; + margin-bottom: 8px; + font-size: 14px; + text-align: center; } + +.b2b-confi-sec-last-div p { + font-size: 14px; + padding: 10px 15px 0 15px; } + +.b2b-confi-sec-router-label { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px; + color: #333333; + float: left; + width: 100%; + margin-bottom: 7px; } + +.b2b-config-vlan-label { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 14px; + color: #333333; + margin-top: 1px; + margin-bottom: 9px; } + +.b2b-config-vlan-info { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #333333; + margin-bottom: 1px; } + .b2b-config-vlan-info .icon-misc-pen { + padding-left: 7px; } + +.b2b-confi-sec-model-label { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + color: #333333; } + +.b2b-confi-sec-router-info { + float: left; + width: 62%; } + +.b2b-config-sec-speed-sec { + border-right: 1px solid #ccc; } + +.b2b-config-sec-speed-label { + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 20px; + color: #333333; + text-align: center; } + .b2b-config-sec-speed-label i { + margin-left: 15px; + font-size: 16px; } + +.b2b-config-sec-yellow-flag-div { + width: 1.6%; + background-color: #ffb18c; } + +.b2b-config-sec-expander-icons { + margin-top: 6px; } + .b2b-config-sec-expander-icons .icon-misc-trash { + margin-right: 10px; } + +.b2b-config-sec-yellow-flag .b2b-config-sec-expander-icons { + left: 40px; } + +.b2b-config-sec-expander-body-icons .icon-misc-pen { + position: relative; + left: 18px; } +.b2b-directory-listing .listBox { + height: 310px; + width: 450px; + padding-left: 1px; + padding-right: 1px; + font-family: "Omnes-ECOMP-W02", Arial; } + +.b2b-directory-listing .listBox:focus { + outline: thin dotted #666; } + +.b2b-directory-listing .b2b-directory-listing-no-results { + font-weight: bold; } + +.b2b-directory-listing .b2b-directory-listing-list { + font-family: "Omnes-ECOMP-W02", Arial; + color: #5a5a5a; + overflow-x: hidden; + position: relative; + height: 300px; + border: 1px solid #333; + border-radius: 6px; + margin-bottom: 10px; } + +.b2b-directory-listing .b2b-directory-listing-item { + margin: 1px; + border: 1px solid transparent; + outline: none; + text-align: left; + overflow: hidden; + cursor: pointer; + padding-top: 13px; + padding-bottom: 7px; + padding-left: 15px; + -moz-user-select: none; + -webkit-user-select: none; + -ms-user-select: none; + word-wrap: break-word; } + .b2b-directory-listing .b2b-directory-listing-item:focus { + border: 1px #3399FF solid; } + +.b2b-directory-listing .b2b-directory-listing-item-selected { + color: #fff; + background-color: #3399FF; } + +.b2b-directory-listing input[type="text"] { + padding-right: 30px; } + .b2b-directory-listing input[type="text"]:focus, .b2b-directory-listing input[type="text"]:hover { + padding-right: 30px; } + +.b2b-directory-listing .row .btns { + margin-right: 90px; + margin-left: -115px; + margin-top: 100px; } + +.b2b-directory-listing .btn-right { + margin-bottom: 15px !important; } + .b2b-directory-listing .btn-right:after { + content: " \27A1"; } + +.b2b-directory-listing .btn-left { + margin-top: 10px !important; } + +.b2b-directory-listing .btn-remove { + margin-right: auto !important; + margin-bottom: 15px; } + +.b2b-directory-listing .btn-remove-all { + margin-top: 0; + margin-bottom: 61px !important; + /* need to be removed */ + margin-right: auto !important; } + +.b2b-directory-listing .btn-add-all { + margin-top: 0; + margin-bottom: 61px !important; } + +.b2b-directory-listing .btn-left:before { + content: "\2B05 "; } + +.b2b-directory-listing .btn-search[class*="btn"] { + right: 0.09rem; } + +.b2b-directory-listing .btn { + width: 130px; } + +.b2b-directory-listing-disabled { + cursor: not-allowed; } + +.b2b-directory-listing-label-heading { + margin-top: 24px; + padding-bottom: 5px; } + +.b2b-dl-list-box option { + padding-top: 13px; + padding-bottom: 7px; + padding-left: 15px; } + +.b2b-dl-modal-button-div { + padding-top: 110px; + text-align: center; } +.b2b-tmpl-notification-card { + border-radius: 6px; + height: auto; + width: 420px; + background-color: #ffffff; + border: 1px solid rgba(0, 0, 0, 0.1); + border-radius: 8px; + overflow: hidden; } + .b2b-tmpl-notification-card .b2b-tmpl-card-header { + padding-left: 30px; + font-family: "Omnes-ECOMP-W02", Arial; + color: #333333; + font-size: 24px; + margin-top: 2px; + display: inline-block; + min-height: 60px; + position: relative; } + .b2b-tmpl-notification-card .b2b-tmpl-card-body { + padding: 0 30px 20px; + position: relative; } + .b2b-tmpl-notification-card .b2b-tmpl-card-header-title { + margin-top: 10px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button { + box-shadow: 0 -50px 0 0 #f2f2f2 inset; + height: 69px; + position: absolute; + border-color: #f2f2f2 #f2f2f2 transparent transparent; + border-style: solid; + border-width: 35px; + height: 0; + right: -295px; + top: -4px; + width: 69px; + /*Old properties */ + box-shadow: none; + transform: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close { + height: 48px; + right: -40px; + top: -40px; + width: 48px; + position: relative; + /*Old properties */ + transform: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:before { + color: #0568ae; + display: block; + font-size: 20px; + height: auto; + right: -4px; + top: 4px; + width: auto; + /*Old properties */ + left: auto; + height: auto; + bottom: auto; } + .b2b-tmpl-notification-card .b2b-tmpl-card-corner-button .close:focus { + outline: 1px dotted black; } + .b2b-tmpl-notification-card button.close { + -webkit-appearance: none; + moz-appearance: none; + appearance: none; } + .b2b-tmpl-notification-card .b2b-tmpl-card-icon-primary-cirlce { + width: 30px; + height: 30px; + border-radius: 50%; } + .b2b-tmpl-notification-card .b2b-tmpl-card-outer-cirlce { + background: #f0f5f5; + border-radius: 50%; + height: 16px; + width: 16px; + vertical-align: middle; } + .b2b-tmpl-notification-card .b2b-tmpl-card-inner-cirlce { + background: #fff; + width: 22px; + height: 22px; + position: relative; + border-radius: 50%; + display: block; + left: 4px; + top: 4px; + border: 1px solid #767676; } + .b2b-tmpl-notification-card .b2b-tmpl-card-row { + padding-top: 10px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-sub-header { + margin-top: 0px; } + .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item { + background-color: #fff; + margin-top: 25px; + border-top: 1px solid #ccc; } + .b2b-tmpl-notification-card .b2b-tmpl-favourite-view-item .cta-button-group { + line-height: 40px; + padding-top: 20px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-edit-section .cta-button-group { + line-height: 40px; + padding-top: 15px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-add-item-container { + padding-top: 30px; } + .b2b-tmpl-notification-card .b2b-tmpl-card-link-active { + pointer-events: none; + cursor: default; + color: #ccc; } + .b2b-tmpl-notification-card .b2b-tmpl-card-cursor:hover { + cursor: pointer; } +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon { + text-align: center; + margin-top: 91px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-icon i { + font-size: 99px; + color: #1b7e28; } + +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading { + color: #333333; + text-align: center; + margin-top: 20px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-heading h1 { + font-size: 38px; } + +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading { + color: #333333; + text-align: center; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-sub-heading h5 { + font-size: 18px; } + +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info { + padding-left: 18%; + font-size: 16px; + margin-top: 20px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info ul { + list-style-type: disc; + list-style-position: inside; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-info li { + padding-top: 5px; } + +.b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section { + font-size: 15px; + color: #0574ac; + margin-top: 20px; + text-align: center; + margin-bottom: 55px; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section .b2b-tmpl-order-confirmation-link { + margin-right: 8%; } + .b2b-tmpl-order-confirmation .b2b-tmpl-order-confirmation-link-section a { + cursor: pointer; } +.b2b-tmpl-profile-block-container { + min-height: 200px; + height: auto; + background-color: #fff; + border-radius: 8px; + border: 1px solid #ccc; + box-shadow: 0px 1px 1px 1px #ccc; + display: inline-table; + margin: 15px 15px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-title { + font-weight: bold; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-footer { + margin-bottom: 12px; + margin-top: 5px; + height: 35px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p { + word-wrap: break-word; + height: 61px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:first-child { + margin-top: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p:after { + content: ' '; + display: block; + border: 0.2px solid #ccc; + margin-top: 12px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio { + margin-left: 15px; + height: 30px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details div { + padding: 2px 7px; + font-size: 14px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details .radio-label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details a { + font-size: 14px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p label, .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-details p span { + padding-left: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon { + color: #1b7e28; + float: right; + position: relative; + left: 10px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-approval-icon i { + color: #1b7e28; + float: right; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-link { + float: right; + position: relative; + left: -4px; } + .b2b-tmpl-profile-block-container a.link-profile { + position: relative; + left: -5px; + float: right; + margin-bottom: 16px; } + .b2b-tmpl-profile-block-container .b2b-tmpl-profile-block-radio { + position: relative; + top: -5px; } +.b2b-static-route-container { + padding-left: 32px; + display: inline-block; } + +.b2b-static-route-label-heading { + font-family: "Omnes-ECOMP-W02-Medium", Arial; + font-size: 16px !important; + color: #333333; + font-style: normal; + text-align: left; } + +label.b2b-static-route-label-heading { + margin-bottom: 12px; + margin-top: 15px; + display: block; } + +#b2b-static-route-input { + margin: 5px 0 5px; } + +.b2b-static-route-list { + margin-bottom: 30px; + width: 216px; + float: left; + margin-right: 20px; + max-height: 540px; + overflow-y: auto; } + .b2b-static-route-list .status-text { + flex: 1; + display: flex; + align-items: center; + outline: 0; } + +.b2b-static-route-list-item { + border: 1px #cccccc solid; + font-family: "Omnes-ECOMP-W02", Arial; + font-size: 14px; + display: flex; + cursor: pointer; } + .b2b-static-route-list-item > .status-bar { + padding: 20px 0 20px; + background-color: #ea7400; + border-radius: 0; + width: 10px; + display: inline-block; + margin-right: 20px; + height: 100%; + float: left; } + .b2b-static-route-list-item > .status-bar:after { + content: '.'; + visibility: hidden; } + .b2b-static-route-list-item > .status-bar-unedited { + padding: 20px 0 20px; + background-color: #ffb81c; + border-radius: 0; + width: 10px; + display: inline-block; + margin-right: 20px; + height: 100%; + float: left; + background-color: transparent; } + .b2b-static-route-list-item > .status-bar-unedited:after { + content: '.'; + visibility: hidden; } + +.b2b-static-route-list-item:focus { + outline: 1px dashed #00f; } + +.b2b-static-route-list-item--selected { + background: #f2f2f2; } + +.b2b-static-route-content { + display: inline-block; } + + +/* +To Remove later +*/ + +.selectWrap::after { + align-items: center; + background-position: 7px 7px; + background-repeat: no-repeat; + background-size: auto 23px; + border-left: 1px solid transparent; + color: #0568ae; + display: flex; + font-size: 23px; + height: 36px; + margin-right: 0; + overflow: hidden; + position: absolute; + right: 0; + text-indent: 7px; + top: 0; + user-select: none; + width: 41px; + z-index: 0; + position: absolute !important; + display: flex !important; } \ No newline at end of file diff --git a/ecomp-portal-FE-common/client/bower_components_external/b2b/js/b2b-angular/README.md b/ecomp-portal-FE-common/client/bower_components_external/b2b/js/b2b-angular/README.md index 8c30ec55..addbd91b 100644 --- a/ecomp-portal-FE-common/client/bower_components_external/b2b/js/b2b-angular/README.md +++ b/ecomp-portal-FE-common/client/bower_components_external/b2b/js/b2b-angular/README.md @@ -19,4 +19,8 @@ scope.toggleDrawer = function(showmenu){ } else document.getElementById('page-content').style.paddingLeft = "230px"; -}; \ No newline at end of file +}; + +26 May 2017 : Changed b2b sort icons ++ +"\n" diff --git a/ecomp-portal-FE-common/client/bower_components_external/b2b/js/b2b-angular/b2b-library.min.js b/ecomp-portal-FE-common/client/bower_components_external/b2b/js/b2b-angular/b2b-library.min.js index ecf62a20..bea9fb70 100644 --- a/ecomp-portal-FE-common/client/bower_components_external/b2b/js/b2b-angular/b2b-library.min.js +++ b/ecomp-portal-FE-common/client/bower_components_external/b2b/js/b2b-angular/b2b-library.min.js @@ -1,22055 +1,22055 @@ -/*! b2b-angular-library - v1.0.1 - Last updated: 2017-03-02. Copyright (c) 2016 AT&T Services, Inc. */ -angular.module("b2b.att.tpls", ['b2bTemplate/audioPlayer/audioPlayer.html', 'b2bTemplate/audioRecorder/audioRecorder.html', 'b2bTemplate/backToTop/backToTop.html', 'b2bTemplate/boardstrip/b2bAddBoard.html', 'b2bTemplate/boardstrip/b2bBoard.html', 'b2bTemplate/boardstrip/b2bBoardstrip.html', 'b2bTemplate/calendar/datepicker-popup.html', 'b2bTemplate/calendar/datepicker.html', 'b2bTemplate/coachmark/coachmark.html', 'b2bTemplate/dropdowns/b2bDropdownDesktop.html', 'b2bTemplate/dropdowns/b2bDropdownGroupDesktop.html', 'b2bTemplate/dropdowns/b2bDropdownListDesktop.html', 'b2bTemplate/fileUpload/fileUpload.html', 'b2bTemplate/flyout/flyout.html', 'b2bTemplate/flyout/flyoutContent.html', 'b2bTemplate/footer/footer_column_switch_tpl.html', 'b2bTemplate/horizontalTable/horizontalTable.html', 'b2bTemplate/hourPicker/b2bHourpicker.html', 'b2bTemplate/hourPicker/b2bHourpickerPanel.html', 'b2bTemplate/hourPicker/b2bHourpickerValue.html', 'b2bTemplate/leftNavigation/leftNavigation.html', 'b2bTemplate/listbox/listbox.html', 'b2bTemplate/modalsAndAlerts/b2b-backdrop.html', 'b2bTemplate/modalsAndAlerts/b2b-window.html', 'b2bTemplate/monthSelector/monthSelector-popup.html', 'b2bTemplate/monthSelector/monthSelector.html', 'b2bTemplate/monthSelector/monthSelectorLink.html', 'b2bTemplate/pagination/b2b-pagination.html', 'b2bTemplate/paneSelector/paneSelector.html', 'b2bTemplate/paneSelector/paneSelectorPane.html', 'b2bTemplate/profileCard/profileCard-addUser.html', 'b2bTemplate/profileCard/profileCard.html', 'b2bTemplate/searchField/searchField.html', 'b2bTemplate/seekBar/seekBar.html', 'b2bTemplate/slider/slider.html', 'b2bTemplate/spinButton/spinButton.html', 'b2bTemplate/statusTracker/statusTracker.html', 'b2bTemplate/stepTracker/stepTracker.html', 'b2bTemplate/switches/switches-spanish.html', 'b2bTemplate/switches/switches.html', 'b2bTemplate/tableMessages/tableMessage.html', 'b2bTemplate/tables/b2bTable.html', 'b2bTemplate/tables/b2bTableBody.html', 'b2bTemplate/tables/b2bTableHeaderSortable.html', 'b2bTemplate/tables/b2bTableHeaderUnsortable.html', 'b2bTemplate/tableScrollbar/tableScrollbar.html', 'b2bTemplate/tabs/b2bTab.html', 'b2bTemplate/tabs/b2bTabset.html', 'b2bTemplate/treeNav/groupedTree.html', 'b2bTemplate/treeNav/treeMember.html', 'b2bTemplate/treeNav/ungroupedTree.html', 'b2bTemplate/treeNodeCheckbox/groupedTree.html', 'b2bTemplate/treeNodeCheckbox/treeMember.html', 'b2bTemplate/treeNodeCheckbox/ungroupedTree.html']);angular.module("b2b.att", ["b2b.att.tpls", 'b2b.att.addressInputTemplate','b2b.att.arrows','b2b.att.audioPlayer','b2b.att.audioRecorder','b2b.att.backToTop','b2b.att.badgesForAlerts','b2b.att.boardstrip','b2b.att.breadcrumbs','b2b.att.buttonGroups','b2b.att.buttons','b2b.att.calendar','b2b.att.checkboxes','b2b.att.coachmark','b2b.att.configurationSection','b2b.att.directoryListingTemplate','b2b.att.dropdowns','b2b.att.fileUpload','b2b.att.filters','b2b.att.flyout','b2b.att.footer','b2b.att.header','b2b.att.headings','b2b.att.horizontalTable','b2b.att.hourPicker','b2b.att.inputTemplate','b2b.att.leftNavigation','b2b.att.links','b2b.att.listbox','b2b.att.loaderAnimation','b2b.att.messageWrapper','b2b.att.modalsAndAlerts','b2b.att.monthSelector','b2b.att.multiLevelNavigation','b2b.att.multipurposeExpander','b2b.att.notesMessagesAndErrors','b2b.att.notificationCardTemplate','b2b.att.orderConfirmationTemplate','b2b.att.pagination','b2b.att.paneSelector','b2b.att.phoneNumberInput','b2b.att.profileBlockTemplate','b2b.att.profileCard','b2b.att.radios','b2b.att.searchField','b2b.att.seekBar','b2b.att.selectorModule','b2b.att.separators','b2b.att.slider','b2b.att.spinButton','b2b.att.staticRouteTemplate','b2b.att.statusTracker','b2b.att.stepTracker','b2b.att.switches','b2b.att.tableMessages','b2b.att.tables','b2b.att.tableScrollbar','b2b.att.tabs','b2b.att.tagBadges','b2b.att.textArea','b2b.att.tooltipsForForms','b2b.att.treeNav','b2b.att.treeNodeCheckbox','b2b.att.utilities']);/** - * @ngdoc directive - * @name Template.att:Address Input - * - * @description - * - * - * @usage - - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.addressInputTemplate', ['ngMessages']); -/** - * @ngdoc directive - * @name Buttons, links & UI controls.att:arrows - * - * @description - * - * - * @usage - * Please refer demo.html tab in Example section below. - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.arrows', []); -/** - * @ngdoc directive - * @name Videos, audio & animation.att:Audio Player - * @scope - * @param {string} audioSrcUrl - MP3 audio source URL or Blob URL - * @description - * - * - * @usage - * -
    - * - * @example - *
    - - - - -
    - * - */ - -angular.module('b2b.att.audioPlayer', ['b2b.att.utilities', 'b2b.att.seekBar']) - .constant('AudioPlayerConfig', { - 'defaultVolume': 50, - 'timeShiftInSeconds': 5 - }) - .filter('trustedAudioUrl', ['$sce', function ($sce) { - return function (audioFileFullPath) { - return audioFileFullPath ? $sce.trustAsResourceUrl(audioFileFullPath) : 'undefined'; - }; - }]) - .directive('b2bAudio', ['$log', '$timeout', 'AudioPlayerConfig', '$compile', 'events', function ($log, $timeout, AudioPlayerConfig, $compile, events) { - return { - restrict: 'EA', - replace: true, - scope: { - audioSrcUrl: '=' - }, - templateUrl: 'b2bTemplate/audioPlayer/audioPlayer.html', - controller: function ($scope) { - - $scope.audio = {}; - - if (!angular.isDefined($scope.audioSrcUrl)) { - $log.warn('b2b-audio : audio-src-url undefined'); - $scope.audioSrcUrl = undefined; - $scope.audio.mp3 = undefined; - } - - }, - link: function (scope, element) { - var audioElement = angular.element(element[0].querySelector('audio'))[0]; - scope.audio.audioElement = audioElement; - - function setAttributes(element, attributes) { - Object.keys(attributes).forEach(function (name) { - element.setAttribute(name, attributes[name]); - }); - } - - $timeout(function () { - // TODO: Replace with DDA Tooltip - var seekBarKnob = element[0].querySelector('.b2b-seek-bar-knob'); - var tooltipObject = { - 'tooltip': '{{timeFormatter(audio.currentTime)}}', - 'tooltip-placement': 'above', - 'tooltip-style': 'blue', - 'tooltip-trigger': 'mousedown', - 'tooltip-append-to-body': 'false', - 'tooltip-offset': '-10', - 'refer-by': 'seek-bar-tooltip' - }; - setAttributes(seekBarKnob, tooltipObject); - $compile(seekBarKnob)(scope); - }); - - if (angular.isDefined(scope.audioSrcUrl)) { - scope.audio.mp3 = scope.audioSrcUrl; - } - - scope.audio.currentTime = 0; - scope.audio.currentVolume = AudioPlayerConfig.defaultVolume; - scope.audio.timeShiftInSeconds = AudioPlayerConfig.timeShiftInSeconds; - scope.isPlayInProgress = false; - scope.isReady = false; - scope.isAudioDragging = false; - - $timeout(function () { - audioElement.load(); - audioElement.volume = scope.audio.currentVolume / 100; - }); - - scope.$watch('audioSrcUrl', function (newVal, oldVal) { - if (newVal !== oldVal) { - if (!newVal) { - $log.warn('b2b-audio : audio-src-url undefined. Please provide a valid URL'); - } - - scope.audio.mp3 = newVal; - $timeout(function () { - audioElement.load(); - }); - } - }); - - scope.playAudio = function () { - if (scope.isReady) { - audioElement.play(); - } - }; - - audioElement.onplay = function () { - scope.isPlayInProgress = true; - scope.$digest(); - }; - - scope.pauseAudio = function () { - audioElement.pause(); - }; - - audioElement.onpause = function () { - scope.isPlayInProgress = false; - scope.$digest(); - }; - - scope.toggleAudio = function () { - if (audioElement.paused) { - scope.playAudio(); - } else { - scope.pauseAudio(); - } - }; - - scope.volumeUp = function (delta) { - if (!delta) { - delta = 0.1; - } else { - delta = delta / 100; - } - audioElement.muted = false; - if (audioElement.volume < 1) { - audioElement.volume = Math.min((Math.round((audioElement.volume + delta) * 100) / 100), 1); - } - scope.audio.currentVolume = audioElement.volume * 100; - return audioElement.volume; - }; - - scope.volumeDown = function (delta) { - if (!delta) { - delta = 0.1; - } else { - delta = delta / 100; - } - audioElement.muted = false; - if (audioElement.volume > 0) { - audioElement.volume = Math.max((Math.round((audioElement.volume - delta) * 100) / 100), 0); - } - scope.audio.currentVolume = audioElement.volume * 100; - return audioElement.volume; - }; - - var volumeHandler = function (e) { - events.preventDefault(e); - if ((e.wheelDelta && e.wheelDelta > 0) || (e.detail && e.detail < 0)) { - scope.volumeUp(); - } else { - scope.volumeDown(); - } - scope.$digest(); - }; - - - - scope.$watch('audio.currentVolume', function (newVal, oldVal) { - if (newVal !== oldVal) { - audioElement.volume = newVal / 100; - } - }); - - scope.setCurrentTime = function (timeInSec) { - audioElement.currentTime = timeInSec; - }; - - scope.setAudioPosition = function (val) { - if (scope.isReady) { - scope.setCurrentTime(val); - scope.isAudioDragging = false; - } - }; - - function getTimestampArray(timestamp) { - var d = Math.abs(timestamp) / 1000; // delta - var r = {}; // result - var s = { // structure - day: 86400, - hour: 3600, - minute: 60, - second: 1 - }; - - Object.keys(s).forEach(function (key) { - r[key] = Math.floor(d / s[key]); - d -= r[key] * s[key]; - }); - - return r; - }; - - scope.timeFormatter = function (timeInSec) { - var formattedTime = '00:00'; - - if (!timeInSec || timeInSec < 1) { - return formattedTime; - } - - if (typeof timeInSec === 'string') { - return timeInSec; - } - - var dateArray = getTimestampArray(timeInSec * 1000); - Object.keys(dateArray).forEach(function (key) { - if (dateArray[key] === 0) { - dateArray[key] = '00'; - } else if (dateArray[key] < 10) { - dateArray[key] = '0' + dateArray[key]; - } - }); - - formattedTime = dateArray['minute'] + ':' + dateArray['second']; - - if (dateArray['hour'] !== '00') { - formattedTime = dateArray['hour'] + ':' + formattedTime; - } - - if (dateArray['day'] !== '00') { - formattedTime = dateArray['day'] + ':' + formattedTime; - } - - return formattedTime; - }; - - audioElement.onloadedmetadata = function () { - scope.audio.duration = audioElement.duration; - scope.$digest(); - }; - - audioElement.ontimeupdate = function () { - if (!scope.isAudioDragging) { - scope.audio.currentTime = audioElement.currentTime; - scope.$digest(); - } - }; - - audioElement.onended = function () { - scope.setCurrentTime(0); - scope.audio.currentTime = 0; - if (!audioElement.paused) { - scope.pauseAudio(); - } - scope.$digest(); - }; - - audioElement.oncanplay = function () { - scope.isReady = true; - scope.isPlayInProgress = !audioElement.paused; - scope.$digest(); - }; - - var onloadstart = function () { - scope.isReady = false; - scope.isPlayInProgress = !audioElement.paused; - scope.audio.currentTime = 0; - scope.audio.duration = 0; - scope.$digest(); - }; - audioElement.addEventListener("loadstart", onloadstart); - } - }; - }]); -/** - * @ngdoc directive - * @name Videos, audio & animation.att:Audio Recorder - * @scope - * @param {function} callback - A callback to handle the WAV blob - * @param {object} config - A config object with properties startRecordingMessage & whileRecordingMessage - * @description - * - * - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.audioRecorder', ['b2b.att.utilities']) - .constant('AudioRecorderConfig', { - 'startRecordingMessage': 'Click on REC icon to being recording', - 'whileRecordingMessage': 'Recording...' - }) - .directive('b2bAudioRecorder', ['$interval', 'AudioRecorderConfig', 'b2bUserAgent', 'b2bRecorder', function($interval, AudioRecorderConfig, b2bUserAgent, b2bRecorder) { - return { - restrict: 'EA', - replace: true, - scope: { - callback: '&' - }, - templateUrl: 'b2bTemplate/audioRecorder/audioRecorder.html', - controller: function($scope) { - - function hasGetUserMedia() { - return !!(navigator.getUserMedia || navigator.webkitGetUserMedia || - navigator.mozGetUserMedia || navigator.msGetUserMedia); - } - - if (!hasGetUserMedia()) { - throw new Error('Your broswer does not support MediaRecorder API'); - } - - if (!(b2bUserAgent.isFF() || b2bUserAgent.isChrome())) { - throw new Error('b2bAudioRecorder does not support this browser!'); - } - - }, - link: function(scope, element) { - scope.elapsedTime = 0; - scope.isRecording = false; - scope.config = {}; - scope.config.startRecordingMessage = AudioRecorderConfig.startRecordingMessage; - scope.config.whileRecordingMessage = AudioRecorderConfig.whileRecordingMessage; - - - var timer = undefined; // Interval promise - navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia; - var stream; - var audio = angular.element(element[0].querySelector('audio'))[0]; - var recorder = undefined; - - function startRecording() { - scope.isRecording = true; - navigator.mediaDevices.getUserMedia({ - audio: true - }).then(function(stream) { - //create the MediaStreamAudioSourceNode - context = new AudioContext(); - source = context.createMediaStreamSource(stream); - recorder = new b2bRecorder(source); - recorder.record(); - - timer = $interval(function() { - scope.elapsedTime += 1; - }, 1000, 0); - }).catch(function(err) { - angular.noop(); - }); - - }; - - function stopRecording() { - scope.isRecording = false; - recorder.stop(); - var audio = {}; - recorder.exportWAV(function(s) { - audio.src = window.URL.createObjectURL(s); - context.close().then(function() { - if (timer) { - $interval.cancel(timer); - } - scope.elapsedTime = 0; - - recorder.clear(); - recorder = undefined; - }); - if (angular.isFunction(scope.callback)){ - scope.callback({'data': audio}); - } - }); - - - } - - scope.toggleRecording = function() { - if (scope.isRecording) { - stopRecording(); - } else { - startRecording(); - } - }; - - - - //TODO: Move this into utilities - function getTimestampArray(timestamp) { - var d = Math.abs(timestamp) / 1000; // delta - var r = {}; // result - var s = { // structure - day: 86400, - hour: 3600, - minute: 60, - second: 1 - }; - - Object.keys(s).forEach(function(key) { - r[key] = Math.floor(d / s[key]); - d -= r[key] * s[key]; - }); - - return r; - }; - scope.timeFormatter = function(timeInSec) { - var formattedTime = '00:00'; - - if (!timeInSec || timeInSec < 1) { - return formattedTime; - } - - if (typeof timeInSec === 'string') { - return timeInSec; - } - - var dateArray = getTimestampArray(timeInSec * 1000); - Object.keys(dateArray).forEach(function(key) { - if (dateArray[key] === 0) { - dateArray[key] = '00'; - } else if (dateArray[key] < 10) { - dateArray[key] = '0' + dateArray[key]; - } - }); - - formattedTime = dateArray['minute'] + ':' + dateArray['second']; - - if (dateArray['hour'] !== '00') { - formattedTime = dateArray['hour'] + ':' + formattedTime; - } - - if (dateArray['day'] !== '00') { - formattedTime = dateArray['day'] + ':' + formattedTime; - } - - return formattedTime; - }; - - scope.$on('$destroy', function() { - if (timer) { - $interval.cancel(timer); - } - }); - } - }; - }]); - -/** - * @ngdoc directive - * @name Navigation.att:Back To Top - * @scope - * @description - * - * @param {integer} scrollSpeed - Scroll speed in seconds, default is 1 -* - * @usage - * -
    -
    -
    - * - * @example - *
    - - - - -
    - * - */ - -angular.module('b2b.att.backToTop', ['b2b.att.utilities','b2b.att.position']) - .directive('b2bBacktotopButton', [function () { - return { - restrict: 'EA', - replace: true, - templateUrl: 'b2bTemplate/backToTop/backToTop.html', - link: function (scope, elem, attr) { - elem.bind('click', function(evt) { - var scrollSpeed = parseInt(attr.scrollSpeed) || 1; - TweenLite.to(window, scrollSpeed, {scrollTo:{x: 0, y: 0}}); - }); - } - }; - }]); -/** - * @ngdoc directive - * @name Messages, modals & alerts.att:badgesForAlerts - * - * @description - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.badgesForAlerts', []); -/** - * @ngdoc directive - * @name Misc.att:boardstrip - * - * @description - * - * - * @usage - * See demo section - * @example -
    - HTML + AngularJS - - - - -
    - */ -angular.module('b2b.att.boardstrip', ['b2b.att.utilities']) - .constant('BoardStripConfig', { - 'maxVisibleBoards': 4, - 'boardsToScroll': 1, - /* These parameters are non-configurable and remain unaltered, until there is a change in corresponding CSS */ - 'boardLength': 140, - 'boardMargin': 15 - }) - .directive('b2bBoard', [function () { - return { - restrict: 'AE', - replace: true, - transclude: true, - require: '^b2bBoardStrip', - scope: { - boardIndex: '=', - boardLabel: '=' - }, - templateUrl: 'b2bTemplate/boardstrip/b2bBoard.html', - link: function (scope, element, attrs, ctrls) { - - var parentCtrl = ctrls; - - scope.getCurrentIndex = function () { - return parentCtrl.getCurrentIndex(); - }; - scope.selectBoard = function (boardIndex) { - if (!isNaN(boardIndex)) { - parentCtrl.setCurrentIndex(boardIndex); - } - }; - } - }; - }]) - .directive('b2bBoardStrip', ['BoardStripConfig', '$timeout', function (BoardStripConfig, $timeout) { - return { - restrict: 'AE', - replace: true, - transclude: true, - require: ['?ngModel', 'b2bBoardStrip'], - scope: { - boardsMasterArray: '=', - onAddBoard: '&?' - }, - templateUrl: 'b2bTemplate/boardstrip/b2bBoardstrip.html', - controller: function ($scope) { - if (!angular.isDefined($scope.boardsMasterArray)) { - $scope.boardsMasterArray = []; - } - - this.rectifyMaxVisibleBoards = function () { - if (this.maxVisibleIndex >= $scope.boardsMasterArray.length) { - this.maxVisibleIndex = $scope.boardsMasterArray.length - 1; - } - - if (this.maxVisibleIndex < 0) { - this.maxVisibleIndex = 0; - } - }; - - this.resetBoardStrip = function () { - $scope.currentIndex = 0; - - this.maxVisibleIndex = BoardStripConfig.maxVisibleBoards - 1; - this.minVisibleIndex = 0; - - this.rectifyMaxVisibleBoards(); - }; - - this.getCurrentIndex = function () { - return $scope.currentIndex; - }; - this.setCurrentIndex = function (indx) { - $scope.currentIndex = indx; - }; - - this.getBoardsMasterArrayLength = function () { - return $scope.boardsMasterArray.length; - }; - - $scope.addBoardPressedFlag = false; - this.getAddBoardPressedFlag = function () { - return $scope.addBoardPressedFlag; - }; - this.setAddBoardPressedFlag = function (booleanValue) { - $scope.addBoardPressedFlag = booleanValue; - }; - - }, - link: function (scope, element, attrs, ctrls) { - - var ngModelCtrl = ctrls[0]; - var ctrl = ctrls[1]; - - var oldTimeout; - var animationTimeout = 1000; - - var getBoardViewportWidth = function (numberOfVisibleBoards) { - return numberOfVisibleBoards * (BoardStripConfig.boardLength + BoardStripConfig.boardMargin); - }; - if (element[0].querySelector(".board-viewport")) { - angular.element(element[0].querySelector(".board-viewport")).css({ - "width": getBoardViewportWidth(BoardStripConfig.maxVisibleBoards) + "px" - }); - } - - var getBoardstripContainerWidth = function (totalNumberOfBoards) { - return totalNumberOfBoards * (BoardStripConfig.boardLength + BoardStripConfig.boardMargin); - }; - if (element[0].querySelector(".boardstrip-container")) { - angular.element(element[0].querySelector(".boardstrip-container")).css({ - "width": getBoardstripContainerWidth(ctrl.getBoardsMasterArrayLength()) + "px" - }); - angular.element(element[0].querySelector(".boardstrip-container")).css({ - "left": "0px" - }); - } - - var calculateAndGetBoardstripContainerAdjustment = function () { - - var calculatedAdjustmentValue; - - if (ctrl.getBoardsMasterArrayLength() <= BoardStripConfig.maxVisibleBoards) { - calculatedAdjustmentValue = 0; - } else { - calculatedAdjustmentValue = (ctrl.minVisibleIndex * (BoardStripConfig.boardLength + BoardStripConfig.boardMargin)) * -1; - } - - return calculatedAdjustmentValue; - }; - - var animateBoardstripContainerAdjustment = function (elementToFocusAfterAnimation) { - var oldContainerAdjustment = angular.element(element[0].querySelector(".boardstrip-container"))[0].style.left; - var containerAdjustment = calculateAndGetBoardstripContainerAdjustment(); - if (oldContainerAdjustment !== containerAdjustment + 'px') { - angular.element(element[0].querySelector(".boardstrip-container")).css({ - "left": containerAdjustment + "px" - }); - - $timeout.cancel(oldTimeout); - oldTimeout = $timeout(function () { - elementToFocusAfterAnimation.focus(); - }, animationTimeout); - } else { - elementToFocusAfterAnimation.focus(); - } - }; - - var updateBoardsTabIndex = function (boardArray, minViewIndex, maxViewIndex) { - for (var i = 0; i < boardArray.length; i++) { - angular.element(boardArray[i]).attr('tabindex', '-1'); - } - for (var j = minViewIndex; j <= maxViewIndex; j++) { - angular.element(boardArray[j]).attr('tabindex', '0'); - } - }; - - $timeout(function () { - var currentBoardArray = element[0].querySelectorAll('[b2b-board]'); - updateBoardsTabIndex(currentBoardArray, ctrl.minVisibleIndex, ctrl.maxVisibleIndex); - }); - - scope.$watchCollection('boardsMasterArray', function (newVal, oldVal) { - if (newVal !== oldVal) { - /* When a board is removed */ - if (newVal.length < oldVal.length) { - ctrl.resetBoardStrip(); - $timeout(function () { - - var currentBoardArray = element[0].querySelectorAll('[b2b-board]'); - if (currentBoardArray.length !== 0) { - animateBoardstripContainerAdjustment(currentBoardArray[0]); - } else { - element[0].querySelector('div.boardstrip-item--add').focus(); - } - - angular.element(element[0].querySelector(".boardstrip-container")).css({ - "width": getBoardstripContainerWidth(ctrl.getBoardsMasterArrayLength()) + "px" - }); - /* Update tabindecies to ensure keyboard navigation behaves correctly */ - updateBoardsTabIndex(currentBoardArray, ctrl.minVisibleIndex, ctrl.maxVisibleIndex); - }); - } - /* When a board is added */ - else { - if (ctrl.getAddBoardPressedFlag()) { - ctrl.maxVisibleIndex = ctrl.getBoardsMasterArrayLength() - 1; - ctrl.minVisibleIndex = Math.max(ctrl.maxVisibleIndex - BoardStripConfig.maxVisibleBoards + 1, 0); - - ctrl.setCurrentIndex(ctrl.maxVisibleIndex); - - $timeout(function () { - angular.element(element[0].querySelector(".boardstrip-container")).css({ - "width": getBoardstripContainerWidth(ctrl.getBoardsMasterArrayLength()) + "px" - }); - - var currentBoardArray = element[0].querySelectorAll('[b2b-board]'); - animateBoardstripContainerAdjustment(currentBoardArray[currentBoardArray.length - 1]); - /* Update tabindecies to ensure keyboard navigation behaves correctly */ - updateBoardsTabIndex(currentBoardArray, ctrl.minVisibleIndex, ctrl.maxVisibleIndex); - }); - } else { - if (ctrl.minVisibleIndex === 0 && ctrl.getBoardsMasterArrayLength() < BoardStripConfig.maxVisibleBoards + 1) { - ctrl.maxVisibleIndex = ctrl.getBoardsMasterArrayLength() - 1; - ctrl.rectifyMaxVisibleBoards(); - } - - $timeout(function () { - angular.element(element[0].querySelector(".boardstrip-container")).css({ - "width": getBoardstripContainerWidth(ctrl.getBoardsMasterArrayLength()) + "px" - }); - - var currentBoardArray = element[0].querySelectorAll('[b2b-board]'); - /* Update tabindecies to ensure keyboard navigation behaves correctly */ - updateBoardsTabIndex(currentBoardArray, ctrl.minVisibleIndex, ctrl.maxVisibleIndex); - }); - } - - ctrl.setAddBoardPressedFlag(false); - } - } - }); - - scope.nextBoard = function () { - ctrl.maxVisibleIndex += BoardStripConfig.boardsToScroll; - ctrl.rectifyMaxVisibleBoards(); - ctrl.minVisibleIndex = ctrl.maxVisibleIndex - (BoardStripConfig.maxVisibleBoards - 1); - - $timeout.cancel(oldTimeout); - angular.element(element[0].querySelector(".boardstrip-container")).css({ - "left": calculateAndGetBoardstripContainerAdjustment() + "px" - }); - - $timeout(function () { - var currentBoardArray = element[0].querySelectorAll('[b2b-board]'); - - /* Remove tabindex from non-visible boards */ - updateBoardsTabIndex(currentBoardArray, ctrl.minVisibleIndex, ctrl.maxVisibleIndex); - - if (!(scope.isNextBoard())) { - try { - currentBoardArray[currentBoardArray.length - 1].focus(); - } catch (e) { /* IE8 may throw exception */ } - } - }, animationTimeout); - }; - scope.prevBoard = function () { - - ctrl.minVisibleIndex -= BoardStripConfig.boardsToScroll; - if (ctrl.minVisibleIndex < 0) { - ctrl.minVisibleIndex = 0; - } - - ctrl.maxVisibleIndex = ctrl.minVisibleIndex + BoardStripConfig.maxVisibleBoards - 1; - ctrl.rectifyMaxVisibleBoards(); - - $timeout.cancel(oldTimeout); - angular.element(element[0].querySelector(".boardstrip-container")).css({ - "left": calculateAndGetBoardstripContainerAdjustment() + "px" - }); - - $timeout(function () { - var currentBoardArray = element[0].querySelectorAll('[b2b-board]'); - - /* Remove tabindex from non-visible boards */ - updateBoardsTabIndex(currentBoardArray, ctrl.minVisibleIndex, ctrl.maxVisibleIndex); - - if (ctrl.minVisibleIndex === 0) { - try { - element[0].querySelector('div.boardstrip-item--add').focus(); - } catch (e) { /* IE8 may throw exception */ } - } - }); - }; - - scope.isPrevBoard = function () { - return (ctrl.minVisibleIndex > 0); - }; - scope.isNextBoard = function () { - return (ctrl.getBoardsMasterArrayLength() - 1 > ctrl.maxVisibleIndex); - }; - - ngModelCtrl.$render = function () { - if (ngModelCtrl.$viewValue || ngModelCtrl.$viewValue === 0) { - var newCurrentIndex = ngModelCtrl.$viewValue; - - if (!(newCurrentIndex = parseInt(newCurrentIndex, 10))) { - newCurrentIndex = 0; - } - - if (newCurrentIndex <= 0) { - ctrl.resetBoardStrip(); - newCurrentIndex = 0; - - var currentBoardArray = element[0].querySelectorAll('[b2b-board]'); - if (currentBoardArray.length !== 0) { - animateBoardstripContainerAdjustment(currentBoardArray[0]); - } else { - element[0].querySelector('div.boardstrip-item--add').focus(); - } - /* Update tabindecies to ensure keyboard navigation behaves correctly */ - updateBoardsTabIndex(currentBoardArray, ctrl.minVisibleIndex, ctrl.maxVisibleIndex); - } else if (newCurrentIndex >= ctrl.getBoardsMasterArrayLength()) { - ctrl.maxVisibleIndex = ctrl.getBoardsMasterArrayLength() - 1; - ctrl.rectifyMaxVisibleBoards(); - ctrl.minVisibleIndex = Math.max(ctrl.maxVisibleIndex - BoardStripConfig.maxVisibleBoards + 1, 0); - - newCurrentIndex = ctrl.maxVisibleIndex; - - $timeout(function () { - var currentBoardArray = element[0].querySelectorAll('[b2b-board]'); - animateBoardstripContainerAdjustment(currentBoardArray[newCurrentIndex]); - /* Update tabindecies to ensure keyboard navigation behaves correctly */ - updateBoardsTabIndex(currentBoardArray, ctrl.minVisibleIndex, ctrl.maxVisibleIndex); - }); - } else { - - if (!(newCurrentIndex >= ctrl.minVisibleIndex && newCurrentIndex <= ctrl.maxVisibleIndex)) { - ctrl.minVisibleIndex = newCurrentIndex; - ctrl.maxVisibleIndex = ctrl.minVisibleIndex + BoardStripConfig.maxVisibleBoards - 1; - ctrl.rectifyMaxVisibleBoards(); - - if (ctrl.getBoardsMasterArrayLength() < BoardStripConfig.maxVisibleBoards) { - ctrl.minVisibleIndex = 0; - } else { - ctrl.minVisibleIndex = Math.max(ctrl.maxVisibleIndex - BoardStripConfig.maxVisibleBoards + 1, 0); - } - - $timeout(function () { - var currentBoardArray = element[0].querySelectorAll('[b2b-board]'); - animateBoardstripContainerAdjustment(currentBoardArray[newCurrentIndex]); - /* Update tabindecies to ensure keyboard navigation behaves correctly */ - updateBoardsTabIndex(currentBoardArray, ctrl.minVisibleIndex, ctrl.maxVisibleIndex); - }); - } - } - scope.currentIndex = newCurrentIndex; - ngModelCtrl.$setViewValue(newCurrentIndex); - } else { - ctrl.resetBoardStrip(); - ngModelCtrl.$setViewValue(0); - } - }; - - scope.$watch('currentIndex', function (newVal, oldVal) { - if (newVal !== oldVal && ngModelCtrl && ngModelCtrl.$viewValue !== newVal) { - ngModelCtrl.$setViewValue(newVal); - } - }); - } - }; - }]) - .directive('b2bAddBoard', ['BoardStripConfig', '$parse', function (BoardStripConfig, $parse) { - return { - restrict: 'AE', - replace: true, - require: '^b2bBoardStrip', - scope: { - onAddBoard: '&?' - }, - templateUrl: 'b2bTemplate/boardstrip/b2bAddBoard.html', - link: function (scope, element, attrs, ctrl) { - scope.addBoard = function () { - if (attrs['onAddBoard']) { - scope.onAddBoard = $parse(scope.onAddBoard); - scope.onAddBoard(); - ctrl.setAddBoardPressedFlag(true); - } - }; - } - }; - }]) - .directive('b2bBoardNavigation', ['keymap', 'events', function (keymap, events) { - return { - restrict: 'AE', - link: function (scope, elem) { - - var prevElem = keymap.KEY.LEFT; - var nextElem = keymap.KEY.RIGHT; - - elem.bind('keydown', function (ev) { - - if (!(ev.keyCode)) { - ev.keyCode = ev.which; - } - - switch (ev.keyCode) { - case nextElem: - events.preventDefault(ev); - events.stopPropagation(ev); - - if (elem[0].nextElementSibling && parseInt(angular.element(elem[0].nextElementSibling).attr('tabindex')) >= 0) { - angular.element(elem[0])[0].nextElementSibling.focus(); - } else { - /* IE8 fix */ - var el = angular.element(elem[0])[0]; - do { - if (el.nextSibling) { - el = el.nextSibling; - } else { - break; - } - } while (el && el.tagName !== 'LI'); - - if (el.tagName && el.tagName === 'LI' && parseInt(angular.element(el).attr('tabindex')) >= 0) { - el.focus(); - } - } - - break; - case prevElem: - events.preventDefault(ev); - events.stopPropagation(ev); - - if (elem[0].previousElementSibling && parseInt(angular.element(elem[0].previousElementSibling).attr('tabindex')) >= 0) { - angular.element(elem[0])[0].previousElementSibling.focus(); - } else { - /* IE8 fix */ - var el1 = angular.element(elem[0])[0]; - do { - if (el1.previousSibling) { - el1 = el1.previousSibling; - } else { - break; - } - } while (el1 && el1.tagName !== 'LI'); - - if (el1.tagName && el1.tagName === 'LI' && parseInt(angular.element(el1).attr('tabindex')) >= 0) { - el1.focus(); - } - } - break; - default: - break; - } - }); - } - }; - }]); -/** - * @ngdoc directive - * @name Navigation.att:breadcrumbs - * - * @description - * - * @usage - - * @example - - - - - */ -angular.module('b2b.att.breadcrumbs',[]) -/** - * @ngdoc directive - * @name Buttons, links & UI controls.att:buttonGroups - * - * @description - * - * - * @usage -

    Radio Aproach

    -
    - - - -
    - -

    Checkbox Aproach

    - - - - - - - - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.buttonGroups', ['b2b.att.utilities']) - .constant('buttonConfig', { - activeClass: 'active', - toggleEvent: 'click' - }) - .directive('b2bBtnRadio', ['buttonConfig', function (buttonConfig) { - var activeClass = buttonConfig.activeClass || 'active'; - var toggleEvent = buttonConfig.toggleEvent || 'click'; - - return { - require: 'ngModel', - link: function (scope, element, attrs, ngModelCtrl) { - var notMobile = !/Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); - - if (notMobile) { - element.bind('focus', function () { - scope.$apply(function () { - ngModelCtrl.$setViewValue(scope.$eval(attrs.b2bBtnRadio)); - ngModelCtrl.$render(); - }); - }); - } - - element.attr('role', 'radio'); - - //model -> UI - ngModelCtrl.$render = function () { - element.toggleClass(activeClass, angular.equals(ngModelCtrl.$modelValue, scope.$eval(attrs.b2bBtnRadio))); - if (angular.equals(ngModelCtrl.$modelValue, scope.$eval(attrs.b2bBtnRadio))) { - element.attr("aria-checked", true); - } else { - element.attr("aria-checked", false); - } - }; - - //ui->model - element.bind(toggleEvent, function () { - if (!element.hasClass(activeClass)) { - scope.$apply(function () { - ngModelCtrl.$setViewValue(scope.$eval(attrs.b2bBtnRadio)); - ngModelCtrl.$render(); - }); - } - }); - } - }; - }]) - .directive('b2bBtnCheckbox', ['buttonConfig', function (buttonConfig) { - var activeClass = buttonConfig.activeClass || 'active'; - var toggleEvent = buttonConfig.toggleEvent || 'click'; - - return { - require: ['ngModel', '^^b2bButtonGroup'], - link: function (scope, element, attrs, ctrls) { - - var ngModelCtrl = ctrls[0]; - var parentCtrl = ctrls[1]; - - element.attr('role', 'checkbox'); - element.attr('aria-describedby', parentCtrl.getStateDescriptionElemId()); - - function getTrueValue() { - var trueValue = scope.$eval(attrs.b2bBtnCheckboxTrue); - return angular.isDefined(trueValue) ? trueValue : true; - } - - function getFalseValue() { - var falseValue = scope.$eval(attrs.b2bBtnCheckboxFalse); - return angular.isDefined(falseValue) ? falseValue : false; - } - - //model -> UI - ngModelCtrl.$render = function () { - element.toggleClass(activeClass, angular.equals(ngModelCtrl.$modelValue, getTrueValue())); - if ((angular.equals(ngModelCtrl.$modelValue, getTrueValue()))) { - element.attr("aria-checked", true); - } else { - element.attr("aria-checked", false); - } - }; - - //ui->model - element.bind(toggleEvent, function () { - scope.$apply(function () { - ngModelCtrl.$setViewValue(element.hasClass(activeClass) ? getFalseValue() : getTrueValue()); - ngModelCtrl.$render(); - }); - }); - } - }; - }]) - .directive('b2bButtonGroup', ['$timeout', '$compile', function ($timeout, $compile) { - return { - restrict: 'A', - scope: { - maxSelect: "=", - ngModelButtonState: '=ngModel' - }, - controller: ['$scope', '$element', function ($scope, $element) { - $scope.nSel = 0; - - var stateDescriptionElem = angular.element(''); - $compile(stateDescriptionElem)($scope); - $element.after(stateDescriptionElem); - - this.getStateDescriptionElemId = function () { - return stateDescriptionElem.attr('id'); - }; - }], - link: function (scope, element) { - - - var executeFxn = function () { - scope.nSel = 0; - angular.forEach(scope.ngModelButtonState, function (value, key) { - if (value === true) { - scope.nSel += 1; - } - }); - - if (scope.nSel >= scope.maxSelect) { - angular.forEach(element.children(), function (chd) { - if (chd.className.indexOf('active') < 0) { - chd.disabled = true; - chd.setAttribute('aria-disabled', true); - } - }); - } else { - angular.forEach(element.children(), function (chd) { - chd.disabled = false; - chd.setAttribute('aria-disabled', false); - }); - } - scope.$digest(); - }; - - $timeout(function () { - executeFxn(); - }); - element.bind('click', executeFxn); - } - }; - }]); -/** - * @ngdoc directive - * @name Buttons, links & UI controls.att:buttons - * @element input - * @function - * - * @description - * - * @usage - * -Button shape - button.btn (button shape only) - button.btn (button shape only) with custom aria label - button.btn with click functionality -Button a.btn (button shape only) - .btn-primary -Button a.btn-primary - -5 Button colors - .btn-secondary -Button a.btn-secondary - .btn-alt -Button a.btn-alt - .btn-specialty -Button a.btn-specialty - disabled="disabled" -Button a.disabled - -3 button heights - .btn is default and 46px height - .btn-medium is 42px - .btn-small is 36px - -.row-nowrap 2 up buttons -
    - - -
    - -.row 2 up buttons (desktop) stacked (mobile) (different order) -
    - - - -
    - - * @example - *
    - HTML + AngularJS - * - * - - * -
    - * - */ -angular.module('b2b.att.buttons', ['b2b.att.utilities']); -/** - * @ngdoc directive - * @name Forms.att:calendar - * - * @description - * - * @usage - * - * - * @example -
    - HTML + AngularJS - - - - -
    - */ -angular.module('b2b.att.calendar', ['b2b.att.position', 'b2b.att.utilities']) - -.constant('b2bDatepickerConfig', { - dateFormat: 'MM/dd/yyyy', - dayFormat: 'd', - monthFormat: 'MMMM', - yearFormat: 'yyyy', - dayHeaderFormat: 'EEEE', - dayTitleFormat: 'MMMM yyyy', - disableWeekend: false, - disableSunday: false, - disableDates: null, - onSelectClose: null, - startingDay: 0, - minDate: null, - maxDate: null, - dueDate: null, - fromDate: null, - legendIcon: null, - legendMessage: null, - calendarDisabled: false, - collapseWait: 0, - orientation: 'left', - inline: false, - helperText: 'The date you selected is $date. In case of mobile double tap to open calendar. Select a date to close the calendar.', - datepickerEvalAttributes: ['dateFormat', 'dayFormat', 'monthFormat', 'yearFormat', 'dayHeaderFormat', 'dayTitleFormat', 'disableWeekend', 'disableSunday', 'startingDay', 'collapseWait', 'orientation'], - datepickerWatchAttributes: ['min', 'max', 'due', 'from', 'legendIcon', 'legendMessage', 'ngDisabled'], - datepickerFunctionAttributes: ['disableDates', 'onSelectClose'] -}) - -.factory('b2bDatepickerService', ['b2bDatepickerConfig', 'dateFilter', function (b2bDatepickerConfig, dateFilter) { - var setAttributes = function (attr, elem) { - if (angular.isDefined(attr) && attr !== null && angular.isDefined(elem) && elem !== null) { - var attributes = b2bDatepickerConfig.datepickerEvalAttributes.concat(b2bDatepickerConfig.datepickerWatchAttributes, b2bDatepickerConfig.datepickerFunctionAttributes); - for (var key in attr) { - var val = attr[key]; - if (attributes.indexOf(key) !== -1 && angular.isDefined(val)) { - elem.attr(key.toSnakeCase(), key); - } - } - } - }; - - var bindScope = function (attr, scope) { - if (angular.isDefined(attr) && attr !== null && angular.isDefined(scope) && scope !== null) { - var evalFunction = function (key, val) { - scope[key] = scope.$parent.$eval(val); - }; - - var watchFunction = function (key, val) { - scope.$parent.$watch(val, function (value) { - scope[key] = value; - }); - scope.$watch(key, function (value) { - scope.$parent[val] = value; - }); - }; - - var evalAttributes = b2bDatepickerConfig.datepickerEvalAttributes; - var watchAttributes = b2bDatepickerConfig.datepickerWatchAttributes; - for (var key in attr) { - var val = attr[key]; - if (evalAttributes.indexOf(key) !== -1 && angular.isDefined(val)) { - evalFunction(key, val); - } else if (watchAttributes.indexOf(key) !== -1 && angular.isDefined(val)) { - watchFunction(key, val); - } - } - } - }; - - return { - setAttributes: setAttributes, - bindScope: bindScope - }; -}]) - -.controller('b2bDatepickerController', ['$scope', '$attrs', 'dateFilter', '$element', '$position', 'b2bDatepickerConfig', function ($scope, $attrs, dateFilter, $element, $position, dtConfig) { - var format = { - date: getValue($attrs.dateFormat, dtConfig.dateFormat), - day: getValue($attrs.dayFormat, dtConfig.dayFormat), - month: getValue($attrs.monthFormat, dtConfig.monthFormat), - year: getValue($attrs.yearFormat, dtConfig.yearFormat), - dayHeader: getValue($attrs.dayHeaderFormat, dtConfig.dayHeaderFormat), - dayTitle: getValue($attrs.dayTitleFormat, dtConfig.dayTitleFormat), - disableWeekend: getValue($attrs.disableWeekend, dtConfig.disableWeekend), - disableSunday: getValue($attrs.disableSunday, dtConfig.disableSunday), - disableDates: getValue($attrs.disableDates, dtConfig.disableDates) - }, - startingDay = getValue($attrs.startingDay, dtConfig.startingDay); - - $scope.minDate = dtConfig.minDate ? $scope.resetTime(dtConfig.minDate) : null; - $scope.maxDate = dtConfig.maxDate ? $scope.resetTime(dtConfig.maxDate) : null; - $scope.dueDate = dtConfig.dueDate ? $scope.resetTime(dtConfig.dueDate) : null; - $scope.fromDate = dtConfig.fromDate ? $scope.resetTime(dtConfig.fromDate) : null; - $scope.legendIcon = dtConfig.legendIcon ? dtConfig.legendIcon : null; - $scope.legendMessage = dtConfig.legendMessage ? dtConfig.legendMessage : null; - $scope.ngDisabled = dtConfig.calendarDisabled ? dtConfig.calendarDisabled : null; - $scope.collapseWait = getValue($attrs.collapseWait, dtConfig.collapseWait); - $scope.orientation = getValue($attrs.orientation, dtConfig.orientation); - $scope.onSelectClose = getValue($attrs.onSelectClose, dtConfig.onSelectClose); - - $scope.inline = $attrs.inline === 'true' ? true : dtConfig.inline; - - function getValue(value, defaultValue) { - return angular.isDefined(value) ? $scope.$parent.$eval(value) : defaultValue; - } - - function getDaysInMonth(year, month) { - return new Date(year, month, 0).getDate(); - } - - function getDates(startDate, n) { - var dates = new Array(n); - var current = startDate, - i = 0; - while (i < n) { - dates[i++] = new Date(current); - current.setDate(current.getDate() + 1); - } - return dates; - } - - this.updatePosition = function (b2bDatepickerPopupTemplate) { - $scope.position = $position.offset($element); - $scope.position.top = $scope.position.top + $element.find('input').prop('offsetHeight'); - if ($scope.orientation === 'right') { - $scope.position.left = $scope.position.left - (((b2bDatepickerPopupTemplate && b2bDatepickerPopupTemplate.prop('offsetWidth')) || 290) - $element.find('input').prop('offsetWidth')); - } - }; - - function isSelected(dt) { - if (dt && angular.isDate($scope.currentDate) && compare(dt, $scope.currentDate) === 0) { - return true; - } - return false; - } - - function isFromDate(dt) { - if (dt && angular.isDate($scope.fromDate) && compare(dt, $scope.fromDate) === 0) { - return true; - } - return false; - } - - function isDateRange(dt) { - if (dt && $scope.fromDate && angular.isDate($scope.currentDate) && (compare(dt, $scope.fromDate) >= 0) && (compare(dt, $scope.currentDate) <= 0)) { - return true; - } else if (dt && $scope.fromDate && compare(dt, $scope.fromDate) === 0) { - return true; - } - return false; - } - - function isOld(date, currentMonthDate) { - if (date && currentMonthDate && (new Date(date.getFullYear(), date.getMonth(), 1, 0, 0, 0).getTime() < new Date(currentMonthDate.getFullYear(), currentMonthDate.getMonth(), 1, 0, 0, 0).getTime())) { - return true; - } else { - return false; - } - } - - function isNew(date, currentMonthDate) { - if (date && currentMonthDate && (new Date(date.getFullYear(), date.getMonth(), 1, 0, 0, 0).getTime() > new Date(currentMonthDate.getFullYear(), currentMonthDate.getMonth(), 1, 0, 0, 0).getTime())) { - return true; - } else { - return false; - } - } - - function isPastDue(dt) { - if ($scope.dueDate) { - return (dt > $scope.dueDate); - } - return false; - } - - function isDueDate(dt) { - if ($scope.dueDate) { - return (dt.getTime() === $scope.dueDate.getTime()); - } - return false; - } - - var isDisabled = function (date, currentMonthDate) { - if ($attrs.from && !angular.isDate($scope.fromDate)) { - return true; - } - if (format.disableWeekend === true && (dateFilter(date, format.dayHeader) === "Saturday" || dateFilter(date, format.dayHeader) === "Sunday")) { - return true; - } - if (format.disableSunday === true && (dateFilter(date, format.dayHeader) === "Sunday")) { - return true; - } - if (isOld(date, currentMonthDate) || isNew(date, currentMonthDate)) { - return true; - } - return (($scope.minDate && compare(date, $scope.minDate) < 0) || ($scope.maxDate && compare(date, $scope.maxDate) > 0) || (format.disableDates && format.disableDates({ - date: date - }))); - }; - - var compare = function (date1, date2) { - return (new Date(date1.getFullYear(), date1.getMonth(), date1.getDate()) - new Date(date2.getFullYear(), date2.getMonth(), date2.getDate())); - }; - - function isMinDateAvailable(startDate, endDate) { - if (($scope.minDate && $scope.minDate.getTime() >= startDate.getTime()) && ($scope.minDate.getTime() <= endDate.getTime())) { - $scope.disablePrev = true; - $scope.visibilityPrev = "hidden"; - } else { - $scope.disablePrev = false; - $scope.visibilityPrev = "visible"; - } - } - - function isMaxDateAvailable(startDate, endDate) { - if (($scope.maxDate && $scope.maxDate.getTime() >= startDate.getTime()) && ($scope.maxDate.getTime() <= endDate.getTime())) { - $scope.disableNext = true; - $scope.visibilityNext = "hidden"; - } else { - $scope.disableNext = false; - $scope.visibilityNext = "visible"; - } - } - - function getLabel(label) { - if (label) { - var labelObj = { - pre: label.substr(0, 1).toUpperCase(), - post: label - }; - return labelObj; - } - return; - } - - function makeDate(date, dayFormat, dayHeaderFormat, isSelected, isFromDate, isDateRange, isOld, isNew, isDisabled, dueDate, pastDue) { - return { - date: date, - label: dateFilter(date, dayFormat), - header: dateFilter(date, dayHeaderFormat), - selected: !!isSelected, - fromDate: !!isFromDate, - dateRange: !!isDateRange, - oldMonth: !!isOld, - nextMonth: !!isNew, - disabled: !!isDisabled, - dueDate: !!dueDate, - pastDue: !!pastDue, - focusable: !((isDisabled && !(isSelected || isDateRange)) || (isOld || isNew)) - }; - } - - this.modes = [ - { - name: 'day', - getVisibleDates: function (date) { - var year = date.getFullYear(), - month = date.getMonth(), - firstDayOfMonth = new Date(year, month, 1), - lastDayOfMonth = new Date(year, month + 1, 0); - var difference = startingDay - firstDayOfMonth.getDay(), - numDisplayedFromPreviousMonth = (difference > 0) ? 7 - difference : -difference, - firstDate = new Date(firstDayOfMonth), - numDates = 0; - - if (numDisplayedFromPreviousMonth > 0) { - firstDate.setDate(-numDisplayedFromPreviousMonth + 1); - numDates += numDisplayedFromPreviousMonth; // Previous - } - numDates += getDaysInMonth(year, month + 1); // Current - numDates += (7 - numDates % 7) % 7; // Next - - var days = getDates(firstDate, numDates), - labels = new Array(7); - for (var i = 0; i < numDates; i++) { - var dt = new Date(days[i]); - days[i] = makeDate(dt, - format.day, - format.dayHeader, - isSelected(dt), - isFromDate(dt), - isDateRange(dt), - isOld(dt, date), - isNew(dt, date), - isDisabled(dt, date), - isDueDate(dt), - isPastDue(dt)); - } - for (var j = 0; j < 7; j++) { - labels[j] = getLabel(dateFilter(days[j].date, format.dayHeader)); - } - isMinDateAvailable(firstDayOfMonth, lastDayOfMonth); - isMaxDateAvailable(firstDayOfMonth, lastDayOfMonth); - return { - objects: days, - title: dateFilter(date, format.dayTitle), - labels: labels - }; - }, - split: 7, - step: { - months: 1 - } - } - ]; -}]) - -.directive('b2bDatepickerPopup', ['$parse', '$log', '$timeout', '$document', '$documentBind', '$isElement', '$templateCache', '$compile', 'trapFocusInElement', '$position', '$window', function ($parse, $log, $timeout, $document, $documentBind, $isElement, $templateCache, $compile, trapFocusInElement, $position, $window) { - return { - restrict: 'EA', - replace: true, - transclude: true, - templateUrl: function (elem, attr) { - if (attr.inline === 'true') { - return 'b2bTemplate/calendar/datepicker-popup.html'; - } else { - return 'b2bTemplate/calendar/datepicker.html'; - } - }, - scope: {}, - require: ['b2bDatepickerPopup', 'ngModel', '?^b2bDatepickerGroup'], - controller: 'b2bDatepickerController', - link: function (scope, element, attrs, ctrls) { - var datepickerCtrl = ctrls[0], - ngModel = ctrls[1], - b2bDatepickerGroupCtrl = ctrls[2]; - var b2bDatepickerPopupTemplate; - - if (!ngModel) { - $log.error("ng-model is required."); - return; // do nothing if no ng-model - } - - // Configuration parameters - var mode = 0, - selected; - scope.isOpen = false; - - scope.headers = []; - scope.footers = []; - - if (b2bDatepickerGroupCtrl) { - b2bDatepickerGroupCtrl.registerDatepickerScope(scope); - } - - element.find('button').bind('click', function () { - element.find('input')[0].click(); - }); - - element.find('input').bind('click', function () { - if (!scope.ngDisabled) { - scope.isOpen = !scope.isOpen; - toggleCalendar(scope.isOpen); - scope.$apply(); - datepickerCtrl.updatePosition(b2bDatepickerPopupTemplate); - $timeout(function () { - angular.element(element[0].querySelector('.datepicker-input')).scrollTop=0; - },10); - } - }); - var toggleCalendar = function (flag) { - if (!scope.inline) { - if (flag) { - b2bDatepickerPopupTemplate = angular.element($templateCache.get('b2bTemplate/calendar/datepicker-popup.html')); - b2bDatepickerPopupTemplate = $compile(b2bDatepickerPopupTemplate)(scope); - $document.find('body').append(b2bDatepickerPopupTemplate); - b2bDatepickerPopupTemplate.bind('keydown', keyPress); - $timeout(function () { - scope.getFocus = true; - trapFocusInElement(flag, b2bDatepickerPopupTemplate); - scope.$apply(); - $timeout(function () { - scope.getFocus = false; - scope.$apply(); - }, 100); - }); - } else { - b2bDatepickerPopupTemplate.unbind('keydown', keyPress); - b2bDatepickerPopupTemplate.remove(); - element.find('button')[0].focus(); - scope.getFocus = false; - trapFocusInElement(flag, b2bDatepickerPopupTemplate); - } - } - }; - - var outsideClick = function (e) { - var isElement = $isElement(angular.element(e.target), element, $document); - var isb2bDatepickerPopupTemplate = $isElement(angular.element(e.target), b2bDatepickerPopupTemplate, $document); - if (!(isElement || isb2bDatepickerPopupTemplate)) { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - scope.$apply(); - } - }; - - var keyPress = function (ev) { - if (!ev.keyCode) { - if (ev.which) { - ev.keyCode = ev.which; - } else if (ev.charCode) { - ev.keyCode = ev.charCode; - } - } - if (ev.keyCode) { - if (ev.keyCode === 27) { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - ev.preventDefault(); - ev.stopPropagation(); - } else if (ev.keyCode === 33) { - !scope.disablePrev && scope.move(-1); - $timeout(function () { - scope.getFocus = true; - scope.$apply(); - $timeout(function () { - scope.getFocus = false; - scope.$apply(); - }, 100); - }); - ev.preventDefault(); - ev.stopPropagation(); - } else if (ev.keyCode === 34) { - !scope.disableNext && scope.move(1); - $timeout(function () { - scope.getFocus = true; - scope.$apply(); - $timeout(function () { - scope.getFocus = false; - scope.$apply(); - }, 100); - }); - ev.preventDefault(); - ev.stopPropagation(); - } - scope.$apply(); - } - }; - - $documentBind.click('isOpen', outsideClick, scope); - - var modalContainer = angular.element(document.querySelector('.modalwrapper')); - var modalBodyContainer = angular.element(document.querySelector('.modal-body')); - if (modalContainer) { - modalContainer.bind('scroll', function () { - if (b2bDatepickerPopupTemplate) { - datepickerCtrl.updatePosition(b2bDatepickerPopupTemplate); - scope.$apply(); - } - }); - } - if (modalBodyContainer) { - modalBodyContainer.bind('scroll', function () { - if (b2bDatepickerPopupTemplate) { - datepickerCtrl.updatePosition(b2bDatepickerPopupTemplate); - var datepickerTextfield = $position.offset(element.find('input')); - var modalBodyPosition = $position.offset(modalBodyContainer); - - if (((datepickerTextfield.top + datepickerTextfield.height) < modalBodyPosition.top || datepickerTextfield.top > (modalBodyPosition.top + modalBodyPosition.height)) && scope.isOpen) { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - } - scope.$apply(); - } - }); - } - var window = angular.element($window); - window.bind('resize', function () { - if (b2bDatepickerPopupTemplate) { - datepickerCtrl.updatePosition(b2bDatepickerPopupTemplate); - scope.$apply(); - } - }); - - scope.$on('$destroy', function () { - if (scope.isOpen) { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - } - }); - - scope.resetTime = function (date) { - if (typeof date === 'string') { - date = date + 'T12:00:00'; - } - var dt; - if (!isNaN(new Date(date))) { - dt = new Date(date); - } else { - return null; - } - return new Date(dt.getFullYear(), dt.getMonth(), dt.getDate()); - }; - - if (attrs.min) { - scope.$parent.$watch($parse(attrs.min), function (value) { - scope.minDate = value ? scope.resetTime(value) : null; - refill(); - }); - } - if (attrs.max) { - scope.$parent.$watch($parse(attrs.max), function (value) { - scope.maxDate = value ? scope.resetTime(value) : null; - refill(); - }); - } - if (attrs.due) { - scope.$parent.$watch($parse(attrs.due), function (value) { - scope.dueDate = value ? scope.resetTime(value) : null; - refill(); - }); - } - if (attrs.from) { - scope.$parent.$watch($parse(attrs.from), function (value) { - scope.fromDate = value ? scope.resetTime(value) : null; - refill(); - }); - } - - if (attrs.legendIcon) { - scope.$parent.$watch(attrs.legendIcon, function (value) { - scope.legendIcon = value ? value : null; - refill(); - }); - } - if (attrs.legendMessage) { - scope.$parent.$watch(attrs.legendMessage, function (value) { - scope.legendMessage = value ? value : null; - refill(); - }); - } - if (attrs.ngDisabled) { - scope.$parent.$watch(attrs.ngDisabled, function (value) { - scope.ngDisabled = value ? value : null; - }); - } - - // Split array into smaller arrays - function split(arr, size) { - var arrays = []; - while (arr.length > 0) { - arrays.push(arr.splice(0, size)); - } - return arrays; - } - - function refill(date) { - if (angular.isDate(date) && !isNaN(date)) { - selected = new Date(date); - } else { - if (!selected) { - selected = new Date(); - } - } - - if (selected) { - var currentMode = datepickerCtrl.modes[mode], - data = currentMode.getVisibleDates(selected); - scope.rows = split(data.objects, currentMode.split); - var flag = false; - var startFlag = false; - var firstSelected = false; - for (var i = 0; i < scope.rows.length; i++) { - for (var j = 0; j < scope.rows[i].length; j++) { - - if (scope.rows[i][j].label === "1" && !firstSelected) { - firstSelected = true; - var firstDay = scope.rows[i][j]; - } - - if (scope.rows[i][j].selected === true) { - flag = true; - break; - } - } - if (flag) { - break; - } - } - if (!flag) { - firstDay.firstFocus = true; - } - - scope.labels = data.labels || []; - scope.title = data.title; - - datepickerCtrl.updatePosition(b2bDatepickerPopupTemplate); - } - } - - scope.select = function (date) { - var dt = new Date(date.getFullYear(), date.getMonth(), date.getDate()); - if (!scope.onSelectClose || (scope.onSelectClose && scope.onSelectClose({ - date: dt - }) !== false)) { - scope.currentDate = dt; - if (angular.isNumber(scope.collapseWait)) { - $timeout(function () { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - }, scope.collapseWait); - } else { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - } - } - }; - - scope.move = function (direction,$event) { - var step = datepickerCtrl.modes[mode].step; - selected.setDate(1); - selected.setMonth(selected.getMonth() + direction * (step.months || 0)); - selected.setFullYear(selected.getFullYear() + direction * (step.years || 0)); - refill(); - - $timeout(function () { - trapFocusInElement(); - }, 100); - - $event.preventDefault(); - $event.stopPropagation(); - }; - - scope.trapFocus = function () { - $timeout(function () { - trapFocusInElement(); - }, 100); - }; - - scope.$watch('currentDate', function (value) { - if (angular.isDefined(value) && value !== null) { - refill(value); - } else { - refill(); - } - ngModel.$setViewValue(value); - }); - - ngModel.$render = function () { - scope.currentDate = ngModel.$viewValue; - }; - - var stringToDate = function (value) { - if (!isNaN(new Date(value))) { - value = new Date(value); - } - return value; - }; - ngModel.$formatters.unshift(stringToDate); - } - }; -}]) - -.directive('b2bDatepicker', ['$compile', '$log', 'b2bDatepickerConfig', 'b2bDatepickerService', function ($compile, $log, b2bDatepickerConfig, b2bDatepickerService) { - return { - restrict: 'A', - scope: { - disableDates: '&', - onSelectClose: '&' - }, - require: 'ngModel', - controller: ['$scope', '$element', '$attrs', function (scope, elem, attr) { - var dateFormatString = angular.isDefined(attr.dateFormat) ? scope.$parent.$eval(attr.dateFormat) : b2bDatepickerConfig.dateFormat; - var helperText = angular.isDefined(attr.helperText) ? scope.$parent.$eval(attr.helperText) : b2bDatepickerConfig.helperText; - helperText = helperText.replace('$date', '{{dt | date : \'' + dateFormatString + '\'}}'); - - var inline = false; - if (elem.prop('nodeName') !== 'INPUT') { - inline = true; - } - - var calendarIcon = '' - var selectedDateMessage = ''; - - elem.removeAttr('b2b-datepicker'); - elem.removeAttr('ng-model'); - elem.removeAttr('ng-disabled'); - elem.addClass('datepicker-input'); - elem.attr('ng-model', 'dt'); - elem.attr('aria-describedby', 'datepicker'); - elem.attr('aria-hidden', 'true'); - elem.attr('tabindex', '-1'); - elem.attr('readonly', 'true'); - elem.attr('ng-disabled', 'ngDisabled'); - elem.attr('b2b-format-date', dateFormatString); - - var wrapperElement = angular.element('
    '); - wrapperElement.attr('b2b-datepicker-popup', ''); - wrapperElement.attr('ng-model', 'dt'); - if (inline) { - wrapperElement.attr('inline', inline); - } - - b2bDatepickerService.setAttributes(attr, wrapperElement); - b2bDatepickerService.bindScope(attr, scope); - - wrapperElement.html(''); - wrapperElement.append(calendarIcon); - wrapperElement.append(selectedDateMessage); - wrapperElement.append(elem.prop('outerHTML')); - - var elm = wrapperElement.prop('outerHTML'); - elm = $compile(elm)(scope); - elem.replaceWith(elm); - }], - link: function (scope, elem, attr, ctrl) { - if (!ctrl) { - $log.error("ng-model is required."); - return; // do nothing if no ng-model - } - - scope.$watch('dt', function (value) { - ctrl.$setViewValue(value); - }); - ctrl.$render = function () { - scope.dt = ctrl.$viewValue; - }; - } - }; -}]) - -.directive('b2bDatepickerGroup', [function () { - return { - restrict: 'EA', - controller: ['$scope', '$element', '$attrs', function (scope, elem, attr) { - this.$$headers = []; - this.$$footers = []; - this.registerDatepickerScope = function (datepickerScope) { - datepickerScope.headers = this.$$headers; - datepickerScope.footers = this.$$footers; - }; - }], - link: function (scope, elem, attr, ctrl) {} - }; -}]) - -.directive('b2bFormatDate', ['dateFilter', function (dateFilter) { - return { - restrict: 'A', - require: 'ngModel', - link: function (scope, elem, attr, ctrl) { - var b2bFormatDate = ""; - attr.$observe('b2bFormatDate', function (value) { - b2bFormatDate = value; - }); - var dateToString = function (value) { - if (!isNaN(new Date(value))) { - return dateFilter(new Date(value), b2bFormatDate); - } - return value; - }; - ctrl.$formatters.unshift(dateToString); - } - }; -}]) - -.directive('b2bDatepickerHeader', [function () { - return { - restrict: 'EA', - require: '^b2bDatepickerGroup', - transclude: true, - replace: true, - template: '', - compile: function (elem, attr, transclude) { - return function link(scope, elem, attr, ctrl) { - if (ctrl) { - ctrl.$$headers.push(transclude(scope, function () {})); - } - elem.remove(); - }; - } - }; -}]) - -.directive('b2bDatepickerFooter', [function () { - return { - restrict: 'EA', - require: '^b2bDatepickerGroup', - transclude: true, - replace: true, - template: '', - compile: function (elem, attr, transclude) { - return function link(scope, elem, attr, ctrl) { - if (ctrl) { - ctrl.$$footers.push(transclude(scope, function () {})); - } - elem.remove(); - }; - } - }; -}]); -/** - * @ngdoc directive - * @name Forms.att:checkboxes - * - * @description - * - * @usage - * See demo section - * @example - - - - - */ -angular.module('b2b.att.checkboxes', ['b2b.att.utilities']) -.directive('b2bSelectGroup', [function (){ - return { - restrict: 'A', - require: 'ngModel', - scope: { - checkboxes: "=" - }, - link: function (scope, elem, attr, ctrl) { - elem.bind('change', function () { - var isChecked = elem.prop('checked'); - angular.forEach(scope.checkboxes, function (item) { - item.isSelected = isChecked; - }); - scope.$apply(); - }); - scope.$watch('checkboxes', function () { - var setBoxes = 0; - if(scope.checkboxes === undefined) { - return; - } - angular.forEach(scope.checkboxes, function (item) { - if (item.isSelected) { - setBoxes++; - } - }); - elem.prop('indeterminate', false); - if ( scope.checkboxes !==undefined && setBoxes === scope.checkboxes.length && scope.checkboxes.length > 0) { - ctrl.$setViewValue(true); - elem.removeClass('indeterminate'); - } else if (setBoxes === 0) { - ctrl.$setViewValue(false); - elem.removeClass('indeterminate'); - } else { - ctrl.$setViewValue(false); - elem.addClass('indeterminate'); - elem.prop('indeterminate', true); - } - ctrl.$render(); - }, true); - } - }; - }]); -/** - * @ngdoc directive - * @name Misc.att:coachmark - * - * @description - * - * - * @usage - * - - - * @example -
    - HTML + AngularJS - - - - -
    - */ - -angular.module('b2b.att.coachmark', ['b2b.att.utilities','b2b.att.position']) - - .directive('b2bCoachmark', ['$document', '$compile', '$position', '$timeout', function($document, $compile, $position, $timeout) { - return { - restrict: 'A', - scope: { - coachmarks: '=', - coachmarkIndex: '=', - startCoachmarkCallback: '&', - endCoachmarkCallback: '&', - actionCoachmarkCallback: '&' - }, - link: function (scope, element, attrs, ctrl) { - var coachmarkItems = scope.coachmarks; - var body = $document.find('body').eq(0); - var coackmarkJqContainer; - var coackmarkContainer; - var coachMarkElement; - var backdropjqLiteEl; - var coachmarkHighlight; - var initaitedCoachmark = false; - scope.coackmarkElPos ={ - 'top':'', - 'left':'' - }; - - scope.currentCoachmark = {}; - - - var coachmarkBackdrop = function(){ - backdropjqLiteEl = angular.element('
    '); - body.append(backdropjqLiteEl); - - backdropjqLiteEl.bind('click', function() { - scope.closeCoachmark(); - scope.$apply(); - }); - }; - - - scope.closeButtonFocus = function(){ - if(document.getElementsByClassName('b2b-coachmark-header').length >0){ - document.getElementsByClassName('b2b-coachmark-header')[0].scrollLeft = 0; - document.getElementsByClassName('b2b-coachmark-header')[0].scrollTop = 0; - } - } - - scope.actionCoachmark = function(action){ - scope.actionCoachmarkCallback({ - 'action':action - }) - }; - - scope.closeCoachmark = function(){ - initaitedCoachmark = false; - backdropjqLiteEl.remove(); - coackmarkContainer.remove(); - coachmarkHighlight.remove(); - if(coachMarkElement !== undefined && coachMarkElement !==""){ - coachMarkElement.removeClass('b2b-coachmark-label') - } - if (angular.isFunction(scope.endCoachmarkCallback)){ - scope.endCoachmarkCallback(); - } - element[0].focus(); - } - - function showCoachmark(targetElement) { - scope.currentCoachmark = targetElement; - if(coachMarkElement !== undefined && coachMarkElement !==""){ - coachMarkElement.removeClass('b2b-coachmark-label') - coackmarkContainer.remove(); - coachmarkHighlight.remove(); - } - coachMarkElement = angular.element(document.querySelector(targetElement.elementId)); - coachMarkElement.addClass('b2b-coachmark-label'); - var elementPosition = $position.offset(coachMarkElement); - - coachmarkHighlight = angular.element('
    '); - coachmarkHighlight.css({ - 'width': (elementPosition.width + 20) +'px', - 'top': (elementPosition.top -10) + 'px', - 'left': (elementPosition.left - 10) + 'px', - 'height': (elementPosition.height + 20) +'px' - }); - body.append(coachmarkHighlight); - - scope.coackmarkElPos.top = (elementPosition.top + elementPosition.height + 32) + 'px'; - scope.coackmarkElPos.left = (elementPosition.left - 158 + elementPosition.width / 2 ) + 'px'; - coackmarkJqContainer = angular.element('
    '); - coackmarkContainer = $compile(coackmarkJqContainer)(scope); - body.append(coackmarkContainer); - - $timeout(function () { - var currentCoachmarkContainer = document.getElementsByClassName('b2b-coachmark-container')[0]; - currentCoachmarkContainer.focus(); - var coachmarkHeight = window.getComputedStyle(currentCoachmarkContainer).height.split('px')[0]; - var newOffsetHeight = (Math.round(elementPosition.top) - Math.round(coachmarkHeight)); - - // We need a slight offset to show the lightboxed item - TweenLite.to(window, 2, {scrollTo:{x: (scope.coackmarkElPos.left.split('px')[0]-100), y: newOffsetHeight}}); - }, 200); - } - - element.bind('click', function (e) { - initaitedCoachmark = true; - if(scope.coachmarkIndex === -1 || scope.coachmarkIndex >= coachmarkItems.length ){ - scope.coachmarkIndex = 0; - } - scope.$watch('coachmarkIndex', function () { - if(initaitedCoachmark === true){ - if(scope.coachmarkIndex === -1 || scope.coachmarkIndex >= coachmarkItems.length ){ - scope.closeCoachmark(); - }else{ - showCoachmark(coachmarkItems[scope.coachmarkIndex]); - } - } - }); - coachmarkBackdrop(); - showCoachmark(coachmarkItems[scope.coachmarkIndex]); - if (angular.isFunction(scope.startCoachmarkCallback)){ - scope.startCoachmarkCallback(); - } - $document.bind('keydown', function (evt) { - if (evt.which === 27 && initaitedCoachmark) { - scope.closeCoachmark(); - scope.$apply(); - } - }); - }); - - } - }; - }]) - .directive('b2bCoachmarkContainer', ['$document', '$position', function($document, $position) { - return { - restrict: 'A', - transclude: true, - replace: true, - templateUrl: 'b2bTemplate/coachmark/coachmark.html', - link: function (scope, element, attrs, ctrl) { - - } - }; - }]); - -/** - * @ngdoc directive - * @name Template.att:Configuration Section - * - * @description - * - * - * @example - *
    - HTML + AngularJS - - - - -
    - * - */ -angular.module('b2b.att.configurationSection', []) - -/** - * @ngdoc directive - * @name Template.att:Directory Listing - * - * @description - * - * - * @example - *
    - HTML + AngularJS - - - - -
    - * - */ -angular.module('b2b.att.directoryListingTemplate', []) - -/** - * @ngdoc directive - * @name Forms.att:dropdowns - * - * @description - * - * @usage - * - * @example -
    - - - - -
    - */ -angular.module('b2b.att.dropdowns', ['b2b.att.utilities', 'b2b.att.position', 'ngSanitize']) - -.constant('b2bDropdownConfig', { - prev: '37,38', - next: '39,40', - menuKeyword: 'menu', - linkMenuKeyword: 'link-menu', - largeKeyword: 'large', - smallKeyword: 'small' -}) - -.directive("b2bDropdown", ['$timeout', '$compile', '$templateCache', 'b2bUserAgent', 'b2bDropdownConfig', '$position', function ($timeout, $compile, $templateCache, b2bUserAgent, b2bDropdownConfig, $position) { - return { - restrict: 'A', - scope: true, - require: 'ngModel', - controller: ['$scope', '$element', '$attrs', function (scope, elem, attr) { - scope.isInputDropdown = true; - scope.placeHoldertext = attr.placeholderText; - if (attr.type) { - if (attr.type.indexOf(b2bDropdownConfig.menuKeyword) > -1 || attr.type.indexOf(b2bDropdownConfig.linkMenuKeyword) > -1) { - scope.isInputDropdown = false; - if (attr.type.indexOf(b2bDropdownConfig.linkMenuKeyword) > -1) { - scope.dropdownType = b2bDropdownConfig.linkMenuKeyword; - } else if (attr.type.indexOf(b2bDropdownConfig.menuKeyword) > -1) { - scope.dropdownType = b2bDropdownConfig.menuKeyword; - } - } - if (attr.type.indexOf(b2bDropdownConfig.largeKeyword) > -1) { - scope.dropdownSize = b2bDropdownConfig.largeKeyword; - } else if (attr.type.indexOf(b2bDropdownConfig.smallKeyword) > -1) { - scope.dropdownSize = b2bDropdownConfig.smallKeyword; - } - } - - scope.labelText = attr.labelText; - - scope.setBlur = function () { - scope.setTouched(); - }; - - if ((scope.isInputDropdown && b2bUserAgent.notMobile()) || (!scope.isInputDropdown)) { - var formCtrl = elem.controller('form'); - scope.setNgModelController = function (name, ngModelCtrl) { - if (name && formCtrl && ngModelCtrl) { - formCtrl[name] = ngModelCtrl; - } - }; - scope.setOptionalCta = function (optionalCta) { - scope.optionalCta = optionalCta; - }; - var innerHtml = angular.element('
    ').append(elem.html()); - innerHtml = ($compile(innerHtml)(scope)).html(); - var template = angular.element($templateCache.get('b2bTemplate/dropdowns/b2bDropdownDesktop.html')); - template.find('ul').eq(0).append(innerHtml); - template = $compile(template)(scope); - elem.replaceWith(template); - } else if (scope.isInputDropdown && b2bUserAgent.isMobile()) { - elem.css({ - 'opacity': '0', - 'filter': 'alpha(opacity=0)' - }); - elem.addClass('awd-select isWrapped'); - elem.wrap(''); - var cover = angular.element(''); - elem.parent().append(cover); - elem.parent().append(''); - var set = function () { - var sel = elem[0] ? elem[0] : elem; - var selectedText = ""; - var selIndex = sel.selectedIndex; - if (typeof selIndex !== 'undefined') { - selectedText = sel.options[selIndex].text; - } - cover.text(selectedText).append(''); - }; - var update = function (value) { - $timeout(set, 100); - }; - - if (attr.ngModel) { - scope.$watch(attr.ngModel, function (newVal, oldVal) { - update(); - }); - } - elem.bind('keyup', function (ev) { - if (ev.keyCode === keymap.KEY.TAB || ev.keyCode === keymap.KEY.ESC) { - return; - } - set(); - }); - } - }], - link: function (scope, elem, attr, ctrl) { - if ((scope.isInputDropdown && b2bUserAgent.notMobile()) || (!scope.isInputDropdown)) { - scope.updateModel = function () { - if (ctrl.$dirty) { - debugger; - } - ctrl.$setViewValue(scope.currentSelected.value); - if (scope.dropdownRequired && scope.currentSelected.value === '') { - scope.setRequired(false); - } else { - scope.setRequired(true); - } - - if (scope.dropdownType === b2bDropdownConfig.linkMenuKeyword) { - $timeout(function () { - scope.appendCaretPositionStyle(); - }, 100); - } - }; - ctrl.$render = function () { -// if(ctrl.$dirty || ctrl.$pristine) { - $timeout(function () { - - if ((angular.isUndefined(ctrl.$viewValue) || ctrl.$viewValue == '') && (angular.isUndefined(scope.placeHoldertext) || scope.placeHoldertext == '')) { - scope.dropdownLists[ctrl.$viewValue] && scope.dropdownLists[ctrl.$viewValue][0].updateDropdownValue(); - } else if ((angular.isUndefined(scope.placeHoldertext) || scope.placeHoldertext == '') && ctrl.$viewValue !== '' ) { - scope.dropdownLists[ctrl.$viewValue] && scope.dropdownLists[ctrl.$viewValue][0].updateDropdownValue(); - } else if ((angular.isUndefined(ctrl.$viewValue) || ctrl.$viewValue == '') && scope.placeHoldertext !== '' ) { - scope.currentSelected.text = scope.placeHoldertext; - } else { - scope.dropdownLists[ctrl.$viewValue] && scope.dropdownLists[ctrl.$viewValue][0].updateDropdownValue(); - } - - }, 100); - }; -// } - scope.disabled = false; - scope.dropdownName = attr.name; - scope.dropdownId = attr.id; - scope.labelId = attr.ariaLabelledby; - scope.dropdownDescribedBy = attr.ariaDescribedby; - if (attr.required) { - scope.dropdownRequired = true; - } else { - scope.dropdownRequired = false; - } - elem.removeAttr('name'); - elem.removeAttr('id'); - scope.$parent.$watch(attr.ngDisabled, function (val) { - scope.disabled = val; - }); - } - } - }; -}]) - -.directive("b2bDropdownToggle", ['$document', '$documentBind', '$isElement', 'b2bDropdownConfig', 'keymap', 'b2bUtilitiesConfig', '$timeout', '$position', function ($document, $documentBind, $isElement, b2bDropdownConfig, keymap, b2bUtilitiesConfig, $timeout, $position) { - return { - restrict: 'A', - require: '?^b2bKey', - link: function (scope, elem, attr, ctrl) { - scope.appendCaretPositionStyle = function () { - while (document.querySelector('style.b2bDropdownCaret')) { - document.querySelector('style.b2bDropdownCaret').remove(); - }; - var caretPosition = $position.position(elem).width - 26; - if (scope.dropdownType === b2bDropdownConfig.linkMenuKeyword) { - var template = angular.element(''); - $document.find('head').append(template); - } - }; - - if (scope.isInputDropdown && (scope.labelText !== undefined)) { - elem.attr('aria-label', scope.labelText); - } - - scope.toggleFlag = false; - scope.dropdownLists = {}; - scope.dropdownListValues = []; - scope.dropdown = { - totalIndex: -1 - }; - scope.currentSelected = { - value: '', - text: '', - label: '', - index: -1 - }; - var searchString = ''; - var searchElement = function (searchExp) { - var regex = new RegExp("\\b" + searchExp, "gi"); - var position = scope.dropdownListValues.regexIndexOf(regex, scope.currentSelected.index + 1, true); - if (position > -1) { - return position; - } - return undefined; - }; - var startTimer = function (time) { - if (searchString === '') { - $timeout(function () { - searchString = ''; - }, time); - } - }; - scope.toggleDropdown = function (toggleFlag) { - if (!scope.disabled) { - if (angular.isDefined(toggleFlag)) { - scope.toggleFlag = toggleFlag; - } else { - scope.toggleFlag = !scope.toggleFlag; - } - if (!scope.toggleFlag) { - if (scope.isInputDropdown) { - elem.parent().find('input')[0].focus(); - } else { - elem.parent().find('button')[0].focus(); - } - } else { - scope.dropdown.highlightedValue = scope.currentSelected.value; - if (ctrl && ctrl.enableSearch) { - if (angular.isDefined(scope.dropdownLists[scope.currentSelected.value])) { - ctrl.resetCounter(scope.dropdownLists[scope.currentSelected.value][2]); - } - } - if (scope.dropdownType === b2bDropdownConfig.linkMenuKeyword) { - scope.appendCaretPositionStyle(); - } - } - } - }; - - elem.bind('keydown', function (ev) { - if (!ev.keyCode) { - if (ev.which) { - ev.keyCode = ev.which; - } else if (ev.charCode) { - ev.keyCode = ev.charCode; - } - } - if (!scope.toggleFlag) { - if (ev.keyCode) { - var currentIndex = scope.currentSelected.index; - if (ev.altKey === true && ev.keyCode === keymap.KEY.DOWN) { - scope.toggleDropdown(true); - ev.preventDefault(); - ev.stopPropagation(); - } else if (b2bDropdownConfig.prev.split(',').indexOf(ev.keyCode.toString()) > -1) { - angular.isDefined(scope.dropdownListValues[currentIndex - 1]) ? scope.dropdownLists[scope.dropdownListValues[currentIndex - 1]][0].updateDropdownValue() : angular.noop(); - ev.preventDefault(); - ev.stopPropagation(); - } else if (b2bDropdownConfig.next.split(',').indexOf(ev.keyCode.toString()) > -1) { - angular.isDefined(scope.dropdownListValues[currentIndex + 1]) ? scope.dropdownLists[scope.dropdownListValues[currentIndex + 1]][0].updateDropdownValue() : angular.noop(); - ev.preventDefault(); - ev.stopPropagation(); - } else if (ev.keyCode >= 48 && ev.keyCode <= 105) { - startTimer(b2bUtilitiesConfig.searchTimer); - searchString = searchString + (keymap.MAP[ev.keyCode] || ''); - var position = searchElement(searchString); - angular.isDefined(scope.dropdownListValues[position]) ? scope.dropdownLists[scope.dropdownListValues[position]][0].updateDropdownValue() : angular.noop(); - ev.preventDefault(); - ev.stopPropagation(); - } - } - } else { - if (ev.altKey === true && ev.keyCode === keymap.KEY.UP) { - scope.toggleDropdown(false); - ev.preventDefault(); - ev.stopPropagation(); - } else if (ev.keyCode === keymap.KEY.TAB || ev.keyCode === keymap.KEY.ESC) { - scope.toggleDropdown(false); - ev.preventDefault(); - ev.stopPropagation(); - } - } - scope.$apply(); // TODO: Move this into each block to avoid expensive digest cycles - }); - var outsideClick = function (e) { - var isElement = $isElement(angular.element(e.target), elem.parent(), $document); - if (!isElement) { - scope.toggleDropdown(false); - scope.$apply(); - } - }; - $documentBind.click('toggleFlag', outsideClick, scope); - } - }; -}]) - -.directive("b2bDropdownGroup", ['$compile', '$templateCache', 'b2bUserAgent', function ($compile, $templateCache, b2bUserAgent) { - return { - restrict: 'A', - controller: ['$scope', '$element', '$attrs', function (scope, elem, attr) { - if ((scope.isInputDropdown && b2bUserAgent.notMobile()) || (!scope.isInputDropdown)) { - var innerHtml = angular.element('
    ').append(elem.html()); - innerHtml = ($compile(innerHtml)(scope)).html(); - var template = angular.element($templateCache.get('b2bTemplate/dropdowns/b2bDropdownGroupDesktop.html')); - template.attr('ng-repeat', attr.optGroupRepeat); - template.attr('label', elem.attr('label')); - template.find('ul').append(innerHtml); - elem.replaceWith(template); - } else if (scope.isInputDropdown && b2bUserAgent.isMobile()) { - var template = angular.element(elem.prop('outerHTML')); - template.attr('ng-repeat', attr.optGroupRepeat); - template.removeAttr('b2b-dropdown-group'); - template.removeAttr('opt-group-repeat'); - template = $compile(template)(scope); - elem.replaceWith(template); - } - }] - }; -}]) - -.directive("b2bDropdownGroupDesktop", [function () { - return { - restrict: 'A', - scope: true, - link: function (scope, elem, attr, ctrl) { - scope.groupHeader = attr.label; - } - }; -}]) - -.directive("b2bDropdownList", ['$compile', '$templateCache', 'b2bUserAgent', function ($compile, $templateCache, b2bUserAgent) { - return { - restrict: 'A', - controller: ['$scope', '$element', '$attrs', function (scope, elem, attr) { - if ((scope.isInputDropdown && b2bUserAgent.notMobile()) || (!scope.isInputDropdown)) { - var innerHtml = angular.element('
    ').append(elem.html()); - innerHtml = ($compile(innerHtml)(scope)).html(); - var template = angular.element($templateCache.get('b2bTemplate/dropdowns/b2bDropdownListDesktop.html')); - template.attr('ng-repeat', attr.optionRepeat); - template.attr('value', elem.attr('value')); - template.attr('search-key', elem.attr('value')); - if (elem.attr('aria-describedby')){ - template.attr('aria-describedby', attr.ariaDescribedby); - } - if (elem.attr('imgsrc')) { - if (elem.attr('imgalt')) { - template.append('' + elem.attr('imgalt') + ''); - } else { - template.append(''); - } - } - template.append(innerHtml); - elem.replaceWith(template); - } else if (scope.isInputDropdown && b2bUserAgent.isMobile()) { - var template = angular.element(elem.prop('outerHTML')); - template.attr('ng-repeat', attr.optionRepeat); - if (elem.attr('aria-describedby')){ - template.attr('aria-describedby', attr.ariaDescribedby); - } - template.removeAttr('b2b-dropdown-list'); - template.removeAttr('option-repeat'); - template = $compile(template)(scope); - elem.replaceWith(template); - } - }] - }; -}]) - -.directive("b2bDropdownListDesktop", ['$sce', 'keymap', 'b2bDropdownConfig', function ($sce, keymap, b2bDropdownConfig) { - return { - restrict: 'A', - scope: true, - link: function (scope, elem, attr, ctrl) { - var dropdownListValue = scope.dropdownListValue = attr.value; - scope.dropdown.totalIndex++; - var dropdownListIndex = scope.dropdown.totalIndex; - scope.dropdownListValues.push(dropdownListValue); - scope.dropdownLists[dropdownListValue] = []; - scope.dropdownLists[dropdownListValue][0] = scope; - scope.dropdownLists[dropdownListValue][1] = elem; - scope.dropdownLists[dropdownListValue][2] = dropdownListIndex; - scope.updateDropdownValue = function () { - scope.currentSelected.value = dropdownListValue; - if (scope.isInputDropdown) { - scope.currentSelected.text = elem.text(); - } else if ((scope.dropdownType === b2bDropdownConfig.linkMenuKeyword) || (scope.dropdownType === b2bDropdownConfig.menuKeyword && scope.dropdownSize === b2bDropdownConfig.smallKeyword)) { - scope.currentSelected.text = dropdownListValue; - } else if (scope.dropdownType === b2bDropdownConfig.menuKeyword) { - scope.currentSelected.text = $sce.trustAsHtml(elem.html()); - } - if (scope.isInputDropdown) { - scope.currentSelected.label = elem.text(); - } else if (scope.dropdownType === b2bDropdownConfig.linkMenuKeyword) { - scope.currentSelected.label = dropdownListValue; - } else if (scope.dropdownType === b2bDropdownConfig.menuKeyword) { - scope.currentSelected.label = elem.text(); - } - scope.currentSelected.index = dropdownListIndex; - scope.updateModel(); - }; - scope.selectDropdownItem = function () { - scope.setDirty(); - scope.updateDropdownValue(); - scope.toggleDropdown(false); - }; - scope.highlightDropdown = function () { - scope.dropdown.highlightedValue = dropdownListValue; - }; - elem.bind('mouseover', function (ev) { - elem[0].focus(); - }); - elem.bind('keydown', function (ev) { - if (!ev.keyCode) { - if (ev.which) { - ev.keyCode = ev.which; - } else if (ev.charCode) { - ev.keyCode = ev.charCode; - } - } - if (ev.altKey === true && ev.keyCode === keymap.KEY.UP) { - scope.toggleDropdown(false); - ev.preventDefault(); - ev.stopPropagation(); - } else if (ev.keyCode === keymap.KEY.TAB || ev.keyCode === keymap.KEY.ESC) { - scope.toggleDropdown(false); - ev.preventDefault(); - ev.stopPropagation(); - } - scope.$apply(); - }); - } - }; -}]) - -.directive("b2bDropdownRepeat", ['$compile', 'b2bUserAgent', function ($compile, b2bUserAgent) { - return { - restrict: 'A', - controller: ['$scope', '$element', '$attrs', function (scope, elem, attr) { - if ((scope.isInputDropdown && b2bUserAgent.notMobile()) || (!scope.isInputDropdown)) { - var innerHtml = angular.element('
    ').append(elem.html()); - innerHtml = ($compile(innerHtml)(scope)).html(); - var template = angular.element('
    '); - template.attr('ng-repeat', attr.b2bDropdownRepeat); - template.append(innerHtml); - elem.replaceWith(template); - } else if (scope.isInputDropdown && b2bUserAgent.isMobile()) { - angular.noop(); - } - }] - }; -}]) - -.directive("b2bDropdownValidation", ['$timeout', function ($timeout) { - return { - restrict: 'A', - require: 'ngModel', - link: function (scope, elem, attr, ctrl) { - $timeout(function () { - scope.setNgModelController(attr.name, ctrl); - }, 100); - scope.setDirty = function () { - if (ctrl.$dirty === false) { - ctrl.$dirty = true; - ctrl.$pristine = false; - } - }; - scope.setTouched = function () { - if (ctrl.$touched === false) { - ctrl.$touched = true; - ctrl.$pristine = false; - } - }; - scope.setRequired = function (flag) { - ctrl.$setValidity('required', flag); - }; - } - }; -}]) - -.directive('b2bDropdownOptionalCta', [function () { - return { - restrict: 'EA', - transclude: true, - replace: true, - template: '', - compile: function (elem, attr, transclude) { - return function link(scope, elem, attr, ctrl) { - if (scope.setOptionalCta) { - scope.setOptionalCta(transclude(scope, function () {})); - } - elem.remove(); - }; - } - }; -}]); -/** - * @ngdoc directive - * @name Forms.att:File Upload - * - * @description - * - * - * @usage - * -
    -
    -

    -
    To upload a file, drag & drop it here or - - click here to select from your computer. -
    -

    -
    -
    - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.fileUpload', ['b2b.att.utilities']) - .directive('b2bFileDrop', [function() { - return { - restrict: 'EA', - scope: { - fileModel: '=', - onDrop: '&' - }, - controller: ['$scope', '$attrs', function($scope, $attrs) { - this.onDrop = $scope.onDrop; - }], - link: function(scope, element) { - element.addClass('b2b-dragdrop'); - element.bind( - 'dragover', - function(e) { - if (e.originalEvent) { - e.dataTransfer = e.originalEvent.dataTransfer; - } - e.dataTransfer.dropEffect = 'move'; - // allows us to drop - if (e.preventDefault) { - e.preventDefault(); - } - element.addClass('b2b-dragdrop-over'); - return false; - } - ); - element.bind( - 'dragenter', - function(e) { - // allows us to drop - if (e.preventDefault) { - e.preventDefault(); - } - element.addClass('b2b-dragdrop-over'); - return false; - } - ); - element.bind( - 'dragleave', - function() { - element.removeClass('b2b-dragdrop-over'); - return false; - } - ); - element.bind( - 'drop', - function(e) { - // Stops some browsers from redirecting. - if (e.preventDefault) { - e.preventDefault(); - } - if (e.stopPropagation) { - e.stopPropagation(); - } - if (e.originalEvent) { - e.dataTransfer = e.originalEvent.dataTransfer; - } - element.removeClass('b2b-dragdrop-over'); - if (e.dataTransfer.files && e.dataTransfer.files.length > 0) { - scope.fileModel = e.dataTransfer.files[0]; - scope.$apply(); - if (angular.isFunction(scope.onDrop)) { - scope.onDrop(); - } - } - return false; - } - ); - } - }; - }]) - .directive('b2bFileLink', [function() { - return { - restrict: 'EA', - require: '^?b2bFileDrop', - replace: true, - transclude: true, - templateUrl: 'b2bTemplate/fileUpload/fileUpload.html', - scope: { - fileModel: '=?', - onFileSelect: '&' - }, - controller: ['$scope', function($scope) { - this.setFileModel = function(fileModel) { - if ($scope.takeFileModelFromParent) { - $scope.$parent.fileModel = fileModel; - $scope.$parent.$apply(); - } else { - $scope.fileModel = fileModel; - $scope.$apply(); - } - }; - this.callbackFunction = function() { - if (angular.isFunction($scope.onFileSelect)) { - $scope.onFileSelect(); - } - }; - - }], - link: function(scope, element, attr, b2bFileDropCtrl) { - scope.takeFileModelFromParent = false; - if (!(attr.fileModel) && b2bFileDropCtrl) { - scope.takeFileModelFromParent = true; - } - if (!(attr.onFileSelect) && b2bFileDropCtrl) { - scope.onFileSelect = b2bFileDropCtrl.onDrop; - } - } - }; - }]) - .directive('b2bFileChange', ['$log', '$rootScope', function($log, $rootScope) { - return { - restrict: 'A', - require: '^b2bFileLink', - link: function(scope, element, attr, b2bFileLinkCtrl) { - element.bind('change', changeFileModel); - - function changeFileModel(e) { - if (e.target.files && e.target.files.length > 0) { - b2bFileLinkCtrl.setFileModel(e.target.files[0]); - b2bFileLinkCtrl.callbackFunction(); - } else { - var strFileName = e.target.value; - try { - var objFSO = new ActiveXObject("Scripting.FileSystemObject"); - b2bFileLinkCtrl.setFileModel(objFSO.getFile(strFileName)); - b2bFileLinkCtrl.callbackFunction(); - } catch (e) { - var errMsg = "There was an issue uploading " + strFileName + ". Please try again."; - $log.error(errMsg); - $rootScope.$broadcast('b2b-file-link-failure', errMsg); - } - } - } - } - }; - }]); -/** - * @ngdoc directive - * @name Navigation.att:filters - * - * @description - * - * - * @usage - *
    - * - * @example - *
    - HTML + AngularJS - - - - -
    - * - */ -angular.module('b2b.att.filters', ['b2b.att.utilities', 'b2b.att.multipurposeExpander']) - .filter('filtersSelectedItemsFilter', [function () { - return function (listOfItemsArray) { - - if (!listOfItemsArray) { - listOfItemsArray = []; - } - - var returnArray = []; - - for (var i = 0; i < listOfItemsArray.length; i++) { - for (var j = 0; j < listOfItemsArray[i].filterTypeItems.length; j++) { - if (listOfItemsArray[i].filterTypeItems[j].selected && !listOfItemsArray[i].filterTypeItems[j].inProgress) { - returnArray.push(listOfItemsArray[i].filterTypeItems[j]); - } - } - } - - return returnArray; - }; - }]); -/** - * @ngdoc directive - * @name Messages, modals & alerts.att:flyout - * - * @description - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.flyout', ['b2b.att.utilities', 'b2b.att.position']) - .directive('b2bFlyout', ['$timeout', 'b2bDOMHelper', 'keymap', 'events', function ($timeout, b2bDOMHelper, keymap, events) { - return { - restrict: 'EA', - transclude: true, - templateUrl: 'b2bTemplate/flyout/flyout.html', - controller: ['$scope', '$element', '$attrs', function (scope, elem, attr) { - scope.flyoutOpened = false; - var contentScope = ''; - var togglerScope = ''; - this.registerContentScope = function (scp) { - contentScope = scp; - }; - this.registerTogglerScope = function (scp) { - togglerScope = scp; - }; - - this.toggleFlyoutState = function () { - if (contentScope) { - contentScope.toggleFlyout(); - } - }; - this.getTogglerDimensions = function () { - return togglerScope.getTogglerDimensions(); - } - this.setTogglerFocus = function () { - return togglerScope.setTogglerFocus(); - } - - this.closeFlyout = function (e) { - contentScope.closeFromChild(e); - }; - this.gotFocus = function () { - contentScope.gotFocus(); - }; - - this.updateAriaModel = function (val) { - scope.flyoutOpened = val; - }; - - var firstTabableElement = undefined, - lastTabableElement = undefined; - - var firstTabableElementKeyhandler = function (e) { - if (!e.keyCode) { - e.keyCode = e.which; - } - if (e.keyCode === keymap.KEY.TAB && e.shiftKey && scope.flyoutOpened) { - contentScope.gotFocus(); - events.preventDefault(e); - events.stopPropagation(e); - } - }; - - var lastTabableElementKeyhandler = function (e) { - if (!e.keyCode) { - e.keyCode = e.which; - } - if (e.keyCode === keymap.KEY.TAB && !e.shiftKey) { - contentScope.gotFocus(); - events.preventDefault(e); - events.stopPropagation(e); - } - }; - this.associateTabEvent = function(){ - $timeout(function () { - var element = elem[0].getElementsByClassName('b2b-flyout-container')[0]; - firstTabableElement = b2bDOMHelper.firstTabableElement(element); - lastTabableElement = b2bDOMHelper.lastTabableElement(element); - if(angular.isUndefined(firstTabableElement)){ - angular.element(element).css('display','block'); - firstTabableElement = b2bDOMHelper.firstTabableElement(element); - lastTabableElement = b2bDOMHelper.lastTabableElement(element); - angular.element(element).css('display','none'); - } - angular.element(firstTabableElement).bind('keydown', firstTabableElementKeyhandler); - angular.element(lastTabableElement).bind('keydown', lastTabableElementKeyhandler); - }); - } - this.updateTabbableElements = function(){ - $timeout(function () { - var element = elem[0].getElementsByClassName('b2b-flyout-container')[0]; - angular.element(element).css('display','block'); - firstTabableElement = b2bDOMHelper.firstTabableElement(element); - lastTabableElement = b2bDOMHelper.lastTabableElement(element); - angular.element(firstTabableElement).bind('keydown', firstTabableElementKeyhandler); - angular.element(lastTabableElement).bind('keydown', lastTabableElementKeyhandler); - angular.element(element).css('display','none'); - }); - } - this.unbindTabbaleEvents = function(){ - if(angular.isDefined(firstTabableElement)){ - angular.element(firstTabableElement).unbind('keydown', firstTabableElementKeyhandler); - } - - if(angular.isDefined(lastTabableElement)){ - angular.element(lastTabableElement).unbind('keydown', lastTabableElementKeyhandler); - } - } - }], - link: function (scope, element, attrs, ctrl) { - - } - }; - }]) - .directive('b2bFlyoutToggler', [function () { - return { - restrict: 'A', - require: '^b2bFlyout', - link: function (scope, element, attrs, ctrl) { - element.bind('click', function (e) { - ctrl.toggleFlyoutState(); - }); - - scope.getTogglerDimensions = function () { - return element[0].getBoundingClientRect(); - } - - scope.setTogglerFocus = function () { - element[0].focus(); - } - - ctrl.registerTogglerScope(scope); - } - }; - }]) - .directive('b2bFlyoutContent', ['$position', '$timeout', '$documentBind', '$isElement', '$document', function ($position, $timeout, $documentBind, $isElement, $document) { - return { - restrict: 'EA', - transclude: true, - replace: true, - require: '^b2bFlyout', - scope: { - horizontalPlacement: '@', - verticalPlacement: '@', - flyoutStyle: '@', - flyoutTitle: '@', - contentUpdated: "=?" - }, - templateUrl: 'b2bTemplate/flyout/flyoutContent.html', - link: function (scope, element, attrs, ctrl) { - var flyoutStyleArray, eachCssProperty, cssPropertyKey, cssPropertyVal, temp; - scope.openFlyout = false; - if (!scope.horizontalPlacement) { - scope.horizontalPlacement = 'center'; - } - if (!scope.verticalPlacement) { - scope.verticalPlacement = 'below'; - } - - scope.toggleFlyout = function () { - - scope.openFlyout = !scope.openFlyout; - - if (scope.openFlyout) { - - if (angular.isDefined(scope.flyoutStyle) && scope.flyoutStyle != "") { - flyoutStyleArray = scope.flyoutStyle.split(";"); - for (i = 0; i < flyoutStyleArray.length; i++) { - eachCssProperty = flyoutStyleArray[i].split(":"); - if (eachCssProperty.length == 2) { - cssPropertyKey = eachCssProperty[0].trim(); - cssPropertyVal = eachCssProperty[1].trim(); - angular.element(element[0])[0].style[cssPropertyKey] = cssPropertyVal; - } - } - } - - angular.element(element[0]).css({ - 'opacity': 0, - 'display': 'block' - }); - - var flyoutIcons = angular.element(document.querySelectorAll(".b2b-flyout-icon")); - angular.forEach(flyoutIcons, function (elm) { - angular.element(elm)[0].blur(); - }); - - $timeout(function () { - ctrl.setTogglerFocus(); - - var togglerDimensions = ctrl.getTogglerDimensions(); - var flyoutDimensions = element[0].getBoundingClientRect(); - - switch (scope.horizontalPlacement) { - case "left": - angular.element(element[0]).css({ - 'left': ((togglerDimensions.width / 2) - 26) + 'px' - }); - break; - case "right": - angular.element(element[0]).css({ - 'right': ((togglerDimensions.width / 2) - 23) + 'px' - }); - break; - - case "centerLeft": - var marginLeft = 10-(flyoutDimensions.width)-20; - angular.element(element[0]).css({ - 'margin-left': marginLeft + 'px' - }); - break; - case "centerRight": - angular.element(element[0]).css({ - 'left': ((togglerDimensions.width + 9 )) + 'px' - }); - break; - - default: - var marginLeft = (togglerDimensions.width / 2) - (flyoutDimensions.width / 2) - 8; - angular.element(element[0]).css({ - 'margin-left': marginLeft + 'px' - }); - } - - switch (scope.verticalPlacement) { - case "above": - angular.element(element[0]).css({ - 'top': -(flyoutDimensions.height + 13) + 'px' - }); - break; - case "centerLeft": - angular.element(element[0]).css({ - 'top': -((togglerDimensions.height-13))+ 'px' - }); - break; - case "centerRight": - angular.element(element[0]).css({ - 'top': -(flyoutDimensions.height - 23)+ 'px' - }); - break; - default: - angular.element(element[0]).css({ - 'top': (togglerDimensions.height + 13) + 'px' - }); - } - - angular.element(element[0]).css({ - 'opacity': 1 - }); - }, 100); - } else { - scope.hideFlyout(); - } - }; - - scope.gotFocus = function () { - scope.openFlyout = false; - scope.hideFlyout(); - ctrl.setTogglerFocus(); - scope.$apply(); - }; - - scope.closeFromChild = function (e) { - scope.openFlyout = false; - scope.hideFlyout(); - ctrl.setTogglerFocus(); - scope.$apply(); - }; - - scope.hideFlyout = function () { - angular.element(element[0]).css({ - 'opacity': 0, - 'display': 'none' - }); - }; - - scope.closeFlyout = function (e) { - var isElement = $isElement(angular.element(e.target), element, $document); - if ((e.type === "keydown" && e.which === 27) || ((e.type === "click" || e.type==="touchend") && !isElement)) { - scope.openFlyout = false; - scope.hideFlyout(); - ctrl.setTogglerFocus(); - scope.$apply(); - } - }; - - scope.$watch('openFlyout', function () { - ctrl.updateAriaModel(scope.openFlyout); - }); - - $documentBind.click('openFlyout', scope.closeFlyout, scope); - $documentBind.event('keydown', 'openFlyout', scope.closeFlyout, scope); - $documentBind.event('touchend', 'openFlyout', scope.closeFlyout, scope); - ctrl.registerContentScope(scope); - - if (angular.isDefined(scope.contentUpdated) && scope.contentUpdated !== null) { - scope.$watch('contentUpdated', function (newVal, oldVal) { - if(newVal){ - if (newVal !== oldVal) { - ctrl.unbindTabbaleEvents(); - ctrl.associateTabEvent(); - } - scope.contentUpdated = false; - } - }); - } - - } - }; - }]) - .directive('b2bCloseFlyout', [function () { - return { - restrict: 'A', - require: '^b2bFlyout', - scope: { - closeFlyout: '&' - }, - link: function (scope, element, attrs, ctrl) { - element.bind('click', function (e) { - scope.closeFlyout(e); - ctrl.closeFlyout(e); - }); - } - }; - }]) - .directive('b2bFlyoutTrapFocusInside', [function () { - return { - restrict: 'A', - transclude: false, - require: '^b2bFlyout', - link: function (scope, elem, attr, ctrl) { - /* Before opening modal, find the focused element */ - ctrl.updateTabbableElements(); - } - }; - }]); -/** - * @ngdoc directive - * @name Layouts.att:footer - * - * @description - * - * - * @usage - * - - - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.footer', ['b2b.att.utilities']). - directive('b2bColumnSwitchFooter', [function() { - return { - restrict: 'A', - transclude: true, - scope: { - footerLinkItems: "=" - }, - templateUrl: 'b2bTemplate/footer/footer_column_switch_tpl.html', - link: function(scope) { - var tempFooterColumns = scope.footerLinkItems.length; - scope.footerColumns = 3; - if ( (tempFooterColumns === 5) || (tempFooterColumns === 4) ) { - scope.footerColumns = tempFooterColumns; - } - } - - }; - - }]); - - -/** - * @ngdoc directive - * @name Layouts.att:header - * - * @description - * - * - * @usage - * - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.header', ['b2b.att.dropdowns','b2b.att.utilities']) - .directive('b2bHeaderMenu', ['keymap', '$documentBind', '$timeout', '$isElement', '$document', function (keymap, $documentBind, $timeout, $isElement, $document) { - return { - restrict: 'A', - controller:['$scope',function($scope){ - this.nextSiblingFocus = function (elObj,flag) { - if (elObj.nextElementSibling) { - if(flag){ - var nextmenuItem = this.getFirstElement(elObj.nextElementSibling,'a'); - nextmenuItem.focus(); - }else{ - elObj.nextElementSibling.focus(); - } - } - }; - - this.previousSiblingFocus = function (elObj,flag) { - if (elObj.previousElementSibling) { - if(flag){ - var prevmenuItem = this.getFirstElement(elObj.previousElementSibling,'a'); - prevmenuItem.focus(); - }else{ - elObj.previousElementSibling.focus(); - } - } - }; - - this.getFirstElement = function(elmObj,selector){ - return elmObj.querySelector(selector); - }; - }], - link: function (scope, elem,attr,ctrl) { - scope.showMenu = false; - var activeElm, subMenu, tertiaryMenu, el= angular.element(elem)[0], - menuItem = angular.element(elem[0].children[0]); - menuItem.bind('click', function () { - elem.parent().children().removeClass('active'); - elem.addClass('active'); - var elems= this.parentElement.parentElement.querySelectorAll('li[b2b-header-menu]>a'); - for (var i=0; i
    "); - $timeout(function(){ - var menuItem = angular.element(elem[0].children[0]); - menuItem.bind('focus mouseenter', function () { - elem.parent().children().removeClass('active'); - elem.addClass('active'); - if(elem[0].childElementCount > 1){ // > 1 has third level menu - menuItem.attr('aria-expanded',true); - menuItem.attr('aria-haspopup',true); - } - var caretLeft = (elem[0].offsetLeft + elem[0].offsetWidth/2) - 10; - caretSign.css({left: caretLeft + 'px'}); - angular.element(caretSign); - var tertiaryItems = elem[0].querySelectorAll('[b2b-header-tertiarymenu]'); - if(tertiaryItems.length >=1){ - elem.append(caretSign); - } - }); - menuItem.bind('blur', function () { - $timeout(function () { - var parentElm = document.activeElement.parentElement.parentElement; - if(parentElm){ - if (!(parentElm.hasAttribute('b2b-header-tertiarymenu'))) { - elem.removeClass('active'); - if(elem[0].childElementCount > 1){ // > 1 has third level menu - menuItem.attr('aria-expanded',false); - } - var caret = elem[0].querySelector('.menuCaret'); - if(caret){ - caret.remove(); - } - } - } - }); - }); - }); - } - }; - }]).directive('b2bHeaderTertiarymenu', ['$timeout','keymap', function ($timeout,keymap){ - return{ - restrict: 'A', - require:'^b2bHeaderMenu', - link: function (scope, elem,attr,ctrl) { - - elem.bind('keydown', function (evt) { - var activeElm = document.activeElement; - var activeParentElm = activeElm.parentElement; - var activeParentObj = angular.element(activeParentElm)[0]; - - if(activeParentElm.hasAttribute('b2b-tertiary-link')){ - var quarterNav = angular.element(activeParentElm)[0].querySelector('li[b2b-header-quarternarymenu]'); - if(quarterNav){ - var links = ctrl.getFirstElement(angular.element(quarterNav)[0],'a'); - } - } - var tertiaryMenu = activeElm.parentElement.parentElement.parentElement; - var tertiaryMenuFlag = tertiaryMenu.hasAttribute('b2b-tertiary-link'); - - switch (evt.keyCode) { - case keymap.KEY.DOWN: - evt.stopPropagation(); - evt.preventDefault(); - if (activeParentElm.hasAttribute('b2b-tertiary-link')) { - if(angular.element(quarterNav).hasClass('active')){ - links.focus(); - }else if(activeParentObj.nextElementSibling){ - ctrl.nextSiblingFocus(activeParentObj,true); - } - } - else if(angular.element(activeParentElm).hasClass('active')){ - ctrl.nextSiblingFocus(activeElm); - } - break; - case keymap.KEY.UP: - evt.stopPropagation(); - evt.preventDefault(); - if(activeParentElm.hasAttribute('b2b-tertiary-link')){ - if(activeParentObj.previousElementSibling.hasAttribute('b2b-tertiary-link')){ - ctrl.previousSiblingFocus(activeParentObj,true); - }else{ - var elm = angular.element(activeElm.parentElement.parentElement.parentElement.parentElement.parentElement)[0]; - ctrl.getFirstElement(elm,"a").focus(); - } - }else if(angular.element(activeParentElm).hasClass('active')){ - if (activeElm.previousElementSibling) { - ctrl.previousSiblingFocus(activeElm); - }else if (tertiaryMenuFlag) { - var elm = angular.element(tertiaryMenu)[0]; - ctrl.getFirstElement(elm,"a.header-tertiaryitem").focus(); - } - } - break; - default: - break; - } - }); - } - }; - }]).directive('b2bHeaderTogglemenu', ['$timeout', 'keymap', function ($timeout, keymap) { - return{ - restrict: 'A', - require: '^b2bHeaderMenu', - link: function (scope, elem, attrs, ctrl) { - var quarterNav; - $timeout(function () { - quarterNav = angular.element(elem.parent())[0].querySelector('li[b2b-header-quarternarymenu]'); - elem.bind('click', function () { - angular.element(quarterNav).toggleClass('active'); - }); - }); - } - }; - }]).directive('b2bHeaderResponsive', ['$timeout',function ($timeout) { - return{ - restrict: 'A', - controller: function($scope){ - this.applyMediaQueries = function(value){ - document.querySelector('style').textContent += - "@media screen and (max-width:950px) { \ - .header__item.profile { right: " + value + "px; } \ - }"; - }; - this.arrangeResponsiveHeader = function(children){ - /* - * clientWidth of 1090 === max-width of 1100px - * clientWidth of 920 === max-width of 950px - * see b2b-angular.css for rest of responsive header CSS - */ - if (document.documentElement.clientWidth <= 920) { - switch(children){ - case 1: - this.applyMediaQueries(200); - break; - case 2: - this.applyMediaQueries(200); - break; - default: // anthing above 3, however, should not have more than 3 to date - this.applyMediaQueries(200); - } - } - } - }, - link: function (scope, elem, attrs, ctrl) { - var children; - var profile; - - // onload of page - $timeout(function(){ - profile = document.querySelector('li.header__item.profile'); - children = angular.element(profile).children().length; - - ctrl.arrangeResponsiveHeader(children); // shift right-side icon flyovers - }); - - // on screen resize - window.addEventListener('resize', function(event){ // caret adjustmet - var activeSubmenu = elem[0].querySelector('[b2b-header-menu] [b2b-header-submenu].active'); - var activeSubmenuEl = angular.element(activeSubmenu); - if(activeSubmenu){ - var caretSign = activeSubmenu.querySelector('i.menuCaret'); - if(caretSign){ - var caretSignEl = angular.element(caretSign); - var caretLeft = (activeSubmenu.offsetLeft + activeSubmenu.offsetWidth/2) - 10; - caretSignEl.css({left: caretLeft + 'px'}); - } - } - - ctrl.arrangeResponsiveHeader(children); // shift right-side icon flyovers - }); - } - }; - }]); - -/** - * @ngdoc directive - * @name Layouts.att:headings - * - * @description - * - * - * @usage -

    38px page heading

    -

    30px major section heading

    -

    24px sub-section heading

    -

    20px medium heading

    -

    20px medium emphasis heading

    -

    18px small heading

    -

    18px small emphasis heading

    -

    13px micro heading

    - -

    Lead

    -

    This is 38px heading

    -

    This is lead text...The next big thing since the last big thing we announced.

    -

    Eyebrow

    -

    EYEBROW TEXT

    -

    This is a 30px heading

    -

    EYEBROW TEXT

    -

    24px sub-section heading

    -

    Subheading

    -

    This is a 30px heading

    -

    A subheading here to support what was said above

    - * @example -
    - HTML + AngularJS - - - -
    - */ - -var b2bLegalCopy = angular.module('b2b.att.headings', []); -/** - * @ngdoc directive - * @name Tabs, tables & accordions.att:horizontalTable - * - * @description - * - * - * @usage - * @param {int} sticky - Number of sticky columns to have. Maximum of 3. - * @param {boolean} refresh - A boolean that when set to true will force a re-render of table. Only use when using 'bulk mode' - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.horizontalTable', []) - .constant('b2bHorizontalTableConfig', { - 'maxStickyColumns': 3 - }) - .directive('b2bHorizontalTable', ['$timeout', 'b2bHorizontalTableConfig', 'b2bDOMHelper', function ($timeout, b2bHorizontalTableConfig, b2bDOMHelper) { - return { - restrict: 'EA', - scope: true, - transclude: true, - scope: { - numOfStickyCols: '=?sticky', - refresh: '=?' - - }, - templateUrl: 'b2bTemplate/horizontalTable/horizontalTable.html', - link: function (scope, element, attrs, ctrl) { - scope.numOfStickyCols = scope.numOfStickyCols || 1; - scope.viewportIndex = scope.numOfStickyCols; - - // JM520E: This is a temporary hack until I solve the ngRepeat issue - function hack() { - if (element.find('th').length < scope.numOfStickyCols) { - // DOM ngRepeat is not ready, let's check back in 10 ms - console.info('THs are not ready, trying again in 10ms'); - $timeout(hack, 10, false); - } else { - init(); - } - } - hack(); - - if (attrs.refresh !== undefined && attrs.refresh !== '') { - scope.$watch('refresh', function(oldVal, newVal) { - if (scope.refresh) { - // From testing it takes about 30 ms before ngRepeat executes, so let's set initial timeout - // NOTE: May need to expose timeout to developers. Application is known to have digest cycle of 3-5k watches. - $timeout(init, 100, false); - scope.refresh = false; - } - }); - } - - var tableElement = element.find('table'); - var thElements = element.find('th'); - var innerContainer = angular.element(element[0].querySelector('.b2b-horizontal-table-inner-container')); - var outerContainer = angular.element(element[0].querySelector('.b2b-horizontal-table')); - - var tableColumns = []; - var tableRows = element.find('tr'); - - var maxWidth = 0, - maxHeight = 0; - var totalWidth = element.children()[0].offsetWidth; - var lastVisibleColumn = 0; - var collectiveColumnWidth = []; - var collectiveRowHeight = []; - var columnSets = []; - var setIndex = 0; - var stickyPixels = 0; - - var displayNoneCSS = {'display': 'none'}; - var displayBlockCSS = {'display': 'table-cell'}; - - function calculateVisibleColumns(startingPoint) { - var usedWidth = 0, - visibleColumns = startingPoint || scope.numOfStickyCols; - - while(usedWidth < stickyPixels && visibleColumns < collectiveColumnWidth.length) { - if (usedWidth+collectiveColumnWidth[visibleColumns] > stickyPixels) { - if (startingPoint === visibleColumns) { - return visibleColumns; // The next cell is too large to fit, it should be only thing to fit - } - visibleColumns--; - return visibleColumns; - } - usedWidth += collectiveColumnWidth[visibleColumns]; - visibleColumns++; - } - - if (usedWidth > stickyPixels) { - return --visibleColumns; - } - return visibleColumns; - } - - function updateCellDisplay(set) { - for (var i = scope.numOfStickyCols; i < tableColumns.length; i++) { - angular.element(tableColumns[i]).css(displayNoneCSS); - } - - for (var i = set[0]; i <= set[1]; i++) { - angular.element(tableColumns[i]).css(displayBlockCSS); - } - } - - function forceDigest() { - if (!scope.$$phase) { - scope.$digest(); - } - } - - function findMax(arr, prop) { - var max = 0; - var localVal = 0; - var prevDisplay; - var item; - for (var i = 0; i < arr.length; i++) { - item = arr[i]; - prevDisplay = angular.element(item).css('display'); - if (scope.$$phase) { - scope.$digest(); - } - if (prop === 'width') { - localVal = Math.ceil(parseInt(window.getComputedStyle(item).width.split('px')[0], 10)) + 30; // 30 px is padding - } else if (prop === 'offsetWidth') { - localVal = item.offsetWidth; - } else if (prop === 'height') { - localVal = item.offsetHeight; - } - - if (localVal >= max) { - max = localVal; - } - } - - return max; - } - - function init() { - // Reset this from a previous execution - tableColumns = []; - collectiveColumnWidth = []; - collectiveRowHeight = []; - maxWidth = 0; - maxHeight = 0; - lastVisibleColumn = 0; - columnSets = []; - setIndex = 0; - visibleColumns = []; - stickyPixels = 0; - - tableElement = element.find('table'); - thElements = element.find('th'); - innerContainer = angular.element(element[0].querySelector('.b2b-horizontal-table-inner-container')); - outerContainer = angular.element(element[0].querySelector('.b2b-horizontal-table')); - totalWidth = element.children()[0].offsetWidth; - - - tableRows = element.find('tr'); - totalWidth = element.children()[0].offsetWidth; - - scope.disableLeft = true; - scope.disableRight = false; - - if (scope.numOfStickyCols > b2bHorizontalTableConfig.maxStickyColumns) { - throw new Error("Table can only support 3 sticky columns."); - } - - angular.forEach(tableRows, function(row, rowIndex) { - collectiveRowHeight.push(findMax(row.children, 'height')); - for(var j = 0; j < row.children.length; j++) { - if (tableColumns[j] === undefined) { - tableColumns[j] = []; - } - tableColumns[j].push(row.children[j]); - } - }); - - // We need to reset all the displayNones from previous runs, if applicable - if (attrs.refresh !== undefined && attrs.refresh !== '') { - for (var i = scope.numOfStickyCols+1; i < tableColumns.length; i++) { - angular.element(tableColumns[i]).css(displayBlockCSS); - } - } - - for (var i = 0; i < tableColumns.length; i++) { - collectiveColumnWidth.push(findMax(tableColumns[i], 'width')); //offsetWidth doesn't take into account custom css inside - } - for(var i = 0; i < scope.numOfStickyCols; i++) { - maxWidth += collectiveColumnWidth[i]; - } - - stickyPixels = totalWidth-maxWidth; - - - // At this point, for each tr, I need to set the properties (height) and each numOfStickyCols children - // should be set with sticky properties (margin-left and width) - var width = maxWidth; - for(var i = 0; i < scope.numOfStickyCols; i++) { - for (var j = 0; j < tableRows.length; j++) { - trObject = angular.element(tableRows[j].children[i]); - - angular.element(trObject).css({ - 'margin-left': -(width + 2) + 'px', - 'width': (collectiveColumnWidth[i] + 3) + 'px', // instead of taking the max width, grab max width for that column - 'height': collectiveRowHeight[j] + 'px', - 'position': 'absolute', - 'background-color': 'lightgrey' - }); - } - - - width -= collectiveColumnWidth[i]; - } - - innerContainer.css({ - 'padding-left': (maxWidth + 2) + 'px' - }); - - - // Let's precompute all the (set) combinations beforehand - columnSets = []; - for (var i = scope.numOfStickyCols; i < tableColumns.length;) { - visibleColumns = calculateVisibleColumns(i); - columnSets.push([i, visibleColumns]); - i = visibleColumns + 1; - } - - updateCellDisplay(columnSets[setIndex]); - checkScrollArrows(); - - scope.numOfCols = tableColumns.length; - - console.log('Bulk Mode is ' + (attrs.bulkMode ? 'enabled': 'disabled')); - console.log('tableColumns', tableColumns); - console.log('collectiveColumnWidth: ', collectiveColumnWidth); - console.log('maxWidth: ', maxWidth); - } - - function checkScrollArrows() { - scope.disableLeft = (setIndex === 0); - scope.disableRight = !(setIndex < columnSets.length-1); - } - - - scope.moveViewportLeft = function () { - setIndex--; - updateCellDisplay(columnSets[setIndex]); - checkScrollArrows(); - - if (scope.disableLeft) { - element.find('span')[0].focus(); - } - }; - - scope.moveViewportRight = function () { - setIndex++; - updateCellDisplay(columnSets[setIndex]); - checkScrollArrows(); - - if (scope.disableRight) { - element.find('span')[0].focus(); - } - }; - - scope.getColumnSet = function () { - return columnSets[setIndex]; - }; - - innerContainer.bind('scroll', function () { - $timeout(function () { - checkScrollArrows(); - }, 1); - }); - - } - }; - }]); -/** - * @ngdoc directive - * @name Forms.att:hourPicker - * - * @description - * - * - * @usage - *
    - - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.hourPicker', ['b2b.att.utilities']) - -.constant('b2bHourpickerConfig', { - dayOptions: [{ - title: 'sunday', - caption: 'Sun', - label: 'S', - disabled: false - }, { - title: 'monday', - caption: 'Mon', - label: 'M', - disabled: false - }, { - title: 'tuesday', - caption: 'Tues', - label: 'T', - disabled: false - }, { - title: 'wednesday', - caption: 'Wed', - label: 'W', - disabled: false - }, { - title: 'thursday', - caption: 'Thu', - label: 'T', - disabled: false - }, { - title: 'friday', - caption: 'Fri', - label: 'F', - disabled: false - }, { - title: 'saturday', - caption: 'Sat', - label: 'S', - disabled: false - }], - startTimeOptions: ['1:00', '2:00', '3:00', '4:00', '5:00', '6:00', '7:00', '8:00', '9:00', '10:00', '11:00', '12:00'], - startTimeDefaultOptionIndex: -1, - startTimeDefaultMeridiem: "am", - endTimeOptions: ['1:00', '2:00', '3:00', '4:00', '5:00', '6:00', '7:00', '8:00', '9:00', '10:00', '11:00', '12:00'], - endTimeDefaultOptionIndex: -1, - endTimeDefaultMeridiem: "pm", - sameDayOption: true -}) - -.factory('b2bNormalizeHourpickerValues', [function () { - var _normalize = function (hourpickerValues) { - if (angular.isDefined(hourpickerValues) && hourpickerValues != null) { - var finalHourpickerValues = []; - var hourpickerValue = {}; - var days = {}; - for (var i = 0; i < hourpickerValues.length; i++) { - days = hourpickerValues[i].days ? hourpickerValues[i].days : {}; - hourpickerValue.startTime = hourpickerValues[i].startTime ? hourpickerValues[i].startTime : ''; - hourpickerValue.startMeridiem = hourpickerValues[i].startMeridiem ? hourpickerValues[i].startMeridiem : ''; - hourpickerValue.endTime = hourpickerValues[i].endTime ? hourpickerValues[i].endTime : ''; - hourpickerValue.endMeridiem = hourpickerValues[i].endMeridiem ? hourpickerValues[i].endMeridiem : ''; - hourpickerValue.days = []; - - var retrieveDaysText = function (daysDetails) { - var daysTexts = []; - var first = -1; - var last = -1; - var index = -1; - for (var i in days) { - if (days[i].value) { - daysTexts.push(i); - } - } - - first = daysTexts[0]; - last = daysTexts[0]; - index = 0; - hourpickerValue.days[index] = days[first].caption; - if (daysTexts.length > 1) { - for (var i = 1; i < daysTexts.length; i++) { - if (daysTexts[i] - last === 1) { - last = daysTexts[i]; - hourpickerValue.days[index] = days[first].caption + ' - ' + days[last].caption; - } else { - index++; - first = last = daysTexts[i]; - hourpickerValue.days[index] = days[first].caption; - } - } - } - }; - retrieveDaysText(); - - finalHourpickerValues.push(angular.copy(hourpickerValue)); - } - - return angular.copy(finalHourpickerValues); - } - }; - - return { - normalize: _normalize - }; -}]) - -.directive('b2bHourpicker', ['b2bHourpickerConfig', 'b2bNormalizeHourpickerValues', function (b2bHourpickerConfig, b2bNormalizeHourpickerValues) { - return { - restrict: 'EA', - replace: false, - scope: true, - require: 'ngModel', - templateUrl: 'b2bTemplate/hourPicker/b2bHourpicker.html', - controller: ['$scope', function (scope) { - - }], - link: function (scope, elem, attr, ctrl) { - scope.hourpicker = {}; - scope.hourpicker.dayOptions = attr.dayOptions ? scope.$parent.$eval(attr.dayOptions) : b2bHourpickerConfig.dayOptions; - scope.hourpicker.startTimeOptions = attr.startTimeOptions ? scope.$parent.$eval(attr.startTimeOptions) : b2bHourpickerConfig.startTimeOptions; - scope.hourpicker.endTimeOptions = attr.endTimeOptions ? scope.$parent.$eval(attr.endTimeOptions) : b2bHourpickerConfig.endTimeOptions; - scope.hourpicker.startTimeDefaultOptionIndex = attr.startTimeDefaultOptionIndex ? scope.$parent.$eval(attr.startTimeDefaultOptionIndex) : b2bHourpickerConfig.startTimeDefaultOptionIndex; - scope.hourpicker.endTimeDefaultOptionIndex = attr.endTimeDefaultOptionIndex ? scope.$parent.$eval(attr.endTimeDefaultOptionIndex) : b2bHourpickerConfig.endTimeDefaultOptionIndex; - scope.hourpicker.startTimeDefaultMeridiem = attr.startTimeDefaultMeridiem ? scope.$parent.$eval(attr.startTimeDefaultMeridiem) : b2bHourpickerConfig.startTimeDefaultMeridiem; - scope.hourpicker.endTimeDefaultMeridiem = attr.endTimeDefaultMeridiem ? scope.$parent.$eval(attr.endTimeDefaultMeridiem) : b2bHourpickerConfig.endTimeDefaultMeridiem; - scope.hourpicker.sameDayOption = attr.sameDayOption ? scope.$parent.$eval(attr.sameDayOption) : b2bHourpickerConfig.sameDayOption; - scope.hourpicker.editMode = -1; - - scope.hourpickerValues = []; - scope.finalHourpickerValues = []; - scope.addHourpickerValue = function (hourpickerPanelValue) { - if (hourpickerPanelValue) { - if (scope.hourpicker.editMode > -1) { - scope.hourpickerValues[scope.hourpicker.editMode] = hourpickerPanelValue; - scope.hourpicker.editMode = -1; - } else { - scope.hourpickerValues.push(hourpickerPanelValue); - } - } - scope.finalHourpickerValues = b2bNormalizeHourpickerValues.normalize(angular.copy(scope.hourpickerValues)); - ctrl.$setViewValue(angular.copy(scope.hourpickerValues)); - }; - ctrl.$render = function () { - if (angular.isDefined(ctrl.$modelValue)) { - scope.hourpickerValues = angular.copy(ctrl.$modelValue); - scope.finalHourpickerValues = b2bNormalizeHourpickerValues.normalize(angular.copy(scope.hourpickerValues)); - } - }; - scope.editHourpickerValue = function (index) { - scope.hourpickerPanelValue = angular.copy(scope.hourpickerValues[index]); - scope.hourpicker.editMode = index; - }; - scope.deleteHourpickerValue = function (index) { - scope.hourpickerValues.splice(index, 1); - scope.resetHourpickerPanelValue(); - scope.addHourpickerValue(); - }; - - scope.setValidity = function (errorType, errorValue) { - ctrl.$setValidity(errorType, errorValue); - } - } - } -}]) - -.directive('b2bHourpickerPanel', [function () { - return { - restrict: 'EA', - replace: false, - templateUrl: 'b2bTemplate/hourPicker/b2bHourpickerPanel.html', - controller: ['$scope', function (scope) { - - }], - link: function (scope, elem, attr, ctrl) { - var hourpickerPanelValueTemplate = { - days: {}, - startTime: '', - startMeridiem: 'am', - endTime: '', - endMeridiem: 'pm' - }; - for (var i = 0; i < scope.hourpicker.dayOptions.length; i++) { - hourpickerPanelValueTemplate.days[i] = { - value: false, - title: scope.hourpicker.dayOptions[i].title, - caption: scope.hourpicker.dayOptions[i].caption - }; - } - scope.hourpickerPanelValue = {}; - scope.disableAddBtn = true; - - scope.$watch('hourpickerPanelValue.days', function(){ - for(var i in scope.hourpickerPanelValue.days) - { - if(scope.hourpickerPanelValue.days[i].value) - { - scope.disableAddBtn = false; - break; - } - scope.disableAddBtn = true; - } - }, true); - - scope.resetHourpickerPanelValue = function () { - scope.hourpickerPanelValue = angular.copy(hourpickerPanelValueTemplate); - if (scope.hourpicker.startTimeDefaultOptionIndex > -1) { - scope.hourpickerPanelValue.startTime = scope.hourpicker.startTimeOptions[scope.hourpicker.startTimeDefaultOptionIndex]; - } - if (scope.hourpicker.endTimeDefaultOptionIndex > -1) { - scope.hourpickerPanelValue.endTime = scope.hourpicker.endTimeOptions[scope.hourpicker.endTimeDefaultOptionIndex]; - } - scope.hourpickerPanelValue.startMeridiem = scope.hourpicker.startTimeDefaultMeridiem; - scope.hourpickerPanelValue.endMeridiem = scope.hourpicker.endTimeDefaultMeridiem; - scope.hourpicker.editMode = -1; - scope.setValidity('invalidHourpickerData', true); - scope.setValidity('invalidHourpickerTimeRange', true); - }; - scope.resetHourpickerPanelValue(); - scope.updateHourpickerValue = function () { - if (scope.isFormValid() && !scope.isTimeOverlap()) { - scope.addHourpickerValue(angular.copy(scope.hourpickerPanelValue)); - scope.resetHourpickerPanelValue(); - } - }; - - scope.isFormValid = function () { - var isStartTimeAvailable = scope.hourpickerPanelValue.startTime ? true : false; - var isStartMeridiemAvailable = scope.hourpickerPanelValue.startMeridiem ? true : false; - var isEndTimeAvailable = scope.hourpickerPanelValue.endTime ? true : false; - var isEndMeridiemAvailable = scope.hourpickerPanelValue.endMeridiem ? true : false; - var currentStartTime = getTime(scope.hourpickerPanelValue.startTime, scope.hourpickerPanelValue.startMeridiem); - var currentEndTime = getTime(scope.hourpickerPanelValue.endTime, scope.hourpickerPanelValue.endMeridiem); - var isTimeInProperSequence = currentEndTime > currentStartTime; - var isDayChecked = false; - for (var i in scope.hourpickerPanelValue.days) { - if (scope.hourpickerPanelValue.days[i].value) { - isDayChecked = true; - break; - } - } - - if (isStartTimeAvailable && isStartMeridiemAvailable && isEndTimeAvailable && isEndMeridiemAvailable && isTimeInProperSequence && isDayChecked) { - scope.setValidity('invalidHourpickerData', true); - return true; - } else { - scope.setValidity('invalidHourpickerData', false); - return false; - } - }; - scope.isTimeOverlap = function () { - var selectedDays = []; - for (var i in scope.hourpickerPanelValue.days) { - if (scope.hourpickerPanelValue.days[i].value) { - selectedDays.push(i); - } - } - - var currentStartTime, currentEndTime, existingStartTime, existingEndTime; - currentStartTime = getTime(scope.hourpickerPanelValue.startTime, scope.hourpickerPanelValue.startMeridiem); - currentEndTime = getTime(scope.hourpickerPanelValue.endTime, scope.hourpickerPanelValue.endMeridiem); - for (var i = 0; i < scope.hourpickerValues.length; i++) { - - if (i === scope.hourpicker.editMode) { - continue; - } - - for (var j = 0; j < selectedDays.length; j++) { - existingStartTime = getTime(scope.hourpickerValues[i].startTime, scope.hourpickerValues[i].startMeridiem); - existingEndTime = getTime(scope.hourpickerValues[i].endTime, scope.hourpickerValues[i].endMeridiem); - if (scope.hourpickerValues[i].days[selectedDays[j]].value) { - if(!scope.hourpicker.sameDayOption){ - scope.setValidity('dayAlreadySelected', false); - return true; - } else if ((currentStartTime > existingStartTime && currentStartTime < existingEndTime) || (currentEndTime > existingStartTime && currentEndTime < existingEndTime)) { - scope.setValidity('invalidHourpickerTimeRange', false); - return true; - } else if ((existingStartTime > currentStartTime && existingStartTime < currentEndTime) || (existingEndTime > currentStartTime && existingEndTime < currentEndTime)) { - scope.setValidity('invalidHourpickerTimeRange', false); - return true; - } else if ((currentStartTime === existingStartTime) && (currentEndTime === existingEndTime)) { - scope.setValidity('invalidHourpickerTimeRange', false); - return true; - } - } - } - } - - scope.setValidity('dayAlreadySelected', true); - scope.setValidity('invalidHourpickerTimeRange', true); - return false; - }; - var getTime = function (timeString, meridiem) { - var tempDate = new Date(); - if (timeString && meridiem) { - var timeSplit = timeString.split(':'); - var hour = ((meridiem === 'PM' || meridiem === 'pm') && timeSplit[0] !== '12') ? parseInt(timeSplit[0], 10) + 12 : parseInt(timeSplit[0], 10); - tempDate.setHours(hour, parseInt(timeSplit[1], 10), 0, 0); - } - - return tempDate.getTime(); - }; - } - } -}]) - -.directive('b2bHourpickerValue', [function () { - return { - restrict: 'EA', - replace: false, - templateUrl: 'b2bTemplate/hourPicker/b2bHourpickerValue.html', - controller: ['$scope', function (scope) { - - }], - link: function (scope, elem, attr, ctrl) { - scope.hourpickerValue = {}; - scope.hourpickerValue.startTime = attr.startTime ? scope.$eval(attr.startTime) : ''; - scope.hourpickerValue.startMeridiem = attr.startMeridiem ? scope.$eval(attr.startMeridiem) : ''; - scope.hourpickerValue.endTime = attr.endTime ? scope.$eval(attr.endTime) : ''; - scope.hourpickerValue.endMeridiem = attr.endMeridiem ? scope.$eval(attr.endMeridiem) : ''; - scope.hourpickerValue.days = attr.days ? scope.$eval(attr.days).join(', ') : ''; - scope.hourpickerValue.index = attr.b2bHourpickerValue ? scope.$eval(attr.b2bHourpickerValue) : -1; - } - } -}]); -/** - * @ngdoc directive - * @name Template.att:inputTemplate - * - * @description - * - * - * @usage - * - * - * @example -
    - HTML + AngularJS - - - - -
    - */ -angular.module('b2b.att.inputTemplate', []); - -/** - * @ngdoc directive - * @name Navigation.att:leftNavigation - * - * @description - * - * - * @usage - * - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.leftNavigation', []) - .directive('b2bLeftNavigation', [function () { - return { - restrict: 'EA', - templateUrl: 'b2bTemplate/leftNavigation/leftNavigation.html', - scope: { - menuData: '=' - }, - link: function (scope, element, attrs, ctrl) { - scope.idx = -1; - scope.itemIdx = -1; - scope.navIdx = -1; - scope.toggleNav = function (val,link) { - if (val === scope.idx) { - scope.idx = -1; - return; - } - scope.idx = val; - }; - /*New function for ECOMP sdk*/ - scope.toggleDrawer = function(showmenu){ - scope.idx=-1; /*hide the sunmenus*/ - if(showmenu){ - document.getElementById('page-content').style.paddingLeft = "50px"; - } - else - document.getElementById('page-content').style.paddingLeft = "230px"; - }; - scope.liveLink = function (evt, val1, val2) { - scope.itemIdx = val1; - scope.navIdx = val2; - evt.stopPropagation(); - }; - } - }; - }]); -/** - * @ngdoc directive - * @name Buttons, links & UI controls.att:links - * - * @description - * - * @usage - * - * - * @example -
    - HTML + AngularJS - - - - -
    - */ -angular.module('b2b.att.links', []); -/** - * @ngdoc directive - * @name Misc.att:listbox - * - * @description - * - * - * @param {int} currentIndex - Current index of selected listbox item. Is not supported on multiselect listbox - * @param {Array} listboxData - Data of listbox items. Should include full data regardless if HTML will be filtered. - - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.listbox', ['b2b.att.utilities']) -.directive('b2bListBox', ['keymap', 'b2bDOMHelper', '$rootScope', function(keymap, b2bDOMHelper, $rootScope) { - return { - restrict: 'AE', - transclude: true, - replace: true, - scope: { - currentIndex: '=', - listboxData: '=' - }, - templateUrl: 'b2bTemplate/listbox/listbox.html', - link: function(scope, elem, attr) { - - if (attr.ariaMultiselectable !== undefined || attr.ariaMultiselectable === 'true') { - scope.multiselectable = true; - } else { - scope.multiselectable = false; - } - - var shiftKey = false; - var elements = []; - var prevDirection = undefined; // previous direction is used for an edge case when shifting - var shiftKeyPressed = false; // Used to handle shift clicking - var ctrlKeyPressed = false; - - var currentIndexSet = { - 'elementIndex': 0, - 'listboxDataIndex': 0 - }; - - /*scope.$watch('currentIndex', function(oldVal, newVal) { - if (angular.equals(oldVal, newVal)) return; - if (!scope.multiselectable) { - // This doesn't garuntee anything. index will update on focus based on rules - currentIndexSet.listboxDataIndex = scope.currentIndex; - // Should this occur? - //scope.listboxData[currentIndexSet.listboxDataIndex].selected = true; - - // Update elementIndex - elements = elem.children(); - var indecies = Array.prototype.map.call(elements, function(item) { - return parseInt(angular.element(item).attr('data-index'), 10); - }).filter(function(item) { - return item === scope.currentIndex; - }); - currentIndex.elementIndex = indecies[0]; - //focusOnElement(currentIndexSet.elementIndex); // This isn't shifting focus - if (!scope.$$phase) { - scope.$apply(); - } - } - });*/ - - function isTrue(item) { - if (item.selected === true) { - return true; - } - } - - function incrementIndex(elem) { - $rootScope.$apply(); - - var nextElem = elem.next(); - if (!angular.isDefined(nextElem) || nextElem.length === 0) { - return; - } - - currentIndexSet.elementIndex += 1; - currentIndexSet.listboxDataIndex = parseInt(nextElem.attr('data-index'), 10); - scope.currentIndex = currentIndexSet.listboxDataIndex; - - if (currentIndexSet.elementIndex >= elements.length - 1) { - currentIndexSet.elementIndex = elements.length-1; - } - } - - function decrementIndex(elem) { - $rootScope.$apply(); - var prevElem = angular.element(b2bDOMHelper.previousElement(elem)); - if (!angular.isDefined(prevElem) || prevElem.length === 0) { - return; - } - - currentIndexSet.elementIndex -= 1; - currentIndexSet.listboxDataIndex = parseInt(prevElem.attr('data-index'), 10); - scope.currentIndex = currentIndexSet.listboxDataIndex; - - if (currentIndexSet.elementIndex <= 0) { - currentIndexSet.elementIndex = 0; - } - } - - var focusOnElement = function(index) { - try { - elements[index].focus(); - } catch (e) {}; - } - - function selectItems(startIndex, endIndex, forceValue) { - for (var i = startIndex; i < endIndex; i++) { - if (forceValue === undefined) { - // We will flip the value - scope.listboxData[i].selected = !scope.listboxData[i].selected; - } else { - scope.listboxData[i].selected = forceValue; - } - } - - if (!scope.$$phase) { - scope.$apply(); - } - } - - elem.bind('focus', function(evt) { - // If multiselectable or not and nothing is selected, put focus on first element - // If multiselectable and a range is set, put focus on first element of range - // If not multiselectable and something selected, put focus on element - elements = elem.children(); - var selectedItems = scope.listboxData.filter(isTrue); - var elementsIndies = Array.prototype.map.call(elements, function(item) { - return parseInt(angular.element(item).attr('data-index'), 10); - }); - - if (selectedItems.length == 0) { - focusOnElement(0); - currentIndexSet.listboxDataIndex = 0; - } else if (attr.ariaMultiselectable) { - var index = scope.listboxData.indexOf(selectedItems[0]); - var indies = elementsIndies.filter(function(item) { - return (item === index); - }); - - if (indies.length === 0 || indies[0] != index) { - // Set focused on 0 - currentIndexSet.elementIndex = elementsIndies[0]; - currentIndexSet.listboxDataIndex = 0; - focusOnElement(currentIndexSet.elementIndex); - } else { - focusOnElement(indies[0]); - currentIndexSet.elementIndex = indies[0]; - currentIndexSet.listboxDataIndex = index; - } - } else { - focusOnElement(currentIndexSet.elementIndex); - } - scope.currentIndex = currentIndexSet.listboxDataIndex; - - if (!scope.$$phase) { - scope.$apply(); - } - }); - elem.bind('keyup', function(evt) { - if (evt.keyCode === keymap.KEY.SHIFT) { - shiftKeyPressed = false; - } else if (evt.keyCode === keymap.KEY.CTRL) { - ctrlKeyPressed = false; - } - }); - - elem.bind('keydown', function(evt) { - var keyCode = evt.keyCode; - elements = elem.children(); - if (keyCode === keymap.KEY.SHIFT) { - shiftKeyPressed = true; - } else if (evt.keyCode === keymap.KEY.CTRL) { - ctrlKeyPressed = true; - } - - switch(keyCode) { - case 65: // A key - { - if (scope.multiselectable && evt.ctrlKey) { - var arr = scope.listboxData.filter(isTrue); - var elementsIndies = Array.prototype.map.call(elements, function(item) { - return parseInt(angular.element(item).attr('data-index'), 10); - }); - var val = !(arr.length === scope.listboxData.length); - for (var i = 0; i < elementsIndies.length; i++) { - scope.listboxData[elementsIndies[i]].selected = val; - } - - if (!scope.$$phase) { - scope.$apply(); - } - - evt.preventDefault(); - evt.stopPropagation(); - } - break; - } - case keymap.KEY.END: - { - if (scope.multiselectable && evt.ctrlKey && evt.shiftKey) { - var elementsIndies = Array.prototype.map.call(elements, function(item) { - return parseInt(angular.element(item).attr('data-index'), 10); - }).filter(function(item) { - return (item >= currentIndexSet.listboxDataIndex); - }); - for (var i = 0; i < elementsIndies.length; i++) { - scope.listboxData[elementsIndies[i]].selected = true; - } - evt.preventDefault(); - evt.stopPropagation(); - - if (!scope.$$phase) { - scope.$apply(); - } - } - break; - } - case keymap.KEY.HOME: - { - if (scope.multiselectable && evt.ctrlKey && evt.shiftKey) { - selectItems(0, currentIndexSet.listboxDataIndex+1, true); // currentIndex+1 is what is being focused on - evt.preventDefault(); - evt.stopPropagation(); - } - break; - } - case keymap.KEY.LEFT: - case keymap.KEY.UP: - { - if (currentIndexSet.listboxDataIndex === 0) { - evt.preventDefault(); - evt.stopPropagation(); - return; - } - - decrementIndex(elements.eq(currentIndexSet.elementIndex)); - if (scope.multiselectable && (evt.shiftKey || evt.ctrlKey)) { - if (evt.shiftKey) { - if (prevDirection === 'DOWN') { - scope.listboxData[currentIndexSet.listboxDataIndex+1].selected = !scope.listboxData[currentIndexSet.listboxDataIndex+1].selected; - } - scope.listboxData[currentIndexSet.listboxDataIndex].selected = !scope.listboxData[currentIndexSet.listboxDataIndex].selected; - } - prevDirection = 'UP'; - } else { - // If no modifier keys are selected, all other items need to be unselected. - prevDirection = undefined; - selectItems(0, scope.listboxData.length, false); - scope.listboxData[currentIndexSet.listboxDataIndex].selected = true; - } - focusOnElement(currentIndexSet.elementIndex); - if(!scope.$$phase) { - scope.$apply(); - } - evt.preventDefault(); - evt.stopPropagation(); - break; - } - case keymap.KEY.RIGHT: - case keymap.KEY.DOWN: - { - if (currentIndexSet.listboxDataIndex === scope.listboxData.length-1) { - evt.preventDefault(); - evt.stopPropagation(); - return; - } - - incrementIndex(elements.eq(currentIndexSet.elementIndex)); - - if (scope.multiselectable && (evt.shiftKey || evt.ctrlKey)) { - if (evt.shiftKey) { - if (prevDirection === 'UP') { - scope.listboxData[currentIndexSet.listboxDataIndex-1].selected = !scope.listboxData[currentIndexSet.listboxDataIndex-1].selected; - } - - scope.listboxData[currentIndexSet.listboxDataIndex].selected = !scope.listboxData[currentIndexSet.listboxDataIndex].selected; - } - prevDirection = 'DOWN'; - } else { - // If no modifier keys are selected, all other items need to be unselected. - prevDirection = undefined; - selectItems(0, scope.listboxData.length, false); - scope.listboxData[currentIndexSet.listboxDataIndex].selected = true; - } - - focusOnElement(currentIndexSet.elementIndex); - if(!scope.$$phase) { - scope.$apply(); - } - evt.preventDefault(); - evt.stopPropagation(); - break; - } - case keymap.KEY.TAB: - if(evt.shiftKey) { - var previousElement = b2bDOMHelper.previousElement(elem.parent().parent(), true); - evt.preventDefault(); - previousElement.focus(); - } - break; - default: - break; - } - }); - - elem.bind('click', function(evt) { - var index = parseInt(evt.target.dataset.index, 10); - if (index === undefined || isNaN(index)) { - return; - } - if (scope.multiselectable && currentIndexSet.listboxDataIndex !== undefined) { - if (shiftKeyPressed) { - var min = Math.min(index, currentIndexSet.listboxDataIndex); - var max = Math.max(index, currentIndexSet.listboxDataIndex); - - if (index === min) { // clicking up - var firstIndex = scope.listboxData.findIndex(function(item) { return item.selected === true;}); - // Given the firstIndex, let's find the matching element to get proper element match - elements = elem.children(); - elements.eq(firstIndex) - var elementsThatMatch = Array.prototype.filter.call(elements, function(item) { - if (parseInt(angular.element(item).attr('data-index'), 10) === firstIndex) { - return true; - } - }); - firstIndex = parseInt(angular.element(elementsThatMatch).attr('data-index'), 10); - - if (index <= firstIndex && scope.listboxData.filter(isTrue).length > 1) { - // Break the selection into 2 - selectItems(firstIndex + 1, max + 1, undefined); // + 1 needed because selectItems only selects up to MAX - selectItems(min, firstIndex, undefined); - } else if (scope.listboxData.filter(isTrue).length == 1){ - selectItems(min, max, undefined); - } else { - selectItems(min + 1, max + 1, undefined); - } - } else { // clicking down - selectItems(min + 1, max + 1, scope.listboxData[min].selected); - } - } else if (ctrlKeyPressed) { - scope.listboxData[index].selected = !scope.listboxData[index].selected; - } else { - selectItems(0, scope.listboxData.length, false); - scope.listboxData[index].selected = !scope.listboxData[index].selected; - } - } else { - selectItems(0, scope.listboxData.length, false); - scope.listboxData[index].selected = !scope.listboxData[index].selected; - } - currentIndexSet.elementIndex = index; - currentIndexSet.listboxDataIndex = index; - scope.currentIndex = currentIndexSet.listboxDataIndex; - if (!scope.$$phase) { - scope.$apply(); - } - focusOnElement(index); - }); - } - }; - }]); -/** - * @ngdoc directive - * @name Videos, audio & animation.att:loaderAnimation - * - * @description - * - * - * @usage - * - * Angular library uses Global.css's icon-primary-spinner. - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.loaderAnimation', []) - .constant('b2bSpinnerConfig', { - loadingText: 'Loading...', - startEvent: 'startButtonSpinner', - stopEvent: 'stopButtonSpinner' - }) - .constant("progressTrackerConfig", { - loadingText: 'Loading...', - minDuration: "", - activationDelay: "", - minDurationPromise: "", - activationDelayPromise: "" - }) - -.provider('progressTracker', function () { - this.$get = ['$q', '$timeout', function ($q, $timeout) { - function cancelTimeout(promise) { - if (promise) { - $timeout.cancel(promise); - } - } - return function ProgressTracker(options) { - //do new if user doesn't - if (!(this instanceof ProgressTracker)) { - return new ProgressTracker(options); - } - - options = options || {}; - //Array of promises being tracked - var tracked = []; - var self = this; - //Allow an optional "minimum duration" that the tracker has to stay active for. - var minDuration = options.minDuration; - //Allow a delay that will stop the tracker from activating until that time is reached - var activationDelay = options.activationDelay; - var minDurationPromise; - var activationDelayPromise; - self.active = function () { - //Even if we have a promise in our tracker, we aren't active until delay is elapsed - if (activationDelayPromise) { - return false; - } - return tracked.length > 0; - }; - self.tracking = function () { - //Even if we aren't active, we could still have a promise in our tracker - return tracked.length > 0; - }; - self.destroy = self.cancel = function () { - minDurationPromise = cancelTimeout(minDurationPromise); - activationDelayPromise = cancelTimeout(activationDelayPromise); - for (var i = tracked.length - 1; i >= 0; i--) { - tracked[i].resolve(); - } - tracked.length = 0; - }; - //Create a promise that will make our tracker active until it is resolved. - // @return deferred - our deferred object that is being tracked - self.createPromise = function () { - var deferred = $q.defer(); - tracked.push(deferred); - //If the tracker was just inactive and this the first in the list of promises, we reset our delay and minDuration again. - if (tracked.length === 1) { - if (activationDelay) { - activationDelayPromise = $timeout(function () { - activationDelayPromise = cancelTimeout(activationDelayPromise); - startMinDuration(); - }, activationDelay); - } else { - startMinDuration(); - } - } - deferred.promise.then(onDone(false), onDone(true)); - return deferred; - - function startMinDuration() { - if (minDuration) { - minDurationPromise = $timeout(angular.noop, minDuration); - } - } - //Create a callback for when this promise is done. It will remove our tracked promise from the array if once minDuration is complete - function onDone() { - return function () { - (minDurationPromise || $q.when()).then(function () { - var index = tracked.indexOf(deferred); - tracked.splice(index, 1); - //If this is the last promise, cleanup the timeouts for activationDelay - if (tracked.length === 0) { - activationDelayPromise = cancelTimeout(activationDelayPromise); - } - }); - }; - } - }; - self.addPromise = function (promise) { - -// we cannot assign then function in other var and then add the resolve and reject - var thenFxn = promise && (promise.then || promise.$then || (promise.$promise && promise.$promise.then)); - if (!thenFxn) { - throw new Error("progressTracker expects a promise object :: Not found"); - } - var deferred = self.createPromise(); - //When given promise is done, resolve our created promise - //Allow $then for angular-resource objects - - promise.then(function (value) { - deferred.resolve(value); - return value; - }, function (value) { - deferred.reject(value); - return $q.reject(value); - } - ); - return deferred; - }; - }; - }]; -}) - -.config(['$httpProvider', function ($httpProvider) { - $httpProvider.interceptors.push(['$q', 'progressTracker', function ($q) { - return { - request: function (config) { - if (config.tracker) { - if (!angular.isArray(config.tracker)) { - config.tracker = [config.tracker]; - } - config.$promiseTrackerDeferred = config.$promiseTrackerDeferred || []; - - angular.forEach(config.tracker, function (tracker) { - var deferred = tracker.createPromise(); - config.$promiseTrackerDeferred.push(deferred); - }); - } - return $q.when(config); - }, - response: function (response) { - if (response.config && response.config.$promiseTrackerDeferred) { - angular.forEach(response.config.$promiseTrackerDeferred, function (deferred) { - deferred.resolve(response); - }); - } - return $q.when(response); - }, - responseError: function (response) { - if (response.config && response.config.$promiseTrackerDeferred) { - angular.forEach(response.config.$promiseTrackerDeferred, function (deferred) { - deferred.reject(response); - }); - } - return $q.reject(response); - } - }; - }]); -}]) - -.directive('b2bClickSpin', ['$timeout', '$parse', '$rootScope', 'progressTracker', function ($timeout, $parse, $rootScope, progressTracker) { - return { - restrict: 'A', - link: function (scope, elm, attrs) { - var fn = $parse(attrs.b2bClickSpin); - elm.on('click', function (event) { - var promise = $timeout(function () {console.log("inside Promise")}, 5000); - scope.$apply(function () { - fn(scope, { - $event: event - }); - }); - //comment this line if not running unit test - $rootScope.loadingTracker = progressTracker({ - minDuration: 750 - }); - $rootScope.loadingTracker.addPromise(promise); - angular.forEach("$routeChangeSuccess $viewContentLoaded $locationChangeSuccess".split(" "), function (event) { - $rootScope.$on(event, function () { - - $timeout.cancel(promise); - }); - }); - }); - } - }; -}]) - -.directive('b2bProgressTracker', ['progressTrackerConfig', function (ptc) { - return { - restrict: 'EA', - replace: true, - template: '
    '+ ptc.loadingText+'
    ' - }; -}]) - -.directive('b2bLoadButton', ['b2bSpinnerConfig', '$timeout', function (spinnerConfig, $timeout) { - var spinButton = function (state, element, data) { - - var attr = element.html() ? 'html' : 'val'; - state = state + 'Text'; - if (state === 'loadingText') { - element[attr](data[state]); - element.attr("disabled",'disabled'); - element.addClass('disabled'); - } else if (state === 'resetText') { - element[attr](data[state]); - element.removeAttr("disabled"); - element.removeClass('disabled'); - } - }; - - return { - restrict: 'A', - replace: false, - scope: { - promise: '=promise', - startEvent: '@startEvent', - stopEvent: '@stopEvent' - }, - link: function (scope, element, attr) { - var validAttr = element.html() ? 'html' : 'val'; - var data = { - loadingText: '', - resetText: '' - }; - - var updateLoadingText = function (val) { - var loadingText = val; - if (!angular.isDefined(loadingText) || loadingText === "") { - loadingText = spinnerConfig.loadingText; - } - data.loadingText = validAttr === 'html' ? "" + loadingText : loadingText; - }; - var updateResetText = function (val) { - data.resetText = val; - }; - - attr.$observe('b2bLoadButton', function (val) { - updateLoadingText(val); - }); - $timeout(function () { - updateResetText(element[validAttr]()); - }, 500); - - if (!angular.isDefined(scope.startEvent) || scope.startEvent === "") { - scope.startEvent = spinnerConfig.startEvent; - } - - if (!angular.isDefined(scope.stopEvent) || scope.stopEvent === "") { - scope.stopEvent = spinnerConfig.stopEvent; - } - - scope.$watch('promise', function () { - if (angular.isDefined(scope.promise) && angular.isFunction(scope.promise.then)) { - spinButton('loading', element, data); - scope.promise.then(function () { - spinButton('reset', element, data); - }, function () { - spinButton('reset', element, data); - }); - } - }); - - scope.$on(scope.startEvent, function () { - spinButton('loading', element, data); - scope.$on(scope.stopEvent, function () { - spinButton('reset', element, data); - }); - }); - } - }; -}]) - - -; - /** - * @ngdoc directive - * @name Misc.att:messageWrapper - * @scope - * @param {boolean} trigger - A boolean that triggers directive to switch focus - * @param {integer} delay - Extra delay added to trigger code to allow for DOM to be ready. Default is 10ms. - * @param {string} noFocus - Attribute-based API to trigger whether first focusable element receives focus on trigger or whole message (assumes tabindex="-1" set on first child) - * @param {string} trapFocus - Attribute-based API to trap focus within the message. This should be enabled by default on all toast messages. - * @description - * - * @usage - * Code that contains at least one focusable element and will be shown/hidden on some logic. This must have tabindex="-1". - * - * @example - *
    - HTML + AngularJS - - - - -
    - * - */ -angular.module('b2b.att.messageWrapper', ['b2b.att.utilities']) -.directive('b2bMessageWrapper', ['b2bDOMHelper', '$compile', '$timeout', '$log', function(b2bDOMHelper, $compile, $timeout, $log) { - return { - restrict: 'AE', - scope: { - trigger: '=', - delay: '=?' - }, - transclude: true, - replace: true, - template: '
    ', - link: function(scope, elem, attrs) { - scope.delay = scope.delay || 10; - - if (attrs.trapFocus != undefined && !elem.children().eq(0).attr('b2b-trap-focus-inside-element')) { - // Append b2bTrapFocusInsideElement onto first child and recompile - elem.children().eq(0).attr('b2b-trap-focus-inside-element', 'false'); - elem.children().eq(0).attr('trigger', scope.trigger); - $compile(elem.contents())(scope); - } - - var firstElement = undefined, - launchingElement = undefined; - - scope.$watch('trigger', function(oldVal, newVal) { - if (oldVal === newVal) return; - if (!angular.isDefined(launchingElement)) { - launchingElement = document.activeElement; - } - $timeout(function() { - if (scope.trigger) { - - if (attrs.noFocus === true || attrs.noFocus === "") { - elem.children()[0].focus(); - } else { - firstElement = b2bDOMHelper.firstTabableElement(elem); - - if (angular.isDefined(firstElement)) { - firstElement.focus(); - } - } - - } else { - if (angular.isDefined(launchingElement) && launchingElement.nodeName !== 'BODY') { - if (launchingElement === document.activeElement) { - return; - } - - if (b2bDOMHelper.isInDOM(launchingElement) && b2bDOMHelper.isTabable(launchingElement)) { - // At this point, launchingElement is still a valid element, but focus will fail and - // activeElement will become body, hence we want to apply custom logic and find previousElement - var prevLaunchingElement = launchingElement; - launchingElement.focus(); - - if (document.activeElement !== launchingElement || document.activeElement.nodeName === 'BODY') { - launchingElement = b2bDOMHelper.previousElement(angular.element(prevLaunchingElement), true); - launchingElement.focus(); - } - } else { - launchingElement = b2bDOMHelper.previousElement(launchingElement, true); - launchingElement.focus(); - } - } - } - }, scope.delay); - }); - } - }; -}]); -/** - * @ngdoc directive - * @name Messages, modals & alerts.att:modalsAndAlerts - * - * @description - * - * - * @usage - * - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.modalsAndAlerts', ['b2b.att.position', 'b2b.att.transition', 'b2b.att.utilities']) - -/** - * A helper, internal data structure that acts as a map but also allows getting / removing - * elements in the LIFO order - */ -.factory('$$stackedMap', function () { - return { - createNew: function () { - var stack = []; - - return { - add: function (key, value) { - stack.push({ - key: key, - value: value - }); - }, - get: function (key) { - for (var i = 0; i < stack.length; i++) { - if (key === stack[i].key) { - return stack[i]; - } - } - }, - keys: function () { - var keys = []; - for (var i = 0; i < stack.length; i++) { - keys.push(stack[i].key); - } - return keys; - }, - top: function () { - return stack[stack.length - 1]; - }, - remove: function (key) { - var idx = -1; - for (var i = 0; i < stack.length; i++) { - if (key === stack[i].key) { - idx = i; - break; - } - } - return stack.splice(idx, 1)[0]; - }, - removeTop: function () { - return stack.splice(stack.length - 1, 1)[0]; - }, - length: function () { - return stack.length; - } - }; - } - }; -}).factory('trapFocusInElement', ['$document', '$isElement', 'DOMHelper', 'keymap', function ($document, $isElement, DOMHelper, keymap) { - var elementStack = []; - var stackHead = undefined; - var firstTabableElement, lastTabableElement; - - var trapKeyboardFocusInFirstElement = function (e) { - if (!e.keyCode) { - e.keyCode = e.which; - } - - if (e.shiftKey === true && e.keyCode === keymap.KEY.TAB) { - lastTabableElement[0].focus(); - e.preventDefault(e); - e.stopPropagation(e); - } - - }; - - var trapKeyboardFocusInLastElement = function (e) { - if (!e.keyCode) { - e.keyCode = e.which; - } - - if (e.shiftKey === false && e.keyCode === keymap.KEY.TAB) { - firstTabableElement[0].focus(); - e.preventDefault(e); - e.stopPropagation(e); - } - }; - - var trapFocusInElement = function (flag, firstTabableElementParam, lastTabableElementParam) { - var bodyElements = $document.find('body').children(); - - firstTabableElement = firstTabableElementParam ? firstTabableElementParam : angular.element(DOMHelper.firstTabableElement(stackHead)); - lastTabableElement = lastTabableElementParam ? lastTabableElementParam : angular.element(DOMHelper.lastTabableElement(stackHead)); - - if (flag) { - for (var i = 0; i < bodyElements.length; i++) { - if (bodyElements[i] !== stackHead[0]) { - bodyElements.eq(i).attr('aria-hidden', true); - } - } - firstTabableElement.bind('keydown', trapKeyboardFocusInFirstElement); - lastTabableElement.bind('keydown', trapKeyboardFocusInLastElement); - } else { - for (var j = 0; j < bodyElements.length; j++) { - if (bodyElements[j] !== stackHead[0]) { - bodyElements.eq(j).removeAttr('aria-hidden'); - } - } - firstTabableElement.unbind('keydown', trapKeyboardFocusInFirstElement); - lastTabableElement.unbind('keydown', trapKeyboardFocusInLastElement); - } - }; - var toggleTrapFocusInElement = function (flag, element) { - if (angular.isDefined(flag) && angular.isDefined(element)) { - if (angular.isUndefined(stackHead)) { - stackHead = element; - trapFocusInElement(flag); - } else { - if (flag) { - trapFocusInElement(false); - elementStack.push(stackHead); - stackHead = element; - trapFocusInElement(true); - } else { - if (stackHead.prop('$$hashKey') === element.prop('$$hashKey')) { - trapFocusInElement(false); - stackHead = elementStack.pop(); - if (angular.isDefined(stackHead)) { - trapFocusInElement(true); - } - } - } - } - }else { - if (angular.isDefined(stackHead)) { - trapFocusInElement(false, firstTabableElement, lastTabableElement); - trapFocusInElement(true); - } - } - }; - - return toggleTrapFocusInElement; -}]) - -/** - * A helper directive for the $modal service. It creates a backdrop element. - */ -.directive('b2bModalBackdrop', ['$modalStack', '$timeout', function ($modalStack, $timeout) { - return { - restrict: 'EA', - replace: true, - templateUrl: 'b2bTemplate/modalsAndAlerts/b2b-backdrop.html', - link: function (scope, element, attrs) { - scope.close = function (evt) { - var modal = $modalStack.getTop(); - if (modal && modal.value.backdrop && modal.value.backdrop !== 'static') { - evt.preventDefault(); - evt.stopPropagation(); - $modalStack.dismiss(modal.key, 'backdrop click'); - } - }; - } - }; -}]) - -.directive('b2bModalWindow', ['$timeout', 'windowOrientation', '$window', function ($timeout, windowOrientation, $window) { - return { - restrict: 'EA', - scope: { - index: '@' - }, - replace: true, - transclude: true, - templateUrl: 'b2bTemplate/modalsAndAlerts/b2b-window.html', - controller: ['$scope', '$element', '$attrs', function (scope, element, attrs) { - scope.windowClass = attrs.windowClass || ''; - scope.sizeClass = attrs.sizeClass || ''; - scope.isNotifDialog = false; - - this.setTitle = function (title) { - scope.title = title; - }; - this.setContent = function (content) { - scope.content = content; - scope.isNotifDialog = true; - }; - this.isDockedModal = scope.windowClass.indexOf('modal-docked') > -1; - }], - link: function (scope, element, attrs, ctrl) { - if (ctrl.isDockedModal) { - scope.isModalLandscape = false; - - var window = angular.element($window); - scope.updateCss = function () { - if (windowOrientation.isPotrait()) { // Potrait Mode - scope.isModalLandscape = false; - } else if (windowOrientation.isLandscape()) { // Landscape Mode - scope.isModalLandscape = true; - } - }; - - $timeout(function () { - scope.updateCss(); - scope.$apply(); - }, 100); - window.bind('orientationchange', function () { - scope.updateCss(); - scope.$apply(); - }); - window.bind('resize', function () { - scope.updateCss(); - scope.$apply(); - }); - }else { - angular.element(element[0].querySelectorAll(".awd-select-list")).css({ - "max-height": "200px" - }); - } - - var isIE = /msie|trident/i.test(navigator.userAgent); - if (isIE) { - if(angular.element(element[0].querySelector('.corner-button button.close')).length > 0){ - angular.element(element[0].querySelector('.corner-button button.close')).bind('focus', function () { - angular.element(element[0].querySelector('.b2b-modal-header'))[0].scrollLeft = 0; - angular.element(element[0].querySelector('.b2b-modal-header'))[0].scrollTop = 0; - }); - } - } - - } - }; -}]) - -.directive('b2bModalTitle', [function () { - return { - restrict: 'A', - require: '^b2bModalWindow', - link: function (scope, elem, attr, ctrl) { - ctrl.setTitle(attr.id); - } - }; -}]) - -.directive('b2bModalContent', [function () { - return { - restrict: 'A', - require: '^b2bModalWindow', - link: function (scope, elem, attr, ctrl) { - ctrl.setContent(attr.id); - } - }; -}]) - - -.directive('b2bModalBody', ['$timeout', '$position', '$document', '$window', 'windowOrientation', 'b2bAwdBreakpoints', function ($timeout, $position, $document, $window, windowOrientation, b2bAwdBreakpoints) { - return { - restrict: 'AC', - scope: { - index: '@' - }, - require: '^b2bModalWindow', - link: function (scope, element, attrs, ctrl) { - var window = angular.element($window); - var body = $document.find('body').eq(0); - scope.setModalHeight = function () { - var modalHeaderHeight, modalFooterHeight, modalBodyHeight, windowHeight, windowWidth, modalHeight; - modalHeaderHeight = 0; - modalFooterHeight = 0; - windowHeight = $window.innerHeight; - windowWidth = $window.innerWidth; - body.css({ - 'height': windowHeight + 'px' - }); - - if (ctrl.isDockedModal) { - var modalElements = element.parent().children(); - for (var i = 0; i < modalElements.length; i++) { - if (modalElements.eq(i).hasClass('b2b-modal-header')) { - modalHeaderHeight = $position.position(modalElements.eq(i)).height; - } else if (modalElements.eq(i).hasClass('b2b-modal-footer')) { - modalFooterHeight = $position.position(modalElements.eq(i)).height; - } - } - - modalHeight = $position.position(element.parent()).height; - - modalBodyHeight = modalHeight - (modalHeaderHeight + modalFooterHeight) + 'px'; - - if (windowOrientation.isPotrait()) { // Potrait Mode - element.removeAttr('style').css({ - height: modalBodyHeight - }); - } else if (windowOrientation.isLandscape() && windowWidth < b2bAwdBreakpoints.breakpoints.mobile.max) { // Landscape Mode Mobile - element.removeAttr('style'); - } else if (windowOrientation.isLandscape() && windowWidth >= b2bAwdBreakpoints.breakpoints.mobile.max) { // Landscape Mode Non-Mobile - element.removeAttr('style').css({ - height: modalBodyHeight - }); - } - } - }; - - $timeout(function () { - scope.setModalHeight(); - scope.$apply(); - }, 100); - window.bind('orientationchange', function () { - scope.setModalHeight(); - scope.$apply(); - }); - window.bind('resize', function () { - scope.setModalHeight(); - scope.$apply(); - }); - } - }; -}]) - -.directive('b2bModalFooter', ['windowOrientation', '$window', function (windowOrientation, $window) { - return { - restrict: 'AC', - scope: { - index: '@' - }, - link: function (scope, element, attrs) { - - } - }; -}]) - -.factory('$modalStack', ['$document', '$compile', '$rootScope', '$$stackedMap', '$log', '$timeout', 'trapFocusInElement', function ($document, $compile, $rootScope, $$stackedMap, $log, $timeout, trapFocusInElement) { - var backdropjqLiteEl, backdropDomEl; - var backdropScope = $rootScope.$new(true); - var body = $document.find('body').eq(0); - var html = $document.find('html').eq(0); - var openedWindows = $$stackedMap.createNew(); - var $modalStack = {}; - - function backdropIndex() { - var topBackdropIndex = -1; - var opened = openedWindows.keys(); - for (var i = 0; i < opened.length; i++) { - if (openedWindows.get(opened[i]).value.backdrop) { - topBackdropIndex = i; - } - } - return topBackdropIndex; - } - - $rootScope.$watch(backdropIndex, function (newBackdropIndex) { - backdropScope.index = newBackdropIndex; - }); - - function removeModalWindow(modalInstance) { - //background scroll fix - html.removeAttr('style'); - body.removeAttr('style'); - body.removeClass('styled-by-modal'); - - var modalWindow = openedWindows.get(modalInstance).value; - trapFocusInElement(false, modalWindow.modalDomEl); - - //clean up the stack - openedWindows.remove(modalInstance); - - //remove window DOM element - modalWindow.modalDomEl.remove(); - - //remove backdrop if no longer needed - if (backdropDomEl && backdropIndex() === -1) { - backdropDomEl.remove(); - backdropDomEl = undefined; - } - - //destroy scope - modalWindow.modalScope.$destroy(); - } - - $document.bind('keydown', function (evt) { - var modal; - - if (evt.which === 27) { - modal = openedWindows.top(); - if (modal && modal.value.keyboard) { - $rootScope.$apply(function () { - $modalStack.dismiss(modal.key); - }); - } - } - }); - - $modalStack.open = function (modalInstance, modal) { - - openedWindows.add(modalInstance, { - deferred: modal.deferred, - modalScope: modal.scope, - backdrop: modal.backdrop, - keyboard: modal.keyboard - }); - - var angularDomEl = angular.element('
    '); - angularDomEl.attr('window-class', modal.windowClass); - angularDomEl.attr('size-class', modal.sizeClass); - angularDomEl.attr('index', openedWindows.length() - 1); - angularDomEl.html(modal.content); - - var modalDomEl = $compile(angularDomEl)(modal.scope); - openedWindows.top().value.modalDomEl = modalDomEl; - //background page scroll fix - html.css({ - 'overflow-y': 'hidden' - }); - body.css({ - 'overflow-y': 'hidden', - 'width': '100%', - 'height': window.innerHeight + 'px' - }); - body.addClass('styled-by-modal'); - body.append(modalDomEl); - - if (backdropIndex() >= 0 && !backdropDomEl) { - backdropjqLiteEl = angular.element('
    '); - backdropDomEl = $compile(backdropjqLiteEl)(backdropScope); - body.append(backdropDomEl); - } - - $timeout(function () { - - if (modal.scope.$$childHead.isNotifDialog) { - angular.element(modalDomEl).find('button')[0].focus(); - } else { - angular.element(modalDomEl)[0].focus(); - } - trapFocusInElement(true, angular.element(modalDomEl).eq(0)); - }, 200); - }; - - $modalStack.close = function (modalInstance, result) { - var modal = openedWindows.get(modalInstance); - if (modal) { - modal.value.deferred.resolve(result); - removeModalWindow(modalInstance); - } - }; - - $modalStack.dismiss = function (modalInstance, reason) { - var modalWindow = openedWindows.get(modalInstance).value; - if (modalWindow) { - modalWindow.deferred.reject(reason); - removeModalWindow(modalInstance); - } - }; - - $modalStack.getTop = function () { - return openedWindows.top(); - }; - - return $modalStack; -}]) - -.provider('$modal', function () { - var $modalProvider = { - options: { - backdrop: true, //can be also false or 'static' - keyboard: true - }, - $get: ['$injector', '$rootScope', '$q', '$http', '$templateCache', '$controller', '$modalStack', function ($injector, $rootScope, $q, $http, $templateCache, $controller, $modalStack) { - var $modal = {}; - - function getTemplatePromise(options) { - return options.template ? $q.when(options.template) : - $http.get(options.templateUrl, { - cache: $templateCache - }).then(function (result) { - return result.data; - }); - } - - function getResolvePromises(resolves) { - var promisesArr = []; - angular.forEach(resolves, function (value, key) { - if (angular.isFunction(value) || angular.isArray(value)) { - promisesArr.push($q.when($injector.invoke(value))); - } - }); - return promisesArr; - } - - $modal.open = function (modalOptions) { - - var modalResultDeferred = $q.defer(); - var modalOpenedDeferred = $q.defer(); - //prepare an instance of a modal to be injected into controllers and returned to a caller - var modalInstance = { - result: modalResultDeferred.promise, - opened: modalOpenedDeferred.promise, - close: function (result) { - $modalStack.close(modalInstance, result); - }, - dismiss: function (reason) { - $modalStack.dismiss(modalInstance, reason); - } - }; - - //merge and clean up options - modalOptions = angular.extend({}, $modalProvider.options, modalOptions); - modalOptions.resolve = modalOptions.resolve || {}; - - //verify options - if (!modalOptions.template && !modalOptions.templateUrl) { - throw new Error('One of template or templateUrl options is required.'); - } - - var templateAndResolvePromise = - $q.all([getTemplatePromise(modalOptions)].concat(getResolvePromises(modalOptions.resolve))); - - - templateAndResolvePromise.then(function resolveSuccess(tplAndVars) { - - var modalScope = (modalOptions.scope || $rootScope).$new(); - modalScope.$close = modalInstance.close; - modalScope.$dismiss = modalInstance.dismiss; - - var ctrlInstance, ctrlLocals = {}; - var resolveIter = 1; - - //controllers - if (modalOptions.controller) { - ctrlLocals.$scope = modalScope; - ctrlLocals.$modalInstance = modalInstance; - angular.forEach(modalOptions.resolve, function (value, key) { - ctrlLocals[key] = tplAndVars[resolveIter++]; - }); - - ctrlInstance = $controller(modalOptions.controller, ctrlLocals); - } - - $modalStack.open(modalInstance, { - scope: modalScope, - deferred: modalResultDeferred, - content: tplAndVars[0], - backdrop: modalOptions.backdrop, - keyboard: modalOptions.keyboard, - windowClass: modalOptions.windowClass, - sizeClass: modalOptions.sizeClass - }); - - }, function resolveError(reason) { - modalResultDeferred.reject(reason); - }); - - templateAndResolvePromise.then(function () { - modalOpenedDeferred.resolve(true); - }, function () { - modalOpenedDeferred.reject(false); - }); - - return modalInstance; - }; - - return $modal; - }] - }; - - return $modalProvider; -}) - -.directive("b2bModal", ["$modal", "$log", '$scrollTo', function ($modal, $log, $scrollTo) { - return { - restrict: 'A', - scope: { - b2bModal: '@', - modalController: '@', - modalOk: '&', - modalCancel: '&', - windowClass: '@', - sizeClass: '@' - }, - link: function (scope, elm, attr) { - elm.bind('click', function (ev) { - var currentPosition = ev.pageY - ev.clientY; - ev.preventDefault(); - if (angular.isDefined(elm.attr("href")) && elm.attr("href") !== "") { - scope.b2bModal = elm.attr("href"); - } - $modal.open({ - templateUrl: scope.b2bModal, - controller: scope.modalController, - windowClass: scope.windowClass, - sizeClass: scope.sizeClass - }).result.then(function (value) { - scope.modalOk({ - value: value - }); - elm[0].focus(); - }, function (value) { - scope.modalCancel({ - value: value - }); - elm[0].focus(); - }); - }); - } - }; -}]) - -.directive("utilityFilter", ["$modal", "$log", '$scrollTo', function ($modal, $log, $scrollTo) { - return { - restrict: 'EA', - scope: { - utilityFilter: '@' - }, - require: 'ngModel', - templateUrl: 'b2bTemplate/modal/u-filter.html', - link: function (scope, element, attribute, ctrl) { - //controller to be passed to $modal service - scope.options = angular.copy(scope.$parent.$eval(attribute.ngModel)); - scope.$parent.$watch(attribute.ngModel, function (newVal, oldVal) { - if (newVal !== oldVal) { - scope.options = newVal; - } - }); - var modalCtrl = function ($scope, options) { - $scope.options = angular.copy(options); - }; - - if (angular.isDefined(scope.utilityFilter)) { - scope.templateUrl = scope.utilityFilter; - } else { - scope.templateUrl = 'b2bTemplate/modal/u-filter-window.html'; - } - element.bind('click', function (ev) { - var currentPosition = ev.pageY - ev.clientY; - $modal.open({ - templateUrl: scope.templateUrl, - controller: modalCtrl, - resolve: { - options: function () { - return scope.options; - } - } - }).result.then(function (value) { - ctrl.$setViewValue(value); - element[0].focus(); - $scrollTo(0, currentPosition, 0); - }, function () { - element[0].focus(); - $scrollTo(0, currentPosition, 0); - }); - }); - } - }; -}]); -/** - * @ngdoc directive - * @name Forms.att:monthSelector - * - * @description - * - * - * @usage - *
    - - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.monthSelector', ['b2b.att.position', 'b2b.att.utilities']) - -.constant('b2bMonthpickerConfig', { - dateFormat: 'MM/dd/yyyy', - dayFormat: 'd', - monthFormat: 'MMMM', - yearFormat: 'yyyy', - dayHeaderFormat: 'EEEE', - dayTitleFormat: 'MMMM yyyy', - disableWeekend: false, - disableSunday: false, - disableDates: null, - onSelectClose: null, - startingDay: 0, - minDate: null, - maxDate: null, - dueDate: null, - fromDate: null, - legendIcon: null, - legendMessage: null, - calendarDisabled: false, - collapseWait: 0, - orientation: 'left', - inline: false, - mode:0, - helperText: 'The date you selected is $date. Double tap to open calendar. Select a date to close the calendar.', - descriptionText: 'Use tab to navigate between previous button, next button and month. Use arrow keys to navigate between months. Use space or enter to select a month.', - MonthpickerEvalAttributes: ['dateFormat', 'dayFormat', 'monthFormat', 'yearFormat', 'dayHeaderFormat', 'dayTitleFormat', 'disableWeekend', 'disableSunday', 'startingDay', 'collapseWait', 'orientation','mode','id'], - MonthpickerWatchAttributes: ['min', 'max', 'due', 'from', 'legendIcon', 'legendMessage', 'ngDisabled'], - MonthpickerFunctionAttributes: ['disableDates', 'onSelectClose'] -}) - -.factory('b2bMonthpickerService', ['b2bMonthpickerConfig', 'dateFilter', function (b2bMonthpickerConfig, dateFilter) { - var setAttributes = function (attr, elem) { - if (angular.isDefined(attr) && attr !== null && angular.isDefined(elem) && elem !== null) { - var attributes = b2bMonthpickerConfig.MonthpickerEvalAttributes.concat(b2bMonthpickerConfig.MonthpickerWatchAttributes, b2bMonthpickerConfig.MonthpickerFunctionAttributes); - for (var key in attr) { - var val = attr[key]; - if (attributes.indexOf(key) !== -1 && angular.isDefined(val)) { - elem.attr(key.toSnakeCase(), key); - } - } - } - }; - - var bindScope = function (attr, scope) { - if (angular.isDefined(attr) && attr !== null && angular.isDefined(scope) && scope !== null) { - var evalFunction = function (key, val) { - scope[key] = scope.$parent.$eval(val); - }; - - var watchFunction = function (key, val) { - scope.$parent.$watch(val, function (value) { - scope[key] = value; - }); - scope.$watch(key, function (value) { - scope.$parent[val] = value; - }); - }; - - var evalAttributes = b2bMonthpickerConfig.MonthpickerEvalAttributes; - var watchAttributes = b2bMonthpickerConfig.MonthpickerWatchAttributes; - for (var key in attr) { - var val = attr[key]; - if (evalAttributes.indexOf(key) !== -1 && angular.isDefined(val)) { - evalFunction(key, val); - } else if (watchAttributes.indexOf(key) !== -1 && angular.isDefined(val)) { - watchFunction(key, val); - } - } - } - }; - - return { - setAttributes: setAttributes, - bindScope: bindScope - }; -}]) - -.controller('b2bMonthpickerController', ['$scope', '$attrs', 'dateFilter', '$element', '$position', 'b2bMonthpickerConfig', function ($scope, $attrs, dateFilter, $element, $position, dtConfig) { - var format = { - date: getValue($attrs.dateFormat, dtConfig.dateFormat), - day: getValue($attrs.dayFormat, dtConfig.dayFormat), - month: getValue($attrs.monthFormat, dtConfig.monthFormat), - year: getValue($attrs.yearFormat, dtConfig.yearFormat), - dayHeader: getValue($attrs.dayHeaderFormat, dtConfig.dayHeaderFormat), - dayTitle: getValue($attrs.dayTitleFormat, dtConfig.dayTitleFormat), - disableWeekend: getValue($attrs.disableWeekend, dtConfig.disableWeekend), - disableSunday: getValue($attrs.disableSunday, dtConfig.disableSunday), - disableDates: getValue($attrs.disableDates, dtConfig.disableDates) - }, - startingDay = getValue($attrs.startingDay, dtConfig.startingDay); - - $scope.minDate = dtConfig.minDate ? $scope.resetTime(dtConfig.minDate) : null; - $scope.maxDate = dtConfig.maxDate ? $scope.resetTime(dtConfig.maxDate) : null; - $scope.dueDate = dtConfig.dueDate ? $scope.resetTime(dtConfig.dueDate) : null; - $scope.fromDate = dtConfig.fromDate ? $scope.resetTime(dtConfig.fromDate) : null; - $scope.legendIcon = dtConfig.legendIcon ? dtConfig.legendIcon : null; - $scope.legendMessage = dtConfig.legendMessage ? dtConfig.legendMessage : null; - $scope.ngDisabled = dtConfig.calendarDisabled ? dtConfig.calendarDisabled : null; - $scope.collapseWait = getValue($attrs.collapseWait, dtConfig.collapseWait); - $scope.orientation = getValue($attrs.orientation, dtConfig.orientation); - $scope.onSelectClose = getValue($attrs.onSelectClose, dtConfig.onSelectClose); - $scope.mode = getValue($attrs.mode, dtConfig.mode); - - $scope.inline = $attrs.inline === 'true' ? true : dtConfig.inline; - - function getValue(value, defaultValue) { - return angular.isDefined(value) ? $scope.$parent.$eval(value) : defaultValue; - } - - function getDaysInMonth(year, month) { - return new Date(year, month, 0).getDate(); - } - - function getDates(startDate, n) { - var dates = new Array(n); - var current = startDate, - i = 0; - while (i < n) { - dates[i++] = new Date(current); - current.setDate(current.getDate() + 1); - } - return dates; - } - - this.updatePosition = function (b2bMonthpickerPopupTemplate) { - $scope.position = $position.offset($element); - if($element.find('input').length > 0 ){ - $scope.position.top += $element.find('input').prop('offsetHeight'); - }else{ - $scope.position.top += $element.find('a').prop('offsetHeight'); - } - - if ($scope.orientation === 'right') { - $scope.position.left -= (((b2bMonthpickerPopupTemplate && b2bMonthpickerPopupTemplate.prop('offsetWidth')) || 290) - $element.find('input').prop('offsetWidth')); - } - }; - - function isSelected(dt) { - if (dt && angular.isDate($scope.currentDate) && compare(dt, $scope.currentDate) === 0) { - return true; - } - return false; - } - - function isFromDate(dt) { - if (dt && angular.isDate($scope.fromDate) && compare(dt, $scope.fromDate) === 0) { - return true; - } - return false; - } - - function isDateRange(dt) { - if (dt && $scope.fromDate && angular.isDate($scope.currentDate) && (compare(dt, $scope.fromDate) >= 0) && (compare(dt, $scope.currentDate) <= 0)) { - return true; - } else if (dt && $scope.fromDate && compare(dt, $scope.fromDate) === 0) { - return true; - } - return false; - } - - function isOld(date, currentMonthDate) { - if (date && currentMonthDate && (new Date(date.getFullYear(), date.getMonth(), 1, 0, 0, 0).getTime() < new Date(currentMonthDate.getFullYear(), currentMonthDate.getMonth(), 1, 0, 0, 0).getTime())) { - return true; - } else { - return false; - } - } - - function isNew(date, currentMonthDate) { - if (date && currentMonthDate && (new Date(date.getFullYear(), date.getMonth(), 1, 0, 0, 0).getTime() > new Date(currentMonthDate.getFullYear(), currentMonthDate.getMonth(), 1, 0, 0, 0).getTime())) { - return true; - } else { - return false; - } - } - - function isPastDue(dt) { - if ($scope.dueDate) { - return (dt > $scope.dueDate); - } - return false; - } - - function isDueDate(dt) { - if ($scope.dueDate) { - return (dt.getTime() === $scope.dueDate.getTime()); - } - return false; - } - - var isDisabled = function (date, currentMonthDate) { - if ($attrs.from && !angular.isDate($scope.fromDate)) { - return true; - } - if (format.disableWeekend === true && (dateFilter(date, format.dayHeader) === "Saturday" || dateFilter(date, format.dayHeader) === "Sunday")) { - return true; - } - if (format.disableSunday === true && (dateFilter(date, format.dayHeader) === "Sunday")) { - return true; - } - if (isOld(date, currentMonthDate) || isNew(date, currentMonthDate)) { - return true; - } - return (($scope.minDate && compare(date, $scope.minDate) < 0) || ($scope.maxDate && compare(date, $scope.maxDate) > 0) || (format.disableDates && format.disableDates({ - date: date - }))); - }; - - var isDisabledMonth = function (date, currentMonthDate) { - if ($attrs.from && !angular.isDate($scope.fromDate)) { - return true; - } - if (format.disableWeekend === true && (dateFilter(date, format.dayHeader) === "Saturday" || dateFilter(date, format.dayHeader) === "Sunday")) { - return true; - } - if (format.disableSunday === true && (dateFilter(date, format.dayHeader) === "Sunday")) { - return true; - } - return (($scope.minDate && compare(date, $scope.minDate) < 0) || ($scope.maxDate && compare(date, $scope.maxDate) > 0) || (format.disableDates && format.disableDates({ - date: date - }))); - }; - - var compare = function (date1, date2) { - return (new Date(date1.getFullYear(), date1.getMonth(), date1.getDate()) - new Date(date2.getFullYear(), date2.getMonth(), date2.getDate())); - }; - - function isMinDateAvailable(startDate, endDate) { - if (($scope.minDate && $scope.minDate.getTime() >= startDate.getTime()) && ($scope.minDate.getTime() <= endDate.getTime())) { - $scope.disablePrev = true; - $scope.visibilityPrev = "hidden"; - } else { - $scope.disablePrev = false; - $scope.visibilityPrev = "visible"; - } - } - - function isMaxDateAvailable(startDate, endDate) { - if (($scope.maxDate && $scope.maxDate.getTime() >= startDate.getTime()) && ($scope.maxDate.getTime() <= endDate.getTime())) { - $scope.disableNext = true; - $scope.visibilityNext = "hidden"; - } else { - $scope.disableNext = false; - $scope.visibilityNext = "visible"; - } - } - - function isYearInRange(currentYear) { - - if ($scope.minDate && currentYear === $scope.minDate.getFullYear()) { - $scope.disablePrev = true; - $scope.visibilityPrev = "hidden"; - } else { - $scope.disablePrev = false; - $scope.visibilityPrev = "visible"; - } - - if ($scope.maxDate && currentYear === $scope.maxDate.getFullYear()) { - $scope.disableNext = true; - $scope.visibilityNext = "hidden"; - } else { - $scope.disableNext = false; - $scope.visibilityNext = "visible"; - } - - } - - this.focusNextPrev = function(b2bMonthpickerPopupTemplate,init){ - if(init){ - if (!$scope.disablePrev){ - b2bMonthpickerPopupTemplate[0].querySelector('th.prev').focus(); - }else if (!$scope.disableNext){ - b2bMonthpickerPopupTemplate[0].querySelector('th.next').focus(); - }else{ - b2bMonthpickerPopupTemplate[0].querySelector('th.b2b-monthSelector-label').focus(); - } - }else{ - if ($scope.disableNext || $scope.disablePrev){ - b2bMonthpickerPopupTemplate[0].querySelector('th.b2b-monthSelector-label').focus(); - } - } - }; - - function getLabel(label) { - if (label) { - var labelObj = { - pre: label.substr(0, 1).toUpperCase(), - post: label - }; - return labelObj; - } - return; - } - - function makeDate(date, dayFormat, dayHeaderFormat, isSelected, isFromDate, isDateRange, isOld, isNew, isDisabled, dueDate, pastDue) { - return { - date: date, - label: dateFilter(date, dayFormat), - header: dateFilter(date, dayHeaderFormat), - selected: !!isSelected, - fromDate: !!isFromDate, - dateRange: !!isDateRange, - oldMonth: !!isOld, - nextMonth: !!isNew, - disabled: !!isDisabled, - dueDate: !!dueDate, - pastDue: !!pastDue, - focusable: !((isDisabled && !(isSelected || isDateRange)) || (isOld || isNew)) - }; - } - - this.modes = [ - { - name: 'day', - getVisibleDates: function (date) { - var year = date.getFullYear(), - month = date.getMonth(), - firstDayOfMonth = new Date(year, month, 1), - lastDayOfMonth = new Date(year, month + 1, 0); - var difference = startingDay - firstDayOfMonth.getDay(), - numDisplayedFromPreviousMonth = (difference > 0) ? 7 - difference : -difference, - firstDate = new Date(firstDayOfMonth), - numDates = 0; - - if (numDisplayedFromPreviousMonth > 0) { - firstDate.setDate(-numDisplayedFromPreviousMonth + 1); - numDates += numDisplayedFromPreviousMonth; // Previous - } - numDates += getDaysInMonth(year, month + 1); // Current - numDates += (7 - numDates % 7) % 7; // Next - - var days = getDates(firstDate, numDates), - labels = new Array(7); - for (var i = 0; i < numDates; i++) { - var dt = new Date(days[i]); - days[i] = makeDate(dt, - format.day, - format.dayHeader, - isSelected(dt), - isFromDate(dt), - isDateRange(dt), - isOld(dt, date), - isNew(dt, date), - isDisabled(dt, date), - isDueDate(dt), - isPastDue(dt)); - } - for (var j = 0; j < 7; j++) { - labels[j] = getLabel(dateFilter(days[j].date, format.dayHeader)); - } - isMinDateAvailable(firstDayOfMonth, lastDayOfMonth); - isMaxDateAvailable(firstDayOfMonth, lastDayOfMonth); - return { - objects: days, - title: dateFilter(date, format.dayTitle), - labels: labels - }; - }, - split: 7, - step: { - months: 1 - } - }, - { - name: 'month', - getVisibleDates: function(date) { - var months = [], - labels = [], - year = date.getFullYear(); - for (var i = 0; i < 12; i++) { - var dt = new Date(year,i,1); - months[i] = makeDate(dt, - format.month, - format.dayHeader, - isSelected(dt), - isFromDate(dt), - isDateRange(dt), - false, - false, - isDisabledMonth(dt, date), - isDueDate(dt), - isPastDue(dt)); - } - isYearInRange(year); - return {objects: months, title: dateFilter(date, format.year), labels: labels}; - }, - split:4, - step: {years: 1} - } - ]; -}]) - -.directive('b2bMonthpickerPopup', ['$parse', '$log', '$timeout', '$document', '$documentBind', '$isElement', '$templateCache', '$compile','$interval', 'trapFocusInElement', 'keymap', function ($parse, $log, $timeout, $document, $documentBind, $isElement, $templateCache, $compile, $interval,trapFocusInElement, keymap) { - return { - restrict: 'EA', - scope: { - trigger: '=' - }, - replace: true, - transclude: true, - templateUrl: function (elem, attr) { - if (attr.inline === 'true') { - return 'b2bTemplate/monthSelector/monthSelector-popup.html'; - }else if (attr.link === 'true') { - return 'b2bTemplate/monthSelector/monthSelectorLink.html'; - }else { - return 'b2bTemplate/monthSelector/monthSelector.html'; - } - }, - scope: {}, - require: ['b2bMonthpickerPopup', 'ngModel', '?^b2bMonthpickerGroup'], - controller: 'b2bMonthpickerController', - link: function (scope, element, attrs, ctrls) { - var MonthpickerCtrl = ctrls[0], - ngModel = ctrls[1], - b2bMonthpickerGroupCtrl = ctrls[2]; - var b2bMonthpickerPopupTemplate; - - if (!ngModel) { - $log.error("ng-model is required."); - return; // do nothing if no ng-model - } - - // Configuration parameters - var mode = scope.mode, - selected; - scope.isOpen = false; - - scope.headers = []; - scope.footers = []; - scope.triggerInterval=undefined; - - - if (b2bMonthpickerGroupCtrl) { - b2bMonthpickerGroupCtrl.registerMonthpickerScope(scope); - } - - element.bind('keydown', function (ev) { - if (!ev.keyCode) { - if (ev.which) { - ev.keyCode = ev.which; - } else if (ev.charCode) { - ev.keyCode = ev.charCode; - } - } - if(ev.keyCode === keymap.KEY.ESC) - { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - scope.$apply(); - } - }); - - element.find('button').bind('click', function () { - onClicked(); - }); - - element.find('a').bind('click', function () { - onClicked(); - }); - - - element.find('input').bind('click', function () { - onClicked(); - }); - - var onClicked = function() { - if (!scope.ngDisabled) { - scope.isOpen = !scope.isOpen; - toggleCalendar(scope.isOpen); - MonthpickerCtrl.updatePosition(b2bMonthpickerPopupTemplate); - scope.$apply(); - } - }; - - var toggleCalendar = function (flag) { - if (!scope.inline) { - if (flag) { - b2bMonthpickerPopupTemplate = angular.element($templateCache.get('b2bTemplate/monthSelector/monthSelector-popup.html')); - b2bMonthpickerPopupTemplate.attr('b2b-trap-focus-inside-element', 'false'); - b2bMonthpickerPopupTemplate.attr('trigger', 'true'); - b2bMonthpickerPopupTemplate = $compile(b2bMonthpickerPopupTemplate)(scope); - $document.find('body').append(b2bMonthpickerPopupTemplate); - b2bMonthpickerPopupTemplate.bind('keydown', escPress); - $timeout(function () { - scope.getFocus = true; - scope.trigger=0; - scope.$apply(); - $timeout(function () { - scope.getFocus = false; - scope.$apply(); - MonthpickerCtrl.focusNextPrev(b2bMonthpickerPopupTemplate,true); - }, 100); - }); - scope.triggerInterval = $interval(function () { - //This value is updated to trigger init() function of directive on year change. - scope.trigger=(scope.trigger === 0 ? 1 : 0); - }, 200); - - } else { - b2bMonthpickerPopupTemplate.unbind('keydown', escPress); - if(scope.triggerInterval) - { - $interval.cancel(scope.triggerInterval); - scope.triggerInterval=undefined; - } - b2bMonthpickerPopupTemplate.remove(); - if(element.find('button').length > 0){ - element.find('button')[0].focus(); - }else{ - element.find('a')[0].focus(); - } - - scope.getFocus = false; - } - } - }; - - var outsideClick = function (e) { - var isElement = $isElement(angular.element(e.target), element, $document); - var isb2bMonthpickerPopupTemplate = $isElement(angular.element(e.target), b2bMonthpickerPopupTemplate, $document); - if (!(isElement || isb2bMonthpickerPopupTemplate)) { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - scope.$apply(); - } - }; - - var escPress = function (ev) { - if (!ev.keyCode) { - if (ev.which) { - ev.keyCode = ev.which; - } else if (ev.charCode) { - ev.keyCode = ev.charCode; - } - } - if (ev.keyCode) { - if (ev.keyCode === keymap.KEY.ESC) { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - ev.preventDefault(); - ev.stopPropagation(); - } else if (ev.keyCode === 33) { - !scope.disablePrev && scope.move(-1); - $timeout(function () { - scope.getFocus = true; - scope.$apply(); - $timeout(function () { - scope.getFocus = false; - scope.$apply(); - }, 100); - }); - ev.preventDefault(); - ev.stopPropagation(); - } else if (ev.keyCode === 34) { - !scope.disableNext && scope.move(1); - $timeout(function () { - scope.getFocus = true; - scope.$apply(); - $timeout(function () { - scope.getFocus = false; - scope.$apply(); - }, 100); - }); - ev.preventDefault(); - ev.stopPropagation(); - } - scope.$apply(); - } - }; - - $documentBind.click('isOpen', outsideClick, scope); - - scope.$on('$destroy', function () { - if (scope.isOpen) { - scope.isOpen = false; - toggleCalendar(scope.isOpen); - } - }); - - scope.resetTime = function (date) { - if (typeof date === 'string') { - date = date + 'T12:00:00'; - } - var dt; - if (!isNaN(new Date(date))) { - dt = new Date(date); - if(scope.mode === 1){ - dt = new Date(dt.getFullYear(), dt.getMonth()); - }else{ - dt = new Date(dt.getFullYear(), dt.getMonth(), dt.getDate()); - } - } else { - return null; - } - return new Date(dt.getFullYear(), dt.getMonth(), dt.getDate()); - }; - - if (attrs.min) { - scope.$parent.$watch($parse(attrs.min), function (value) { - scope.minDate = value ? scope.resetTime(value) : null; - refill(); - }); - } - if (attrs.max) { - scope.$parent.$watch($parse(attrs.max), function (value) { - scope.maxDate = value ? scope.resetTime(value) : null; - refill(); - }); - } - if (attrs.due) { - scope.$parent.$watch($parse(attrs.due), function (value) { - scope.dueDate = value ? scope.resetTime(value) : null; - refill(); - }); - } - if (attrs.from) { - scope.$parent.$watch($parse(attrs.from), function (value) { - scope.fromDate = value ? scope.resetTime(value) : null; - refill(); - }); - } - - if (attrs.legendIcon) { - scope.$parent.$watch(attrs.legendIcon, function (value) { - scope.legendIcon = value ? value : null; - refill(); - }); - } - if (attrs.legendMessage) { - scope.$parent.$watch(attrs.legendMessage, function (value) { - scope.legendMessage = value ? value : null; - refill(); - }); - } - if (attrs.ngDisabled) { - scope.$parent.$watch(attrs.ngDisabled, function (value) { - scope.ngDisabled = value ? value : null; - }); - } - - - // Split array into smaller arrays - function split(arr, size) { - var arrays = []; - while (arr.length > 0) { - arrays.push(arr.splice(0, size)); - } - return arrays; - } - - var moveMonth = function(selectedDate, direction) { - var step = MonthpickerCtrl.modes[scope.mode].step; - selectedDate.setDate(1); - selectedDate.setMonth(selectedDate.getMonth() + direction * (step.months || 0)); - selectedDate.setFullYear(selectedDate.getFullYear() + direction * (step.years || 0)); - - return selectedDate; - }; - - function refill(date) { - if (angular.isDate(date) && !isNaN(date)) { - selected = new Date(date); - } else { - if (!selected) { - selected = new Date(); - } - } - - if (selected) { - var selectedCalendar; - if(scope.mode === 1){ - if(!angular.isDate(selected)) - { - selected = new Date(); - } - selectedCalendar = moveMonth(angular.copy(selected), -1); - } else { - selectedCalendar = angular.copy(selected); - } - - var currentMode = MonthpickerCtrl.modes[mode], - data = currentMode.getVisibleDates(selected); - - scope.rows = split(data.objects, currentMode.split); - - var flag=false; - var startFlag=false; - var firstSelected = false; - for(var i=0; i' + helperText + ''; - elem.attr('tabindex', '-1'); - elem.attr('aria-hidden', 'true'); - elem.attr('readonly', 'true'); - }else{ - selectedDateMessage = '' - elem.attr('aria-label', helperText); - } - - var descriptionTextSpan = ''+descriptionText+''; - elem.removeAttr('b2b-Monthpicker'); - elem.removeAttr('ng-model'); - elem.removeAttr('ng-disabled'); - elem.addClass('Monthpicker-input'); - elem.attr('ng-model', 'dt'); - elem.attr('aria-describedby', 'monthpicker-description'+scope.$id); - - - - elem.attr('ng-disabled', 'ngDisabled'); - elem.attr('b2b-format-date', dateFormatString); - - var wrapperElement = angular.element('
    '); - wrapperElement.attr('b2b-Monthpicker-popup', ''); - wrapperElement.attr('ng-model', 'dt'); - if (inline) { - wrapperElement.attr('inline', inline); - } - if (elem.prop('nodeName') === 'A'){ - wrapperElement.attr('link', true); - } - b2bMonthpickerService.setAttributes(attr, wrapperElement); - b2bMonthpickerService.bindScope(attr, scope); - - wrapperElement.html(''); - wrapperElement.append(selectedDateMessage); - wrapperElement.append(''); - wrapperElement.append(descriptionTextSpan); - wrapperElement.append(''); - wrapperElement.append(elem.prop('outerHTML')); - - var elm = wrapperElement.prop('outerHTML'); - elm = $compile(elm)(scope); - elem.replaceWith(elm); - }], - link: function (scope, elem, attr, ctrl) { - if (!ctrl) { - $log.error("ng-model is required."); - return; // do nothing if no ng-model - } - - scope.$watch('dt', function (value) { - ctrl.$setViewValue(value); - }); - ctrl.$render = function () { - scope.dt = ctrl.$viewValue; - }; - } - }; -}]) - -.directive('b2bMonthpickerGroup', [function () { - return { - restrict: 'EA', - controller: ['$scope', '$element', '$attrs', function (scope, elem, attr) { - this.$$headers = []; - this.$$footers = []; - this.registerMonthpickerScope = function (MonthpickerScope) { - MonthpickerScope.headers = this.$$headers; - MonthpickerScope.footers = this.$$footers; - }; - }], - link: function (scope, elem, attr, ctrl) {} - }; -}]) - -.directive('b2bFormatDate', ['dateFilter', function (dateFilter) { - return { - restrict: 'A', - require: 'ngModel', - link: function (scope, elem, attr, ctrl) { - var b2bFormatDate = ""; - attr.$observe('b2bFormatDate', function (value) { - b2bFormatDate = value; - }); - var dateToString = function (value) { - if (!isNaN(new Date(value))) { - return dateFilter(new Date(value), b2bFormatDate); - } - return value; - }; - ctrl.$formatters.unshift(dateToString); - } - }; -}]) - -.directive('b2bMonthpickerHeader', [function () { - return { - restrict: 'EA', - require: '^b2bMonthpickerGroup', - transclude: true, - replace: true, - template: '', - compile: function (elem, attr, transclude) { - return function link(scope, elem, attr, ctrl) { - if (ctrl) { - ctrl.$$headers.push(transclude(scope, function () {})); - } - elem.remove(); - }; - } - }; -}]) - -.directive('b2bMonthpickerFooter', [function () { - return { - restrict: 'EA', - require: '^b2bMonthpickerGroup', - transclude: true, - replace: true, - template: '', - compile: function (elem, attr, transclude) { - return function link(scope, elem, attr, ctrl) { - if (ctrl) { - ctrl.$$footers.push(transclude(scope, function () {})); - } - elem.remove(); - }; - } - }; -}]); -/** - * @ngdoc directive - * @name Navigation.att:multiLevelNavigation - * - * @description - * - * - * @usage - *
    - * - *
    - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.multiLevelNavigation', ['b2b.att.utilities']) - //directive b2bMlNav Test coverage 100% on 5/13 - .directive('b2bMlNav', ['keymap', function (keymap) { - return { - restrict: 'EA', - link: function (scope, element) { - var rootE, parentE, upE, downE, lastE, homeE, endE; - //default root tree element tabindex set zero - if (element.parent().parent().hasClass('b2b-ml-nav') && (element[0].previousElementSibling === null)) { - element.attr('tabindex', 0); - } - //check root via class - var isRoot = function (elem) { - if (elem.parent().parent().eq(0).hasClass('b2b-ml-nav')) { - return true; - } else { - return false; - } - - } - //for any expandable tree item on click - var toggleState = function (e) { - if (angular.element(e.target).attr("b2b-ml-nav") !== "endNode") { - var eLink = element.find('a').eq(0); - if (eLink.hasClass('active')) { - eLink.removeClass('active'); - eLink.parent().attr("aria-expanded", "false"); - eLink.find('i').eq(0).removeClass('icon-primary-expanded'); - eLink.find('i').eq(0).addClass('icon-primary-collapsed'); - } else { - eLink.addClass('active'); - eLink.parent().attr("aria-expanded", "true"); - eLink.find('i').eq(0).removeClass('icon-primary-collapsed'); - eLink.find('i').eq(0).addClass('icon-primary-expanded'); - } - } - }; - //function finds the main root-item from particular tree-group - var findRoot = function (elem) { - if (isRoot(elem)) { - rootE = elem; - return; - } - if (elem.attr("b2b-ml-nav") === "middleNode" || elem.attr("b2b-ml-nav") === "endNode") { - parentE = elem.parent().parent(); - } else { - parentE = elem; - } - if (parentE.attr("b2b-ml-nav") === "rootNode") { - rootE = parentE; - } else { - findRoot(parentE); - } - }; - //finds the last visible node of the previous tree-group - var findPreActive = function (elem) { - if (!(elem.hasClass("active"))) { - return; - } else { - var childElems = angular.element(elem[0].nextElementSibling.children); - lastE = angular.element(childElems[childElems.length - 1]); - if (lastE.attr("b2b-ml-nav") === "middleNode" && lastE.find('a').eq(0).hasClass('active')) { - findPreActive(lastE.find('a').eq(0)); - } - upE = lastE; - } - }; - //find above visible link - var findUp = function (elem) { - if (elem[0].previousElementSibling !== null) { - upE = angular.element(elem[0].previousElementSibling); - } else { - upE = elem.parent().parent(); - } - if (isRoot(elem) || (upE.attr('b2b-ml-nav') === "middleNode" && upE[0] !== elem.parent().parent()[0])) { - findPreActive(upE.find('a').eq(0)); - } - }; - //find below visible link - var findDown = function (elem) { - if (elem.hasClass('active')) { - downE = elem.next().find('li').eq(0); - } else { - if (elem.parent().next().length !== 0) { - downE = elem.parent().next().eq(0); - } else { - if (elem.parent().parent().parent().next().length !== 0) { - downE = elem.parent().parent().parent().next().eq(0); - return; - } - downE = elem.parent().eq(0); - } - } - }; - //finds last root-group element of the tree - var findEnd = function (elem) { - findRoot(elem); - endE = angular.element(rootE.parent()[0].children[rootE.parent()[0].children.length - 1]); - }; - //finds first root element of tree - var findHome = function (elem) { - findRoot(elem); - homeE = angular.element(rootE.parent()[0].children[0]); - }; - element.bind('click', function (e) { - if(element.attr("b2b-ml-nav") !== "endNode") { - toggleState(e); - } - e.stopPropagation(); - }); - element.bind('focus', function (e) { - if(element.attr("b2b-ml-nav") !== "endNode") { - if(element.find('a').eq(0).hasClass('active')) { - element.attr("aria-expanded", true); - } - else { - element.attr("aria-expanded", false); - } - - } - }) - //Keyboard functionality approach: - //find keycode - //set set tabindex -1 on the current focus element - //find the next element to be focussed, set tabindex 0 and throw focus - element.bind('keydown', function (evt) { - switch (evt.keyCode) { - case keymap.KEY.ENTER: - case keymap.KEY.SPACE: - element.triggerHandler('click'); - evt.stopPropagation(); - evt.preventDefault(); - break; - case keymap.KEY.END: - evt.preventDefault(); - element.attr('tabindex', -1); - findEnd(element); - endE.eq(0).attr('tabindex', 0); - endE[0].focus(); - evt.stopPropagation(); - break; - case keymap.KEY.HOME: - evt.preventDefault(); - element.attr('tabindex', -1); - findHome(element); - homeE.eq(0).attr('tabindex', 0); - homeE[0].focus(); - evt.stopPropagation(); - break; - case keymap.KEY.LEFT: - evt.preventDefault(); - if (!isRoot(element)) { - element.attr('tabindex', -1); - parentE = element.parent().parent(); - parentE.eq(0).attr('tabindex', 0); - parentE[0].focus(); - parentE.eq(0).triggerHandler('click'); - } else { - if (element.find('a').eq(0).hasClass('active')) { - element.triggerHandler('click'); - } - } - evt.stopPropagation(); - break; - case keymap.KEY.UP: - evt.preventDefault(); - if (!(isRoot(element) && element[0].previousElementSibling === null)) { - element.attr('tabindex', -1); - findUp(element); - upE.eq(0).attr('tabindex', 0); - upE[0].focus(); - } - evt.stopPropagation(); - break; - case keymap.KEY.RIGHT: - evt.preventDefault(); - if (element.attr("b2b-ml-nav") !== "endNode") { - if (!element.find('a').eq(0).hasClass('active')) { - element.triggerHandler('click'); - } - element.attr('tabindex', -1); - findDown(element.find('a').eq(0)); - downE.eq(0).attr('tabindex', 0); - downE[0].focus(); - } - evt.stopPropagation(); - break; - case keymap.KEY.DOWN: - evt.preventDefault(); - element.attr('tabindex', -1); - if (!(element.attr("b2b-ml-nav") === "middleNode" && element.find('a').eq(0).hasClass('active')) && (element.next().length === 0)) { - if(element.parent().parent().attr("b2b-ml-nav") !== "rootNode" && element.parent().parent()[0].nextElementSibling !== null) - { - findDown(element.find('a').eq(0)); - downE.eq(0).attr('tabindex', 0); - downE[0].focus(); - evt.stopPropagation(); - break; - } - findRoot(element); - if (!(rootE.next().length === 0)) { - rootE.next().eq(0).attr('tabindex', 0); - rootE.next()[0].focus(); - } else { - rootE.eq(0).attr('tabindex', 0); - rootE[0].focus(); - } - evt.stopPropagation(); - break; - } - findDown(element.find('a').eq(0)); - downE.eq(0).attr('tabindex', 0); - downE[0].focus(); - evt.stopPropagation(); - break; - default: - break; - } - }); - } - }; - }]); -/** - * @ngdoc directive - * @name Tabs, tables & accordions.att:multipurposeExpander - * - * @description - * - * - * @usage - * - * - * - * Heading content goes here - * -

    body content goes here

    -
    - *
    - *
    - * - * - * - * Heading content goes here - * -

    body content goes here

    -
    - *
    - * - * @example - *
    - - - - -
    - * - */ - -angular.module('b2b.att.multipurposeExpander', ['b2b.att', 'b2b.att.collapse']) -.directive('b2bExpanderGroup', function () { - return { - restrict: 'EA', - transclude: true, - template: "", - controller:['$scope','$attrs', function($scope,$attrs){ - this.groups = []; - this.index = -1; - this.scope = $scope; - - this.addGroup = function (groupScope) { - var that = this; - groupScope.index = this.groups.length; - this.groups.push(groupScope); - if(this.groups.length > 0){ - this.index = 0; - } - groupScope.$on('$destroy', function () { - that.removeGroup(groupScope); - }); - }; - - this.closeOthers = function (openGroup) { - var closeOthers = angular.isDefined($attrs.closeOthers); - if (closeOthers && !$scope.forceExpand) { - angular.forEach(this.groups, function (group) { - if (group !== openGroup) { - group.isOpen = false; - } - }); - } - if (this.groups.indexOf(openGroup) === (this.groups.length - 1) && $scope.forceExpand) { - $scope.forceExpand = false; - } - }; - this.removeGroup = function (group) { - var index = this.groups.indexOf(group); - if (index !== -1) { - this.groups.splice(this.groups.indexOf(group), 1); - } - }; - }] - - }; - -}) -.directive('b2bExpanders', function () { - return{ - restrict: 'EA', - replace: true, - require:['b2bExpanders','?^b2bExpanderGroup'], - transclude: true, - scope:{isOpen:'=?'}, - template: "
    ", - controller: ['$scope', function ($scope){ - var bodyScope = null; - var expanderScope = null; - this.isOpened = function(){ - if($scope.isOpen) - { - return true; - }else - { - return false; - } - }; - this.setScope = function (scope) { - bodyScope = scope; - bodyScope.isOpen = $scope.isOpen; - }; - this.setExpanderScope = function (scope) { - expanderScope = scope; - }; - this.toggle = function () { - $scope.isOpen = bodyScope.isOpen = !bodyScope.isOpen; - return bodyScope.isOpen; - - }; - this.watchToggle = function(io){ - bodyScope.isOpen = io; - expanderScope.updateIcons(io); - }; - }], - link: function (scope, elem, attr, myCtrl) - { - //scope.isOpen = false; - if(myCtrl[1]){ - myCtrl[1].addGroup(scope); - } - scope.$watch('isOpen', function(val){ - myCtrl[0].watchToggle(scope.isOpen); - if(val && myCtrl[1]){ - myCtrl[1].closeOthers(scope); - } - }); - } - }; -}) - -.directive('b2bExpanderHeading', function () { - return{ - require: "^b2bExpanders", - restrict: 'EA', - replace: true, - transclude: true, - scope: true, - template: "
    " - }; -}) - -.directive('b2bExpanderBody', function () { - return{ - restrict: 'EA', - require: "^b2bExpanders", - replace: true, - transclude: true, - scope: {}, - template: "
    ", - link: function (scope, elem, attr, myCtrl) { - scope.isOpen = false; - myCtrl.setScope(scope); - } - }; -}) - -.directive('b2bExpanderToggle', function () { - return{ - restrict: 'EA', - require: "^b2bExpanders", - scope: { - expandIcon: '@', - collapseIcon: '@' - }, - - link: function (scope, element, attr, myCtrl) - { - myCtrl.setExpanderScope(scope); - var isOpen = myCtrl.isOpened(); - - scope.setIcon = function () { - element.attr("role", "tab"); - - if (scope.expandIcon && scope.collapseIcon) - { - if (isOpen) { - element.removeClass(scope.expandIcon); - element.addClass(scope.collapseIcon); - - element.attr("aria-expanded", "true"); - } - else { - element.removeClass(scope.collapseIcon); - element.addClass(scope.expandIcon); - - element.attr("aria-expanded", "false"); - } - } - }; - - element.bind('click', function (){ - scope.toggleit(); - }); - scope.updateIcons = function(nStat){ - isOpen = nStat; - scope.setIcon(); - }; - scope.toggleit = function (){ - isOpen = myCtrl.toggle(); - scope.setIcon(); - scope.$apply(); - }; - scope.setIcon(); - } - }; -}); -/** - * @ngdoc directive - * @name Messages, modals & alerts.att:notesMessagesAndErrors - * - * @description - * - * - * @usage - * See Demo - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.notesMessagesAndErrors', []); -/** - * @ngdoc directive - * @name Template.att:Notification Card - * - * @description - * - * - * @example - *
    - HTML + AngularJS - - - - -
    - * - */ -angular.module('b2b.att.notificationCardTemplate', []) - -/** - * @ngdoc directive - * @name Template.att:Order Confirmation Template - * - * @description - * - * - * @example - *
    - HTML + AngularJS - - - - -
    - * - */ -angular.module('b2b.att.orderConfirmationTemplate', []); - -/** - * @ngdoc directive - * @name Navigation.att:pagination - * - * @description - * - * - * @usage - *
    - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.pagination', ['b2b.att.utilities', 'ngTouch']) - .directive('b2bPagination', ['b2bUserAgent', 'keymap', '$window', '$timeout', function (b2bUserAgent, keymap, $window, $timeout) { - return { - restrict: 'A', - scope: { - totalPages: '=', - currentPage: '=', - showInput: '=', - clickHandler: '=?', - inputId: '=' - }, - replace: true, - templateUrl: 'b2bTemplate/pagination/b2b-pagination.html', - link: function (scope, elem) { - scope.isMobile = b2bUserAgent.isMobile(); - scope.notMobile = b2bUserAgent.notMobile(); - scope.focusedPage; - scope.meanVal = 3; - scope.$watch('totalPages', function (value) { - if (angular.isDefined(value) && value !== null) { - scope.pages = []; - if (value < 1) { - scope.totalPages = 1; - return; - } - if (value <= 10) { - for (var i = 1; i <= value; i++) { - scope.pages.push(i); - } - } else if (value > 10) { - var midVal = Math.ceil(value / 2); - scope.pages = [midVal - 2, midVal - 1, midVal, midVal + 1, midVal + 2]; - } - if(scope.currentPage === undefined || scope.currentPage === 1) - { - currentPageChanged(1); - } - } - }); - scope.$watch('currentPage', function (value) { - currentPageChanged(value); - callbackHandler(value); - }); - var callbackHandler = function (num) { - if (angular.isFunction(scope.clickHandler)) { - scope.clickHandler(num); - } - }; - - function currentPageChanged(value) { - if (angular.isDefined(value) && value !== null) { - if (!value || value < 1) { - value = 1; - } - if (value > scope.totalPages) { - value = scope.totalPages; - } - if (scope.currentPage !== value) { - scope.currentPage = value; - callbackHandler(scope.currentPage); - } - if (scope.totalPages > 10) { - var val = parseInt(value); - if (val <= 6) { - scope.pages = [1, 2, 3, 4, 5, 6, 7, 8]; - } else if (val > 6 && val <= scope.totalPages - 5) { - scope.pages = [val - 1, val, val + 1]; - } else if (val >= scope.totalPages - 5) { - scope.pages = [scope.totalPages - 7, scope.totalPages - 6, scope.totalPages - 5, scope.totalPages - 4, scope.totalPages - 3, scope.totalPages - 2, scope.totalPages - 1, scope.totalPages]; - } - } - if (scope.isMobile) { - var inWidth = $window.innerWidth; - var viewLimit = 7; - if (inWidth <= 400) { - viewLimit = 7; - } else if (inWidth > 400 && inWidth < 500) { - viewLimit = 9; - } else if (inWidth >= 500 && inWidth < 600) { - viewLimit = 11; - } else if (inWidth >= 600 && inWidth < 700) { - viewLimit = 13; - } else if (inWidth >= 700 && inWidth < 800) { - viewLimit = 15; - } - - var val = parseInt(value); - - scope.meanVal = Math.floor(viewLimit / 2); - var lowerLimit = (val - scope.meanVal) < 1 ? 1 : val - scope.meanVal; - var upperLimit = (lowerLimit + viewLimit - 1) > scope.totalPages ? scope.totalPages : lowerLimit + viewLimit - 1; - scope.pages = []; - for (var i = lowerLimit; i <= upperLimit; i++) { - scope.pages.push(i); - } - } - } - } - scope.gotoKeyClick = function (keyEvent) { - if (keyEvent.which === keymap.KEY.ENTER) { - scope.gotoBtnClick() - } - } - scope.gotoBtnClick = function () { - currentPageChanged(parseInt(scope.gotoPage)); - callbackHandler(scope.currentPage); - var qResult = elem[0].querySelector('button'); - angular.element(qResult).attr('disabled','true'); - $timeout(function(){ - elem[0].querySelector('.b2b-pager__item--active').focus(); - }, 50); - scope.gotoPage = null; - } - scope.onfocusIn = function(evt) - { - var qResult = elem[0].querySelector('button'); - angular.element(qResult).removeAttr('disabled'); - } - scope.onfocusOut = function(evt) - { - if(evt.target.value === "") - { - var qResult = elem[0].querySelector('button'); - angular.element(qResult).attr('disabled','true'); - } - } - scope.next = function (event) { - if (event != undefined) { - event.preventDefault(); - } - if (scope.currentPage < scope.totalPages) { - scope.currentPage += 1; - callbackHandler(scope.currentPage); - } - }; - scope.prev = function (event) { - if (event != undefined) { - event.preventDefault(); - } - if (scope.currentPage > 1) { - scope.currentPage -= 1; - callbackHandler(scope.currentPage); - } - }; - scope.selectPage = function (value, event) { - event.preventDefault(); - scope.currentPage = value; - scope.focusedPage = value; - callbackHandler(scope.currentPage); - }; - scope.checkSelectedPage = function (value) { - if (scope.currentPage === value) { - return true; - } - return false; - }; - scope.isFocused = function (page) { - return scope.focusedPage === page; - }; - } - }; - }]); -/** - * @ngdoc directive - * @name Navigation.att:paneSelector - * - * @description - * - * - * @usage - * Please refer demo.html tab in Example section below. - * - * @example -
    - HTML + AngularJS - - - - -
    - */ - -angular.module('b2b.att.paneSelector', ['b2b.att.tabs', 'b2b.att.utilities']) - -.filter('paneSelectorSelectedItemsFilter', [function () { - return function (listOfItemsArray) { - - if (!listOfItemsArray) { - listOfItemsArray = []; - } - - var returnArray = []; - - for (var i = 0; i < listOfItemsArray.length; i++) { - if (listOfItemsArray[i].isSelected) { - returnArray.push(listOfItemsArray[i]); - } - } - - return returnArray; - }; -}]) - -.filter('paneSelectorFetchChildItemsFilter', [function () { - return function (listOfItemsArray) { - - if (!listOfItemsArray) { - listOfItemsArray = []; - } - - var returnArray = []; - - for (var i = 0; i < listOfItemsArray.length; i++) { - for (var j = 0; j < listOfItemsArray[i].childItems.length; j++) { - returnArray.push(listOfItemsArray[i].childItems[j]); - } - } - - return returnArray; - }; -}]) - -.directive('b2bPaneSelector', [function () { - return { - restrict: 'AE', - replace: true, - templateUrl: 'b2bTemplate/paneSelector/paneSelector.html', - transclude: true, - scope: {} - }; -}]) - -.directive('b2bPaneSelectorPane', [ function () { - return { - restrict: 'AE', - replace: true, - templateUrl: 'b2bTemplate/paneSelector/paneSelectorPane.html', - transclude: true, - scope: {} - }; -}]) - -.directive('b2bTabVertical', ['$timeout', 'keymap', function ($timeout, keymap) { - return { - restrict: 'A', - require: '^b2bTab', - link: function (scope, element, attr, b2bTabCtrl) { - - if (!b2bTabCtrl) { - return; - } - - // retreive the isolateScope - var iScope = angular.element(element).isolateScope(); - - $timeout(function () { - angular.element(element[0].querySelector('a')).unbind('keydown'); - angular.element(element[0].querySelector('a')).bind('keydown', function (evt) { - - if (!(evt.keyCode)) { - evt.keyCode = evt.which; - } - - switch (evt.keyCode) { - case keymap.KEY.DOWN: - evt.preventDefault(); - iScope.nextKey(); - break; - - case keymap.KEY.UP: - evt.preventDefault(); - iScope.previousKey(); - break; - - default:; - } - }); - }); - } - }; -}]); -/** - * @ngdoc directive - * @name Forms.att:phoneNumberInput - * - * @description - * - * - * @usage -
    -
    - -
    - -
    - This field is mandatory! - Please enter valid phone number! - Please enter valid phone number! -
    -
    -
    -
    - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.phoneNumberInput', ['ngMessages', 'b2b.att.utilities']) - .constant("CoreFormsUiConfig", { - phoneMask: '(___) ___-____', - phoneMaskDot: '___.___.____', - phoneMaskHyphen: '___-___-____' - }) - .directive('b2bPhoneMask', ['$parse', 'CoreFormsUiConfig', 'keymap', function ($parse, CoreFormsUiConfig, keymap) { - return { - require: 'ngModel', - scope: { - ngModel: '=' - }, - link: function (scope, iElement, iAttrs, ctrl) { - var navigatorAgent = navigator.userAgent.toLowerCase(), - isAndroid = navigatorAgent.indexOf("android") > -1, - oldIE = navigatorAgent.indexOf('msie 8.0') !== -1; - var mask = ''; - var validPhoneNumber = false; - var currentKey = ''; - if (isAndroid) { - mask = "__________"; - } else { - switch (iAttrs.b2bPhoneMask) { - case "phoneMask": - mask = CoreFormsUiConfig.phoneMask; - break; - case "phoneMaskDot": - mask = CoreFormsUiConfig.phoneMaskDot; - break; - case "phoneMaskHyphen": - mask = CoreFormsUiConfig.phoneMaskHyphen; - break; - default: - mask = CoreFormsUiConfig.phoneMask; - } - } - iElement.attr("maxlength", mask.length); - var checkValidity = function (unmaskedValue, rawValue) { - var valid = false; - if (angular.isUndefined(rawValue) || rawValue === '') { - valid = true; - } else if (unmaskedValue) { - valid = (unmaskedValue.length === 10); - } - ctrl.$setValidity('invalidPhoneNumber', validPhoneNumber); - ctrl.$setValidity('mask', valid); - return valid; - }; - var handleKeyup = function (evt) { - - if (evt && evt.keyCode === keymap.KEY.SHIFT) { - return; - } - - var index, formattedNumber; - if (ctrl.$modelValue) { - formattedNumber = ctrl.$modelValue; - } else { - formattedNumber = iElement.val(); - } - if (!formattedNumber.length && currentKey === '') { - return; - } - var maskLength, inputNumbers, maskArray, tempArray, maskArrayLength; - tempArray = []; - maskArray = mask.split(""); - maskArrayLength = maskArray.length; - maskLength = formattedNumber.substring(0, mask.length); - inputNumbers = formattedNumber.replace(/[^0-9]/g, "").split(""); - for (index = 0; index < maskArrayLength; index++) { - tempArray.push(maskArray[index] === "_" ? inputNumbers.shift() : maskArray[index]); - if (inputNumbers.length === 0) { - break; - } - } - formattedNumber = tempArray.join(""); - if (formattedNumber === '(') { - formattedNumber = ''; - } - - if ( (angular.isDefined(evt) && evt.which) && currentKey !== '') { - if (maskArray[0] === currentKey && formattedNumber === '') { - formattedNumber = '('; - } else if (evt.which === keymap.KEY.SPACE && currentKey === ' ') { - formattedNumber = formattedNumber + ') '; - } else if (maskArray[0] === currentKey && formattedNumber === '') { - formattedNumber = formattedNumber + currentKey; - } else if (maskArray[formattedNumber.length] === currentKey) { - formattedNumber = formattedNumber + currentKey; - } - currentKey = ''; - } - - ctrl.$setViewValue(formattedNumber); - ctrl.$render(); - return formattedNumber; - }; - - - // since we are only allowing 0-9, why even let the keypress go forward? - // also added in delete... in case they want to delete :) - var handlePress = function (e) { - if (e.which) { - if ((e.which < 48 || e.which > 57) && (e.which < 96 || e.which > 105)) { - if (e.which !== keymap.KEY.BACKSPACE && e.which !== keymap.KEY.TAB && e.which !== keymap.KEY.DELETE && e.which !== keymap.KEY.ENTER && e.which !== keymap.KEY.LEFT && e.which !== keymap.KEY.RIGHT && - // Allow: Ctrl+V/v - (!(e.ctrlKey) && (e.which !== '118' || e.which !== '86')) && - // Allow: Ctrl+C/c - (!(e.ctrlKey) && (e.which !== '99' || e.which !== '67')) && - // Allow: Ctrl+X/x - (!(e.ctrlKey) && (e.which !== '120' || e.which !== '88'))) { - e.preventDefault ? e.preventDefault() : e.returnValue = false; - iElement.attr("aria-label", "Only numbers are allowed"); - validPhoneNumber = false; - } - } else { - iElement.removeAttr("aria-label"); - validPhoneNumber = true; - } - - setCurrentKey(e); - } - scope.$apply(); - }; - // i moved this out because i thought i might need focus as well.. - // to handle setting the model as the view changes - var parser = function (fromViewValue) { - var letters = /^[A-Za-z]+$/; - var numbers = /^[0-9]+$/; - if (angular.isUndefined(fromViewValue) || fromViewValue === '') { - validPhoneNumber = true; - } else { - if (fromViewValue.match(letters)) { - validPhoneNumber = false; - } - if (fromViewValue.match(numbers)) { - validPhoneNumber = true; - } - } - var clean = ""; - if (fromViewValue && fromViewValue.length > 0) { - clean = fromViewValue.replace(/[^0-9]/g, ''); - } - checkValidity(clean, fromViewValue); - return clean; - }; - - //to handle reading the model and formatting it - var formatter = function (fromModelView) { - var input = ''; - checkValidity(fromModelView); - if (fromModelView) { - input = handleKeyup(); - } - return input; - }; - - var setCurrentKey = function (e) { - switch (e.which) { - case 189: - case 109: - currentKey = '-'; - break; - case 190: - case 110: - currentKey = '.'; - break; - case 57: - if (e.shiftKey === true) { - currentKey = '('; - } - break; - case 48: - if (e.shiftKey === true) { - currentKey = ')'; - } - break; - case 32: - currentKey = ' '; - break; - } - }; - - if (angular.isDefined(scope.ngModel)) { - parser(scope.ngModel); - } - - ctrl.$parsers.push(parser); - ctrl.$formatters.push(formatter); - iElement.bind('keyup', handleKeyup); - iElement.bind('keydown', handlePress); - } - }; -}]); -/** - * @ngdoc directive - * @name Template.att:Profile Blocks - * - * @description - * - * @example - *
    - - - - -
    - * - */ - -angular.module('b2b.att.profileBlockTemplate', []) - - - -/** - * @ngdoc directive - * @name Layouts.att:profileCard - * - * @description - * - * - * @usage - * - * - * @example -
    - - - - -
    - */ - -angular.module('b2b.att.profileCard', ['b2b.att']) -.constant('profileStatus',{ - status: { - ACTIVE: { - status: "Active", - color: "green" - }, - DEACTIVATED: { - status: "Deactivated", - color: "red" - }, - LOCKED: { - status: "Locked", - color: "red" - }, - IDLE: { - status: "Idle", - color: "yellow" - }, - PENDING: { - status: "Pending", - color: "blue" - } - }, - role: "COMPANY ADMINISTRATOR" - -}) -.directive('b2bProfileCard',['$http','$q','profileStatus', function($http,$q,profileStatus) { - return { - restrict: 'EA', - replace: 'true', - templateUrl: function(element, attrs){ - if(!attrs.addUser){ - return 'b2bTemplate/profileCard/profileCard.html'; - } - else{ - return 'b2bTemplate/profileCard/profileCard-addUser.html'; - } - }, - scope: { - profile:'=', - characterLimit: '@' - }, - link: function(scope, elem, attr){ - scope.characterLimit = parseInt(attr.characterLimit, 10) || 25; - scope.shouldClip = function(str) { - return str.length > scope.characterLimit; - }; - - scope.showEmailTooltip = false; - - scope.image=true; - function isImage(src) { - var deferred = $q.defer(); - var image = new Image(); - image.onerror = function() { - deferred.reject(false); - }; - image.onload = function() { - deferred.resolve(true); - }; - if(src !== undefined && src.length>0 ){ - image.src = src; - } else { - deferred.reject(false); - } - return deferred.promise; - } - if(!attr.addUser){ - scope.image=false; - isImage(scope.profile.img).then(function(img) { - scope.image=img; - }); - var splitName=(scope.profile.name).split(' '); - scope.initials=''; - for(var i=0;i - * - * @usage - * See demo section - * - * @param {boolean} refreshRadioGroup - A trigger that recalculates and updates the accessibility roles on radios in a group. - * - * @example -
    - HTML + AngularJS - - - - -
    - */ -angular.module('b2b.att.radios', ['b2b.att.utilities']) -.directive('b2bRadioGroupAccessibility', ['$timeout', 'b2bUserAgent', function($timeout, b2bUserAgent) { - return { - restrict: "A", - scope: { - refreshRadioGroup: "=", - }, - link: function(scope, ele, attr) { - - var roleRadioElement, radioProductSelectElement, radioInputTypeElement; - - $timeout(calculateNumberOfRadio); - - scope.$watch('refreshRadioGroup', function(value) { - if (value === true) { - addingRoleAttribute(); - $timeout(calculateNumberOfRadio); - scope.refreshRadioGroup = false; - } else { - return; - } - }) - - - function calculateNumberOfRadio() { - roleRadioElement = ele[0].querySelectorAll('[role="radio"]'); - - radioProductSelectElement = ele[0].querySelectorAll('[role="radiogroup"] li.radio-box'); - - radioInputTypeElement = ele[0].querySelectorAll('input[type="radio"]'); - - for (var i = 0; i < radioInputTypeElement.length; i++) { - var isChecked = radioInputTypeElement[i].checked ? 'true' : 'false'; - var isDisabled = radioInputTypeElement[i].disabled ? 'true' : 'false'; - var numOfx = i + 1 + ' of ' + radioInputTypeElement.length; - angular.element(roleRadioElement[i]).attr({ - 'aria-checked': isChecked, - 'aria-disabled': isDisabled, - 'data-opNum': numOfx - }); - if (b2bUserAgent.notMobile()) { - angular.element(roleRadioElement[i]).removeAttr("role"); - } - - if (radioProductSelectElement.length) { - isChecked === 'true' ? angular.element(radioProductSelectElement[i]).addClass('active') : angular.element(radioProductSelectElement[i]).removeClass('active'); - } - - if (/Android/i.test(navigator.userAgent)) { - angular.element(roleRadioElement[i]).append('. ' + numOfx + '.'); - } - - - angular.element(radioInputTypeElement[i]).bind('click', radioStateChangeonClick); - - } - } - - function addingRoleAttribute() { - for (var i = 0; i < radioInputTypeElement.length; i++) { - if (b2bUserAgent.notMobile()) { - angular.element(roleRadioElement[i]).attr("role", "radio"); - } - } - } - - function radioStateChangeonClick() { - for (var i = 0; i < radioInputTypeElement.length; i++) { - var isChecked = radioInputTypeElement[i].checked ? 'true' : 'false'; - var isDisabled = radioInputTypeElement[i].disabled ? 'true' : 'false'; - if (radioProductSelectElement.length) { - isChecked === 'true' ? angular.element(radioProductSelectElement[i]).addClass('active') : angular.element(radioProductSelectElement[i]).removeClass('active'); - } - angular.element(roleRadioElement[i]).attr({ - 'aria-checked': isChecked, - 'aria-disabled': isDisabled - }); - } - - } - } - } - -}]); - -/** - * @ngdoc directive - * @name Forms.att:searchField - * - * @description - * - * - * @usage - *
    - * - * @example -
    - - - - -
    - */ - -angular.module('b2b.att.searchField', ['b2b.att.utilities', 'b2b.att.position']) - .filter('b2bFilterInput', [function() { - return function(list, str, keyArray, displayListKey, isContainsSearch, searchSeperator) { - var res = []; - var searchLabel; - var searchCondition; - var conditionCheck = function(searchSeperator, listItem, displayListKey, splitString) { - var displayTitle = null; - if (splitString) { - for (var i = 0; i < displayListKey.length; i++) { - if (i <= 0) { - displayTitle = listItem[displayListKey[i]].toLowerCase().indexOf(splitString[i].toLowerCase()) > -1; - } else { - displayTitle = (splitString[i]) ? displayTitle && listItem[displayListKey[i]].toLowerCase().indexOf(splitString[i].toLowerCase().trim()) > -1 : displayTitle; - } - } - } else { - angular.forEach(displayListKey, function(value) { - if (!displayTitle) { - displayTitle = listItem[value]; - } else { - displayTitle = displayTitle + (listItem[value] ? searchSeperator + ' ' + listItem[value] : ''); - } - }); - } - return displayTitle; - } - angular.forEach(list, function(listItem) { - var splitString = str.indexOf(searchSeperator) > -1 ? str.split(searchSeperator) : false; - var displayList = conditionCheck(searchSeperator, listItem, displayListKey, splitString) - for (var i = 0; i < keyArray.length; i++) { - searchLabel = keyArray[i]; - if (listItem[searchLabel]) { - if (isContainsSearch) { - var displaySearchList = listItem[searchLabel].toLowerCase().indexOf(str.toLowerCase()) > -1; - if (splitString.length > 1) { - displaySearchList = (splitString.length <= keyArray.length) ? displayList : false; - } - searchCondition = displaySearchList; - } else { - searchCondition = listItem[searchLabel].match(new RegExp('^' + str, 'gi')); - } - if (searchCondition) { - res.push({ - 'title': conditionCheck(searchSeperator, listItem, displayListKey), - 'valueObj': listItem - }); - break; - } - } - } - }); - return res; - }; - }]).directive('b2bSearchField', ['$filter', 'b2bFilterInputFilter', 'keymap', '$documentBind', '$isElement', '$document', 'events', '$timeout', function($filter, b2bFilterInput, keymap, $documentBind, $isElement, $document, events, $timeout) { - return { - restrict: 'A', - scope: { - dataList: '=dropdownList', - onClickCallback: '&', - inputModel: '=', - configObj: '=', - objModel: '=', - inputDeny: '=?', - disabled: '=?' - }, - replace: true, - templateUrl: 'b2bTemplate/searchField/searchField.html', - controller: ['$scope', function($scope) { - this.searchKeyArray = []; - if ($scope.configObj.searchKeys) { - this.searchKeyArray = $scope.configObj.searchKeys; - } - if (angular.isUndefined($scope.disabled)) { - $scope.disabled = false; - } - this.triggerInput = function(searchString) { - $scope.originalInputModel = searchString; - if (searchString === '') { - $scope.currentIndex = -1; - $scope.filterList = []; - $scope.showListFlag = false; - } else if (searchString !== '' && !$scope.isFilterEnabled) { - $scope.filterList = $filter('b2bFilterInput')($scope.dataList, searchString, this.searchKeyArray, $scope.configObj.displayListDataKey, $scope.configObj.isContainsSearch, $scope.configObj.searchSeperator); - $scope.showListFlag = true; - } - }; - this.denyRegex = function() { - return $scope.inputDeny; - }; - }], - link: function(scope, elem) { - scope.isFilterEnabled = false; - scope.showListFlag = false; - scope.currentIndex = -1; - scope.setCurrentIdx = function(idx) { - scope.currentIndex = idx; - if (idx > -1) { - scope.inputModel = scope.filterList[idx].title; - scope.objModel = scope.filterList[idx]; - } - }; - scope.isActive = function(index, dropdownLength) { - scope.dropdownLength = dropdownLength; - return scope.currentIndex === index; - }; - scope.selectItem = function(idx) { - scope.setCurrentIdx(idx); - scope.onClickCallback({ - value: scope.inputModel, - objValue: scope.objModel - }); - scope.showListFlag = false; - $timeout(function() { - elem.find('div').find('input')[0].focus(); - }, 150); - }; - scope.startSearch = function() { - scope.onClickCallback({ - value: scope.inputModel, - objValue: scope.objModel - }); - }; - scope.selectPrev = function() { - if (scope.currentIndex > 0 && scope.filterList.length > 0) { - scope.currentIndex = scope.currentIndex - 1; - scope.setCurrentIdx(scope.currentIndex); - } else if (scope.currentIndex === 0) { - scope.currentIndex = scope.currentIndex - 1; - scope.inputModel = scope.originalInputModel; - scope.isFilterEnabled = true; - } - }; - scope.selectNext = function() { - if (scope.currentIndex < scope.configObj.noOfItemsDisplay - 1) { - if (scope.currentIndex < scope.filterList.length - 1) { - scope.currentIndex = scope.currentIndex + 1; - scope.setCurrentIdx(scope.currentIndex); - } - } - }; - scope.selectCurrent = function() { - scope.selectItem(scope.currentIndex); - }; - scope.selectionIndex = function(e) { - switch (e.keyCode) { - case keymap.KEY.DOWN: - events.preventDefault(e); - scope.isFilterEnabled = true; - scope.selectNext(); - break; - case keymap.KEY.UP: - events.preventDefault(e); - scope.isFilterEnabled = true; - scope.selectPrev(); - break; - case keymap.KEY.ENTER: - events.preventDefault(e); - scope.isFilterEnabled = true; - scope.selectCurrent(); - break; - case keymap.KEY.ESC: - events.preventDefault(e); - scope.isFilterEnabled = false; - scope.showListFlag = false; - scope.inputModel = ''; - break; - default: - scope.isFilterEnabled = false; - break; - } - if (elem[0].querySelector('.filtercontainer')) { - elem[0].querySelector('.filtercontainer').scrollTop = (scope.currentIndex - 1) * 35; - } - }; - scope.$watch('filterList', function(newVal, oldVal) { - if (newVal !== oldVal) { - scope.currentIndex = -1; - } - }); - scope.blurInput = function() { - $timeout(function() { - scope.showListFlag = false; - }, 150); - }; - var outsideClick = function(e) { - var isElement = $isElement(angular.element(e.target), elem.find('ul').eq(0), $document); - if (!isElement && document.activeElement.tagName.toLowerCase() !== 'input') { - scope.showListFlag = false; - scope.$apply(); - } - }; - $documentBind.click('showListFlag', outsideClick, scope); - } - }; - }]) - .directive('b2bSearchInput', [function() { - return { - restrict: 'A', - require: ['ngModel', '^b2bSearchField'], - link: function(scope, elem, attr, ctrl) { - var ngModelCtrl = ctrl[0]; - var attSearchBarCtrl = ctrl[1]; - var REGEX = ctrl[1].denyRegex(); - var parser = function(viewValue) { - attSearchBarCtrl.triggerInput(viewValue); - return viewValue; - }; - ngModelCtrl.$parsers.push(parser); - - if (REGEX !== undefined || REGEX !== '') { - elem.bind('input', function() { - var inputString = ngModelCtrl.$viewValue && ngModelCtrl.$viewValue.replace(REGEX, ''); - if (inputString !== ngModelCtrl.$viewValue) { - ngModelCtrl.$setViewValue(inputString); - ngModelCtrl.$render(); - scope.$apply(); - } - }); - } - } - }; - }]); - -/** - * @ngdoc directive - * @name Buttons, links & UI controls.att:Seek bar - * - * @description - * - * - * @usage - * Horizontal Seek Bar - * - - * Vertical Seek Bar - * - * - * @example -
    - HTML + AngularJS - - - - -
    - */ - -angular.module('b2b.att.seekBar', ['b2b.att.utilities','b2b.att.position']) - .constant('b2bSeekBarConfig', { - 'min': 0, - 'max': 100, - 'step': 1, - 'skipInterval': 1 - }) - .directive('b2bSeekBar', ['$documentBind', 'events', 'b2bSeekBarConfig', 'keymap', '$compile', function($documentBind, events, b2bSeekBarConfig, keymap, $compile) { - return { - restrict: 'AE', - replace: true, - require: 'ngModel', - templateUrl: 'b2bTemplate/seekBar/seekBar.html', - scope: { - onDragEnd: '&?', - onDragInit: '&?' - }, - link: function(scope, elm, attr, ngModelCtrl) { - scope.isDragging = false; - scope.verticalSeekBar = false; - var min; - var max; - var step = b2bSeekBarConfig.step; - var skipInterval = b2bSeekBarConfig.skipInterval; - var knob = angular.element(elm[0].querySelector('.b2b-seek-bar-knob-container')); - var seekBarKnob = angular.element(knob[0].querySelector('.b2b-seek-bar-knob')); - var trackContainer = angular.element(elm[0].querySelector('.b2b-seek-bar-track-container')); - var trackFill = angular.element(elm[0].querySelector('.b2b-seek-bar-track-fill')); - var trackContainerRect = {}; - var axisPosition; - var trackFillOrderPositioning; - - if (angular.isDefined(attr.vertical)) { - scope.verticalSeekBar = true; - axisPosition = "clientY"; - } - else { - scope.verticalSeekBar = false; - axisPosition = "clientX"; - } - var getValidStep = function(val) { - val = parseFloat(val); - // in case $modelValue came in string number - if (angular.isNumber(val)) { - val = Math.round((val - min) / step) * step + min; - return Math.round(val * 1000) / 1000; - } - }; - - var getPositionToPercent = function(x) { - if (scope.verticalSeekBar) { - return Math.max(0, Math.min(1, (trackContainerRect.bottom - x) / (trackFillOrderPositioning))); - } - else { - return Math.max(0, Math.min(1, (x - trackContainerRect.left) / (trackFillOrderPositioning))); - } - }; - - var getPercentToValue = function(percent) { - return (min + percent * (max - min)); - }; - - var getValueToPercent = function(val) { - return (val - min) / (max - min); - }; - - var getValidMinMax = function(val) { - return Math.max(min, Math.min(max, val)); - }; - - var updateTrackContainerRect = function() { - trackContainerRect = trackContainer[0].getBoundingClientRect(); - if (scope.verticalSeekBar) { - if (!trackContainerRect.height) { - trackFillOrderPositioning = trackContainer[0].scrollHeight; - } else { - trackFillOrderPositioning = trackContainerRect.height; - } - } - else { - if (!trackContainerRect.width) { - trackFillOrderPositioning = trackContainer[0].scrollWidth; - } else { - trackFillOrderPositioning = trackContainerRect.width; - } - - } - - }; - - var updateKnobPosition = function(percent) { - var percentStr = (percent * 100) + '%'; - if (scope.verticalSeekBar) { - knob.css('bottom', percentStr); - trackFill.css('height', percentStr); - } - else { - knob.css('left', percentStr); - trackFill.css('width', percentStr); - } - }; - - var modelRenderer = function() { - if (isNaN(ngModelCtrl.$viewValue)) { - ngModelCtrl.$viewValue = ngModelCtrl.$modelValue || min; - } - - var viewVal = ngModelCtrl.$viewValue; - scope.currentModelValue = viewVal; - - //wait for min, max and step to be set then only update UI to avoid NaN on percent calculation - if ((min || min === 0) && max && step) { - updateKnobPosition(getValueToPercent(viewVal)); - } - }; - - var setModelValue = function(val) { - scope.currentModelValue = getValidMinMax(getValidStep(val)); - ngModelCtrl.$setViewValue(scope.currentModelValue); - }; - - var updateMin = function(val) { - min = parseFloat(val); - if(isNaN(min)){ - min = b2bSeekBarConfig.min; - } - modelRenderer(); - }; - - var updateMax = function(val) { - max = parseFloat(val); - if(isNaN(max)){ - max = b2bSeekBarConfig.max; - } - modelRenderer(); - }; - - var updateStep = function(val) { - step = parseFloat(val); - if (!attr['skipInterval']) { - skipInterval = step; - } - }; - - var updateSkipInterval = function(val) { - skipInterval = step * Math.ceil(val / (step!==0?step:1)); - }; - - angular.isDefined(attr.min) ? attr.$observe('min', updateMin) : updateMin(b2bSeekBarConfig.min); - angular.isDefined(attr.max) ? attr.$observe('max', updateMax) : updateMax(b2bSeekBarConfig.max); - if (angular.isDefined(attr.step)) { - attr.$observe('step', updateStep); - } - if (angular.isDefined(attr.skipInterval)) { - attr.$observe('skipInterval', updateSkipInterval); - } - scope.currentModelValue = getValidMinMax(getValidStep(min)); - var onMouseDown = function(e) { - switch (e.which) { - case 1: - // left mouse button - break; - case 2: - case 3: - // right or middle mouse button - return; - } - ; - - scope.isDragging = true; - seekBarKnob[0].focus(); - updateTrackContainerRect(); - if (attr['onDragInit']) { - scope.onDragInit(); - } - events.stopPropagation(e); - events.preventDefault(e); - scope.$apply(function() { - setModelValue(getPercentToValue(getPositionToPercent(e[axisPosition]))); - }); - }; - - var onMouseUp = function() { - - if (attr['onDragEnd']) { - scope.onDragEnd(); - } - scope.isDragging = false; - scope.$digest(); - }; - - var onMouseMove = function(e) { - if (scope.isDragging) { - events.stopPropagation(e); - events.preventDefault(e); - - scope.$apply(function() { - setModelValue(getPercentToValue(getPositionToPercent(e[axisPosition]))); - }); - } - }; - - function onKeyDown(e) { - if (!(e.keyCode)) { - e.keyCode = e.which; - } - var updateStep; - switch (e.keyCode) { - case keymap.KEY.LEFT: - if (!scope.verticalSeekBar) { - updateStep = -skipInterval; - } - break; - case keymap.KEY.RIGHT: - if (!scope.verticalSeekBar) { - updateStep = skipInterval; - } - break; - case keymap.KEY.UP: - if (scope.verticalSeekBar) { - updateStep = skipInterval; - } - break; - case keymap.KEY.DOWN: - if (scope.verticalSeekBar) { - updateStep = -skipInterval; - } - break; - default: - return; - } - - if (updateStep) { - events.stopPropagation(e); - events.preventDefault(e); - scope.$apply(function() { - setModelValue(ngModelCtrl.$viewValue + updateStep); - }); - if (attr['onDragEnd']) { - scope.onDragEnd(); - } - } - } - - elm.on('keydown', onKeyDown); - elm.on('mousedown', onMouseDown); - - $documentBind.event('mousemove', 'isDragging', onMouseMove, scope, true, 0); - $documentBind.event('mouseup', 'isDragging', onMouseUp, scope, true, 0); - - ngModelCtrl.$render = function() { - if (!scope.isDragging) { - modelRenderer(); - } - }; - ngModelCtrl.$viewChangeListeners.push(modelRenderer); - ngModelCtrl.$formatters.push(getValidMinMax); - ngModelCtrl.$formatters.push(getValidStep); - } - }; - }]); -/** - * @ngdoc directive - * @name Forms.att:selectorModule - * - * @description - * - * - * @usage - * - * - * - * - * - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.selectorModule', ['b2b.att.dropdowns']); -/** - * @ngdoc directive - * @name Layouts.att:separators - * - * @description - * - * - * @usage - - * - * @example - *
    - HTML + AngularJS - - - - -
    - * - */ - -angular.module('b2b.att.separators', []); -/** - * @ngdoc directive - * @name Buttons, links & UI controls.att:slider - * - * @description - * - * - * @usage - * - * - * @example -
    - HTML + AngularJS - - - - -
    - */ - -angular.module('b2b.att.slider', ['b2b.att.utilities']) - .constant('SliderConfig', { - 'min': 0, - 'max': 100, - 'step': 1, - 'skipInterval': 1 - }) - .directive('b2bSlider', ['$documentBind', 'SliderConfig', 'keymap', '$compile', '$log', function($documentBind, SliderConfig, keymap, $compile, $log) { - return { - restrict: 'AE', - replace: true, - require: 'ngModel', - templateUrl: 'b2bTemplate/slider/slider.html', - scope: { - onDragEnd: '&?', - onDragInit: '&?', - trackFillColor: '=?', - preAriaLabel: '=?', - postAriaLabel: '=?', - onRenderEnd: '&?', - sliderSnapPoints: '=?', - customAriaLabel: '=?', - labelId: '@?' - }, - link: function(scope, elm, attr, ngModelCtrl) { - scope.isDragging = false; - scope.verticalSlider = false; - var min; - var max; - var step = SliderConfig.step; - var skipInterval = SliderConfig.skipInterval; - var knob = angular.element(elm[0].querySelector('.slider-knob-container')); - var sliderKnob = angular.element(knob[0].querySelector('.slider-knob')); - var trackContainer = angular.element(elm[0].querySelector('.slider-track-container')); - var trackFill = angular.element(elm[0].querySelector('.slider-track-fill')); - var trackContainerRect = {}; - var axisPosition = "clientX"; - var trackFillOrderPositioning; - - //Forcefully disabling the vertical Slider code. - if (angular.isDefined(attr.vertical)) { - scope.verticalSlider = true; - axisPosition = "clientY"; - } - - if (angular.isDefined(scope.noAriaLabel) && scope.noAriaLabel !== '') { - $log.warn('no-aria-label has been deprecated. This will be removed in v0.6.0.'); - } - if (angular.isDefined(scope.preAriaLabel) && scope.preAriaLabel !== '') { - $log.warn('pre-aria-label has been deprecated. Please use label-id instead. This will be removed in v0.6.0.'); - } - if (angular.isDefined(scope.customAriaLabel) && scope.customAriaLabel !== '') { - $log.warn('custom-aria-label has been deprecated. Please use label-id and post-aria-label instead. This will be removed in v0.6.0.'); - } - - var binarySearchNearest = function (num, arr) { - var mid; - var lo = 0; - var hi = arr.length - 1; - - while (hi - lo > 1) { - mid = Math.floor((lo + hi) / 2); - if (arr[mid] < num) { - lo = mid; - } else { - hi = mid; - } - } - if (num - arr[lo] < arr[hi] - num) { - return arr[lo]; - } - return arr[hi]; - }; - - var getValidStep = function(val) { - val = parseFloat(val); - // in case $modelValue came in string number - if (!isNaN(val)) { - - if(attr['sliderSnapPoints'] && scope.sliderSnapPoints.length > 0) { - val = binarySearchNearest(val, scope.sliderSnapPoints); - } - else { - val = Math.round((val - min) / step) * step + min; - } - - return Math.round(val * 1000) / 1000; - } - }; - - var getPositionToPercent = function(x) { - if (scope.verticalSlider) { - return Math.max(0, Math.min(1, (trackContainerRect.bottom - x) / (trackFillOrderPositioning))); - } - else { - return Math.max(0, Math.min(1, (x - trackContainerRect.left) / (trackFillOrderPositioning))); - } - }; - - var getPercentToValue = function(percent) { - return (min + percent * (max - min)); - }; - - var getValueToPercent = function(val) { - return (val - min) / (max - min); - }; - - var getValidMinMax = function(val) { - return Math.max(min, Math.min(max, val)); - }; - - var updateTrackContainerRect = function() { - trackContainerRect = trackContainer[0].getBoundingClientRect(); - if (scope.verticalSlider) { - if (!trackContainerRect.height) { - trackFillOrderPositioning = trackContainer[0].scrollHeight; - } else { - trackFillOrderPositioning = trackContainerRect.height; - } - } - else { - if (!trackContainerRect.width) { - trackFillOrderPositioning = trackContainer[0].scrollWidth; - } else { - trackFillOrderPositioning = trackContainerRect.width; - } - - } - - }; - - var updateKnobPosition = function(percent) { - var percentStr = (percent * 100) + '%'; - if (scope.verticalSlider) { - knob.css('bottom', percentStr); - trackFill.css('height', percentStr); - } - else { - knob.css('left', percentStr); - trackFill.css('width', percentStr); - } - }; - - var modelRenderer = function() { - - if(attr['disabled']){ - return; - } - - if (isNaN(ngModelCtrl.$viewValue)) { - ngModelCtrl.$viewValue = ngModelCtrl.$modelValue || min; - } - - var viewVal = ngModelCtrl.$viewValue; - scope.currentModelValue = viewVal; - - //wait for min, max and step to be set then only update UI to avoid NaN on percent calculation - if ((min || min === 0) && max && step) { - updateKnobPosition(getValueToPercent(viewVal)); - } - }; - - var setModelValue = function(val) { - scope.currentModelValue = getValidMinMax(getValidStep(val)); - ngModelCtrl.$setViewValue(scope.currentModelValue); - }; - - var updateMin = function(val) { - min = parseFloat(val); - if(isNaN(min)){ - min = SliderConfig.min; - } - scope.min = min; - modelRenderer(); - }; - - var updateMax = function(val) { - max = parseFloat(val); - if(isNaN(max)){ - max = SliderConfig.max; - } - scope.max = max; - modelRenderer(); - }; - - var updateStep = function(val) { - step = parseFloat(val); - if (!attr['skipInterval']) { - skipInterval = step; - } - }; - - var updateSkipInterval = function(val) { - skipInterval = step * Math.ceil(val / (step!==0?step:1)); - }; - - angular.isDefined(attr.min) ? attr.$observe('min', updateMin) : updateMin(SliderConfig.min); - angular.isDefined(attr.max) ? attr.$observe('max', updateMax) : updateMax(SliderConfig.max); - if (angular.isDefined(attr.step)) { - attr.$observe('step', updateStep); - } - if (angular.isDefined(attr.skipInterval)) { - attr.$observe('skipInterval', updateSkipInterval); - } - scope.currentModelValue = getValidMinMax(getValidStep(min)); - var onMouseDown = function(e) { - - if(attr['disabled']){ - return; - } - - switch (e.which) { - case 1: - // left mouse button - break; - case 2: - case 3: - // right or middle mouse button - return; - } - - scope.isDragging = true; - sliderKnob[0].focus(); - updateTrackContainerRect(); - if (attr['onDragInit']) { - scope.onDragInit(); - } - e.stopPropagation(); - e.preventDefault(); - scope.$apply(function() { - setModelValue(getPercentToValue(getPositionToPercent(e[axisPosition]))); - }); - }; - - var onMouseUp = function() { - - if (attr['onDragEnd']) { - scope.onDragEnd(); - } - scope.isDragging = false; - scope.$digest(); - }; - - var onMouseMove = function(e) { - if (scope.isDragging) { - e.stopPropagation(); - e.preventDefault(); - - scope.$apply(function() { - setModelValue(getPercentToValue(getPositionToPercent(e[axisPosition]))); - }); - } - }; - - function onKeyDown(e) { - if (!(e.keyCode)) { - e.keyCode = e.which; - } - var updateStep; - switch (e.keyCode) { - case keymap.KEY.DOWN: - case keymap.KEY.LEFT: - if(attr['sliderSnapPoints'] && scope.sliderSnapPoints.length > 0) { - var currentIndex = scope.sliderSnapPoints.indexOf(ngModelCtrl.$viewValue); - if (currentIndex > 0) { - currentIndex--; - } - updateStep = scope.sliderSnapPoints[currentIndex]; - } - else { - updateStep = ngModelCtrl.$viewValue - skipInterval; - } - break; - case keymap.KEY.UP: - case keymap.KEY.RIGHT: - if(attr['sliderSnapPoints'] && scope.sliderSnapPoints.length > 0) { - var currentIndex = scope.sliderSnapPoints.indexOf(ngModelCtrl.$viewValue); - if (currentIndex < scope.sliderSnapPoints.length-1) { - currentIndex++; - } - updateStep = scope.sliderSnapPoints[currentIndex]; - } - else { - updateStep = ngModelCtrl.$viewValue + skipInterval; - } - break; - case keymap.KEY.END: - if(attr['sliderSnapPoints'] && scope.sliderSnapPoints.length > 0) { - currentIndex = scope.sliderSnapPoints.length-1; - updateStep = scope.sliderSnapPoints[currentIndex]; - } else { - setModelValue(scope.max); - } - e.preventDefault(); - e.stopPropagation(); - break; - case keymap.KEY.HOME: - if(attr['sliderSnapPoints'] && scope.sliderSnapPoints.length > 0) { - currentIndex = 0; - updateStep = scope.sliderSnapPoints[currentIndex]; - } else { - setModelValue(scope.min); - } - e.preventDefault(); - e.stopPropagation(); - break; - default: - return; - } - - if (angular.isNumber(updateStep) && !attr['disabled']) { - e.stopPropagation(); - e.preventDefault(); - scope.$apply(function() { - setModelValue(updateStep); - }); - if (attr['onDragEnd']) { - scope.onDragEnd(); - } - } - } - - elm.on('keydown', onKeyDown); - elm.on('mousedown', onMouseDown); - - $documentBind.event('mousemove', 'isDragging', onMouseMove, scope, true, 0); - $documentBind.event('mouseup', 'isDragging', onMouseUp, scope, true, 0); - - attr.$observe('disabled', function (disabled) { - if (disabled) { - sliderKnob.removeAttr('tabindex'); - } else { - sliderKnob.attr('tabindex', '0'); - disabled = false; - } - - elm.toggleClass("slider-disabled", disabled); - - if (angular.isDefined(attr.hideDisabledKnob)) { - scope.hideKnob = disabled; - } - }); - - ngModelCtrl.$render = function() { - if (!scope.isDragging) { - modelRenderer(); - if (attr['onRenderEnd'] && !attr['disabled']) { - scope.onRenderEnd({currentModelValue: scope.currentModelValue}); - } - } - }; - ngModelCtrl.$viewChangeListeners.push(modelRenderer); - ngModelCtrl.$formatters.push(getValidMinMax); - ngModelCtrl.$formatters.push(getValidStep); - } - }; - }]); -/** - * @ngdoc directive - * @name Forms.att:spinButton - * - * @param {String} spin-button-id - An ID for the input field - * @param {Integer} min - Minimum value for the input - * @param {Integer} max - Maximum value for the input - * @param {Integer} step - Value by which input field increments or decrements on up/down arrow keys - * @param {Integer} page-step - Value by which input field increments or decrements on page up/down keys - * @param {boolean} input-model-key - Default value for input field - * @param {boolean} disabled-flag - A boolean that triggers directive once the min or max value has reached - * - * @description - * - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.spinButton', ['b2b.att.utilities']) - .constant('b2bSpinButtonConfig', { - min: 1, - max: 10, - step: 1, - pageStep: 10, - inputModelKey: 'value', - disabledFlag: false - }) - .directive('b2bSpinButton', ['keymap', 'b2bSpinButtonConfig', 'b2bUserAgent', function (keymap, b2bSpinButtonConfig, userAgent) { - return { - restrict: 'EA', - require: '?ngModel', - transclude: false, - replace: true, - scope: { - min: '=min', - max: '=max', - step: '=step', - pageStep: '=pageStep', - spinButtonId: '@', - inputValue: '=ngModel', - inputModelKey: '@', - disabledFlag: "=?" - }, - templateUrl: 'b2bTemplate/spinButton/spinButton.html', - controller: ['$scope', '$element', '$attrs', function (scope, element, attrs) { - - scope.isMobile = userAgent.isMobile(); - scope.notMobile = userAgent.notMobile(); - - scope.min = attrs.min ? scope.min : b2bSpinButtonConfig.min; - scope.max = attrs.max ? scope.max : b2bSpinButtonConfig.max; - scope.step = attrs.step ? scope.step : b2bSpinButtonConfig.step; - scope.pageStep = attrs.pageStep ? scope.pageStep : b2bSpinButtonConfig.pageStep; - scope.inputModelKey = attrs.inputModelKey ? scope.inputModelKey : b2bSpinButtonConfig.inputModelKey; - scope.disabledFlag = attrs.disabledFlag ? scope.disabledFlag : b2bSpinButtonConfig.disabledFlag; - - if (scope.min < 0) { - scope.min = 0; - } - if (scope.max > 999) { - scope.max = 999; - } - - scope.isPlusDisabled = function () { - return (scope.disabledFlag || scope.inputValue[scope.inputModelKey] >= scope.max); - }; - scope.isMinusDisabled = function () { - return (scope.disabledFlag || scope.inputValue[scope.inputModelKey] <= scope.min); - }; - - scope.getValidateInputValue = function (value) { - if (value <= scope.min) { - return scope.min; - } else if (value >= scope.max) { - return scope.max; - } else { - return value; - } - }; - - scope.plus = function () { - scope.inputValue[scope.inputModelKey] = scope.getValidateInputValue(parseInt(scope.inputValue[scope.inputModelKey], 10) + scope.step); - }; - scope.minus = function () { - scope.inputValue[scope.inputModelKey] = scope.getValidateInputValue(parseInt(scope.inputValue[scope.inputModelKey], 10) - scope.step); - }; - scope.pagePlus = function () { - scope.inputValue[scope.inputModelKey] = scope.getValidateInputValue(parseInt(scope.inputValue[scope.inputModelKey], 10) + scope.pageStep); - }; - scope.pageMinus = function () { - scope.inputValue[scope.inputModelKey] = scope.getValidateInputValue(parseInt(scope.inputValue[scope.inputModelKey], 10) - scope.pageStep); - }; - - }], - link: function (scope, elem) { - - if (scope.notMobile) { - angular.element(elem).find('input').attr('aria-live', 'off'); - angular.element(elem).find('input').attr('role', 'spinbutton'); - } - - elem.find('input').bind('keydown', function (e) { - if (e.keyCode === keymap.KEY.UP) { - scope.plus(); - } else if (e.keyCode === keymap.KEY.DOWN){ - scope.minus(); - } else if (e.keyCode === keymap.KEY.HOME) { - scope.inputValue[scope.inputModelKey] = parseInt(scope.min); - } else if (e.keyCode === keymap.KEY.END) { - scope.inputValue[scope.inputModelKey] = parseInt(scope.max); - } else if (e.keyCode === keymap.KEY.PAGE_UP) { - scope.pagePlus(); - } else if (e.keyCode === keymap.KEY.PAGE_DOWN) { - scope.pageMinus(); - } - scope.$apply(); - }); - - elem.find('input').bind('keyup', function () { - if (scope.inputValue[scope.inputModelKey] === null || - scope.inputValue[scope.inputModelKey] === '' || - scope.inputValue[scope.inputModelKey] < scope.min) { - scope.inputValue[scope.inputModelKey] = scope.min; - scope.$apply(); - } else if (angular.isUndefined(scope.inputValue[scope.inputModelKey]) || - scope.inputValue[scope.inputModelKey] > scope.max) { - scope.inputValue[scope.inputModelKey] = scope.max; - scope.$apply(); - } - }); - - scope.focusInputSpinButton = function (evt) { - evt.preventDefault(); - if (scope.notMobile) { - elem[0].querySelector('input').focus(); - } - }; - - } - }; - }]); -/** - * @ngdoc directive - * @name Template.att:Static Route - * - * @description - * - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.staticRouteTemplate', ['b2b.att.utilities']) - -/** - * @ngdoc directive - * @name Progress & usage indicators.att:statusTracker - * - * @scope - * @param {array} statuses - An array of status objects - * @description - * - * - * @usage - * -
    - -
    - - * @example -
    - HTML + AngularJS - - - - -
    - */ - -angular.module('b2b.att.statusTracker', ['b2b.att.utilities']) -.constant('b2bStatusTrackerConfig', { - 'maxViewItems': 3 -}) -.directive('b2bStatusTracker', ['b2bStatusTrackerConfig', function(b2bStatusTrackerConfig) { - return { - restrict: 'EA', - transclude: false, - replace: true, - scope:{ - statuses: '=' - }, - templateUrl: function(scope) { - return 'b2bTemplate/statusTracker/statusTracker.html'; - }, - link: function(scope, element, attr) { - scope.currentViewIndex = 0; - scope.b2bStatusTrackerConfig = b2bStatusTrackerConfig; - - scope.nextStatus = function() { - if (scope.currentViewIndex+1 <= scope.statuses.length) { - scope.currentViewIndex++; - } - }; - scope.previousStatus = function() { - if (scope.currentViewIndex-1 >= 0) { - scope.currentViewIndex--; - } - }; - scope.isInViewport = function(index) { - return (index < scope.currentViewIndex+3 && index >= scope.currentViewIndex); // && index > scope.currentViewIndex-2 - }; - scope.currentStatus = function(index) { - if(index != undefined){ - if(!scope.statuses[index].complete) { - if(index > 0 && scope.statuses[index-1].complete) { - return true; - } else if(index == 0 && !scope.statuses[index].complete){ - return true; - } else { - return false; - } - } - } - }; - } - }; - }]); -/** - * @ngdoc directive - * @name Progress & usage indicators.att:stepTracker - * - * @scope - * @param {array} stepsItemsObject - An array of step objects - * @param {Integer} currenIindex - This indicates the current running step - * @param {Integer} viewportIndex - This is optional. This can used to start the view port rather than 1 item. - * @description - * - * - * @usage - * - * - * - - * @example -
    - HTML + AngularJS - - - - -
    - */ -angular.module('b2b.att.stepTracker', ['b2b.att.utilities']) - .constant('b2bStepTrackerConfig', { - 'maxViewItems': 5 - }) - .directive('b2bStepTracker', ['b2bStepTrackerConfig', function(b2bStepTrackerConfig) { - return { - restrict: 'EA', - transclude: true, - scope:{ - stepsItemsObject:"=", - currentIndex:"=", - viewportIndex:"=?" - }, - templateUrl: 'b2bTemplate/stepTracker/stepTracker.html', - link: function(scope, ele, attr) { - if (angular.isDefined(scope.viewportIndex)) { - scope.currentViewIndex = scope.viewportIndex - 1; - }else{ - scope.currentViewIndex = 0; - } - - scope.b2bStepTrackerConfig = b2bStepTrackerConfig; - scope.nextStatus = function() { - if (scope.currentViewIndex+1 <= scope.stepsItemsObject.length) { - scope.currentViewIndex++; - } - }; - scope.previousStatus = function() { - if (scope.currentViewIndex-1 >= 0) { - scope.currentViewIndex--; - } - }; - scope.isInViewport = function(index) { - return (index < scope.currentViewIndex+b2bStepTrackerConfig.maxViewItems && index >= scope.currentViewIndex); - }; - } - }; - }]); - -/** - * @ngdoc directive - * @name Buttons, links & UI controls.att:switches - * - * @description - * - * - * @usage - * - * - * - * - * - * - * - * - * @example - *
    - HTML + AngularJS - - - - -
    - */ -angular.module('b2b.att.switches', ['b2b.att.utilities']) - .directive('b2bSwitches', ['$compile', '$templateCache', 'keymap', 'events', function ($compile, $templateCache, keymap, events) { - return { - restrict: 'EA', - require: ['ngModel'], - link: function (scope, element, attrs, ctrl) { - var ngModelController = ctrl[0]; - - element.parent().bind("keydown", function (e) { - if (!attrs.disabled && (e.keyCode === keymap.KEY.ENTER || e.keyCode === keymap.KEY.SPACE)) { - events.preventDefault(e); - ngModelController.$setViewValue(!ngModelController.$viewValue); - element.prop("checked", ngModelController.$viewValue); - } - }); - - element.wrap('
    '); - //element.attr("tabindex", -1); - if (navigator.userAgent.match(/iphone/i)){ - element.attr("aria-live", "polite"); - } - else { - element.removeAttr('aria-live'); - } - - var templateSwitch = angular.element($templateCache.get("b2bTemplate/switches/switches.html")); - if (angular.isDefined(attrs.typeSpanish)) { - templateSwitch = angular.element($templateCache.get("b2bTemplate/switches/switches-spanish.html")); - } - - templateSwitch = $compile(templateSwitch)(scope); - element.parent().append(templateSwitch); - - element.bind("focus", function (e) { - element.parent().addClass('focused'); - }); - - element.bind("blur", function (e) { - element.parent().removeClass('focused'); - }); - } - }; - }]); -/** - * @ngdoc directive - * @name Messages, modals & alerts.att:tableMessages - * - * @description - * - * - * @usage - - -

    No Matching Results

    -
    - - - - - - - - - - - - -

    The data is currently loading...

    -
    - - * @example -
    - HTML + AngularJS - - - - -
    - */ -angular.module('b2b.att.tableMessages', []) - .directive('b2bTableMessage', [function() { - return { - restrict: 'AE', - replace: true, - transclude: true, - scope: { - msgType: '=', - onRefreshClick: '&' - }, - templateUrl: 'b2bTemplate/tableMessages/tableMessage.html', - link: function(scope) { - scope.refreshAction = function(evt) { - scope.onRefreshClick(evt); - }; - } - }; - }]); - -/** - * @ngdoc directive - * @name Tabs, tables & accordions.att:tableScrollbar - * - * @description - * - * - * @usage - * - - - - - - ..... - - - - - - ..... - - -
    Id
    1002
    -
    - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.tableScrollbar', []) - .directive('b2bTableScrollbar', ['$timeout', function ($timeout) { - return { - restrict: 'E', - scope: true, - transclude: true, - templateUrl: 'b2bTemplate/tableScrollbar/tableScrollbar.html', - link: function (scope, element, attrs, ctrl) { - var firstThWidth, firstTdWidth, firstColumnWidth, firstColumnHeight, trHeight = 0; - var pxToScroll = ''; - var tableElement = element.find('table'); - var thElements = element.find('th'); - var tdElements = element.find('td'); - var innerContainer = angular.element(element[0].querySelector('.b2b-table-inner-container')); - var outerContainer = angular.element(element[0].querySelector('.b2b-table-scrollbar')); - - scope.disableLeft = true; - scope.disableRight = false; - - if (angular.isDefined(thElements[0])) { - firstThWidth = thElements[0].offsetWidth; - } - if (angular.isDefined(tdElements[0])) { - firstTdWidth = tdElements[0].offsetWidth; - } - firstColumnWidth = (firstThWidth > firstTdWidth) ? firstThWidth : firstTdWidth; - - innerContainer.css({ - 'padding-left': (firstColumnWidth + 2) + 'px' - }); - - angular.forEach(element.find('tr'), function (eachTr, index) { - trObject = angular.element(eachTr); - firstColumn = angular.element(trObject.children()[0]); - - angular.element(firstColumn).css({ - 'margin-left': -(firstColumnWidth + 2) + 'px', - 'width': (firstColumnWidth + 2) + 'px', - 'position': 'absolute' - }); - - trHeight = trObject[0].offsetHeight; - firstColumnHeight = firstColumn[0].offsetHeight; - if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1) { - firstColumnHeight += 1; - } - - if (trHeight !== firstColumnHeight - 1) { - if (trHeight > firstColumnHeight) { - if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1) { - trHeight -= 1; - } - angular.element(firstColumn).css({ - 'height': (trHeight + 1) + 'px' - }); - } else { - angular.element(trObject).css({ - 'height': (firstColumnHeight - 1) + 'px' - }); - } - } - - }); - - pxToScroll = outerContainer[0].offsetWidth - firstColumnWidth; - - scope.scrollLeft = function () { - innerContainer[0].scrollLeft = innerContainer[0].scrollLeft + 20 - pxToScroll; - }; - - scope.scrollRight = function () { - innerContainer[0].scrollLeft = innerContainer[0].scrollLeft + pxToScroll - 20; - }; - - scope.checkScrollArrows = function () { - if (innerContainer[0].scrollLeft == 0) { - scope.disableLeft = true; - } else { - scope.disableLeft = false; - } - - if (((innerContainer[0].offsetWidth - firstColumnWidth) + innerContainer[0].scrollLeft) >= tableElement[0].offsetWidth) { - scope.disableRight = true; - } else { - scope.disableRight = false; - } - }; - - innerContainer.bind('scroll', function () { - $timeout(function () { - scope.checkScrollArrows(); - }, 1); - }); - - } - }; - }]); -/** - * @ngdoc directive - * @name Tabs, tables & accordions.att:tables - * - * @description - * - * - * @usage - * - Table - - - - - - - - - - - - - -
    Header 1Header 2
    - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.tables', ['b2b.att.utilities']) - .constant('b2bTableConfig', { - defaultSortPattern: false, // true for descending & false for ascending - highlightSearchStringClass: 'tablesorter-search-highlight', - zebraStripCutOff: 6, // > zebraStripCutOff - tableBreakpoints: [ // breakpoints are >= min and < max - { - min: 0, - max: 480, - columns: 2 - }, - { - min: 480, - max: 768, - columns: 3 - }, - { - min: 768, - max: 1025, - columns: 5 - }, - { - min: 1025, - max: 1920, - columns: 7 - } - ] - }) - .directive('b2bTable', ['$filter', '$window', 'b2bTableConfig', '$timeout', function ($filter, $window, b2bTableConfig, $timeout) { - return { - restrict: 'EA', - replace: true, - transclude: true, - scope: { - tableData: "=", - viewPerPage: "=", - currentPage: "=", - totalPage: "=", - searchCategory: "=", - searchString: "=", - nextSort: '=' - }, - require: 'b2bTable', - templateUrl: 'b2bTemplate/tables/b2bTable.html', - controller: ['$scope', '$attrs', function ($scope, $attrs) { - this.headers = []; - this.currentSortIndex = null; - this.responsive = $scope.responsive = $attrs.responsive; - this.maxTableColumns = -1; - this.totalTableColums = 0; - this.active = $scope.active = false; - this.responsiveRowScopes = []; - this.hideColumnPriority = []; - this.hiddenColumn = []; - this.setIndex = function (headerScope, priority) { - this.headers.push(headerScope); - if (this.responsive) { - this.totalTableColums++; - if (!isNaN(priority)) { - this.hideColumnPriority[priority] = this.totalTableColums - 1; - } else { - this.hideColumnPriority[this.totalTableColums - 1] = this.totalTableColums - 1; - } - } - return this.totalTableColums - 1; - }; - this.getIndex = function (headerName) { - for (var i = 0; i < this.headers.length; i++) { - if (this.headers[i].headerName === headerName) { - return this.headers[i].index; - } - } - return null; - }; - this.setResponsiveRow = function (responsiveRowScope) { - this.responsiveRowScopes.push(responsiveRowScope); - } - $scope.nextSort = ''; - this.sortData = function (columnIndex, reverse, externalSort) { - if ($scope.$parent && $scope.$parent !== undefined) { - $scope.$parent.columnIndex = columnIndex; - $scope.$parent.reverse = reverse; - } - this.currentSortIndex = columnIndex; - if (externalSort === true) { - if (!reverse) { - $scope.nextSort = 'd' - } else { - $scope.nextSort = 'a' - } - } - $scope.currentPage = 1; - this.resetSortPattern(); - }; - this.getSearchString = function () { - return $scope.searchString; - }; - this.resetSortPattern = function () { - for (var i = 0; i < this.headers.length; i++) { - var currentScope = this.headers[i]; - if (currentScope.index !== this.currentSortIndex) { - currentScope.resetSortPattern(); - } - } - }; - - $scope.$watch('nextSort', function (val) { - if ($scope.$parent && $scope.$parent !== undefined) { - $scope.$parent.nextSort = val; - } - - }); - }], - link: function (scope, elem, attr, ctrl) { - scope.searchCriteria = {}; - scope.tableBreakpoints = attr.tableConfig ? scope.$parent.$eval(attr.tableConfig) : angular.copy(b2bTableConfig.tableBreakpoints); - scope.$watchCollection('tableData', function (value) { - if (value && !isNaN(value.length)) { - scope.totalRows = value.length; - } - }); - scope.$watch('currentPage', function (val) { - if (scope.$parent && scope.$parent !== undefined) { - scope.$parent.currentPage = val; - } - - }); - scope.$watch('viewPerPage', function (val) { - if (scope.$parent && scope.$parent !== undefined) { - scope.$parent.viewPerPage = val; - } - }); - scope.$watch('totalRows', function (val) { - if (scope.$parent && scope.$parent !== undefined) { - if (val > b2bTableConfig.zebraStripCutOff) { - scope.$parent.zebraStripFlag = true; - } else { - scope.$parent.zebraStripFlag = false; - } - } - }); - scope.$watch(function () { - return scope.totalRows / scope.viewPerPage; - }, function (value) { - if (!isNaN(value)) { - scope.totalPage = Math.ceil(value); - scope.currentPage = 1; - } - }); - var searchValCheck = function (val) { - if (angular.isDefined(val) && val !== null && val !== "") { - return true; - } - }; - var setSearchCriteria = function (v1, v2) { - if (searchValCheck(v1) && searchValCheck(v2)) { - var index = ctrl.getIndex(v2); - scope.searchCriteria = {}; - if (index !== null) { - scope.searchCriteria[index] = v1; - } - } else if (searchValCheck(v1) && (!angular.isDefined(v2) || v2 === null || v2 === "")) { - scope.searchCriteria = { - $: v1 - }; - } else { - scope.searchCriteria = {}; - } - }; - scope.$watch('searchCategory', function (newVal, oldVal) { - if (newVal !== oldVal) { - setSearchCriteria(scope.searchString, newVal); - } - }); - scope.$watch('searchString', function (newVal, oldVal) { - if (newVal !== oldVal) { - setSearchCriteria(newVal, scope.searchCategory); - } - }); - scope.$watchCollection('searchCriteria', function (val) { - if (scope.$parent && scope.$parent !== undefined) { - scope.$parent.searchCriteria = val; - } - scope.totalRows = scope.tableData && ($filter('filter')(scope.tableData, val, false)).length || 0; - scope.currentPage = 1; - }); - var window = angular.element($window); - var findMaxTableColumns = function () { - var windowWidth; - windowWidth = $window.innerWidth; - ctrl.maxTableColumns = -1; - for (var i in scope.tableBreakpoints) { - if (windowWidth >= scope.tableBreakpoints[i].min && windowWidth < scope.tableBreakpoints[i].max) { - ctrl.maxTableColumns = scope.tableBreakpoints[i].columns; - break; - } - } - if (ctrl.maxTableColumns > -1 && ctrl.totalTableColums > ctrl.maxTableColumns) { - ctrl.active = true; - } else { - ctrl.active = false; - } - for (var i in ctrl.responsiveRowScopes) { - ctrl.responsiveRowScopes[i].setActive(ctrl.active); - } - }; - var findHiddenColumn = function () { - var columnDiffenence = ctrl.maxTableColumns > -1 ? ctrl.totalTableColums - ctrl.maxTableColumns : 0; - ctrl.hiddenColumn = []; - if (columnDiffenence > 0) { - var tempHideColumnPriority = angular.copy(ctrl.hideColumnPriority); - for (var i = 0; i < columnDiffenence; i++) { - ctrl.hiddenColumn.push(tempHideColumnPriority.pop()); - } - } - }; - var resizeListener = function () { - findMaxTableColumns(); - findHiddenColumn(); - }; - if (ctrl.responsive) { - window.bind('resize', function () { - resizeListener(); - scope.$apply(); - }); - $timeout(function () { - resizeListener(); - }, 100); - } - } - }; - }]) - .directive('b2bTableRow', [function () { - return { - restrict: 'EA', - compile: function (elem, attr) { - if (attr.type === 'header') { - angular.noop(); - } else if (attr.type === 'body') { - var html = elem.children(); - if (attr.rowRepeat) { - html.attr('ng-repeat', attr.rowRepeat.concat(" | orderBy : columnIndex : reverse | filter : searchCriteria : false ")); - } - html.attr('ng-class', "{'odd': $odd && zebraStripFlag}"); - html.attr('class', 'data-row'); - html.attr('b2b-responsive-row', '{{$index}}'); - elem.append(html); - } - } - }; - }]) - .directive('b2bTableHeader', ['b2bTableConfig', function (b2bTableConfig) { - return { - restrict: 'EA', - replace: true, - transclude: true, - scope: { - sortable: '@', - defaultSort: '@', - index: '@key' - }, - require: '^b2bTable', - templateUrl: function (elem, attr) { - if (attr.sortable === 'false') { - return 'b2bTemplate/tables/b2bTableHeaderUnsortable.html'; - } else { - return 'b2bTemplate/tables/b2bTableHeaderSortable.html'; - } - }, - link: function (scope, elem, attr, ctrl) { - var reverse = b2bTableConfig.defaultSortPattern; - scope.headerName = elem.text(); - scope.headerId = elem.attr('id'); - scope.sortPattern = null; - var priority = parseInt(attr.priority, 10); - scope.columnIndex = ctrl.setIndex(scope, priority); - - scope.isHidden = function () { - return (ctrl.hiddenColumn.indexOf(scope.columnIndex) > -1); - }; - - scope.$watch(function () { - return elem.text(); - }, function (value) { - scope.headerName = value; - }); - scope.sort = function (sortType) { - if (typeof sortType === 'boolean') { - reverse = sortType; - } - ctrl.sortData(scope.index, reverse, false); - scope.sortPattern = reverse ? 'descending' : 'ascending'; - reverse = !reverse; - }; - scope.$watch(function () { - return ctrl.currentSortIndex; - }, function (value) { - if (value !== scope.index) { - scope.sortPattern = null; - } - }); - - if (scope.sortable === undefined || scope.sortable === 'true' || scope.sortable === true) { - scope.sortable = 'true'; - } else if (scope.sortable === false || scope.sortable === 'false') { - scope.sortable = 'false'; - } - - if (scope.sortable !== 'false') { - if (scope.defaultSort === 'A' || scope.defaultSort === 'a') { - scope.sort(false); - } else if (scope.defaultSort === 'D' || scope.defaultSort === 'd') { - scope.sort(true); - } - } - scope.resetSortPattern = function () { - reverse = b2bTableConfig.defaultSortPattern; - }; - } - }; - }]) - .directive('b2bResponsiveRow', ['$templateCache', '$timeout', '$compile', function ($templateCache, $timeout, $compile) { - return { - restrict: 'EA', - require: '^b2bTable', - controller: ['$scope', function ($scope) { - this.rowValues = $scope.rowValues = []; - this.setRowValues = function (rowValue) { - this.rowValues.push(rowValue); - }; - var columnIndexCounter = -1; - this.getIndex = function () { - columnIndexCounter++; - return columnIndexCounter; - }; - }], - link: function (scope, elem, attr, ctrl) { - if (ctrl.responsive) { - scope.rowIndex = attr.b2bResponsiveRow; - scope.active = false; - scope.expandFlag = false; - scope.headerValues = ctrl.headers; - ctrl.setResponsiveRow(scope); - var firstTd = elem.find('td').eq(0); - scope.setActive = function (activeFlag) { - scope.active = activeFlag; - if (scope.active) { - elem.addClass('has-button'); - firstTd.attr('role', 'rowheader'); - firstTd.parent().attr('role', 'row'); - } else { - elem.removeClass('has-button'); - firstTd.removeAttr('role'); - firstTd.parent().removeAttr('role'); - } - }; - scope.toggleExpandFlag = function (expandFlag) { - if (angular.isDefined(expandFlag)) { - scope.expandFlag = expandFlag; - } else { - scope.expandFlag = !scope.expandFlag; - } - if (scope.expandFlag) { - elem.addClass('opened'); - } else { - elem.removeClass('opened'); - } - }; - - firstTd.attr('scope', 'row'); - firstTd.addClass('col-1'); - scope.$on('$destroy', function () { - elem.next().remove(); - }); - $timeout(function () { - scope.firstTdId = firstTd.attr('id'); - var firstTdContent = firstTd.html(); - var toggleButtonTemplate = '' + firstTdContent + ''; - toggleButtonTemplate = $compile(toggleButtonTemplate)(scope); - firstTd.html(''); - firstTd.prepend(toggleButtonTemplate); - - var template = $templateCache.get('b2bTemplate/tables/b2bResponsiveRow.html'); - template = $compile(template)(scope); - elem.after(template); - }, 100); - } - } - }; - }]) - .directive('b2bResponsiveList', ['$templateCache', '$timeout', '$compile', function ($templateCache, $timeout, $compile) { - return { - restrict: 'EA', - require: '^b2bTable', - link: function (scope, elem, attr, ctrl) { - scope.columnIndex = parseInt(attr.b2bResponsiveList, 10); - scope.isVisible = function () { - return (ctrl.hiddenColumn.indexOf(scope.columnIndex) > -1); - }; - } - }; - }]) - .directive('b2bTableBody', ['$filter', '$timeout', 'b2bTableConfig', function ($filter, $timeout, b2bTableConfig) { - return { - restrict: 'EA', - require: ['^b2bTable', '?^b2bResponsiveRow'], - scope: true, - replace: true, - transclude: true, - templateUrl: 'b2bTemplate/tables/b2bTableBody.html', - link: function (scope, elem, attr, ctrl) { - var b2bTableCtrl = ctrl[0]; - var b2bResponsiveRowCtrl = ctrl[1]; - var highlightSearchStringClass = b2bTableConfig.highlightSearchStringClass; - var searchString = ""; - var wrapElement = function (elem) { - var text = elem.text(); - elem.html($filter('b2bHighlight')(text, searchString, highlightSearchStringClass)); - }; - var traverse = function (elem) { - var innerHtml = elem.children(); - if (innerHtml.length > 0) { - for (var i = 0; i < innerHtml.length; i++) { - traverse(innerHtml.eq(i)); - } - } else { - wrapElement(elem); - return; - } - }; - var clearWrap = function (elem) { - var elems = elem.find('*'); - for (var i = 0; i < elems.length; i++) { - if (elems.eq(i).attr('class') && elems.eq(i).attr('class').indexOf(highlightSearchStringClass) !== -1) { - var text = elems.eq(i).text(); - elems.eq(i).replaceWith(text); - } - } - }; - if (b2bResponsiveRowCtrl) { - scope.columnIndex = b2bResponsiveRowCtrl.getIndex(); - scope.isHidden = function () { - return (b2bTableCtrl.hiddenColumn.indexOf(scope.columnIndex) > -1); - }; - } - $timeout(function () { - var actualHtml = elem.children(); - scope.$watch(function () { - return b2bTableCtrl.getSearchString(); - }, function (val) { - searchString = val; - clearWrap(elem); - if (actualHtml.length > 0) { - traverse(elem); - } else { - wrapElement(elem); - } - }); - if (b2bResponsiveRowCtrl) { - b2bResponsiveRowCtrl.setRowValues(elem.html()); - } - }, 50); - } - }; - }]) - .directive('b2bTableSort', ['b2bTableConfig','$timeout', function (b2bTableConfig,$timeout) { - return { - restrict: 'EA', - replace: true, - require: '^b2bTable', - link: function (scope, elem, attr, ctrl) { - var initialSort = '', - nextSort = '', - tempsort = ''; - initialSort = attr.initialSort; - - scope.sortTable = function (msg) { - $timeout(function(){ - if (nextSort.length > 0) { - - if (nextSort === 'd' || nextSort === 'D') { - tempsort = nextSort - ctrl.sortData(msg, true, true); - nextSort = 'a'; - $timeout(function(){ - if(!angular.isUndefined(elem[0].querySelector('.sortButton')) || elem[0].querySelector('.sortButton') !== null ){ - angular.element(elem[0].querySelector('.sortButton'))[0].focus(); - } - },100); - - } else { - tempsort = nextSort - ctrl.sortData(msg, false, true); - nextSort = 'd'; - $timeout(function(){ - if(!angular.isUndefined(elem[0].querySelector('.sortButton')) || elem[0].querySelector('.sortButton') !== null ){ - angular.element(elem[0].querySelector('.sortButton'))[0].focus(); - } - },100); - } - } else if (initialSort.length > 0) { - - if (initialSort === 'd' || initialSort === 'D') { - tempsort = nextSort - ctrl.sortData(msg, true, true); - nextSort = 'a'; - $timeout(function(){ - if(!angular.isUndefined(elem[0].querySelector('.sortButton')) || elem[0].querySelector('.sortButton') !== null ){ - angular.element(elem[0].querySelector('.sortButton'))[0].focus(); - } - },100); - - } else { - tempsort = nextSort - ctrl.sortData(msg, false, true); - nextSort = 'd'; - $timeout(function(){ - if(!angular.isUndefined(elem[0].querySelector('.sortButton')) || elem[0].querySelector('.sortButton') !== null ){ - angular.element(elem[0].querySelector('.sortButton'))[0].focus(); - } - },100); - - - } - } - },10) - - }; - - scope.sortDropdown = function(msg) { - - if(tempsort==='') { - - tempsort='a' - } - if(tempsort === 'd' || tempsort === 'D' ) { - ctrl.sortData(msg, true, false); - } else { - ctrl.sortData(msg, false, false); - } - - }; - } - }; - }]); -/** - * @ngdoc directive - * @name Tabs, tables & accordions.att:tabs - * - * @description - * - * - * @usage - * - - {{tab.title}} - - - * - * @example - *
    - - - - -
    - * - */ - -angular.module('b2b.att.tabs', ['b2b.att.utilities']) - .directive('b2bTabset', function () { - return { - restrict: 'EA', - transclude: true, - replace: true, - scope: { - tabIdSelected: '=' - }, - templateUrl: 'b2bTemplate/tabs/b2bTabset.html', - controller: ['$scope', function ($scope) { - - this.setTabIdSelected = function (tab) { - $scope.tabIdSelected = tab.id; - }; - - this.getTabIdSelected = function () { - return $scope.tabIdSelected; - }; - }] - }; - }) - .directive('b2bTab', ['keymap', function (keymap) { - return { - restrict: 'EA', - transclude: true, - replace: true, - require: '^b2bTabset', - scope: { - tabItem: "=" - }, - templateUrl: 'b2bTemplate/tabs/b2bTab.html', - controller: [function(){}], - link: function (scope, element, attr, b2bTabsetCtrl) { - - if (scope.tabItem && !scope.tabItem.disabled) { - scope.tabItem.disabled = false; - } - - scope.isTabActive = function () { - return (scope.tabItem.id === b2bTabsetCtrl.getTabIdSelected()); - }; - - scope.clickTab = function () { - if (attr.disabled) { - return; - } - b2bTabsetCtrl.setTabIdSelected(scope.tabItem); - }; - - scope.nextKey = function () { - var el = angular.element(element[0])[0]; - var elementToFocus = null; - while (el && el.nextElementSibling) { - el = el.nextElementSibling; - if (!el.querySelector('a').disabled) { - elementToFocus = el.querySelector('a'); - break; - } - } - - if (!elementToFocus) { - var childTabs = element.parent().children(); - for (var i = 0; i < childTabs.length; i++) { - if (!childTabs[i].querySelector('a').disabled) { - elementToFocus = childTabs[i].querySelector('a'); - break; - } - } - } - - if (elementToFocus) { - elementToFocus.focus(); - } - }; - - scope.previousKey = function () { - var el = angular.element(element[0])[0]; - var elementToFocus = null; - - while (el && el.previousElementSibling) { - el = el.previousElementSibling; - if (!el.querySelector('a').disabled) { - elementToFocus = el.querySelector('a'); - break; - } - } - - if (!elementToFocus) { - var childTabs = element.parent().children(); - for (var i = childTabs.length - 1; i > 0; i--) { - if (!childTabs[i].querySelector('a').disabled) { - elementToFocus = childTabs[i].querySelector('a'); - break; - } - } - } - - if (elementToFocus) { - elementToFocus.focus(); - } - }; - - angular.element(element[0].querySelector('a')).bind('keydown', function (evt) { - - if (!(evt.keyCode)) { - evt.keyCode = evt.which; - } - - switch (evt.keyCode) { - case keymap.KEY.RIGHT: - evt.preventDefault(); - scope.nextKey(); - break; - - case keymap.KEY.LEFT: - evt.preventDefault(); - scope.previousKey(); - break; - - default:; - } - }); - } - }; - }]); -/** - * @ngdoc directive - * @name Messages, modals & alerts.att:tagBadges - * - * @description - * - * - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.tagBadges', ['b2b.att.utilities']) - .directive('b2bTagBadge',['$timeout',function($timeout){ - return{ - restrict: 'EA', - link: function(scope,elem,attr,ctrl){ - elem.addClass('b2b-tags'); - if(angular.element(elem[0].querySelector('.icon-primary-close')).length>0) { - var item = angular.element(elem[0].querySelector('.icon-primary-close')); - item.bind('click',function(){ - elem.css({'height':'0','width':'0','padding':'0','border':'0'}); - elem.attr('tabindex','0'); - elem[0].focus(); - item.parent().remove(); - elem[0].bind('blur',function(){ - elem[0].remove(); - }); - }); - } - - - - - } - }; -}]); -/** - * @ngdoc directive - * @name Forms.att:textArea - * - * @description - * - * - * @usage - * - * - * @example -
    - HTML + AngularJS - - - - -
    - */ -angular.module('b2b.att.textArea', ['b2b.att.utilities']) - -.directive('b2bResetTextarea', [ function () { - return { - restrict: 'A', - require: 'b2bReset', - link: function (scope, element, attrs, ctrl) { - - var resetButton = ctrl.getResetButton(); - - var computeScrollbarAndAddClass = function () { - if (element.prop('scrollHeight') > element[0].clientHeight) { - element.addClass('hasScrollbar'); - } else { - element.removeClass('hasScrollbar'); - } - }; - - computeScrollbarAndAddClass(); - - element.on('focus keyup', function(){ - computeScrollbarAndAddClass(); - }); - } - }; -}]); - -/** - * @ngdoc directive - * @name Forms.att:tooltipsForForms - * - * @description - * - * - * @example - - - - - */ -angular.module('b2b.att.tooltipsForForms', ['b2b.att.utilities']) - .directive('b2bTooltip', ['$document', '$window', '$isElement', function ($document, $window, $isElement) { - return { - restrict: 'A', - link: function (scope, elem, attr, ctrl) { - var icon = elem[0].querySelector('a.tooltip-element'); - var btnIcon = elem[0].querySelector('.btn.tooltip-element'); - var tooltipText = elem[0].querySelector('.helpertext'); - var tooltipWrapper = elem[0].querySelector('.tooltip-size-control'); - if (elem.hasClass('tooltip-onfocus')) { - var inputElm = angular.element(elem[0].querySelector("input")); - var textAreaElm = angular.element(elem[0].querySelector("textarea")); - } - angular.element(icon).attr({'aria-expanded': false}); - angular.element(btnIcon).attr({'aria-expanded': false}); - var calcTooltip = function () { - if (!elem.hasClass('tooltip active')) { - if (elem.hasClass('tooltip-onfocus')) { - angular.element(elem[0].querySelector("input")).triggerHandler('focusout'); - } - if (elem.hasClass('tooltip-onclick')) { - return false; - } - angular.element(icon).removeClass('active'); - angular.element(icon).attr({'aria-expanded': true}); - angular.element(icon).attr({'aria-describedby': angular.element(tooltipText).attr('id')}); - angular.element(tooltipText).attr({'aria-hidden': false}); - elem.addClass('active'); - - var tooltipIconPos = angular.element(icon).prop('offsetLeft'), - tooltipPosition = angular.element(tooltipText).prop('offsetWidth') / 2, - tipOffset = (tooltipIconPos - 30) - tooltipPosition, - maxRightPos = (($window.innerWidth - 72) - (tooltipPosition * 2)) - 14.5; - - if ($window.innerWidth >= '768') { - if (tipOffset < 0) {// if icon on far left side of page - tipOffset = 15; - } - else if (tooltipIconPos > maxRightPos) {// if icon is far right side of page - tipOffset = maxRightPos; - } - else {// if tooltip in the middle somewhere - tipOffset = tipOffset; - } - angular.element(tooltipWrapper).css({left: tipOffset + 'px'}); - } - } - }; - - // TOOLTIP LINK ONCLICK AND FOCUS - angular.element(icon).on('click mouseover mouseout focus blur', function (e) { - if (e.type == 'mouseover') { - calcTooltip(); - } - else if (e.type == 'mouseout' && elem.hasClass('active')) { - if (!elem.hasClass('activeClick')) { - angular.element(tooltipText).attr({ - 'aria-hidden': true, - 'tabindex': '-1' - }); - elem.removeClass('active'); - } else if (elem.hasClass('activeClick') && navigator.userAgent.match(/iphone/i)) { - elem.removeClass('active activeClick'); - } - } - - else { - if (elem.hasClass('activeClick')) { - angular.element(icon).attr({'aria-expanded': false}); - angular.element(tooltipText).attr({'aria-hidden': true}); - angular.element(icon).removeAttr('aria-describedby'); - elem.removeClass('activeClick active'); - e.preventDefault(); - } - else if (e.type == 'click') { - elem.addClass('activeClick'); - calcTooltip(); - e.preventDefault(); - } - else { - angular.element(icon).on('keydown', function (e) { - if (e.keyCode == '32') { - (elem.hasClass('active')) ? elem.removeClass('active') : elem.addClass('value'); - angular.element(icon).triggerHandler('click'); - e.preventDefault(); - } else if (e.keyCode == '27') { - (elem.hasClass('active')) ? elem.removeClass('active activeClick') : elem.addClass('value'); - } - }); - e.preventDefault(); - } - } - e.preventDefault(); - }); - - // TOOLTIP BUTTON INSIDE A TEXT FIELD - angular.element(btnIcon).on('click', function (e) { - var $this = angular.element(this); - if ($this.hasClass('active') && elem.hasClass('tooltip-onclick')) { - elem.removeClass('active'); - $this.removeClass('active'); - angular.element(tooltipText).removeAttr('aria-live'); - $this.attr({'aria-expanded': 'false'}); - $this.removeAttr('aria-describedby'); - } else { - elem.addClass('active'); - $this.addClass('active'); - $this.attr({'aria-expanded': 'true', 'aria-describedby': angular.element(tooltipText).attr('id')}); - angular.element(tooltipText).attr({'aria-live': 'polite'}); - } - }); - - angular.element(btnIcon).on('blur', function (e) { - var $this = angular.element(this); - if ($this.hasClass('active') && elem.hasClass('tooltip-onclick')) { - elem.removeClass('active'); - $this.removeClass('active'); - angular.element(tooltipText).removeAttr('aria-live'); - $this.attr({'aria-expanded': 'false'}); - $this.removeAttr('aria-describedby'); - } - }); - - angular.element(btnIcon).on('keydown', function (e) { - var $this = angular.element(this); - if (e.keyCode == '27') { - var $this = angular.element(this); - if ($this.hasClass('active') && elem.hasClass('tooltip-onclick')) { - elem.removeClass('active'); - $this.removeClass('active'); - angular.element(tooltipText).removeAttr('aria-live'); - $this.attr({'aria-expanded': 'false'}); - $this.removeAttr('aria-describedby'); - } - } - }); - - // close all tooltips if clicking something else - $document.bind('click', function (e) { - var isElement = $isElement(angular.element(e.target), elem, $document); - if (!isElement) { - elem.removeClass('active'); - angular.element(elem[0].querySelector('.tooltip-element')).removeClass('active'); - angular.element(tooltipText).removeAttr('aria-live'); - angular.element(elem[0].querySelector('.tooltip-element')).attr({'aria-expanded': 'false'}); - angular.element(elem[0].querySelector('.tooltip-element')).removeAttr('aria-describedby'); - }; - }); - - angular.element(inputElm).on('keydown', function (e) { - if (e.keyCode == '27'){ - elem.removeClass('active'); - angular.element(tooltipText).css('display', 'none'); - angular.element(tooltipText).removeAttr('aria-live'); - - if (angular.element(this).attr('aria-describedby') === undefined){ - - } - - else if ((spaceIndex = angular.element(this).attr('aria-describedby').lastIndexOf(' ')) >= 0){ - - var describedByValue = angular.element(this).attr('aria-describedby').slice(0, spaceIndex); - - angular.element(this).attr('aria-describedby', describedByValue); - - } - else { - angular.element(this).removeAttr('aria-describedby'); - } - } - }); - - angular.element(textAreaElm).on('keydown', function (e) { - if (e.keyCode == '27'){ - elem.removeClass('active'); - angular.element(tooltipText).css('display', 'none'); - angular.element(tooltipText).removeAttr('aria-live'); - if (angular.element(this).attr('aria-describedby') === undefined){ - - } - - else if ((spaceIndex = angular.element(this).attr('aria-describedby').lastIndexOf(' ')) >= 0){ - - var describedByValue = angular.element(this).attr('aria-describedby').slice(0, spaceIndex); - - angular.element(this).attr('aria-describedby', describedByValue); - - } - else { - angular.element(this).removeAttr('aria-describedby'); - } - } - }); - - // TOOLTIP TRIGGERED AUTOMATICALLY INSIDE A TEXT FIELD - angular.element(inputElm).on('focus', function (e) { - var allTooltip = $document[0].querySelectorAll('[class*="tooltip"]'); - for (var i = 0; i < allTooltip.length; i++) { - if (angular.element(allTooltip[i]).hasClass('active')) { - angular.element(allTooltip[i]).triggerHandler('click'); - } - }; - angular.element(this).attr({'aria-describedby': angular.element(tooltipText).attr('id')}); - angular.element(tooltipText).css('display', 'block'); - angular.element(tooltipText).attr({'aria-live': 'polite'}); - elem.addClass('active'); - }); - angular.element(inputElm).on('blur', function (e) { - elem.removeClass('active'); - angular.element(tooltipText).css('display', 'none'); - angular.element(tooltipText).removeAttr('aria-live'); - angular.element(this).removeAttr('aria-describedby'); - }); - - // TOOLTIP TRIGGERED AUTOMATICALLY INSIDE A TEXTAREA - angular.element(textAreaElm).on('focus', function (e) { - var allTooltip = $document[0].querySelectorAll('[class*="tooltip"]'); - for (var i = 0; i < allTooltip.length; i++) { - if (angular.element(allTooltip[i]).hasClass('active')) { - angular.element(allTooltip[i]).triggerHandler('click'); - } - }; - elem.addClass('active'); - angular.element(tooltipText).css('display', 'block'); - angular.element(tooltipText).attr({'aria-live': 'polite'}); - angular.element(this).attr({'aria-describedby': angular.element(tooltipText).attr('id')}); - }); - angular.element(textAreaElm).on('blur', function (e) { - elem.removeClass('active'); - angular.element(tooltipText).css('display', 'none'); - angular.element(tooltipText).removeAttr('aria-live'); - angular.element(this).removeAttr('aria-describedby'); - }); - } - }; - }]); -/** - * @ngdoc directive - * @name Navigation.att:TreeNavigation - * - * - * @scope - * @param {String} setRole - This value needs to be "tree". This is required to incorporate CATO requirements. - * @param {Boolean} groupIt - This value needs to be "false" for top-level tree rendered. - * - * @description - * - * - * @usage - *
    - * - *
    - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.treeNav', ['b2b.att.utilities']) - .directive('b2bTreeNav', function () { - return { - restrict: "E", - replace: true, - scope: { - collection: '=', - groupIt: '=', - setRole: '@' - }, - templateUrl: function (element, attrs) { - if (attrs.groupIt === 'true') { - return "b2bTemplate/treeNav/groupedTree.html"; - } else { - return "b2bTemplate/treeNav/ungroupedTree.html"; - } - }, - link: function (scope) { - if (!(scope.setRole === 'tree')) { - scope.setRole = 'group'; - } - } - } - }) - .directive('b2bMember', ['$compile', '$timeout', 'keymap', function ($compile, $timeout, keymap) { - return { - restrict: "E", - replace: true, - scope: { - member: '=', - groupIt: '=' - }, - templateUrl: 'b2bTemplate/treeNav/treeMember.html', - link: function (scope, element, attrs) { - scope.elemArr = []; - var removeRootTabIndex = function (elem) { - if (elem.parent().parent().eq(0).hasClass('b2b-tree')) { - elem.attr('tabindex', -1); - return; - } - removeRootTabIndex(elem.parent()); - }; - scope.$watch('member.child', function(newVal, oldVal){ - if(newVal !== oldVal){ - scope.showChild(); - }; - }); - scope.showChild = function () { - if (!element.hasClass('grouped')) { - if (angular.isArray(scope.member.child) && scope.member.child.length > 0 && (scope.member.divide === undefined || scope.member.child.length < scope.member.divide)) { - scope.groupIt = false; - element.addClass('grouped'); - element.append(""); - $compile(element.contents())(scope); - if(scope.member.active && scope.member.active === true){ - element.find('i').eq(0).removeClass('icon-primary-collapsed'); - }; - if(scope.member.selected && scope.member.selected === true){ - element.attr('aria-selected', true); - element.attr('tabindex', 0); - removeRootTabIndex(element); - }; - if(scope.member.active && scope.member.active == undefined){ - element.find('i').eq(0).addClass('icon-primary-collapsed'); - }; - } else if (scope.member.child && scope.member.divide && scope.member.child.length > scope.member.divide) { - element.addClass('grouped'); - scope.groupIt = true; - // FILTER - GROUPBY - APPROACH - var j = 0; - var grpName = ''; - if(scope.member.child[0].groupName !== undefined){ - grpName = scope.member.child[0].groupName; - } - else{ - var toSlice = scope.member.child[0].name.search(' '); - grpName = scope.member.child[0].name.slice(0, toSlice); - } - - for (i = 0; i < scope.member.child.length; i += scope.member.divide) { - j = 0; - for (j = j + i; j < (i + scope.member.divide); j++) { - if (j === scope.member.child.length) { - scope.member.child[j - 1].grpChild = grpName + ' ' + (i + 1) + ' - ' + (scope.member.child.length); - break; - - if(scope.member.child[j-1].active && scope.member.child[j-1].active===true){ - scope.member.child[j-1].activeGrp = true; - }; - - } - if (i + scope.member.divide > scope.member.child.length) { - scope.member.child[j].grpChild = grpName + ' ' + (i + 1) + ' - ' + (scope.member.child.length); - if(scope.member.child[j].active && scope.member.child[j].active===true){ - scope.member.child[j].activeGrp = true; - }; - - } else { - scope.member.child[j].grpChild = grpName + ' ' + (i + 1) + ' - ' + (i + scope.member.divide); - if(scope.member.child[j].active && scope.member.child[j].active===true){ - scope.member.child[j].activeGrp = true; - }; - } - } - } - if(scope.member.divide){ - element.append(""); - } else { - element.append(""); - } - $compile(element.contents())(scope); - if(scope.member.active && scope.member.active === true){ - element.find('i').eq(0).removeClass('icon-primary-collapsed'); - }; - if(scope.member.selected && scope.member.selected === true){ - element.attr('aria-selected', true); - }; - if( scope.member.active && scope.member.active == undefined){ - element.find('i').eq(0).addClass('icon-primary-collapsed'); - }; - } - } - }; - //Below condition opens node for opening on json load. - if(scope.member.active && scope.member.active == true){ - scope.showChild(); - }; - if(scope.member.active == undefined && !element.find('a').eq(0).hasClass('active') && scope.member.child !== undefined){ - element.find('i').eq(0).addClass('icon-primary-collapsed'); - } - else if(scope.member.child == undefined){ - element.find('i').eq(0).addClass('icon-primary-circle'); - }; - element.bind('keydown', function (evt) { - switch (evt.keyCode) { - case keymap.KEY.ENTER: - if (element.hasClass('bg') && scope.member.onSelect !== undefined) { - scope.member.onSelect(scope.member); - } - evt.stopPropagation(); - break; - default: - break; - } - - }); - //else getting true in every case .. so better use switch case .. that makes more sense you dumb. - element.bind('click', function (evt) { - scope.showChild(); - var expandFunc = scope.member.onExpand; - - //onSelect - if (element.hasClass('bg') && scope.member.onSelect !== undefined) { - scope.member.onSelect(scope.member); - } - if (element.find('a').eq(0).hasClass('active') && scope.member.onExpand !== undefined) { - var eValue = scope.member.onExpand(scope.member); - } - if (!element.find('a').eq(0).hasClass('active') && scope.member.onCollapse !== undefined) { - scope.member.onCollapse(scope.member); - } - }); - } - } -}]) - .directive('b2bTreeLink', ['keymap', '$timeout', function (keymap, $timeout) { - return { - restrict: 'A', - link: function (scope, element, attr, ctrl) { - var rootE, parentE, upE, downE; - var closeOthersUp = function (elem,isKeyPress,passiveClose) { - //For accordion functionality on sibling nodes - if (elem.find('a').eq(0).hasClass('active')) { - activeToggle(elem,isKeyPress,passiveClose); - return; - } - if (elem.hasClass('bg') && !isKeyPress) { - elem.removeClass('bg'); - if (elem.attr('aria-selected')) { - elem.attr('aria-selected', 'false'); - } - } - if (elem[0].previousElementSibling !== null) { - closeOthersUp(angular.element(elem[0].previousElementSibling),isKeyPress); - } - }; - var closeOthersDown = function (elem,isKeyPress,passiveClose) { - //For accordion functionality on sibling nodes - if (elem.find('a').eq(0).hasClass('active')) { - activeToggle(elem,isKeyPress,passiveClose); - return; - } - if (elem.hasClass('bg') && !isKeyPress) { - elem.removeClass('bg'); - if (elem.attr('aria-selected')) { - elem.attr('aria-selected', 'false'); - } - } - if (elem[0].nextElementSibling !== null) { - closeOthersDown(angular.element(elem[0].nextElementSibling),isKeyPress); - } - }; - - - var removeBackground = function(elem){ - - if(elem.hasClass('b2b-tree')){ - angular.element(elem[0].getElementsByClassName('bg')).removeClass('bg'); - return; - }else{ - removeBackground(elem.parent().parent()); - } - - }; - -/** -* These two functions used for setting heights on parent nodes as the child node closes -* Retaining this code for future reference - - var addParentHeight = function(e, h) { - var parentLi = e.parent().parent(); - var parentUl = e.parent(); - if(!parentLi.hasClass('b2b-tree')) { - var addHeight = parentUl[0].offsetHeight + h; - parentLi.find('ul').eq(0).css({ - height: addHeight+'px' - }) - addParentHeight(parentLi, h); - } - }; - - var removeParentHeight = function(e, h) { - var parentLi = e.parent().parent(); - var parentUl = e.parent(); - if(!parentLi.hasClass('b2b-tree')) { - var addHeight = parentUl[0].offsetHeight - h; - parentLi.find('ul').eq(0).css({ - height: addHeight+'px' - }) - removeParentHeight(parentLi, h); - } - }; -*/ - - // isKeyPress - to notify that the function is called by Right Key press - // passiveClose - prevents firing of oncollapse events during the action - // of expand function(check the function definition) - - var activeToggle = function (elem,isKeyPress,passiveClose) { - var element = elem.find('a').eq(0); - if (element.hasClass('active')) { - if(!isKeyPress){ - elem.removeClass('bg'); - } - - if (elem.attr('aria-selected') && !isKeyPress) { - elem.attr('aria-selected', 'false'); - } - if (!element.find('i').eq(0).hasClass('icon-primary-circle')) { - if(isKeyPress && scope.member){ - if (scope.member.onCollapse !== undefined && !passiveClose) { - scope.member.onCollapse(scope.member); - } - } - element.removeClass('active'); - elem.attr('aria-expanded', 'false'); - element.find('i').eq(0).removeClass('icon-primary-expanded'); - element.find('i').eq(0).addClass('icon-primary-collapsed'); - //For Animation: below commented code is used to manually set height of UL to zero - //retaining code for future reference - /* - var totalHeight = elem.find('ul')[0].scrollHeight; - removeParentHeight(elem, totalHeight); - elem.find('ul').eq(0).css({ - height: null - });*/ - } - } else { - if(!isKeyPress){ - elem.addClass('bg'); - elem.attr('aria-selected', 'true'); - } - - if (!element.find('i').eq(0).hasClass('icon-primary-circle')) { - if(isKeyPress){ - if(typeof scope.showChild === 'function' ){ - scope.showChild(); - } - if(scope.member){ - if (scope.member.onExpand !== undefined) { - scope.member.onExpand(scope.member); - } - } - } - element.addClass('active'); - elem.attr('aria-expanded', 'true'); - element.find('i').eq(0).removeClass('icon-primary-collapsed'); - element.find('i').eq(0).addClass('icon-primary-expanded'); - //For Animation: below commented code is used to manually set height of the ul generatedon the click of parent LI. - //retaining code for future reference - /* - var totalHeight = elem.find('ul')[0].scrollHeight; - addParentHeight(elem, totalHeight); - elem.find('ul').eq(0).css({ - height: totalHeight+'px' - });*/ - - } - } - }; - element.bind('click', function (evt) { - //first we close others and then we open the clicked element - if (element[0].previousElementSibling) { - closeOthersUp(angular.element(element[0].previousElementSibling)); - } - if (element[0].nextElementSibling) { - closeOthersDown(angular.element(element[0].nextElementSibling)); - } - removeBackground(element); - activeToggle(element); - - evt.stopPropagation(); - }); - //default root tree element tabindex set zero - if (element.parent().parent().hasClass('b2b-tree') && (element.parent()[0].previousElementSibling === null)) { - element.attr('tabindex', 0); - } - //check root via class - var isRoot = function (elem) { - if (elem.parent().parent().eq(0).hasClass('b2b-tree')) { - return true; - } else { - return false; - } - }; - var findRoot = function (elem) { - if (isRoot(elem)) { - rootE = elem; - return; - } - findRoot(elem.parent()); - }; - - var findPreActive = function (elem) { - - if (!(elem.hasClass("active"))) { - return; - } else { - var childElems = angular.element(elem[0].nextElementSibling.children); - lastE = angular.element(childElems[childElems.length - 1]); - if (lastE.find('a').eq(0).hasClass('active')) { - findPreActive(lastE.find('a').eq(0)); - } - upE = lastE; - } - }; - - var findUp = function (elem) { - if (isRoot(elem)) { - upE = elem; - return; - } - if (elem[0].previousElementSibling !== null && !angular.element(elem[0].previousElementSibling).hasClass('tree-hide')) { - upE = angular.element(elem[0].previousElementSibling); - if (upE.find('a').eq(0).hasClass('active')) { - findPreActive(upE.find('a').eq(0)); - } - } else { - upE = elem.parent().parent(); - } - }; - - var downElement = function (elem) { - if (elem.next().hasClass('tree-hide')) { - downElement(elem.next()); - } else { - downE = elem.next(); - } - } - var isBottomElem = false; - var downParent = function(liElem){ - if(liElem.eq(0).parent().parent().eq(0).hasClass('b2b-tree')){ - isBottomElem = true; - return; - } - if(liElem.next().length !== 0){ - downE = liElem.next().eq(0); - return; - } - else { - downParent(liElem.parent().parent()); - } - } - - var findDown = function (elem) { - if (isRoot(elem.parent()) && !elem.hasClass('active')) { - downE = elem.parent(); - return; - } - if (elem.hasClass('active')) { - downE = elem.next().find('li').eq(0); - if (downE.hasClass('tree-hide')) { - downElement(downE); - } - - } else { - downParent(elem.parent()); - if(isBottomElem === true){ - downE = elem.parent(); - isBottomElem = false; - } - } - }; - - - var resetTabPosition = function(element){ - findRoot(element); - angular.element(rootE.parent().parent()[0].querySelector("li[tabindex='0']")).attr('tabindex','-1'); - var elemToFocus = rootE.parent().parent()[0].querySelector(".bg")|| rootE; - - angular.element(elemToFocus).attr('tabindex','0'); - }; - // Function to control the expansion of nodes when the user tabs into the tree and - // the slected node is not visible - var expand = function(elemArr){ - var elem= elemArr.pop(); - var element = elem.find('a').eq(0); - var selectedNode = elem.parent().parent()[0].querySelector(".bg"); - if(selectedNode != null){ - while(elem){ - element = elem.find('a').eq(0); - if(!element.hasClass('active') ){ - - - if (elem[0].previousElementSibling) { - closeOthersUp(angular.element(elem[0].previousElementSibling),true,true); - } - if (elem[0].nextElementSibling) { - closeOthersDown(angular.element(elem[0].nextElementSibling),true,true); - } - - if (!element.find('i').eq(0).hasClass('icon-primary-circle')) { - if(typeof scope.showChild === 'function' ){ - scope.showChild(); - } - element.addClass('active'); - elem.attr('aria-expanded', 'true'); - element.find('i').eq(0).removeClass('icon-primary-collapsed'); - element.find('i').eq(0).addClass('icon-primary-expanded'); - } - - } - elem = elemArr.pop(); - } - - }else{ - return; - } - }; - - element.find('a').eq(0).bind('mouseenter', function (evt) { - angular.forEach(document.querySelectorAll('.activeTooltip'), function(value, key) { - angular.element(value).removeClass('activeTooltip') - }); - element.addClass('activeTooltip'); - }); - element.find('a').eq(0).bind('mouseleave', function (evt) { - element.removeClass('activeTooltip'); - }); - element.bind('focus', function (evt) { - angular.forEach(document.querySelectorAll('.activeTooltip'), function(value, key) { - angular.element(value).removeClass('activeTooltip') - }); - element.addClass('activeTooltip'); - }); - element.bind('blur', function (evt) { - element.removeClass('activeTooltip'); - }); - element.bind('keydown', function (evt) { - switch (evt.keyCode) { - case keymap.KEY.HOME: - evt.preventDefault(); - evt.stopPropagation(); - element.attr('tabindex', -1); - findRoot(element); - rootE.eq(0).attr('tabindex', 0); - rootE[0].focus(); - break; - case keymap.KEY.LEFT: - evt.preventDefault(); - evt.stopPropagation(); - - if(element.find('a').eq(0).hasClass('active')){ - if (element[0].previousElementSibling) { - closeOthersUp(angular.element(element[0].previousElementSibling),true); - } - if (element[0].nextElementSibling) { - closeOthersDown(angular.element(element[0].nextElementSibling),true); - } - activeToggle(element,true); - return; - } - element.attr('tabindex', -1); - parentE = element.parent().parent(); - parentE.attr('tabindex', 0); - parentE[0].focus(); - break; - case keymap.KEY.UP: - evt.preventDefault(); - evt.stopPropagation(); - element.attr('tabindex', -1); - findUp(element); - upE.eq(0).attr('tabindex', 0); - upE[0].focus(); - break; - case keymap.KEY.RIGHT: - evt.preventDefault(); - evt.stopPropagation(); - if(element.find('i').eq(0).hasClass('icon-primary-circle')){ - break; - } - if (!element.find('a').eq(0).hasClass('active')) { - if (element[0].previousElementSibling) { - closeOthersUp(angular.element(element[0].previousElementSibling),true); - } - if (element[0].nextElementSibling) { - closeOthersDown(angular.element(element[0].nextElementSibling),true); - } - activeToggle(element,true); - - } - else { - element.attr('tabindex', -1); - findDown(element.find('a').eq(0)); - downE.eq(0).attr('tabindex', 0); - downE[0].focus(); - } - break; - case keymap.KEY.DOWN: - evt.preventDefault(); - element.attr('tabindex', -1); - findDown(element.find('a').eq(0)); - downE.eq(0).attr('tabindex', 0); - downE[0].focus(); - evt.stopPropagation(); - break; - case keymap.KEY.ENTER: - var isSelectedElem = element.hasClass('bg'); - var enterFunc = function(element){ - if (isSelectedElem) { - element.removeClass('bg'); - if (element.attr('aria-selected')) { - element.attr('aria-selected', 'false'); - } - } - else { - element.addClass('bg'); - element.attr('aria-selected', 'true'); - } - }; - if (element[0].previousElementSibling) { - closeOthersUp(angular.element(element[0].previousElementSibling)); - } - if (element[0].nextElementSibling) { - closeOthersDown(angular.element(element[0].nextElementSibling)); - } - - removeBackground(element); - enterFunc(element); - evt.stopPropagation(); - break; - case keymap.KEY.TAB: - $timeout(function(){ - resetTabPosition(element); - },0); - evt.stopPropagation(); - - break; - default: - break; - } - }); - element.bind('keyup',function(evt){ - if(evt.keyCode === keymap.KEY.TAB){ - - var tempElem = element; - var elemArr = []; - while(!tempElem.hasClass('b2b-tree')){ - elemArr.push(tempElem); - tempElem = tempElem.parent().parent(); - } - elemArr.push(tempElem); - - expand(elemArr); - } - evt.stopPropagation(); - }); - } - }; - }]); -/** - * @ngdoc directive - * @name Navigation.att:Tree nodes with checkboxes - * - * @param {String} setRole - The value needs to be "tree". This is required to incorporate CATO requirements. - * @param {boolean} groupIt - The value needs to be "false" for top-level tree rendered. - * @param {Object} collection - The JSON object of tree to be rendered. - * @description - * - * - * @usage - *
    - * - *
    - * @example - *
    - - - - -
    - * - */ -angular.module('b2b.att.treeNodeCheckbox', ['b2b.att.utilities']) - .directive('b2bTreeNodeCheckbox', function () { - return { - restrict: "E", - replace: true, - scope: { - collection: '=', - groupIt: '=', - setRole: '@' - }, - templateUrl: function (element, attrs) { - if (attrs.groupIt === 'true') { - return "b2bTemplate/treeNodeCheckbox/groupedTree.html"; - } else { - return "b2bTemplate/treeNodeCheckbox/ungroupedTree.html"; - } - }, - link: function (scope) { - if (!(scope.setRole === 'tree')) { - scope.setRole = 'group'; - } - } - } - }) - .directive('b2bTreeMember', ['$compile', '$timeout', 'keymap', function ($compile, $timeout, keymap) { - return { - restrict: "E", - replace: true, - scope: { - member: '=', - groupIt: '=' - }, - templateUrl: 'b2bTemplate/treeNodeCheckbox/treeMember.html', - link: function (scope, element, attrs) { - scope.elemArr = []; - var removeRootTabIndex = function (elem) { - if (elem.parent().parent().eq(0).hasClass('b2b-tree-checkbox')) { - elem.attr('tabindex', -1); - return; - } - removeRootTabIndex(elem.parent()); - }; - scope.$watch('member.child', function(newVal, oldVal){ - if(newVal !== oldVal){ - scope.showChild(); - }; - }); - - var checkedCount = 0; - var nonCheckedCount = 0; - var checkBoxesCount = 0; - - if(element.find('a').eq(0).find('input')){ - if(scope.member.indeterminate){ - element.find('a').eq(0).find('input').prop('indeterminate', true); - element.attr('aria-checked',"mixed"); - } - element.attr('aria-checked',scope.member.isSelected); - } - - element.find('a').eq(0).find('input').bind('change',function(){ - scope.member.indeterminate = false; - downwardModalUpdate(scope.member); - downwardSelection(element); - upwardSelection(element); - element.attr('aria-checked',scope.member.isSelected); - if (scope.member.onSelect !== undefined) { - scope.member.onSelect(scope.member); - } - }); - - element.find('a').eq(0).find('input').bind('click',function(){ - var elem = angular.element(this); - if(scope.member.indeterminate){ - scope.member.indeterminate = false; - scope.member.isSelected = true; - elem.prop('indeterminate', false); - elem.prop('checked', true); - elem.triggerHandler('change'); - } - }); - - var groupNode = false; - var checkedTreeNode = false; - - var isCheckboxSelected = function(elem){ - checkedTreeNode = false; - checkedTreeNode = angular.element(angular.element(elem).find('a').eq(0))[0].querySelector('input.treeCheckBox').checked; - } - - var findCheckbox = function(elem){ - return angular.element(angular.element(elem).find('a').eq(0))[0].querySelector('input.treeCheckBox'); - } - - var updateGrpNodeCheckboxes = function(elem, checked){ - angular.element(angular.element(elem).find('a').eq(0))[0].querySelector('input.treeCheckBox').checked = checked; - } - - - var isGroupNode = function(elem){ - groupNode = false; - if(angular.element(angular.element(elem).find('a').eq(0))[0].querySelector('input.grpTreeCheckbox')){ - groupNode = true; - } - } - - var downwardModalUpdate = function(curMember){ - angular.forEach(curMember.child, function(childMember, key) { - childMember.isSelected = curMember.isSelected; - childMember.indeterminate = false; - if(angular.isArray(childMember.child) && scope.member.child.length > 0){ - downwardModalUpdate(childMember); - } - }); - } - - var downwardSelection = function(elem){ - if(findCheckbox(elem)){ - isCheckboxSelected(elem) - } - if(angular.element(elem).find('ul').length > 0){ - var childNodes = angular.element(elem).find('ul').eq(0).children('li'); - for(var i=0; i 0 && (scope.member.divide === undefined || scope.member.child.length < scope.member.divide)) { - scope.groupIt = false; - element.addClass('grouped'); - element.append(""); - $compile(element.contents())(scope); - if(scope.member.active && scope.member.active === true){ - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).removeClass('icon-primary-collapsed'); - }; - if(scope.member.selected && scope.member.selected === true){ - element.attr('tabindex', 0); - removeRootTabIndex(element); - }; - if(scope.member.active && scope.member.active == undefined){ - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).addClass('icon-primary-collapsed'); - }; - } else if (scope.member.child && scope.member.divide && scope.member.child.length > scope.member.divide) { - element.addClass('grouped'); - scope.groupIt = true; - var j = 0; - var grpName = ''; - if(scope.member.child[0].groupName !== undefined){ - grpName = scope.member.child[0].groupName; - } - else{ - var toSlice = scope.member.child[0].name.search(' '); - grpName = scope.member.child[0].name.slice(0, toSlice); - } - - for (i = 0; i < scope.member.child.length; i += scope.member.divide) { - j = 0; - for (j = j + i; j < (i + scope.member.divide); j++) { - if (j === scope.member.child.length) { - scope.member.child[j - 1].grpChild = grpName + ' ' + (i + 1) + ' - ' + (scope.member.child.length); - break; - - if(scope.member.child[j-1].active && scope.member.child[j-1].active===true){ - scope.member.child[j-1].activeGrp = true; - }; - - } - if (i + scope.member.divide > scope.member.child.length) { - scope.member.child[j].grpChild = grpName + ' ' + (i + 1) + ' - ' + (scope.member.child.length); - if(scope.member.child[j].active && scope.member.child[j].active===true){ - scope.member.child[j].activeGrp = true; - }; - - } else { - scope.member.child[j].grpChild = grpName + ' ' + (i + 1) + ' - ' + (i + scope.member.divide); - if(scope.member.child[j].active && scope.member.child[j].active===true){ - scope.member.child[j].activeGrp = true; - }; - } - } - } - if(scope.member.divide){ - element.append(""); - } else { - element.append(""); - } - $compile(element.contents())(scope); - if(scope.member.active && scope.member.active === true){ - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).removeClass('icon-primary-collapsed'); - }; - - if( scope.member.active && scope.member.active == undefined){ - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).addClass('icon-primary-collapsed'); - }; - } - } - $timeout(function () { - if(!scope.member.indeterminate){ - downwardSelection(element); - } - }); - - }; - - if(scope.member.active && scope.member.active == true){ - scope.showChild(); - }; - if(scope.member.active == undefined && !element.find('a').eq(0).hasClass('active') && scope.member.child !== undefined){ - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).addClass('icon-primary-collapsed'); - } - else if(scope.member.child == undefined){ - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).addClass('icon-primary-circle'); - if(scope.$parent.$index === 0) { - element.find('a').eq(0).append(''); - }; - }; - - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).bind('click', function (evt) { - scope.showChild(); - var expandFunc = scope.member.onExpand; - if (element.find('a').eq(0).hasClass('active') && scope.member.onExpand !== undefined) { - var eValue = scope.member.onExpand(scope.member); - } - if (!element.find('a').eq(0).hasClass('active') && scope.member.onCollapse !== undefined) { - scope.member.onCollapse(scope.member); - } - }); - - angular.element(element[0].querySelectorAll('.treeNodeName')).eq(0).bind('click', function (evt) { - - }); - - } - } -}]) - .directive('b2bTreeNodeLink', ['keymap', '$timeout', function (keymap, $timeout) { - return { - restrict: 'A', - link: function (scope, element, attr, ctrl) { - var rootE, parentE, upE, downE; - var closeOthersUp = function (elem) { - - if (elem.find('a').eq(0).hasClass('active')) { - activeToggle(elem); - return; - } - if (elem.hasClass('bg')) { - elem.removeClass('bg'); - } - if (elem[0].previousElementSibling !== null) { - closeOthersUp(angular.element(elem[0].previousElementSibling)); - } - }; - var closeOthersDown = function (elem) { - - if (elem.find('a').eq(0).hasClass('active')) { - activeToggle(elem); - return; - } - if (elem.hasClass('bg')) { - elem.removeClass('bg'); - } - if (elem[0].nextElementSibling !== null) { - closeOthersDown(angular.element(elem[0].nextElementSibling)); - } - }; - - var removeBackgroundUp = function (elem) { - - if (elem.hasClass('b2b-tree-checkbox')) { - return; - } else { - elem.parent().parent().removeClass('bg'); - removeBackgroundUp(elem.parent().parent()); - } - }; - - var removeBackgroundDown = function (elem) { - - angular.element(elem[0].querySelector('.bg')).removeClass('bg'); - }; - - - - var activeToggle = function (elem) { - var element = elem.find('a').eq(0); - if (element.hasClass('active')) { - elem.removeClass('bg'); - if (!angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).hasClass('icon-primary-circle')) { - element.removeClass('active'); - elem.attr('aria-expanded', 'false'); - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).removeClass('icon-primary-expanded'); - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).addClass('icon-primary-collapsed'); - } - } else { - elem.addClass('bg'); - if (!angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).hasClass('icon-primary-circle')) { - element.addClass('active'); - elem.attr('aria-expanded', 'true'); - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).removeClass('icon-primary-collapsed'); - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).addClass('icon-primary-expanded'); - } - } - }; - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).bind('click', function (evt) { - - if (element[0].previousElementSibling) { - closeOthersUp(angular.element(element[0].previousElementSibling)); - } - if (element[0].nextElementSibling) { - closeOthersDown(angular.element(element[0].nextElementSibling)); - } - - activeToggle(element); - - removeBackgroundDown(element); - removeBackgroundUp(element); - evt.stopPropagation(); - }); - - if (element.parent().parent().hasClass('b2b-tree-checkbox') && (element.parent()[0].previousElementSibling === null)) { - element.attr('tabindex', 0); - } - - var isRoot = function (elem) { - if (elem.parent().parent().eq(0).hasClass('b2b-tree-checkbox')) { - return true; - } else { - return false; - } - }; - var findRoot = function (elem) { - if (isRoot(elem)) { - rootE = elem; - return; - } - findRoot(elem.parent()); - }; - - var findPreActive = function (elem) { - - if (!(elem.hasClass("active"))) { - return; - } else { - var childElems = angular.element(elem[0].nextElementSibling.children); - lastE = angular.element(childElems[childElems.length - 1]); - if (lastE.find('a').eq(0).hasClass('active')) { - findPreActive(lastE.find('a').eq(0)); - } - upE = lastE; - } - }; - - var findUp = function (elem) { - if (isRoot(elem)) { - upE = elem; - return; - } - if (elem[0].previousElementSibling !== null && !angular.element(elem[0].previousElementSibling).hasClass('tree-hide')) { - upE = angular.element(elem[0].previousElementSibling); - if (upE.find('a').eq(0).hasClass('active')) { - findPreActive(upE.find('a').eq(0)); - } - } else { - upE = elem.parent().parent(); - } - }; - - var downElement = function (elem) { - if (elem.next().hasClass('tree-hide')) { - downElement(elem.next()); - } else { - downE = elem.next(); - } - } - var isBottomElem = false; - var downParent = function(liElem){ - if(liElem.eq(0).parent().parent().eq(0).hasClass('b2b-tree-checkbox')){ - isBottomElem = true; - return; - } - if(liElem.next().length !== 0){ - downE = liElem.next().eq(0); - return; - } - else { - downParent(liElem.parent().parent()); - } - } - - var findDown = function (elem) { - if (isRoot(elem.parent()) && !elem.hasClass('active')) { - downE = elem.parent(); - return; - } - if (elem.hasClass('active')) { - downE = elem.next().find('li').eq(0); - if (downE.hasClass('tree-hide')) { - downElement(downE); - } - - } else { - downParent(elem.parent()); - if(isBottomElem === true){ - downE = elem.parent(); - isBottomElem = false; - } - } - }; - element.bind('keydown', function (evt) { - switch (evt.keyCode) { - case keymap.KEY.HOME: - evt.preventDefault(); - evt.stopPropagation(); - element.attr('tabindex', -1); - findRoot(element); - rootE.eq(0).attr('tabindex', 0); - rootE[0].focus(); - break; - case keymap.KEY.LEFT: - evt.preventDefault(); - evt.stopPropagation(); - if (!isRoot(element)) { - if(element.find('a').eq(0).hasClass('active')){ - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).triggerHandler('click'); - return; - } - element.attr('tabindex', -1); - parentE = element.parent().parent(); - parentE.attr('tabindex', 0); - parentE[0].focus(); - } else { - if (element.find('a').eq(0).hasClass('active')) { - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).triggerHandler('click'); - } - }; - break; - case keymap.KEY.UP: - evt.preventDefault(); - evt.stopPropagation(); - element.attr('tabindex', -1); - findUp(element); - upE.eq(0).attr('tabindex', 0); - upE[0].focus(); - break; - case keymap.KEY.RIGHT: - evt.preventDefault(); - evt.stopPropagation(); - if(angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).hasClass('icon-primary-circle')){ - break; - } - if (!element.find('a').eq(0).hasClass('active')) { - angular.element(element[0].querySelectorAll('i.expandCollapseIcon')).eq(0).triggerHandler('click'); - } - else { - element.attr('tabindex', -1); - findDown(element.find('a').eq(0)); - downE.eq(0).attr('tabindex', 0); - downE[0].focus(); - } - break; - case keymap.KEY.DOWN: - evt.preventDefault(); - element.attr('tabindex', -1); - findDown(element.find('a').eq(0)); - downE.eq(0).attr('tabindex', 0); - downE[0].focus(); - evt.stopPropagation(); - break; - case keymap.KEY.SPACE: - case keymap.KEY.ENTER: - evt.preventDefault(); - evt.stopPropagation(); - if(angular.isDefined(element.scope().member.isSelected)){ - element.scope().member.isSelected = !element.scope().member.isSelected; - element.scope().member.indeterminate = false; - element.scope().$apply(); - element.find('a').eq(0).find('input').prop('indeterminate', false); - element.find('a').eq(0).find('input').triggerHandler('change'); - } - break; - default: - break; - } - }); - } - }; - }]); -/*! - * VERSION: 1.7.3 - * DATE: 2014-01-14 - * UPDATES AND DOCS AT: http://www.greensock.com - * - * @license Copyright (c) 2008-2014, GreenSock. All rights reserved. - * This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for - * Club GreenSock members, the software agreement that was issued with your membership. - * - * @author: Jack Doyle, jack@greensock.com - **/ -(window._gsQueue || (window._gsQueue = [])).push( function() { - - "use strict"; - - var _doc = document.documentElement, - _window = window, - _max = function(element, axis) { - var dim = (axis === "x") ? "Width" : "Height", - scroll = "scroll" + dim, - client = "client" + dim, - body = document.body; - return (element === _window || element === _doc || element === body) ? Math.max(_doc[scroll], body[scroll]) - (_window["inner" + dim] || Math.max(_doc[client], body[client])) : element[scroll] - element["offset" + dim]; - }, - - ScrollToPlugin = window._gsDefine.plugin({ - propName: "scrollTo", - API: 2, - version:"1.7.3", - - //called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. - init: function(target, value, tween) { - this._wdw = (target === _window); - this._target = target; - this._tween = tween; - if (typeof(value) !== "object") { - value = {y:value}; //if we don't receive an object as the parameter, assume the user intends "y". - } - this._autoKill = (value.autoKill !== false); - this.x = this.xPrev = this.getX(); - this.y = this.yPrev = this.getY(); - if (value.x != null) { - this._addTween(this, "x", this.x, (value.x === "max") ? _max(target, "x") : value.x, "scrollTo_x", true); - this._overwriteProps.push("scrollTo_x"); - } else { - this.skipX = true; - } - if (value.y != null) { - this._addTween(this, "y", this.y, (value.y === "max") ? _max(target, "y") : value.y, "scrollTo_y", true); - this._overwriteProps.push("scrollTo_y"); - } else { - this.skipY = true; - } - return true; - }, - - //called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like Elastic.easeOut or Back.easeOut, etc.) - set: function(v) { - this._super.setRatio.call(this, v); - - var x = (this._wdw || !this.skipX) ? this.getX() : this.xPrev, - y = (this._wdw || !this.skipY) ? this.getY() : this.yPrev, - yDif = y - this.yPrev, - xDif = x - this.xPrev; - - if (this._autoKill) { - //note: iOS has a bug that throws off the scroll by several pixels, so we need to check if it's within 7 pixels of the previous one that we set instead of just looking for an exact match. - if (!this.skipX && (xDif > 7 || xDif < -7) && x < _max(this._target, "x")) { - this.skipX = true; //if the user scrolls separately, we should stop tweening! - } - if (!this.skipY && (yDif > 7 || yDif < -7) && y < _max(this._target, "y")) { - this.skipY = true; //if the user scrolls separately, we should stop tweening! - } - if (this.skipX && this.skipY) { - this._tween.kill(); - } - } - if (this._wdw) { - _window.scrollTo((!this.skipX) ? this.x : x, (!this.skipY) ? this.y : y); - } else { - if (!this.skipY) { - this._target.scrollTop = this.y; - } - if (!this.skipX) { - this._target.scrollLeft = this.x; - } - } - this.xPrev = this.x; - this.yPrev = this.y; - } - - }), - p = ScrollToPlugin.prototype; - - ScrollToPlugin.max = _max; - - p.getX = function() { - return (!this._wdw) ? this._target.scrollLeft : (_window.pageXOffset != null) ? _window.pageXOffset : (_doc.scrollLeft != null) ? _doc.scrollLeft : document.body.scrollLeft; - }; - - p.getY = function() { - return (!this._wdw) ? this._target.scrollTop : (_window.pageYOffset != null) ? _window.pageYOffset : (_doc.scrollTop != null) ? _doc.scrollTop : document.body.scrollTop; - }; - - p._kill = function(lookup) { - if (lookup.scrollTo_x) { - this.skipX = true; - } - if (lookup.scrollTo_y) { - this.skipY = true; - } - return this._super._kill.call(this, lookup); - }; - -}); if (window._gsDefine) { window._gsQueue.pop()(); } -/*! - * VERSION: 1.12.1 - * DATE: 2014-06-26 - * UPDATES AND DOCS AT: http://www.greensock.com - * - * Includes all of the following: TweenLite, TweenMax, TimelineLite, TimelineMax, EasePack, CSSPlugin, RoundPropsPlugin, BezierPlugin, AttrPlugin, DirectionalRotationPlugin - * - * @license Copyright (c) 2008-2014, GreenSock. All rights reserved. - * This work is subject to the terms at http://www.greensock.com/terms_of_use.html or for - * Club GreenSock members, the software agreement that was issued with your membership. - * - * @author: Jack Doyle, jack@greensock.com - **/ - -(window._gsQueue || (window._gsQueue = [])).push( function() { - - "use strict"; - - window._gsDefine("TweenMax", ["core.Animation","core.SimpleTimeline","TweenLite"], function(Animation, SimpleTimeline, TweenLite) { - - var _slice = [].slice, - TweenMax = function(target, duration, vars) { - TweenLite.call(this, target, duration, vars); - this._cycle = 0; - this._yoyo = (this.vars.yoyo === true); - this._repeat = this.vars.repeat || 0; - this._repeatDelay = this.vars.repeatDelay || 0; - this._dirty = true; //ensures that if there is any repeat, the totalDuration will get recalculated to accurately report it. - this.render = TweenMax.prototype.render; //speed optimization (avoid prototype lookup on this "hot" method) - }, - _tinyNum = 0.0000000001, - TweenLiteInternals = TweenLite._internals, - _isSelector = TweenLiteInternals.isSelector, - _isArray = TweenLiteInternals.isArray, - p = TweenMax.prototype = TweenLite.to({}, 0.1, {}), - _blankArray = []; - - TweenMax.version = "1.12.1"; - p.constructor = TweenMax; - p.kill()._gc = false; - TweenMax.killTweensOf = TweenMax.killDelayedCallsTo = TweenLite.killTweensOf; - TweenMax.getTweensOf = TweenLite.getTweensOf; - TweenMax.lagSmoothing = TweenLite.lagSmoothing; - TweenMax.ticker = TweenLite.ticker; - TweenMax.render = TweenLite.render; - - p.invalidate = function() { - this._yoyo = (this.vars.yoyo === true); - this._repeat = this.vars.repeat || 0; - this._repeatDelay = this.vars.repeatDelay || 0; - this._uncache(true); - return TweenLite.prototype.invalidate.call(this); - }; - - p.updateTo = function(vars, resetDuration) { - var curRatio = this.ratio, p; - if (resetDuration && this._startTime < this._timeline._time) { - this._startTime = this._timeline._time; - this._uncache(false); - if (this._gc) { - this._enabled(true, false); - } else { - this._timeline.insert(this, this._startTime - this._delay); //ensures that any necessary re-sequencing of Animations in the timeline occurs to make sure the rendering order is correct. - } - } - for (p in vars) { - this.vars[p] = vars[p]; - } - if (this._initted) { - if (resetDuration) { - this._initted = false; - } else { - if (this._gc) { - this._enabled(true, false); - } - if (this._notifyPluginsOfEnabled && this._firstPT) { - TweenLite._onPluginEvent("_onDisable", this); //in case a plugin like MotionBlur must perform some cleanup tasks - } - if (this._time / this._duration > 0.998) { //if the tween has finished (or come extremely close to finishing), we just need to rewind it to 0 and then render it again at the end which forces it to re-initialize (parsing the new vars). We allow tweens that are close to finishing (but haven't quite finished) to work this way too because otherwise, the values are so small when determining where to project the starting values that binary math issues creep in and can make the tween appear to render incorrectly when run backwards. - var prevTime = this._time; - this.render(0, true, false); - this._initted = false; - this.render(prevTime, true, false); - } else if (this._time > 0) { - this._initted = false; - this._init(); - var inv = 1 / (1 - curRatio), - pt = this._firstPT, endValue; - while (pt) { - endValue = pt.s + pt.c; - pt.c *= inv; - pt.s = endValue - pt.c; - pt = pt._next; - } - } - } - } - return this; - }; - - p.render = function(time, suppressEvents, force) { - if (!this._initted) if (this._duration === 0 && this.vars.repeat) { //zero duration tweens that render immediately have render() called from TweenLite's constructor, before TweenMax's constructor has finished setting _repeat, _repeatDelay, and _yoyo which are critical in determining totalDuration() so we need to call invalidate() which is a low-kb way to get those set properly. - this.invalidate(); - } - var totalDur = (!this._dirty) ? this._totalDuration : this.totalDuration(), - prevTime = this._time, - prevTotalTime = this._totalTime, - prevCycle = this._cycle, - duration = this._duration, - prevRawPrevTime = this._rawPrevTime, - isComplete, callback, pt, cycleDuration, r, type, pow, rawPrevTime, i; - if (time >= totalDur) { - this._totalTime = totalDur; - this._cycle = this._repeat; - if (this._yoyo && (this._cycle & 1) !== 0) { - this._time = 0; - this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0; - } else { - this._time = duration; - this.ratio = this._ease._calcEnd ? this._ease.getRatio(1) : 1; - } - if (!this._reversed) { - isComplete = true; - callback = "onComplete"; - } - if (duration === 0) if (this._initted || !this.vars.lazy || force) { //zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. - if (this._startTime === this._timeline._duration) { //if a zero-duration tween is at the VERY end of a timeline and that timeline renders at its end, it will typically add a tiny bit of cushion to the render time to prevent rounding errors from getting in the way of tweens rendering their VERY end. If we then reverse() that timeline, the zero-duration tween will trigger its onReverseComplete even though technically the playhead didn't pass over it again. It's a very specific edge case we must accommodate. - time = 0; - } - if (time === 0 || prevRawPrevTime < 0 || prevRawPrevTime === _tinyNum) if (prevRawPrevTime !== time) { - force = true; - if (prevRawPrevTime > _tinyNum) { - callback = "onReverseComplete"; - } - } - this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - } - - } else if (time < 0.0000001) { //to work around occasional floating point math artifacts, round super small values to 0. - this._totalTime = this._time = this._cycle = 0; - this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0; - if (prevTotalTime !== 0 || (duration === 0 && prevRawPrevTime > 0 && prevRawPrevTime !== _tinyNum)) { - callback = "onReverseComplete"; - isComplete = this._reversed; - } - if (time < 0) { - this._active = false; - if (duration === 0) if (this._initted || !this.vars.lazy || force) { //zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. - if (prevRawPrevTime >= 0) { - force = true; - } - this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - } - } else if (!this._initted) { //if we render the very beginning (time == 0) of a fromTo(), we must force the render (normal tweens wouldn't need to render at a time of 0 when the prevTime was also 0). This is also mandatory to make sure overwriting kicks in immediately. - force = true; - } - } else { - this._totalTime = this._time = time; - - if (this._repeat !== 0) { - cycleDuration = duration + this._repeatDelay; - this._cycle = (this._totalTime / cycleDuration) >> 0; //originally _totalTime % cycleDuration but floating point errors caused problems, so I normalized it. (4 % 0.8 should be 0 but Flash reports it as 0.79999999!) - if (this._cycle !== 0) if (this._cycle === this._totalTime / cycleDuration) { - this._cycle--; //otherwise when rendered exactly at the end time, it will act as though it is repeating (at the beginning) - } - this._time = this._totalTime - (this._cycle * cycleDuration); - if (this._yoyo) if ((this._cycle & 1) !== 0) { - this._time = duration - this._time; - } - if (this._time > duration) { - this._time = duration; - } else if (this._time < 0) { - this._time = 0; - } - } - - if (this._easeType) { - r = this._time / duration; - type = this._easeType; - pow = this._easePower; - if (type === 1 || (type === 3 && r >= 0.5)) { - r = 1 - r; - } - if (type === 3) { - r *= 2; - } - if (pow === 1) { - r *= r; - } else if (pow === 2) { - r *= r * r; - } else if (pow === 3) { - r *= r * r * r; - } else if (pow === 4) { - r *= r * r * r * r; - } - - if (type === 1) { - this.ratio = 1 - r; - } else if (type === 2) { - this.ratio = r; - } else if (this._time / duration < 0.5) { - this.ratio = r / 2; - } else { - this.ratio = 1 - (r / 2); - } - - } else { - this.ratio = this._ease.getRatio(this._time / duration); - } - - } - - if (prevTime === this._time && !force && prevCycle === this._cycle) { - if (prevTotalTime !== this._totalTime) if (this._onUpdate) if (!suppressEvents) { //so that onUpdate fires even during the repeatDelay - as long as the totalTime changed, we should trigger onUpdate. - this._onUpdate.apply(this.vars.onUpdateScope || this, this.vars.onUpdateParams || _blankArray); - } - return; - } else if (!this._initted) { - this._init(); - if (!this._initted || this._gc) { //immediateRender tweens typically won't initialize until the playhead advances (_time is greater than 0) in order to ensure that overwriting occurs properly. Also, if all of the tweening properties have been overwritten (which would cause _gc to be true, as set in _init()), we shouldn't continue otherwise an onStart callback could be called for example. - return; - } else if (!force && this._firstPT && ((this.vars.lazy !== false && this._duration) || (this.vars.lazy && !this._duration))) { //we stick it in the queue for rendering at the very end of the tick - this is a performance optimization because browsers invalidate styles and force a recalculation if you read, write, and then read style data (so it's better to read/read/read/write/write/write than read/write/read/write/read/write). The down side, of course, is that usually you WANT things to render immediately because you may have code running right after that which depends on the change. Like imagine running TweenLite.set(...) and then immediately after that, creating a nother tween that animates the same property to another value; the starting values of that 2nd tween wouldn't be accurate if lazy is true. - this._time = prevTime; - this._totalTime = prevTotalTime; - this._rawPrevTime = prevRawPrevTime; - this._cycle = prevCycle; - TweenLiteInternals.lazyTweens.push(this); - this._lazy = time; - return; - } - //_ease is initially set to defaultEase, so now that init() has run, _ease is set properly and we need to recalculate the ratio. Overall this is faster than using conditional logic earlier in the method to avoid having to set ratio twice because we only init() once but renderTime() gets called VERY frequently. - if (this._time && !isComplete) { - this.ratio = this._ease.getRatio(this._time / duration); - } else if (isComplete && this._ease._calcEnd) { - this.ratio = this._ease.getRatio((this._time === 0) ? 0 : 1); - } - } - if (this._lazy !== false) { - this._lazy = false; - } - - if (!this._active) if (!this._paused && this._time !== prevTime && time >= 0) { - this._active = true; //so that if the user renders a tween (as opposed to the timeline rendering it), the timeline is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the tween already finished but the user manually re-renders it as halfway done. - } - if (prevTotalTime === 0) { - if (this._initted === 2 && time > 0) { - //this.invalidate(); - this._init(); //will just apply overwriting since _initted of (2) means it was a from() tween that had immediateRender:true - } - if (this._startAt) { - if (time >= 0) { - this._startAt.render(time, suppressEvents, force); - } else if (!callback) { - callback = "_dummyGS"; //if no callback is defined, use a dummy value just so that the condition at the end evaluates as true because _startAt should render AFTER the normal render loop when the time is negative. We could handle this in a more intuitive way, of course, but the render loop is the MOST important thing to optimize, so this technique allows us to avoid adding extra conditional logic in a high-frequency area. - } - } - if (this.vars.onStart) if (this._totalTime !== 0 || duration === 0) if (!suppressEvents) { - this.vars.onStart.apply(this.vars.onStartScope || this, this.vars.onStartParams || _blankArray); - } - } - - pt = this._firstPT; - while (pt) { - if (pt.f) { - pt.t[pt.p](pt.c * this.ratio + pt.s); - } else { - pt.t[pt.p] = pt.c * this.ratio + pt.s; - } - pt = pt._next; - } - - if (this._onUpdate) { - if (time < 0) if (this._startAt && this._startTime) { //if the tween is positioned at the VERY beginning (_startTime 0) of its parent timeline, it's illegal for the playhead to go back further, so we should not render the recorded startAt values. - this._startAt.render(time, suppressEvents, force); //note: for performance reasons, we tuck this conditional logic inside less traveled areas (most tweens don't have an onUpdate). We'd just have it at the end before the onComplete, but the values should be updated before any onUpdate is called, so we ALSO put it here and then if it's not called, we do so later near the onComplete. - } - if (!suppressEvents) if (this._totalTime !== prevTotalTime || isComplete) { - this._onUpdate.apply(this.vars.onUpdateScope || this, this.vars.onUpdateParams || _blankArray); - } - } - if (this._cycle !== prevCycle) if (!suppressEvents) if (!this._gc) if (this.vars.onRepeat) { - this.vars.onRepeat.apply(this.vars.onRepeatScope || this, this.vars.onRepeatParams || _blankArray); - } - if (callback) if (!this._gc) { //check gc because there's a chance that kill() could be called in an onUpdate - if (time < 0 && this._startAt && !this._onUpdate && this._startTime) { //if the tween is positioned at the VERY beginning (_startTime 0) of its parent timeline, it's illegal for the playhead to go back further, so we should not render the recorded startAt values. - this._startAt.render(time, suppressEvents, force); - } - if (isComplete) { - if (this._timeline.autoRemoveChildren) { - this._enabled(false, false); - } - this._active = false; - } - if (!suppressEvents && this.vars[callback]) { - this.vars[callback].apply(this.vars[callback + "Scope"] || this, this.vars[callback + "Params"] || _blankArray); - } - if (duration === 0 && this._rawPrevTime === _tinyNum && rawPrevTime !== _tinyNum) { //the onComplete or onReverseComplete could trigger movement of the playhead and for zero-duration tweens (which must discern direction) that land directly back on their start time, we don't want to fire again on the next render. Think of several addPause()'s in a timeline that forces the playhead to a certain spot, but what if it's already paused and another tween is tweening the "time" of the timeline? Each time it moves [forward] past that spot, it would move back, and since suppressEvents is true, it'd reset _rawPrevTime to _tinyNum so that when it begins again, the callback would fire (so ultimately it could bounce back and forth during that tween). Again, this is a very uncommon scenario, but possible nonetheless. - this._rawPrevTime = 0; - } - } - }; - -//---- STATIC FUNCTIONS ----------------------------------------------------------------------------------------------------------- - - TweenMax.to = function(target, duration, vars) { - return new TweenMax(target, duration, vars); - }; - - TweenMax.from = function(target, duration, vars) { - vars.runBackwards = true; - vars.immediateRender = (vars.immediateRender != false); - return new TweenMax(target, duration, vars); - }; - - TweenMax.fromTo = function(target, duration, fromVars, toVars) { - toVars.startAt = fromVars; - toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false); - return new TweenMax(target, duration, toVars); - }; - - TweenMax.staggerTo = TweenMax.allTo = function(targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - stagger = stagger || 0; - var delay = vars.delay || 0, - a = [], - finalComplete = function() { - if (vars.onComplete) { - vars.onComplete.apply(vars.onCompleteScope || this, arguments); - } - onCompleteAll.apply(onCompleteAllScope || this, onCompleteAllParams || _blankArray); - }, - l, copy, i, p; - if (!_isArray(targets)) { - if (typeof(targets) === "string") { - targets = TweenLite.selector(targets) || targets; - } - if (_isSelector(targets)) { - targets = _slice.call(targets, 0); - } - } - l = targets.length; - for (i = 0; i < l; i++) { - copy = {}; - for (p in vars) { - copy[p] = vars[p]; - } - copy.delay = delay; - if (i === l - 1 && onCompleteAll) { - copy.onComplete = finalComplete; - } - a[i] = new TweenMax(targets[i], duration, copy); - delay += stagger; - } - return a; - }; - - TweenMax.staggerFrom = TweenMax.allFrom = function(targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - vars.runBackwards = true; - vars.immediateRender = (vars.immediateRender != false); - return TweenMax.staggerTo(targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope); - }; - - TweenMax.staggerFromTo = TweenMax.allFromTo = function(targets, duration, fromVars, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - toVars.startAt = fromVars; - toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false); - return TweenMax.staggerTo(targets, duration, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope); - }; - - TweenMax.delayedCall = function(delay, callback, params, scope, useFrames) { - return new TweenMax(callback, 0, {delay:delay, onComplete:callback, onCompleteParams:params, onCompleteScope:scope, onReverseComplete:callback, onReverseCompleteParams:params, onReverseCompleteScope:scope, immediateRender:false, useFrames:useFrames, overwrite:0}); - }; - - TweenMax.set = function(target, vars) { - return new TweenMax(target, 0, vars); - }; - - TweenMax.isTweening = function(target) { - return (TweenLite.getTweensOf(target, true).length > 0); - }; - - var _getChildrenOf = function(timeline, includeTimelines) { - var a = [], - cnt = 0, - tween = timeline._first; - while (tween) { - if (tween instanceof TweenLite) { - a[cnt++] = tween; - } else { - if (includeTimelines) { - a[cnt++] = tween; - } - a = a.concat(_getChildrenOf(tween, includeTimelines)); - cnt = a.length; - } - tween = tween._next; - } - return a; - }, - getAllTweens = TweenMax.getAllTweens = function(includeTimelines) { - return _getChildrenOf(Animation._rootTimeline, includeTimelines).concat( _getChildrenOf(Animation._rootFramesTimeline, includeTimelines) ); - }; - - TweenMax.killAll = function(complete, tweens, delayedCalls, timelines) { - if (tweens == null) { - tweens = true; - } - if (delayedCalls == null) { - delayedCalls = true; - } - var a = getAllTweens((timelines != false)), - l = a.length, - allTrue = (tweens && delayedCalls && timelines), - isDC, tween, i; - for (i = 0; i < l; i++) { - tween = a[i]; - if (allTrue || (tween instanceof SimpleTimeline) || ((isDC = (tween.target === tween.vars.onComplete)) && delayedCalls) || (tweens && !isDC)) { - if (complete) { - tween.totalTime(tween._reversed ? 0 : tween.totalDuration()); - } else { - tween._enabled(false, false); - } - } - } - }; - - TweenMax.killChildTweensOf = function(parent, complete) { - if (parent == null) { - return; - } - var tl = TweenLiteInternals.tweenLookup, - a, curParent, p, i, l; - if (typeof(parent) === "string") { - parent = TweenLite.selector(parent) || parent; - } - if (_isSelector(parent)) { - parent = _slice.call(parent, 0); - } - if (_isArray(parent)) { - i = parent.length; - while (--i > -1) { - TweenMax.killChildTweensOf(parent[i], complete); - } - return; - } - a = []; - for (p in tl) { - curParent = tl[p].target.parentNode; - while (curParent) { - if (curParent === parent) { - a = a.concat(tl[p].tweens); - } - curParent = curParent.parentNode; - } - } - l = a.length; - for (i = 0; i < l; i++) { - if (complete) { - a[i].totalTime(a[i].totalDuration()); - } - a[i]._enabled(false, false); - } - }; - - var _changePause = function(pause, tweens, delayedCalls, timelines) { - tweens = (tweens !== false); - delayedCalls = (delayedCalls !== false); - timelines = (timelines !== false); - var a = getAllTweens(timelines), - allTrue = (tweens && delayedCalls && timelines), - i = a.length, - isDC, tween; - while (--i > -1) { - tween = a[i]; - if (allTrue || (tween instanceof SimpleTimeline) || ((isDC = (tween.target === tween.vars.onComplete)) && delayedCalls) || (tweens && !isDC)) { - tween.paused(pause); - } - } - }; - - TweenMax.pauseAll = function(tweens, delayedCalls, timelines) { - _changePause(true, tweens, delayedCalls, timelines); - }; - - TweenMax.resumeAll = function(tweens, delayedCalls, timelines) { - _changePause(false, tweens, delayedCalls, timelines); - }; - - TweenMax.globalTimeScale = function(value) { - var tl = Animation._rootTimeline, - t = TweenLite.ticker.time; - if (!arguments.length) { - return tl._timeScale; - } - value = value || _tinyNum; //can't allow zero because it'll throw the math off - tl._startTime = t - ((t - tl._startTime) * tl._timeScale / value); - tl = Animation._rootFramesTimeline; - t = TweenLite.ticker.frame; - tl._startTime = t - ((t - tl._startTime) * tl._timeScale / value); - tl._timeScale = Animation._rootTimeline._timeScale = value; - return value; - }; - - -//---- GETTERS / SETTERS ---------------------------------------------------------------------------------------------------------- - - p.progress = function(value) { - return (!arguments.length) ? this._time / this.duration() : this.totalTime( this.duration() * ((this._yoyo && (this._cycle & 1) !== 0) ? 1 - value : value) + (this._cycle * (this._duration + this._repeatDelay)), false); - }; - - p.totalProgress = function(value) { - return (!arguments.length) ? this._totalTime / this.totalDuration() : this.totalTime( this.totalDuration() * value, false); - }; - - p.time = function(value, suppressEvents) { - if (!arguments.length) { - return this._time; - } - if (this._dirty) { - this.totalDuration(); - } - if (value > this._duration) { - value = this._duration; - } - if (this._yoyo && (this._cycle & 1) !== 0) { - value = (this._duration - value) + (this._cycle * (this._duration + this._repeatDelay)); - } else if (this._repeat !== 0) { - value += this._cycle * (this._duration + this._repeatDelay); - } - return this.totalTime(value, suppressEvents); - }; - - p.duration = function(value) { - if (!arguments.length) { - return this._duration; //don't set _dirty = false because there could be repeats that haven't been factored into the _totalDuration yet. Otherwise, if you create a repeated TweenMax and then immediately check its duration(), it would cache the value and the totalDuration would not be correct, thus repeats wouldn't take effect. - } - return Animation.prototype.duration.call(this, value); - }; - - p.totalDuration = function(value) { - if (!arguments.length) { - if (this._dirty) { - //instead of Infinity, we use 999999999999 so that we can accommodate reverses - this._totalDuration = (this._repeat === -1) ? 999999999999 : this._duration * (this._repeat + 1) + (this._repeatDelay * this._repeat); - this._dirty = false; - } - return this._totalDuration; - } - return (this._repeat === -1) ? this : this.duration( (value - (this._repeat * this._repeatDelay)) / (this._repeat + 1) ); - }; - - p.repeat = function(value) { - if (!arguments.length) { - return this._repeat; - } - this._repeat = value; - return this._uncache(true); - }; - - p.repeatDelay = function(value) { - if (!arguments.length) { - return this._repeatDelay; - } - this._repeatDelay = value; - return this._uncache(true); - }; - - p.yoyo = function(value) { - if (!arguments.length) { - return this._yoyo; - } - this._yoyo = value; - return this; - }; - - - return TweenMax; - - }, true); - - - - - - - - -/* - * ---------------------------------------------------------------- - * TimelineLite - * ---------------------------------------------------------------- - */ - window._gsDefine("TimelineLite", ["core.Animation","core.SimpleTimeline","TweenLite"], function(Animation, SimpleTimeline, TweenLite) { - - var TimelineLite = function(vars) { - SimpleTimeline.call(this, vars); - this._labels = {}; - this.autoRemoveChildren = (this.vars.autoRemoveChildren === true); - this.smoothChildTiming = (this.vars.smoothChildTiming === true); - this._sortChildren = true; - this._onUpdate = this.vars.onUpdate; - var v = this.vars, - val, p; - for (p in v) { - val = v[p]; - if (_isArray(val)) if (val.join("").indexOf("{self}") !== -1) { - v[p] = this._swapSelfInParams(val); - } - } - if (_isArray(v.tweens)) { - this.add(v.tweens, 0, v.align, v.stagger); - } - }, - _tinyNum = 0.0000000001, - _isSelector = TweenLite._internals.isSelector, - _isArray = TweenLite._internals.isArray, - _blankArray = [], - _globals = window._gsDefine.globals, - _copy = function(vars) { - var copy = {}, p; - for (p in vars) { - copy[p] = vars[p]; - } - return copy; - }, - _pauseCallback = function(tween, callback, params, scope) { - tween._timeline.pause(tween._startTime); - if (callback) { - callback.apply(scope || tween._timeline, params || _blankArray); - } - }, - _slice = _blankArray.slice, - p = TimelineLite.prototype = new SimpleTimeline(); - - TimelineLite.version = "1.12.1"; - p.constructor = TimelineLite; - p.kill()._gc = false; - - p.to = function(target, duration, vars, position) { - var Engine = (vars.repeat && _globals.TweenMax) || TweenLite; - return duration ? this.add( new Engine(target, duration, vars), position) : this.set(target, vars, position); - }; - - p.from = function(target, duration, vars, position) { - return this.add( ((vars.repeat && _globals.TweenMax) || TweenLite).from(target, duration, vars), position); - }; - - p.fromTo = function(target, duration, fromVars, toVars, position) { - var Engine = (toVars.repeat && _globals.TweenMax) || TweenLite; - return duration ? this.add( Engine.fromTo(target, duration, fromVars, toVars), position) : this.set(target, toVars, position); - }; - - p.staggerTo = function(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - var tl = new TimelineLite({onComplete:onCompleteAll, onCompleteParams:onCompleteAllParams, onCompleteScope:onCompleteAllScope, smoothChildTiming:this.smoothChildTiming}), - i; - if (typeof(targets) === "string") { - targets = TweenLite.selector(targets) || targets; - } - if (_isSelector(targets)) { //senses if the targets object is a selector. If it is, we should translate it into an array. - targets = _slice.call(targets, 0); - } - stagger = stagger || 0; - for (i = 0; i < targets.length; i++) { - if (vars.startAt) { - vars.startAt = _copy(vars.startAt); - } - tl.to(targets[i], duration, _copy(vars), i * stagger); - } - return this.add(tl, position); - }; - - p.staggerFrom = function(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - vars.immediateRender = (vars.immediateRender != false); - vars.runBackwards = true; - return this.staggerTo(targets, duration, vars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope); - }; - - p.staggerFromTo = function(targets, duration, fromVars, toVars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope) { - toVars.startAt = fromVars; - toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false); - return this.staggerTo(targets, duration, toVars, stagger, position, onCompleteAll, onCompleteAllParams, onCompleteAllScope); - }; - - p.call = function(callback, params, scope, position) { - return this.add( TweenLite.delayedCall(0, callback, params, scope), position); - }; - - p.set = function(target, vars, position) { - position = this._parseTimeOrLabel(position, 0, true); - if (vars.immediateRender == null) { - vars.immediateRender = (position === this._time && !this._paused); - } - return this.add( new TweenLite(target, 0, vars), position); - }; - - TimelineLite.exportRoot = function(vars, ignoreDelayedCalls) { - vars = vars || {}; - if (vars.smoothChildTiming == null) { - vars.smoothChildTiming = true; - } - var tl = new TimelineLite(vars), - root = tl._timeline, - tween, next; - if (ignoreDelayedCalls == null) { - ignoreDelayedCalls = true; - } - root._remove(tl, true); - tl._startTime = 0; - tl._rawPrevTime = tl._time = tl._totalTime = root._time; - tween = root._first; - while (tween) { - next = tween._next; - if (!ignoreDelayedCalls || !(tween instanceof TweenLite && tween.target === tween.vars.onComplete)) { - tl.add(tween, tween._startTime - tween._delay); - } - tween = next; - } - root.add(tl, 0); - return tl; - }; - - p.add = function(value, position, align, stagger) { - var curTime, l, i, child, tl, beforeRawTime; - if (typeof(position) !== "number") { - position = this._parseTimeOrLabel(position, 0, true, value); - } - if (!(value instanceof Animation)) { - if ((value instanceof Array) || (value && value.push && _isArray(value))) { - align = align || "normal"; - stagger = stagger || 0; - curTime = position; - l = value.length; - for (i = 0; i < l; i++) { - if (_isArray(child = value[i])) { - child = new TimelineLite({tweens:child}); - } - this.add(child, curTime); - if (typeof(child) !== "string" && typeof(child) !== "function") { - if (align === "sequence") { - curTime = child._startTime + (child.totalDuration() / child._timeScale); - } else if (align === "start") { - child._startTime -= child.delay(); - } - } - curTime += stagger; - } - return this._uncache(true); - } else if (typeof(value) === "string") { - return this.addLabel(value, position); - } else if (typeof(value) === "function") { - value = TweenLite.delayedCall(0, value); - } else { - throw("Cannot add " + value + " into the timeline; it is not a tween, timeline, function, or string."); - } - } - - SimpleTimeline.prototype.add.call(this, value, position); - - //if the timeline has already ended but the inserted tween/timeline extends the duration, we should enable this timeline again so that it renders properly. We should also align the playhead with the parent timeline's when appropriate. - if (this._gc || this._time === this._duration) if (!this._paused) if (this._duration < this.duration()) { - //in case any of the ancestors had completed but should now be enabled... - tl = this; - beforeRawTime = (tl.rawTime() > value._startTime); //if the tween is placed on the timeline so that it starts BEFORE the current rawTime, we should align the playhead (move the timeline). This is because sometimes users will create a timeline, let it finish, and much later append a tween and expect it to run instead of jumping to its end state. While technically one could argue that it should jump to its end state, that's not what users intuitively expect. - while (tl._timeline) { - if (beforeRawTime && tl._timeline.smoothChildTiming) { - tl.totalTime(tl._totalTime, true); //moves the timeline (shifts its startTime) if necessary, and also enables it. - } else if (tl._gc) { - tl._enabled(true, false); - } - tl = tl._timeline; - } - } - - return this; - }; - - p.remove = function(value) { - if (value instanceof Animation) { - return this._remove(value, false); - } else if (value instanceof Array || (value && value.push && _isArray(value))) { - var i = value.length; - while (--i > -1) { - this.remove(value[i]); - } - return this; - } else if (typeof(value) === "string") { - return this.removeLabel(value); - } - return this.kill(null, value); - }; - - p._remove = function(tween, skipDisable) { - SimpleTimeline.prototype._remove.call(this, tween, skipDisable); - var last = this._last; - if (!last) { - this._time = this._totalTime = this._duration = this._totalDuration = 0; - } else if (this._time > last._startTime + last._totalDuration / last._timeScale) { - this._time = this.duration(); - this._totalTime = this._totalDuration; - } - return this; - }; - - p.append = function(value, offsetOrLabel) { - return this.add(value, this._parseTimeOrLabel(null, offsetOrLabel, true, value)); - }; - - p.insert = p.insertMultiple = function(value, position, align, stagger) { - return this.add(value, position || 0, align, stagger); - }; - - p.appendMultiple = function(tweens, offsetOrLabel, align, stagger) { - return this.add(tweens, this._parseTimeOrLabel(null, offsetOrLabel, true, tweens), align, stagger); - }; - - p.addLabel = function(label, position) { - this._labels[label] = this._parseTimeOrLabel(position); - return this; - }; - - p.addPause = function(position, callback, params, scope) { - return this.call(_pauseCallback, ["{self}", callback, params, scope], this, position); - }; - - p.removeLabel = function(label) { - delete this._labels[label]; - return this; - }; - - p.getLabelTime = function(label) { - return (this._labels[label] != null) ? this._labels[label] : -1; - }; - - p._parseTimeOrLabel = function(timeOrLabel, offsetOrLabel, appendIfAbsent, ignore) { - var i; - //if we're about to add a tween/timeline (or an array of them) that's already a child of this timeline, we should remove it first so that it doesn't contaminate the duration(). - if (ignore instanceof Animation && ignore.timeline === this) { - this.remove(ignore); - } else if (ignore && ((ignore instanceof Array) || (ignore.push && _isArray(ignore)))) { - i = ignore.length; - while (--i > -1) { - if (ignore[i] instanceof Animation && ignore[i].timeline === this) { - this.remove(ignore[i]); - } - } - } - if (typeof(offsetOrLabel) === "string") { - return this._parseTimeOrLabel(offsetOrLabel, (appendIfAbsent && typeof(timeOrLabel) === "number" && this._labels[offsetOrLabel] == null) ? timeOrLabel - this.duration() : 0, appendIfAbsent); - } - offsetOrLabel = offsetOrLabel || 0; - if (typeof(timeOrLabel) === "string" && (isNaN(timeOrLabel) || this._labels[timeOrLabel] != null)) { //if the string is a number like "1", check to see if there's a label with that name, otherwise interpret it as a number (absolute value). - i = timeOrLabel.indexOf("="); - if (i === -1) { - if (this._labels[timeOrLabel] == null) { - return appendIfAbsent ? (this._labels[timeOrLabel] = this.duration() + offsetOrLabel) : offsetOrLabel; - } - return this._labels[timeOrLabel] + offsetOrLabel; - } - offsetOrLabel = parseInt(timeOrLabel.charAt(i-1) + "1", 10) * Number(timeOrLabel.substr(i+1)); - timeOrLabel = (i > 1) ? this._parseTimeOrLabel(timeOrLabel.substr(0, i-1), 0, appendIfAbsent) : this.duration(); - } else if (timeOrLabel == null) { - timeOrLabel = this.duration(); - } - return Number(timeOrLabel) + offsetOrLabel; - }; - - p.seek = function(position, suppressEvents) { - return this.totalTime((typeof(position) === "number") ? position : this._parseTimeOrLabel(position), (suppressEvents !== false)); - }; - - p.stop = function() { - return this.paused(true); - }; - - p.gotoAndPlay = function(position, suppressEvents) { - return this.play(position, suppressEvents); - }; - - p.gotoAndStop = function(position, suppressEvents) { - return this.pause(position, suppressEvents); - }; - - p.render = function(time, suppressEvents, force) { - if (this._gc) { - this._enabled(true, false); - } - var totalDur = (!this._dirty) ? this._totalDuration : this.totalDuration(), - prevTime = this._time, - prevStart = this._startTime, - prevTimeScale = this._timeScale, - prevPaused = this._paused, - tween, isComplete, next, callback, internalForce; - if (time >= totalDur) { - this._totalTime = this._time = totalDur; - if (!this._reversed) if (!this._hasPausedChild()) { - isComplete = true; - callback = "onComplete"; - if (this._duration === 0) if (time === 0 || this._rawPrevTime < 0 || this._rawPrevTime === _tinyNum) if (this._rawPrevTime !== time && this._first) { - internalForce = true; - if (this._rawPrevTime > _tinyNum) { - callback = "onReverseComplete"; - } - } - } - this._rawPrevTime = (this._duration || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - time = totalDur + 0.0001; //to avoid occasional floating point rounding errors - sometimes child tweens/timelines were not being fully completed (their progress might be 0.999999999999998 instead of 1 because when _time - tween._startTime is performed, floating point errors would return a value that was SLIGHTLY off). Try (999999999999.7 - 999999999999) * 1 = 0.699951171875 instead of 0.7. - - } else if (time < 0.0000001) { //to work around occasional floating point math artifacts, round super small values to 0. - this._totalTime = this._time = 0; - if (prevTime !== 0 || (this._duration === 0 && this._rawPrevTime !== _tinyNum && (this._rawPrevTime > 0 || (time < 0 && this._rawPrevTime >= 0)))) { - callback = "onReverseComplete"; - isComplete = this._reversed; - } - if (time < 0) { - this._active = false; - if (this._duration === 0) if (this._rawPrevTime >= 0 && this._first) { //zero-duration timelines are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. - internalForce = true; - } - this._rawPrevTime = time; - } else { - this._rawPrevTime = (this._duration || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - - time = 0; //to avoid occasional floating point rounding errors (could cause problems especially with zero-duration tweens at the very beginning of the timeline) - if (!this._initted) { - internalForce = true; - } - } - - } else { - this._totalTime = this._time = this._rawPrevTime = time; - } - if ((this._time === prevTime || !this._first) && !force && !internalForce) { - return; - } else if (!this._initted) { - this._initted = true; - } - - if (!this._active) if (!this._paused && this._time !== prevTime && time > 0) { - this._active = true; //so that if the user renders the timeline (as opposed to the parent timeline rendering it), it is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the timeline already finished but the user manually re-renders it as halfway done, for example. - } - - if (prevTime === 0) if (this.vars.onStart) if (this._time !== 0) if (!suppressEvents) { - this.vars.onStart.apply(this.vars.onStartScope || this, this.vars.onStartParams || _blankArray); - } - - if (this._time >= prevTime) { - tween = this._first; - while (tween) { - next = tween._next; //record it here because the value could change after rendering... - if (this._paused && !prevPaused) { //in case a tween pauses the timeline when rendering - break; - } else if (tween._active || (tween._startTime <= this._time && !tween._paused && !tween._gc)) { - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - } else { - tween = this._last; - while (tween) { - next = tween._prev; //record it here because the value could change after rendering... - if (this._paused && !prevPaused) { //in case a tween pauses the timeline when rendering - break; - } else if (tween._active || (tween._startTime <= prevTime && !tween._paused && !tween._gc)) { - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - } - - if (this._onUpdate) if (!suppressEvents) { - this._onUpdate.apply(this.vars.onUpdateScope || this, this.vars.onUpdateParams || _blankArray); - } - - if (callback) if (!this._gc) if (prevStart === this._startTime || prevTimeScale !== this._timeScale) if (this._time === 0 || totalDur >= this.totalDuration()) { //if one of the tweens that was rendered altered this timeline's startTime (like if an onComplete reversed the timeline), it probably isn't complete. If it is, don't worry, because whatever call altered the startTime would complete if it was necessary at the new time. The only exception is the timeScale property. Also check _gc because there's a chance that kill() could be called in an onUpdate - if (isComplete) { - if (this._timeline.autoRemoveChildren) { - this._enabled(false, false); - } - this._active = false; - } - if (!suppressEvents && this.vars[callback]) { - this.vars[callback].apply(this.vars[callback + "Scope"] || this, this.vars[callback + "Params"] || _blankArray); - } - } - }; - - p._hasPausedChild = function() { - var tween = this._first; - while (tween) { - if (tween._paused || ((tween instanceof TimelineLite) && tween._hasPausedChild())) { - return true; - } - tween = tween._next; - } - return false; - }; - - p.getChildren = function(nested, tweens, timelines, ignoreBeforeTime) { - ignoreBeforeTime = ignoreBeforeTime || -9999999999; - var a = [], - tween = this._first, - cnt = 0; - while (tween) { - if (tween._startTime < ignoreBeforeTime) { - //do nothing - } else if (tween instanceof TweenLite) { - if (tweens !== false) { - a[cnt++] = tween; - } - } else { - if (timelines !== false) { - a[cnt++] = tween; - } - if (nested !== false) { - a = a.concat(tween.getChildren(true, tweens, timelines)); - cnt = a.length; - } - } - tween = tween._next; - } - return a; - }; - - p.getTweensOf = function(target, nested) { - var disabled = this._gc, - a = [], - cnt = 0, - tweens, i; - if (disabled) { - this._enabled(true, true); //getTweensOf() filters out disabled tweens, and we have to mark them as _gc = true when the timeline completes in order to allow clean garbage collection, so temporarily re-enable the timeline here. - } - tweens = TweenLite.getTweensOf(target); - i = tweens.length; - while (--i > -1) { - if (tweens[i].timeline === this || (nested && this._contains(tweens[i]))) { - a[cnt++] = tweens[i]; - } - } - if (disabled) { - this._enabled(false, true); - } - return a; - }; - - p._contains = function(tween) { - var tl = tween.timeline; - while (tl) { - if (tl === this) { - return true; - } - tl = tl.timeline; - } - return false; - }; - - p.shiftChildren = function(amount, adjustLabels, ignoreBeforeTime) { - ignoreBeforeTime = ignoreBeforeTime || 0; - var tween = this._first, - labels = this._labels, - p; - while (tween) { - if (tween._startTime >= ignoreBeforeTime) { - tween._startTime += amount; - } - tween = tween._next; - } - if (adjustLabels) { - for (p in labels) { - if (labels[p] >= ignoreBeforeTime) { - labels[p] += amount; - } - } - } - return this._uncache(true); - }; - - p._kill = function(vars, target) { - if (!vars && !target) { - return this._enabled(false, false); - } - var tweens = (!target) ? this.getChildren(true, true, false) : this.getTweensOf(target), - i = tweens.length, - changed = false; - while (--i > -1) { - if (tweens[i]._kill(vars, target)) { - changed = true; - } - } - return changed; - }; - - p.clear = function(labels) { - var tweens = this.getChildren(false, true, true), - i = tweens.length; - this._time = this._totalTime = 0; - while (--i > -1) { - tweens[i]._enabled(false, false); - } - if (labels !== false) { - this._labels = {}; - } - return this._uncache(true); - }; - - p.invalidate = function() { - var tween = this._first; - while (tween) { - tween.invalidate(); - tween = tween._next; - } - return this; - }; - - p._enabled = function(enabled, ignoreTimeline) { - if (enabled === this._gc) { - var tween = this._first; - while (tween) { - tween._enabled(enabled, true); - tween = tween._next; - } - } - return SimpleTimeline.prototype._enabled.call(this, enabled, ignoreTimeline); - }; - - p.duration = function(value) { - if (!arguments.length) { - if (this._dirty) { - this.totalDuration(); //just triggers recalculation - } - return this._duration; - } - if (this.duration() !== 0 && value !== 0) { - this.timeScale(this._duration / value); - } - return this; - }; - - p.totalDuration = function(value) { - if (!arguments.length) { - if (this._dirty) { - var max = 0, - tween = this._last, - prevStart = 999999999999, - prev, end; - while (tween) { - prev = tween._prev; //record it here in case the tween changes position in the sequence... - if (tween._dirty) { - tween.totalDuration(); //could change the tween._startTime, so make sure the tween's cache is clean before analyzing it. - } - if (tween._startTime > prevStart && this._sortChildren && !tween._paused) { //in case one of the tweens shifted out of order, it needs to be re-inserted into the correct position in the sequence - this.add(tween, tween._startTime - tween._delay); - } else { - prevStart = tween._startTime; - } - if (tween._startTime < 0 && !tween._paused) { //children aren't allowed to have negative startTimes unless smoothChildTiming is true, so adjust here if one is found. - max -= tween._startTime; - if (this._timeline.smoothChildTiming) { - this._startTime += tween._startTime / this._timeScale; - } - this.shiftChildren(-tween._startTime, false, -9999999999); - prevStart = 0; - } - end = tween._startTime + (tween._totalDuration / tween._timeScale); - if (end > max) { - max = end; - } - tween = prev; - } - this._duration = this._totalDuration = max; - this._dirty = false; - } - return this._totalDuration; - } - if (this.totalDuration() !== 0) if (value !== 0) { - this.timeScale(this._totalDuration / value); - } - return this; - }; - - p.usesFrames = function() { - var tl = this._timeline; - while (tl._timeline) { - tl = tl._timeline; - } - return (tl === Animation._rootFramesTimeline); - }; - - p.rawTime = function() { - return this._paused ? this._totalTime : (this._timeline.rawTime() - this._startTime) * this._timeScale; - }; - - return TimelineLite; - - }, true); - - - - - - - - - - - - - -/* - * ---------------------------------------------------------------- - * TimelineMax - * ---------------------------------------------------------------- - */ - window._gsDefine("TimelineMax", ["TimelineLite","TweenLite","easing.Ease"], function(TimelineLite, TweenLite, Ease) { - - var TimelineMax = function(vars) { - TimelineLite.call(this, vars); - this._repeat = this.vars.repeat || 0; - this._repeatDelay = this.vars.repeatDelay || 0; - this._cycle = 0; - this._yoyo = (this.vars.yoyo === true); - this._dirty = true; - }, - _tinyNum = 0.0000000001, - _blankArray = [], - _easeNone = new Ease(null, null, 1, 0), - p = TimelineMax.prototype = new TimelineLite(); - - p.constructor = TimelineMax; - p.kill()._gc = false; - TimelineMax.version = "1.12.1"; - - p.invalidate = function() { - this._yoyo = (this.vars.yoyo === true); - this._repeat = this.vars.repeat || 0; - this._repeatDelay = this.vars.repeatDelay || 0; - this._uncache(true); - return TimelineLite.prototype.invalidate.call(this); - }; - - p.addCallback = function(callback, position, params, scope) { - return this.add( TweenLite.delayedCall(0, callback, params, scope), position); - }; - - p.removeCallback = function(callback, position) { - if (callback) { - if (position == null) { - this._kill(null, callback); - } else { - var a = this.getTweensOf(callback, false), - i = a.length, - time = this._parseTimeOrLabel(position); - while (--i > -1) { - if (a[i]._startTime === time) { - a[i]._enabled(false, false); - } - } - } - } - return this; - }; - - p.tweenTo = function(position, vars) { - vars = vars || {}; - var copy = {ease:_easeNone, overwrite:(vars.delay ? 2 : 1), useFrames:this.usesFrames(), immediateRender:false},//note: set overwrite to 1 (true/all) by default unless there's a delay so that we avoid a racing situation that could happen if, for example, an onmousemove creates the same tweenTo() over and over again. - duration, p, t; - for (p in vars) { - copy[p] = vars[p]; - } - copy.time = this._parseTimeOrLabel(position); - duration = (Math.abs(Number(copy.time) - this._time) / this._timeScale) || 0.001; - t = new TweenLite(this, duration, copy); - copy.onStart = function() { - t.target.paused(true); - if (t.vars.time !== t.target.time() && duration === t.duration()) { //don't make the duration zero - if it's supposed to be zero, don't worry because it's already initting the tween and will complete immediately, effectively making the duration zero anyway. If we make duration zero, the tween won't run at all. - t.duration( Math.abs( t.vars.time - t.target.time()) / t.target._timeScale ); - } - if (vars.onStart) { //in case the user had an onStart in the vars - we don't want to overwrite it. - vars.onStart.apply(vars.onStartScope || t, vars.onStartParams || _blankArray); - } - }; - return t; - }; - - p.tweenFromTo = function(fromPosition, toPosition, vars) { - vars = vars || {}; - fromPosition = this._parseTimeOrLabel(fromPosition); - vars.startAt = {onComplete:this.seek, onCompleteParams:[fromPosition], onCompleteScope:this}; - vars.immediateRender = (vars.immediateRender !== false); - var t = this.tweenTo(toPosition, vars); - return t.duration((Math.abs( t.vars.time - fromPosition) / this._timeScale) || 0.001); - }; - - p.render = function(time, suppressEvents, force) { - if (this._gc) { - this._enabled(true, false); - } - var totalDur = (!this._dirty) ? this._totalDuration : this.totalDuration(), - dur = this._duration, - prevTime = this._time, - prevTotalTime = this._totalTime, - prevStart = this._startTime, - prevTimeScale = this._timeScale, - prevRawPrevTime = this._rawPrevTime, - prevPaused = this._paused, - prevCycle = this._cycle, - tween, isComplete, next, callback, internalForce, cycleDuration; - if (time >= totalDur) { - if (!this._locked) { - this._totalTime = totalDur; - this._cycle = this._repeat; - } - if (!this._reversed) if (!this._hasPausedChild()) { - isComplete = true; - callback = "onComplete"; - if (this._duration === 0) if (time === 0 || prevRawPrevTime < 0 || prevRawPrevTime === _tinyNum) if (prevRawPrevTime !== time && this._first) { - internalForce = true; - if (prevRawPrevTime > _tinyNum) { - callback = "onReverseComplete"; - } - } - } - this._rawPrevTime = (this._duration || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - if (this._yoyo && (this._cycle & 1) !== 0) { - this._time = time = 0; - } else { - this._time = dur; - time = dur + 0.0001; //to avoid occasional floating point rounding errors - sometimes child tweens/timelines were not being fully completed (their progress might be 0.999999999999998 instead of 1 because when _time - tween._startTime is performed, floating point errors would return a value that was SLIGHTLY off). Try (999999999999.7 - 999999999999) * 1 = 0.699951171875 instead of 0.7. We cannot do less then 0.0001 because the same issue can occur when the duration is extremely large like 999999999999 in which case adding 0.00000001, for example, causes it to act like nothing was added. - } - - } else if (time < 0.0000001) { //to work around occasional floating point math artifacts, round super small values to 0. - if (!this._locked) { - this._totalTime = this._cycle = 0; - } - this._time = 0; - if (prevTime !== 0 || (dur === 0 && prevRawPrevTime !== _tinyNum && (prevRawPrevTime > 0 || (time < 0 && prevRawPrevTime >= 0)) && !this._locked)) { //edge case for checking time < 0 && prevRawPrevTime >= 0: a zero-duration fromTo() tween inside a zero-duration timeline (yeah, very rare) - callback = "onReverseComplete"; - isComplete = this._reversed; - } - if (time < 0) { - this._active = false; - if (dur === 0) if (prevRawPrevTime >= 0 && this._first) { //zero-duration timelines are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. - internalForce = true; - } - this._rawPrevTime = time; - } else { - this._rawPrevTime = (dur || !suppressEvents || time || this._rawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration timeline or tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. - time = 0; //to avoid occasional floating point rounding errors (could cause problems especially with zero-duration tweens at the very beginning of the timeline) - if (!this._initted) { - internalForce = true; - } - } - - } else { - if (dur === 0 && prevRawPrevTime < 0) { //without this, zero-duration repeating timelines (like with a simple callback nested at the very beginning and a repeatDelay) wouldn't render the first time through. - internalForce = true; - } - this._time = this._rawPrevTime = time; - if (!this._locked) { - this._totalTime = time; - if (this._repeat !== 0) { - cycleDuration = dur + this._repeatDelay; - this._cycle = (this._totalTime / cycleDuration) >> 0; //originally _totalTime % cycleDuration but floating point errors caused problems, so I normalized it. (4 % 0.8 should be 0 but it gets reported as 0.79999999!) - if (this._cycle !== 0) if (this._cycle === this._totalTime / cycleDuration) { - this._cycle--; //otherwise when rendered exactly at the end time, it will act as though it is repeating (at the beginning) - } - this._time = this._totalTime - (this._cycle * cycleDuration); - if (this._yoyo) if ((this._cycle & 1) !== 0) { - this._time = dur - this._time; - } - if (this._time > dur) { - this._time = dur; - time = dur + 0.0001; //to avoid occasional floating point rounding error - } else if (this._time < 0) { - this._time = time = 0; - } else { - time = this._time; - } - } - } - } - - if (this._cycle !== prevCycle) if (!this._locked) { - /* - make sure children at the end/beginning of the timeline are rendered properly. If, for example, - a 3-second long timeline rendered at 2.9 seconds previously, and now renders at 3.2 seconds (which - would get transated to 2.8 seconds if the timeline yoyos or 0.2 seconds if it just repeats), there - could be a callback or a short tween that's at 2.95 or 3 seconds in which wouldn't render. So - we need to push the timeline to the end (and/or beginning depending on its yoyo value). Also we must - ensure that zero-duration tweens at the very beginning or end of the TimelineMax work. - */ - var backwards = (this._yoyo && (prevCycle & 1) !== 0), - wrap = (backwards === (this._yoyo && (this._cycle & 1) !== 0)), - recTotalTime = this._totalTime, - recCycle = this._cycle, - recRawPrevTime = this._rawPrevTime, - recTime = this._time; - - this._totalTime = prevCycle * dur; - if (this._cycle < prevCycle) { - backwards = !backwards; - } else { - this._totalTime += dur; - } - this._time = prevTime; //temporarily revert _time so that render() renders the children in the correct order. Without this, tweens won't rewind correctly. We could arhictect things in a "cleaner" way by splitting out the rendering queue into a separate method but for performance reasons, we kept it all inside this method. - - this._rawPrevTime = (dur === 0) ? prevRawPrevTime - 0.0001 : prevRawPrevTime; - this._cycle = prevCycle; - this._locked = true; //prevents changes to totalTime and skips repeat/yoyo behavior when we recursively call render() - prevTime = (backwards) ? 0 : dur; - this.render(prevTime, suppressEvents, (dur === 0)); - if (!suppressEvents) if (!this._gc) { - if (this.vars.onRepeat) { - this.vars.onRepeat.apply(this.vars.onRepeatScope || this, this.vars.onRepeatParams || _blankArray); - } - } - if (wrap) { - prevTime = (backwards) ? dur + 0.0001 : -0.0001; - this.render(prevTime, true, false); - } - this._locked = false; - if (this._paused && !prevPaused) { //if the render() triggered callback that paused this timeline, we should abort (very rare, but possible) - return; - } - this._time = recTime; - this._totalTime = recTotalTime; - this._cycle = recCycle; - this._rawPrevTime = recRawPrevTime; - } - - if ((this._time === prevTime || !this._first) && !force && !internalForce) { - if (prevTotalTime !== this._totalTime) if (this._onUpdate) if (!suppressEvents) { //so that onUpdate fires even during the repeatDelay - as long as the totalTime changed, we should trigger onUpdate. - this._onUpdate.apply(this.vars.onUpdateScope || this, this.vars.onUpdateParams || _blankArray); - } - return; - } else if (!this._initted) { - this._initted = true; - } - - if (!this._active) if (!this._paused && this._totalTime !== prevTotalTime && time > 0) { - this._active = true; //so that if the user renders the timeline (as opposed to the parent timeline rendering it), it is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the timeline already finished but the user manually re-renders it as halfway done, for example. - } - - if (prevTotalTime === 0) if (this.vars.onStart) if (this._totalTime !== 0) if (!suppressEvents) { - this.vars.onStart.apply(this.vars.onStartScope || this, this.vars.onStartParams || _blankArray); - } - - if (this._time >= prevTime) { - tween = this._first; - while (tween) { - next = tween._next; //record it here because the value could change after rendering... - if (this._paused && !prevPaused) { //in case a tween pauses the timeline when rendering - break; - } else if (tween._active || (tween._startTime <= this._time && !tween._paused && !tween._gc)) { - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - - } - tween = next; - } - } else { - tween = this._last; - while (tween) { - next = tween._prev; //record it here because the value could change after rendering... - if (this._paused && !prevPaused) { //in case a tween pauses the timeline when rendering - break; - } else if (tween._active || (tween._startTime <= prevTime && !tween._paused && !tween._gc)) { - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - } - - if (this._onUpdate) if (!suppressEvents) { - this._onUpdate.apply(this.vars.onUpdateScope || this, this.vars.onUpdateParams || _blankArray); - } - if (callback) if (!this._locked) if (!this._gc) if (prevStart === this._startTime || prevTimeScale !== this._timeScale) if (this._time === 0 || totalDur >= this.totalDuration()) { //if one of the tweens that was rendered altered this timeline's startTime (like if an onComplete reversed the timeline), it probably isn't complete. If it is, don't worry, because whatever call altered the startTime would complete if it was necessary at the new time. The only exception is the timeScale property. Also check _gc because there's a chance that kill() could be called in an onUpdate - if (isComplete) { - if (this._timeline.autoRemoveChildren) { - this._enabled(false, false); - } - this._active = false; - } - if (!suppressEvents && this.vars[callback]) { - this.vars[callback].apply(this.vars[callback + "Scope"] || this, this.vars[callback + "Params"] || _blankArray); - } - } - }; - - p.getActive = function(nested, tweens, timelines) { - if (nested == null) { - nested = true; - } - if (tweens == null) { - tweens = true; - } - if (timelines == null) { - timelines = false; - } - var a = [], - all = this.getChildren(nested, tweens, timelines), - cnt = 0, - l = all.length, - i, tween; - for (i = 0; i < l; i++) { - tween = all[i]; - if (tween.isActive()) { - a[cnt++] = tween; - } - } - return a; - }; - - - p.getLabelAfter = function(time) { - if (!time) if (time !== 0) { //faster than isNan() - time = this._time; - } - var labels = this.getLabelsArray(), - l = labels.length, - i; - for (i = 0; i < l; i++) { - if (labels[i].time > time) { - return labels[i].name; - } - } - return null; - }; - - p.getLabelBefore = function(time) { - if (time == null) { - time = this._time; - } - var labels = this.getLabelsArray(), - i = labels.length; - while (--i > -1) { - if (labels[i].time < time) { - return labels[i].name; - } - } - return null; - }; - - p.getLabelsArray = function() { - var a = [], - cnt = 0, - p; - for (p in this._labels) { - a[cnt++] = {time:this._labels[p], name:p}; - } - a.sort(function(a,b) { - return a.time - b.time; - }); - return a; - }; - - -//---- GETTERS / SETTERS ------------------------------------------------------------------------------------------------------- - - p.progress = function(value) { - return (!arguments.length) ? this._time / this.duration() : this.totalTime( this.duration() * ((this._yoyo && (this._cycle & 1) !== 0) ? 1 - value : value) + (this._cycle * (this._duration + this._repeatDelay)), false); - }; - - p.totalProgress = function(value) { - return (!arguments.length) ? this._totalTime / this.totalDuration() : this.totalTime( this.totalDuration() * value, false); - }; - - p.totalDuration = function(value) { - if (!arguments.length) { - if (this._dirty) { - TimelineLite.prototype.totalDuration.call(this); //just forces refresh - //Instead of Infinity, we use 999999999999 so that we can accommodate reverses. - this._totalDuration = (this._repeat === -1) ? 999999999999 : this._duration * (this._repeat + 1) + (this._repeatDelay * this._repeat); - } - return this._totalDuration; - } - return (this._repeat === -1) ? this : this.duration( (value - (this._repeat * this._repeatDelay)) / (this._repeat + 1) ); - }; - - p.time = function(value, suppressEvents) { - if (!arguments.length) { - return this._time; - } - if (this._dirty) { - this.totalDuration(); - } - if (value > this._duration) { - value = this._duration; - } - if (this._yoyo && (this._cycle & 1) !== 0) { - value = (this._duration - value) + (this._cycle * (this._duration + this._repeatDelay)); - } else if (this._repeat !== 0) { - value += this._cycle * (this._duration + this._repeatDelay); - } - return this.totalTime(value, suppressEvents); - }; - - p.repeat = function(value) { - if (!arguments.length) { - return this._repeat; - } - this._repeat = value; - return this._uncache(true); - }; - - p.repeatDelay = function(value) { - if (!arguments.length) { - return this._repeatDelay; - } - this._repeatDelay = value; - return this._uncache(true); - }; - - p.yoyo = function(value) { - if (!arguments.length) { - return this._yoyo; - } - this._yoyo = value; - return this; - }; - - p.currentLabel = function(value) { - if (!arguments.length) { - return this.getLabelBefore(this._time + 0.00000001); - } - return this.seek(value, true); - }; - - return TimelineMax; - - }, true); - - - - - - - - - - - - -/* - * ---------------------------------------------------------------- - * BezierPlugin - * ---------------------------------------------------------------- - */ - (function() { - - var _RAD2DEG = 180 / Math.PI, - _r1 = [], - _r2 = [], - _r3 = [], - _corProps = {}, - Segment = function(a, b, c, d) { - this.a = a; - this.b = b; - this.c = c; - this.d = d; - this.da = d - a; - this.ca = c - a; - this.ba = b - a; - }, - _correlate = ",x,y,z,left,top,right,bottom,marginTop,marginLeft,marginRight,marginBottom,paddingLeft,paddingTop,paddingRight,paddingBottom,backgroundPosition,backgroundPosition_y,", - cubicToQuadratic = function(a, b, c, d) { - var q1 = {a:a}, - q2 = {}, - q3 = {}, - q4 = {c:d}, - mab = (a + b) / 2, - mbc = (b + c) / 2, - mcd = (c + d) / 2, - mabc = (mab + mbc) / 2, - mbcd = (mbc + mcd) / 2, - m8 = (mbcd - mabc) / 8; - q1.b = mab + (a - mab) / 4; - q2.b = mabc + m8; - q1.c = q2.a = (q1.b + q2.b) / 2; - q2.c = q3.a = (mabc + mbcd) / 2; - q3.b = mbcd - m8; - q4.b = mcd + (d - mcd) / 4; - q3.c = q4.a = (q3.b + q4.b) / 2; - return [q1, q2, q3, q4]; - }, - _calculateControlPoints = function(a, curviness, quad, basic, correlate) { - var l = a.length - 1, - ii = 0, - cp1 = a[0].a, - i, p1, p2, p3, seg, m1, m2, mm, cp2, qb, r1, r2, tl; - for (i = 0; i < l; i++) { - seg = a[ii]; - p1 = seg.a; - p2 = seg.d; - p3 = a[ii+1].d; - - if (correlate) { - r1 = _r1[i]; - r2 = _r2[i]; - tl = ((r2 + r1) * curviness * 0.25) / (basic ? 0.5 : _r3[i] || 0.5); - m1 = p2 - (p2 - p1) * (basic ? curviness * 0.5 : (r1 !== 0 ? tl / r1 : 0)); - m2 = p2 + (p3 - p2) * (basic ? curviness * 0.5 : (r2 !== 0 ? tl / r2 : 0)); - mm = p2 - (m1 + (((m2 - m1) * ((r1 * 3 / (r1 + r2)) + 0.5) / 4) || 0)); - } else { - m1 = p2 - (p2 - p1) * curviness * 0.5; - m2 = p2 + (p3 - p2) * curviness * 0.5; - mm = p2 - (m1 + m2) / 2; - } - m1 += mm; - m2 += mm; - - seg.c = cp2 = m1; - if (i !== 0) { - seg.b = cp1; - } else { - seg.b = cp1 = seg.a + (seg.c - seg.a) * 0.6; //instead of placing b on a exactly, we move it inline with c so that if the user specifies an ease like Back.easeIn or Elastic.easeIn which goes BEYOND the beginning, it will do so smoothly. - } - - seg.da = p2 - p1; - seg.ca = cp2 - p1; - seg.ba = cp1 - p1; - - if (quad) { - qb = cubicToQuadratic(p1, cp1, cp2, p2); - a.splice(ii, 1, qb[0], qb[1], qb[2], qb[3]); - ii += 4; - } else { - ii++; - } - - cp1 = m2; - } - seg = a[ii]; - seg.b = cp1; - seg.c = cp1 + (seg.d - cp1) * 0.4; //instead of placing c on d exactly, we move it inline with b so that if the user specifies an ease like Back.easeOut or Elastic.easeOut which goes BEYOND the end, it will do so smoothly. - seg.da = seg.d - seg.a; - seg.ca = seg.c - seg.a; - seg.ba = cp1 - seg.a; - if (quad) { - qb = cubicToQuadratic(seg.a, cp1, seg.c, seg.d); - a.splice(ii, 1, qb[0], qb[1], qb[2], qb[3]); - } - }, - _parseAnchors = function(values, p, correlate, prepend) { - var a = [], - l, i, p1, p2, p3, tmp; - if (prepend) { - values = [prepend].concat(values); - i = values.length; - while (--i > -1) { - if (typeof( (tmp = values[i][p]) ) === "string") if (tmp.charAt(1) === "=") { - values[i][p] = prepend[p] + Number(tmp.charAt(0) + tmp.substr(2)); //accommodate relative values. Do it inline instead of breaking it out into a function for speed reasons - } - } - } - l = values.length - 2; - if (l < 0) { - a[0] = new Segment(values[0][p], 0, 0, values[(l < -1) ? 0 : 1][p]); - return a; - } - for (i = 0; i < l; i++) { - p1 = values[i][p]; - p2 = values[i+1][p]; - a[i] = new Segment(p1, 0, 0, p2); - if (correlate) { - p3 = values[i+2][p]; - _r1[i] = (_r1[i] || 0) + (p2 - p1) * (p2 - p1); - _r2[i] = (_r2[i] || 0) + (p3 - p2) * (p3 - p2); - } - } - a[i] = new Segment(values[i][p], 0, 0, values[i+1][p]); - return a; - }, - bezierThrough = function(values, curviness, quadratic, basic, correlate, prepend) { - var obj = {}, - props = [], - first = prepend || values[0], - i, p, a, j, r, l, seamless, last; - correlate = (typeof(correlate) === "string") ? ","+correlate+"," : _correlate; - if (curviness == null) { - curviness = 1; - } - for (p in values[0]) { - props.push(p); - } - //check to see if the last and first values are identical (well, within 0.05). If so, make seamless by appending the second element to the very end of the values array and the 2nd-to-last element to the very beginning (we'll remove those segments later) - if (values.length > 1) { - last = values[values.length - 1]; - seamless = true; - i = props.length; - while (--i > -1) { - p = props[i]; - if (Math.abs(first[p] - last[p]) > 0.05) { //build in a tolerance of +/-0.05 to accommodate rounding errors. For example, if you set an object's position to 4.945, Flash will make it 4.9 - seamless = false; - break; - } - } - if (seamless) { - values = values.concat(); //duplicate the array to avoid contaminating the original which the user may be reusing for other tweens - if (prepend) { - values.unshift(prepend); - } - values.push(values[1]); - prepend = values[values.length - 3]; - } - } - _r1.length = _r2.length = _r3.length = 0; - i = props.length; - while (--i > -1) { - p = props[i]; - _corProps[p] = (correlate.indexOf(","+p+",") !== -1); - obj[p] = _parseAnchors(values, p, _corProps[p], prepend); - } - i = _r1.length; - while (--i > -1) { - _r1[i] = Math.sqrt(_r1[i]); - _r2[i] = Math.sqrt(_r2[i]); - } - if (!basic) { - i = props.length; - while (--i > -1) { - if (_corProps[p]) { - a = obj[props[i]]; - l = a.length - 1; - for (j = 0; j < l; j++) { - r = a[j+1].da / _r2[j] + a[j].da / _r1[j]; - _r3[j] = (_r3[j] || 0) + r * r; - } - } - } - i = _r3.length; - while (--i > -1) { - _r3[i] = Math.sqrt(_r3[i]); - } - } - i = props.length; - j = quadratic ? 4 : 1; - while (--i > -1) { - p = props[i]; - a = obj[p]; - _calculateControlPoints(a, curviness, quadratic, basic, _corProps[p]); //this method requires that _parseAnchors() and _setSegmentRatios() ran first so that _r1, _r2, and _r3 values are populated for all properties - if (seamless) { - a.splice(0, j); - a.splice(a.length - j, j); - } - } - return obj; - }, - _parseBezierData = function(values, type, prepend) { - type = type || "soft"; - var obj = {}, - inc = (type === "cubic") ? 3 : 2, - soft = (type === "soft"), - props = [], - a, b, c, d, cur, i, j, l, p, cnt, tmp; - if (soft && prepend) { - values = [prepend].concat(values); - } - if (values == null || values.length < inc + 1) { throw "invalid Bezier data"; } - for (p in values[0]) { - props.push(p); - } - i = props.length; - while (--i > -1) { - p = props[i]; - obj[p] = cur = []; - cnt = 0; - l = values.length; - for (j = 0; j < l; j++) { - a = (prepend == null) ? values[j][p] : (typeof( (tmp = values[j][p]) ) === "string" && tmp.charAt(1) === "=") ? prepend[p] + Number(tmp.charAt(0) + tmp.substr(2)) : Number(tmp); - if (soft) if (j > 1) if (j < l - 1) { - cur[cnt++] = (a + cur[cnt-2]) / 2; - } - cur[cnt++] = a; - } - l = cnt - inc + 1; - cnt = 0; - for (j = 0; j < l; j += inc) { - a = cur[j]; - b = cur[j+1]; - c = cur[j+2]; - d = (inc === 2) ? 0 : cur[j+3]; - cur[cnt++] = tmp = (inc === 3) ? new Segment(a, b, c, d) : new Segment(a, (2 * b + a) / 3, (2 * b + c) / 3, c); - } - cur.length = cnt; - } - return obj; - }, - _addCubicLengths = function(a, steps, resolution) { - var inc = 1 / resolution, - j = a.length, - d, d1, s, da, ca, ba, p, i, inv, bez, index; - while (--j > -1) { - bez = a[j]; - s = bez.a; - da = bez.d - s; - ca = bez.c - s; - ba = bez.b - s; - d = d1 = 0; - for (i = 1; i <= resolution; i++) { - p = inc * i; - inv = 1 - p; - d = d1 - (d1 = (p * p * da + 3 * inv * (p * ca + inv * ba)) * p); - index = j * resolution + i - 1; - steps[index] = (steps[index] || 0) + d * d; - } - } - }, - _parseLengthData = function(obj, resolution) { - resolution = resolution >> 0 || 6; - var a = [], - lengths = [], - d = 0, - total = 0, - threshold = resolution - 1, - segments = [], - curLS = [], //current length segments array - p, i, l, index; - for (p in obj) { - _addCubicLengths(obj[p], a, resolution); - } - l = a.length; - for (i = 0; i < l; i++) { - d += Math.sqrt(a[i]); - index = i % resolution; - curLS[index] = d; - if (index === threshold) { - total += d; - index = (i / resolution) >> 0; - segments[index] = curLS; - lengths[index] = total; - d = 0; - curLS = []; - } - } - return {length:total, lengths:lengths, segments:segments}; - }, - - - - BezierPlugin = window._gsDefine.plugin({ - propName: "bezier", - priority: -1, - version: "1.3.2", - API: 2, - global:true, - - //gets called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. - init: function(target, vars, tween) { - this._target = target; - if (vars instanceof Array) { - vars = {values:vars}; - } - this._func = {}; - this._round = {}; - this._props = []; - this._timeRes = (vars.timeResolution == null) ? 6 : parseInt(vars.timeResolution, 10); - var values = vars.values || [], - first = {}, - second = values[0], - autoRotate = vars.autoRotate || tween.vars.orientToBezier, - p, isFunc, i, j, prepend; - - this._autoRotate = autoRotate ? (autoRotate instanceof Array) ? autoRotate : [["x","y","rotation",((autoRotate === true) ? 0 : Number(autoRotate) || 0)]] : null; - for (p in second) { - this._props.push(p); - } - - i = this._props.length; - while (--i > -1) { - p = this._props[i]; - - this._overwriteProps.push(p); - isFunc = this._func[p] = (typeof(target[p]) === "function"); - first[p] = (!isFunc) ? parseFloat(target[p]) : target[ ((p.indexOf("set") || typeof(target["get" + p.substr(3)]) !== "function") ? p : "get" + p.substr(3)) ](); - if (!prepend) if (first[p] !== values[0][p]) { - prepend = first; - } - } - this._beziers = (vars.type !== "cubic" && vars.type !== "quadratic" && vars.type !== "soft") ? bezierThrough(values, isNaN(vars.curviness) ? 1 : vars.curviness, false, (vars.type === "thruBasic"), vars.correlate, prepend) : _parseBezierData(values, vars.type, first); - this._segCount = this._beziers[p].length; - - if (this._timeRes) { - var ld = _parseLengthData(this._beziers, this._timeRes); - this._length = ld.length; - this._lengths = ld.lengths; - this._segments = ld.segments; - this._l1 = this._li = this._s1 = this._si = 0; - this._l2 = this._lengths[0]; - this._curSeg = this._segments[0]; - this._s2 = this._curSeg[0]; - this._prec = 1 / this._curSeg.length; - } - - if ((autoRotate = this._autoRotate)) { - this._initialRotations = []; - if (!(autoRotate[0] instanceof Array)) { - this._autoRotate = autoRotate = [autoRotate]; - } - i = autoRotate.length; - while (--i > -1) { - for (j = 0; j < 3; j++) { - p = autoRotate[i][j]; - this._func[p] = (typeof(target[p]) === "function") ? target[ ((p.indexOf("set") || typeof(target["get" + p.substr(3)]) !== "function") ? p : "get" + p.substr(3)) ] : false; - } - p = autoRotate[i][2]; - this._initialRotations[i] = this._func[p] ? this._func[p].call(this._target) : this._target[p]; - } - } - this._startRatio = tween.vars.runBackwards ? 1 : 0; //we determine the starting ratio when the tween inits which is always 0 unless the tween has runBackwards:true (indicating it's a from() tween) in which case it's 1. - return true; - }, - - //called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like Elastic.easeOut or Back.easeOut, etc.) - set: function(v) { - var segments = this._segCount, - func = this._func, - target = this._target, - notStart = (v !== this._startRatio), - curIndex, inv, i, p, b, t, val, l, lengths, curSeg; - if (!this._timeRes) { - curIndex = (v < 0) ? 0 : (v >= 1) ? segments - 1 : (segments * v) >> 0; - t = (v - (curIndex * (1 / segments))) * segments; - } else { - lengths = this._lengths; - curSeg = this._curSeg; - v *= this._length; - i = this._li; - //find the appropriate segment (if the currently cached one isn't correct) - if (v > this._l2 && i < segments - 1) { - l = segments - 1; - while (i < l && (this._l2 = lengths[++i]) <= v) { } - this._l1 = lengths[i-1]; - this._li = i; - this._curSeg = curSeg = this._segments[i]; - this._s2 = curSeg[(this._s1 = this._si = 0)]; - } else if (v < this._l1 && i > 0) { - while (i > 0 && (this._l1 = lengths[--i]) >= v) { } - if (i === 0 && v < this._l1) { - this._l1 = 0; - } else { - i++; - } - this._l2 = lengths[i]; - this._li = i; - this._curSeg = curSeg = this._segments[i]; - this._s1 = curSeg[(this._si = curSeg.length - 1) - 1] || 0; - this._s2 = curSeg[this._si]; - } - curIndex = i; - //now find the appropriate sub-segment (we split it into the number of pieces that was defined by "precision" and measured each one) - v -= this._l1; - i = this._si; - if (v > this._s2 && i < curSeg.length - 1) { - l = curSeg.length - 1; - while (i < l && (this._s2 = curSeg[++i]) <= v) { } - this._s1 = curSeg[i-1]; - this._si = i; - } else if (v < this._s1 && i > 0) { - while (i > 0 && (this._s1 = curSeg[--i]) >= v) { } - if (i === 0 && v < this._s1) { - this._s1 = 0; - } else { - i++; - } - this._s2 = curSeg[i]; - this._si = i; - } - t = (i + (v - this._s1) / (this._s2 - this._s1)) * this._prec; - } - inv = 1 - t; - - i = this._props.length; - while (--i > -1) { - p = this._props[i]; - b = this._beziers[p][curIndex]; - val = (t * t * b.da + 3 * inv * (t * b.ca + inv * b.ba)) * t + b.a; - if (this._round[p]) { - val = Math.round(val); - } - if (func[p]) { - target[p](val); - } else { - target[p] = val; - } - } - - if (this._autoRotate) { - var ar = this._autoRotate, - b2, x1, y1, x2, y2, add, conv; - i = ar.length; - while (--i > -1) { - p = ar[i][2]; - add = ar[i][3] || 0; - conv = (ar[i][4] === true) ? 1 : _RAD2DEG; - b = this._beziers[ar[i][0]]; - b2 = this._beziers[ar[i][1]]; - - if (b && b2) { //in case one of the properties got overwritten. - b = b[curIndex]; - b2 = b2[curIndex]; - - x1 = b.a + (b.b - b.a) * t; - x2 = b.b + (b.c - b.b) * t; - x1 += (x2 - x1) * t; - x2 += ((b.c + (b.d - b.c) * t) - x2) * t; - - y1 = b2.a + (b2.b - b2.a) * t; - y2 = b2.b + (b2.c - b2.b) * t; - y1 += (y2 - y1) * t; - y2 += ((b2.c + (b2.d - b2.c) * t) - y2) * t; - - val = notStart ? Math.atan2(y2 - y1, x2 - x1) * conv + add : this._initialRotations[i]; - - if (func[p]) { - target[p](val); - } else { - target[p] = val; - } - } - } - } - } - }), - p = BezierPlugin.prototype; - - - BezierPlugin.bezierThrough = bezierThrough; - BezierPlugin.cubicToQuadratic = cubicToQuadratic; - BezierPlugin._autoCSS = true; //indicates that this plugin can be inserted into the "css" object using the autoCSS feature of TweenLite - BezierPlugin.quadraticToCubic = function(a, b, c) { - return new Segment(a, (2 * b + a) / 3, (2 * b + c) / 3, c); - }; - - BezierPlugin._cssRegister = function() { - var CSSPlugin = window._gsDefine.globals.CSSPlugin; - if (!CSSPlugin) { - return; - } - var _internals = CSSPlugin._internals, - _parseToProxy = _internals._parseToProxy, - _setPluginRatio = _internals._setPluginRatio, - CSSPropTween = _internals.CSSPropTween; - _internals._registerComplexSpecialProp("bezier", {parser:function(t, e, prop, cssp, pt, plugin) { - if (e instanceof Array) { - e = {values:e}; - } - plugin = new BezierPlugin(); - var values = e.values, - l = values.length - 1, - pluginValues = [], - v = {}, - i, p, data; - if (l < 0) { - return pt; - } - for (i = 0; i <= l; i++) { - data = _parseToProxy(t, values[i], cssp, pt, plugin, (l !== i)); - pluginValues[i] = data.end; - } - for (p in e) { - v[p] = e[p]; //duplicate the vars object because we need to alter some things which would cause problems if the user plans to reuse the same vars object for another tween. - } - v.values = pluginValues; - pt = new CSSPropTween(t, "bezier", 0, 0, data.pt, 2); - pt.data = data; - pt.plugin = plugin; - pt.setRatio = _setPluginRatio; - if (v.autoRotate === 0) { - v.autoRotate = true; - } - if (v.autoRotate && !(v.autoRotate instanceof Array)) { - i = (v.autoRotate === true) ? 0 : Number(v.autoRotate); - v.autoRotate = (data.end.left != null) ? [["left","top","rotation",i,false]] : (data.end.x != null) ? [["x","y","rotation",i,false]] : false; - } - if (v.autoRotate) { - if (!cssp._transform) { - cssp._enableTransforms(false); - } - data.autoRotate = cssp._target._gsTransform; - } - plugin._onInitTween(data.proxy, v, cssp._tween); - return pt; - }}); - }; - - p._roundProps = function(lookup, value) { - var op = this._overwriteProps, - i = op.length; - while (--i > -1) { - if (lookup[op[i]] || lookup.bezier || lookup.bezierThrough) { - this._round[op[i]] = value; - } - } - }; - - p._kill = function(lookup) { - var a = this._props, - p, i; - for (p in this._beziers) { - if (p in lookup) { - delete this._beziers[p]; - delete this._func[p]; - i = a.length; - while (--i > -1) { - if (a[i] === p) { - a.splice(i, 1); - } - } - } - } - return this._super._kill.call(this, lookup); - }; - - }()); - - - - - - - - - - - - - - -/* - * ---------------------------------------------------------------- - * CSSPlugin - * ---------------------------------------------------------------- - */ - window._gsDefine("plugins.CSSPlugin", ["plugins.TweenPlugin","TweenLite"], function(TweenPlugin, TweenLite) { - - /** @constructor **/ - var CSSPlugin = function() { - TweenPlugin.call(this, "css"); - this._overwriteProps.length = 0; - this.setRatio = CSSPlugin.prototype.setRatio; //speed optimization (avoid prototype lookup on this "hot" method) - }, - _hasPriority, //turns true whenever a CSSPropTween instance is created that has a priority other than 0. This helps us discern whether or not we should spend the time organizing the linked list or not after a CSSPlugin's _onInitTween() method is called. - _suffixMap, //we set this in _onInitTween() each time as a way to have a persistent variable we can use in other methods like _parse() without having to pass it around as a parameter and we keep _parse() decoupled from a particular CSSPlugin instance - _cs, //computed style (we store this in a shared variable to conserve memory and make minification tighter - _overwriteProps, //alias to the currently instantiating CSSPlugin's _overwriteProps array. We use this closure in order to avoid having to pass a reference around from method to method and aid in minification. - _specialProps = {}, - p = CSSPlugin.prototype = new TweenPlugin("css"); - - p.constructor = CSSPlugin; - CSSPlugin.version = "1.12.1"; - CSSPlugin.API = 2; - CSSPlugin.defaultTransformPerspective = 0; - CSSPlugin.defaultSkewType = "compensated"; - p = "px"; //we'll reuse the "p" variable to keep file size down - CSSPlugin.suffixMap = {top:p, right:p, bottom:p, left:p, width:p, height:p, fontSize:p, padding:p, margin:p, perspective:p, lineHeight:""}; - - - var _numExp = /(?:\d|\-\d|\.\d|\-\.\d)+/g, - _relNumExp = /(?:\d|\-\d|\.\d|\-\.\d|\+=\d|\-=\d|\+=.\d|\-=\.\d)+/g, - _valuesExp = /(?:\+=|\-=|\-|\b)[\d\-\.]+[a-zA-Z0-9]*(?:%|\b)/gi, //finds all the values that begin with numbers or += or -= and then a number. Includes suffixes. We use this to split complex values apart like "1px 5px 20px rgb(255,102,51)" - _NaNExp = /[^\d\-\.]/g, - _suffixExp = /(?:\d|\-|\+|=|#|\.)*/g, - _opacityExp = /opacity *= *([^)]*)/i, - _opacityValExp = /opacity:([^;]*)/i, - _alphaFilterExp = /alpha\(opacity *=.+?\)/i, - _rgbhslExp = /^(rgb|hsl)/, - _capsExp = /([A-Z])/g, - _camelExp = /-([a-z])/gi, - _urlExp = /(^(?:url\(\"|url\())|(?:(\"\))$|\)$)/gi, //for pulling out urls from url(...) or url("...") strings (some browsers wrap urls in quotes, some don't when reporting things like backgroundImage) - _camelFunc = function(s, g) { return g.toUpperCase(); }, - _horizExp = /(?:Left|Right|Width)/i, - _ieGetMatrixExp = /(M11|M12|M21|M22)=[\d\-\.e]+/gi, - _ieSetMatrixExp = /progid\:DXImageTransform\.Microsoft\.Matrix\(.+?\)/i, - _commasOutsideParenExp = /,(?=[^\)]*(?:\(|$))/gi, //finds any commas that are not within parenthesis - _DEG2RAD = Math.PI / 180, - _RAD2DEG = 180 / Math.PI, - _forcePT = {}, - _doc = document, - _tempDiv = _doc.createElement("div"), - _tempImg = _doc.createElement("img"), - _internals = CSSPlugin._internals = {_specialProps:_specialProps}, //provides a hook to a few internal methods that we need to access from inside other plugins - _agent = navigator.userAgent, - _autoRound, - _reqSafariFix, //we won't apply the Safari transform fix until we actually come across a tween that affects a transform property (to maintain best performance). - - _isSafari, - _isFirefox, //Firefox has a bug that causes 3D transformed elements to randomly disappear unless a repaint is forced after each update on each element. - _isSafariLT6, //Safari (and Android 4 which uses a flavor of Safari) has a bug that prevents changes to "top" and "left" properties from rendering properly if changed on the same frame as a transform UNLESS we set the element's WebkitBackfaceVisibility to hidden (weird, I know). Doing this for Android 3 and earlier seems to actually cause other problems, though (fun!) - _ieVers, - _supportsOpacity = (function() { //we set _isSafari, _ieVers, _isFirefox, and _supportsOpacity all in one function here to reduce file size slightly, especially in the minified version. - var i = _agent.indexOf("Android"), - d = _doc.createElement("div"), a; - - _isSafari = (_agent.indexOf("Safari") !== -1 && _agent.indexOf("Chrome") === -1 && (i === -1 || Number(_agent.substr(i+8, 1)) > 3)); - _isSafariLT6 = (_isSafari && (Number(_agent.substr(_agent.indexOf("Version/")+8, 1)) < 6)); - _isFirefox = (_agent.indexOf("Firefox") !== -1); - - if ((/MSIE ([0-9]{1,}[\.0-9]{0,})/).exec(_agent)) { - _ieVers = parseFloat( RegExp.$1 ); - } - - d.innerHTML = "a"; - a = d.getElementsByTagName("a")[0]; - return a ? /^0.55/.test(a.style.opacity) : false; - }()), - _getIEOpacity = function(v) { - return (_opacityExp.test( ((typeof(v) === "string") ? v : (v.currentStyle ? v.currentStyle.filter : v.style.filter) || "") ) ? ( parseFloat( RegExp.$1 ) / 100 ) : 1); - }, - _log = function(s) {//for logging messages, but in a way that won't throw errors in old versions of IE. - if (window.console) { - //console.log(s); - } - }, - _prefixCSS = "", //the non-camelCase vendor prefix like "-o-", "-moz-", "-ms-", or "-webkit-" - _prefix = "", //camelCase vendor prefix like "O", "ms", "Webkit", or "Moz". - - // @private feed in a camelCase property name like "transform" and it will check to see if it is valid as-is or if it needs a vendor prefix. It returns the corrected camelCase property name (i.e. "WebkitTransform" or "MozTransform" or "transform" or null if no such property is found, like if the browser is IE8 or before, "transform" won't be found at all) - _checkPropPrefix = function(p, e) { - e = e || _tempDiv; - var s = e.style, - a, i; - if (s[p] !== undefined) { - return p; - } - p = p.charAt(0).toUpperCase() + p.substr(1); - a = ["O","Moz","ms","Ms","Webkit"]; - i = 5; - while (--i > -1 && s[a[i]+p] === undefined) { } - if (i >= 0) { - _prefix = (i === 3) ? "ms" : a[i]; - _prefixCSS = "-" + _prefix.toLowerCase() + "-"; - return _prefix + p; - } - return null; - }, - - _getComputedStyle = _doc.defaultView ? _doc.defaultView.getComputedStyle : function() {}, - - /** - * @private Returns the css style for a particular property of an element. For example, to get whatever the current "left" css value for an element with an ID of "myElement", you could do: - * var currentLeft = CSSPlugin.getStyle( document.getElementById("myElement"), "left"); - * - * @param {!Object} t Target element whose style property you want to query - * @param {!string} p Property name (like "left" or "top" or "marginTop", etc.) - * @param {Object=} cs Computed style object. This just provides a way to speed processing if you're going to get several properties on the same element in quick succession - you can reuse the result of the getComputedStyle() call. - * @param {boolean=} calc If true, the value will not be read directly from the element's "style" property (if it exists there), but instead the getComputedStyle() result will be used. This can be useful when you want to ensure that the browser itself is interpreting the value. - * @param {string=} dflt Default value that should be returned in the place of null, "none", "auto" or "auto auto". - * @return {?string} The current property value - */ - _getStyle = CSSPlugin.getStyle = function(t, p, cs, calc, dflt) { - var rv; - if (!_supportsOpacity) if (p === "opacity") { //several versions of IE don't use the standard "opacity" property - they use things like filter:alpha(opacity=50), so we parse that here. - return _getIEOpacity(t); - } - if (!calc && t.style[p]) { - rv = t.style[p]; - } else if ((cs = cs || _getComputedStyle(t))) { - rv = cs[p] || cs.getPropertyValue(p) || cs.getPropertyValue(p.replace(_capsExp, "-$1").toLowerCase()); - } else if (t.currentStyle) { - rv = t.currentStyle[p]; - } - return (dflt != null && (!rv || rv === "none" || rv === "auto" || rv === "auto auto")) ? dflt : rv; - }, - - /** - * @private Pass the target element, the property name, the numeric value, and the suffix (like "%", "em", "px", etc.) and it will spit back the equivalent pixel number. - * @param {!Object} t Target element - * @param {!string} p Property name (like "left", "top", "marginLeft", etc.) - * @param {!number} v Value - * @param {string=} sfx Suffix (like "px" or "%" or "em") - * @param {boolean=} recurse If true, the call is a recursive one. In some browsers (like IE7/8), occasionally the value isn't accurately reported initially, but if we run the function again it will take effect. - * @return {number} value in pixels - */ - _convertToPixels = _internals.convertToPixels = function(t, p, v, sfx, recurse) { - if (sfx === "px" || !sfx) { return v; } - if (sfx === "auto" || !v) { return 0; } - var horiz = _horizExp.test(p), - node = t, - style = _tempDiv.style, - neg = (v < 0), - pix, cache, time; - if (neg) { - v = -v; - } - if (sfx === "%" && p.indexOf("border") !== -1) { - pix = (v / 100) * (horiz ? t.clientWidth : t.clientHeight); - } else { - style.cssText = "border:0 solid red;position:" + _getStyle(t, "position") + ";line-height:0;"; - if (sfx === "%" || !node.appendChild) { - node = t.parentNode || _doc.body; - cache = node._gsCache; - time = TweenLite.ticker.frame; - if (cache && horiz && cache.time === time) { //performance optimization: we record the width of elements along with the ticker frame so that we can quickly get it again on the same tick (seems relatively safe to assume it wouldn't change on the same tick) - return cache.width * v / 100; - } - style[(horiz ? "width" : "height")] = v + sfx; - } else { - style[(horiz ? "borderLeftWidth" : "borderTopWidth")] = v + sfx; - } - node.appendChild(_tempDiv); - pix = parseFloat(_tempDiv[(horiz ? "offsetWidth" : "offsetHeight")]); - node.removeChild(_tempDiv); - if (horiz && sfx === "%" && CSSPlugin.cacheWidths !== false) { - cache = node._gsCache = node._gsCache || {}; - cache.time = time; - cache.width = pix / v * 100; - } - if (pix === 0 && !recurse) { - pix = _convertToPixels(t, p, v, sfx, true); - } - } - return neg ? -pix : pix; - }, - _calculateOffset = _internals.calculateOffset = function(t, p, cs) { //for figuring out "top" or "left" in px when it's "auto". We need to factor in margin with the offsetLeft/offsetTop - if (_getStyle(t, "position", cs) !== "absolute") { return 0; } - var dim = ((p === "left") ? "Left" : "Top"), - v = _getStyle(t, "margin" + dim, cs); - return t["offset" + dim] - (_convertToPixels(t, p, parseFloat(v), v.replace(_suffixExp, "")) || 0); - }, - - // @private returns at object containing ALL of the style properties in camelCase and their associated values. - _getAllStyles = function(t, cs) { - var s = {}, - i, tr; - if ((cs = cs || _getComputedStyle(t, null))) { - if ((i = cs.length)) { - while (--i > -1) { - s[cs[i].replace(_camelExp, _camelFunc)] = cs.getPropertyValue(cs[i]); - } - } else { //Opera behaves differently - cs.length is always 0, so we must do a for...in loop. - for (i in cs) { - s[i] = cs[i]; - } - } - } else if ((cs = t.currentStyle || t.style)) { - for (i in cs) { - if (typeof(i) === "string" && s[i] === undefined) { - s[i.replace(_camelExp, _camelFunc)] = cs[i]; - } - } - } - if (!_supportsOpacity) { - s.opacity = _getIEOpacity(t); - } - tr = _getTransform(t, cs, false); - s.rotation = tr.rotation; - s.skewX = tr.skewX; - s.scaleX = tr.scaleX; - s.scaleY = tr.scaleY; - s.x = tr.x; - s.y = tr.y; - if (_supports3D) { - s.z = tr.z; - s.rotationX = tr.rotationX; - s.rotationY = tr.rotationY; - s.scaleZ = tr.scaleZ; - } - if (s.filters) { - delete s.filters; - } - return s; - }, - - // @private analyzes two style objects (as returned by _getAllStyles()) and only looks for differences between them that contain tweenable values (like a number or color). It returns an object with a "difs" property which refers to an object containing only those isolated properties and values for tweening, and a "firstMPT" property which refers to the first MiniPropTween instance in a linked list that recorded all the starting values of the different properties so that we can revert to them at the end or beginning of the tween - we don't want the cascading to get messed up. The forceLookup parameter is an optional generic object with properties that should be forced into the results - this is necessary for className tweens that are overwriting others because imagine a scenario where a rollover/rollout adds/removes a class and the user swipes the mouse over the target SUPER fast, thus nothing actually changed yet and the subsequent comparison of the properties would indicate they match (especially when px rounding is taken into consideration), thus no tweening is necessary even though it SHOULD tween and remove those properties after the tween (otherwise the inline styles will contaminate things). See the className SpecialProp code for details. - _cssDif = function(t, s1, s2, vars, forceLookup) { - var difs = {}, - style = t.style, - val, p, mpt; - for (p in s2) { - if (p !== "cssText") if (p !== "length") if (isNaN(p)) if (s1[p] !== (val = s2[p]) || (forceLookup && forceLookup[p])) if (p.indexOf("Origin") === -1) if (typeof(val) === "number" || typeof(val) === "string") { - difs[p] = (val === "auto" && (p === "left" || p === "top")) ? _calculateOffset(t, p) : ((val === "" || val === "auto" || val === "none") && typeof(s1[p]) === "string" && s1[p].replace(_NaNExp, "") !== "") ? 0 : val; //if the ending value is defaulting ("" or "auto"), we check the starting value and if it can be parsed into a number (a string which could have a suffix too, like 700px), then we swap in 0 for "" or "auto" so that things actually tween. - if (style[p] !== undefined) { //for className tweens, we must remember which properties already existed inline - the ones that didn't should be removed when the tween isn't in progress because they were only introduced to facilitate the transition between classes. - mpt = new MiniPropTween(style, p, style[p], mpt); - } - } - } - if (vars) { - for (p in vars) { //copy properties (except className) - if (p !== "className") { - difs[p] = vars[p]; - } - } - } - return {difs:difs, firstMPT:mpt}; - }, - _dimensions = {width:["Left","Right"], height:["Top","Bottom"]}, - _margins = ["marginLeft","marginRight","marginTop","marginBottom"], - - /** - * @private Gets the width or height of an element - * @param {!Object} t Target element - * @param {!string} p Property name ("width" or "height") - * @param {Object=} cs Computed style object (if one exists). Just a speed optimization. - * @return {number} Dimension (in pixels) - */ - _getDimension = function(t, p, cs) { - var v = parseFloat((p === "width") ? t.offsetWidth : t.offsetHeight), - a = _dimensions[p], - i = a.length; - cs = cs || _getComputedStyle(t, null); - while (--i > -1) { - v -= parseFloat( _getStyle(t, "padding" + a[i], cs, true) ) || 0; - v -= parseFloat( _getStyle(t, "border" + a[i] + "Width", cs, true) ) || 0; - } - return v; - }, - - // @private Parses position-related complex strings like "top left" or "50px 10px" or "70% 20%", etc. which are used for things like transformOrigin or backgroundPosition. Optionally decorates a supplied object (recObj) with the following properties: "ox" (offsetX), "oy" (offsetY), "oxp" (if true, "ox" is a percentage not a pixel value), and "oxy" (if true, "oy" is a percentage not a pixel value) - _parsePosition = function(v, recObj) { - if (v == null || v === "" || v === "auto" || v === "auto auto") { //note: Firefox uses "auto auto" as default whereas Chrome uses "auto". - v = "0 0"; - } - var a = v.split(" "), - x = (v.indexOf("left") !== -1) ? "0%" : (v.indexOf("right") !== -1) ? "100%" : a[0], - y = (v.indexOf("top") !== -1) ? "0%" : (v.indexOf("bottom") !== -1) ? "100%" : a[1]; - if (y == null) { - y = "0"; - } else if (y === "center") { - y = "50%"; - } - if (x === "center" || (isNaN(parseFloat(x)) && (x + "").indexOf("=") === -1)) { //remember, the user could flip-flop the values and say "bottom center" or "center bottom", etc. "center" is ambiguous because it could be used to describe horizontal or vertical, hence the isNaN(). If there's an "=" sign in the value, it's relative. - x = "50%"; - } - if (recObj) { - recObj.oxp = (x.indexOf("%") !== -1); - recObj.oyp = (y.indexOf("%") !== -1); - recObj.oxr = (x.charAt(1) === "="); - recObj.oyr = (y.charAt(1) === "="); - recObj.ox = parseFloat(x.replace(_NaNExp, "")); - recObj.oy = parseFloat(y.replace(_NaNExp, "")); - } - return x + " " + y + ((a.length > 2) ? " " + a[2] : ""); - }, - - /** - * @private Takes an ending value (typically a string, but can be a number) and a starting value and returns the change between the two, looking for relative value indicators like += and -= and it also ignores suffixes (but make sure the ending value starts with a number or +=/-= and that the starting value is a NUMBER!) - * @param {(number|string)} e End value which is typically a string, but could be a number - * @param {(number|string)} b Beginning value which is typically a string but could be a number - * @return {number} Amount of change between the beginning and ending values (relative values that have a "+=" or "-=" are recognized) - */ - _parseChange = function(e, b) { - return (typeof(e) === "string" && e.charAt(1) === "=") ? parseInt(e.charAt(0) + "1", 10) * parseFloat(e.substr(2)) : parseFloat(e) - parseFloat(b); - }, - - /** - * @private Takes a value and a default number, checks if the value is relative, null, or numeric and spits back a normalized number accordingly. Primarily used in the _parseTransform() function. - * @param {Object} v Value to be parsed - * @param {!number} d Default value (which is also used for relative calculations if "+=" or "-=" is found in the first parameter) - * @return {number} Parsed value - */ - _parseVal = function(v, d) { - return (v == null) ? d : (typeof(v) === "string" && v.charAt(1) === "=") ? parseInt(v.charAt(0) + "1", 10) * Number(v.substr(2)) + d : parseFloat(v); - }, - - /** - * @private Translates strings like "40deg" or "40" or 40rad" or "+=40deg" or "270_short" or "-90_cw" or "+=45_ccw" to a numeric radian angle. Of course a starting/default value must be fed in too so that relative values can be calculated properly. - * @param {Object} v Value to be parsed - * @param {!number} d Default value (which is also used for relative calculations if "+=" or "-=" is found in the first parameter) - * @param {string=} p property name for directionalEnd (optional - only used when the parsed value is directional ("_short", "_cw", or "_ccw" suffix). We need a way to store the uncompensated value so that at the end of the tween, we set it to exactly what was requested with no directional compensation). Property name would be "rotation", "rotationX", or "rotationY" - * @param {Object=} directionalEnd An object that will store the raw end values for directional angles ("_short", "_cw", or "_ccw" suffix). We need a way to store the uncompensated value so that at the end of the tween, we set it to exactly what was requested with no directional compensation. - * @return {number} parsed angle in radians - */ - _parseAngle = function(v, d, p, directionalEnd) { - var min = 0.000001, - cap, split, dif, result; - if (v == null) { - result = d; - } else if (typeof(v) === "number") { - result = v; - } else { - cap = 360; - split = v.split("_"); - dif = Number(split[0].replace(_NaNExp, "")) * ((v.indexOf("rad") === -1) ? 1 : _RAD2DEG) - ((v.charAt(1) === "=") ? 0 : d); - if (split.length) { - if (directionalEnd) { - directionalEnd[p] = d + dif; - } - if (v.indexOf("short") !== -1) { - dif = dif % cap; - if (dif !== dif % (cap / 2)) { - dif = (dif < 0) ? dif + cap : dif - cap; - } - } - if (v.indexOf("_cw") !== -1 && dif < 0) { - dif = ((dif + cap * 9999999999) % cap) - ((dif / cap) | 0) * cap; - } else if (v.indexOf("ccw") !== -1 && dif > 0) { - dif = ((dif - cap * 9999999999) % cap) - ((dif / cap) | 0) * cap; - } - } - result = d + dif; - } - if (result < min && result > -min) { - result = 0; - } - return result; - }, - - _colorLookup = {aqua:[0,255,255], - lime:[0,255,0], - silver:[192,192,192], - black:[0,0,0], - maroon:[128,0,0], - teal:[0,128,128], - blue:[0,0,255], - navy:[0,0,128], - white:[255,255,255], - fuchsia:[255,0,255], - olive:[128,128,0], - yellow:[255,255,0], - orange:[255,165,0], - gray:[128,128,128], - purple:[128,0,128], - green:[0,128,0], - red:[255,0,0], - pink:[255,192,203], - cyan:[0,255,255], - transparent:[255,255,255,0]}, - - _hue = function(h, m1, m2) { - h = (h < 0) ? h + 1 : (h > 1) ? h - 1 : h; - return ((((h * 6 < 1) ? m1 + (m2 - m1) * h * 6 : (h < 0.5) ? m2 : (h * 3 < 2) ? m1 + (m2 - m1) * (2 / 3 - h) * 6 : m1) * 255) + 0.5) | 0; - }, - - /** - * @private Parses a color (like #9F0, #FF9900, or rgb(255,51,153)) into an array with 3 elements for red, green, and blue. Also handles rgba() values (splits into array of 4 elements of course) - * @param {(string|number)} v The value the should be parsed which could be a string like #9F0 or rgb(255,102,51) or rgba(255,0,0,0.5) or it could be a number like 0xFF00CC or even a named color like red, blue, purple, etc. - * @return {Array.} An array containing red, green, and blue (and optionally alpha) in that order. - */ - _parseColor = function(v) { - var c1, c2, c3, h, s, l; - if (!v || v === "") { - return _colorLookup.black; - } - if (typeof(v) === "number") { - return [v >> 16, (v >> 8) & 255, v & 255]; - } - if (v.charAt(v.length - 1) === ",") { //sometimes a trailing commma is included and we should chop it off (typically from a comma-delimited list of values like a textShadow:"2px 2px 2px blue, 5px 5px 5px rgb(255,0,0)" - in this example "blue," has a trailing comma. We could strip it out inside parseComplex() but we'd need to do it to the beginning and ending values plus it wouldn't provide protection from other potential scenarios like if the user passes in a similar value. - v = v.substr(0, v.length - 1); - } - if (_colorLookup[v]) { - return _colorLookup[v]; - } - if (v.charAt(0) === "#") { - if (v.length === 4) { //for shorthand like #9F0 - c1 = v.charAt(1), - c2 = v.charAt(2), - c3 = v.charAt(3); - v = "#" + c1 + c1 + c2 + c2 + c3 + c3; - } - v = parseInt(v.substr(1), 16); - return [v >> 16, (v >> 8) & 255, v & 255]; - } - if (v.substr(0, 3) === "hsl") { - v = v.match(_numExp); - h = (Number(v[0]) % 360) / 360; - s = Number(v[1]) / 100; - l = Number(v[2]) / 100; - c2 = (l <= 0.5) ? l * (s + 1) : l + s - l * s; - c1 = l * 2 - c2; - if (v.length > 3) { - v[3] = Number(v[3]); - } - v[0] = _hue(h + 1 / 3, c1, c2); - v[1] = _hue(h, c1, c2); - v[2] = _hue(h - 1 / 3, c1, c2); - return v; - } - v = v.match(_numExp) || _colorLookup.transparent; - v[0] = Number(v[0]); - v[1] = Number(v[1]); - v[2] = Number(v[2]); - if (v.length > 3) { - v[3] = Number(v[3]); - } - return v; - }, - _colorExp = "(?:\\b(?:(?:rgb|rgba|hsl|hsla)\\(.+?\\))|\\B#.+?\\b"; //we'll dynamically build this Regular Expression to conserve file size. After building it, it will be able to find rgb(), rgba(), # (hexadecimal), and named color values like red, blue, purple, etc. - - for (p in _colorLookup) { - _colorExp += "|" + p + "\\b"; - } - _colorExp = new RegExp(_colorExp+")", "gi"); - - /** - * @private Returns a formatter function that handles taking a string (or number in some cases) and returning a consistently formatted one in terms of delimiters, quantity of values, etc. For example, we may get boxShadow values defined as "0px red" or "0px 0px 10px rgb(255,0,0)" or "0px 0px 20px 20px #F00" and we need to ensure that what we get back is described with 4 numbers and a color. This allows us to feed it into the _parseComplex() method and split the values up appropriately. The neat thing about this _getFormatter() function is that the dflt defines a pattern as well as a default, so for example, _getFormatter("0px 0px 0px 0px #777", true) not only sets the default as 0px for all distances and #777 for the color, but also sets the pattern such that 4 numbers and a color will always get returned. - * @param {!string} dflt The default value and pattern to follow. So "0px 0px 0px 0px #777" will ensure that 4 numbers and a color will always get returned. - * @param {boolean=} clr If true, the values should be searched for color-related data. For example, boxShadow values typically contain a color whereas borderRadius don't. - * @param {boolean=} collapsible If true, the value is a top/left/right/bottom style one that acts like margin or padding, where if only one value is received, it's used for all 4; if 2 are received, the first is duplicated for 3rd (bottom) and the 2nd is duplicated for the 4th spot (left), etc. - * @return {Function} formatter function - */ - var _getFormatter = function(dflt, clr, collapsible, multi) { - if (dflt == null) { - return function(v) {return v;}; - } - var dColor = clr ? (dflt.match(_colorExp) || [""])[0] : "", - dVals = dflt.split(dColor).join("").match(_valuesExp) || [], - pfx = dflt.substr(0, dflt.indexOf(dVals[0])), - sfx = (dflt.charAt(dflt.length - 1) === ")") ? ")" : "", - delim = (dflt.indexOf(" ") !== -1) ? " " : ",", - numVals = dVals.length, - dSfx = (numVals > 0) ? dVals[0].replace(_numExp, "") : "", - formatter; - if (!numVals) { - return function(v) {return v;}; - } - if (clr) { - formatter = function(v) { - var color, vals, i, a; - if (typeof(v) === "number") { - v += dSfx; - } else if (multi && _commasOutsideParenExp.test(v)) { - a = v.replace(_commasOutsideParenExp, "|").split("|"); - for (i = 0; i < a.length; i++) { - a[i] = formatter(a[i]); - } - return a.join(","); - } - color = (v.match(_colorExp) || [dColor])[0]; - vals = v.split(color).join("").match(_valuesExp) || []; - i = vals.length; - if (numVals > i--) { - while (++i < numVals) { - vals[i] = collapsible ? vals[(((i - 1) / 2) | 0)] : dVals[i]; - } - } - return pfx + vals.join(delim) + delim + color + sfx + (v.indexOf("inset") !== -1 ? " inset" : ""); - }; - return formatter; - - } - formatter = function(v) { - var vals, a, i; - if (typeof(v) === "number") { - v += dSfx; - } else if (multi && _commasOutsideParenExp.test(v)) { - a = v.replace(_commasOutsideParenExp, "|").split("|"); - for (i = 0; i < a.length; i++) { - a[i] = formatter(a[i]); - } - return a.join(","); - } - vals = v.match(_valuesExp) || []; - i = vals.length; - if (numVals > i--) { - while (++i < numVals) { - vals[i] = collapsible ? vals[(((i - 1) / 2) | 0)] : dVals[i]; - } - } - return pfx + vals.join(delim) + sfx; - }; - return formatter; - }, - - /** - * @private returns a formatter function that's used for edge-related values like marginTop, marginLeft, paddingBottom, paddingRight, etc. Just pass a comma-delimited list of property names related to the edges. - * @param {!string} props a comma-delimited list of property names in order from top to left, like "marginTop,marginRight,marginBottom,marginLeft" - * @return {Function} a formatter function - */ - _getEdgeParser = function(props) { - props = props.split(","); - return function(t, e, p, cssp, pt, plugin, vars) { - var a = (e + "").split(" "), - i; - vars = {}; - for (i = 0; i < 4; i++) { - vars[props[i]] = a[i] = a[i] || a[(((i - 1) / 2) >> 0)]; - } - return cssp.parse(t, vars, pt, plugin); - }; - }, - - // @private used when other plugins must tween values first, like BezierPlugin or ThrowPropsPlugin, etc. That plugin's setRatio() gets called first so that the values are updated, and then we loop through the MiniPropTweens which handle copying the values into their appropriate slots so that they can then be applied correctly in the main CSSPlugin setRatio() method. Remember, we typically create a proxy object that has a bunch of uniquely-named properties that we feed to the sub-plugin and it does its magic normally, and then we must interpret those values and apply them to the css because often numbers must get combined/concatenated, suffixes added, etc. to work with css, like boxShadow could have 4 values plus a color. - _setPluginRatio = _internals._setPluginRatio = function(v) { - this.plugin.setRatio(v); - var d = this.data, - proxy = d.proxy, - mpt = d.firstMPT, - min = 0.000001, - val, pt, i, str; - while (mpt) { - val = proxy[mpt.v]; - if (mpt.r) { - val = Math.round(val); - } else if (val < min && val > -min) { - val = 0; - } - mpt.t[mpt.p] = val; - mpt = mpt._next; - } - if (d.autoRotate) { - d.autoRotate.rotation = proxy.rotation; - } - //at the end, we must set the CSSPropTween's "e" (end) value dynamically here because that's what is used in the final setRatio() method. - if (v === 1) { - mpt = d.firstMPT; - while (mpt) { - pt = mpt.t; - if (!pt.type) { - pt.e = pt.s + pt.xs0; - } else if (pt.type === 1) { - str = pt.xs0 + pt.s + pt.xs1; - for (i = 1; i < pt.l; i++) { - str += pt["xn"+i] + pt["xs"+(i+1)]; - } - pt.e = str; - } - mpt = mpt._next; - } - } - }, - - /** - * @private @constructor Used by a few SpecialProps to hold important values for proxies. For example, _parseToProxy() creates a MiniPropTween instance for each property that must get tweened on the proxy, and we record the original property name as well as the unique one we create for the proxy, plus whether or not the value needs to be rounded plus the original value. - * @param {!Object} t target object whose property we're tweening (often a CSSPropTween) - * @param {!string} p property name - * @param {(number|string|object)} v value - * @param {MiniPropTween=} next next MiniPropTween in the linked list - * @param {boolean=} r if true, the tweened value should be rounded to the nearest integer - */ - MiniPropTween = function(t, p, v, next, r) { - this.t = t; - this.p = p; - this.v = v; - this.r = r; - if (next) { - next._prev = this; - this._next = next; - } - }, - - /** - * @private Most other plugins (like BezierPlugin and ThrowPropsPlugin and others) can only tween numeric values, but CSSPlugin must accommodate special values that have a bunch of extra data (like a suffix or strings between numeric values, etc.). For example, boxShadow has values like "10px 10px 20px 30px rgb(255,0,0)" which would utterly confuse other plugins. This method allows us to split that data apart and grab only the numeric data and attach it to uniquely-named properties of a generic proxy object ({}) so that we can feed that to virtually any plugin to have the numbers tweened. However, we must also keep track of which properties from the proxy go with which CSSPropTween values and instances. So we create a linked list of MiniPropTweens. Each one records a target (the original CSSPropTween), property (like "s" or "xn1" or "xn2") that we're tweening and the unique property name that was used for the proxy (like "boxShadow_xn1" and "boxShadow_xn2") and whether or not they need to be rounded. That way, in the _setPluginRatio() method we can simply copy the values over from the proxy to the CSSPropTween instance(s). Then, when the main CSSPlugin setRatio() method runs and applies the CSSPropTween values accordingly, they're updated nicely. So the external plugin tweens the numbers, _setPluginRatio() copies them over, and setRatio() acts normally, applying css-specific values to the element. - * This method returns an object that has the following properties: - * - proxy: a generic object containing the starting values for all the properties that will be tweened by the external plugin. This is what we feed to the external _onInitTween() as the target - * - end: a generic object containing the ending values for all the properties that will be tweened by the external plugin. This is what we feed to the external plugin's _onInitTween() as the destination values - * - firstMPT: the first MiniPropTween in the linked list - * - pt: the first CSSPropTween in the linked list that was created when parsing. If shallow is true, this linked list will NOT attach to the one passed into the _parseToProxy() as the "pt" (4th) parameter. - * @param {!Object} t target object to be tweened - * @param {!(Object|string)} vars the object containing the information about the tweening values (typically the end/destination values) that should be parsed - * @param {!CSSPlugin} cssp The CSSPlugin instance - * @param {CSSPropTween=} pt the next CSSPropTween in the linked list - * @param {TweenPlugin=} plugin the external TweenPlugin instance that will be handling tweening the numeric values - * @param {boolean=} shallow if true, the resulting linked list from the parse will NOT be attached to the CSSPropTween that was passed in as the "pt" (4th) parameter. - * @return An object containing the following properties: proxy, end, firstMPT, and pt (see above for descriptions) - */ - _parseToProxy = _internals._parseToProxy = function(t, vars, cssp, pt, plugin, shallow) { - var bpt = pt, - start = {}, - end = {}, - transform = cssp._transform, - oldForce = _forcePT, - i, p, xp, mpt, firstPT; - cssp._transform = null; - _forcePT = vars; - pt = firstPT = cssp.parse(t, vars, pt, plugin); - _forcePT = oldForce; - //break off from the linked list so the new ones are isolated. - if (shallow) { - cssp._transform = transform; - if (bpt) { - bpt._prev = null; - if (bpt._prev) { - bpt._prev._next = null; - } - } - } - while (pt && pt !== bpt) { - if (pt.type <= 1) { - p = pt.p; - end[p] = pt.s + pt.c; - start[p] = pt.s; - if (!shallow) { - mpt = new MiniPropTween(pt, "s", p, mpt, pt.r); - pt.c = 0; - } - if (pt.type === 1) { - i = pt.l; - while (--i > 0) { - xp = "xn" + i; - p = pt.p + "_" + xp; - end[p] = pt.data[xp]; - start[p] = pt[xp]; - if (!shallow) { - mpt = new MiniPropTween(pt, xp, p, mpt, pt.rxp[xp]); - } - } - } - } - pt = pt._next; - } - return {proxy:start, end:end, firstMPT:mpt, pt:firstPT}; - }, - - - - /** - * @constructor Each property that is tweened has at least one CSSPropTween associated with it. These instances store important information like the target, property, starting value, amount of change, etc. They can also optionally have a number of "extra" strings and numeric values named xs1, xn1, xs2, xn2, xs3, xn3, etc. where "s" indicates string and "n" indicates number. These can be pieced together in a complex-value tween (type:1) that has alternating types of data like a string, number, string, number, etc. For example, boxShadow could be "5px 5px 8px rgb(102, 102, 51)". In that value, there are 6 numbers that may need to tween and then pieced back together into a string again with spaces, suffixes, etc. xs0 is special in that it stores the suffix for standard (type:0) tweens, -OR- the first string (prefix) in a complex-value (type:1) CSSPropTween -OR- it can be the non-tweening value in a type:-1 CSSPropTween. We do this to conserve memory. - * CSSPropTweens have the following optional properties as well (not defined through the constructor): - * - l: Length in terms of the number of extra properties that the CSSPropTween has (default: 0). For example, for a boxShadow we may need to tween 5 numbers in which case l would be 5; Keep in mind that the start/end values for the first number that's tweened are always stored in the s and c properties to conserve memory. All additional values thereafter are stored in xn1, xn2, etc. - * - xfirst: The first instance of any sub-CSSPropTweens that are tweening properties of this instance. For example, we may split up a boxShadow tween so that there's a main CSSPropTween of type:1 that has various xs* and xn* values associated with the h-shadow, v-shadow, blur, color, etc. Then we spawn a CSSPropTween for each of those that has a higher priority and runs BEFORE the main CSSPropTween so that the values are all set by the time it needs to re-assemble them. The xfirst gives us an easy way to identify the first one in that chain which typically ends at the main one (because they're all prepende to the linked list) - * - plugin: The TweenPlugin instance that will handle the tweening of any complex values. For example, sometimes we don't want to use normal subtweens (like xfirst refers to) to tween the values - we might want ThrowPropsPlugin or BezierPlugin some other plugin to do the actual tweening, so we create a plugin instance and store a reference here. We need this reference so that if we get a request to round values or disable a tween, we can pass along that request. - * - data: Arbitrary data that needs to be stored with the CSSPropTween. Typically if we're going to have a plugin handle the tweening of a complex-value tween, we create a generic object that stores the END values that we're tweening to and the CSSPropTween's xs1, xs2, etc. have the starting values. We store that object as data. That way, we can simply pass that object to the plugin and use the CSSPropTween as the target. - * - setRatio: Only used for type:2 tweens that require custom functionality. In this case, we call the CSSPropTween's setRatio() method and pass the ratio each time the tween updates. This isn't quite as efficient as doing things directly in the CSSPlugin's setRatio() method, but it's very convenient and flexible. - * @param {!Object} t Target object whose property will be tweened. Often a DOM element, but not always. It could be anything. - * @param {string} p Property to tween (name). For example, to tween element.width, p would be "width". - * @param {number} s Starting numeric value - * @param {number} c Change in numeric value over the course of the entire tween. For example, if element.width starts at 5 and should end at 100, c would be 95. - * @param {CSSPropTween=} next The next CSSPropTween in the linked list. If one is defined, we will define its _prev as the new instance, and the new instance's _next will be pointed at it. - * @param {number=} type The type of CSSPropTween where -1 = a non-tweening value, 0 = a standard simple tween, 1 = a complex value (like one that has multiple numbers in a comma- or space-delimited string like border:"1px solid red"), and 2 = one that uses a custom setRatio function that does all of the work of applying the values on each update. - * @param {string=} n Name of the property that should be used for overwriting purposes which is typically the same as p but not always. For example, we may need to create a subtween for the 2nd part of a "clip:rect(...)" tween in which case "p" might be xs1 but "n" is still "clip" - * @param {boolean=} r If true, the value(s) should be rounded - * @param {number=} pr Priority in the linked list order. Higher priority CSSPropTweens will be updated before lower priority ones. The default priority is 0. - * @param {string=} b Beginning value. We store this to ensure that it is EXACTLY what it was when the tween began without any risk of interpretation issues. - * @param {string=} e Ending value. We store this to ensure that it is EXACTLY what the user defined at the end of the tween without any risk of interpretation issues. - */ - CSSPropTween = _internals.CSSPropTween = function(t, p, s, c, next, type, n, r, pr, b, e) { - this.t = t; //target - this.p = p; //property - this.s = s; //starting value - this.c = c; //change value - this.n = n || p; //name that this CSSPropTween should be associated to (usually the same as p, but not always - n is what overwriting looks at) - if (!(t instanceof CSSPropTween)) { - _overwriteProps.push(this.n); - } - this.r = r; //round (boolean) - this.type = type || 0; //0 = normal tween, -1 = non-tweening (in which case xs0 will be applied to the target's property, like tp.t[tp.p] = tp.xs0), 1 = complex-value SpecialProp, 2 = custom setRatio() that does all the work - if (pr) { - this.pr = pr; - _hasPriority = true; - } - this.b = (b === undefined) ? s : b; - this.e = (e === undefined) ? s + c : e; - if (next) { - this._next = next; - next._prev = this; - } - }, - - /** - * Takes a target, the beginning value and ending value (as strings) and parses them into a CSSPropTween (possibly with child CSSPropTweens) that accommodates multiple numbers, colors, comma-delimited values, etc. For example: - * sp.parseComplex(element, "boxShadow", "5px 10px 20px rgb(255,102,51)", "0px 0px 0px red", true, "0px 0px 0px rgb(0,0,0,0)", pt); - * It will walk through the beginning and ending values (which should be in the same format with the same number and type of values) and figure out which parts are numbers, what strings separate the numeric/tweenable values, and then create the CSSPropTweens accordingly. If a plugin is defined, no child CSSPropTweens will be created. Instead, the ending values will be stored in the "data" property of the returned CSSPropTween like: {s:-5, xn1:-10, xn2:-20, xn3:255, xn4:0, xn5:0} so that it can be fed to any other plugin and it'll be plain numeric tweens but the recomposition of the complex value will be handled inside CSSPlugin's setRatio(). - * If a setRatio is defined, the type of the CSSPropTween will be set to 2 and recomposition of the values will be the responsibility of that method. - * - * @param {!Object} t Target whose property will be tweened - * @param {!string} p Property that will be tweened (its name, like "left" or "backgroundColor" or "boxShadow") - * @param {string} b Beginning value - * @param {string} e Ending value - * @param {boolean} clrs If true, the value could contain a color value like "rgb(255,0,0)" or "#F00" or "red". The default is false, so no colors will be recognized (a performance optimization) - * @param {(string|number|Object)} dflt The default beginning value that should be used if no valid beginning value is defined or if the number of values inside the complex beginning and ending values don't match - * @param {?CSSPropTween} pt CSSPropTween instance that is the current head of the linked list (we'll prepend to this). - * @param {number=} pr Priority in the linked list order. Higher priority properties will be updated before lower priority ones. The default priority is 0. - * @param {TweenPlugin=} plugin If a plugin should handle the tweening of extra properties, pass the plugin instance here. If one is defined, then NO subtweens will be created for any extra properties (the properties will be created - just not additional CSSPropTween instances to tween them) because the plugin is expected to do so. However, the end values WILL be populated in the "data" property, like {s:100, xn1:50, xn2:300} - * @param {function(number)=} setRatio If values should be set in a custom function instead of being pieced together in a type:1 (complex-value) CSSPropTween, define that custom function here. - * @return {CSSPropTween} The first CSSPropTween in the linked list which includes the new one(s) added by the parseComplex() call. - */ - _parseComplex = CSSPlugin.parseComplex = function(t, p, b, e, clrs, dflt, pt, pr, plugin, setRatio) { - //DEBUG: _log("parseComplex: "+p+", b: "+b+", e: "+e); - b = b || dflt || ""; - pt = new CSSPropTween(t, p, 0, 0, pt, (setRatio ? 2 : 1), null, false, pr, b, e); - e += ""; //ensures it's a string - var ba = b.split(", ").join(",").split(" "), //beginning array - ea = e.split(", ").join(",").split(" "), //ending array - l = ba.length, - autoRound = (_autoRound !== false), - i, xi, ni, bv, ev, bnums, enums, bn, rgba, temp, cv, str; - if (e.indexOf(",") !== -1 || b.indexOf(",") !== -1) { - ba = ba.join(" ").replace(_commasOutsideParenExp, ", ").split(" "); - ea = ea.join(" ").replace(_commasOutsideParenExp, ", ").split(" "); - l = ba.length; - } - if (l !== ea.length) { - //DEBUG: _log("mismatched formatting detected on " + p + " (" + b + " vs " + e + ")"); - ba = (dflt || "").split(" "); - l = ba.length; - } - pt.plugin = plugin; - pt.setRatio = setRatio; - for (i = 0; i < l; i++) { - bv = ba[i]; - ev = ea[i]; - bn = parseFloat(bv); - - //if the value begins with a number (most common). It's fine if it has a suffix like px - if (bn || bn === 0) { - pt.appendXtra("", bn, _parseChange(ev, bn), ev.replace(_relNumExp, ""), (autoRound && ev.indexOf("px") !== -1), true); - - //if the value is a color - } else if (clrs && (bv.charAt(0) === "#" || _colorLookup[bv] || _rgbhslExp.test(bv))) { - str = ev.charAt(ev.length - 1) === "," ? ")," : ")"; //if there's a comma at the end, retain it. - bv = _parseColor(bv); - ev = _parseColor(ev); - rgba = (bv.length + ev.length > 6); - if (rgba && !_supportsOpacity && ev[3] === 0) { //older versions of IE don't support rgba(), so if the destination alpha is 0, just use "transparent" for the end color - pt["xs" + pt.l] += pt.l ? " transparent" : "transparent"; - pt.e = pt.e.split(ea[i]).join("transparent"); - } else { - if (!_supportsOpacity) { //old versions of IE don't support rgba(). - rgba = false; - } - pt.appendXtra((rgba ? "rgba(" : "rgb("), bv[0], ev[0] - bv[0], ",", true, true) - .appendXtra("", bv[1], ev[1] - bv[1], ",", true) - .appendXtra("", bv[2], ev[2] - bv[2], (rgba ? "," : str), true); - if (rgba) { - bv = (bv.length < 4) ? 1 : bv[3]; - pt.appendXtra("", bv, ((ev.length < 4) ? 1 : ev[3]) - bv, str, false); - } - } - - } else { - bnums = bv.match(_numExp); //gets each group of numbers in the beginning value string and drops them into an array - - //if no number is found, treat it as a non-tweening value and just append the string to the current xs. - if (!bnums) { - pt["xs" + pt.l] += pt.l ? " " + bv : bv; - - //loop through all the numbers that are found and construct the extra values on the pt. - } else { - enums = ev.match(_relNumExp); //get each group of numbers in the end value string and drop them into an array. We allow relative values too, like +=50 or -=.5 - if (!enums || enums.length !== bnums.length) { - //DEBUG: _log("mismatched formatting detected on " + p + " (" + b + " vs " + e + ")"); - return pt; - } - ni = 0; - for (xi = 0; xi < bnums.length; xi++) { - cv = bnums[xi]; - temp = bv.indexOf(cv, ni); - pt.appendXtra(bv.substr(ni, temp - ni), Number(cv), _parseChange(enums[xi], cv), "", (autoRound && bv.substr(temp + cv.length, 2) === "px"), (xi === 0)); - ni = temp + cv.length; - } - pt["xs" + pt.l] += bv.substr(ni); - } - } - } - //if there are relative values ("+=" or "-=" prefix), we need to adjust the ending value to eliminate the prefixes and combine the values properly. - if (e.indexOf("=") !== -1) if (pt.data) { - str = pt.xs0 + pt.data.s; - for (i = 1; i < pt.l; i++) { - str += pt["xs" + i] + pt.data["xn" + i]; - } - pt.e = str + pt["xs" + i]; - } - if (!pt.l) { - pt.type = -1; - pt.xs0 = pt.e; - } - return pt.xfirst || pt; - }, - i = 9; - - - p = CSSPropTween.prototype; - p.l = p.pr = 0; //length (number of extra properties like xn1, xn2, xn3, etc. - while (--i > 0) { - p["xn" + i] = 0; - p["xs" + i] = ""; - } - p.xs0 = ""; - p._next = p._prev = p.xfirst = p.data = p.plugin = p.setRatio = p.rxp = null; - - - /** - * Appends and extra tweening value to a CSSPropTween and automatically manages any prefix and suffix strings. The first extra value is stored in the s and c of the main CSSPropTween instance, but thereafter any extras are stored in the xn1, xn2, xn3, etc. The prefixes and suffixes are stored in the xs0, xs1, xs2, etc. properties. For example, if I walk through a clip value like "rect(10px, 5px, 0px, 20px)", the values would be stored like this: - * xs0:"rect(", s:10, xs1:"px, ", xn1:5, xs2:"px, ", xn2:0, xs3:"px, ", xn3:20, xn4:"px)" - * And they'd all get joined together when the CSSPlugin renders (in the setRatio() method). - * @param {string=} pfx Prefix (if any) - * @param {!number} s Starting value - * @param {!number} c Change in numeric value over the course of the entire tween. For example, if the start is 5 and the end is 100, the change would be 95. - * @param {string=} sfx Suffix (if any) - * @param {boolean=} r Round (if true). - * @param {boolean=} pad If true, this extra value should be separated by the previous one by a space. If there is no previous extra and pad is true, it will automatically drop the space. - * @return {CSSPropTween} returns itself so that multiple methods can be chained together. - */ - p.appendXtra = function(pfx, s, c, sfx, r, pad) { - var pt = this, - l = pt.l; - pt["xs" + l] += (pad && l) ? " " + pfx : pfx || ""; - if (!c) if (l !== 0 && !pt.plugin) { //typically we'll combine non-changing values right into the xs to optimize performance, but we don't combine them when there's a plugin that will be tweening the values because it may depend on the values being split apart, like for a bezier, if a value doesn't change between the first and second iteration but then it does on the 3rd, we'll run into trouble because there's no xn slot for that value! - pt["xs" + l] += s + (sfx || ""); - return pt; - } - pt.l++; - pt.type = pt.setRatio ? 2 : 1; - pt["xs" + pt.l] = sfx || ""; - if (l > 0) { - pt.data["xn" + l] = s + c; - pt.rxp["xn" + l] = r; //round extra property (we need to tap into this in the _parseToProxy() method) - pt["xn" + l] = s; - if (!pt.plugin) { - pt.xfirst = new CSSPropTween(pt, "xn" + l, s, c, pt.xfirst || pt, 0, pt.n, r, pt.pr); - pt.xfirst.xs0 = 0; //just to ensure that the property stays numeric which helps modern browsers speed up processing. Remember, in the setRatio() method, we do pt.t[pt.p] = val + pt.xs0 so if pt.xs0 is "" (the default), it'll cast the end value as a string. When a property is a number sometimes and a string sometimes, it prevents the compiler from locking in the data type, slowing things down slightly. - } - return pt; - } - pt.data = {s:s + c}; - pt.rxp = {}; - pt.s = s; - pt.c = c; - pt.r = r; - return pt; - }; - - /** - * @constructor A SpecialProp is basically a css property that needs to be treated in a non-standard way, like if it may contain a complex value like boxShadow:"5px 10px 15px rgb(255, 102, 51)" or if it is associated with another plugin like ThrowPropsPlugin or BezierPlugin. Every SpecialProp is associated with a particular property name like "boxShadow" or "throwProps" or "bezier" and it will intercept those values in the vars object that's passed to the CSSPlugin and handle them accordingly. - * @param {!string} p Property name (like "boxShadow" or "throwProps") - * @param {Object=} options An object containing any of the following configuration options: - * - defaultValue: the default value - * - parser: A function that should be called when the associated property name is found in the vars. This function should return a CSSPropTween instance and it should ensure that it is properly inserted into the linked list. It will receive 4 paramters: 1) The target, 2) The value defined in the vars, 3) The CSSPlugin instance (whose _firstPT should be used for the linked list), and 4) A computed style object if one was calculated (this is a speed optimization that allows retrieval of starting values quicker) - * - formatter: a function that formats any value received for this special property (for example, boxShadow could take "5px 5px red" and format it to "5px 5px 0px 0px red" so that both the beginning and ending values have a common order and quantity of values.) - * - prefix: if true, we'll determine whether or not this property requires a vendor prefix (like Webkit or Moz or ms or O) - * - color: set this to true if the value for this SpecialProp may contain color-related values like rgb(), rgba(), etc. - * - priority: priority in the linked list order. Higher priority SpecialProps will be updated before lower priority ones. The default priority is 0. - * - multi: if true, the formatter should accommodate a comma-delimited list of values, like boxShadow could have multiple boxShadows listed out. - * - collapsible: if true, the formatter should treat the value like it's a top/right/bottom/left value that could be collapsed, like "5px" would apply to all, "5px, 10px" would use 5px for top/bottom and 10px for right/left, etc. - * - keyword: a special keyword that can [optionally] be found inside the value (like "inset" for boxShadow). This allows us to validate beginning/ending values to make sure they match (if the keyword is found in one, it'll be added to the other for consistency by default). - */ - var SpecialProp = function(p, options) { - options = options || {}; - this.p = options.prefix ? _checkPropPrefix(p) || p : p; - _specialProps[p] = _specialProps[this.p] = this; - this.format = options.formatter || _getFormatter(options.defaultValue, options.color, options.collapsible, options.multi); - if (options.parser) { - this.parse = options.parser; - } - this.clrs = options.color; - this.multi = options.multi; - this.keyword = options.keyword; - this.dflt = options.defaultValue; - this.pr = options.priority || 0; - }, - - //shortcut for creating a new SpecialProp that can accept multiple properties as a comma-delimited list (helps minification). dflt can be an array for multiple values (we don't do a comma-delimited list because the default value may contain commas, like rect(0px,0px,0px,0px)). We attach this method to the SpecialProp class/object instead of using a private _createSpecialProp() method so that we can tap into it externally if necessary, like from another plugin. - _registerComplexSpecialProp = _internals._registerComplexSpecialProp = function(p, options, defaults) { - if (typeof(options) !== "object") { - options = {parser:defaults}; //to make backwards compatible with older versions of BezierPlugin and ThrowPropsPlugin - } - var a = p.split(","), - d = options.defaultValue, - i, temp; - defaults = defaults || [d]; - for (i = 0; i < a.length; i++) { - options.prefix = (i === 0 && options.prefix); - options.defaultValue = defaults[i] || d; - temp = new SpecialProp(a[i], options); - } - }, - - //creates a placeholder special prop for a plugin so that the property gets caught the first time a tween of it is attempted, and at that time it makes the plugin register itself, thus taking over for all future tweens of that property. This allows us to not mandate that things load in a particular order and it also allows us to log() an error that informs the user when they attempt to tween an external plugin-related property without loading its .js file. - _registerPluginProp = function(p) { - if (!_specialProps[p]) { - var pluginName = p.charAt(0).toUpperCase() + p.substr(1) + "Plugin"; - _registerComplexSpecialProp(p, {parser:function(t, e, p, cssp, pt, plugin, vars) { - var pluginClass = (window.GreenSockGlobals || window).com.greensock.plugins[pluginName]; - if (!pluginClass) { - _log("Error: " + pluginName + " js file not loaded."); - return pt; - } - pluginClass._cssRegister(); - return _specialProps[p].parse(t, e, p, cssp, pt, plugin, vars); - }}); - } - }; - - - p = SpecialProp.prototype; - - /** - * Alias for _parseComplex() that automatically plugs in certain values for this SpecialProp, like its property name, whether or not colors should be sensed, the default value, and priority. It also looks for any keyword that the SpecialProp defines (like "inset" for boxShadow) and ensures that the beginning and ending values have the same number of values for SpecialProps where multi is true (like boxShadow and textShadow can have a comma-delimited list) - * @param {!Object} t target element - * @param {(string|number|object)} b beginning value - * @param {(string|number|object)} e ending (destination) value - * @param {CSSPropTween=} pt next CSSPropTween in the linked list - * @param {TweenPlugin=} plugin If another plugin will be tweening the complex value, that TweenPlugin instance goes here. - * @param {function=} setRatio If a custom setRatio() method should be used to handle this complex value, that goes here. - * @return {CSSPropTween=} First CSSPropTween in the linked list - */ - p.parseComplex = function(t, b, e, pt, plugin, setRatio) { - var kwd = this.keyword, - i, ba, ea, l, bi, ei; - //if this SpecialProp's value can contain a comma-delimited list of values (like boxShadow or textShadow), we must parse them in a special way, and look for a keyword (like "inset" for boxShadow) and ensure that the beginning and ending BOTH have it if the end defines it as such. We also must ensure that there are an equal number of values specified (we can't tween 1 boxShadow to 3 for example) - if (this.multi) if (_commasOutsideParenExp.test(e) || _commasOutsideParenExp.test(b)) { - ba = b.replace(_commasOutsideParenExp, "|").split("|"); - ea = e.replace(_commasOutsideParenExp, "|").split("|"); - } else if (kwd) { - ba = [b]; - ea = [e]; - } - if (ea) { - l = (ea.length > ba.length) ? ea.length : ba.length; - for (i = 0; i < l; i++) { - b = ba[i] = ba[i] || this.dflt; - e = ea[i] = ea[i] || this.dflt; - if (kwd) { - bi = b.indexOf(kwd); - ei = e.indexOf(kwd); - if (bi !== ei) { - e = (ei === -1) ? ea : ba; - e[i] += " " + kwd; - } - } - } - b = ba.join(", "); - e = ea.join(", "); - } - return _parseComplex(t, this.p, b, e, this.clrs, this.dflt, pt, this.pr, plugin, setRatio); - }; - - /** - * Accepts a target and end value and spits back a CSSPropTween that has been inserted into the CSSPlugin's linked list and conforms with all the conventions we use internally, like type:-1, 0, 1, or 2, setting up any extra property tweens, priority, etc. For example, if we have a boxShadow SpecialProp and call: - * this._firstPT = sp.parse(element, "5px 10px 20px rgb(2550,102,51)", "boxShadow", this); - * It should figure out the starting value of the element's boxShadow, compare it to the provided end value and create all the necessary CSSPropTweens of the appropriate types to tween the boxShadow. The CSSPropTween that gets spit back should already be inserted into the linked list (the 4th parameter is the current head, so prepend to that). - * @param {!Object} t Target object whose property is being tweened - * @param {Object} e End value as provided in the vars object (typically a string, but not always - like a throwProps would be an object). - * @param {!string} p Property name - * @param {!CSSPlugin} cssp The CSSPlugin instance that should be associated with this tween. - * @param {?CSSPropTween} pt The CSSPropTween that is the current head of the linked list (we'll prepend to it) - * @param {TweenPlugin=} plugin If a plugin will be used to tween the parsed value, this is the plugin instance. - * @param {Object=} vars Original vars object that contains the data for parsing. - * @return {CSSPropTween} The first CSSPropTween in the linked list which includes the new one(s) added by the parse() call. - */ - p.parse = function(t, e, p, cssp, pt, plugin, vars) { - return this.parseComplex(t.style, this.format(_getStyle(t, this.p, _cs, false, this.dflt)), this.format(e), pt, plugin); - }; - - /** - * Registers a special property that should be intercepted from any "css" objects defined in tweens. This allows you to handle them however you want without CSSPlugin doing it for you. The 2nd parameter should be a function that accepts 3 parameters: - * 1) Target object whose property should be tweened (typically a DOM element) - * 2) The end/destination value (could be a string, number, object, or whatever you want) - * 3) The tween instance (you probably don't need to worry about this, but it can be useful for looking up information like the duration) - * - * Then, your function should return a function which will be called each time the tween gets rendered, passing a numeric "ratio" parameter to your function that indicates the change factor (usually between 0 and 1). For example: - * - * CSSPlugin.registerSpecialProp("myCustomProp", function(target, value, tween) { - * var start = target.style.width; - * return function(ratio) { - * target.style.width = (start + value * ratio) + "px"; - * console.log("set width to " + target.style.width); - * } - * }, 0); - * - * Then, when I do this tween, it will trigger my special property: - * - * TweenLite.to(element, 1, {css:{myCustomProp:100}}); - * - * In the example, of course, we're just changing the width, but you can do anything you want. - * - * @param {!string} name Property name (or comma-delimited list of property names) that should be intercepted and handled by your function. For example, if I define "myCustomProp", then it would handle that portion of the following tween: TweenLite.to(element, 1, {css:{myCustomProp:100}}) - * @param {!function(Object, Object, Object, string):function(number)} onInitTween The function that will be called when a tween of this special property is performed. The function will receive 4 parameters: 1) Target object that should be tweened, 2) Value that was passed to the tween, 3) The tween instance itself (rarely used), and 4) The property name that's being tweened. Your function should return a function that should be called on every update of the tween. That function will receive a single parameter that is a "change factor" value (typically between 0 and 1) indicating the amount of change as a ratio. You can use this to determine how to set the values appropriately in your function. - * @param {number=} priority Priority that helps the engine determine the order in which to set the properties (default: 0). Higher priority properties will be updated before lower priority ones. - */ - CSSPlugin.registerSpecialProp = function(name, onInitTween, priority) { - _registerComplexSpecialProp(name, {parser:function(t, e, p, cssp, pt, plugin, vars) { - var rv = new CSSPropTween(t, p, 0, 0, pt, 2, p, false, priority); - rv.plugin = plugin; - rv.setRatio = onInitTween(t, e, cssp._tween, p); - return rv; - }, priority:priority}); - }; - - - - - - - - - //transform-related methods and properties - var _transformProps = ("scaleX,scaleY,scaleZ,x,y,z,skewX,skewY,rotation,rotationX,rotationY,perspective").split(","), - _transformProp = _checkPropPrefix("transform"), //the Javascript (camelCase) transform property, like msTransform, WebkitTransform, MozTransform, or OTransform. - _transformPropCSS = _prefixCSS + "transform", - _transformOriginProp = _checkPropPrefix("transformOrigin"), - _supports3D = (_checkPropPrefix("perspective") !== null), - Transform = _internals.Transform = function() { - this.skewY = 0; - }, - - /** - * Parses the transform values for an element, returning an object with x, y, z, scaleX, scaleY, scaleZ, rotation, rotationX, rotationY, skewX, and skewY properties. Note: by default (for performance reasons), all skewing is combined into skewX and rotation but skewY still has a place in the transform object so that we can record how much of the skew is attributed to skewX vs skewY. Remember, a skewY of 10 looks the same as a rotation of 10 and skewX of -10. - * @param {!Object} t target element - * @param {Object=} cs computed style object (optional) - * @param {boolean=} rec if true, the transform values will be recorded to the target element's _gsTransform object, like target._gsTransform = {x:0, y:0, z:0, scaleX:1...} - * @param {boolean=} parse if true, we'll ignore any _gsTransform values that already exist on the element, and force a reparsing of the css (calculated style) - * @return {object} object containing all of the transform properties/values like {x:0, y:0, z:0, scaleX:1...} - */ - _getTransform = _internals.getTransform = function(t, cs, rec, parse) { - if (t._gsTransform && rec && !parse) { - return t._gsTransform; //if the element already has a _gsTransform, use that. Note: some browsers don't accurately return the calculated style for the transform (particularly for SVG), so it's almost always safest to just use the values we've already applied rather than re-parsing things. - } - var tm = rec ? t._gsTransform || new Transform() : new Transform(), - invX = (tm.scaleX < 0), //in order to interpret things properly, we need to know if the user applied a negative scaleX previously so that we can adjust the rotation and skewX accordingly. Otherwise, if we always interpret a flipped matrix as affecting scaleY and the user only wants to tween the scaleX on multiple sequential tweens, it would keep the negative scaleY without that being the user's intent. - min = 0.00002, - rnd = 100000, - minAngle = 179.99, - minPI = minAngle * _DEG2RAD, - zOrigin = _supports3D ? parseFloat(_getStyle(t, _transformOriginProp, cs, false, "0 0 0").split(" ")[2]) || tm.zOrigin || 0 : 0, - s, m, i, n, dec, scaleX, scaleY, rotation, skewX, difX, difY, difR, difS; - if (_transformProp) { - s = _getStyle(t, _transformPropCSS, cs, true); - } else if (t.currentStyle) { - //for older versions of IE, we need to interpret the filter portion that is in the format: progid:DXImageTransform.Microsoft.Matrix(M11=6.123233995736766e-17, M12=-1, M21=1, M22=6.123233995736766e-17, sizingMethod='auto expand') Notice that we need to swap b and c compared to a normal matrix. - s = t.currentStyle.filter.match(_ieGetMatrixExp); - s = (s && s.length === 4) ? [s[0].substr(4), Number(s[2].substr(4)), Number(s[1].substr(4)), s[3].substr(4), (tm.x || 0), (tm.y || 0)].join(",") : ""; - } - //split the matrix values out into an array (m for matrix) - m = (s || "").match(/(?:\-|\b)[\d\-\.e]+\b/gi) || []; - i = m.length; - while (--i > -1) { - n = Number(m[i]); - m[i] = (dec = n - (n |= 0)) ? ((dec * rnd + (dec < 0 ? -0.5 : 0.5)) | 0) / rnd + n : n; //convert strings to Numbers and round to 5 decimal places to avoid issues with tiny numbers. Roughly 20x faster than Number.toFixed(). We also must make sure to round before dividing so that values like 0.9999999999 become 1 to avoid glitches in browser rendering and interpretation of flipped/rotated 3D matrices. And don't just multiply the number by rnd, floor it, and then divide by rnd because the bitwise operations max out at a 32-bit signed integer, thus it could get clipped at a relatively low value (like 22,000.00000 for example). - } - if (m.length === 16) { - - //we'll only look at these position-related 6 variables first because if x/y/z all match, it's relatively safe to assume we don't need to re-parse everything which risks losing important rotational information (like rotationX:180 plus rotationY:180 would look the same as rotation:180 - there's no way to know for sure which direction was taken based solely on the matrix3d() values) - var a13 = m[8], a23 = m[9], a33 = m[10], - a14 = m[12], a24 = m[13], a34 = m[14]; - - //we manually compensate for non-zero z component of transformOrigin to work around bugs in Safari - if (tm.zOrigin) { - a34 = -tm.zOrigin; - a14 = a13*a34-m[12]; - a24 = a23*a34-m[13]; - a34 = a33*a34+tm.zOrigin-m[14]; - } - - //only parse from the matrix if we MUST because not only is it usually unnecessary due to the fact that we store the values in the _gsTransform object, but also because it's impossible to accurately interpret rotationX, rotationY, rotationZ, scaleX, and scaleY if all are applied, so it's much better to rely on what we store. However, we must parse the first time that an object is tweened. We also assume that if the position has changed, the user must have done some styling changes outside of CSSPlugin, thus we force a parse in that scenario. - if (!rec || parse || tm.rotationX == null) { - var a11 = m[0], a21 = m[1], a31 = m[2], a41 = m[3], - a12 = m[4], a22 = m[5], a32 = m[6], a42 = m[7], - a43 = m[11], - angle = Math.atan2(a32, a33), - xFlip = (angle < -minPI || angle > minPI), - t1, t2, t3, cos, sin, yFlip, zFlip; - tm.rotationX = angle * _RAD2DEG; - //rotationX - if (angle) { - cos = Math.cos(-angle); - sin = Math.sin(-angle); - t1 = a12*cos+a13*sin; - t2 = a22*cos+a23*sin; - t3 = a32*cos+a33*sin; - a13 = a12*-sin+a13*cos; - a23 = a22*-sin+a23*cos; - a33 = a32*-sin+a33*cos; - a43 = a42*-sin+a43*cos; - a12 = t1; - a22 = t2; - a32 = t3; - } - //rotationY - angle = Math.atan2(a13, a11); - tm.rotationY = angle * _RAD2DEG; - if (angle) { - yFlip = (angle < -minPI || angle > minPI); - cos = Math.cos(-angle); - sin = Math.sin(-angle); - t1 = a11*cos-a13*sin; - t2 = a21*cos-a23*sin; - t3 = a31*cos-a33*sin; - a23 = a21*sin+a23*cos; - a33 = a31*sin+a33*cos; - a43 = a41*sin+a43*cos; - a11 = t1; - a21 = t2; - a31 = t3; - } - //rotationZ - angle = Math.atan2(a21, a22); - tm.rotation = angle * _RAD2DEG; - if (angle) { - zFlip = (angle < -minPI || angle > minPI); - cos = Math.cos(-angle); - sin = Math.sin(-angle); - a11 = a11*cos+a12*sin; - t2 = a21*cos+a22*sin; - a22 = a21*-sin+a22*cos; - a32 = a31*-sin+a32*cos; - a21 = t2; - } - - if (zFlip && xFlip) { - tm.rotation = tm.rotationX = 0; - } else if (zFlip && yFlip) { - tm.rotation = tm.rotationY = 0; - } else if (yFlip && xFlip) { - tm.rotationY = tm.rotationX = 0; - } - - tm.scaleX = ((Math.sqrt(a11 * a11 + a21 * a21) * rnd + 0.5) | 0) / rnd; - tm.scaleY = ((Math.sqrt(a22 * a22 + a23 * a23) * rnd + 0.5) | 0) / rnd; - tm.scaleZ = ((Math.sqrt(a32 * a32 + a33 * a33) * rnd + 0.5) | 0) / rnd; - tm.skewX = 0; - tm.perspective = a43 ? 1 / ((a43 < 0) ? -a43 : a43) : 0; - tm.x = a14; - tm.y = a24; - tm.z = a34; - } - - } else if ((!_supports3D || parse || !m.length || tm.x !== m[4] || tm.y !== m[5] || (!tm.rotationX && !tm.rotationY)) && !(tm.x !== undefined && _getStyle(t, "display", cs) === "none")) { //sometimes a 6-element matrix is returned even when we performed 3D transforms, like if rotationX and rotationY are 180. In cases like this, we still need to honor the 3D transforms. If we just rely on the 2D info, it could affect how the data is interpreted, like scaleY might get set to -1 or rotation could get offset by 180 degrees. For example, do a TweenLite.to(element, 1, {css:{rotationX:180, rotationY:180}}) and then later, TweenLite.to(element, 1, {css:{rotationX:0}}) and without this conditional logic in place, it'd jump to a state of being unrotated when the 2nd tween starts. Then again, we need to honor the fact that the user COULD alter the transforms outside of CSSPlugin, like by manually applying new css, so we try to sense that by looking at x and y because if those changed, we know the changes were made outside CSSPlugin and we force a reinterpretation of the matrix values. Also, in Webkit browsers, if the element's "display" is "none", its calculated style value will always return empty, so if we've already recorded the values in the _gsTransform object, we'll just rely on those. - var k = (m.length >= 6), - a = k ? m[0] : 1, - b = m[1] || 0, - c = m[2] || 0, - d = k ? m[3] : 1; - tm.x = m[4] || 0; - tm.y = m[5] || 0; - scaleX = Math.sqrt(a * a + b * b); - scaleY = Math.sqrt(d * d + c * c); - rotation = (a || b) ? Math.atan2(b, a) * _RAD2DEG : tm.rotation || 0; //note: if scaleX is 0, we cannot accurately measure rotation. Same for skewX with a scaleY of 0. Therefore, we default to the previously recorded value (or zero if that doesn't exist). - skewX = (c || d) ? Math.atan2(c, d) * _RAD2DEG + rotation : tm.skewX || 0; - difX = scaleX - Math.abs(tm.scaleX || 0); - difY = scaleY - Math.abs(tm.scaleY || 0); - if (Math.abs(skewX) > 90 && Math.abs(skewX) < 270) { - if (invX) { - scaleX *= -1; - skewX += (rotation <= 0) ? 180 : -180; - rotation += (rotation <= 0) ? 180 : -180; - } else { - scaleY *= -1; - skewX += (skewX <= 0) ? 180 : -180; - } - } - difR = (rotation - tm.rotation) % 180; //note: matching ranges would be very small (+/-0.0001) or very close to 180. - difS = (skewX - tm.skewX) % 180; - //if there's already a recorded _gsTransform in place for the target, we should leave those values in place unless we know things changed for sure (beyond a super small amount). This gets around ambiguous interpretations, like if scaleX and scaleY are both -1, the matrix would be the same as if the rotation was 180 with normal scaleX/scaleY. If the user tweened to particular values, those must be prioritized to ensure animation is consistent. - if (tm.skewX === undefined || difX > min || difX < -min || difY > min || difY < -min || (difR > -minAngle && difR < minAngle && (difR * rnd) | 0 !== 0) || (difS > -minAngle && difS < minAngle && (difS * rnd) | 0 !== 0)) { - tm.scaleX = scaleX; - tm.scaleY = scaleY; - tm.rotation = rotation; - tm.skewX = skewX; - } - if (_supports3D) { - tm.rotationX = tm.rotationY = tm.z = 0; - tm.perspective = parseFloat(CSSPlugin.defaultTransformPerspective) || 0; - tm.scaleZ = 1; - } - } - tm.zOrigin = zOrigin; - - //some browsers have a hard time with very small values like 2.4492935982947064e-16 (notice the "e-" towards the end) and would render the object slightly off. So we round to 0 in these cases. The conditional logic here is faster than calling Math.abs(). Also, browsers tend to render a SLIGHTLY rotated object in a fuzzy way, so we need to snap to exactly 0 when appropriate. - for (i in tm) { - if (tm[i] < min) if (tm[i] > -min) { - tm[i] = 0; - } - } - //DEBUG: _log("parsed rotation: "+(tm.rotationX)+", "+(tm.rotationY)+", "+(tm.rotation)+", scale: "+tm.scaleX+", "+tm.scaleY+", "+tm.scaleZ+", position: "+tm.x+", "+tm.y+", "+tm.z+", perspective: "+tm.perspective); - if (rec) { - t._gsTransform = tm; //record to the object's _gsTransform which we use so that tweens can control individual properties independently (we need all the properties to accurately recompose the matrix in the setRatio() method) - } - return tm; - }, - - //for setting 2D transforms in IE6, IE7, and IE8 (must use a "filter" to emulate the behavior of modern day browser transforms) - _setIETransformRatio = function(v) { - var t = this.data, //refers to the element's _gsTransform object - ang = -t.rotation * _DEG2RAD, - skew = ang + t.skewX * _DEG2RAD, - rnd = 100000, - a = ((Math.cos(ang) * t.scaleX * rnd) | 0) / rnd, - b = ((Math.sin(ang) * t.scaleX * rnd) | 0) / rnd, - c = ((Math.sin(skew) * -t.scaleY * rnd) | 0) / rnd, - d = ((Math.cos(skew) * t.scaleY * rnd) | 0) / rnd, - style = this.t.style, - cs = this.t.currentStyle, - filters, val; - if (!cs) { - return; - } - val = b; //just for swapping the variables an inverting them (reused "val" to avoid creating another variable in memory). IE's filter matrix uses a non-standard matrix configuration (angle goes the opposite way, and b and c are reversed and inverted) - b = -c; - c = -val; - filters = cs.filter; - style.filter = ""; //remove filters so that we can accurately measure offsetWidth/offsetHeight - var w = this.t.offsetWidth, - h = this.t.offsetHeight, - clip = (cs.position !== "absolute"), - m = "progid:DXImageTransform.Microsoft.Matrix(M11=" + a + ", M12=" + b + ", M21=" + c + ", M22=" + d, - ox = t.x, - oy = t.y, - dx, dy; - - //if transformOrigin is being used, adjust the offset x and y - if (t.ox != null) { - dx = ((t.oxp) ? w * t.ox * 0.01 : t.ox) - w / 2; - dy = ((t.oyp) ? h * t.oy * 0.01 : t.oy) - h / 2; - ox += dx - (dx * a + dy * b); - oy += dy - (dx * c + dy * d); - } - - if (!clip) { - m += ", sizingMethod='auto expand')"; - } else { - dx = (w / 2); - dy = (h / 2); - //translate to ensure that transformations occur around the correct origin (default is center). - m += ", Dx=" + (dx - (dx * a + dy * b) + ox) + ", Dy=" + (dy - (dx * c + dy * d) + oy) + ")"; - } - if (filters.indexOf("DXImageTransform.Microsoft.Matrix(") !== -1) { - style.filter = filters.replace(_ieSetMatrixExp, m); - } else { - style.filter = m + " " + filters; //we must always put the transform/matrix FIRST (before alpha(opacity=xx)) to avoid an IE bug that slices part of the object when rotation is applied with alpha. - } - - //at the end or beginning of the tween, if the matrix is normal (1, 0, 0, 1) and opacity is 100 (or doesn't exist), remove the filter to improve browser performance. - if (v === 0 || v === 1) if (a === 1) if (b === 0) if (c === 0) if (d === 1) if (!clip || m.indexOf("Dx=0, Dy=0") !== -1) if (!_opacityExp.test(filters) || parseFloat(RegExp.$1) === 100) if (filters.indexOf("gradient(" && filters.indexOf("Alpha")) === -1) { - style.removeAttribute("filter"); - } - - //we must set the margins AFTER applying the filter in order to avoid some bugs in IE8 that could (in rare scenarios) cause them to be ignored intermittently (vibration). - if (!clip) { - var mult = (_ieVers < 8) ? 1 : -1, //in Internet Explorer 7 and before, the box model is broken, causing the browser to treat the width/height of the actual rotated filtered image as the width/height of the box itself, but Microsoft corrected that in IE8. We must use a negative offset in IE8 on the right/bottom - marg, prop, dif; - dx = t.ieOffsetX || 0; - dy = t.ieOffsetY || 0; - t.ieOffsetX = Math.round((w - ((a < 0 ? -a : a) * w + (b < 0 ? -b : b) * h)) / 2 + ox); - t.ieOffsetY = Math.round((h - ((d < 0 ? -d : d) * h + (c < 0 ? -c : c) * w)) / 2 + oy); - for (i = 0; i < 4; i++) { - prop = _margins[i]; - marg = cs[prop]; - //we need to get the current margin in case it is being tweened separately (we want to respect that tween's changes) - val = (marg.indexOf("px") !== -1) ? parseFloat(marg) : _convertToPixels(this.t, prop, parseFloat(marg), marg.replace(_suffixExp, "")) || 0; - if (val !== t[prop]) { - dif = (i < 2) ? -t.ieOffsetX : -t.ieOffsetY; //if another tween is controlling a margin, we cannot only apply the difference in the ieOffsets, so we essentially zero-out the dx and dy here in that case. We record the margin(s) later so that we can keep comparing them, making this code very flexible. - } else { - dif = (i < 2) ? dx - t.ieOffsetX : dy - t.ieOffsetY; - } - style[prop] = (t[prop] = Math.round( val - dif * ((i === 0 || i === 2) ? 1 : mult) )) + "px"; - } - } - }, - - _set3DTransformRatio = _internals.set3DTransformRatio = function(v) { - var t = this.data, //refers to the element's _gsTransform object - style = this.t.style, - angle = t.rotation * _DEG2RAD, - sx = t.scaleX, - sy = t.scaleY, - sz = t.scaleZ, - perspective = t.perspective, - a11, a12, a13, a14, a21, a22, a23, a24, a31, a32, a33, a34, a41, a42, a43, - zOrigin, rnd, cos, sin, t1, t2, t3, t4; - if (v === 1 || v === 0) if (t.force3D === "auto") if (!t.rotationY && !t.rotationX && sz === 1 && !perspective && !t.z) { //on the final render (which could be 0 for a from tween), if there are no 3D aspects, render in 2D to free up memory and improve performance especially on mobile devices - _set2DTransformRatio.call(this, v); - return; - } - if (_isFirefox) { - var n = 0.0001; - if (sx < n && sx > -n) { //Firefox has a bug (at least in v25) that causes it to render the transparent part of 32-bit PNG images as black when displayed inside an iframe and the 3D scale is very small and doesn't change sufficiently enough between renders (like if you use a Power4.easeInOut to scale from 0 to 1 where the beginning values only change a tiny amount to begin the tween before accelerating). In this case, we force the scale to be 0.00002 instead which is visually the same but works around the Firefox issue. - sx = sz = 0.00002; - } - if (sy < n && sy > -n) { - sy = sz = 0.00002; - } - if (perspective && !t.z && !t.rotationX && !t.rotationY) { //Firefox has a bug that causes elements to have an odd super-thin, broken/dotted black border on elements that have a perspective set but aren't utilizing 3D space (no rotationX, rotationY, or z). - perspective = 0; - } - } - if (angle || t.skewX) { - cos = Math.cos(angle); - sin = Math.sin(angle); - a11 = cos; - a21 = sin; - if (t.skewX) { - angle -= t.skewX * _DEG2RAD; - cos = Math.cos(angle); - sin = Math.sin(angle); - if (t.skewType === "simple") { //by default, we compensate skewing on the other axis to make it look more natural, but you can set the skewType to "simple" to use the uncompensated skewing that CSS does - t1 = Math.tan(t.skewX * _DEG2RAD); - t1 = Math.sqrt(1 + t1 * t1); - cos *= t1; - sin *= t1; - } - } - a12 = -sin; - a22 = cos; - - } else if (!t.rotationY && !t.rotationX && sz === 1 && !perspective) { //if we're only translating and/or 2D scaling, this is faster... - style[_transformProp] = "translate3d(" + t.x + "px," + t.y + "px," + t.z +"px)" + ((sx !== 1 || sy !== 1) ? " scale(" + sx + "," + sy + ")" : ""); - return; - } else { - a11 = a22 = 1; - a12 = a21 = 0; - } - a33 = 1; - a13 = a14 = a23 = a24 = a31 = a32 = a34 = a41 = a42 = 0; - a43 = (perspective) ? -1 / perspective : 0; - zOrigin = t.zOrigin; - rnd = 100000; - angle = t.rotationY * _DEG2RAD; - if (angle) { - cos = Math.cos(angle); - sin = Math.sin(angle); - a31 = a33*-sin; - a41 = a43*-sin; - a13 = a11*sin; - a23 = a21*sin; - a33 *= cos; - a43 *= cos; - a11 *= cos; - a21 *= cos; - } - angle = t.rotationX * _DEG2RAD; - if (angle) { - cos = Math.cos(angle); - sin = Math.sin(angle); - t1 = a12*cos+a13*sin; - t2 = a22*cos+a23*sin; - t3 = a32*cos+a33*sin; - t4 = a42*cos+a43*sin; - a13 = a12*-sin+a13*cos; - a23 = a22*-sin+a23*cos; - a33 = a32*-sin+a33*cos; - a43 = a42*-sin+a43*cos; - a12 = t1; - a22 = t2; - a32 = t3; - a42 = t4; - } - if (sz !== 1) { - a13*=sz; - a23*=sz; - a33*=sz; - a43*=sz; - } - if (sy !== 1) { - a12*=sy; - a22*=sy; - a32*=sy; - a42*=sy; - } - if (sx !== 1) { - a11*=sx; - a21*=sx; - a31*=sx; - a41*=sx; - } - if (zOrigin) { - a34 -= zOrigin; - a14 = a13*a34; - a24 = a23*a34; - a34 = a33*a34+zOrigin; - } - //we round the x, y, and z slightly differently to allow even larger values. - a14 = (t1 = (a14 += t.x) - (a14 |= 0)) ? ((t1 * rnd + (t1 < 0 ? -0.5 : 0.5)) | 0) / rnd + a14 : a14; - a24 = (t1 = (a24 += t.y) - (a24 |= 0)) ? ((t1 * rnd + (t1 < 0 ? -0.5 : 0.5)) | 0) / rnd + a24 : a24; - a34 = (t1 = (a34 += t.z) - (a34 |= 0)) ? ((t1 * rnd + (t1 < 0 ? -0.5 : 0.5)) | 0) / rnd + a34 : a34; - style[_transformProp] = "matrix3d(" + [ (((a11 * rnd) | 0) / rnd), (((a21 * rnd) | 0) / rnd), (((a31 * rnd) | 0) / rnd), (((a41 * rnd) | 0) / rnd), (((a12 * rnd) | 0) / rnd), (((a22 * rnd) | 0) / rnd), (((a32 * rnd) | 0) / rnd), (((a42 * rnd) | 0) / rnd), (((a13 * rnd) | 0) / rnd), (((a23 * rnd) | 0) / rnd), (((a33 * rnd) | 0) / rnd), (((a43 * rnd) | 0) / rnd), a14, a24, a34, (perspective ? (1 + (-a34 / perspective)) : 1) ].join(",") + ")"; - }, - - _set2DTransformRatio = _internals.set2DTransformRatio = function(v) { - var t = this.data, //refers to the element's _gsTransform object - targ = this.t, - style = targ.style, - ang, skew, rnd, sx, sy; - if (t.rotationX || t.rotationY || t.z || t.force3D === true || (t.force3D === "auto" && v !== 1 && v !== 0)) { //if a 3D tween begins while a 2D one is running, we need to kick the rendering over to the 3D method. For example, imagine a yoyo-ing, infinitely repeating scale tween running, and then the object gets rotated in 3D space with a different tween. - this.setRatio = _set3DTransformRatio; - _set3DTransformRatio.call(this, v); - return; - } - if (!t.rotation && !t.skewX) { - style[_transformProp] = "matrix(" + t.scaleX + ",0,0," + t.scaleY + "," + t.x + "," + t.y + ")"; - } else { - ang = t.rotation * _DEG2RAD; - skew = ang - t.skewX * _DEG2RAD; - rnd = 100000; - sx = t.scaleX * rnd; - sy = t.scaleY * rnd; - //some browsers have a hard time with very small values like 2.4492935982947064e-16 (notice the "e-" towards the end) and would render the object slightly off. So we round to 5 decimal places. - style[_transformProp] = "matrix(" + (((Math.cos(ang) * sx) | 0) / rnd) + "," + (((Math.sin(ang) * sx) | 0) / rnd) + "," + (((Math.sin(skew) * -sy) | 0) / rnd) + "," + (((Math.cos(skew) * sy) | 0) / rnd) + "," + t.x + "," + t.y + ")"; - } - }; - - _registerComplexSpecialProp("transform,scale,scaleX,scaleY,scaleZ,x,y,z,rotation,rotationX,rotationY,rotationZ,skewX,skewY,shortRotation,shortRotationX,shortRotationY,shortRotationZ,transformOrigin,transformPerspective,directionalRotation,parseTransform,force3D,skewType", {parser:function(t, e, p, cssp, pt, plugin, vars) { - if (cssp._transform) { return pt; } //only need to parse the transform once, and only if the browser supports it. - var m1 = cssp._transform = _getTransform(t, _cs, true, vars.parseTransform), - style = t.style, - min = 0.000001, - i = _transformProps.length, - v = vars, - endRotations = {}, - m2, skewY, copy, orig, has3D, hasChange, dr; - if (typeof(v.transform) === "string" && _transformProp) { //for values like transform:"rotate(60deg) scale(0.5, 0.8)" - copy = _tempDiv.style; //don't use the original target because it might be SVG in which case some browsers don't report computed style correctly. - copy[_transformProp] = v.transform; - copy.display = "block"; //if display is "none", the browser often refuses to report the transform properties correctly. - copy.position = "absolute"; - _doc.body.appendChild(_tempDiv); - m2 = _getTransform(_tempDiv, null, false); - _doc.body.removeChild(_tempDiv); - } else if (typeof(v) === "object") { //for values like scaleX, scaleY, rotation, x, y, skewX, and skewY or transform:{...} (object) - m2 = {scaleX:_parseVal((v.scaleX != null) ? v.scaleX : v.scale, m1.scaleX), - scaleY:_parseVal((v.scaleY != null) ? v.scaleY : v.scale, m1.scaleY), - scaleZ:_parseVal(v.scaleZ, m1.scaleZ), - x:_parseVal(v.x, m1.x), - y:_parseVal(v.y, m1.y), - z:_parseVal(v.z, m1.z), - perspective:_parseVal(v.transformPerspective, m1.perspective)}; - dr = v.directionalRotation; - if (dr != null) { - if (typeof(dr) === "object") { - for (copy in dr) { - v[copy] = dr[copy]; - } - } else { - v.rotation = dr; - } - } - m2.rotation = _parseAngle(("rotation" in v) ? v.rotation : ("shortRotation" in v) ? v.shortRotation + "_short" : ("rotationZ" in v) ? v.rotationZ : m1.rotation, m1.rotation, "rotation", endRotations); - if (_supports3D) { - m2.rotationX = _parseAngle(("rotationX" in v) ? v.rotationX : ("shortRotationX" in v) ? v.shortRotationX + "_short" : m1.rotationX || 0, m1.rotationX, "rotationX", endRotations); - m2.rotationY = _parseAngle(("rotationY" in v) ? v.rotationY : ("shortRotationY" in v) ? v.shortRotationY + "_short" : m1.rotationY || 0, m1.rotationY, "rotationY", endRotations); - } - m2.skewX = (v.skewX == null) ? m1.skewX : _parseAngle(v.skewX, m1.skewX); - - //note: for performance reasons, we combine all skewing into the skewX and rotation values, ignoring skewY but we must still record it so that we can discern how much of the overall skew is attributed to skewX vs. skewY. Otherwise, if the skewY would always act relative (tween skewY to 10deg, for example, multiple times and if we always combine things into skewX, we can't remember that skewY was 10 from last time). Remember, a skewY of 10 degrees looks the same as a rotation of 10 degrees plus a skewX of -10 degrees. - m2.skewY = (v.skewY == null) ? m1.skewY : _parseAngle(v.skewY, m1.skewY); - if ((skewY = m2.skewY - m1.skewY)) { - m2.skewX += skewY; - m2.rotation += skewY; - } - } - - if (_supports3D && v.force3D != null) { - m1.force3D = v.force3D; - hasChange = true; - } - - m1.skewType = v.skewType || m1.skewType || CSSPlugin.defaultSkewType; - - has3D = (m1.force3D || m1.z || m1.rotationX || m1.rotationY || m2.z || m2.rotationX || m2.rotationY || m2.perspective); - if (!has3D && v.scale != null) { - m2.scaleZ = 1; //no need to tween scaleZ. - } - - while (--i > -1) { - p = _transformProps[i]; - orig = m2[p] - m1[p]; - if (orig > min || orig < -min || _forcePT[p] != null) { - hasChange = true; - pt = new CSSPropTween(m1, p, m1[p], orig, pt); - if (p in endRotations) { - pt.e = endRotations[p]; //directional rotations typically have compensated values during the tween, but we need to make sure they end at exactly what the user requested - } - pt.xs0 = 0; //ensures the value stays numeric in setRatio() - pt.plugin = plugin; - cssp._overwriteProps.push(pt.n); - } - } - - orig = v.transformOrigin; - if (orig || (_supports3D && has3D && m1.zOrigin)) { //if anything 3D is happening and there's a transformOrigin with a z component that's non-zero, we must ensure that the transformOrigin's z-component is set to 0 so that we can manually do those calculations to get around Safari bugs. Even if the user didn't specifically define a "transformOrigin" in this particular tween (maybe they did it via css directly). - if (_transformProp) { - hasChange = true; - p = _transformOriginProp; - orig = (orig || _getStyle(t, p, _cs, false, "50% 50%")) + ""; //cast as string to avoid errors - pt = new CSSPropTween(style, p, 0, 0, pt, -1, "transformOrigin"); - pt.b = style[p]; - pt.plugin = plugin; - if (_supports3D) { - copy = m1.zOrigin; - orig = orig.split(" "); - m1.zOrigin = ((orig.length > 2 && !(copy !== 0 && orig[2] === "0px")) ? parseFloat(orig[2]) : copy) || 0; //Safari doesn't handle the z part of transformOrigin correctly, so we'll manually handle it in the _set3DTransformRatio() method. - pt.xs0 = pt.e = orig[0] + " " + (orig[1] || "50%") + " 0px"; //we must define a z value of 0px specifically otherwise iOS 5 Safari will stick with the old one (if one was defined)! - pt = new CSSPropTween(m1, "zOrigin", 0, 0, pt, -1, pt.n); //we must create a CSSPropTween for the _gsTransform.zOrigin so that it gets reset properly at the beginning if the tween runs backward (as opposed to just setting m1.zOrigin here) - pt.b = copy; - pt.xs0 = pt.e = m1.zOrigin; - } else { - pt.xs0 = pt.e = orig; - } - - //for older versions of IE (6-8), we need to manually calculate things inside the setRatio() function. We record origin x and y (ox and oy) and whether or not the values are percentages (oxp and oyp). - } else { - _parsePosition(orig + "", m1); - } - } - - if (hasChange) { - cssp._transformType = (has3D || this._transformType === 3) ? 3 : 2; //quicker than calling cssp._enableTransforms(); - } - return pt; - }, prefix:true}); - - _registerComplexSpecialProp("boxShadow", {defaultValue:"0px 0px 0px 0px #999", prefix:true, color:true, multi:true, keyword:"inset"}); - - _registerComplexSpecialProp("borderRadius", {defaultValue:"0px", parser:function(t, e, p, cssp, pt, plugin) { - e = this.format(e); - var props = ["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"], - style = t.style, - ea1, i, es2, bs2, bs, es, bn, en, w, h, esfx, bsfx, rel, hn, vn, em; - w = parseFloat(t.offsetWidth); - h = parseFloat(t.offsetHeight); - ea1 = e.split(" "); - for (i = 0; i < props.length; i++) { //if we're dealing with percentages, we must convert things separately for the horizontal and vertical axis! - if (this.p.indexOf("border")) { //older browsers used a prefix - props[i] = _checkPropPrefix(props[i]); - } - bs = bs2 = _getStyle(t, props[i], _cs, false, "0px"); - if (bs.indexOf(" ") !== -1) { - bs2 = bs.split(" "); - bs = bs2[0]; - bs2 = bs2[1]; - } - es = es2 = ea1[i]; - bn = parseFloat(bs); - bsfx = bs.substr((bn + "").length); - rel = (es.charAt(1) === "="); - if (rel) { - en = parseInt(es.charAt(0)+"1", 10); - es = es.substr(2); - en *= parseFloat(es); - esfx = es.substr((en + "").length - (en < 0 ? 1 : 0)) || ""; - } else { - en = parseFloat(es); - esfx = es.substr((en + "").length); - } - if (esfx === "") { - esfx = _suffixMap[p] || bsfx; - } - if (esfx !== bsfx) { - hn = _convertToPixels(t, "borderLeft", bn, bsfx); //horizontal number (we use a bogus "borderLeft" property just because the _convertToPixels() method searches for the keywords "Left", "Right", "Top", and "Bottom" to determine of it's a horizontal or vertical property, and we need "border" in the name so that it knows it should measure relative to the element itself, not its parent. - vn = _convertToPixels(t, "borderTop", bn, bsfx); //vertical number - if (esfx === "%") { - bs = (hn / w * 100) + "%"; - bs2 = (vn / h * 100) + "%"; - } else if (esfx === "em") { - em = _convertToPixels(t, "borderLeft", 1, "em"); - bs = (hn / em) + "em"; - bs2 = (vn / em) + "em"; - } else { - bs = hn + "px"; - bs2 = vn + "px"; - } - if (rel) { - es = (parseFloat(bs) + en) + esfx; - es2 = (parseFloat(bs2) + en) + esfx; - } - } - pt = _parseComplex(style, props[i], bs + " " + bs2, es + " " + es2, false, "0px", pt); - } - return pt; - }, prefix:true, formatter:_getFormatter("0px 0px 0px 0px", false, true)}); - _registerComplexSpecialProp("backgroundPosition", {defaultValue:"0 0", parser:function(t, e, p, cssp, pt, plugin) { - var bp = "background-position", - cs = (_cs || _getComputedStyle(t, null)), - bs = this.format( ((cs) ? _ieVers ? cs.getPropertyValue(bp + "-x") + " " + cs.getPropertyValue(bp + "-y") : cs.getPropertyValue(bp) : t.currentStyle.backgroundPositionX + " " + t.currentStyle.backgroundPositionY) || "0 0"), //Internet Explorer doesn't report background-position correctly - we must query background-position-x and background-position-y and combine them (even in IE10). Before IE9, we must do the same with the currentStyle object and use camelCase - es = this.format(e), - ba, ea, i, pct, overlap, src; - if ((bs.indexOf("%") !== -1) !== (es.indexOf("%") !== -1)) { - src = _getStyle(t, "backgroundImage").replace(_urlExp, ""); - if (src && src !== "none") { - ba = bs.split(" "); - ea = es.split(" "); - _tempImg.setAttribute("src", src); //set the temp 's src to the background-image so that we can measure its width/height - i = 2; - while (--i > -1) { - bs = ba[i]; - pct = (bs.indexOf("%") !== -1); - if (pct !== (ea[i].indexOf("%") !== -1)) { - overlap = (i === 0) ? t.offsetWidth - _tempImg.width : t.offsetHeight - _tempImg.height; - ba[i] = pct ? (parseFloat(bs) / 100 * overlap) + "px" : (parseFloat(bs) / overlap * 100) + "%"; - } - } - bs = ba.join(" "); - } - } - return this.parseComplex(t.style, bs, es, pt, plugin); - }, formatter:_parsePosition}); - _registerComplexSpecialProp("backgroundSize", {defaultValue:"0 0", formatter:_parsePosition}); - _registerComplexSpecialProp("perspective", {defaultValue:"0px", prefix:true}); - _registerComplexSpecialProp("perspectiveOrigin", {defaultValue:"50% 50%", prefix:true}); - _registerComplexSpecialProp("transformStyle", {prefix:true}); - _registerComplexSpecialProp("backfaceVisibility", {prefix:true}); - _registerComplexSpecialProp("userSelect", {prefix:true}); - _registerComplexSpecialProp("margin", {parser:_getEdgeParser("marginTop,marginRight,marginBottom,marginLeft")}); - _registerComplexSpecialProp("padding", {parser:_getEdgeParser("paddingTop,paddingRight,paddingBottom,paddingLeft")}); - _registerComplexSpecialProp("clip", {defaultValue:"rect(0px,0px,0px,0px)", parser:function(t, e, p, cssp, pt, plugin){ - var b, cs, delim; - if (_ieVers < 9) { //IE8 and earlier don't report a "clip" value in the currentStyle - instead, the values are split apart into clipTop, clipRight, clipBottom, and clipLeft. Also, in IE7 and earlier, the values inside rect() are space-delimited, not comma-delimited. - cs = t.currentStyle; - delim = _ieVers < 8 ? " " : ","; - b = "rect(" + cs.clipTop + delim + cs.clipRight + delim + cs.clipBottom + delim + cs.clipLeft + ")"; - e = this.format(e).split(",").join(delim); - } else { - b = this.format(_getStyle(t, this.p, _cs, false, this.dflt)); - e = this.format(e); - } - return this.parseComplex(t.style, b, e, pt, plugin); - }}); - _registerComplexSpecialProp("textShadow", {defaultValue:"0px 0px 0px #999", color:true, multi:true}); - _registerComplexSpecialProp("autoRound,strictUnits", {parser:function(t, e, p, cssp, pt) {return pt;}}); //just so that we can ignore these properties (not tween them) - _registerComplexSpecialProp("border", {defaultValue:"0px solid #000", parser:function(t, e, p, cssp, pt, plugin) { - return this.parseComplex(t.style, this.format(_getStyle(t, "borderTopWidth", _cs, false, "0px") + " " + _getStyle(t, "borderTopStyle", _cs, false, "solid") + " " + _getStyle(t, "borderTopColor", _cs, false, "#000")), this.format(e), pt, plugin); - }, color:true, formatter:function(v) { - var a = v.split(" "); - return a[0] + " " + (a[1] || "solid") + " " + (v.match(_colorExp) || ["#000"])[0]; - }}); - _registerComplexSpecialProp("borderWidth", {parser:_getEdgeParser("borderTopWidth,borderRightWidth,borderBottomWidth,borderLeftWidth")}); //Firefox doesn't pick up on borderWidth set in style sheets (only inline). - _registerComplexSpecialProp("float,cssFloat,styleFloat", {parser:function(t, e, p, cssp, pt, plugin) { - var s = t.style, - prop = ("cssFloat" in s) ? "cssFloat" : "styleFloat"; - return new CSSPropTween(s, prop, 0, 0, pt, -1, p, false, 0, s[prop], e); - }}); - - //opacity-related - var _setIEOpacityRatio = function(v) { - var t = this.t, //refers to the element's style property - filters = t.filter || _getStyle(this.data, "filter"), - val = (this.s + this.c * v) | 0, - skip; - if (val === 100) { //for older versions of IE that need to use a filter to apply opacity, we should remove the filter if opacity hits 1 in order to improve performance, but make sure there isn't a transform (matrix) or gradient in the filters. - if (filters.indexOf("atrix(") === -1 && filters.indexOf("radient(") === -1 && filters.indexOf("oader(") === -1) { - t.removeAttribute("filter"); - skip = (!_getStyle(this.data, "filter")); //if a class is applied that has an alpha filter, it will take effect (we don't want that), so re-apply our alpha filter in that case. We must first remove it and then check. - } else { - t.filter = filters.replace(_alphaFilterExp, ""); - skip = true; - } - } - if (!skip) { - if (this.xn1) { - t.filter = filters = filters || ("alpha(opacity=" + val + ")"); //works around bug in IE7/8 that prevents changes to "visibility" from being applied properly if the filter is changed to a different alpha on the same frame. - } - if (filters.indexOf("pacity") === -1) { //only used if browser doesn't support the standard opacity style property (IE 7 and 8). We omit the "O" to avoid case-sensitivity issues - if (val !== 0 || !this.xn1) { //bugs in IE7/8 won't render the filter properly if opacity is ADDED on the same frame/render as "visibility" changes (this.xn1 is 1 if this tween is an "autoAlpha" tween) - t.filter = filters + " alpha(opacity=" + val + ")"; //we round the value because otherwise, bugs in IE7/8 can prevent "visibility" changes from being applied properly. - } - } else { - t.filter = filters.replace(_opacityExp, "opacity=" + val); - } - } - }; - _registerComplexSpecialProp("opacity,alpha,autoAlpha", {defaultValue:"1", parser:function(t, e, p, cssp, pt, plugin) { - var b = parseFloat(_getStyle(t, "opacity", _cs, false, "1")), - style = t.style, - isAutoAlpha = (p === "autoAlpha"); - if (typeof(e) === "string" && e.charAt(1) === "=") { - e = ((e.charAt(0) === "-") ? -1 : 1) * parseFloat(e.substr(2)) + b; - } - if (isAutoAlpha && b === 1 && _getStyle(t, "visibility", _cs) === "hidden" && e !== 0) { //if visibility is initially set to "hidden", we should interpret that as intent to make opacity 0 (a convenience) - b = 0; - } - if (_supportsOpacity) { - pt = new CSSPropTween(style, "opacity", b, e - b, pt); - } else { - pt = new CSSPropTween(style, "opacity", b * 100, (e - b) * 100, pt); - pt.xn1 = isAutoAlpha ? 1 : 0; //we need to record whether or not this is an autoAlpha so that in the setRatio(), we know to duplicate the setting of the alpha in order to work around a bug in IE7 and IE8 that prevents changes to "visibility" from taking effect if the filter is changed to a different alpha(opacity) at the same time. Setting it to the SAME value first, then the new value works around the IE7/8 bug. - style.zoom = 1; //helps correct an IE issue. - pt.type = 2; - pt.b = "alpha(opacity=" + pt.s + ")"; - pt.e = "alpha(opacity=" + (pt.s + pt.c) + ")"; - pt.data = t; - pt.plugin = plugin; - pt.setRatio = _setIEOpacityRatio; - } - if (isAutoAlpha) { //we have to create the "visibility" PropTween after the opacity one in the linked list so that they run in the order that works properly in IE8 and earlier - pt = new CSSPropTween(style, "visibility", 0, 0, pt, -1, null, false, 0, ((b !== 0) ? "inherit" : "hidden"), ((e === 0) ? "hidden" : "inherit")); - pt.xs0 = "inherit"; - cssp._overwriteProps.push(pt.n); - cssp._overwriteProps.push(p); - } - return pt; - }}); - - - var _removeProp = function(s, p) { - if (p) { - if (s.removeProperty) { - if (p.substr(0,2) === "ms") { //Microsoft browsers don't conform to the standard of capping the first prefix character, so we adjust so that when we prefix the caps with a dash, it's correct (otherwise it'd be "ms-transform" instead of "-ms-transform" for IE9, for example) - p = "M" + p.substr(1); - } - s.removeProperty(p.replace(_capsExp, "-$1").toLowerCase()); - } else { //note: old versions of IE use "removeAttribute()" instead of "removeProperty()" - s.removeAttribute(p); - } - } - }, - _setClassNameRatio = function(v) { - this.t._gsClassPT = this; - if (v === 1 || v === 0) { - this.t.setAttribute("class", (v === 0) ? this.b : this.e); - var mpt = this.data, //first MiniPropTween - s = this.t.style; - while (mpt) { - if (!mpt.v) { - _removeProp(s, mpt.p); - } else { - s[mpt.p] = mpt.v; - } - mpt = mpt._next; - } - if (v === 1 && this.t._gsClassPT === this) { - this.t._gsClassPT = null; - } - } else if (this.t.getAttribute("class") !== this.e) { - this.t.setAttribute("class", this.e); - } - }; - _registerComplexSpecialProp("className", {parser:function(t, e, p, cssp, pt, plugin, vars) { - var b = t.getAttribute("class") || "", //don't use t.className because it doesn't work consistently on SVG elements; getAttribute("class") and setAttribute("class", value") is more reliable. - cssText = t.style.cssText, - difData, bs, cnpt, cnptLookup, mpt; - pt = cssp._classNamePT = new CSSPropTween(t, p, 0, 0, pt, 2); - pt.setRatio = _setClassNameRatio; - pt.pr = -11; - _hasPriority = true; - pt.b = b; - bs = _getAllStyles(t, _cs); - //if there's a className tween already operating on the target, force it to its end so that the necessary inline styles are removed and the class name is applied before we determine the end state (we don't want inline styles interfering that were there just for class-specific values) - cnpt = t._gsClassPT; - if (cnpt) { - cnptLookup = {}; - mpt = cnpt.data; //first MiniPropTween which stores the inline styles - we need to force these so that the inline styles don't contaminate things. Otherwise, there's a small chance that a tween could start and the inline values match the destination values and they never get cleaned. - while (mpt) { - cnptLookup[mpt.p] = 1; - mpt = mpt._next; - } - cnpt.setRatio(1); - } - t._gsClassPT = pt; - pt.e = (e.charAt(1) !== "=") ? e : b.replace(new RegExp("\\s*\\b" + e.substr(2) + "\\b"), "") + ((e.charAt(0) === "+") ? " " + e.substr(2) : ""); - if (cssp._tween._duration) { //if it's a zero-duration tween, there's no need to tween anything or parse the data. In fact, if we switch classes temporarily (which we must do for proper parsing) and the class has a transition applied, it could cause a quick flash to the end state and back again initially in some browsers. - t.setAttribute("class", pt.e); - difData = _cssDif(t, bs, _getAllStyles(t), vars, cnptLookup); - t.setAttribute("class", b); - pt.data = difData.firstMPT; - t.style.cssText = cssText; //we recorded cssText before we swapped classes and ran _getAllStyles() because in cases when a className tween is overwritten, we remove all the related tweening properties from that class change (otherwise class-specific stuff can't override properties we've directly set on the target's style object due to specificity). - pt = pt.xfirst = cssp.parse(t, difData.difs, pt, plugin); //we record the CSSPropTween as the xfirst so that we can handle overwriting propertly (if "className" gets overwritten, we must kill all the properties associated with the className part of the tween, so we can loop through from xfirst to the pt itself) - } - return pt; - }}); - - - var _setClearPropsRatio = function(v) { - if (v === 1 || v === 0) if (this.data._totalTime === this.data._totalDuration && this.data.data !== "isFromStart") { //this.data refers to the tween. Only clear at the END of the tween (remember, from() tweens make the ratio go from 1 to 0, so we can't just check that and if the tween is the zero-duration one that's created internally to render the starting values in a from() tween, ignore that because otherwise, for example, from(...{height:100, clearProps:"height", delay:1}) would wipe the height at the beginning of the tween and after 1 second, it'd kick back in). - var s = this.t.style, - transformParse = _specialProps.transform.parse, - a, p, i, clearTransform; - if (this.e === "all") { - s.cssText = ""; - clearTransform = true; - } else { - a = this.e.split(","); - i = a.length; - while (--i > -1) { - p = a[i]; - if (_specialProps[p]) { - if (_specialProps[p].parse === transformParse) { - clearTransform = true; - } else { - p = (p === "transformOrigin") ? _transformOriginProp : _specialProps[p].p; //ensures that special properties use the proper browser-specific property name, like "scaleX" might be "-webkit-transform" or "boxShadow" might be "-moz-box-shadow" - } - } - _removeProp(s, p); - } - } - if (clearTransform) { - _removeProp(s, _transformProp); - if (this.t._gsTransform) { - delete this.t._gsTransform; - } - } - - } - }; - _registerComplexSpecialProp("clearProps", {parser:function(t, e, p, cssp, pt) { - pt = new CSSPropTween(t, p, 0, 0, pt, 2); - pt.setRatio = _setClearPropsRatio; - pt.e = e; - pt.pr = -10; - pt.data = cssp._tween; - _hasPriority = true; - return pt; - }}); - - p = "bezier,throwProps,physicsProps,physics2D".split(","); - i = p.length; - while (i--) { - _registerPluginProp(p[i]); - } - - - - - - - - - p = CSSPlugin.prototype; - p._firstPT = null; - - //gets called when the tween renders for the first time. This kicks everything off, recording start/end values, etc. - p._onInitTween = function(target, vars, tween) { - if (!target.nodeType) { //css is only for dom elements - return false; - } - this._target = target; - this._tween = tween; - this._vars = vars; - _autoRound = vars.autoRound; - _hasPriority = false; - _suffixMap = vars.suffixMap || CSSPlugin.suffixMap; - _cs = _getComputedStyle(target, ""); - _overwriteProps = this._overwriteProps; - var style = target.style, - v, pt, pt2, first, last, next, zIndex, tpt, threeD; - if (_reqSafariFix) if (style.zIndex === "") { - v = _getStyle(target, "zIndex", _cs); - if (v === "auto" || v === "") { - //corrects a bug in [non-Android] Safari that prevents it from repainting elements in their new positions if they don't have a zIndex set. We also can't just apply this inside _parseTransform() because anything that's moved in any way (like using "left" or "top" instead of transforms like "x" and "y") can be affected, so it is best to ensure that anything that's tweening has a z-index. Setting "WebkitPerspective" to a non-zero value worked too except that on iOS Safari things would flicker randomly. Plus zIndex is less memory-intensive. - this._addLazySet(style, "zIndex", 0); - } - } - - if (typeof(vars) === "string") { - first = style.cssText; - v = _getAllStyles(target, _cs); - style.cssText = first + ";" + vars; - v = _cssDif(target, v, _getAllStyles(target)).difs; - if (!_supportsOpacity && _opacityValExp.test(vars)) { - v.opacity = parseFloat( RegExp.$1 ); - } - vars = v; - style.cssText = first; - } - this._firstPT = pt = this.parse(target, vars, null); - - if (this._transformType) { - threeD = (this._transformType === 3); - if (!_transformProp) { - style.zoom = 1; //helps correct an IE issue. - } else if (_isSafari) { - _reqSafariFix = true; - //if zIndex isn't set, iOS Safari doesn't repaint things correctly sometimes (seemingly at random). - if (style.zIndex === "") { - zIndex = _getStyle(target, "zIndex", _cs); - if (zIndex === "auto" || zIndex === "") { - this._addLazySet(style, "zIndex", 0); - } - } - //Setting WebkitBackfaceVisibility corrects 3 bugs: - // 1) [non-Android] Safari skips rendering changes to "top" and "left" that are made on the same frame/render as a transform update. - // 2) iOS Safari sometimes neglects to repaint elements in their new positions. Setting "WebkitPerspective" to a non-zero value worked too except that on iOS Safari things would flicker randomly. - // 3) Safari sometimes displayed odd artifacts when tweening the transform (or WebkitTransform) property, like ghosts of the edges of the element remained. Definitely a browser bug. - //Note: we allow the user to override the auto-setting by defining WebkitBackfaceVisibility in the vars of the tween. - if (_isSafariLT6) { - this._addLazySet(style, "WebkitBackfaceVisibility", this._vars.WebkitBackfaceVisibility || (threeD ? "visible" : "hidden")); - } - } - pt2 = pt; - while (pt2 && pt2._next) { - pt2 = pt2._next; - } - tpt = new CSSPropTween(target, "transform", 0, 0, null, 2); - this._linkCSSP(tpt, null, pt2); - tpt.setRatio = (threeD && _supports3D) ? _set3DTransformRatio : _transformProp ? _set2DTransformRatio : _setIETransformRatio; - tpt.data = this._transform || _getTransform(target, _cs, true); - _overwriteProps.pop(); //we don't want to force the overwrite of all "transform" tweens of the target - we only care about individual transform properties like scaleX, rotation, etc. The CSSPropTween constructor automatically adds the property to _overwriteProps which is why we need to pop() here. - } - - if (_hasPriority) { - //reorders the linked list in order of pr (priority) - while (pt) { - next = pt._next; - pt2 = first; - while (pt2 && pt2.pr > pt.pr) { - pt2 = pt2._next; - } - if ((pt._prev = pt2 ? pt2._prev : last)) { - pt._prev._next = pt; - } else { - first = pt; - } - if ((pt._next = pt2)) { - pt2._prev = pt; - } else { - last = pt; - } - pt = next; - } - this._firstPT = first; - } - return true; - }; - - - p.parse = function(target, vars, pt, plugin) { - var style = target.style, - p, sp, bn, en, bs, es, bsfx, esfx, isStr, rel; - for (p in vars) { - es = vars[p]; //ending value string - sp = _specialProps[p]; //SpecialProp lookup. - if (sp) { - pt = sp.parse(target, es, p, this, pt, plugin, vars); - - } else { - bs = _getStyle(target, p, _cs) + ""; - isStr = (typeof(es) === "string"); - if (p === "color" || p === "fill" || p === "stroke" || p.indexOf("Color") !== -1 || (isStr && _rgbhslExp.test(es))) { //Opera uses background: to define color sometimes in addition to backgroundColor: - if (!isStr) { - es = _parseColor(es); - es = ((es.length > 3) ? "rgba(" : "rgb(") + es.join(",") + ")"; - } - pt = _parseComplex(style, p, bs, es, true, "transparent", pt, 0, plugin); - - } else if (isStr && (es.indexOf(" ") !== -1 || es.indexOf(",") !== -1)) { - pt = _parseComplex(style, p, bs, es, true, null, pt, 0, plugin); - - } else { - bn = parseFloat(bs); - bsfx = (bn || bn === 0) ? bs.substr((bn + "").length) : ""; //remember, bs could be non-numeric like "normal" for fontWeight, so we should default to a blank suffix in that case. - - if (bs === "" || bs === "auto") { - if (p === "width" || p === "height") { - bn = _getDimension(target, p, _cs); - bsfx = "px"; - } else if (p === "left" || p === "top") { - bn = _calculateOffset(target, p, _cs); - bsfx = "px"; - } else { - bn = (p !== "opacity") ? 0 : 1; - bsfx = ""; - } - } - - rel = (isStr && es.charAt(1) === "="); - if (rel) { - en = parseInt(es.charAt(0) + "1", 10); - es = es.substr(2); - en *= parseFloat(es); - esfx = es.replace(_suffixExp, ""); - } else { - en = parseFloat(es); - esfx = isStr ? es.substr((en + "").length) || "" : ""; - } - - if (esfx === "") { - esfx = (p in _suffixMap) ? _suffixMap[p] : bsfx; //populate the end suffix, prioritizing the map, then if none is found, use the beginning suffix. - } - - es = (en || en === 0) ? (rel ? en + bn : en) + esfx : vars[p]; //ensures that any += or -= prefixes are taken care of. Record the end value before normalizing the suffix because we always want to end the tween on exactly what they intended even if it doesn't match the beginning value's suffix. - - //if the beginning/ending suffixes don't match, normalize them... - if (bsfx !== esfx) if (esfx !== "") if (en || en === 0) if (bn) { //note: if the beginning value (bn) is 0, we don't need to convert units! - bn = _convertToPixels(target, p, bn, bsfx); - if (esfx === "%") { - bn /= _convertToPixels(target, p, 100, "%") / 100; - if (vars.strictUnits !== true) { //some browsers report only "px" values instead of allowing "%" with getComputedStyle(), so we assume that if we're tweening to a %, we should start there too unless strictUnits:true is defined. This approach is particularly useful for responsive designs that use from() tweens. - bs = bn + "%"; - } - - } else if (esfx === "em") { - bn /= _convertToPixels(target, p, 1, "em"); - - //otherwise convert to pixels. - } else if (esfx !== "px") { - en = _convertToPixels(target, p, en, esfx); - esfx = "px"; //we don't use bsfx after this, so we don't need to set it to px too. - } - if (rel) if (en || en === 0) { - es = (en + bn) + esfx; //the changes we made affect relative calculations, so adjust the end value here. - } - } - - if (rel) { - en += bn; - } - - if ((bn || bn === 0) && (en || en === 0)) { //faster than isNaN(). Also, previously we required en !== bn but that doesn't really gain much performance and it prevents _parseToProxy() from working properly if beginning and ending values match but need to get tweened by an external plugin anyway. For example, a bezier tween where the target starts at left:0 and has these points: [{left:50},{left:0}] wouldn't work properly because when parsing the last point, it'd match the first (current) one and a non-tweening CSSPropTween would be recorded when we actually need a normal tween (type:0) so that things get updated during the tween properly. - pt = new CSSPropTween(style, p, bn, en - bn, pt, 0, p, (_autoRound !== false && (esfx === "px" || p === "zIndex")), 0, bs, es); - pt.xs0 = esfx; - //DEBUG: _log("tween "+p+" from "+pt.b+" ("+bn+esfx+") to "+pt.e+" with suffix: "+pt.xs0); - } else if (style[p] === undefined || !es && (es + "" === "NaN" || es == null)) { - _log("invalid " + p + " tween value: " + vars[p]); - } else { - pt = new CSSPropTween(style, p, en || bn || 0, 0, pt, -1, p, false, 0, bs, es); - pt.xs0 = (es === "none" && (p === "display" || p.indexOf("Style") !== -1)) ? bs : es; //intermediate value should typically be set immediately (end value) except for "display" or things like borderTopStyle, borderBottomStyle, etc. which should use the beginning value during the tween. - //DEBUG: _log("non-tweening value "+p+": "+pt.xs0); - } - } - } - if (plugin) if (pt && !pt.plugin) { - pt.plugin = plugin; - } - } - return pt; - }; - - - //gets called every time the tween updates, passing the new ratio (typically a value between 0 and 1, but not always (for example, if an Elastic.easeOut is used, the value can jump above 1 mid-tween). It will always start and 0 and end at 1. - p.setRatio = function(v) { - var pt = this._firstPT, - min = 0.000001, - val, str, i; - - //at the end of the tween, we set the values to exactly what we received in order to make sure non-tweening values (like "position" or "float" or whatever) are set and so that if the beginning/ending suffixes (units) didn't match and we normalized to px, the value that the user passed in is used here. We check to see if the tween is at its beginning in case it's a from() tween in which case the ratio will actually go from 1 to 0 over the course of the tween (backwards). - if (v === 1 && (this._tween._time === this._tween._duration || this._tween._time === 0)) { - while (pt) { - if (pt.type !== 2) { - pt.t[pt.p] = pt.e; - } else { - pt.setRatio(v); - } - pt = pt._next; - } - - } else if (v || !(this._tween._time === this._tween._duration || this._tween._time === 0) || this._tween._rawPrevTime === -0.000001) { - while (pt) { - val = pt.c * v + pt.s; - if (pt.r) { - val = Math.round(val); - } else if (val < min) if (val > -min) { - val = 0; - } - if (!pt.type) { - pt.t[pt.p] = val + pt.xs0; - } else if (pt.type === 1) { //complex value (one that typically has multiple numbers inside a string, like "rect(5px,10px,20px,25px)" - i = pt.l; - if (i === 2) { - pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2; - } else if (i === 3) { - pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + pt.xn2 + pt.xs3; - } else if (i === 4) { - pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + pt.xn2 + pt.xs3 + pt.xn3 + pt.xs4; - } else if (i === 5) { - pt.t[pt.p] = pt.xs0 + val + pt.xs1 + pt.xn1 + pt.xs2 + pt.xn2 + pt.xs3 + pt.xn3 + pt.xs4 + pt.xn4 + pt.xs5; - } else { - str = pt.xs0 + val + pt.xs1; - for (i = 1; i < pt.l; i++) { - str += pt["xn"+i] + pt["xs"+(i+1)]; - } - pt.t[pt.p] = str; - } - - } else if (pt.type === -1) { //non-tweening value - pt.t[pt.p] = pt.xs0; - - } else if (pt.setRatio) { //custom setRatio() for things like SpecialProps, external plugins, etc. - pt.setRatio(v); - } - pt = pt._next; - } - - //if the tween is reversed all the way back to the beginning, we need to restore the original values which may have different units (like % instead of px or em or whatever). - } else { - while (pt) { - if (pt.type !== 2) { - pt.t[pt.p] = pt.b; - } else { - pt.setRatio(v); - } - pt = pt._next; - } - } - }; - - /** - * @private - * Forces rendering of the target's transforms (rotation, scale, etc.) whenever the CSSPlugin's setRatio() is called. - * Basically, this tells the CSSPlugin to create a CSSPropTween (type 2) after instantiation that runs last in the linked - * list and calls the appropriate (3D or 2D) rendering function. We separate this into its own method so that we can call - * it from other plugins like BezierPlugin if, for example, it needs to apply an autoRotation and this CSSPlugin - * doesn't have any transform-related properties of its own. You can call this method as many times as you - * want and it won't create duplicate CSSPropTweens. - * - * @param {boolean} threeD if true, it should apply 3D tweens (otherwise, just 2D ones are fine and typically faster) - */ - p._enableTransforms = function(threeD) { - this._transformType = (threeD || this._transformType === 3) ? 3 : 2; - this._transform = this._transform || _getTransform(this._target, _cs, true); //ensures that the element has a _gsTransform property with the appropriate values. - }; - - var lazySet = function(v) { - this.t[this.p] = this.e; - this.data._linkCSSP(this, this._next, null, true); //we purposefully keep this._next even though it'd make sense to null it, but this is a performance optimization, as this happens during the while (pt) {} loop in setRatio() at the bottom of which it sets pt = pt._next, so if we null it, the linked list will be broken in that loop. - }; - /** @private Gives us a way to set a value on the first render (and only the first render). **/ - p._addLazySet = function(t, p, v) { - var pt = this._firstPT = new CSSPropTween(t, p, 0, 0, this._firstPT, 2); - pt.e = v; - pt.setRatio = lazySet; - pt.data = this; - }; - - /** @private **/ - p._linkCSSP = function(pt, next, prev, remove) { - if (pt) { - if (next) { - next._prev = pt; - } - if (pt._next) { - pt._next._prev = pt._prev; - } - if (pt._prev) { - pt._prev._next = pt._next; - } else if (this._firstPT === pt) { - this._firstPT = pt._next; - remove = true; //just to prevent resetting this._firstPT 5 lines down in case pt._next is null. (optimized for speed) - } - if (prev) { - prev._next = pt; - } else if (!remove && this._firstPT === null) { - this._firstPT = pt; - } - pt._next = next; - pt._prev = prev; - } - return pt; - }; - - //we need to make sure that if alpha or autoAlpha is killed, opacity is too. And autoAlpha affects the "visibility" property. - p._kill = function(lookup) { - var copy = lookup, - pt, p, xfirst; - if (lookup.autoAlpha || lookup.alpha) { - copy = {}; - for (p in lookup) { //copy the lookup so that we're not changing the original which may be passed elsewhere. - copy[p] = lookup[p]; - } - copy.opacity = 1; - if (copy.autoAlpha) { - copy.visibility = 1; - } - } - if (lookup.className && (pt = this._classNamePT)) { //for className tweens, we need to kill any associated CSSPropTweens too; a linked list starts at the className's "xfirst". - xfirst = pt.xfirst; - if (xfirst && xfirst._prev) { - this._linkCSSP(xfirst._prev, pt._next, xfirst._prev._prev); //break off the prev - } else if (xfirst === this._firstPT) { - this._firstPT = pt._next; - } - if (pt._next) { - this._linkCSSP(pt._next, pt._next._next, xfirst._prev); - } - this._classNamePT = null; - } - return TweenPlugin.prototype._kill.call(this, copy); - }; - - - - //used by cascadeTo() for gathering all the style properties of each child element into an array for comparison. - var _getChildStyles = function(e, props, targets) { - var children, i, child, type; - if (e.slice) { - i = e.length; - while (--i > -1) { - _getChildStyles(e[i], props, targets); - } - return; - } - children = e.childNodes; - i = children.length; - while (--i > -1) { - child = children[i]; - type = child.type; - if (child.style) { - props.push(_getAllStyles(child)); - if (targets) { - targets.push(child); - } - } - if ((type === 1 || type === 9 || type === 11) && child.childNodes.length) { - _getChildStyles(child, props, targets); - } - } - }; - - /** - * Typically only useful for className tweens that may affect child elements, this method creates a TweenLite - * and then compares the style properties of all the target's child elements at the tween's start and end, and - * if any are different, it also creates tweens for those and returns an array containing ALL of the resulting - * tweens (so that you can easily add() them to a TimelineLite, for example). The reason this functionality is - * wrapped into a separate static method of CSSPlugin instead of being integrated into all regular className tweens - * is because it creates entirely new tweens that may have completely different targets than the original tween, - * so if they were all lumped into the original tween instance, it would be inconsistent with the rest of the API - * and it would create other problems. For example: - * - If I create a tween of elementA, that tween instance may suddenly change its target to include 50 other elements (unintuitive if I specifically defined the target I wanted) - * - We can't just create new independent tweens because otherwise, what happens if the original/parent tween is reversed or pause or dropped into a TimelineLite for tight control? You'd expect that tween's behavior to affect all the others. - * - Analyzing every style property of every child before and after the tween is an expensive operation when there are many children, so this behavior shouldn't be imposed on all className tweens by default, especially since it's probably rare that this extra functionality is needed. - * - * @param {Object} target object to be tweened - * @param {number} Duration in seconds (or frames for frames-based tweens) - * @param {Object} Object containing the end values, like {className:"newClass", ease:Linear.easeNone} - * @return {Array} An array of TweenLite instances - */ - CSSPlugin.cascadeTo = function(target, duration, vars) { - var tween = TweenLite.to(target, duration, vars), - results = [tween], - b = [], - e = [], - targets = [], - _reservedProps = TweenLite._internals.reservedProps, - i, difs, p; - target = tween._targets || tween.target; - _getChildStyles(target, b, targets); - tween.render(duration, true); - _getChildStyles(target, e); - tween.render(0, true); - tween._enabled(true); - i = targets.length; - while (--i > -1) { - difs = _cssDif(targets[i], b[i], e[i]); - if (difs.firstMPT) { - difs = difs.difs; - for (p in vars) { - if (_reservedProps[p]) { - difs[p] = vars[p]; - } - } - results.push( TweenLite.to(targets[i], duration, difs) ); - } - } - return results; - }; - - TweenPlugin.activate([CSSPlugin]); - return CSSPlugin; - - }, true); - - - - - - - - - - - -/* - * ---------------------------------------------------------------- - * RoundPropsPlugin - * ---------------------------------------------------------------- - */ - (function() { - - var RoundPropsPlugin = window._gsDefine.plugin({ - propName: "roundProps", - priority: -1, - API: 2, - - //called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. - init: function(target, value, tween) { - this._tween = tween; - return true; - } - - }), - p = RoundPropsPlugin.prototype; - - p._onInitAllProps = function() { - var tween = this._tween, - rp = (tween.vars.roundProps instanceof Array) ? tween.vars.roundProps : tween.vars.roundProps.split(","), - i = rp.length, - lookup = {}, - rpt = tween._propLookup.roundProps, - prop, pt, next; - while (--i > -1) { - lookup[rp[i]] = 1; - } - i = rp.length; - while (--i > -1) { - prop = rp[i]; - pt = tween._firstPT; - while (pt) { - next = pt._next; //record here, because it may get removed - if (pt.pg) { - pt.t._roundProps(lookup, true); - } else if (pt.n === prop) { - this._add(pt.t, prop, pt.s, pt.c); - //remove from linked list - if (next) { - next._prev = pt._prev; - } - if (pt._prev) { - pt._prev._next = next; - } else if (tween._firstPT === pt) { - tween._firstPT = next; - } - pt._next = pt._prev = null; - tween._propLookup[prop] = rpt; - } - pt = next; - } - } - return false; - }; - - p._add = function(target, p, s, c) { - this._addTween(target, p, s, s + c, p, true); - this._overwriteProps.push(p); - }; - - }()); - - - - - - - - - - -/* - * ---------------------------------------------------------------- - * AttrPlugin - * ---------------------------------------------------------------- - */ - window._gsDefine.plugin({ - propName: "attr", - API: 2, - version: "0.3.2", - - //called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. - init: function(target, value, tween) { - var p, start, end; - if (typeof(target.setAttribute) !== "function") { - return false; - } - this._target = target; - this._proxy = {}; - this._start = {}; // we record start and end values exactly as they are in case they're strings (not numbers) - we need to be able to revert to them cleanly. - this._end = {}; - for (p in value) { - this._start[p] = this._proxy[p] = start = target.getAttribute(p); - end = this._addTween(this._proxy, p, parseFloat(start), value[p], p); - this._end[p] = end ? end.s + end.c : value[p]; - this._overwriteProps.push(p); - } - return true; - }, - - //called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like Elastic.easeOut or Back.easeOut, etc.) - set: function(ratio) { - this._super.setRatio.call(this, ratio); - var props = this._overwriteProps, - i = props.length, - lookup = (ratio === 1) ? this._end : ratio ? this._proxy : this._start, - p; - while (--i > -1) { - p = props[i]; - this._target.setAttribute(p, lookup[p] + ""); - } - } - - }); - - - - - - - - - - -/* - * ---------------------------------------------------------------- - * DirectionalRotationPlugin - * ---------------------------------------------------------------- - */ - window._gsDefine.plugin({ - propName: "directionalRotation", - API: 2, - version: "0.2.0", - - //called when the tween renders for the first time. This is where initial values should be recorded and any setup routines should run. - init: function(target, value, tween) { - if (typeof(value) !== "object") { - value = {rotation:value}; - } - this.finals = {}; - var cap = (value.useRadians === true) ? Math.PI * 2 : 360, - min = 0.000001, - p, v, start, end, dif, split; - for (p in value) { - if (p !== "useRadians") { - split = (value[p] + "").split("_"); - v = split[0]; - start = parseFloat( (typeof(target[p]) !== "function") ? target[p] : target[ ((p.indexOf("set") || typeof(target["get" + p.substr(3)]) !== "function") ? p : "get" + p.substr(3)) ]() ); - end = this.finals[p] = (typeof(v) === "string" && v.charAt(1) === "=") ? start + parseInt(v.charAt(0) + "1", 10) * Number(v.substr(2)) : Number(v) || 0; - dif = end - start; - if (split.length) { - v = split.join("_"); - if (v.indexOf("short") !== -1) { - dif = dif % cap; - if (dif !== dif % (cap / 2)) { - dif = (dif < 0) ? dif + cap : dif - cap; - } - } - if (v.indexOf("_cw") !== -1 && dif < 0) { - dif = ((dif + cap * 9999999999) % cap) - ((dif / cap) | 0) * cap; - } else if (v.indexOf("ccw") !== -1 && dif > 0) { - dif = ((dif - cap * 9999999999) % cap) - ((dif / cap) | 0) * cap; - } - } - if (dif > min || dif < -min) { - this._addTween(target, p, start, start + dif, p); - this._overwriteProps.push(p); - } - } - } - return true; - }, - - //called each time the values should be updated, and the ratio gets passed as the only parameter (typically it's a value between 0 and 1, but it can exceed those when using an ease like Elastic.easeOut or Back.easeOut, etc.) - set: function(ratio) { - var pt; - if (ratio !== 1) { - this._super.setRatio.call(this, ratio); - } else { - pt = this._firstPT; - while (pt) { - if (pt.f) { - pt.t[pt.p](this.finals[pt.p]); - } else { - pt.t[pt.p] = this.finals[pt.p]; - } - pt = pt._next; - } - } - } - - })._autoCSS = true; - - - - - - - - - - - -/* - * ---------------------------------------------------------------- - * EasePack - * ---------------------------------------------------------------- - */ - window._gsDefine("easing.Back", ["easing.Ease"], function(Ease) { - - var w = (window.GreenSockGlobals || window), - gs = w.com.greensock, - _2PI = Math.PI * 2, - _HALF_PI = Math.PI / 2, - _class = gs._class, - _create = function(n, f) { - var C = _class("easing." + n, function(){}, true), - p = C.prototype = new Ease(); - p.constructor = C; - p.getRatio = f; - return C; - }, - _easeReg = Ease.register || function(){}, //put an empty function in place just as a safety measure in case someone loads an OLD version of TweenLite.js where Ease.register doesn't exist. - _wrap = function(name, EaseOut, EaseIn, EaseInOut, aliases) { - var C = _class("easing."+name, { - easeOut:new EaseOut(), - easeIn:new EaseIn(), - easeInOut:new EaseInOut() - }, true); - _easeReg(C, name); - return C; - }, - EasePoint = function(time, value, next) { - this.t = time; - this.v = value; - if (next) { - this.next = next; - next.prev = this; - this.c = next.v - value; - this.gap = next.t - time; - } - }, - - //Back - _createBack = function(n, f) { - var C = _class("easing." + n, function(overshoot) { - this._p1 = (overshoot || overshoot === 0) ? overshoot : 1.70158; - this._p2 = this._p1 * 1.525; - }, true), - p = C.prototype = new Ease(); - p.constructor = C; - p.getRatio = f; - p.config = function(overshoot) { - return new C(overshoot); - }; - return C; - }, - - Back = _wrap("Back", - _createBack("BackOut", function(p) { - return ((p = p - 1) * p * ((this._p1 + 1) * p + this._p1) + 1); - }), - _createBack("BackIn", function(p) { - return p * p * ((this._p1 + 1) * p - this._p1); - }), - _createBack("BackInOut", function(p) { - return ((p *= 2) < 1) ? 0.5 * p * p * ((this._p2 + 1) * p - this._p2) : 0.5 * ((p -= 2) * p * ((this._p2 + 1) * p + this._p2) + 2); - }) - ), - - - //SlowMo - SlowMo = _class("easing.SlowMo", function(linearRatio, power, yoyoMode) { - power = (power || power === 0) ? power : 0.7; - if (linearRatio == null) { - linearRatio = 0.7; - } else if (linearRatio > 1) { - linearRatio = 1; - } - this._p = (linearRatio !== 1) ? power : 0; - this._p1 = (1 - linearRatio) / 2; - this._p2 = linearRatio; - this._p3 = this._p1 + this._p2; - this._calcEnd = (yoyoMode === true); - }, true), - p = SlowMo.prototype = new Ease(), - SteppedEase, RoughEase, _createElastic; - - p.constructor = SlowMo; - p.getRatio = function(p) { - var r = p + (0.5 - p) * this._p; - if (p < this._p1) { - return this._calcEnd ? 1 - ((p = 1 - (p / this._p1)) * p) : r - ((p = 1 - (p / this._p1)) * p * p * p * r); - } else if (p > this._p3) { - return this._calcEnd ? 1 - (p = (p - this._p3) / this._p1) * p : r + ((p - r) * (p = (p - this._p3) / this._p1) * p * p * p); - } - return this._calcEnd ? 1 : r; - }; - SlowMo.ease = new SlowMo(0.7, 0.7); - - p.config = SlowMo.config = function(linearRatio, power, yoyoMode) { - return new SlowMo(linearRatio, power, yoyoMode); - }; - - - //SteppedEase - SteppedEase = _class("easing.SteppedEase", function(steps) { - steps = steps || 1; - this._p1 = 1 / steps; - this._p2 = steps + 1; - }, true); - p = SteppedEase.prototype = new Ease(); - p.constructor = SteppedEase; - p.getRatio = function(p) { - if (p < 0) { - p = 0; - } else if (p >= 1) { - p = 0.999999999; - } - return ((this._p2 * p) >> 0) * this._p1; - }; - p.config = SteppedEase.config = function(steps) { - return new SteppedEase(steps); - }; - - - //RoughEase - RoughEase = _class("easing.RoughEase", function(vars) { - vars = vars || {}; - var taper = vars.taper || "none", - a = [], - cnt = 0, - points = (vars.points || 20) | 0, - i = points, - randomize = (vars.randomize !== false), - clamp = (vars.clamp === true), - template = (vars.template instanceof Ease) ? vars.template : null, - strength = (typeof(vars.strength) === "number") ? vars.strength * 0.4 : 0.4, - x, y, bump, invX, obj, pnt; - while (--i > -1) { - x = randomize ? Math.random() : (1 / points) * i; - y = template ? template.getRatio(x) : x; - if (taper === "none") { - bump = strength; - } else if (taper === "out") { - invX = 1 - x; - bump = invX * invX * strength; - } else if (taper === "in") { - bump = x * x * strength; - } else if (x < 0.5) { //"both" (start) - invX = x * 2; - bump = invX * invX * 0.5 * strength; - } else { //"both" (end) - invX = (1 - x) * 2; - bump = invX * invX * 0.5 * strength; - } - if (randomize) { - y += (Math.random() * bump) - (bump * 0.5); - } else if (i % 2) { - y += bump * 0.5; - } else { - y -= bump * 0.5; - } - if (clamp) { - if (y > 1) { - y = 1; - } else if (y < 0) { - y = 0; - } - } - a[cnt++] = {x:x, y:y}; - } - a.sort(function(a, b) { - return a.x - b.x; - }); - - pnt = new EasePoint(1, 1, null); - i = points; - while (--i > -1) { - obj = a[i]; - pnt = new EasePoint(obj.x, obj.y, pnt); - } - - this._prev = new EasePoint(0, 0, (pnt.t !== 0) ? pnt : pnt.next); - }, true); - p = RoughEase.prototype = new Ease(); - p.constructor = RoughEase; - p.getRatio = function(p) { - var pnt = this._prev; - if (p > pnt.t) { - while (pnt.next && p >= pnt.t) { - pnt = pnt.next; - } - pnt = pnt.prev; - } else { - while (pnt.prev && p <= pnt.t) { - pnt = pnt.prev; - } - } - this._prev = pnt; - return (pnt.v + ((p - pnt.t) / pnt.gap) * pnt.c); - }; - p.config = function(vars) { - return new RoughEase(vars); - }; - RoughEase.ease = new RoughEase(); - - - //Bounce - _wrap("Bounce", - _create("BounceOut", function(p) { - if (p < 1 / 2.75) { - return 7.5625 * p * p; - } else if (p < 2 / 2.75) { - return 7.5625 * (p -= 1.5 / 2.75) * p + 0.75; - } else if (p < 2.5 / 2.75) { - return 7.5625 * (p -= 2.25 / 2.75) * p + 0.9375; - } - return 7.5625 * (p -= 2.625 / 2.75) * p + 0.984375; - }), - _create("BounceIn", function(p) { - if ((p = 1 - p) < 1 / 2.75) { - return 1 - (7.5625 * p * p); - } else if (p < 2 / 2.75) { - return 1 - (7.5625 * (p -= 1.5 / 2.75) * p + 0.75); - } else if (p < 2.5 / 2.75) { - return 1 - (7.5625 * (p -= 2.25 / 2.75) * p + 0.9375); - } - return 1 - (7.5625 * (p -= 2.625 / 2.75) * p + 0.984375); - }), - _create("BounceInOut", function(p) { - var invert = (p < 0.5); - if (invert) { - p = 1 - (p * 2); - } else { - p = (p * 2) - 1; - } - if (p < 1 / 2.75) { - p = 7.5625 * p * p; - } else if (p < 2 / 2.75) { - p = 7.5625 * (p -= 1.5 / 2.75) * p + 0.75; - } else if (p < 2.5 / 2.75) { - p = 7.5625 * (p -= 2.25 / 2.75) * p + 0.9375; - } else { - p = 7.5625 * (p -= 2.625 / 2.75) * p + 0.984375; - } - return invert ? (1 - p) * 0.5 : p * 0.5 + 0.5; - }) - ); - - - //CIRC - _wrap("Circ", - _create("CircOut", function(p) { - return Math.sqrt(1 - (p = p - 1) * p); - }), - _create("CircIn", function(p) { - return -(Math.sqrt(1 - (p * p)) - 1); - }), - _create("CircInOut", function(p) { - return ((p*=2) < 1) ? -0.5 * (Math.sqrt(1 - p * p) - 1) : 0.5 * (Math.sqrt(1 - (p -= 2) * p) + 1); - }) - ); - - - //Elastic - _createElastic = function(n, f, def) { - var C = _class("easing." + n, function(amplitude, period) { - this._p1 = amplitude || 1; - this._p2 = period || def; - this._p3 = this._p2 / _2PI * (Math.asin(1 / this._p1) || 0); - }, true), - p = C.prototype = new Ease(); - p.constructor = C; - p.getRatio = f; - p.config = function(amplitude, period) { - return new C(amplitude, period); - }; - return C; - }; - _wrap("Elastic", - _createElastic("ElasticOut", function(p) { - return this._p1 * Math.pow(2, -10 * p) * Math.sin( (p - this._p3) * _2PI / this._p2 ) + 1; - }, 0.3), - _createElastic("ElasticIn", function(p) { - return -(this._p1 * Math.pow(2, 10 * (p -= 1)) * Math.sin( (p - this._p3) * _2PI / this._p2 )); - }, 0.3), - _createElastic("ElasticInOut", function(p) { - return ((p *= 2) < 1) ? -0.5 * (this._p1 * Math.pow(2, 10 * (p -= 1)) * Math.sin( (p - this._p3) * _2PI / this._p2)) : this._p1 * Math.pow(2, -10 *(p -= 1)) * Math.sin( (p - this._p3) * _2PI / this._p2 ) *0.5 + 1; - }, 0.45) - ); - - - //Expo - _wrap("Expo", - _create("ExpoOut", function(p) { - return 1 - Math.pow(2, -10 * p); - }), - _create("ExpoIn", function(p) { - return Math.pow(2, 10 * (p - 1)) - 0.001; - }), - _create("ExpoInOut", function(p) { - return ((p *= 2) < 1) ? 0.5 * Math.pow(2, 10 * (p - 1)) : 0.5 * (2 - Math.pow(2, -10 * (p - 1))); - }) - ); - - - //Sine - _wrap("Sine", - _create("SineOut", function(p) { - return Math.sin(p * _HALF_PI); - }), - _create("SineIn", function(p) { - return -Math.cos(p * _HALF_PI) + 1; - }), - _create("SineInOut", function(p) { - return -0.5 * (Math.cos(Math.PI * p) - 1); - }) - ); - - _class("easing.EaseLookup", { - find:function(s) { - return Ease.map[s]; - } - }, true); - - //register the non-standard eases - _easeReg(w.SlowMo, "SlowMo", "ease,"); - _easeReg(RoughEase, "RoughEase", "ease,"); - _easeReg(SteppedEase, "SteppedEase", "ease,"); - - return Back; - - }, true); - - -}); - - - - - - - - - - - -/* - * ---------------------------------------------------------------- - * Base classes like TweenLite, SimpleTimeline, Ease, Ticker, etc. - * ---------------------------------------------------------------- - */ -(function(window) { - - "use strict"; - var _globals = window.GreenSockGlobals || window; - if (_globals.TweenLite) { - return; //in case the core set of classes is already loaded, don't instantiate twice. - } - var _namespace = function(ns) { - var a = ns.split("."), - p = _globals, i; - for (i = 0; i < a.length; i++) { - p[a[i]] = p = p[a[i]] || {}; - } - return p; - }, - gs = _namespace("com.greensock"), - _tinyNum = 0.0000000001, - _slice = [].slice, - _emptyFunc = function() {}, - _isArray = (function() { //works around issues in iframe environments where the Array global isn't shared, thus if the object originates in a different window/iframe, "(obj instanceof Array)" will evaluate false. We added some speed optimizations to avoid Object.prototype.toString.call() unless it's absolutely necessary because it's VERY slow (like 20x slower) - var toString = Object.prototype.toString, - array = toString.call([]); - return function(obj) { - return obj != null && (obj instanceof Array || (typeof(obj) === "object" && !!obj.push && toString.call(obj) === array)); - }; - }()), - a, i, p, _ticker, _tickerActive, - _defLookup = {}, - - /** - * @constructor - * Defines a GreenSock class, optionally with an array of dependencies that must be instantiated first and passed into the definition. - * This allows users to load GreenSock JS files in any order even if they have interdependencies (like CSSPlugin extends TweenPlugin which is - * inside TweenLite.js, but if CSSPlugin is loaded first, it should wait to run its code until TweenLite.js loads and instantiates TweenPlugin - * and then pass TweenPlugin to CSSPlugin's definition). This is all done automatically and internally. - * - * Every definition will be added to a "com.greensock" global object (typically window, but if a window.GreenSockGlobals object is found, - * it will go there as of v1.7). For example, TweenLite will be found at window.com.greensock.TweenLite and since it's a global class that should be available anywhere, - * it is ALSO referenced at window.TweenLite. However some classes aren't considered global, like the base com.greensock.core.Animation class, so - * those will only be at the package like window.com.greensock.core.Animation. Again, if you define a GreenSockGlobals object on the window, everything - * gets tucked neatly inside there instead of on the window directly. This allows you to do advanced things like load multiple versions of GreenSock - * files and put them into distinct objects (imagine a banner ad uses a newer version but the main site uses an older one). In that case, you could - * sandbox the banner one like: - * - * - * - * - * - * - * - * @param {!string} ns The namespace of the class definition, leaving off "com.greensock." as that's assumed. For example, "TweenLite" or "plugins.CSSPlugin" or "easing.Back". - * @param {!Array.} dependencies An array of dependencies (described as their namespaces minus "com.greensock." prefix). For example ["TweenLite","plugins.TweenPlugin","core.Animation"] - * @param {!function():Object} func The function that should be called and passed the resolved dependencies which will return the actual class for this definition. - * @param {boolean=} global If true, the class will be added to the global scope (typically window unless you define a window.GreenSockGlobals object) - */ - Definition = function(ns, dependencies, func, global) { - this.sc = (_defLookup[ns]) ? _defLookup[ns].sc : []; //subclasses - _defLookup[ns] = this; - this.gsClass = null; - this.func = func; - var _classes = []; - this.check = function(init) { - var i = dependencies.length, - missing = i, - cur, a, n, cl; - while (--i > -1) { - if ((cur = _defLookup[dependencies[i]] || new Definition(dependencies[i], [])).gsClass) { - _classes[i] = cur.gsClass; - missing--; - } else if (init) { - cur.sc.push(this); - } - } - if (missing === 0 && func) { - a = ("com.greensock." + ns).split("."); - n = a.pop(); - cl = _namespace(a.join("."))[n] = this.gsClass = func.apply(func, _classes); - - //exports to multiple environments - if (global) { - _globals[n] = cl; //provides a way to avoid global namespace pollution. By default, the main classes like TweenLite, Power1, Strong, etc. are added to window unless a GreenSockGlobals is defined. So if you want to have things added to a custom object instead, just do something like window.GreenSockGlobals = {} before loading any GreenSock files. You can even set up an alias like window.GreenSockGlobals = windows.gs = {} so that you can access everything like gs.TweenLite. Also remember that ALL classes are added to the window.com.greensock object (in their respective packages, like com.greensock.easing.Power1, com.greensock.TweenLite, etc.) - if (typeof(define) === "function" && define.amd){ //AMD - define((window.GreenSockAMDPath ? window.GreenSockAMDPath + "/" : "") + ns.split(".").join("/"), [], function() { return cl; }); - } else if (typeof(module) !== "undefined" && module.exports){ //node - module.exports = cl; - } - } - for (i = 0; i < this.sc.length; i++) { - this.sc[i].check(); - } - } - }; - this.check(true); - }, - - //used to create Definition instances (which basically registers a class that has dependencies). - _gsDefine = window._gsDefine = function(ns, dependencies, func, global) { - return new Definition(ns, dependencies, func, global); - }, - - //a quick way to create a class that doesn't have any dependencies. Returns the class, but first registers it in the GreenSock namespace so that other classes can grab it (other classes might be dependent on the class). - _class = gs._class = function(ns, func, global) { - func = func || function() {}; - _gsDefine(ns, [], function(){ return func; }, global); - return func; - }; - - _gsDefine.globals = _globals; - - - -/* - * ---------------------------------------------------------------- - * Ease - * ---------------------------------------------------------------- - */ - var _baseParams = [0, 0, 1, 1], - _blankArray = [], - Ease = _class("easing.Ease", function(func, extraParams, type, power) { - this._func = func; - this._type = type || 0; - this._power = power || 0; - this._params = extraParams ? _baseParams.concat(extraParams) : _baseParams; - }, true), - _easeMap = Ease.map = {}, - _easeReg = Ease.register = function(ease, names, types, create) { - var na = names.split(","), - i = na.length, - ta = (types || "easeIn,easeOut,easeInOut").split(","), - e, name, j, type; - while (--i > -1) { - name = na[i]; - e = create ? _class("easing."+name, null, true) : gs.easing[name] || {}; - j = ta.length; - while (--j > -1) { - type = ta[j]; - _easeMap[name + "." + type] = _easeMap[type + name] = e[type] = ease.getRatio ? ease : ease[type] || new ease(); - } - } - }; - - p = Ease.prototype; - p._calcEnd = false; - p.getRatio = function(p) { - if (this._func) { - this._params[0] = p; - return this._func.apply(null, this._params); - } - var t = this._type, - pw = this._power, - r = (t === 1) ? 1 - p : (t === 2) ? p : (p < 0.5) ? p * 2 : (1 - p) * 2; - if (pw === 1) { - r *= r; - } else if (pw === 2) { - r *= r * r; - } else if (pw === 3) { - r *= r * r * r; - } else if (pw === 4) { - r *= r * r * r * r; - } - return (t === 1) ? 1 - r : (t === 2) ? r : (p < 0.5) ? r / 2 : 1 - (r / 2); - }; - - //create all the standard eases like Linear, Quad, Cubic, Quart, Quint, Strong, Power0, Power1, Power2, Power3, and Power4 (each with easeIn, easeOut, and easeInOut) - a = ["Linear","Quad","Cubic","Quart","Quint,Strong"]; - i = a.length; - while (--i > -1) { - p = a[i]+",Power"+i; - _easeReg(new Ease(null,null,1,i), p, "easeOut", true); - _easeReg(new Ease(null,null,2,i), p, "easeIn" + ((i === 0) ? ",easeNone" : "")); - _easeReg(new Ease(null,null,3,i), p, "easeInOut"); - } - _easeMap.linear = gs.easing.Linear.easeIn; - _easeMap.swing = gs.easing.Quad.easeInOut; //for jQuery folks - - -/* - * ---------------------------------------------------------------- - * EventDispatcher - * ---------------------------------------------------------------- - */ - var EventDispatcher = _class("events.EventDispatcher", function(target) { - this._listeners = {}; - this._eventTarget = target || this; - }); - p = EventDispatcher.prototype; - - p.addEventListener = function(type, callback, scope, useParam, priority) { - priority = priority || 0; - var list = this._listeners[type], - index = 0, - listener, i; - if (list == null) { - this._listeners[type] = list = []; - } - i = list.length; - while (--i > -1) { - listener = list[i]; - if (listener.c === callback && listener.s === scope) { - list.splice(i, 1); - } else if (index === 0 && listener.pr < priority) { - index = i + 1; - } - } - list.splice(index, 0, {c:callback, s:scope, up:useParam, pr:priority}); - if (this === _ticker && !_tickerActive) { - _ticker.wake(); - } - }; - - p.removeEventListener = function(type, callback) { - var list = this._listeners[type], i; - if (list) { - i = list.length; - while (--i > -1) { - if (list[i].c === callback) { - list.splice(i, 1); - return; - } - } - } - }; - - p.dispatchEvent = function(type) { - var list = this._listeners[type], - i, t, listener; - if (list) { - i = list.length; - t = this._eventTarget; - while (--i > -1) { - listener = list[i]; - if (listener.up) { - listener.c.call(listener.s || t, {type:type, target:t}); - } else { - listener.c.call(listener.s || t); - } - } - } - }; - - -/* - * ---------------------------------------------------------------- - * Ticker - * ---------------------------------------------------------------- - */ - var _reqAnimFrame = window.requestAnimationFrame, - _cancelAnimFrame = window.cancelAnimationFrame, - _getTime = Date.now || function() {return new Date().getTime();}, - _lastUpdate = _getTime(); - - //now try to determine the requestAnimationFrame and cancelAnimationFrame functions and if none are found, we'll use a setTimeout()/clearTimeout() polyfill. - a = ["ms","moz","webkit","o"]; - i = a.length; - while (--i > -1 && !_reqAnimFrame) { - _reqAnimFrame = window[a[i] + "RequestAnimationFrame"]; - _cancelAnimFrame = window[a[i] + "CancelAnimationFrame"] || window[a[i] + "CancelRequestAnimationFrame"]; - } - - _class("Ticker", function(fps, useRAF) { - var _self = this, - _startTime = _getTime(), - _useRAF = (useRAF !== false && _reqAnimFrame), - _lagThreshold = 500, - _adjustedLag = 33, - _fps, _req, _id, _gap, _nextTime, - _tick = function(manual) { - var elapsed = _getTime() - _lastUpdate, - overlap, dispatch; - if (elapsed > _lagThreshold) { - _startTime += elapsed - _adjustedLag; - } - _lastUpdate += elapsed; - _self.time = (_lastUpdate - _startTime) / 1000; - overlap = _self.time - _nextTime; - if (!_fps || overlap > 0 || manual === true) { - _self.frame++; - _nextTime += overlap + (overlap >= _gap ? 0.004 : _gap - overlap); - dispatch = true; - } - if (manual !== true) { //make sure the request is made before we dispatch the "tick" event so that timing is maintained. Otherwise, if processing the "tick" requires a bunch of time (like 15ms) and we're using a setTimeout() that's based on 16.7ms, it'd technically take 31.7ms between frames otherwise. - _id = _req(_tick); - } - if (dispatch) { - _self.dispatchEvent("tick"); - } - }; - - EventDispatcher.call(_self); - _self.time = _self.frame = 0; - _self.tick = function() { - _tick(true); - }; - - _self.lagSmoothing = function(threshold, adjustedLag) { - _lagThreshold = threshold || (1 / _tinyNum); //zero should be interpreted as basically unlimited - _adjustedLag = Math.min(adjustedLag, _lagThreshold, 0); - }; - - _self.sleep = function() { - if (_id == null) { - return; - } - if (!_useRAF || !_cancelAnimFrame) { - clearTimeout(_id); - } else { - _cancelAnimFrame(_id); - } - _req = _emptyFunc; - _id = null; - if (_self === _ticker) { - _tickerActive = false; - } - }; - - _self.wake = function() { - if (_id !== null) { - _self.sleep(); - } else if (_self.frame > 10) { //don't trigger lagSmoothing if we're just waking up, and make sure that at least 10 frames have elapsed because of the iOS bug that we work around below with the 1.5-second setTimout(). - _lastUpdate = _getTime() - _lagThreshold + 5; - } - _req = (_fps === 0) ? _emptyFunc : (!_useRAF || !_reqAnimFrame) ? function(f) { return setTimeout(f, ((_nextTime - _self.time) * 1000 + 1) | 0); } : _reqAnimFrame; - if (_self === _ticker) { - _tickerActive = true; - } - _tick(2); - }; - - _self.fps = function(value) { - if (!arguments.length) { - return _fps; - } - _fps = value; - _gap = 1 / (_fps || 60); - _nextTime = this.time + _gap; - _self.wake(); - }; - - _self.useRAF = function(value) { - if (!arguments.length) { - return _useRAF; - } - _self.sleep(); - _useRAF = value; - _self.fps(_fps); - }; - _self.fps(fps); - - //a bug in iOS 6 Safari occasionally prevents the requestAnimationFrame from working initially, so we use a 1.5-second timeout that automatically falls back to setTimeout() if it senses this condition. - setTimeout(function() { - if (_useRAF && (!_id || _self.frame < 5)) { - _self.useRAF(false); - } - }, 1500); - }); - - p = gs.Ticker.prototype = new gs.events.EventDispatcher(); - p.constructor = gs.Ticker; - - -/* - * ---------------------------------------------------------------- - * Animation - * ---------------------------------------------------------------- - */ - var Animation = _class("core.Animation", function(duration, vars) { - this.vars = vars = vars || {}; - this._duration = this._totalDuration = duration || 0; - this._delay = Number(vars.delay) || 0; - this._timeScale = 1; - this._active = (vars.immediateRender === true); - this.data = vars.data; - this._reversed = (vars.reversed === true); - - if (!_rootTimeline) { - return; - } - if (!_tickerActive) { //some browsers (like iOS 6 Safari) shut down JavaScript execution when the tab is disabled and they [occasionally] neglect to start up requestAnimationFrame again when returning - this code ensures that the engine starts up again properly. - _ticker.wake(); - } - - var tl = this.vars.useFrames ? _rootFramesTimeline : _rootTimeline; - tl.add(this, tl._time); - - if (this.vars.paused) { - this.paused(true); - } - }); - - _ticker = Animation.ticker = new gs.Ticker(); - p = Animation.prototype; - p._dirty = p._gc = p._initted = p._paused = false; - p._totalTime = p._time = 0; - p._rawPrevTime = -1; - p._next = p._last = p._onUpdate = p._timeline = p.timeline = null; - p._paused = false; - - - //some browsers (like iOS) occasionally drop the requestAnimationFrame event when the user switches to a different tab and then comes back again, so we use a 2-second setTimeout() to sense if/when that condition occurs and then wake() the ticker. - var _checkTimeout = function() { - if (_tickerActive && _getTime() - _lastUpdate > 2000) { - _ticker.wake(); - } - setTimeout(_checkTimeout, 2000); - }; - _checkTimeout(); - - - p.play = function(from, suppressEvents) { - if (from != null) { - this.seek(from, suppressEvents); - } - return this.reversed(false).paused(false); - }; - - p.pause = function(atTime, suppressEvents) { - if (atTime != null) { - this.seek(atTime, suppressEvents); - } - return this.paused(true); - }; - - p.resume = function(from, suppressEvents) { - if (from != null) { - this.seek(from, suppressEvents); - } - return this.paused(false); - }; - - p.seek = function(time, suppressEvents) { - return this.totalTime(Number(time), suppressEvents !== false); - }; - - p.restart = function(includeDelay, suppressEvents) { - return this.reversed(false).paused(false).totalTime(includeDelay ? -this._delay : 0, (suppressEvents !== false), true); - }; - - p.reverse = function(from, suppressEvents) { - if (from != null) { - this.seek((from || this.totalDuration()), suppressEvents); - } - return this.reversed(true).paused(false); - }; - - p.render = function(time, suppressEvents, force) { - //stub - we override this method in subclasses. - }; - - p.invalidate = function() { - return this; - }; - - p.isActive = function() { - var tl = this._timeline, //the 2 root timelines won't have a _timeline; they're always active. - startTime = this._startTime, - rawTime; - return (!tl || (!this._gc && !this._paused && tl.isActive() && (rawTime = tl.rawTime()) >= startTime && rawTime < startTime + this.totalDuration() / this._timeScale)); - }; - - p._enabled = function (enabled, ignoreTimeline) { - if (!_tickerActive) { - _ticker.wake(); - } - this._gc = !enabled; - this._active = this.isActive(); - if (ignoreTimeline !== true) { - if (enabled && !this.timeline) { - this._timeline.add(this, this._startTime - this._delay); - } else if (!enabled && this.timeline) { - this._timeline._remove(this, true); - } - } - return false; - }; - - - p._kill = function(vars, target) { - return this._enabled(false, false); - }; - - p.kill = function(vars, target) { - this._kill(vars, target); - return this; - }; - - p._uncache = function(includeSelf) { - var tween = includeSelf ? this : this.timeline; - while (tween) { - tween._dirty = true; - tween = tween.timeline; - } - return this; - }; - - p._swapSelfInParams = function(params) { - var i = params.length, - copy = params.concat(); - while (--i > -1) { - if (params[i] === "{self}") { - copy[i] = this; - } - } - return copy; - }; - -//----Animation getters/setters -------------------------------------------------------- - - p.eventCallback = function(type, callback, params, scope) { - if ((type || "").substr(0,2) === "on") { - var v = this.vars; - if (arguments.length === 1) { - return v[type]; - } - if (callback == null) { - delete v[type]; - } else { - v[type] = callback; - v[type + "Params"] = (_isArray(params) && params.join("").indexOf("{self}") !== -1) ? this._swapSelfInParams(params) : params; - v[type + "Scope"] = scope; - } - if (type === "onUpdate") { - this._onUpdate = callback; - } - } - return this; - }; - - p.delay = function(value) { - if (!arguments.length) { - return this._delay; - } - if (this._timeline.smoothChildTiming) { - this.startTime( this._startTime + value - this._delay ); - } - this._delay = value; - return this; - }; - - p.duration = function(value) { - if (!arguments.length) { - this._dirty = false; - return this._duration; - } - this._duration = this._totalDuration = value; - this._uncache(true); //true in case it's a TweenMax or TimelineMax that has a repeat - we'll need to refresh the totalDuration. - if (this._timeline.smoothChildTiming) if (this._time > 0) if (this._time < this._duration) if (value !== 0) { - this.totalTime(this._totalTime * (value / this._duration), true); - } - return this; - }; - - p.totalDuration = function(value) { - this._dirty = false; - return (!arguments.length) ? this._totalDuration : this.duration(value); - }; - - p.time = function(value, suppressEvents) { - if (!arguments.length) { - return this._time; - } - if (this._dirty) { - this.totalDuration(); - } - return this.totalTime((value > this._duration) ? this._duration : value, suppressEvents); - }; - - p.totalTime = function(time, suppressEvents, uncapped) { - if (!_tickerActive) { - _ticker.wake(); - } - if (!arguments.length) { - return this._totalTime; - } - if (this._timeline) { - if (time < 0 && !uncapped) { - time += this.totalDuration(); - } - if (this._timeline.smoothChildTiming) { - if (this._dirty) { - this.totalDuration(); - } - var totalDuration = this._totalDuration, - tl = this._timeline; - if (time > totalDuration && !uncapped) { - time = totalDuration; - } - this._startTime = (this._paused ? this._pauseTime : tl._time) - ((!this._reversed ? time : totalDuration - time) / this._timeScale); - if (!tl._dirty) { //for performance improvement. If the parent's cache is already dirty, it already took care of marking the ancestors as dirty too, so skip the function call here. - this._uncache(false); - } - //in case any of the ancestor timelines had completed but should now be enabled, we should reset their totalTime() which will also ensure that they're lined up properly and enabled. Skip for animations that are on the root (wasteful). Example: a TimelineLite.exportRoot() is performed when there's a paused tween on the root, the export will not complete until that tween is unpaused, but imagine a child gets restarted later, after all [unpaused] tweens have completed. The startTime of that child would get pushed out, but one of the ancestors may have completed. - if (tl._timeline) { - while (tl._timeline) { - if (tl._timeline._time !== (tl._startTime + tl._totalTime) / tl._timeScale) { - tl.totalTime(tl._totalTime, true); - } - tl = tl._timeline; - } - } - } - if (this._gc) { - this._enabled(true, false); - } - if (this._totalTime !== time || this._duration === 0) { - this.render(time, suppressEvents, false); - if (_lazyTweens.length) { //in case rendering caused any tweens to lazy-init, we should render them because typically when someone calls seek() or time() or progress(), they expect an immediate render. - _lazyRender(); - } - } - } - return this; - }; - - p.progress = p.totalProgress = function(value, suppressEvents) { - return (!arguments.length) ? this._time / this.duration() : this.totalTime(this.duration() * value, suppressEvents); - }; - - p.startTime = function(value) { - if (!arguments.length) { - return this._startTime; - } - if (value !== this._startTime) { - this._startTime = value; - if (this.timeline) if (this.timeline._sortChildren) { - this.timeline.add(this, value - this._delay); //ensures that any necessary re-sequencing of Animations in the timeline occurs to make sure the rendering order is correct. - } - } - return this; - }; - - p.timeScale = function(value) { - if (!arguments.length) { - return this._timeScale; - } - value = value || _tinyNum; //can't allow zero because it'll throw the math off - if (this._timeline && this._timeline.smoothChildTiming) { - var pauseTime = this._pauseTime, - t = (pauseTime || pauseTime === 0) ? pauseTime : this._timeline.totalTime(); - this._startTime = t - ((t - this._startTime) * this._timeScale / value); - } - this._timeScale = value; - return this._uncache(false); - }; - - p.reversed = function(value) { - if (!arguments.length) { - return this._reversed; - } - if (value != this._reversed) { - this._reversed = value; - this.totalTime(((this._timeline && !this._timeline.smoothChildTiming) ? this.totalDuration() - this._totalTime : this._totalTime), true); - } - return this; - }; - - p.paused = function(value) { - if (!arguments.length) { - return this._paused; - } - if (value != this._paused) if (this._timeline) { - if (!_tickerActive && !value) { - _ticker.wake(); - } - var tl = this._timeline, - raw = tl.rawTime(), - elapsed = raw - this._pauseTime; - if (!value && tl.smoothChildTiming) { - this._startTime += elapsed; - this._uncache(false); - } - this._pauseTime = value ? raw : null; - this._paused = value; - this._active = this.isActive(); - if (!value && elapsed !== 0 && this._initted && this.duration()) { - this.render((tl.smoothChildTiming ? this._totalTime : (raw - this._startTime) / this._timeScale), true, true); //in case the target's properties changed via some other tween or manual update by the user, we should force a render. - } - } - if (this._gc && !value) { - this._enabled(true, false); - } - return this; - }; - - -/* - * ---------------------------------------------------------------- - * SimpleTimeline - * ---------------------------------------------------------------- - */ - var SimpleTimeline = _class("core.SimpleTimeline", function(vars) { - Animation.call(this, 0, vars); - this.autoRemoveChildren = this.smoothChildTiming = true; - }); - - p = SimpleTimeline.prototype = new Animation(); - p.constructor = SimpleTimeline; - p.kill()._gc = false; - p._first = p._last = null; - p._sortChildren = false; - - p.add = p.insert = function(child, position, align, stagger) { - var prevTween, st; - child._startTime = Number(position || 0) + child._delay; - if (child._paused) if (this !== child._timeline) { //we only adjust the _pauseTime if it wasn't in this timeline already. Remember, sometimes a tween will be inserted again into the same timeline when its startTime is changed so that the tweens in the TimelineLite/Max are re-ordered properly in the linked list (so everything renders in the proper order). - child._pauseTime = child._startTime + ((this.rawTime() - child._startTime) / child._timeScale); - } - if (child.timeline) { - child.timeline._remove(child, true); //removes from existing timeline so that it can be properly added to this one. - } - child.timeline = child._timeline = this; - if (child._gc) { - child._enabled(true, true); - } - prevTween = this._last; - if (this._sortChildren) { - st = child._startTime; - while (prevTween && prevTween._startTime > st) { - prevTween = prevTween._prev; - } - } - if (prevTween) { - child._next = prevTween._next; - prevTween._next = child; - } else { - child._next = this._first; - this._first = child; - } - if (child._next) { - child._next._prev = child; - } else { - this._last = child; - } - child._prev = prevTween; - if (this._timeline) { - this._uncache(true); - } - return this; - }; - - p._remove = function(tween, skipDisable) { - if (tween.timeline === this) { - if (!skipDisable) { - tween._enabled(false, true); - } - tween.timeline = null; - - if (tween._prev) { - tween._prev._next = tween._next; - } else if (this._first === tween) { - this._first = tween._next; - } - if (tween._next) { - tween._next._prev = tween._prev; - } else if (this._last === tween) { - this._last = tween._prev; - } - - if (this._timeline) { - this._uncache(true); - } - } - return this; - }; - - p.render = function(time, suppressEvents, force) { - var tween = this._first, - next; - this._totalTime = this._time = this._rawPrevTime = time; - while (tween) { - next = tween._next; //record it here because the value could change after rendering... - if (tween._active || (time >= tween._startTime && !tween._paused)) { - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - }; - - p.rawTime = function() { - if (!_tickerActive) { - _ticker.wake(); - } - return this._totalTime; - }; - -/* - * ---------------------------------------------------------------- - * TweenLite - * ---------------------------------------------------------------- - */ - var TweenLite = _class("TweenLite", function(target, duration, vars) { - Animation.call(this, duration, vars); - this.render = TweenLite.prototype.render; //speed optimization (avoid prototype lookup on this "hot" method) - - if (target == null) { - throw "Cannot tween a null target."; - } - - this.target = target = (typeof(target) !== "string") ? target : TweenLite.selector(target) || target; - - var isSelector = (target.jquery || (target.length && target !== window && target[0] && (target[0] === window || (target[0].nodeType && target[0].style && !target.nodeType)))), - overwrite = this.vars.overwrite, - i, targ, targets; - - this._overwrite = overwrite = (overwrite == null) ? _overwriteLookup[TweenLite.defaultOverwrite] : (typeof(overwrite) === "number") ? overwrite >> 0 : _overwriteLookup[overwrite]; - - if ((isSelector || target instanceof Array || (target.push && _isArray(target))) && typeof(target[0]) !== "number") { - this._targets = targets = _slice.call(target, 0); - this._propLookup = []; - this._siblings = []; - for (i = 0; i < targets.length; i++) { - targ = targets[i]; - if (!targ) { - targets.splice(i--, 1); - continue; - } else if (typeof(targ) === "string") { - targ = targets[i--] = TweenLite.selector(targ); //in case it's an array of strings - if (typeof(targ) === "string") { - targets.splice(i+1, 1); //to avoid an endless loop (can't imagine why the selector would return a string, but just in case) - } - continue; - } else if (targ.length && targ !== window && targ[0] && (targ[0] === window || (targ[0].nodeType && targ[0].style && !targ.nodeType))) { //in case the user is passing in an array of selector objects (like jQuery objects), we need to check one more level and pull things out if necessary. Also note that elements pass all the criteria regarding length and the first child having style, so we must also check to ensure the target isn't an HTML node itself. + targets.splice(i--, 1); + this._targets = targets = targets.concat(_slice.call(targ, 0)); + continue; + } + this._siblings[i] = _register(targ, this, false); + if (overwrite === 1) if (this._siblings[i].length > 1) { + _applyOverwrite(targ, this, null, 1, this._siblings[i]); + } + } + + } else { + this._propLookup = {}; + this._siblings = _register(target, this, false); + if (overwrite === 1) if (this._siblings.length > 1) { + _applyOverwrite(target, this, null, 1, this._siblings); + } + } + if (this.vars.immediateRender || (duration === 0 && this._delay === 0 && this.vars.immediateRender !== false)) { + this._time = -_tinyNum; //forces a render without having to set the render() "force" parameter to true because we want to allow lazying by default (using the "force" parameter always forces an immediate full render) + this.render(-this._delay); + } + }, true), + _isSelector = function(v) { + return (v.length && v !== window && v[0] && (v[0] === window || (v[0].nodeType && v[0].style && !v.nodeType))); //we cannot check "nodeType" if the target is window from within an iframe, otherwise it will trigger a security error in some browsers like Firefox. + }, + _autoCSS = function(vars, target) { + var css = {}, + p; + for (p in vars) { + if (!_reservedProps[p] && (!(p in target) || p === "transform" || p === "x" || p === "y" || p === "width" || p === "height" || p === "className" || p === "border") && (!_plugins[p] || (_plugins[p] && _plugins[p]._autoCSS))) { //note: elements contain read-only "x" and "y" properties. We should also prioritize editing css width/height rather than the element's properties. + css[p] = vars[p]; + delete vars[p]; + } + } + vars.css = css; + }; + + p = TweenLite.prototype = new Animation(); + p.constructor = TweenLite; + p.kill()._gc = false; + +//----TweenLite defaults, overwrite management, and root updates ---------------------------------------------------- + + p.ratio = 0; + p._firstPT = p._targets = p._overwrittenProps = p._startAt = null; + p._notifyPluginsOfEnabled = p._lazy = false; + + TweenLite.version = "1.12.1"; + TweenLite.defaultEase = p._ease = new Ease(null, null, 1, 1); + TweenLite.defaultOverwrite = "auto"; + TweenLite.ticker = _ticker; + TweenLite.autoSleep = true; + TweenLite.lagSmoothing = function(threshold, adjustedLag) { + _ticker.lagSmoothing(threshold, adjustedLag); + }; + TweenLite.selector = window.$ || window.jQuery || function(e) { if (window.$) { TweenLite.selector = window.$; return window.$(e); } return window.document ? window.document.getElementById((e.charAt(0) === "#") ? e.substr(1) : e) : e; }; + + var _lazyTweens = [], + _lazyLookup = {}, + _internals = TweenLite._internals = {isArray:_isArray, isSelector:_isSelector, lazyTweens:_lazyTweens}, //gives us a way to expose certain private values to other GreenSock classes without contaminating tha main TweenLite object. + _plugins = TweenLite._plugins = {}, + _tweenLookup = _internals.tweenLookup = {}, + _tweenLookupNum = 0, + _reservedProps = _internals.reservedProps = {ease:1, delay:1, overwrite:1, onComplete:1, onCompleteParams:1, onCompleteScope:1, useFrames:1, runBackwards:1, startAt:1, onUpdate:1, onUpdateParams:1, onUpdateScope:1, onStart:1, onStartParams:1, onStartScope:1, onReverseComplete:1, onReverseCompleteParams:1, onReverseCompleteScope:1, onRepeat:1, onRepeatParams:1, onRepeatScope:1, easeParams:1, yoyo:1, immediateRender:1, repeat:1, repeatDelay:1, data:1, paused:1, reversed:1, autoCSS:1, lazy:1}, + _overwriteLookup = {none:0, all:1, auto:2, concurrent:3, allOnStart:4, preexisting:5, "true":1, "false":0}, + _rootFramesTimeline = Animation._rootFramesTimeline = new SimpleTimeline(), + _rootTimeline = Animation._rootTimeline = new SimpleTimeline(), + _lazyRender = function() { + var i = _lazyTweens.length; + _lazyLookup = {}; + while (--i > -1) { + a = _lazyTweens[i]; + if (a && a._lazy !== false) { + a.render(a._lazy, false, true); + a._lazy = false; + } + } + _lazyTweens.length = 0; + }; + + _rootTimeline._startTime = _ticker.time; + _rootFramesTimeline._startTime = _ticker.frame; + _rootTimeline._active = _rootFramesTimeline._active = true; + setTimeout(_lazyRender, 1); //on some mobile devices, there isn't a "tick" before code runs which means any lazy renders wouldn't run before the next official "tick". + + Animation._updateRoot = TweenLite.render = function() { + var i, a, p; + if (_lazyTweens.length) { //if code is run outside of the requestAnimationFrame loop, there may be tweens queued AFTER the engine refreshed, so we need to ensure any pending renders occur before we refresh again. + _lazyRender(); + } + _rootTimeline.render((_ticker.time - _rootTimeline._startTime) * _rootTimeline._timeScale, false, false); + _rootFramesTimeline.render((_ticker.frame - _rootFramesTimeline._startTime) * _rootFramesTimeline._timeScale, false, false); + if (_lazyTweens.length) { + _lazyRender(); + } + if (!(_ticker.frame % 120)) { //dump garbage every 120 frames... + for (p in _tweenLookup) { + a = _tweenLookup[p].tweens; + i = a.length; + while (--i > -1) { + if (a[i]._gc) { + a.splice(i, 1); + } + } + if (a.length === 0) { + delete _tweenLookup[p]; + } + } + //if there are no more tweens in the root timelines, or if they're all paused, make the _timer sleep to reduce load on the CPU slightly + p = _rootTimeline._first; + if (!p || p._paused) if (TweenLite.autoSleep && !_rootFramesTimeline._first && _ticker._listeners.tick.length === 1) { + while (p && p._paused) { + p = p._next; + } + if (!p) { + _ticker.sleep(); + } + } + } + }; + + _ticker.addEventListener("tick", Animation._updateRoot); + + var _register = function(target, tween, scrub) { + var id = target._gsTweenID, a, i; + if (!_tweenLookup[id || (target._gsTweenID = id = "t" + (_tweenLookupNum++))]) { + _tweenLookup[id] = {target:target, tweens:[]}; + } + if (tween) { + a = _tweenLookup[id].tweens; + a[(i = a.length)] = tween; + if (scrub) { + while (--i > -1) { + if (a[i] === tween) { + a.splice(i, 1); + } + } + } + } + return _tweenLookup[id].tweens; + }, + + _applyOverwrite = function(target, tween, props, mode, siblings) { + var i, changed, curTween, l; + if (mode === 1 || mode >= 4) { + l = siblings.length; + for (i = 0; i < l; i++) { + if ((curTween = siblings[i]) !== tween) { + if (!curTween._gc) if (curTween._enabled(false, false)) { + changed = true; + } + } else if (mode === 5) { + break; + } + } + return changed; + } + //NOTE: Add 0.0000000001 to overcome floating point errors that can cause the startTime to be VERY slightly off (when a tween's time() is set for example) + var startTime = tween._startTime + _tinyNum, + overlaps = [], + oCount = 0, + zeroDur = (tween._duration === 0), + globalStart; + i = siblings.length; + while (--i > -1) { + if ((curTween = siblings[i]) === tween || curTween._gc || curTween._paused) { + //ignore + } else if (curTween._timeline !== tween._timeline) { + globalStart = globalStart || _checkOverlap(tween, 0, zeroDur); + if (_checkOverlap(curTween, globalStart, zeroDur) === 0) { + overlaps[oCount++] = curTween; + } + } else if (curTween._startTime <= startTime) if (curTween._startTime + curTween.totalDuration() / curTween._timeScale > startTime) if (!((zeroDur || !curTween._initted) && startTime - curTween._startTime <= 0.0000000002)) { + overlaps[oCount++] = curTween; + } + } + + i = oCount; + while (--i > -1) { + curTween = overlaps[i]; + if (mode === 2) if (curTween._kill(props, target)) { + changed = true; + } + if (mode !== 2 || (!curTween._firstPT && curTween._initted)) { + if (curTween._enabled(false, false)) { //if all property tweens have been overwritten, kill the tween. + changed = true; + } + } + } + return changed; + }, + + _checkOverlap = function(tween, reference, zeroDur) { + var tl = tween._timeline, + ts = tl._timeScale, + t = tween._startTime; + while (tl._timeline) { + t += tl._startTime; + ts *= tl._timeScale; + if (tl._paused) { + return -100; + } + tl = tl._timeline; + } + t /= ts; + return (t > reference) ? t - reference : ((zeroDur && t === reference) || (!tween._initted && t - reference < 2 * _tinyNum)) ? _tinyNum : ((t += tween.totalDuration() / tween._timeScale / ts) > reference + _tinyNum) ? 0 : t - reference - _tinyNum; + }; + + +//---- TweenLite instance methods ----------------------------------------------------------------------------- + + p._init = function() { + var v = this.vars, + op = this._overwrittenProps, + dur = this._duration, + immediate = !!v.immediateRender, + ease = v.ease, + i, initPlugins, pt, p, startVars; + if (v.startAt) { + if (this._startAt) { + this._startAt.render(-1, true); //if we've run a startAt previously (when the tween instantiated), we should revert it so that the values re-instantiate correctly particularly for relative tweens. Without this, a TweenLite.fromTo(obj, 1, {x:"+=100"}, {x:"-=100"}), for example, would actually jump to +=200 because the startAt would run twice, doubling the relative change. + this._startAt.kill(); + } + startVars = {}; + for (p in v.startAt) { //copy the properties/values into a new object to avoid collisions, like var to = {x:0}, from = {x:500}; timeline.fromTo(e, 1, from, to).fromTo(e, 1, to, from); + startVars[p] = v.startAt[p]; + } + startVars.overwrite = false; + startVars.immediateRender = true; + startVars.lazy = (immediate && v.lazy !== false); + startVars.startAt = startVars.delay = null; //no nesting of startAt objects allowed (otherwise it could cause an infinite loop). + this._startAt = TweenLite.to(this.target, 0, startVars); + if (immediate) { + if (this._time > 0) { + this._startAt = null; //tweens that render immediately (like most from() and fromTo() tweens) shouldn't revert when their parent timeline's playhead goes backward past the startTime because the initial render could have happened anytime and it shouldn't be directly correlated to this tween's startTime. Imagine setting up a complex animation where the beginning states of various objects are rendered immediately but the tween doesn't happen for quite some time - if we revert to the starting values as soon as the playhead goes backward past the tween's startTime, it will throw things off visually. Reversion should only happen in TimelineLite/Max instances where immediateRender was false (which is the default in the convenience methods like from()). + } else if (dur !== 0) { + return; //we skip initialization here so that overwriting doesn't occur until the tween actually begins. Otherwise, if you create several immediateRender:true tweens of the same target/properties to drop into a TimelineLite or TimelineMax, the last one created would overwrite the first ones because they didn't get placed into the timeline yet before the first render occurs and kicks in overwriting. + } + } + } else if (v.runBackwards && dur !== 0) { + //from() tweens must be handled uniquely: their beginning values must be rendered but we don't want overwriting to occur yet (when time is still 0). Wait until the tween actually begins before doing all the routines like overwriting. At that time, we should render at the END of the tween to ensure that things initialize correctly (remember, from() tweens go backwards) + if (this._startAt) { + this._startAt.render(-1, true); + this._startAt.kill(); + this._startAt = null; + } else { + pt = {}; + for (p in v) { //copy props into a new object and skip any reserved props, otherwise onComplete or onUpdate or onStart could fire. We should, however, permit autoCSS to go through. + if (!_reservedProps[p] || p === "autoCSS") { + pt[p] = v[p]; + } + } + pt.overwrite = 0; + pt.data = "isFromStart"; //we tag the tween with as "isFromStart" so that if [inside a plugin] we need to only do something at the very END of a tween, we have a way of identifying this tween as merely the one that's setting the beginning values for a "from()" tween. For example, clearProps in CSSPlugin should only get applied at the very END of a tween and without this tag, from(...{height:100, clearProps:"height", delay:1}) would wipe the height at the beginning of the tween and after 1 second, it'd kick back in. + pt.lazy = (immediate && v.lazy !== false); + pt.immediateRender = immediate; //zero-duration tweens render immediately by default, but if we're not specifically instructed to render this tween immediately, we should skip this and merely _init() to record the starting values (rendering them immediately would push them to completion which is wasteful in that case - we'd have to render(-1) immediately after) + this._startAt = TweenLite.to(this.target, 0, pt); + if (!immediate) { + this._startAt._init(); //ensures that the initial values are recorded + this._startAt._enabled(false); //no need to have the tween render on the next cycle. Disable it because we'll always manually control the renders of the _startAt tween. + } else if (this._time === 0) { + return; + } + } + } + if (!ease) { + this._ease = TweenLite.defaultEase; + } else if (ease instanceof Ease) { + this._ease = (v.easeParams instanceof Array) ? ease.config.apply(ease, v.easeParams) : ease; + } else { + this._ease = (typeof(ease) === "function") ? new Ease(ease, v.easeParams) : _easeMap[ease] || TweenLite.defaultEase; + } + this._easeType = this._ease._type; + this._easePower = this._ease._power; + this._firstPT = null; + + if (this._targets) { + i = this._targets.length; + while (--i > -1) { + if ( this._initProps( this._targets[i], (this._propLookup[i] = {}), this._siblings[i], (op ? op[i] : null)) ) { + initPlugins = true; + } + } + } else { + initPlugins = this._initProps(this.target, this._propLookup, this._siblings, op); + } + + if (initPlugins) { + TweenLite._onPluginEvent("_onInitAllProps", this); //reorders the array in order of priority. Uses a static TweenPlugin method in order to minimize file size in TweenLite + } + if (op) if (!this._firstPT) if (typeof(this.target) !== "function") { //if all tweening properties have been overwritten, kill the tween. If the target is a function, it's probably a delayedCall so let it live. + this._enabled(false, false); + } + if (v.runBackwards) { + pt = this._firstPT; + while (pt) { + pt.s += pt.c; + pt.c = -pt.c; + pt = pt._next; + } + } + this._onUpdate = v.onUpdate; + this._initted = true; + }; + + p._initProps = function(target, propLookup, siblings, overwrittenProps) { + var p, i, initPlugins, plugin, pt, v; + if (target == null) { + return false; + } + + if (_lazyLookup[target._gsTweenID]) { + _lazyRender(); //if other tweens of the same target have recently initted but haven't rendered yet, we've got to force the render so that the starting values are correct (imagine populating a timeline with a bunch of sequential tweens and then jumping to the end) + } + + if (!this.vars.css) if (target.style) if (target !== window && target.nodeType) if (_plugins.css) if (this.vars.autoCSS !== false) { //it's so common to use TweenLite/Max to animate the css of DOM elements, we assume that if the target is a DOM element, that's what is intended (a convenience so that users don't have to wrap things in css:{}, although we still recommend it for a slight performance boost and better specificity). Note: we cannot check "nodeType" on the window inside an iframe. + _autoCSS(this.vars, target); + } + for (p in this.vars) { + v = this.vars[p]; + if (_reservedProps[p]) { + if (v) if ((v instanceof Array) || (v.push && _isArray(v))) if (v.join("").indexOf("{self}") !== -1) { + this.vars[p] = v = this._swapSelfInParams(v, this); + } + + } else if (_plugins[p] && (plugin = new _plugins[p]())._onInitTween(target, this.vars[p], this)) { + + //t - target [object] + //p - property [string] + //s - start [number] + //c - change [number] + //f - isFunction [boolean] + //n - name [string] + //pg - isPlugin [boolean] + //pr - priority [number] + this._firstPT = pt = {_next:this._firstPT, t:plugin, p:"setRatio", s:0, c:1, f:true, n:p, pg:true, pr:plugin._priority}; + i = plugin._overwriteProps.length; + while (--i > -1) { + propLookup[plugin._overwriteProps[i]] = this._firstPT; + } + if (plugin._priority || plugin._onInitAllProps) { + initPlugins = true; + } + if (plugin._onDisable || plugin._onEnable) { + this._notifyPluginsOfEnabled = true; + } + + } else { + this._firstPT = propLookup[p] = pt = {_next:this._firstPT, t:target, p:p, f:(typeof(target[p]) === "function"), n:p, pg:false, pr:0}; + pt.s = (!pt.f) ? parseFloat(target[p]) : target[ ((p.indexOf("set") || typeof(target["get" + p.substr(3)]) !== "function") ? p : "get" + p.substr(3)) ](); + pt.c = (typeof(v) === "string" && v.charAt(1) === "=") ? parseInt(v.charAt(0) + "1", 10) * Number(v.substr(2)) : (Number(v) - pt.s) || 0; + } + if (pt) if (pt._next) { + pt._next._prev = pt; + } + } + + if (overwrittenProps) if (this._kill(overwrittenProps, target)) { //another tween may have tried to overwrite properties of this tween before init() was called (like if two tweens start at the same time, the one created second will run first) + return this._initProps(target, propLookup, siblings, overwrittenProps); + } + if (this._overwrite > 1) if (this._firstPT) if (siblings.length > 1) if (_applyOverwrite(target, this, propLookup, this._overwrite, siblings)) { + this._kill(propLookup, target); + return this._initProps(target, propLookup, siblings, overwrittenProps); + } + if (this._firstPT) if ((this.vars.lazy !== false && this._duration) || (this.vars.lazy && !this._duration)) { //zero duration tweens don't lazy render by default; everything else does. + _lazyLookup[target._gsTweenID] = true; + } + return initPlugins; + }; + + p.render = function(time, suppressEvents, force) { + var prevTime = this._time, + duration = this._duration, + prevRawPrevTime = this._rawPrevTime, + isComplete, callback, pt, rawPrevTime; + if (time >= duration) { + this._totalTime = this._time = duration; + this.ratio = this._ease._calcEnd ? this._ease.getRatio(1) : 1; + if (!this._reversed ) { + isComplete = true; + callback = "onComplete"; + } + if (duration === 0) if (this._initted || !this.vars.lazy || force) { //zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. + if (this._startTime === this._timeline._duration) { //if a zero-duration tween is at the VERY end of a timeline and that timeline renders at its end, it will typically add a tiny bit of cushion to the render time to prevent rounding errors from getting in the way of tweens rendering their VERY end. If we then reverse() that timeline, the zero-duration tween will trigger its onReverseComplete even though technically the playhead didn't pass over it again. It's a very specific edge case we must accommodate. + time = 0; + } + if (time === 0 || prevRawPrevTime < 0 || prevRawPrevTime === _tinyNum) if (prevRawPrevTime !== time) { + force = true; + if (prevRawPrevTime > _tinyNum) { + callback = "onReverseComplete"; + } + } + this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + } + + } else if (time < 0.0000001) { //to work around occasional floating point math artifacts, round super small values to 0. + this._totalTime = this._time = 0; + this.ratio = this._ease._calcEnd ? this._ease.getRatio(0) : 0; + if (prevTime !== 0 || (duration === 0 && prevRawPrevTime > 0 && prevRawPrevTime !== _tinyNum)) { + callback = "onReverseComplete"; + isComplete = this._reversed; + } + if (time < 0) { + this._active = false; + if (duration === 0) if (this._initted || !this.vars.lazy || force) { //zero-duration tweens are tricky because we must discern the momentum/direction of time in order to determine whether the starting values should be rendered or the ending values. If the "playhead" of its timeline goes past the zero-duration tween in the forward direction or lands directly on it, the end values should be rendered, but if the timeline's "playhead" moves past it in the backward direction (from a postitive time to a negative time), the starting values must be rendered. + if (prevRawPrevTime >= 0) { + force = true; + } + this._rawPrevTime = rawPrevTime = (!suppressEvents || time || prevRawPrevTime === time) ? time : _tinyNum; //when the playhead arrives at EXACTLY time 0 (right on top) of a zero-duration tween, we need to discern if events are suppressed so that when the playhead moves again (next time), it'll trigger the callback. If events are NOT suppressed, obviously the callback would be triggered in this render. Basically, the callback should fire either when the playhead ARRIVES or LEAVES this exact spot, not both. Imagine doing a timeline.seek(0) and there's a callback that sits at 0. Since events are suppressed on that seek() by default, nothing will fire, but when the playhead moves off of that position, the callback should fire. This behavior is what people intuitively expect. We set the _rawPrevTime to be a precise tiny number to indicate this scenario rather than using another property/variable which would increase memory usage. This technique is less readable, but more efficient. + } + } else if (!this._initted) { //if we render the very beginning (time == 0) of a fromTo(), we must force the render (normal tweens wouldn't need to render at a time of 0 when the prevTime was also 0). This is also mandatory to make sure overwriting kicks in immediately. + force = true; + } + } else { + this._totalTime = this._time = time; + + if (this._easeType) { + var r = time / duration, type = this._easeType, pow = this._easePower; + if (type === 1 || (type === 3 && r >= 0.5)) { + r = 1 - r; + } + if (type === 3) { + r *= 2; + } + if (pow === 1) { + r *= r; + } else if (pow === 2) { + r *= r * r; + } else if (pow === 3) { + r *= r * r * r; + } else if (pow === 4) { + r *= r * r * r * r; + } + + if (type === 1) { + this.ratio = 1 - r; + } else if (type === 2) { + this.ratio = r; + } else if (time / duration < 0.5) { + this.ratio = r / 2; + } else { + this.ratio = 1 - (r / 2); + } + + } else { + this.ratio = this._ease.getRatio(time / duration); + } + } + + if (this._time === prevTime && !force) { + return; + } else if (!this._initted) { + this._init(); + if (!this._initted || this._gc) { //immediateRender tweens typically won't initialize until the playhead advances (_time is greater than 0) in order to ensure that overwriting occurs properly. Also, if all of the tweening properties have been overwritten (which would cause _gc to be true, as set in _init()), we shouldn't continue otherwise an onStart callback could be called for example. + return; + } else if (!force && this._firstPT && ((this.vars.lazy !== false && this._duration) || (this.vars.lazy && !this._duration))) { + this._time = this._totalTime = prevTime; + this._rawPrevTime = prevRawPrevTime; + _lazyTweens.push(this); + this._lazy = time; + return; + } + //_ease is initially set to defaultEase, so now that init() has run, _ease is set properly and we need to recalculate the ratio. Overall this is faster than using conditional logic earlier in the method to avoid having to set ratio twice because we only init() once but renderTime() gets called VERY frequently. + if (this._time && !isComplete) { + this.ratio = this._ease.getRatio(this._time / duration); + } else if (isComplete && this._ease._calcEnd) { + this.ratio = this._ease.getRatio((this._time === 0) ? 0 : 1); + } + } + if (this._lazy !== false) { //in case a lazy render is pending, we should flush it because the new render is occuring now (imagine a lazy tween instantiating and then immediately the user calls tween.seek(tween.duration()), skipping to the end - the end render would be forced, and then if we didn't flush the lazy render, it'd fire AFTER the seek(), rendering it at the wrong time. + this._lazy = false; + } + if (!this._active) if (!this._paused && this._time !== prevTime && time >= 0) { + this._active = true; //so that if the user renders a tween (as opposed to the timeline rendering it), the timeline is forced to re-render and align it with the proper time/frame on the next rendering cycle. Maybe the tween already finished but the user manually re-renders it as halfway done. + } + if (prevTime === 0) { + if (this._startAt) { + if (time >= 0) { + this._startAt.render(time, suppressEvents, force); + } else if (!callback) { + callback = "_dummyGS"; //if no callback is defined, use a dummy value just so that the condition at the end evaluates as true because _startAt should render AFTER the normal render loop when the time is negative. We could handle this in a more intuitive way, of course, but the render loop is the MOST important thing to optimize, so this technique allows us to avoid adding extra conditional logic in a high-frequency area. + } + } + if (this.vars.onStart) if (this._time !== 0 || duration === 0) if (!suppressEvents) { + this.vars.onStart.apply(this.vars.onStartScope || this, this.vars.onStartParams || _blankArray); + } + } + + pt = this._firstPT; + while (pt) { + if (pt.f) { + pt.t[pt.p](pt.c * this.ratio + pt.s); + } else { + pt.t[pt.p] = pt.c * this.ratio + pt.s; + } + pt = pt._next; + } + + if (this._onUpdate) { + if (time < 0) if (this._startAt && this._startTime) { //if the tween is positioned at the VERY beginning (_startTime 0) of its parent timeline, it's illegal for the playhead to go back further, so we should not render the recorded startAt values. + this._startAt.render(time, suppressEvents, force); //note: for performance reasons, we tuck this conditional logic inside less traveled areas (most tweens don't have an onUpdate). We'd just have it at the end before the onComplete, but the values should be updated before any onUpdate is called, so we ALSO put it here and then if it's not called, we do so later near the onComplete. + } + if (!suppressEvents) if (this._time !== prevTime || isComplete) { + this._onUpdate.apply(this.vars.onUpdateScope || this, this.vars.onUpdateParams || _blankArray); + } + } + + if (callback) if (!this._gc) { //check _gc because there's a chance that kill() could be called in an onUpdate + if (time < 0 && this._startAt && !this._onUpdate && this._startTime) { //if the tween is positioned at the VERY beginning (_startTime 0) of its parent timeline, it's illegal for the playhead to go back further, so we should not render the recorded startAt values. + this._startAt.render(time, suppressEvents, force); + } + if (isComplete) { + if (this._timeline.autoRemoveChildren) { + this._enabled(false, false); + } + this._active = false; + } + if (!suppressEvents && this.vars[callback]) { + this.vars[callback].apply(this.vars[callback + "Scope"] || this, this.vars[callback + "Params"] || _blankArray); + } + if (duration === 0 && this._rawPrevTime === _tinyNum && rawPrevTime !== _tinyNum) { //the onComplete or onReverseComplete could trigger movement of the playhead and for zero-duration tweens (which must discern direction) that land directly back on their start time, we don't want to fire again on the next render. Think of several addPause()'s in a timeline that forces the playhead to a certain spot, but what if it's already paused and another tween is tweening the "time" of the timeline? Each time it moves [forward] past that spot, it would move back, and since suppressEvents is true, it'd reset _rawPrevTime to _tinyNum so that when it begins again, the callback would fire (so ultimately it could bounce back and forth during that tween). Again, this is a very uncommon scenario, but possible nonetheless. + this._rawPrevTime = 0; + } + } + + }; + + p._kill = function(vars, target) { + if (vars === "all") { + vars = null; + } + if (vars == null) if (target == null || target === this.target) { + this._lazy = false; + return this._enabled(false, false); + } + target = (typeof(target) !== "string") ? (target || this._targets || this.target) : TweenLite.selector(target) || target; + var i, overwrittenProps, p, pt, propLookup, changed, killProps, record; + if ((_isArray(target) || _isSelector(target)) && typeof(target[0]) !== "number") { + i = target.length; + while (--i > -1) { + if (this._kill(vars, target[i])) { + changed = true; + } + } + } else { + if (this._targets) { + i = this._targets.length; + while (--i > -1) { + if (target === this._targets[i]) { + propLookup = this._propLookup[i] || {}; + this._overwrittenProps = this._overwrittenProps || []; + overwrittenProps = this._overwrittenProps[i] = vars ? this._overwrittenProps[i] || {} : "all"; + break; + } + } + } else if (target !== this.target) { + return false; + } else { + propLookup = this._propLookup; + overwrittenProps = this._overwrittenProps = vars ? this._overwrittenProps || {} : "all"; + } + + if (propLookup) { + killProps = vars || propLookup; + record = (vars !== overwrittenProps && overwrittenProps !== "all" && vars !== propLookup && (typeof(vars) !== "object" || !vars._tempKill)); //_tempKill is a super-secret way to delete a particular tweening property but NOT have it remembered as an official overwritten property (like in BezierPlugin) + for (p in killProps) { + if ((pt = propLookup[p])) { + if (pt.pg && pt.t._kill(killProps)) { + changed = true; //some plugins need to be notified so they can perform cleanup tasks first + } + if (!pt.pg || pt.t._overwriteProps.length === 0) { + if (pt._prev) { + pt._prev._next = pt._next; + } else if (pt === this._firstPT) { + this._firstPT = pt._next; + } + if (pt._next) { + pt._next._prev = pt._prev; + } + pt._next = pt._prev = null; + } + delete propLookup[p]; + } + if (record) { + overwrittenProps[p] = 1; + } + } + if (!this._firstPT && this._initted) { //if all tweening properties are killed, kill the tween. Without this line, if there's a tween with multiple targets and then you killTweensOf() each target individually, the tween would technically still remain active and fire its onComplete even though there aren't any more properties tweening. + this._enabled(false, false); + } + } + } + return changed; + }; + + p.invalidate = function() { + if (this._notifyPluginsOfEnabled) { + TweenLite._onPluginEvent("_onDisable", this); + } + this._firstPT = null; + this._overwrittenProps = null; + this._onUpdate = null; + this._startAt = null; + this._initted = this._active = this._notifyPluginsOfEnabled = this._lazy = false; + this._propLookup = (this._targets) ? {} : []; + return this; + }; + + p._enabled = function(enabled, ignoreTimeline) { + if (!_tickerActive) { + _ticker.wake(); + } + if (enabled && this._gc) { + var targets = this._targets, + i; + if (targets) { + i = targets.length; + while (--i > -1) { + this._siblings[i] = _register(targets[i], this, true); + } + } else { + this._siblings = _register(this.target, this, true); + } + } + Animation.prototype._enabled.call(this, enabled, ignoreTimeline); + if (this._notifyPluginsOfEnabled) if (this._firstPT) { + return TweenLite._onPluginEvent((enabled ? "_onEnable" : "_onDisable"), this); + } + return false; + }; + + +//----TweenLite static methods ----------------------------------------------------- + + TweenLite.to = function(target, duration, vars) { + return new TweenLite(target, duration, vars); + }; + + TweenLite.from = function(target, duration, vars) { + vars.runBackwards = true; + vars.immediateRender = (vars.immediateRender != false); + return new TweenLite(target, duration, vars); + }; + + TweenLite.fromTo = function(target, duration, fromVars, toVars) { + toVars.startAt = fromVars; + toVars.immediateRender = (toVars.immediateRender != false && fromVars.immediateRender != false); + return new TweenLite(target, duration, toVars); + }; + + TweenLite.delayedCall = function(delay, callback, params, scope, useFrames) { + return new TweenLite(callback, 0, {delay:delay, onComplete:callback, onCompleteParams:params, onCompleteScope:scope, onReverseComplete:callback, onReverseCompleteParams:params, onReverseCompleteScope:scope, immediateRender:false, useFrames:useFrames, overwrite:0}); + }; + + TweenLite.set = function(target, vars) { + return new TweenLite(target, 0, vars); + }; + + TweenLite.getTweensOf = function(target, onlyActive) { + if (target == null) { return []; } + target = (typeof(target) !== "string") ? target : TweenLite.selector(target) || target; + var i, a, j, t; + if ((_isArray(target) || _isSelector(target)) && typeof(target[0]) !== "number") { + i = target.length; + a = []; + while (--i > -1) { + a = a.concat(TweenLite.getTweensOf(target[i], onlyActive)); + } + i = a.length; + //now get rid of any duplicates (tweens of arrays of objects could cause duplicates) + while (--i > -1) { + t = a[i]; + j = i; + while (--j > -1) { + if (t === a[j]) { + a.splice(i, 1); + } + } + } + } else { + a = _register(target).concat(); + i = a.length; + while (--i > -1) { + if (a[i]._gc || (onlyActive && !a[i].isActive())) { + a.splice(i, 1); + } + } + } + return a; + }; + + TweenLite.killTweensOf = TweenLite.killDelayedCallsTo = function(target, onlyActive, vars) { + if (typeof(onlyActive) === "object") { + vars = onlyActive; //for backwards compatibility (before "onlyActive" parameter was inserted) + onlyActive = false; + } + var a = TweenLite.getTweensOf(target, onlyActive), + i = a.length; + while (--i > -1) { + a[i]._kill(vars, target); + } + }; + + + +/* + * ---------------------------------------------------------------- + * TweenPlugin (could easily be split out as a separate file/class, but included for ease of use (so that people don't need to include another - * - * - * - * - * - * @param {!string} ns The namespace of the class definition, leaving off "com.greensock." as that's assumed. For example, "TweenLite" or "plugins.CSSPlugin" or "easing.Back". - * @param {!Array.} dependencies An array of dependencies (described as their namespaces minus "com.greensock." prefix). For example ["TweenLite","plugins.TweenPlugin","core.Animation"] - * @param {!function():Object} func The function that should be called and passed the resolved dependencies which will return the actual class for this definition. - * @param {boolean=} global If true, the class will be added to the global scope (typically window unless you define a window.GreenSockGlobals object) - */ - Definition = function(ns, dependencies, func, global) { - this.sc = (_defLookup[ns]) ? _defLookup[ns].sc : []; //subclasses - _defLookup[ns] = this; - this.gsClass = null; - this.func = func; - var _classes = []; - this.check = function(init) { - var i = dependencies.length, - missing = i, - cur, a, n, cl; - while (--i > -1) { - if ((cur = _defLookup[dependencies[i]] || new Definition(dependencies[i], [])).gsClass) { - _classes[i] = cur.gsClass; - missing--; - } else if (init) { - cur.sc.push(this); - } - } - if (missing === 0 && func) { - a = ("com.greensock." + ns).split("."); - n = a.pop(); - cl = _namespace(a.join("."))[n] = this.gsClass = func.apply(func, _classes); - - //exports to multiple environments - if (global) { - _globals[n] = cl; //provides a way to avoid global namespace pollution. By default, the main classes like TweenLite, Power1, Strong, etc. are added to window unless a GreenSockGlobals is defined. So if you want to have things added to a custom object instead, just do something like window.GreenSockGlobals = {} before loading any GreenSock files. You can even set up an alias like window.GreenSockGlobals = windows.gs = {} so that you can access everything like gs.TweenLite. Also remember that ALL classes are added to the window.com.greensock object (in their respective packages, like com.greensock.easing.Power1, com.greensock.TweenLite, etc.) - if (typeof(define) === "function" && define.amd){ //AMD - define((window.GreenSockAMDPath ? window.GreenSockAMDPath + "/" : "") + ns.split(".").join("/"), [], function() { return cl; }); - } else if (typeof(module) !== "undefined" && module.exports){ //node - module.exports = cl; - } - } - for (i = 0; i < this.sc.length; i++) { - this.sc[i].check(); - } - } - }; - this.check(true); - }, - - //used to create Definition instances (which basically registers a class that has dependencies). - _gsDefine = window._gsDefine = function(ns, dependencies, func, global) { - return new Definition(ns, dependencies, func, global); - }, - - //a quick way to create a class that doesn't have any dependencies. Returns the class, but first registers it in the GreenSock namespace so that other classes can grab it (other classes might be dependent on the class). - _class = gs._class = function(ns, func, global) { - func = func || function() {}; - _gsDefine(ns, [], function(){ return func; }, global); - return func; - }; - - _gsDefine.globals = _globals; - - - -/* - * ---------------------------------------------------------------- - * Ease - * ---------------------------------------------------------------- - */ - var _baseParams = [0, 0, 1, 1], - _blankArray = [], - Ease = _class("easing.Ease", function(func, extraParams, type, power) { - this._func = func; - this._type = type || 0; - this._power = power || 0; - this._params = extraParams ? _baseParams.concat(extraParams) : _baseParams; - }, true), - _easeMap = Ease.map = {}, - _easeReg = Ease.register = function(ease, names, types, create) { - var na = names.split(","), - i = na.length, - ta = (types || "easeIn,easeOut,easeInOut").split(","), - e, name, j, type; - while (--i > -1) { - name = na[i]; - e = create ? _class("easing."+name, null, true) : gs.easing[name] || {}; - j = ta.length; - while (--j > -1) { - type = ta[j]; - _easeMap[name + "." + type] = _easeMap[type + name] = e[type] = ease.getRatio ? ease : ease[type] || new ease(); - } - } - }; - - p = Ease.prototype; - p._calcEnd = false; - p.getRatio = function(p) { - if (this._func) { - this._params[0] = p; - return this._func.apply(null, this._params); - } - var t = this._type, - pw = this._power, - r = (t === 1) ? 1 - p : (t === 2) ? p : (p < 0.5) ? p * 2 : (1 - p) * 2; - if (pw === 1) { - r *= r; - } else if (pw === 2) { - r *= r * r; - } else if (pw === 3) { - r *= r * r * r; - } else if (pw === 4) { - r *= r * r * r * r; - } - return (t === 1) ? 1 - r : (t === 2) ? r : (p < 0.5) ? r / 2 : 1 - (r / 2); - }; - - //create all the standard eases like Linear, Quad, Cubic, Quart, Quint, Strong, Power0, Power1, Power2, Power3, and Power4 (each with easeIn, easeOut, and easeInOut) - a = ["Linear","Quad","Cubic","Quart","Quint,Strong"]; - i = a.length; - while (--i > -1) { - p = a[i]+",Power"+i; - _easeReg(new Ease(null,null,1,i), p, "easeOut", true); - _easeReg(new Ease(null,null,2,i), p, "easeIn" + ((i === 0) ? ",easeNone" : "")); - _easeReg(new Ease(null,null,3,i), p, "easeInOut"); - } - _easeMap.linear = gs.easing.Linear.easeIn; - _easeMap.swing = gs.easing.Quad.easeInOut; //for jQuery folks - - -/* - * ---------------------------------------------------------------- - * EventDispatcher - * ---------------------------------------------------------------- - */ - var EventDispatcher = _class("events.EventDispatcher", function(target) { - this._listeners = {}; - this._eventTarget = target || this; - }); - p = EventDispatcher.prototype; - - p.addEventListener = function(type, callback, scope, useParam, priority) { - priority = priority || 0; - var list = this._listeners[type], - index = 0, - listener, i; - if (list == null) { - this._listeners[type] = list = []; - } - i = list.length; - while (--i > -1) { - listener = list[i]; - if (listener.c === callback && listener.s === scope) { - list.splice(i, 1); - } else if (index === 0 && listener.pr < priority) { - index = i + 1; - } - } - list.splice(index, 0, {c:callback, s:scope, up:useParam, pr:priority}); - if (this === _ticker && !_tickerActive) { - _ticker.wake(); - } - }; - - p.removeEventListener = function(type, callback) { - var list = this._listeners[type], i; - if (list) { - i = list.length; - while (--i > -1) { - if (list[i].c === callback) { - list.splice(i, 1); - return; - } - } - } - }; - - p.dispatchEvent = function(type) { - var list = this._listeners[type], - i, t, listener; - if (list) { - i = list.length; - t = this._eventTarget; - while (--i > -1) { - listener = list[i]; - if (listener.up) { - listener.c.call(listener.s || t, {type:type, target:t}); - } else { - listener.c.call(listener.s || t); - } - } - } - }; - - -/* - * ---------------------------------------------------------------- - * Ticker - * ---------------------------------------------------------------- - */ - var _reqAnimFrame = window.requestAnimationFrame, - _cancelAnimFrame = window.cancelAnimationFrame, - _getTime = Date.now || function() {return new Date().getTime();}, - _lastUpdate = _getTime(); - - //now try to determine the requestAnimationFrame and cancelAnimationFrame functions and if none are found, we'll use a setTimeout()/clearTimeout() polyfill. - a = ["ms","moz","webkit","o"]; - i = a.length; - while (--i > -1 && !_reqAnimFrame) { - _reqAnimFrame = window[a[i] + "RequestAnimationFrame"]; - _cancelAnimFrame = window[a[i] + "CancelAnimationFrame"] || window[a[i] + "CancelRequestAnimationFrame"]; - } - - _class("Ticker", function(fps, useRAF) { - var _self = this, - _startTime = _getTime(), - _useRAF = (useRAF !== false && _reqAnimFrame), - _lagThreshold = 500, - _adjustedLag = 33, - _fps, _req, _id, _gap, _nextTime, - _tick = function(manual) { - var elapsed = _getTime() - _lastUpdate, - overlap, dispatch; - if (elapsed > _lagThreshold) { - _startTime += elapsed - _adjustedLag; - } - _lastUpdate += elapsed; - _self.time = (_lastUpdate - _startTime) / 1000; - overlap = _self.time - _nextTime; - if (!_fps || overlap > 0 || manual === true) { - _self.frame++; - _nextTime += overlap + (overlap >= _gap ? 0.004 : _gap - overlap); - dispatch = true; - } - if (manual !== true) { //make sure the request is made before we dispatch the "tick" event so that timing is maintained. Otherwise, if processing the "tick" requires a bunch of time (like 15ms) and we're using a setTimeout() that's based on 16.7ms, it'd technically take 31.7ms between frames otherwise. - _id = _req(_tick); - } - if (dispatch) { - _self.dispatchEvent("tick"); - } - }; - - EventDispatcher.call(_self); - _self.time = _self.frame = 0; - _self.tick = function() { - _tick(true); - }; - - _self.lagSmoothing = function(threshold, adjustedLag) { - _lagThreshold = threshold || (1 / _tinyNum); //zero should be interpreted as basically unlimited - _adjustedLag = Math.min(adjustedLag, _lagThreshold, 0); - }; - - _self.sleep = function() { - if (_id == null) { - return; - } - if (!_useRAF || !_cancelAnimFrame) { - clearTimeout(_id); - } else { - _cancelAnimFrame(_id); - } - _req = _emptyFunc; - _id = null; - if (_self === _ticker) { - _tickerActive = false; - } - }; - - _self.wake = function() { - if (_id !== null) { - _self.sleep(); - } else if (_self.frame > 10) { //don't trigger lagSmoothing if we're just waking up, and make sure that at least 10 frames have elapsed because of the iOS bug that we work around below with the 1.5-second setTimout(). - _lastUpdate = _getTime() - _lagThreshold + 5; - } - _req = (_fps === 0) ? _emptyFunc : (!_useRAF || !_reqAnimFrame) ? function(f) { return setTimeout(f, ((_nextTime - _self.time) * 1000 + 1) | 0); } : _reqAnimFrame; - if (_self === _ticker) { - _tickerActive = true; - } - _tick(2); - }; - - _self.fps = function(value) { - if (!arguments.length) { - return _fps; - } - _fps = value; - _gap = 1 / (_fps || 60); - _nextTime = this.time + _gap; - _self.wake(); - }; - - _self.useRAF = function(value) { - if (!arguments.length) { - return _useRAF; - } - _self.sleep(); - _useRAF = value; - _self.fps(_fps); - }; - _self.fps(fps); - - //a bug in iOS 6 Safari occasionally prevents the requestAnimationFrame from working initially, so we use a 1.5-second timeout that automatically falls back to setTimeout() if it senses this condition. - setTimeout(function() { - if (_useRAF && (!_id || _self.frame < 5)) { - _self.useRAF(false); - } - }, 1500); - }); - - p = gs.Ticker.prototype = new gs.events.EventDispatcher(); - p.constructor = gs.Ticker; - - -/* - * ---------------------------------------------------------------- - * Animation - * ---------------------------------------------------------------- - */ - var Animation = _class("core.Animation", function(duration, vars) { - this.vars = vars = vars || {}; - this._duration = this._totalDuration = duration || 0; - this._delay = Number(vars.delay) || 0; - this._timeScale = 1; - this._active = (vars.immediateRender === true); - this.data = vars.data; - this._reversed = (vars.reversed === true); - - if (!_rootTimeline) { - return; - } - if (!_tickerActive) { //some browsers (like iOS 6 Safari) shut down JavaScript execution when the tab is disabled and they [occasionally] neglect to start up requestAnimationFrame again when returning - this code ensures that the engine starts up again properly. - _ticker.wake(); - } - - var tl = this.vars.useFrames ? _rootFramesTimeline : _rootTimeline; - tl.add(this, tl._time); - - if (this.vars.paused) { - this.paused(true); - } - }); - - _ticker = Animation.ticker = new gs.Ticker(); - p = Animation.prototype; - p._dirty = p._gc = p._initted = p._paused = false; - p._totalTime = p._time = 0; - p._rawPrevTime = -1; - p._next = p._last = p._onUpdate = p._timeline = p.timeline = null; - p._paused = false; - - - //some browsers (like iOS) occasionally drop the requestAnimationFrame event when the user switches to a different tab and then comes back again, so we use a 2-second setTimeout() to sense if/when that condition occurs and then wake() the ticker. - var _checkTimeout = function() { - if (_tickerActive && _getTime() - _lastUpdate > 2000) { - _ticker.wake(); - } - setTimeout(_checkTimeout, 2000); - }; - _checkTimeout(); - - - p.play = function(from, suppressEvents) { - if (from != null) { - this.seek(from, suppressEvents); - } - return this.reversed(false).paused(false); - }; - - p.pause = function(atTime, suppressEvents) { - if (atTime != null) { - this.seek(atTime, suppressEvents); - } - return this.paused(true); - }; - - p.resume = function(from, suppressEvents) { - if (from != null) { - this.seek(from, suppressEvents); - } - return this.paused(false); - }; - - p.seek = function(time, suppressEvents) { - return this.totalTime(Number(time), suppressEvents !== false); - }; - - p.restart = function(includeDelay, suppressEvents) { - return this.reversed(false).paused(false).totalTime(includeDelay ? -this._delay : 0, (suppressEvents !== false), true); - }; - - p.reverse = function(from, suppressEvents) { - if (from != null) { - this.seek((from || this.totalDuration()), suppressEvents); - } - return this.reversed(true).paused(false); - }; - - p.render = function(time, suppressEvents, force) { - //stub - we override this method in subclasses. - }; - - p.invalidate = function() { - return this; - }; - - p.isActive = function() { - var tl = this._timeline, //the 2 root timelines won't have a _timeline; they're always active. - startTime = this._startTime, - rawTime; - return (!tl || (!this._gc && !this._paused && tl.isActive() && (rawTime = tl.rawTime()) >= startTime && rawTime < startTime + this.totalDuration() / this._timeScale)); - }; - - p._enabled = function (enabled, ignoreTimeline) { - if (!_tickerActive) { - _ticker.wake(); - } - this._gc = !enabled; - this._active = this.isActive(); - if (ignoreTimeline !== true) { - if (enabled && !this.timeline) { - this._timeline.add(this, this._startTime - this._delay); - } else if (!enabled && this.timeline) { - this._timeline._remove(this, true); - } - } - return false; - }; - - - p._kill = function(vars, target) { - return this._enabled(false, false); - }; - - p.kill = function(vars, target) { - this._kill(vars, target); - return this; - }; - - p._uncache = function(includeSelf) { - var tween = includeSelf ? this : this.timeline; - while (tween) { - tween._dirty = true; - tween = tween.timeline; - } - return this; - }; - - p._swapSelfInParams = function(params) { - var i = params.length, - copy = params.concat(); - while (--i > -1) { - if (params[i] === "{self}") { - copy[i] = this; - } - } - return copy; - }; - -//----Animation getters/setters -------------------------------------------------------- - - p.eventCallback = function(type, callback, params, scope) { - if ((type || "").substr(0,2) === "on") { - var v = this.vars; - if (arguments.length === 1) { - return v[type]; - } - if (callback == null) { - delete v[type]; - } else { - v[type] = callback; - v[type + "Params"] = (_isArray(params) && params.join("").indexOf("{self}") !== -1) ? this._swapSelfInParams(params) : params; - v[type + "Scope"] = scope; - } - if (type === "onUpdate") { - this._onUpdate = callback; - } - } - return this; - }; - - p.delay = function(value) { - if (!arguments.length) { - return this._delay; - } - if (this._timeline.smoothChildTiming) { - this.startTime( this._startTime + value - this._delay ); - } - this._delay = value; - return this; - }; - - p.duration = function(value) { - if (!arguments.length) { - this._dirty = false; - return this._duration; - } - this._duration = this._totalDuration = value; - this._uncache(true); //true in case it's a TweenMax or TimelineMax that has a repeat - we'll need to refresh the totalDuration. - if (this._timeline.smoothChildTiming) if (this._time > 0) if (this._time < this._duration) if (value !== 0) { - this.totalTime(this._totalTime * (value / this._duration), true); - } - return this; - }; - - p.totalDuration = function(value) { - this._dirty = false; - return (!arguments.length) ? this._totalDuration : this.duration(value); - }; - - p.time = function(value, suppressEvents) { - if (!arguments.length) { - return this._time; - } - if (this._dirty) { - this.totalDuration(); - } - return this.totalTime((value > this._duration) ? this._duration : value, suppressEvents); - }; - - p.totalTime = function(time, suppressEvents, uncapped) { - if (!_tickerActive) { - _ticker.wake(); - } - if (!arguments.length) { - return this._totalTime; - } - if (this._timeline) { - if (time < 0 && !uncapped) { - time += this.totalDuration(); - } - if (this._timeline.smoothChildTiming) { - if (this._dirty) { - this.totalDuration(); - } - var totalDuration = this._totalDuration, - tl = this._timeline; - if (time > totalDuration && !uncapped) { - time = totalDuration; - } - this._startTime = (this._paused ? this._pauseTime : tl._time) - ((!this._reversed ? time : totalDuration - time) / this._timeScale); - if (!tl._dirty) { //for performance improvement. If the parent's cache is already dirty, it already took care of marking the ancestors as dirty too, so skip the function call here. - this._uncache(false); - } - //in case any of the ancestor timelines had completed but should now be enabled, we should reset their totalTime() which will also ensure that they're lined up properly and enabled. Skip for animations that are on the root (wasteful). Example: a TimelineLite.exportRoot() is performed when there's a paused tween on the root, the export will not complete until that tween is unpaused, but imagine a child gets restarted later, after all [unpaused] tweens have completed. The startTime of that child would get pushed out, but one of the ancestors may have completed. - if (tl._timeline) { - while (tl._timeline) { - if (tl._timeline._time !== (tl._startTime + tl._totalTime) / tl._timeScale) { - tl.totalTime(tl._totalTime, true); - } - tl = tl._timeline; - } - } - } - if (this._gc) { - this._enabled(true, false); - } - if (this._totalTime !== time || this._duration === 0) { - this.render(time, suppressEvents, false); - if (_lazyTweens.length) { //in case rendering caused any tweens to lazy-init, we should render them because typically when someone calls seek() or time() or progress(), they expect an immediate render. - _lazyRender(); - } - } - } - return this; - }; - - p.progress = p.totalProgress = function(value, suppressEvents) { - return (!arguments.length) ? this._time / this.duration() : this.totalTime(this.duration() * value, suppressEvents); - }; - - p.startTime = function(value) { - if (!arguments.length) { - return this._startTime; - } - if (value !== this._startTime) { - this._startTime = value; - if (this.timeline) if (this.timeline._sortChildren) { - this.timeline.add(this, value - this._delay); //ensures that any necessary re-sequencing of Animations in the timeline occurs to make sure the rendering order is correct. - } - } - return this; - }; - - p.timeScale = function(value) { - if (!arguments.length) { - return this._timeScale; - } - value = value || _tinyNum; //can't allow zero because it'll throw the math off - if (this._timeline && this._timeline.smoothChildTiming) { - var pauseTime = this._pauseTime, - t = (pauseTime || pauseTime === 0) ? pauseTime : this._timeline.totalTime(); - this._startTime = t - ((t - this._startTime) * this._timeScale / value); - } - this._timeScale = value; - return this._uncache(false); - }; - - p.reversed = function(value) { - if (!arguments.length) { - return this._reversed; - } - if (value != this._reversed) { - this._reversed = value; - this.totalTime(((this._timeline && !this._timeline.smoothChildTiming) ? this.totalDuration() - this._totalTime : this._totalTime), true); - } - return this; - }; - - p.paused = function(value) { - if (!arguments.length) { - return this._paused; - } - if (value != this._paused) if (this._timeline) { - if (!_tickerActive && !value) { - _ticker.wake(); - } - var tl = this._timeline, - raw = tl.rawTime(), - elapsed = raw - this._pauseTime; - if (!value && tl.smoothChildTiming) { - this._startTime += elapsed; - this._uncache(false); - } - this._pauseTime = value ? raw : null; - this._paused = value; - this._active = this.isActive(); - if (!value && elapsed !== 0 && this._initted && this.duration()) { - this.render((tl.smoothChildTiming ? this._totalTime : (raw - this._startTime) / this._timeScale), true, true); //in case the target's properties changed via some other tween or manual update by the user, we should force a render. - } - } - if (this._gc && !value) { - this._enabled(true, false); - } - return this; - }; - - -/* - * ---------------------------------------------------------------- - * SimpleTimeline - * ---------------------------------------------------------------- - */ - var SimpleTimeline = _class("core.SimpleTimeline", function(vars) { - Animation.call(this, 0, vars); - this.autoRemoveChildren = this.smoothChildTiming = true; - }); - - p = SimpleTimeline.prototype = new Animation(); - p.constructor = SimpleTimeline; - p.kill()._gc = false; - p._first = p._last = null; - p._sortChildren = false; - - p.add = p.insert = function(child, position, align, stagger) { - var prevTween, st; - child._startTime = Number(position || 0) + child._delay; - if (child._paused) if (this !== child._timeline) { //we only adjust the _pauseTime if it wasn't in this timeline already. Remember, sometimes a tween will be inserted again into the same timeline when its startTime is changed so that the tweens in the TimelineLite/Max are re-ordered properly in the linked list (so everything renders in the proper order). - child._pauseTime = child._startTime + ((this.rawTime() - child._startTime) / child._timeScale); - } - if (child.timeline) { - child.timeline._remove(child, true); //removes from existing timeline so that it can be properly added to this one. - } - child.timeline = child._timeline = this; - if (child._gc) { - child._enabled(true, true); - } - prevTween = this._last; - if (this._sortChildren) { - st = child._startTime; - while (prevTween && prevTween._startTime > st) { - prevTween = prevTween._prev; - } - } - if (prevTween) { - child._next = prevTween._next; - prevTween._next = child; - } else { - child._next = this._first; - this._first = child; - } - if (child._next) { - child._next._prev = child; - } else { - this._last = child; - } - child._prev = prevTween; - if (this._timeline) { - this._uncache(true); - } - return this; - }; - - p._remove = function(tween, skipDisable) { - if (tween.timeline === this) { - if (!skipDisable) { - tween._enabled(false, true); - } - tween.timeline = null; - - if (tween._prev) { - tween._prev._next = tween._next; - } else if (this._first === tween) { - this._first = tween._next; - } - if (tween._next) { - tween._next._prev = tween._prev; - } else if (this._last === tween) { - this._last = tween._prev; - } - - if (this._timeline) { - this._uncache(true); - } - } - return this; - }; - - p.render = function(time, suppressEvents, force) { - var tween = this._first, - next; - this._totalTime = this._time = this._rawPrevTime = time; - while (tween) { - next = tween._next; //record it here because the value could change after rendering... - if (tween._active || (time >= tween._startTime && !tween._paused)) { - if (!tween._reversed) { - tween.render((time - tween._startTime) * tween._timeScale, suppressEvents, force); - } else { - tween.render(((!tween._dirty) ? tween._totalDuration : tween.totalDuration()) - ((time - tween._startTime) * tween._timeScale), suppressEvents, force); - } - } - tween = next; - } - }; - - p.rawTime = function() { - if (!_tickerActive) { - _ticker.wake(); - } - return this._totalTime; - }; - -/* - * ---------------------------------------------------------------- - * TweenLite - * ---------------------------------------------------------------- - */ - var TweenLite = _class("TweenLite", function(target, duration, vars) { - Animation.call(this, duration, vars); - this.render = TweenLite.prototype.render; //speed optimization (avoid prototype lookup on this "hot" method) - - if (target == null) { - throw "Cannot tween a null target."; - } - - this.target = target = (typeof(target) !== "string") ? target : TweenLite.selector(target) || target; - - var isSelector = (target.jquery || (target.length && target !== window && target[0] && (target[0] === window || (target[0].nodeType && target[0].style && !target.nodeType)))), - overwrite = this.vars.overwrite, - i, targ, targets; - - this._overwrite = overwrite = (overwrite == null) ? _overwriteLookup[TweenLite.defaultOverwrite] : (typeof(overwrite) === "number") ? overwrite >> 0 : _overwriteLookup[overwrite]; - - if ((isSelector || target instanceof Array || (target.push && _isArray(target))) && typeof(target[0]) !== "number") { - this._targets = targets = _slice.call(target, 0); - this._propLookup = []; - this._siblings = []; - for (i = 0; i < targets.length; i++) { - targ = targets[i]; - if (!targ) { - targets.splice(i--, 1); - continue; - } else if (typeof(targ) === "string") { - targ = targets[i--] = TweenLite.selector(targ); //in case it's an array of strings - if (typeof(targ) === "string") { - targets.splice(i+1, 1); //to avoid an endless loop (can't imagine why the selector would return a string, but just in case) - } - continue; - } else if (targ.length && targ !== window && targ[0] && (targ[0] === window || (targ[0].nodeType && targ[0].style && !targ.nodeType))) { //in case the user is passing in an array of selector objects (like jQuery objects), we need to check one more level and pull things out if necessary. Also note that - - -
    - -
    -
    -
    -
    -
    -
    -
    - You do not have access to any application or function in ECOMP - Portal. -
    -
    -
    - -
    -
      -
    • -
      -
      - -

      {{item.headerText | - elipsis: 14}}

      -
      -
      -
      -
      -
      -
      - -

      Select applications...

      - -
      -
      - -
      -
      -
    • -
    -
    - -
    - -
    -