use of cz.metacentrum.perun.webgui.json.JsonCallbackEvents in project perun by CESNET.
the class AddGroupManagerTabItem method startSearching.
/**
* Starts the search for users
*/
protected void startSearching(String text) {
users.clearTable();
// IS searched string IDs?
if (JsonUtils.isStringWithIds(text)) {
FindUsersByIdsNotInRpc req = new FindUsersByIdsNotInRpc(new JsonCallbackEvents() {
@Override
public void onFinished(JavaScriptObject jso) {
ArrayList<User> usersList = JsonUtils.jsoAsList(jso);
for (User u : usersList) {
users.addToTable(u);
}
}
}, text);
req.retrieveData();
return;
}
users.searchFor(text);
}
use of cz.metacentrum.perun.webgui.json.JsonCallbackEvents in project perun by CESNET.
the class AddDependencyTabItem method draw.
public Widget draw() {
// TITLE
titleWidget.setText("Add dependency");
final VerticalPanel vp = new VerticalPanel();
vp.setSize("100%", "100%");
// prepares layout
FlexTable layout = new FlexTable();
layout.setStyleName("inputFormFlexTable");
FlexCellFormatter cellFormatter = layout.getFlexCellFormatter();
// close tab events
final TabItem tab = this;
TabMenu menu = new TabMenu();
final ListBoxWithObjects<ExecService> listBox = new ListBoxWithObjects<ExecService>();
final CustomButton addButton = TabMenu.getPredefinedButton(ButtonType.ADD, ButtonTranslation.INSTANCE.addDependantExecService());
// fill listbox after callback finishes
final JsonCallbackEvents localEvents = new JsonCallbackEvents() {
@Override
public void onFinished(JavaScriptObject jso) {
listBox.clear();
ArrayList<ExecService> execs = JsonUtils.jsoAsList(jso);
if (execs != null && !execs.isEmpty()) {
execs = new TableSorter<ExecService>().sortByService(execs);
for (int i = 0; i < execs.size(); i++) {
listBox.addItem(execs.get(i));
if (execService.getService().getName().equals(execs.get(i).getService().getName()) && !execService.getType().equals(execs.get(i).getType())) {
// preselect different type of exec service from same service
listBox.setSelected(execs.get(i), true);
}
}
addButton.setEnabled(true);
} else {
listBox.addItem("No exec service available");
}
}
@Override
public void onLoadingStart() {
listBox.clear();
listBox.addItem("Loading...");
addButton.setEnabled(false);
}
@Override
public void onError(PerunError error) {
listBox.addItem("Error while loading");
addButton.setEnabled(false);
}
};
// callback for all services
ListExecServices callback = new ListExecServices(0, localEvents);
callback.retrieveData();
// layout
layout.setHTML(0, 0, "ExecService:");
layout.setHTML(1, 0, "Depend On:");
layout.setHTML(0, 1, execService.getService().getName() + " " + execService.getType());
layout.setWidget(1, 1, listBox);
final JsonCallbackEvents closeTabEvents = JsonCallbackEvents.closeTabDisableButtonEvents(addButton, tab);
addButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
CreateDependency request = new CreateDependency(closeTabEvents);
request.createDependancy(execServiceId, listBox.getSelectedObject().getId());
}
});
final CustomButton cancelButton = TabMenu.getPredefinedButton(ButtonType.CANCEL, "");
cancelButton.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent clickEvent) {
session.getTabManager().closeTab(tab, false);
}
});
for (int i = 0; i < layout.getRowCount(); i++) {
cellFormatter.addStyleName(i, 0, "itemName");
}
menu.addWidget(addButton);
menu.addWidget(cancelButton);
vp.add(layout);
vp.add(menu);
vp.setCellHorizontalAlignment(menu, HasHorizontalAlignment.ALIGN_RIGHT);
this.contentWidget.setWidget(vp);
return getWidget();
}
use of cz.metacentrum.perun.webgui.json.JsonCallbackEvents in project perun by CESNET.
the class CreateAttributeDefinitionTabItem method draw.
public Widget draw() {
VerticalPanel vp = new VerticalPanel();
vp.setSize("100%", "100%");
// creates HTML elements
final ExtendedTextBox attributeDisplayName = new ExtendedTextBox();
final ExtendedTextBox attributeName = new ExtendedTextBox();
final ExtendedTextBox attributeDescription = new ExtendedTextBox();
final ExtendedTextBox.TextBoxValidator nameValidator = new ExtendedTextBox.TextBoxValidator() {
@Override
public boolean validateTextBox() {
if (attributeName.getTextBox().getText().trim().isEmpty()) {
attributeName.setError("Name of attribute can't be empty.");
} else if (!attributeName.getTextBox().getText().trim().matches(Utils.ATTRIBUTE_FRIENDLY_NAME_MATCHER)) {
attributeName.setError("Name of attribute can contain only letters, numbers, dash and colon.");
} else {
attributeName.setOk();
return true;
}
return false;
}
};
final ExtendedTextBox.TextBoxValidator descriptionValidator = new ExtendedTextBox.TextBoxValidator() {
@Override
public boolean validateTextBox() {
if (!attributeDescription.getTextBox().getText().trim().isEmpty()) {
attributeDescription.setOk();
return true;
} else {
attributeDescription.setError("Description of attribute can't be empty.");
return false;
}
}
};
final ExtendedTextBox.TextBoxValidator displayNameValidator = new ExtendedTextBox.TextBoxValidator() {
@Override
public boolean validateTextBox() {
if (!attributeDisplayName.getTextBox().getText().trim().isEmpty()) {
attributeDisplayName.setOk();
return true;
} else {
attributeDisplayName.setError("Display name of attribute can't be empty.");
return false;
}
}
};
attributeName.setValidator(nameValidator);
attributeDisplayName.setValidator(displayNameValidator);
attributeDescription.setValidator(descriptionValidator);
final ListBox entityListBox = new ListBox();
final ListBox definitionListBox = new ListBox();
final ListBox typeListBox = new ListBox();
// fill listboxs with pre-defined values
entityListBox.addItem("facility", "urn:perun:facility:");
entityListBox.addItem("resource", "urn:perun:resource:");
entityListBox.addItem("group", "urn:perun:group:");
entityListBox.addItem("group_resource", "urn:perun:group_resource:");
entityListBox.addItem("host", "urn:perun:host:");
entityListBox.addItem("member", "urn:perun:member:");
entityListBox.addItem("member_group", "urn:perun:member_group:");
entityListBox.addItem("member_resource", "urn:perun:member_resource:");
entityListBox.addItem("user", "urn:perun:user:");
entityListBox.addItem("user_ext_source", "urn:perun:ues:");
entityListBox.addItem("user_facility", "urn:perun:user_facility:");
entityListBox.addItem("vo", "urn:perun:vo:");
entityListBox.addItem("entityless", "urn:perun:entityless:");
definitionListBox.addItem("def", "attribute-def:def");
definitionListBox.addItem("opt", "attribute-def:opt");
definitionListBox.addItem("virt", "attribute-def:virt");
definitionListBox.addItem("core", "attribute-def:core");
typeListBox.addItem("String", "java.lang.String");
typeListBox.addItem("Integer", "java.lang.Integer");
typeListBox.addItem("Boolean", "java.lang.Boolean");
typeListBox.addItem("Array", "java.util.ArrayList");
typeListBox.addItem("LinkedHashMap", "java.util.LinkedHashMap");
// prepare layout for this tab
FlexTable layout = new FlexTable();
layout.setStyleName("inputFormFlexTable");
FlexCellFormatter cellFormatter = layout.getFlexCellFormatter();
TabMenu menu = new TabMenu();
// BUTTONS
final CustomButton createButton = TabMenu.getPredefinedButton(ButtonType.CREATE, buttonTranslation.createAttributeDefinition());
menu.addWidget(createButton);
// close tab events & enable, disable buttons
final JsonCallbackEvents closeTabEvents = JsonCallbackEvents.closeTabDisableButtonEvents(createButton, this, true);
createButton.addClickHandler(new ClickHandler() {
public void onClick(ClickEvent event) {
if (nameValidator.validateTextBox() && descriptionValidator.validateTextBox() && displayNameValidator.validateTextBox()) {
String displayName = attributeDisplayName.getTextBox().getText().trim();
String friendlyName = attributeName.getTextBox().getText().trim();
String description = attributeDescription.getTextBox().getText().trim();
String namespace = entityListBox.getValue(entityListBox.getSelectedIndex()) + definitionListBox.getValue(definitionListBox.getSelectedIndex());
String type = typeListBox.getValue(typeListBox.getSelectedIndex());
boolean isUnique = unique.getValue();
CreateAttribute request = new CreateAttribute(JsonCallbackEvents.disableButtonEvents(createButton, new JsonCallbackEvents() {
@Override
public void onFinished(JavaScriptObject jso) {
AttributeDefinition a = jso.cast();
ArrayList<AttributeRights> list = new ArrayList<AttributeRights>();
AttributeRights right = AttributeRights.create(a.getId(), "SELF");
list.add(getRightsFromWidgets(selfRead, selfWrite, selfReadPublic, selfWritePublic, selfReadVo, selfWriteVo, right));
AttributeRights right2 = AttributeRights.create(a.getId(), "VOADMIN");
list.add(getRightsFromWidgets(voRead, voWrite, right2));
AttributeRights right3 = AttributeRights.create(a.getId(), "GROUPADMIN");
list.add(getRightsFromWidgets(groupRead, groupWrite, right3));
AttributeRights right4 = AttributeRights.create(a.getId(), "FACILITYADMIN");
list.add(getRightsFromWidgets(facilityRead, facilityWrite, right4));
// after update - update rights
SetAttributeRights request = new SetAttributeRights(JsonCallbackEvents.disableButtonEvents(createButton, new JsonCallbackEvents() {
@Override
public void onFinished(JavaScriptObject jso) {
enableDisableWidgets(true);
closeTabEvents.onFinished(jso);
}
@Override
public void onLoadingStart() {
enableDisableWidgets(false);
}
@Override
public void onError(PerunError error) {
enableDisableWidgets(true);
}
}));
request.setAttributeRights(list);
}
}));
request.createAttributeDefinition(displayName, friendlyName, description, namespace, type, isUnique);
}
}
});
// insert layout
layout.setHTML(0, 0, "Friendly name:");
layout.setWidget(0, 1, attributeName);
layout.setHTML(1, 0, "Display name:");
layout.setWidget(1, 1, attributeDisplayName);
layout.setHTML(2, 0, "Description:");
layout.setWidget(2, 1, attributeDescription);
layout.setHTML(3, 0, "Entity:");
layout.setWidget(3, 1, entityListBox);
layout.setHTML(4, 0, "Definition type:");
layout.setWidget(4, 1, definitionListBox);
layout.setHTML(5, 0, "Value type:");
layout.setWidget(5, 1, typeListBox);
layout.setHTML(6, 0, "Unique:");
layout.setWidget(6, 1, unique);
for (int i = 0; i < layout.getRowCount(); i++) {
cellFormatter.addStyleName(i, 0, "itemName");
}
final TabItem tab = this;
menu.addWidget(TabMenu.getPredefinedButton(ButtonType.CANCEL, "", new ClickHandler() {
@Override
public void onClick(ClickEvent clickEvent) {
session.getTabManager().closeTab(tab, isRefreshParentOnClose());
}
}));
final FlexTable rightsTable = new FlexTable();
rightsTable.setStyleName("inputFormFlexTable");
rightsTable.setHTML(0, 1, "<strong>SELF</strong>");
rightsTable.setHTML(0, 2, "<strong>SELF_PUBLIC</strong>");
rightsTable.setHTML(0, 3, "<strong>SELF_VO</strong>");
rightsTable.setHTML(0, 4, "<strong>VO</strong>");
rightsTable.setHTML(0, 5, "<strong>GROUP</strong>");
rightsTable.setHTML(0, 6, "<strong>FACILITY</strong>");
rightsTable.setHTML(1, 0, "<strong>READ</strong>");
rightsTable.setHTML(2, 0, "<strong>WRITE</strong>");
rightsTable.setWidget(1, 1, selfRead);
rightsTable.setWidget(2, 1, selfWrite);
rightsTable.setWidget(1, 2, selfReadPublic);
rightsTable.setWidget(2, 2, selfWritePublic);
rightsTable.setWidget(1, 3, selfReadVo);
rightsTable.setWidget(2, 3, selfWriteVo);
rightsTable.setWidget(1, 4, voRead);
rightsTable.setWidget(2, 4, voWrite);
rightsTable.setWidget(1, 5, groupRead);
rightsTable.setWidget(2, 5, groupWrite);
rightsTable.setWidget(1, 6, facilityRead);
rightsTable.setWidget(2, 6, facilityWrite);
rightsTable.addStyleName("centeredTable");
vp.add(layout);
vp.add(rightsTable);
vp.add(menu);
vp.setCellHorizontalAlignment(menu, HasHorizontalAlignment.ALIGN_RIGHT);
this.contentWidget.setWidget(vp);
return getWidget();
}
use of cz.metacentrum.perun.webgui.json.JsonCallbackEvents in project perun by CESNET.
the class AddAuthorTabItem method draw.
public Widget draw() {
titleWidget.setText("Add author");
this.users = new FindNewAuthors("");
// MAIN TAB PANEL
VerticalPanel firstTabPanel = new VerticalPanel();
firstTabPanel.setSize("100%", "100%");
// PUB-INFO
TabMenu info = new TabMenu();
info.addWidget(new HTML("<strong>FULL CITE: </strong>" + publication.getMain()));
firstTabPanel.add(info);
// HORIZONTAL MENU
TabMenu tabMenu = new TabMenu();
// get the table
final CellTable<Author> table;
if (session.isPerunAdmin()) {
table = users.getEmptyTable(new FieldUpdater<Author, String>() {
public void update(int index, Author object, String value) {
session.getTabManager().addTab(new UserDetailTabItem(object.getId()));
}
});
} else {
table = users.getEmptyTable();
}
final CustomButton addButton = TabMenu.getPredefinedButton(ButtonType.ADD, "Add selected user(s) as author(s) of publication: " + publication.getTitle());
tabMenu.addWidget(addButton);
addButton.setEnabled(false);
JsonUtils.addTableManagedButton(users, table, addButton);
final TabItem tab = this;
addButton.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
ArrayList<Author> list = users.getTableSelectedList();
if (UiElements.cantSaveEmptyListDialogBox(list)) {
// proceed
for (int i = 0; i < list.size(); i++) {
final String name = list.get(i).getDisplayName();
// add name events
JsonCallbackEvents authorshipEvents = new JsonCallbackEvents() {
public void onFinished(JavaScriptObject jso) {
updateAlreadyAdded(name);
}
};
// merge with refresh?
if (i == list.size() - 1 && events != null) {
authorshipEvents = JsonCallbackEvents.mergeEvents(authorshipEvents, events);
}
// call
CreateAuthorship request = new CreateAuthorship(JsonCallbackEvents.disableButtonEvents(addButton, authorshipEvents));
request.createAuthorship(publicationId, list.get(i).getId());
if (i == list.size() - 1) {
users.clearTableSelectedSet();
}
}
}
}
});
tabMenu.addWidget(TabMenu.getPredefinedButton(ButtonType.CLOSE, "", new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
session.getTabManager().closeTab(tab, isRefreshParentOnClose());
}
}));
tabMenu.addSearchWidget(new PerunSearchEvent() {
@Override
public void searchFor(String text) {
users.searchFor(text);
searchString = text;
}
}, ButtonTranslation.INSTANCE.searchUsers());
// add a class to the table and wrap it into scroll panel
table.addStyleName("perun-table");
ScrollPanel sp = new ScrollPanel(table);
sp.addStyleName("perun-tableScrollPanel");
// add menu to the main panel
firstTabPanel.add(tabMenu);
firstTabPanel.setCellHeight(tabMenu, "30px");
// add already added
firstTabPanel.add(alreadyAddedAuthors);
firstTabPanel.setCellHeight(alreadyAddedAuthors, "30px");
// add table to the main panel
firstTabPanel.add(sp);
// do not resize like perun table to prevent wrong width in inner tab
session.getUiElements().resizeSmallTabPanel(sp, 350, this);
this.contentWidget.setWidget(firstTabPanel);
return getWidget();
}
use of cz.metacentrum.perun.webgui.json.JsonCallbackEvents in project perun by CESNET.
the class SetLogin method setLogin.
/**
* Set new login for user
*
* @param user
* @param namespace
* @param login
*/
public void setLogin(final User user, final String namespace, final String login) {
this.user = user;
this.userId = user.getId();
this.login = login;
this.namespace = namespace;
// test arguments
if (!this.testAdding()) {
return;
}
// new events
JsonCallbackEvents newEvents = new JsonCallbackEvents() {
public void onError(PerunError error) {
session.getUiElements().setLogErrorText("Adding login to user: " + user.getFullName() + " failed.");
// custom events
events.onError(error);
}
public void onFinished(JavaScriptObject jso) {
session.getUiElements().setLogSuccessText("Login successfully added to user: " + user.getFullName());
events.onFinished(jso);
}
public void onLoadingStart() {
events.onLoadingStart();
}
};
// sending data
JsonPostClient jspc = new JsonPostClient(newEvents);
jspc.sendData(JSON_URL, prepareJSONObject());
}
Aggregations