Skip to content

Commit 217c24b

Browse files
committed
Implemented axios as default request library
# Conflicts: # bower.json # dist/vue-authenticate.common.js # dist/vue-authenticate.es2015.js # dist/vue-authenticate.js # dist/vue-authenticate.min.js # example/vue-authenticate.js # package.json
1 parent c822a12 commit 217c24b

16 files changed

+278
-163
lines changed

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# http://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
insert_final_newline = false
15+
trim_trailing_whitespace = false

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
flow
2+
dist
3+
packages

.eslintrc

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"root": true,
3+
"parser": "babel-eslint",
4+
"parserOptions": {
5+
"sourceType": "module"
6+
},
7+
"env": {
8+
"browser": true,
9+
},
10+
"extends": "standard",
11+
"plugins": [
12+
"html"
13+
],
14+
"rules": {
15+
"arrow-parens": 0,
16+
"generator-star-spacing': 0
17+
}
18+
}
19+

.gitignore

+16-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,21 @@
33
node_modules
44
bower_components
55

6-
# Editors
6+
Thumbs.db
7+
.DS_Store
8+
9+
dist/
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
# Editor directories and files
715
.idea
16+
*.suo
17+
*.ntvs*
18+
*.njsproj
19+
*.sln
820
*.iml
9-
10-
# OS metadata
11-
.DS_Store
12-
Thumbs.db
21+
.vscode
22+
settings.json
23+
jsconfig.json

.tern-project

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"plugins": {
3+
"es_modules": {},
4+
"node": {}
5+
},
6+
"libs": [
7+
"ecma5",
8+
"ecma6",
9+
"react",
10+
"browser"
11+
],
12+
"ecmaVersion": 6
13+
}

dist/vue-authenticate.common.js

+35-28
Original file line numberDiff line numberDiff line change
@@ -451,10 +451,40 @@ var defaultOptions = {
451451
logoutUrl: null,
452452
storageType: 'localStorage',
453453
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+
},
458488

459489
providers: {
460490
facebook: {
@@ -1032,8 +1062,6 @@ OAuth2.prototype._stringifyRequestParams = function _stringifyRequestParams () {
10321062
};
10331063

10341064
var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
1035-
var this$1 = this;
1036-
10371065
var options = objectExtend({}, defaultOptions);
10381066
options = objectExtend(options, overrideOptions);
10391067
var storage = StorageFactory(options);
@@ -1075,28 +1103,7 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
10751103
this.options.bindRequestInterceptor.call(this, this);
10761104
this.options.bindResponseInterceptor.call(this, this);
10771105
} 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')
11001107
}
11011108
};
11021109

dist/vue-authenticate.es2015.js

