mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Call user API to get logged-in user's data when loading APPM publisher UI
This commit is contained in:
parent
e3b07fb2f7
commit
112eb1f77f
@ -98,19 +98,24 @@ class App extends React.Component {
|
||||
};
|
||||
|
||||
checkUserLoggedIn = (config) => {
|
||||
axios.get(
|
||||
window.location.origin + config.serverConfig.invoker.uri +
|
||||
config.serverConfig.invoker.publisher + "/applications/categories"
|
||||
axios.post(
|
||||
window.location.origin + "/publisher-ui-request-handler/user",
|
||||
"platform=publisher"
|
||||
).then(res => {
|
||||
const lastURLSegment = pageURL.substr(pageURL.lastIndexOf('/') + 1);
|
||||
if (lastURLSegment !== "login") {
|
||||
window.location.href = window.location.origin + `/publisher/`;
|
||||
} else {
|
||||
this.getAndroidEnterpriseToken(config);
|
||||
}
|
||||
}).catch((error) => {
|
||||
if (error.hasOwnProperty("response") && error.response.status === 401) {
|
||||
const redirectUrl = encodeURI(window.location.href);
|
||||
const pageURL = window.location.pathname;
|
||||
const lastURLSegment = pageURL.substr(pageURL.lastIndexOf('/') + 1);
|
||||
if(lastURLSegment!=="login"){
|
||||
if (lastURLSegment !== "login") {
|
||||
window.location.href = window.location.origin + `/publisher/login?redirect=${redirectUrl}`;
|
||||
}else{
|
||||
} else {
|
||||
this.getAndroidEnterpriseToken(config);
|
||||
}
|
||||
} else {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user