/* * Copyright © 2016-2017 The Thingsboard Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import Flow from '@flowjs/ng-flow/dist/ng-flow-standalone.min'; import UrlHandler from './url.handler'; /*@ngInject*/ export default function AppRun($rootScope, $window, $injector, $location, $log, $state, $mdDialog, $filter, loginService, userService, $translate) { $window.Flow = Flow; var frame = $window.frameElement; var unauthorizedDialog = null; var forbiddenDialog = null; $rootScope.iframeMode = false; if (frame) { $rootScope.iframeMode = true; var dataWidgetAttr = angular.element(frame).attr('data-widget'); if (dataWidgetAttr) { $rootScope.editWidgetInfo = angular.fromJson(dataWidgetAttr); $rootScope.widgetEditMode = true; } } initWatchers(); function initWatchers() { $rootScope.unauthenticatedHandle = $rootScope.$on('unauthenticated', function (event, doLogout) { if (doLogout) { $state.go('login'); } else { UrlHandler($injector, $location); } }); $rootScope.authenticatedHandle = $rootScope.$on('authenticated', function () { UrlHandler($injector, $location); }); $rootScope.forbiddenHandle = $rootScope.$on('forbidden', function () { showForbiddenDialog(); }); $rootScope.stateChangeStartHandle = $rootScope.$on('$stateChangeStart', function (evt, to, params) { if (userService.isUserLoaded() === true) { if (userService.isAuthenticated()) { if (userService.forceDefaultPlace(to, params)) { evt.preventDefault(); gotoDefaultPlace(params); } else { var authority = userService.getAuthority(); if (to.module === 'public') { evt.preventDefault(); gotoDefaultPlace(params); } else if (angular.isDefined(to.auth) && to.auth.indexOf(authority) === -1) { evt.preventDefault(); showForbiddenDialog(); } else if (to.redirectTo) { evt.preventDefault(); $state.go(to.redirectTo, params) } } } else { if (to.module === 'private') { evt.preventDefault(); if (to.url === '/home' || to.url === '/') { $state.go('login', params); } else { showUnauthorizedDialog(); } } } } else { evt.preventDefault(); if ($rootScope.userLoadedHandle) { $rootScope.userLoadedHandle(); } $rootScope.userLoadedHandle = $rootScope.$on('userLoaded', function () { $rootScope.userLoadedHandle(); $state.go(to.name, params); }); } }) $rootScope.pageTitle = 'Thingsboard'; $rootScope.stateChangeSuccessHandle = $rootScope.$on('$stateChangeSuccess', function (evt, to) { if (angular.isDefined(to.data.pageTitle)) { $translate(to.data.pageTitle).then(function (translation) { $rootScope.pageTitle = 'Thingsboard | ' + translation; }, function (translationId) { $rootScope.pageTitle = 'Thingsboard | ' + translationId; }); } }) } function gotoDefaultPlace(params) { userService.gotoDefaultPlace(params); } function showUnauthorizedDialog() { if (unauthorizedDialog === null) { $translate(['access.unauthorized-access', 'access.unauthorized-access-text', 'access.unauthorized', 'action.cancel', 'action.sign-in']).then(function (translations) { if (unauthorizedDialog === null) { unauthorizedDialog = $mdDialog.confirm() .title(translations['access.unauthorized-access']) .textContent(translations['access.unauthorized-access-text']) .ariaLabel(translations['access.unauthorized']) .cancel(translations['action.cancel']) .ok(translations['action.sign-in']); $mdDialog.show(unauthorizedDialog).then(function () { unauthorizedDialog = null; $state.go('login'); }, function () { unauthorizedDialog = null; }); } }); } } function showForbiddenDialog() { if (forbiddenDialog === null) { $translate(['access.access-forbidden', 'access.access-forbidden-text', 'access.access-forbidden', 'action.cancel', 'action.sign-in']).then(function (translations) { if (forbiddenDialog === null) { forbiddenDialog = $mdDialog.confirm() .title(translations['access.access-forbidden']) .htmlContent(translations['access.access-forbidden-text']) .ariaLabel(translations['access.access-forbidden']) .cancel(translations['action.cancel']) .ok(translations['action.sign-in']); $mdDialog.show(forbiddenDialog).then(function () { forbiddenDialog = null; userService.logout(); }, function () { forbiddenDialog = null; }); } }); } } }