+35-28
Original file line numberDiff line numberDiff line change
@@ -449,10 +449,40 @@ var defaultOptions = {
449449
logoutUrl: null,
450450
storageType: 'localStorage',
451451
storageNamespace: 'vue-authenticate',
452-
requestDataKey: 'body',
453-
responseDataKey: 'body',
454-
bindRequestInterceptor: null,
455-
bindResponseInterceptor: null,
452+
requestDataKey: 'data',
453+
responseDataKey: 'data',
454+
455+
/**
456+
* Default request interceptor for Axios library
457+
* @context {VueAuthenticate}
458+
*/
459+
bindRequestInterceptor: function () {
460+
var this$1 = this;
461+
462+
this.$http.interceptors.request.use(function (config) {
463+
if (this$1.isAuthenticated()) {
464+
config.headers['Authorization'] = [
465+
this$1.options.tokenType, this$1.getToken()
466+
].join(' ');
467+
} else {
468+
delete config.headers['Authorization'];
469+
}
470+
return config
471+
});
472+
},
473+
474+
/**
475+
* Default response interceptor for Axios library
476+
* @contect {VueAuthenticate}
477+
*/
478+
bindResponseInterceptor: function () {
479+
var this$1 = this;
480+
481+
this.$http.interceptors.response.use(function (response) {
482+
this$1.setToken(response);
483+
return response
484+
});
485+
},
456486

457487
providers: {
458488
facebook: {
@@ -1030,8 +1060,6 @@ OAuth2.prototype._stringifyRequestParams = function _stringifyRequestParams () {
10301060
};
10311061

10321062
var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
1033-
var this$1 = this;
1034-
10351063
var options = objectExtend({}, defaultOptions);
10361064
options = objectExtend(options, overrideOptions);
10371065
var storage = StorageFactory(options);
@@ -1073,28 +1101,7 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
10731101
this.options.bindRequestInterceptor.call(this, this);
10741102
this.options.bindResponseInterceptor.call(this, this);
10751103
} else {
1076-
// By default, request and response interceptors are for vue-resource
1077-
this.$http.interceptors.push(function (request, next) {
1078-
if (this$1.isAuthenticated()) {
1079-
request.headers.set('Authorization', [
1080-
this$1.options.tokenType, this$1.getToken()
1081-
].join(' '));
1082-
} else {
1083-
request.headers.delete('Authorization');
1084-
}
1085-
1086-
next(function (response) {
1087-
try {
1088-
var responseJson = JSON.parse(response[this$1.options.responseDataKey]);
1089-
if (responseJson[this$1.options.tokenName]) {
1090-
this$1.setToken(responseJson);
1091-
delete responseJson[this$1.options.tokenName];
1092-
return responseJson
1093-
}
1094-
} catch(e) {}
1095-
return response
1096-
});
1097-
});
1104+
throw new Error('Both request and response interceptors must be functions')
10981105
}
10991106
};
11001107

dist/vue-authenticate.js

+35-28
Original file line numberDiff line numberDiff line change
@@ -455,10 +455,40 @@ var defaultOptions = {
455455
logoutUrl: null,
456456
storageType: 'localStorage',
457457
storageNamespace: 'vue-authenticate',
458-
requestDataKey: 'body',
459-
responseDataKey: 'body',
460-
bindRequestInterceptor: null,
461-
bindResponseInterceptor: null,
458+
requestDataKey: 'data',
459+
responseDataKey: 'data',
460+
461+
/**
462+
* Default request interceptor for Axios library
463+
* @context {VueAuthenticate}
464+
*/
465+
bindRequestInterceptor: function () {
466+
var this$1 = this;
467+
468+
this.$http.interceptors.request.use(function (config) {
469+
if (this$1.isAuthenticated()) {
470+
config.headers['Authorization'] = [
471+
this$1.options.tokenType, this$1.getToken()
472+
].join(' ');
473+
} else {
474+
delete config.headers['Authorization'];
475+
}
476+
return config
477+
});
478+
},
479+
480+
/**
481+
* Default response interceptor for Axios library
482+
* @contect {VueAuthenticate}
483+
*/
484+
bindResponseInterceptor: function () {
485+
var this$1 = this;
486+
487+
this.$http.interceptors.response.use(function (response) {
488+
this$1.setToken(response);
489+
return response
490+
});
491+
},
462492

463493
providers: {
464494
facebook: {
@@ -1036,8 +1066,6 @@ OAuth2.prototype._stringifyRequestParams = function _stringifyRequestParams () {
10361066
};
10371067

10381068
var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
1039-
var this$1 = this;
1040-
10411069
var options = objectExtend({}, defaultOptions);
10421070
options = objectExtend(options, overrideOptions);
10431071
var storage = StorageFactory(options);
@@ -1079,28 +1107,7 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
10791107
this.options.bindRequestInterceptor.call(this, this);
10801108
this.options.bindResponseInterceptor.call(this, this);
10811109
} else {
1082-
// By default, request and response interceptors are for vue-resource
1083-
this.$http.interceptors.push(function (request, next) {
1084-
if (this$1.isAuthenticated()) {
1085-
request.headers.set('Authorization', [
1086-
this$1.options.tokenType, this$1.getToken()
1087-
].join(' '));
1088-
} else {
1089-
request.headers.delete('Authorization');
1090-
}
1091-
1092-
next(function (response) {
1093-
try {
1094-
var responseJson = JSON.parse(response[this$1.options.responseDataKey]);
1095-
if (responseJson[this$1.options.tokenName]) {
1096-
this$1.setToken(responseJson);
1097-
delete responseJson[this$1.options.tokenName];
1098-
return responseJson
1099-
}
1100-
} catch(e) {}
1101-
return response
1102-
});
1103-
});
1110+
throw new Error('Both request and response interceptors must be functions')
11041111
}
11051112
};
11061113

dist/vue-authenticate.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/index.html

+15-2
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,17 @@
4141
.button--linkedin { color: #0077b5; border: 1px solid #0077b5; }
4242
.button--live { color: #f65314; border: 1px solid #f65314; }
4343

44+
.authentication-status {
45+
background-color: #42b983;
46+
color: #fff;
47+
left: 0;
48+
padding: 16px 32px;
49+
position: fixed;
50+
right: 0;
51+
text-align: center;
52+
top: 0;
53+
}
54+
4455
hr {
4556
border: 0;
4657
border-bottom: 1px solid #ddd;
@@ -50,6 +61,7 @@
5061
#app {
5162
margin: 32px auto;
5263
max-width: 640px;
64+
padding-top: 53px;
5365
word-break: break-all;
5466
}
5567
</style>
@@ -61,8 +73,9 @@
6173

6274
<script src="https://unpkg.com/[email protected]/dist/vue.min.js"></script>
6375
<script src="https://unpkg.com/[email protected]/dist/vue-router.min.js"></script>
64-
<script src="https://unpkg.com/[email protected]/dist/vue-resource.min.js"></script>
76+
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
77+
<script src="https://unpkg.com/[email protected]/dist/vue-axios.min.js"></script>
6578
<script src="/vue-authenticate.js"></script>
6679
<script src="/index.js"></script>
6780
</body>
68-
</html>
81+
</html>

0 commit comments

Comments
 (0)