// Update once ts issue is fixed: https://github.com/Microsoft/TypeScript/issues/2192 // import * as exceptionless from '../../dist/exceptionless' declare var exceptionless; angular.module('exceptionless', []) .constant('$ExceptionlessClient', exceptionless.ExceptionlessClient.default) .factory('exceptionlessHttpInterceptor', ['$q', '$ExceptionlessClient', function($q, $ExceptionlessClient) { return { responseError: function responseError(rejection) { if (rejection.status === 404) { $ExceptionlessClient.submitNotFound(rejection.config.url); } else if (rejection.status !== 401) { let message = `[${rejection.status}] ${(rejection.data && rejection.data.Message ? rejection.data.Message : rejection.config.url)}`; $ExceptionlessClient.createUnhandledException(new Error(message), 'errorHttpInterceptor') .setManualStackingInfo({ Status: rejection.status, ExceptionType: 'Error', Path: rejection.config.method + ' ' + rejection.config.url }) .setSource(rejection.config.url) .setProperty('request', rejection.config) .submit(); } return $q.reject(rejection); } }; }]) .config(['$httpProvider', '$provide', '$ExceptionlessClient', function($httpProvider, $provide, $ExceptionlessClient) { $httpProvider.interceptors.push('exceptionlessHttpInterceptor'); $provide.decorator('$exceptionHandler', ['$delegate', function($delegate) { return function(exception, cause) { $delegate(exception, cause); $ExceptionlessClient.createUnhandledException(exception, '$exceptionHandler').setMessage(cause).submit(); }; }]); $provide.decorator('$log', ['$delegate', function($delegate) { function decorateRegularCall(property, logLevel) { let previousFn = $delegate[property]; return $delegate[property] = function() { previousFn.apply(null, arguments); if (arguments[0] && arguments[0].length > 0) { $ExceptionlessClient.submitLog(null, arguments[0], logLevel); } }; } $delegate.log = decorateRegularCall('log', 'Trace'); $delegate.info = decorateRegularCall('info', 'Info'); $delegate.warn = decorateRegularCall('warn', 'Warn'); $delegate.debug = decorateRegularCall('debug', 'Debug'); $delegate.error = decorateRegularCall('error', 'Error'); return $delegate; }]); }]) .run(['$rootScope', '$ExceptionlessClient', function($rootScope, $ExceptionlessClient) { $rootScope.$on('$routeChangeSuccess', function(event, next, current) { if (!current) { return; } $ExceptionlessClient.createFeatureUsage(current.name) .setProperty('next', next) .setProperty('current', current) .submit(); }); $rootScope.$on('$routeChangeError', function(event, current, previous, rejection) { $ExceptionlessClient.createUnhandledException(new Error(rejection), '$routeChangeError') .setProperty('current', current) .setProperty('previous', previous) .submit(); }); $rootScope.$on('$stateChangeSuccess', function(event, toState, toParams, fromState, fromParams) { if (!toState || toState.name === 'otherwise') { return; } $ExceptionlessClient.createFeatureUsage(toState.controller || toState.name) .setProperty('toState', toState) .setProperty('toParams', toParams) .setProperty('fromState', fromState) .setProperty('fromParams', fromParams) .submit(); }); $rootScope.$on('$stateNotFound', function(event, unfoundState, fromState, fromParams) { if (!unfoundState) { return; } $ExceptionlessClient.createNotFound(unfoundState.to) .setProperty('unfoundState', unfoundState) .setProperty('fromState', fromState) .setProperty('fromParams', fromParams) .submit(); }); let stateChangeError = '$stateChangeError'; $rootScope.$on(stateChangeError, function(event, toState, toParams, fromState, fromParams, error) { if (!error) { return; } let builder = error && error.status === 404 ? $ExceptionlessClient.createNotFound(error.config.url) : $ExceptionlessClient.createUnhandledException(error, stateChangeError); builder.setSource(stateChangeError) .setMessage(error && error.statusText) .setProperty('toState', toState) .setProperty('toParams', toParams) .setProperty('fromState', fromState) .setProperty('fromParams', fromParams) .submit(); }); $rootScope.$on('$destroy', function() { $ExceptionlessClient.config.queue.process(); }); }]);