@@ -451,10 +451,40 @@ var defaultOptions = {
451
451
logoutUrl : null ,
452
452
storageType : 'localStorage' ,
453
453
storageNamespace : 'vue-authenticate' ,
454
- requestDataKey : 'body' ,
455
- responseDataKey : 'body' ,
456
- bindRequestInterceptor : null ,
457
- bindResponseInterceptor : null ,
454
+ requestDataKey : 'data' ,
455
+ responseDataKey : 'data' ,
456
+
457
+ /**
458
+ * Default request interceptor for Axios library
459
+ * @context {VueAuthenticate}
460
+ */
461
+ bindRequestInterceptor : function ( ) {
462
+ var this$1 = this ;
463
+
464
+ this . $http . interceptors . request . use ( function ( config ) {
465
+ if ( this$1 . isAuthenticated ( ) ) {
466
+ config . headers [ 'Authorization' ] = [
467
+ this$1 . options . tokenType , this$1 . getToken ( )
468
+ ] . join ( ' ' ) ;
469
+ } else {
470
+ delete config . headers [ 'Authorization' ] ;
471
+ }
472
+ return config
473
+ } ) ;
474
+ } ,
475
+
476
+ /**
477
+ * Default response interceptor for Axios library
478
+ * @contect {VueAuthenticate}
479
+ */
480
+ bindResponseInterceptor : function ( ) {
481
+ var this$1 = this ;
482
+
483
+ this . $http . interceptors . response . use ( function ( response ) {
484
+ this$1 . setToken ( response ) ;
485
+ return response
486
+ } ) ;
487
+ } ,
458
488
459
489
providers : {
460
490
facebook : {
@@ -1032,8 +1062,6 @@ OAuth2.prototype._stringifyRequestParams = function _stringifyRequestParams () {
1032
1062
} ;
1033
1063
1034
1064
var VueAuthenticate = function VueAuthenticate ( $http , overrideOptions ) {
1035
- var this$1 = this ;
1036
-
1037
1065
var options = objectExtend ( { } , defaultOptions ) ;
1038
1066
options = objectExtend ( options , overrideOptions ) ;
1039
1067
var storage = StorageFactory ( options ) ;
@@ -1075,28 +1103,7 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
1075
1103
this . options . bindRequestInterceptor . call ( this , this ) ;
1076
1104
this . options . bindResponseInterceptor . call ( this , this ) ;
1077
1105
} else {
1078
- // By default, request and response interceptors are for vue-resource
1079
- this . $http . interceptors . push ( function ( request , next ) {
1080
- if ( this$1 . isAuthenticated ( ) ) {
1081
- request . headers . set ( 'Authorization' , [
1082
- this$1 . options . tokenType , this$1 . getToken ( )
1083
- ] . join ( ' ' ) ) ;
1084
- } else {
1085
- request . headers . delete ( 'Authorization' ) ;
1086
- }
1087
-
1088
- next ( function ( response ) {
1089
- try {
1090
- var responseJson = JSON . parse ( response [ this$1 . options . responseDataKey ] ) ;
1091
- if ( responseJson [ this$1 . options . tokenName ] ) {
1092
- this$1 . setToken ( responseJson ) ;
1093
- delete responseJson [ this$1 . options . tokenName ] ;
1094
- return responseJson
1095
- }
1096
- } catch ( e ) { }
1097
- return response
1098
- } ) ;
1099
- } ) ;
1106
+ throw new Error ( 'Both request and response interceptors must be functions' )
1100
1107
}
1101
1108
} ;
1102
1109
0 commit comments