Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 1 | /** |
| 2 | * api Interceptor |
| 3 | * |
| 4 | * @module app/common/services/apiInterceptor |
| 5 | * @exports apiInterceptor |
| 6 | * @name apiInterceptor |
| 7 | |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 8 | */ |
| 9 | |
Andrew Geissler | ba5e3f3 | 2018-05-24 10:58:00 -0700 | [diff] [blame^] | 10 | window.angular && (function(angular) { |
| 11 | 'use strict'; |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 12 | |
Andrew Geissler | ba5e3f3 | 2018-05-24 10:58:00 -0700 | [diff] [blame^] | 13 | angular |
| 14 | .module('app.common.services') |
| 15 | .service('apiInterceptor', ['$q', '$rootScope', 'dataService', function($q, $rootScope, dataService) { |
| 16 | return { |
| 17 | 'request': function(config) { |
| 18 | dataService.loading = true; |
| 19 | // If caller has not defined a timeout, set to default of 20s |
| 20 | if (config.timeout == null) { |
| 21 | config.timeout = 20000; |
| 22 | } |
| 23 | return config; |
| 24 | }, |
| 25 | 'response': function(response) { |
| 26 | dataService.loading = false; |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 27 | |
Andrew Geissler | ba5e3f3 | 2018-05-24 10:58:00 -0700 | [diff] [blame^] | 28 | //not interested in template requests |
| 29 | if (!/^https?\:/i.test(response.config.url)) { |
| 30 | return response; |
| 31 | } |
Iftekharul Islam | cd78950 | 2017-04-19 14:37:55 -0500 | [diff] [blame] | 32 | |
Andrew Geissler | ba5e3f3 | 2018-05-24 10:58:00 -0700 | [diff] [blame^] | 33 | dataService.last_updated = new Date(); |
| 34 | if (!response) { |
| 35 | dataService.server_unreachable = true; |
| 36 | } |
| 37 | else { |
| 38 | dataService.server_unreachable = false; |
| 39 | } |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 40 | |
Andrew Geissler | ba5e3f3 | 2018-05-24 10:58:00 -0700 | [diff] [blame^] | 41 | if (response && response.status == 'error' && |
| 42 | dataService.path != '/login') { |
| 43 | $rootScope.$emit('timedout-user', {}); |
| 44 | } |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 45 | |
Andrew Geissler | ba5e3f3 | 2018-05-24 10:58:00 -0700 | [diff] [blame^] | 46 | return response; |
| 47 | }, |
| 48 | 'responseError': function(rejection) { |
| 49 | if (dataService.ignoreHttpError === false) { |
| 50 | // If unauthorized, log out |
| 51 | if (rejection.status == 401) { |
| 52 | if (dataService.path != '/login') { |
| 53 | $rootScope.$emit('timedout-user', {}); |
| 54 | } |
| 55 | } |
| 56 | else if (rejection.status == -1) { |
| 57 | dataService.server_unreachable = true; |
| 58 | } |
Ed Tanous | bbcf670 | 2017-10-06 13:53:06 -0700 | [diff] [blame] | 59 | |
Andrew Geissler | ba5e3f3 | 2018-05-24 10:58:00 -0700 | [diff] [blame^] | 60 | dataService.loading = false; |
| 61 | } |
| 62 | return $q.reject(rejection); |
| 63 | } |
| 64 | }; |
| 65 | }]); |
Iftekharul Islam | 99d199f | 2017-03-24 15:28:25 -0500 | [diff] [blame] | 66 | |
Ed Tanous | bbcf670 | 2017-10-06 13:53:06 -0700 | [diff] [blame] | 67 | })(window.angular); |