use of cz.metacentrum.perun.webgui.widgets.CantLogAsServiceUserWidget in project perun by CESNET.
the class WebGui method loadPerunPrincipal.
/**
* Performs a login into the RPC, loads user and his roles into session and enables GUI.
*/
private void loadPerunPrincipal() {
// WEB PAGE SPLITTER
final DockLayoutPanel bodySplitter = new DockLayoutPanel(Unit.PX);
body.add(bodySplitter);
// MAIN CONTENT WRAPPER - make content resize-able
final ResizeLayoutPanel contentWrapper = new ResizeLayoutPanel();
contentWrapper.setSize("100%", "100%");
// MAIN CONTENT
AbsolutePanel contentPanel = new AbsolutePanel();
contentPanel.setSize("100%", "100%");
// put content into wrapper
contentWrapper.setWidget(contentPanel);
// SETUP SESSION
// store handler for main contetn's elements (tabs etc.) into session
session.setUiElements(new UiElements(contentPanel));
// Store TabManager into session for handling tabs (add/remove/close...)
session.setTabManager(new TabManager());
// Store this class into session
session.setWebGui(webgui);
// Set this class as browser's History handler
History.addValueChangeHandler(webgui);
// show loading box
final PopupPanel loadingBox = session.getUiElements().perunLoadingBox();
loadingBox.show();
// events after getting PerunPrincipal from RPC
final JsonCallbackEvents events = new JsonCallbackEvents() {
@Override
public void onFinished(JavaScriptObject jso) {
// store perun principal into session for future use
final PerunPrincipal pp = (PerunPrincipal) jso;
session.setPerunPrincipal(pp);
GetGuiConfiguration getConfig = new GetGuiConfiguration(new JsonCallbackEvents() {
@Override
public void onFinished(JavaScriptObject jso) {
session.setConfiguration((BasicOverlayType) jso.cast());
// check if user exists
if (session.getUser() == null && !pp.getRoles().hasAnyRole()) {
// if not and no role, redraw page body
RootLayoutPanel body = RootLayoutPanel.get();
loadingBox.hide();
body.clear();
body.add(new NotUserOfPerunWidget());
return;
}
// check if user exists
if (session.getUser().isServiceUser()) {
// if not and no role, redraw page body
RootLayoutPanel body = RootLayoutPanel.get();
loadingBox.hide();
body.clear();
body.add(new CantLogAsServiceUserWidget());
return;
}
// Sets URL mapper for loading proper tabs
urlMapper = new UrlMapper();
// MENU WRAPPER
VerticalPanel menuWrapper = new VerticalPanel();
menuWrapper.setHeight("100%");
// add menu
menuWrapper.add(session.getUiElements().getMenu().getWidget());
menuWrapper.setCellVerticalAlignment(session.getUiElements().getMenu().getWidget(), HasVerticalAlignment.ALIGN_TOP);
// Put all panels into web page splitter
// bodySplitter.addNorth(session.getUiElements().getHeader(), 78);
bodySplitter.addNorth(session.getUiElements().getHeader(), 64);
bodySplitter.addSouth(session.getUiElements().getFooter(), 30);
bodySplitter.addWest(menuWrapper, 202);
// content must be added as last !!
bodySplitter.add(contentWrapper);
// Append more GUI elements from UiElements class which are not part of splitted design
if ("true".equalsIgnoreCase(Location.getParameter("log"))) {
// log
bodySplitter.getElement().appendChild(session.getUiElements().getLog().getElement());
}
// status
bodySplitter.getElement().appendChild(session.getUiElements().getStatus().getElement());
// keep alive
VerticalPanel vp = new VerticalPanel();
vp.setHorizontalAlignment(HasHorizontalAlignment.ALIGN_CENTER);
vp.add(new HTML("<h2>Connection to Perun has been lost.</h2><strong>Please check your internet connection.</strong>"));
final FlexTable layout = new FlexTable();
layout.setVisible(false);
layout.setHTML(0, 0, "<p>You can also try to <strong>refresh the browser window</strong>. However, all <strong>unsaved changes will be lost</strong>.");
layout.getFlexCellFormatter().setAlignment(0, 0, HasHorizontalAlignment.ALIGN_CENTER, HasVerticalAlignment.ALIGN_TOP);
vp.add(layout);
vp.setSpacing(10);
final Confirm c = new Confirm("", vp, true);
c.setAutoHide(false);
c.setHideOnButtonClick(false);
c.setOkIcon(SmallIcons.INSTANCE.arrowRefreshIcon());
c.setOkButtonText("Re-connect");
c.setNonScrollable(true);
c.setOkClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
KeepAlive call = new KeepAlive(JsonCallbackEvents.disableButtonEvents(c.getOkButton(), new JsonCallbackEvents() {
@Override
public void onLoadingStart() {
checkPending = true;
}
@Override
public void onFinished(JavaScriptObject jso) {
BasicOverlayType type = jso.cast();
checkPending = false;
connected = true;
if (type.getString().equals("OK")) {
if (c.isShowing()) {
c.hide();
}
}
// If ok, append new keepalive checker
appendKeepAliveChecker(c);
}
@Override
public void onError(PerunError error) {
checkPending = false;
// connection lost only IF TIMEOUT
if (error != null && error.getErrorId().equals("0")) {
connected = false;
if (!c.isShowing()) {
c.show();
}
layout.setVisible(true);
c.getOkButton().setText("Reload");
c.getOkButton().addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
Window.Location.reload();
}
});
}
}
}));
call.retrieveData();
}
});
appendKeepAliveChecker(c);
// store users roles and editable entities into session
session.setRoles(pp.getRoles());
// display logged user
session.getUiElements().setLoggedUserInfo(pp);
session.getUiElements().setLogText("Welcome " + pp.getUser().getFullNameWithTitles());
// show extended info ?
boolean showExtendedInfo = false;
// is perun admin ?
if (session.isPerunAdmin()) {
showExtendedInfo = true;
}
// replace by local storage if possible
Storage localStorage = Storage.getLocalStorageIfSupported();
if (localStorage != null) {
String value = localStorage.getItem("urn:perun:gui:preferences:extendedInfo");
if (value != null) {
showExtendedInfo = Boolean.parseBoolean(value);
}
}
// finally set it
JsonUtils.setExtendedInfoVisible(showExtendedInfo);
// set extended info button
session.getUiElements().getExtendedInfoButtonWidget().setDown(showExtendedInfo);
// perun loaded = true
perunLoaded = true;
// loads the page based on URL or default
loadPage();
// hides the loading box
loadingBox.hide();
// load proper parts of menu (based on roles)
session.getUiElements().getMenu().prepare();
}
@Override
public void onError(PerunError error) {
// hides the loading box
loadingBox.hide();
// shows error box
PopupPanel loadingFailedBox;
if (error != null) {
loadingFailedBox = session.getUiElements().perunLoadingFailedBox("Request timeout exceeded.");
} else {
if (error.getName().contains("UserNotExistsException")) {
loadingFailedBox = session.getUiElements().perunLoadingFailedBox("You are not registered to any Virtual Organization.</br></br>" + error.getErrorInfo());
} else {
loadingFailedBox = session.getUiElements().perunLoadingFailedBox(error.getErrorInfo());
}
}
if (!error.getErrorId().equals("0")) {
loadingFailedBox.show();
}
}
});
getConfig.retrieveData();
}
@Override
public void onError(PerunError error) {
// hides the loading box
loadingBox.hide();
// shows error box
PopupPanel loadingFailedBox;
if (error == null) {
loadingFailedBox = session.getUiElements().perunLoadingFailedBox("Request timeout exceeded.");
} else {
if (error.getName().contains("UserNotExistsException")) {
loadingFailedBox = session.getUiElements().perunLoadingFailedBox("You are not registered to any Virtual Organization.</br></br>" + error.getErrorInfo());
} else {
loadingFailedBox = session.getUiElements().perunLoadingFailedBox(error.getErrorInfo());
}
}
loadingFailedBox.show();
}
};
GetPerunPrincipal loggedUserRequst = new GetPerunPrincipal(events);
loggedUserRequst.retrieveData();
}
Aggregations