mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
06cb0bd14e
no issue - adds `credentials: 'include'` option to `fetch()` which instructs browsers to save cookies in the POST response in cross-origin requests (default is `'same-origin'`)
41 lines
1.1 KiB
JavaScript
41 lines
1.1 KiB
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import fetch from 'fetch';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default AuthenticatedRoute.extend({
|
|
config: service(),
|
|
settings: service(),
|
|
ui: service(),
|
|
|
|
_hasLoggedIn: false,
|
|
|
|
model() {
|
|
return (new Date()).valueOf();
|
|
},
|
|
|
|
afterModel() {
|
|
if (this.settings.get('isPrivate') && !this._hasLoggedIn) {
|
|
let privateLoginUrl = `${this.config.get('blogUrl')}/private/?r=%2F`;
|
|
|
|
return fetch(privateLoginUrl, {
|
|
method: 'POST',
|
|
mode: 'cors',
|
|
redirect: 'manual',
|
|
credentials: 'include',
|
|
headers: {
|
|
'Content-Type': 'application/x-www-form-urlencoded'
|
|
},
|
|
body: `password=${this.settings.get('password')}`
|
|
}).then(() => {
|
|
this._hasLoggedIn = true;
|
|
});
|
|
}
|
|
},
|
|
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
titleToken: 'Site'
|
|
};
|
|
}
|
|
});
|