@geogirafe/lib-geoportal 1.2.0-dev.2857870396 → 1.2.0-dev.2857926790
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.2.0-dev.
|
|
1
|
+
{"version":"1.2.0-dev.2857926790", "build":"2857926790", "date":"17/09/2026"}
|
|
@@ -95,7 +95,12 @@ export default class AuthManager extends GirafeSingleton {
|
|
|
95
95
|
this.state.oauth.status = 'loginFailed';
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
|
-
else if (this.state.oauth.status === 'loggedIn'
|
|
98
|
+
else if (this.state.oauth.status === 'loggedIn') {
|
|
99
|
+
this.issuerManager.finalizeLoginWorkflow();
|
|
100
|
+
}
|
|
101
|
+
else if (this.state.oauth.status === 'loggedOut') {
|
|
102
|
+
// Get the anonymous rights
|
|
103
|
+
await this.gmfManager.getAnonymousUserInfo();
|
|
99
104
|
this.issuerManager.finalizeLoginWorkflow();
|
|
100
105
|
}
|
|
101
106
|
else if (this.state.oauth.status === 'loginFailed') {
|
package/tools/auth/gmfmanager.js
CHANGED
|
@@ -61,4 +61,13 @@ export default class GMFManager {
|
|
|
61
61
|
const userInfoUrl = this.isOAuth ? this.gmfConfigForOAuth.userInfoUrl : `${this.gmfConfigForGmfAuth.url}loginuser`;
|
|
62
62
|
this.state.oauth.userInfo = await fetch(userInfoUrl).then((r) => r.json());
|
|
63
63
|
}
|
|
64
|
+
async getAnonymousUserInfo() {
|
|
65
|
+
console.debug('Auth: 3. Get Anonymous UserInfo');
|
|
66
|
+
const anonymousUserInfoUrl = this.isOAuth
|
|
67
|
+
? this.gmfConfigForOAuth.anonymousUserInfoUrl
|
|
68
|
+
: `${this.gmfConfigForGmfAuth.url}loginuser`;
|
|
69
|
+
if (anonymousUserInfoUrl) {
|
|
70
|
+
this.state.oauth.userInfo = await fetch(anonymousUserInfoUrl).then((r) => r.json());
|
|
71
|
+
}
|
|
72
|
+
}
|
|
64
73
|
}
|
|
@@ -450,6 +450,7 @@ class GirafeConfig {
|
|
|
450
450
|
};
|
|
451
451
|
const geomapfishConfig = {
|
|
452
452
|
userInfoUrl: config.oauth.geomapfish.userInfoUrl,
|
|
453
|
+
anonymousUserInfoUrl: config.oauth.geomapfish.anonymousUserInfoUrl,
|
|
453
454
|
loginUrl: config.oauth.geomapfish.loginUrl,
|
|
454
455
|
logoutUrl: config.oauth.geomapfish.logoutUrl,
|
|
455
456
|
anonymousUsername: config.oauth.geomapfish.anonymousUsername,
|