Search in sources :

Example 16 with IRequestWebScopeWithoutResponse

use of com.helger.web.scope.IRequestWebScopeWithoutResponse in project peppol-practical by phax.

the class CommentUI method getCommentList.

@Nonnull
public static IHCNode getCommentList(@Nonnull final ILayoutExecutionContext aLEC, @Nonnull final ITypedObject<String> aObject, @Nonnull final CommentAction aCommentAction, @Nullable final CommentFormErrors aFormErrors, @Nullable final IHCNode aMessageBox, final boolean bShowCreateComments) {
    ValueEnforcer.notNull(aLEC, "LEC");
    ValueEnforcer.notNull(aObject, "Object");
    ValueEnforcer.notNull(aCommentAction, "CommentAction");
    final Locale aDisplayLocale = aLEC.getDisplayLocale();
    final IRequestWebScopeWithoutResponse aRequestScope = aLEC.getRequestScope();
    final HCDiv ret = new HCDiv();
    final String sResultDivID = ret.ensureID().getID();
    final boolean bUserCanCreateComments = CommentSecurity.canCurrentUserPostComments();
    final boolean bIsAdmin = aLEC.isLoggedInUserAdministrator();
    // Get all existing comments
    final List<ICommentThread> aComments = CommentThreadManager.getInstance().getAllCommentThreadsOfObject(aObject);
    if (CollectionHelper.isNotEmpty(aComments)) {
        final IUserManager aUserMgr = PhotonSecurityManager.getUserMgr();
        final boolean bIsCommentModerator = CommentSecurity.isCurrentUserCommentModerator();
        // Container for all threads
        final HCDiv aAllThreadsContainer = new HCDiv().addClass(CCommentCSS.CSS_CLASS_COMMENT_CONTAINER);
        for (final ICommentThread aCommentThread : CollectionHelper.getSorted(aComments, Comparator.comparing(ICommentThread::getInitialCommentCreationDateTime))) {
            // Container for this thread
            final HCDiv aThreadContainer = new HCDiv();
            aThreadContainer.addClass(CCommentCSS.CSS_CLASS_COMMENT_THREAD);
            final NonBlockingStack<AbstractHCDiv<?>> aStack = new NonBlockingStack<>();
            aStack.push(aThreadContainer);
            aCommentThread.iterateAllComments(new ICommentIterationCallback() {

                public void onCommentStart(final int nLevel, @Nullable final IComment aParentComment, @Nonnull final IComment aComment) {
                    // Show only approved comments
                    final boolean bIsApproved = aComment.getState().isApproved();
                    if (bIsApproved || bIsCommentModerator) {
                        // Get author name and determine if it is a registered user
                        boolean bRegisteredUser = false;
                        String sAuthor = null;
                        if (StringHelper.hasText(aComment.getUserID())) {
                            final IUser aUser = aUserMgr.getUserOfID(aComment.getUserID());
                            if (aUser != null) {
                                sAuthor = aUser.getDisplayName();
                                bRegisteredUser = true;
                            }
                        }
                        if (sAuthor == null)
                            sAuthor = aComment.getCreatorName();
                        // Fill panel header
                        final BootstrapCard aCommentPanel = new BootstrapCard();
                        final BootstrapCardHeader aHeader = aCommentPanel.createAndAddHeader();
                        final BootstrapCardBody aBody = aCommentPanel.createAndAddBody();
                        if (!bIsApproved)
                            aHeader.addClass(CBootstrapCSS.BG_DANGER);
                        // Is comment deleted?
                        if (aComment.isDeleted())
                            aHeader.addChild(new HCStrong().addChild(ECommentText.MSG_IS_DELETED.getDisplayText(aDisplayLocale)));
                        // Creation date
                        aHeader.addChild(new HCSpan().addChild(PDTToString.getAsString(aComment.getCreationDateTime(), aDisplayLocale)).addClass(CCommentCSS.CSS_CLASS_COMMENT_CREATIONDT));
                        // Author
                        aHeader.addChild(ECommentText.MSG_BY.getDisplayText(aDisplayLocale));
                        final HCSpan aAuthor = new HCSpan().addChild(sAuthor).addClass(CCommentCSS.CSS_CLASS_COMMENT_AUTHOR);
                        if (bRegisteredUser)
                            aAuthor.addClass(CCommentCSS.CSS_CLASS_COMMENT_REGISTERED_USER);
                        if (bIsAdmin)
                            aAuthor.addChild(bRegisteredUser ? " [registered]" : " [not-registered]");
                        aHeader.addChild(aAuthor);
                        // Title
                        if (StringHelper.hasText(aComment.getTitle())) {
                            aHeader.addChild(ECommentText.MSG_SEPARATOR_AUTHOR_TITLE.getDisplayText(aDisplayLocale));
                            aHeader.addChild(new HCSpan().addChild(aComment.getTitle()).addClass(CCommentCSS.CSS_CLASS_COMMENT_TITLE));
                        }
                        // Toolbar
                        final HCSpan aCommentToolbar = new HCSpan().addClass(CCommentCSS.CSS_CLASS_COMMENT_TOOLBAR);
                        HCDiv aCommentResponseContainer = null;
                        // Respond to a comment - at maximum 6 levels
                        if (bShowCreateComments && bUserCanCreateComments && !aComment.isDeleted() && nLevel < 6) {
                            aCommentResponseContainer = new HCDiv();
                            final BootstrapButton aResponseButton = new BootstrapButton(EBootstrapButtonSize.SMALL).setIcon(EDefaultIcon.ADD);
                            aCommentToolbar.addChild(aResponseButton);
                            aCommentToolbar.addChild(new BootstrapTooltip(aResponseButton).setTitle(ECommentText.TOOLTIP_RESPONSE.getDisplayText(aDisplayLocale)));
                            if (aCommentAction.isMatching(ECommentAction.ADD_COMMENT, aCommentThread, aComment) && aFormErrors != null && aFormErrors.isReplyTo(aCommentThread, aComment)) {
                                // Upon adding a response
                                if (aMessageBox == null || !aFormErrors.isEmpty()) {
                                    // Show the input form again
                                    aCommentResponseContainer.addChild(getCreateComment(aLEC, sResultDivID, aObject, aCommentThread, aComment, aFormErrors, aMessageBox));
                                } else {
                                    // Show the success or error message
                                    aBody.addChild(aMessageBox);
                                }
                            } else {
                                // Add the JS to show the input form
                                final JSAnonymousFunction aOnSuccess = new JSAnonymousFunction();
                                final JSVar aJSData = aOnSuccess.param("data");
                                aOnSuccess.body().add(JQuery.idRef(aCommentResponseContainer).empty().append(aJSData.ref(PhotonUnifiedResponse.HtmlHelper.PROPERTY_HTML)));
                                final JQueryInvocation aResponseAction = new JQueryAjaxBuilder().url(CAjax.COMMENT_SHOW_INPUT.getInvocationURL(aRequestScope)).data(new JSAssocArray().add(AjaxExecutorCommentShowInput.PARAM_OBJECT_TYPE, aObject.getObjectType().getName()).add(AjaxExecutorCommentShowInput.PARAM_OBJECT_ID, aObject.getID()).add(AjaxExecutorCommentShowInput.PARAM_COMMENT_THREAD_ID, aCommentThread.getID()).add(AjaxExecutorCommentShowInput.PARAM_COMMENT_ID, aComment.getID()).add(AjaxExecutorCommentShowInput.PARAM_RESULT_DIV_ID, sResultDivID)).success(JSJQueryHelper.jqueryAjaxSuccessHandler(aOnSuccess, null)).build();
                                aResponseButton.setOnClick(aResponseAction);
                            }
                        }
                        if (bIsCommentModerator) {
                            if (aCommentAction.isMatching(ECommentAction.DELETE_COMMENT, aCommentThread, aComment))
                                aBody.addChild(aMessageBox);
                            // Can the comment be deleted?
                            if (!aComment.isDeleted()) {
                                final BootstrapButton aDeleteButton = new BootstrapButton(EBootstrapButtonSize.SMALL).setIcon(EDefaultIcon.DELETE);
                                aCommentToolbar.addChild(aDeleteButton);
                                aCommentToolbar.addChild(new BootstrapTooltip(aDeleteButton).setTitle(ECommentText.TOOLTIP_DELETE.getDisplayText(aDisplayLocale)));
                                final JSAnonymousFunction aOnSuccess = new JSAnonymousFunction();
                                final JSVar aJSData = aOnSuccess.param("data");
                                aOnSuccess.body().add(JQuery.idRef(sResultDivID).replaceWith(aJSData.ref(PhotonUnifiedResponse.HtmlHelper.PROPERTY_HTML)));
                                final JQueryInvocation aDeleteAction = new JQueryAjaxBuilder().url(CAjax.COMMENT_DELETE.getInvocationURL(aRequestScope)).data(new JSAssocArray().add(AjaxExecutorCommentDelete.PARAM_OBJECT_TYPE, aObject.getObjectType().getName()).add(AjaxExecutorCommentDelete.PARAM_OBJECT_ID, aObject.getID()).add(AjaxExecutorCommentDelete.PARAM_COMMENT_THREAD_ID, aCommentThread.getID()).add(AjaxExecutorCommentDelete.PARAM_COMMENT_ID, aComment.getID())).success(JSJQueryHelper.jqueryAjaxSuccessHandler(aOnSuccess, null)).build();
                                aDeleteButton.setOnClick(aDeleteAction);
                            }
                            // Show source host and further info
                            aCommentToolbar.addChild(BootstrapSimpleTooltip.createSimpleTooltip(ECommentText.TOOLTIP_HOST.getDisplayTextWithArgs(aDisplayLocale, aComment.getHost())));
                        }
                        if (aCommentToolbar.hasChildren())
                            aHeader.addChild(aCommentToolbar);
                        // Last modification
                        if (aComment.getLastModificationDateTime() != null) {
                            final String sLastModDT = PDTToString.getAsString(aComment.getLastModificationDateTime(), aDisplayLocale);
                            final String sLastModText = aComment.getEditCount() > 0 ? ECommentText.MSG_EDITED_AND_LAST_MODIFICATION.getDisplayTextWithArgs(aDisplayLocale, Integer.valueOf(aComment.getEditCount()), sLastModDT) : ECommentText.MSG_LAST_MODIFICATION.getDisplayTextWithArgs(aDisplayLocale, sLastModDT);
                            aHeader.addChild(new HCDiv().addChild(sLastModText).addClass(CCommentCSS.CSS_CLASS_COMMENT_LAST_MODIFICATION));
                        }
                        // Show the main comment text
                        aBody.addClass(CCommentCSS.CSS_CLASS_SINGLE_COMMENT);
                        // Always put the text as the first part of the body
                        aBody.addChildAt(0, new HCDiv().addChildren(HCExtHelper.nl2brList(aComment.getText())).addClass(CCommentCSS.CSS_CLASS_COMMENT_TEXT));
                        // the dummy container for new comment form
                        aBody.addChild(aCommentResponseContainer);
                        aStack.peek().addChild(aCommentPanel);
                        aStack.push(aBody);
                    } else {
                        // Don't display - push the previous item
                        aStack.push(aStack.peek());
                    }
                }

                public void onCommentEnd(final int nLevel, @Nullable final IComment aParentComment, @Nonnull final IComment aComment) {
                    aStack.pop();
                }
            });
            // Show only thread panels which contain at least one comment
            if (aThreadContainer.hasChildren())
                aAllThreadsContainer.addChild(aThreadContainer);
        }
        ret.addChild(aAllThreadsContainer);
    }
    if (bShowCreateComments) {
        // Create comment only for logged in users
        if (bUserCanCreateComments) {
            // Add "create comment" button
            final boolean bIsForCreateThread = aCommentAction.isMatching(ECommentAction.CREATE_THREAD);
            ret.addChild(getCreateComment(aLEC, sResultDivID, aObject, null, null, bIsForCreateThread ? aFormErrors : null, bIsForCreateThread ? aMessageBox : null));
        } else
            ret.addChild(new BootstrapBadge(EBootstrapBadgeType.INFO).addChild(ECommentText.MSG_LOGIN_TO_COMMENT.getDisplayText(aDisplayLocale)));
    }
    return ret;
}
Also used : Locale(java.util.Locale) HCDiv(com.helger.html.hc.html.grouping.HCDiv) AbstractHCDiv(com.helger.html.hc.html.grouping.AbstractHCDiv) BootstrapCardHeader(com.helger.photon.bootstrap4.card.BootstrapCardHeader) IComment(com.helger.peppol.comment.domain.IComment) JQueryInvocation(com.helger.html.jquery.JQueryInvocation) IUserManager(com.helger.photon.security.user.IUserManager) PDTToString(com.helger.commons.datetime.PDTToString) ICommentThread(com.helger.peppol.comment.domain.ICommentThread) HCSpan(com.helger.html.hc.html.textlevel.HCSpan) JQueryAjaxBuilder(com.helger.html.jquery.JQueryAjaxBuilder) IUser(com.helger.photon.security.user.IUser) ICommentIterationCallback(com.helger.peppol.comment.domain.ICommentIterationCallback) BootstrapCard(com.helger.photon.bootstrap4.card.BootstrapCard) HCStrong(com.helger.html.hc.html.textlevel.HCStrong) JSAnonymousFunction(com.helger.html.jscode.JSAnonymousFunction) BootstrapBadge(com.helger.photon.bootstrap4.badge.BootstrapBadge) JSVar(com.helger.html.jscode.JSVar) IRequestWebScopeWithoutResponse(com.helger.web.scope.IRequestWebScopeWithoutResponse) AbstractHCDiv(com.helger.html.hc.html.grouping.AbstractHCDiv) BootstrapTooltip(com.helger.photon.bootstrap4.tooltip.BootstrapTooltip) BootstrapCardBody(com.helger.photon.bootstrap4.card.BootstrapCardBody) BootstrapButton(com.helger.photon.bootstrap4.button.BootstrapButton) JSAssocArray(com.helger.html.jscode.JSAssocArray) NonBlockingStack(com.helger.commons.collection.NonBlockingStack) Nonnull(javax.annotation.Nonnull)

Example 17 with IRequestWebScopeWithoutResponse

use of com.helger.web.scope.IRequestWebScopeWithoutResponse in project peppol-practical by phax.

the class CommentUI method getCreateComment.

@Nonnull
public static IHCNode getCreateComment(@Nonnull final ILayoutExecutionContext aLEC, @Nonnull final String sResultDivID, @Nonnull final ITypedObject<String> aObject, @Nullable final ICommentThread aCommentThread, @Nullable final IComment aParentComment, @Nullable final CommentFormErrors aFormErrors, @Nullable final IHCNode aMessageBox) {
    final IRequestWebScopeWithoutResponse aRequestScope = aLEC.getRequestScope();
    final Locale aDisplayLocale = aLEC.getDisplayLocale();
    final IUser aLoggedInUser = LoggedInUserManager.getInstance().getCurrentUser();
    final boolean bIsCreateNewThread = aCommentThread == null || aParentComment == null;
    final HCDiv aFormContainer = new HCDiv();
    if (bIsCreateNewThread)
        if (aFormErrors == null || aFormErrors.isEmpty())
            aFormContainer.addStyle(CCSSProperties.DISPLAY_NONE);
    aFormContainer.addClass(CCommentCSS.CSS_CLASS_COMMENT_CREATE);
    if (aFormErrors != null && !aFormErrors.isEmpty())
        aFormContainer.addChild(new BootstrapErrorBox().addChild(EPhotonCoreText.ERR_INCORRECT_INPUT.getDisplayText(aDisplayLocale)));
    final BootstrapViewForm aForm = aFormContainer.addAndReturnChild(new BootstrapViewForm());
    aForm.setTitle(ECommentText.MSG_CREATE_COMMENT.getDisplayText(aDisplayLocale));
    HCEdit aEditAuthor = null;
    if (aLoggedInUser != null) {
        aForm.addFormGroup(new BootstrapFormGroup().setLabelMandatory(ECommentText.MSG_FIELD_AUTHOR.getDisplayText(aDisplayLocale)).setCtrl(aLoggedInUser.getDisplayName()));
    } else {
        aEditAuthor = new HCEdit(new RequestField(FIELD_COMMENT_AUTHOR));
        aForm.addFormGroup(new BootstrapFormGroup().setLabelMandatory(ECommentText.MSG_FIELD_AUTHOR.getDisplayText(aDisplayLocale)).setCtrl(aEditAuthor).setHelpText(ECommentText.DESC_FIELD_AUTHOR.getDisplayText(aDisplayLocale)).setErrorList(aFormErrors == null ? null : aFormErrors.getListOfField(FIELD_COMMENT_AUTHOR)));
    }
    final HCEdit aEditTitle = new HCEdit(new RequestField(FIELD_COMMENT_TITLE));
    aForm.addFormGroup(new BootstrapFormGroup().setLabel(ECommentText.MSG_FIELD_TITLE.getDisplayText(aDisplayLocale)).setCtrl(aEditTitle).setHelpText(ECommentText.DESC_FIELD_TITLE.getDisplayText(aDisplayLocale)).setErrorList(aFormErrors == null ? null : aFormErrors.getListOfField(FIELD_COMMENT_TITLE)));
    final HCTextAreaAutosize aTextAreaContent = new HCTextAreaAutosize(new RequestField(FIELD_COMMENT_TEXT)).setRows(5);
    aForm.addFormGroup(new BootstrapFormGroup().setLabelMandatory(ECommentText.MSG_FIELD_TEXT.getDisplayText(aDisplayLocale)).setCtrl(aTextAreaContent).setHelpText(ECommentText.DESC_FIELD_TEXT.getDisplayText(aDisplayLocale)).setErrorList(aFormErrors == null ? null : aFormErrors.getListOfField(FIELD_COMMENT_TEXT)));
    final BootstrapButtonToolbar aToolbar = new BootstrapButtonToolbar(aLEC);
    // What to do on save?
    {
        final JSAnonymousFunction aOnSuccess = new JSAnonymousFunction();
        final JSVar aJSData = aOnSuccess.param("data");
        aOnSuccess.body().add(JQuery.idRef(sResultDivID).replaceWith(aJSData.ref(PhotonUnifiedResponse.HtmlHelper.PROPERTY_HTML)));
        JQueryInvocation aSaveAction;
        if (bIsCreateNewThread) {
            // Create a new thread
            aSaveAction = new JQueryAjaxBuilder().url(CAjax.COMMENT_CREATE_THREAD.getInvocationURL(aRequestScope)).data(new JSAssocArray().add(AjaxExecutorCommentCreateThread.PARAM_OBJECT_TYPE, aObject.getObjectType().getName()).add(AjaxExecutorCommentCreateThread.PARAM_OBJECT_ID, aObject.getID()).add(AjaxExecutorCommentCreateThread.PARAM_AUTHOR, aLoggedInUser != null ? JSExpr.lit("") : JQuery.idRef(aEditAuthor).val()).add(AjaxExecutorCommentCreateThread.PARAM_TITLE, JQuery.idRef(aEditTitle).val()).add(AjaxExecutorCommentCreateThread.PARAM_TEXT, JQuery.idRef(aTextAreaContent).val())).success(JSJQueryHelper.jqueryAjaxSuccessHandler(aOnSuccess, null)).build();
        } else {
            // Reply to a previous comment
            aSaveAction = new JQueryAjaxBuilder().url(CAjax.COMMENT_ADD.getInvocationURL(aRequestScope)).data(new JSAssocArray().add(AjaxExecutorCommentAdd.PARAM_OBJECT_TYPE, aObject.getObjectType().getName()).add(AjaxExecutorCommentAdd.PARAM_OBJECT_ID, aObject.getID()).add(AjaxExecutorCommentAdd.PARAM_COMMENT_THREAD_ID, aCommentThread.getID()).add(AjaxExecutorCommentAdd.PARAM_COMMENT_ID, aParentComment.getID()).add(AjaxExecutorCommentAdd.PARAM_OBJECT_ID, aObject.getID()).add(AjaxExecutorCommentAdd.PARAM_AUTHOR, aLoggedInUser != null ? JSExpr.lit("") : JQuery.idRef(aEditAuthor).val()).add(AjaxExecutorCommentAdd.PARAM_TITLE, JQuery.idRef(aEditTitle).val()).add(AjaxExecutorCommentAdd.PARAM_TEXT, JQuery.idRef(aTextAreaContent).val())).success(JSJQueryHelper.jqueryAjaxSuccessHandler(aOnSuccess, null)).build();
        }
        aToolbar.addButtonSave(aDisplayLocale, aSaveAction);
    }
    BootstrapButton aButtonCreate = null;
    if (bIsCreateNewThread) {
        // The create button
        aButtonCreate = new BootstrapButton().addChild(ECommentText.MSG_CREATE_COMMENT.getDisplayText(aDisplayLocale));
        aButtonCreate.setOnClick(new JSStatementList(JQuery.idRef(aFormContainer).show(), JQuery.jQueryThis().disable()));
    }
    // What to do on cancel?
    {
        final JSStatementList aCancelAction = new JSStatementList(JQuery.idRefMultiple(aEditTitle, aTextAreaContent).val(""), JQuery.idRef(aFormContainer).hide());
        if (aButtonCreate != null)
            aCancelAction.add(JQuery.idRef(aButtonCreate).enable());
        if (aEditAuthor != null)
            aCancelAction.add(JQuery.idRef(aEditAuthor).val(""));
        aToolbar.addButtonCancel(aDisplayLocale, aCancelAction);
    }
    aFormContainer.addChild(aToolbar);
    // Show create comment button
    final HCNodeList ret = new HCNodeList();
    ret.addChild(aButtonCreate);
    ret.addChild(aFormContainer);
    ret.addChild(aMessageBox);
    return ret;
}
Also used : Locale(java.util.Locale) HCDiv(com.helger.html.hc.html.grouping.HCDiv) AbstractHCDiv(com.helger.html.hc.html.grouping.AbstractHCDiv) JSAnonymousFunction(com.helger.html.jscode.JSAnonymousFunction) JQueryInvocation(com.helger.html.jquery.JQueryInvocation) HCNodeList(com.helger.html.hc.impl.HCNodeList) BootstrapErrorBox(com.helger.photon.bootstrap4.alert.BootstrapErrorBox) HCTextAreaAutosize(com.helger.photon.uictrls.autosize.HCTextAreaAutosize) JSVar(com.helger.html.jscode.JSVar) BootstrapViewForm(com.helger.photon.bootstrap4.form.BootstrapViewForm) HCEdit(com.helger.html.hc.html.forms.HCEdit) JSStatementList(com.helger.html.jscode.JSStatementList) IRequestWebScopeWithoutResponse(com.helger.web.scope.IRequestWebScopeWithoutResponse) JQueryAjaxBuilder(com.helger.html.jquery.JQueryAjaxBuilder) IUser(com.helger.photon.security.user.IUser) JSAssocArray(com.helger.html.jscode.JSAssocArray) BootstrapButton(com.helger.photon.bootstrap4.button.BootstrapButton) BootstrapButtonToolbar(com.helger.photon.bootstrap4.buttongroup.BootstrapButtonToolbar) BootstrapFormGroup(com.helger.photon.bootstrap4.form.BootstrapFormGroup) RequestField(com.helger.photon.core.form.RequestField) Nonnull(javax.annotation.Nonnull)

Example 18 with IRequestWebScopeWithoutResponse

use of com.helger.web.scope.IRequestWebScopeWithoutResponse in project peppol-practical by phax.

the class PagePublicToolsParticipantInformation method _queryParticipant.

private void _queryParticipant(@Nonnull final WebPageExecutionContext aWPEC, final String sParticipantIDScheme, final String sParticipantIDValue, final ISMLConfiguration aSMLConfiguration, final boolean bSMLAutoDetect, final boolean bQueryBusinessCard, final boolean bShowTime, final boolean bXSDValidation, final boolean bVerifySignatures) {
    final HCNodeList aNodeList = aWPEC.getNodeList();
    final Locale aDisplayLocale = aWPEC.getDisplayLocale();
    final IRequestWebScopeWithoutResponse aRequestScope = aWPEC.getRequestScope();
    final ISMLConfigurationManager aSMLConfigurationMgr = PPMetaManager.getSMLConfigurationMgr();
    final String sParticipantIDUriEncoded = CIdentifier.getURIEncoded(sParticipantIDScheme, sParticipantIDValue);
    LOGGER.info("Start querying the Participant information of '" + sParticipantIDUriEncoded + "'");
    // Try to print the basic information before an error occurs
    aNodeList.addChild(div("Querying the following SMP for ").addChild(code(sParticipantIDUriEncoded)).addChild(":"));
    final ICommonsList<JAXBException> aSMPExceptions = new CommonsArrayList<>();
    try {
        SMPQueryParams aQueryParams = null;
        ISMLConfiguration aRealSMLConfiguration = aSMLConfiguration;
        if (bSMLAutoDetect) {
            final ICommonsList<ISMLConfiguration> aSortedList = aSMLConfigurationMgr.getAllSorted();
            if (LOGGER.isDebugEnabled())
                LOGGER.debug("Sorted SML Configs: " + StringHelper.getImplodedMapped(", ", aSortedList, ISMLConfiguration::getID));
            for (final ISMLConfiguration aCurSML : aSortedList) {
                aQueryParams = SMPQueryParams.createForSML(aCurSML, sParticipantIDScheme, sParticipantIDValue, false);
                if (aQueryParams == null)
                    continue;
                try {
                    InetAddress.getByName(aQueryParams.getSMPHostURI().getHost());
                    // Found it
                    aRealSMLConfiguration = aCurSML;
                    break;
                } catch (final UnknownHostException ex) {
                // continue
                }
            }
            // Ensure to go into the exception handler
            if (aRealSMLConfiguration == null) {
                LOGGER.error("Failed to autodetect a matching SML for '" + sParticipantIDUriEncoded + "'");
                aNodeList.addChild(error(div("Seems like the participant ID " + sParticipantIDUriEncoded + " is not known in any of the configured networks.")));
                // Audit failure
                AuditHelper.onAuditExecuteFailure("participant-information", sParticipantIDUriEncoded, "no-sml-found");
                return;
            }
            LOGGER.info("Participant ID '" + sParticipantIDUriEncoded + "': auto detected SML " + aRealSMLConfiguration.getID());
        } else {
            // SML configuration is not null
            aQueryParams = SMPQueryParams.createForSML(aRealSMLConfiguration, sParticipantIDScheme, sParticipantIDValue, true);
        }
        if (aQueryParams == null) {
            LOGGER.error("Participant ID '" + sParticipantIDUriEncoded + "': failed to resolve SMP query parameters for SML '" + aRealSMLConfiguration.getID() + "'");
            aNodeList.addChild(error(div("Failed to resolve participant ID " + sParticipantIDUriEncoded + " for the provided network.")).addChild(bSMLAutoDetect ? null : div("Try selecting a different SML - maybe this helps")));
            // Audit failure
            AuditHelper.onAuditExecuteFailure("participant-information", sParticipantIDUriEncoded, "smp-query-params-null");
            return;
        }
        LOGGER.info("Participant information of '" + sParticipantIDUriEncoded + "' is queried using SMP API '" + aQueryParams.getSMPAPIType() + "' from '" + aQueryParams.getSMPHostURI() + "' using SML '" + aRealSMLConfiguration + "'; XSD validation=" + bXSDValidation + "; verify signatures=" + bVerifySignatures);
        final IParticipantIdentifier aParticipantID = aQueryParams.getParticipantID();
        final URL aSMPHost = URLHelper.getAsURL(aQueryParams.getSMPHostURI());
        {
            if (LOGGER.isDebugEnabled())
                LOGGER.debug("Trying to resolve SMP '" + aSMPHost.getHost() + "' by DNS");
            final HCUL aUL = new HCUL();
            aNodeList.addChild(aUL);
            aUL.addItem(div("SML used: ").addChild(code(aRealSMLConfiguration.getDisplayName() + " / " + aRealSMLConfiguration.getDNSZone())).addChild(" ").addChild(aRealSMLConfiguration.isProduction() ? badgeSuccess("production SML") : badgeWarn("test SML")));
            aUL.addItem(div("Query API: " + aRealSMLConfiguration.getSMPAPIType().getDisplayName()));
            final String sURL1 = aSMPHost.toExternalForm();
            aUL.addItem(div("Resolved name: ").addChild(code(sURL1)), div(_createOpenInBrowser(sURL1)));
            if (aWPEC.params().hasStringValue("dnsjava", "true")) {
                LOGGER.info("Start DNSJava lookup");
                Record[] aRecords = null;
                try {
                    aRecords = new Lookup(aSMPHost.getHost(), Type.A).run();
                } catch (final TextParseException ex) {
                // Ignore
                }
                if (aRecords != null)
                    for (final Record aRecord : aRecords) {
                        final ARecord aARec = (ARecord) aRecord;
                        final String sURL2 = aARec.rdataToString();
                        final InetAddress aNice = aARec.getAddress();
                        final String sURL3 = aNice != null ? aNice.getCanonicalHostName() : null;
                        final HCDiv aDiv1 = div("[dnsjava] IP addressX: ").addChild(code(sURL2));
                        if (sURL3 != null)
                            aDiv1.addChild(" - reverse lookup: ").addChild(code(sURL3));
                        else
                            aDiv1.addChild(" - reverse lookup failed");
                        final HCDiv aDiv2 = div(_createOpenInBrowser("http://" + sURL2, "Open IP in browser"));
                        if (sURL3 != null)
                            aDiv2.addChild(" ").addChild(_createOpenInBrowser("http://" + sURL3, "Open name in browser"));
                        aUL.addItem(aDiv1, aDiv2);
                    }
                LOGGER.info("Finished DNSJava lookup - " + (aRecords == null ? "no results" : aRecords.length + " result records"));
            }
            try {
                final InetAddress[] aInetAddresses = InetAddress.getAllByName(aSMPHost.getHost());
                for (final InetAddress aInetAddress : aInetAddresses) {
                    final String sURL2 = new IPV4Addr(aInetAddress).getAsString();
                    final InetAddress aNice = InetAddress.getByAddress(aInetAddress.getAddress());
                    final String sURL3 = aNice.getCanonicalHostName();
                    aUL.addItem(div("IP address: ").addChild(code(sURL2)).addChild(" - reverse lookup: ").addChild(code(sURL3)), div(_createOpenInBrowser("http://" + sURL2, "Open IP in browser")).addChild(" ").addChild(_createOpenInBrowser("http://" + sURL3, "Open name in browser")));
                }
                // Show only once
                final String sURL4 = sURL1 + (sURL1.endsWith("/") ? "" : "/") + sParticipantIDUriEncoded;
                aUL.addItem(div("Query base URL: ").addChild(code(sURL4)), div(_createOpenInBrowser(sURL4)));
                if (!bXSDValidation)
                    aUL.addItem(badgeWarn("XML Schema validation of SMP responses is disabled."));
                if (!bVerifySignatures)
                    aUL.addItem(badgeDanger("Signature verification of SMP responses is disabled."));
            } catch (final UnknownHostException ex) {
                LOGGER.error("Failed to resolve SMP host '" + aSMPHost.getHost() + "' for the participant ID '" + sParticipantIDUriEncoded + "'");
                aNodeList.addChild(error(div("Seems like the participant ID " + sParticipantIDUriEncoded + " is not registered to the selected network.")).addChild(AppCommonUI.getTechnicalDetailsUI(ex, false)).addChild(bSMLAutoDetect ? null : div("Try selecting a different SML - maybe this helps")));
                // Audit failure
                AuditHelper.onAuditExecuteFailure("participant-information", sParticipantIDUriEncoded, "unknown-host", ex.getMessage());
                return;
            }
        }
        // Determine all document types
        final ICommonsList<IDocumentTypeIdentifier> aDocTypeIDs = new CommonsArrayList<>();
        SMPClientReadOnly aSMPClient = null;
        BDXRClientReadOnly aBDXR1Client = null;
        final Consumer<GenericJAXBMarshaller<?>> aSMPMarshallerCustomizer = m -> {
            aSMPExceptions.clear();
            // Remember exceptions
            m.readExceptionCallbacks().add(aSMPExceptions::add);
        };
        try {
            final StopWatch aSWGetDocTypes = StopWatch.createdStarted();
            final HCUL aSGUL = new HCUL();
            final ICommonsSortedMap<String, String> aSGHrefs = new CommonsTreeMap<>();
            IHCNode aSGExtension = null;
            switch(aQueryParams.getSMPAPIType()) {
                case PEPPOL:
                    {
                        aSMPClient = new SMPClientReadOnly(aQueryParams.getSMPHostURI());
                        aSMPClient.setXMLSchemaValidation(bXSDValidation);
                        aSMPClient.setVerifySignature(bVerifySignatures);
                        aSMPClient.setMarshallerCustomizer(aSMPMarshallerCustomizer);
                        // Get all HRefs and sort them by decoded URL
                        final com.helger.xsds.peppol.smp1.ServiceGroupType aSG = aSMPClient.getServiceGroupOrNull(aParticipantID);
                        if (aSG != null) {
                            // Map from cleaned URL to original URL
                            if (aSG.getServiceMetadataReferenceCollection() != null)
                                for (final com.helger.xsds.peppol.smp1.ServiceMetadataReferenceType aSMR : aSG.getServiceMetadataReferenceCollection().getServiceMetadataReference()) {
                                    // Decoded href is important for unification
                                    final String sHref = CIdentifier.createPercentDecoded(aSMR.getHref());
                                    if (aSGHrefs.put(sHref, aSMR.getHref()) != null)
                                        aSGUL.addItem(warn("The ServiceGroup list contains the duplicate URL ").addChild(code(sHref)));
                                }
                            if (aSG.getExtension() != null && aSG.getExtension().getAny() != null) {
                                aSGExtension = new HCPrismJS(EPrismLanguage.MARKUP).addChild(XMLWriter.getNodeAsString(aSG.getExtension().getAny()));
                            }
                        }
                        break;
                    }
                case OASIS_BDXR_V1:
                    {
                        aBDXR1Client = new BDXRClientReadOnly(aQueryParams.getSMPHostURI());
                        aBDXR1Client.setXMLSchemaValidation(bXSDValidation);
                        aBDXR1Client.setVerifySignature(bVerifySignatures);
                        aBDXR1Client.setMarshallerCustomizer(aSMPMarshallerCustomizer);
                        // Get all HRefs and sort them by decoded URL
                        final com.helger.xsds.bdxr.smp1.ServiceGroupType aSG = aBDXR1Client.getServiceGroupOrNull(aParticipantID);
                        // Map from cleaned URL to original URL
                        if (aSG != null) {
                            if (aSG.getServiceMetadataReferenceCollection() != null)
                                for (final com.helger.xsds.bdxr.smp1.ServiceMetadataReferenceType aSMR : aSG.getServiceMetadataReferenceCollection().getServiceMetadataReference()) {
                                    // Decoded href is important for unification
                                    final String sHref = CIdentifier.createPercentDecoded(aSMR.getHref());
                                    if (aSGHrefs.put(sHref, aSMR.getHref()) != null)
                                        aSGUL.addItem(warn("The ServiceGroup list contains the duplicate URL ").addChild(code(sHref)));
                                }
                            if (aSG.getExtensionCount() > 0) {
                                final HCUL aNL2 = new HCUL();
                                for (final com.helger.xsds.bdxr.smp1.ExtensionType aExt : aSG.getExtension()) if (aExt.getAny() != null) {
                                    if (aExt.getAny() instanceof Element)
                                        aNL2.addItem(new HCPrismJS(EPrismLanguage.MARKUP).addChild(XMLWriter.getNodeAsString((Element) aExt.getAny())));
                                    else
                                        aNL2.addItem(code(aExt.getAny().toString()));
                                }
                                if (aNL2.hasChildren())
                                    aSGExtension = aNL2;
                            }
                        }
                        break;
                    }
            }
            aSWGetDocTypes.stop();
            LOGGER.info("Participant information of '" + aParticipantID.getURIEncoded() + "' returned " + aSGHrefs.size() + " entries");
            final HCH3 aH3 = h3("ServiceGroup contents");
            if (bShowTime)
                aH3.addChild(" ").addChild(_createTimingNode(aSWGetDocTypes.getMillis()));
            aNodeList.addChild(aH3);
            final String sPathStart = "/" + aParticipantID.getURIEncoded() + "/services/";
            // Show all ServiceGroup hrefs
            for (final Map.Entry<String, String> aEntry : aSGHrefs.entrySet()) {
                final String sHref = aEntry.getKey();
                final String sOriginalHref = aEntry.getValue();
                final IHCLI<?> aLI = aSGUL.addAndReturnItem(div(code(sHref)));
                // Should be case insensitive "indexOf" here
                final int nPathStart = sHref.toLowerCase(Locale.US).indexOf(sPathStart.toLowerCase(Locale.US));
                if (nPathStart >= 0) {
                    final String sDocType = sHref.substring(nPathStart + sPathStart.length());
                    final IDocumentTypeIdentifier aDocType = aQueryParams.getIF().parseDocumentTypeIdentifier(sDocType);
                    if (aDocType != null) {
                        aDocTypeIDs.add(aDocType);
                        aLI.addChild(div(EFontAwesome4Icon.ARROW_RIGHT.getAsNode()).addChild(" ").addChild(AppCommonUI.createDocTypeID(aDocType, false)));
                        aLI.addChild(div(EFontAwesome4Icon.ARROW_RIGHT.getAsNode()).addChild(" ").addChild(_createOpenInBrowser(sOriginalHref)));
                    } else {
                        aLI.addChild(error("The document type ").addChild(code(sDocType)).addChild(" could not be interpreted as a structured document type!"));
                    }
                } else {
                    aLI.addChild(error().addChildren(div("Contained href does not match the rules!"), div("Found href: ").addChild(code(sHref)), div("Expected path part: ").addChild(code(sPathStart))));
                }
            }
            if (!aSGUL.hasChildren())
                aSGUL.addItem(warn("No service group entries were found for " + aParticipantID.getURIEncoded()));
            if (aSGExtension != null)
                aSGUL.addAndReturnItem(div("Extension:")).addChild(aSGExtension);
            aNodeList.addChild(aSGUL);
        } catch (final SMPClientException ex) {
            if (LOGGER.isDebugEnabled())
                LOGGER.debug("Participant DocTypes Error", ex);
            else if (LOGGER.isWarnEnabled())
                LOGGER.warn("Participant DocTypes Error: " + ex.getClass().getName() + " - " + ex.getMessage());
            final BootstrapErrorBox aErrorBox = error(div("Error querying SMP.")).addChild(AppCommonUI.getTechnicalDetailsUI(ex, false));
            for (final JAXBException aItem : aSMPExceptions) aErrorBox.addChild(AppCommonUI.getTechnicalDetailsUI(aItem, false));
            aNodeList.addChild(aErrorBox);
            // Audit failure
            AuditHelper.onAuditExecuteFailure("participant-doctypes", sParticipantIDUriEncoded, ex.getClass(), ex.getMessage());
        }
        // List document type details
        if (aDocTypeIDs.isNotEmpty()) {
            final OffsetDateTime aNowDateTime = PDTFactory.getCurrentOffsetDateTime();
            final ICommonsOrderedSet<X509Certificate> aAllUsedEndpointCertifiactes = new CommonsLinkedHashSet<>();
            long nTotalDurationMillis = 0;
            aNodeList.addChild(h3("Document type details"));
            final HCUL aULDocTypeIDs = new HCUL();
            for (final IDocumentTypeIdentifier aDocTypeID : aDocTypeIDs.getSortedInline(IDocumentTypeIdentifier.comparator())) {
                final HCDiv aDocTypeDiv = div(AppCommonUI.createDocTypeID(aDocTypeID, true));
                final IHCLI<?> aLIDocTypeID = aULDocTypeIDs.addAndReturnItem(aDocTypeDiv);
                LOGGER.info("Now SMP querying '" + aParticipantID.getURIEncoded() + "' / '" + aDocTypeID.getURIEncoded() + "'");
                final StopWatch aSWGetDetails = StopWatch.createdStarted();
                try {
                    switch(aQueryParams.getSMPAPIType()) {
                        case PEPPOL:
                            {
                                final com.helger.xsds.peppol.smp1.SignedServiceMetadataType aSSM = aSMPClient.getServiceMetadataOrNull(aParticipantID, aDocTypeID);
                                aSWGetDetails.stop();
                                if (aSSM != null) {
                                    final com.helger.xsds.peppol.smp1.ServiceMetadataType aSM = aSSM.getServiceMetadata();
                                    if (aSM.getRedirect() != null)
                                        aLIDocTypeID.addChild(div("Redirect to " + aSM.getRedirect().getHref()));
                                    else {
                                        // For all processes
                                        final HCUL aULProcessID = new HCUL();
                                        for (final com.helger.xsds.peppol.smp1.ProcessType aProcess : aSM.getServiceInformation().getProcessList().getProcess()) if (aProcess.getProcessIdentifier() != null) {
                                            final IHCLI<?> aLIProcessID = aULProcessID.addItem();
                                            aLIProcessID.addChild(div("Process ID: ").addChild(AppCommonUI.createProcessID(aDocTypeID, SimpleProcessIdentifier.wrap(aProcess.getProcessIdentifier()))));
                                            final HCUL aULEndpoint = new HCUL();
                                            // For all endpoints of the process
                                            for (final com.helger.xsds.peppol.smp1.EndpointType aEndpoint : aProcess.getServiceEndpointList().getEndpoint()) {
                                                final IHCLI<?> aLIEndpoint = aULEndpoint.addItem();
                                                // Endpoint URL
                                                final String sEndpointRef = aEndpoint.getEndpointReference() == null ? null : W3CEndpointReferenceHelper.getAddress(aEndpoint.getEndpointReference());
                                                _printEndpointURL(aLIEndpoint, sEndpointRef);
                                                // Valid from
                                                _printActivationDate(aLIEndpoint, aEndpoint.getServiceActivationDate(), aDisplayLocale);
                                                // Valid to
                                                _printExpirationDate(aLIEndpoint, aEndpoint.getServiceExpirationDate(), aDisplayLocale);
                                                // Transport profile
                                                _printTransportProfile(aLIEndpoint, aEndpoint.getTransportProfile());
                                                // Technical infos
                                                _printTecInfo(aLIEndpoint, aEndpoint.getTechnicalInformationUrl(), aEndpoint.getTechnicalContactUrl());
                                                // Certificate (also add null values)
                                                final X509Certificate aCert = CertificateHelper.convertStringToCertficateOrNull(aEndpoint.getCertificate());
                                                aAllUsedEndpointCertifiactes.add(aCert);
                                            }
                                            aLIProcessID.addChild(aULEndpoint);
                                        }
                                        aLIDocTypeID.addChild(aULProcessID);
                                    }
                                } else {
                                    aLIDocTypeID.addChild(error("Failed to read service metadata from SMP (not found)"));
                                }
                                break;
                            }
                        case OASIS_BDXR_V1:
                            {
                                final com.helger.xsds.bdxr.smp1.SignedServiceMetadataType aSSM = aBDXR1Client.getServiceMetadataOrNull(aParticipantID, aDocTypeID);
                                aSWGetDetails.stop();
                                if (aSSM != null) {
                                    final com.helger.xsds.bdxr.smp1.ServiceMetadataType aSM = aSSM.getServiceMetadata();
                                    if (aSM.getRedirect() != null)
                                        aLIDocTypeID.addChild(div("Redirect to " + aSM.getRedirect().getHref()));
                                    else {
                                        // For all processes
                                        final HCUL aULProcessID = new HCUL();
                                        for (final com.helger.xsds.bdxr.smp1.ProcessType aProcess : aSM.getServiceInformation().getProcessList().getProcess()) if (aProcess.getProcessIdentifier() != null) {
                                            final IHCLI<?> aLIProcessID = aULProcessID.addItem();
                                            aLIProcessID.addChild(div("Process ID: ").addChild(AppCommonUI.createProcessID(aDocTypeID, SimpleProcessIdentifier.wrap(aProcess.getProcessIdentifier()))));
                                            final HCUL aULEndpoint = new HCUL();
                                            // For all endpoints of the process
                                            for (final com.helger.xsds.bdxr.smp1.EndpointType aEndpoint : aProcess.getServiceEndpointList().getEndpoint()) {
                                                final IHCLI<?> aLIEndpoint = aULEndpoint.addItem();
                                                // Endpoint URL
                                                _printEndpointURL(aLIEndpoint, aEndpoint.getEndpointURI());
                                                // Valid from
                                                _printActivationDate(aLIEndpoint, aEndpoint.getServiceActivationDate(), aDisplayLocale);
                                                // Valid to
                                                _printExpirationDate(aLIEndpoint, aEndpoint.getServiceExpirationDate(), aDisplayLocale);
                                                // Transport profile
                                                _printTransportProfile(aLIEndpoint, aEndpoint.getTransportProfile());
                                                // Technical infos
                                                _printTecInfo(aLIEndpoint, aEndpoint.getTechnicalInformationUrl(), aEndpoint.getTechnicalContactUrl());
                                                // Certificate (also add null values)
                                                try {
                                                    final X509Certificate aCert = CertificateHelper.convertByteArrayToCertficateDirect(aEndpoint.getCertificate());
                                                    aAllUsedEndpointCertifiactes.add(aCert);
                                                } catch (final CertificateException ex) {
                                                    aAllUsedEndpointCertifiactes.add(null);
                                                }
                                            }
                                            aLIProcessID.addChild(aULEndpoint);
                                        }
                                        aLIDocTypeID.addChild(aULProcessID);
                                    }
                                } else {
                                    aLIDocTypeID.addChild(error("Failed to read service metadata from SMP (not found)"));
                                }
                                break;
                            }
                    }
                } catch (final SMPClientBadResponseException ex) {
                    if (LOGGER.isDebugEnabled())
                        LOGGER.debug("Participant Information Error", ex);
                    else if (LOGGER.isWarnEnabled())
                        LOGGER.warn("Participant Information Error: " + ex.getClass().getName() + " - " + ex.getMessage());
                    final BootstrapErrorBox aErrorBox = error(div("Error querying SMP. Try disabling 'XML Schema validation'.")).addChild(AppCommonUI.getTechnicalDetailsUI(ex, false));
                    for (final JAXBException aItem : aSMPExceptions) aErrorBox.addChild(AppCommonUI.getTechnicalDetailsUI(aItem, false));
                    aLIDocTypeID.addChild(aErrorBox);
                    // Audit failure
                    AuditHelper.onAuditExecuteFailure("participant-information", sParticipantIDUriEncoded, ex.getClass(), ex.getMessage());
                } catch (final SMPClientException ex) {
                    if (LOGGER.isDebugEnabled())
                        LOGGER.debug("Participant Information Error", ex);
                    else if (LOGGER.isWarnEnabled())
                        LOGGER.warn("Participant Information Error: " + ex.getClass().getName() + " - " + ex.getMessage());
                    final BootstrapErrorBox aErrorBox = error(div("Error querying SMP.")).addChild(AppCommonUI.getTechnicalDetailsUI(ex, false));
                    for (final JAXBException aItem : aSMPExceptions) aErrorBox.addChild(AppCommonUI.getTechnicalDetailsUI(aItem, false));
                    aLIDocTypeID.addChild(aErrorBox);
                    // Audit failure
                    AuditHelper.onAuditExecuteFailure("participant-information", sParticipantIDUriEncoded, ex.getClass(), ex.getMessage());
                }
                if (bShowTime)
                    aDocTypeDiv.addChild(" ").addChild(_createTimingNode(aSWGetDetails.getMillis()));
                nTotalDurationMillis += aSWGetDetails.getMillis();
            }
            aNodeList.addChild(aULDocTypeIDs);
            if (bShowTime)
                aNodeList.addChild(div("Overall time: ").addChild(_createTimingNode(nTotalDurationMillis)));
            aNodeList.addChild(h3("Endpoint Certificate details"));
            if (aAllUsedEndpointCertifiactes.isEmpty()) {
                aNodeList.addChild(warn("No Endpoint Certificate information was found."));
            } else {
                final HCUL aULCerts = new HCUL();
                for (final X509Certificate aEndpointCert : aAllUsedEndpointCertifiactes) {
                    final IHCLI<?> aLICert = aULCerts.addItem();
                    if (aEndpointCert != null) {
                        aLICert.addChild(div("Subject: " + aEndpointCert.getSubjectX500Principal().getName()));
                        aLICert.addChild(div("Issuer: " + aEndpointCert.getIssuerX500Principal().getName()));
                        final OffsetDateTime aNotBefore = PDTFactory.createOffsetDateTime(aEndpointCert.getNotBefore());
                        aLICert.addChild(div("Not before: " + PDTToString.getAsString(aNotBefore, aDisplayLocale)));
                        if (aNotBefore.isAfter(aNowDateTime))
                            aLICert.addChild(error("This Endpoint Certificate is not yet valid!"));
                        final OffsetDateTime aNotAfter = PDTFactory.createOffsetDateTime(aEndpointCert.getNotAfter());
                        aLICert.addChild(div("Not after: " + PDTToString.getAsString(aNotAfter, aDisplayLocale)));
                        if (aNotAfter.isBefore(aNowDateTime))
                            aLICert.addChild(error("This Endpoint Certificate is no longer valid!"));
                        aLICert.addChild(div("Serial number: " + aEndpointCert.getSerialNumber().toString() + " / 0x" + _inGroupsOf(aEndpointCert.getSerialNumber().toString(16), 4)));
                        if (aQueryParams.getSMPAPIType() == ESMPAPIType.PEPPOL) {
                            // Check Peppol certificate status
                            final EPeppolCertificateCheckResult eCertStatus = PeppolCertificateChecker.checkPeppolAPCertificate(aEndpointCert, aNowDateTime, ETriState.FALSE, null);
                            if (eCertStatus.isValid())
                                aLICert.addChild(success("The Endpoint Certificate appears to be a valid Peppol certificate."));
                            else {
                                aLICert.addChild(error().addChild(div("The Endpoint Certificate appears to be an invalid Peppol certificate. Reason: " + eCertStatus.getReason())));
                            }
                        }
                        final HCTextArea aTextArea = new HCTextArea().setReadOnly(true).setRows(4).setValue(CertificateHelper.getPEMEncodedCertificate(aEndpointCert)).addStyle(CCSSProperties.FONT_FAMILY.newValue(CCSSValue.FONT_MONOSPACE));
                        BootstrapFormHelper.markAsFormControl(aTextArea);
                        aLICert.addChild(div(aTextArea));
                    } else {
                        aLICert.addChild(error("Failed to interpret the data as a X509 certificate"));
                    }
                }
                aNodeList.addChild(aULCerts);
            }
        }
        if (bQueryBusinessCard) {
            final StopWatch aSWGetBC = StopWatch.createdStarted();
            aNodeList.addChild(h3("Business Card details"));
            EFamFamFlagIcon.registerResourcesForThisRequest();
            final String sBCURL = aSMPHost.toExternalForm() + "/businesscard/" + aParticipantID.getURIEncoded();
            LOGGER.info("Querying BC from '" + sBCURL + "'");
            byte[] aData;
            try (HttpClientManager aHttpClientMgr = new HttpClientManager()) {
                final HttpGet aGet = new HttpGet(sBCURL);
                aData = aHttpClientMgr.execute(aGet, new ResponseHandlerByteArray());
            } catch (final Exception ex) {
                aData = null;
            }
            aSWGetBC.stop();
            if (aData == null)
                aNodeList.addChild(warn("No Business Card is available for that participant."));
            else {
                final ICommonsList<JAXBException> aPDExceptions = new CommonsArrayList<>();
                final Consumer<GenericJAXBMarshaller<?>> aPMarshallerCustomizer = m -> {
                    aPDExceptions.clear();
                    // Remember errors
                    m.readExceptionCallbacks().add(aPDExceptions::add);
                    m.setCharset(StandardCharsets.UTF_8);
                };
                final PDBusinessCard aBC = PDBusinessCardHelper.parseBusinessCard(aData, aPMarshallerCustomizer);
                if (aBC == null) {
                    final BootstrapErrorBox aError = error("Failed to parse the response data as a Business Card.");
                    for (final JAXBException aItem : aPDExceptions) aError.addChild(AppCommonUI.getTechnicalDetailsUI(aItem, false));
                    aNodeList.addChild(aError);
                    final String sBC = new String(aData, StandardCharsets.UTF_8);
                    if (StringHelper.hasText(sBC))
                        aNodeList.addChild(new HCPrismJS(EPrismLanguage.MARKUP).addChild(sBC));
                    LOGGER.error("Failed to parse BC:\n" + sBC);
                } else {
                    final HCH4 aH4 = h4("Business Card contains " + (aBC.businessEntities().size() == 1 ? "1 entity" : aBC.businessEntities().size() + " entities"));
                    if (bShowTime)
                        aH4.addChild(" ").addChild(_createTimingNode(aSWGetBC.getMillis()));
                    aNodeList.addChild(aH4);
                    aNodeList.addChild(div(_createOpenInBrowser(sBCURL)));
                    final HCUL aUL = new HCUL();
                    for (final PDBusinessEntity aEntity : aBC.businessEntities()) {
                        final HCLI aLI = aUL.addItem();
                        // Name
                        for (final PDName aName : aEntity.names()) {
                            final Locale aLanguage = LanguageCache.getInstance().getLanguage(aName.getLanguageCode());
                            final String sLanguageName = aLanguage == null ? "" : " (" + aLanguage.getDisplayLanguage(aDisplayLocale) + ")";
                            aLI.addChild(div(aName.getName() + sLanguageName));
                        }
                        // Country
                        {
                            final String sCountryCode = aEntity.getCountryCode();
                            final Locale aCountryCode = CountryCache.getInstance().getCountry(sCountryCode);
                            final String sCountryName = aCountryCode == null ? sCountryCode : aCountryCode.getDisplayCountry(aDisplayLocale) + " (" + sCountryCode + ")";
                            final EFamFamFlagIcon eIcon = EFamFamFlagIcon.getFromIDOrNull(sCountryCode);
                            aLI.addChild(div("Country: " + sCountryName + " ").addChild(eIcon == null ? null : eIcon.getAsNode()));
                        }
                        // Geo info
                        if (aEntity.hasGeoInfo()) {
                            aLI.addChild(div("Geographical information: ").addChildren(HCExtHelper.nl2brList(aEntity.getGeoInfo())));
                        }
                        // Additional IDs
                        if (aEntity.identifiers().isNotEmpty()) {
                            final BootstrapTable aIDTab = new BootstrapTable().setCondensed(true);
                            aIDTab.addHeaderRow().addCells("Scheme", "Value");
                            for (final PDIdentifier aItem : aEntity.identifiers()) {
                                // Avoid empty rows
                                if (StringHelper.hasText(aItem.getScheme()) || StringHelper.hasText(aItem.getValue()))
                                    aIDTab.addBodyRow().addCells(aItem.getScheme(), aItem.getValue());
                            }
                            if (aIDTab.hasBodyRows())
                                aLI.addChild(div("Additional identifiers: ").addChild(aIDTab));
                        }
                        // Website URLs
                        if (aEntity.websiteURIs().isNotEmpty()) {
                            final HCNodeList aWebsites = new HCNodeList();
                            for (final String sItem : aEntity.websiteURIs()) if (StringHelper.hasText(sItem))
                                aWebsites.addChild(div(HCA.createLinkedWebsite(sItem)));
                            if (aWebsites.hasChildren())
                                aLI.addChild(div("Website URLs: ").addChild(aWebsites));
                        }
                        // Contacts
                        if (aEntity.contacts().isNotEmpty()) {
                            final BootstrapTable aContactTab = new BootstrapTable().setCondensed(true);
                            aContactTab.addHeaderRow().addCells("Type", "Name", "Phone", "Email");
                            for (final PDContact aItem : aEntity.contacts()) {
                                // Avoid empty rows
                                if (StringHelper.hasText(aItem.getType()) || StringHelper.hasText(aItem.getName()) || StringHelper.hasText(aItem.getPhoneNumber()) || StringHelper.hasText(aItem.getEmail()))
                                    aContactTab.addBodyRow().addCell(aItem.getType()).addCell(aItem.getName()).addCell(aItem.getPhoneNumber()).addCell(HCA_MailTo.createLinkedEmail(aItem.getEmail()));
                            }
                            if (aContactTab.hasBodyRows())
                                aLI.addChild(div("Contact points: ").addChild(aContactTab));
                        }
                        if (aEntity.hasAdditionalInfo()) {
                            aLI.addChild(div("Additional information: ").addChildren(HCExtHelper.nl2brList(aEntity.getAdditionalInfo())));
                        }
                        if (aEntity.hasRegistrationDate()) {
                            aLI.addChild(div("Registration date: ").addChild(PDTToString.getAsString(aEntity.getRegistrationDate(), aDisplayLocale)));
                        }
                    }
                    aNodeList.addChild(aUL);
                }
            }
        }
        // Audit success
        AuditHelper.onAuditExecuteSuccess("participant-information", aParticipantID.getURIEncoded());
    } catch (final RuntimeException ex) {
        if (LOGGER.isDebugEnabled())
            LOGGER.debug("Participant Information Error", ex);
        else if (LOGGER.isWarnEnabled())
            LOGGER.warn("Participant Information Error: " + ex.getClass().getName() + " - " + ex.getMessage());
        new InternalErrorBuilder().setRequestScope(aRequestScope).setDisplayLocale(aDisplayLocale).setThrowable(ex).handle();
        aNodeList.addChild(error(div("Error querying participant information.")).addChild(AppCommonUI.getTechnicalDetailsUI(ex, true)));
        // Audit failure
        AuditHelper.onAuditExecuteFailure("participant-information", sParticipantIDUriEncoded, ex.getClass(), ex.getMessage());
    }
    aNodeList.addChild(new HCHR());
}
Also used : Locale(java.util.Locale) HCDiv(com.helger.html.hc.html.grouping.HCDiv) IDocumentTypeIdentifier(com.helger.peppolid.IDocumentTypeIdentifier) ETriState(com.helger.commons.state.ETriState) EFontAwesome4Icon(com.helger.photon.icon.fontawesome.EFontAwesome4Icon) CommonsTreeMap(com.helger.commons.collection.impl.CommonsTreeMap) CCSSProperties(com.helger.css.property.CCSSProperties) BootstrapButtonToolbar(com.helger.photon.bootstrap4.buttongroup.BootstrapButtonToolbar) FormErrorList(com.helger.photon.core.form.FormErrorList) BootstrapForm(com.helger.photon.bootstrap4.form.BootstrapForm) InetAddress(java.net.InetAddress) IIdentifierFactory(com.helger.peppolid.factory.IIdentifierFactory) ResponseHandlerByteArray(com.helger.httpclient.response.ResponseHandlerByteArray) Nonempty(com.helger.commons.annotation.Nonempty) PDTFactory(com.helger.commons.datetime.PDTFactory) EBootstrapButtonType(com.helger.photon.bootstrap4.button.EBootstrapButtonType) Map(java.util.Map) HCA(com.helger.html.hc.html.textlevel.HCA) HCTextArea(com.helger.html.hc.html.forms.HCTextArea) CPageParam(com.helger.photon.uicore.css.CPageParam) PDTToString(com.helger.commons.datetime.PDTToString) Lookup(org.xbill.DNS.Lookup) HCDiv(com.helger.html.hc.html.grouping.HCDiv) ISMLConfiguration(com.helger.peppol.domain.ISMLConfiguration) HCTextNode(com.helger.html.hc.impl.HCTextNode) StandardCharsets(java.nio.charset.StandardCharsets) AuditHelper(com.helger.photon.audit.AuditHelper) PDName(com.helger.pd.businesscard.generic.PDName) ICommonsList(com.helger.commons.collection.impl.ICommonsList) HCExtHelper(com.helger.html.hc.ext.HCExtHelper) ISMLConfigurationManager(com.helger.peppol.app.mgr.ISMLConfigurationManager) ESMPTransportProfile(com.helger.peppol.smp.ESMPTransportProfile) EmailAddressHelper(com.helger.commons.email.EmailAddressHelper) CIdentifier(com.helger.peppolid.CIdentifier) TextParseException(org.xbill.DNS.TextParseException) HCEdit(com.helger.html.hc.html.forms.HCEdit) PDBusinessCardHelper(com.helger.pd.businesscard.helper.PDBusinessCardHelper) LanguageCache(com.helger.commons.locale.language.LanguageCache) IHCNode(com.helger.html.hc.IHCNode) ICommonsSortedMap(com.helger.commons.collection.impl.ICommonsSortedMap) Nullable(javax.annotation.Nullable) IPV4Addr(com.helger.dns.ip.IPV4Addr) IHCLI(com.helger.html.hc.html.grouping.IHCLI) BootstrapFormGroup(com.helger.photon.bootstrap4.form.BootstrapFormGroup) StringHelper(com.helger.commons.string.StringHelper) PDBusinessCard(com.helger.pd.businesscard.generic.PDBusinessCard) SMLConfigurationSelect(com.helger.peppol.ui.select.SMLConfigurationSelect) BootstrapFormHelper(com.helger.photon.bootstrap4.form.BootstrapFormHelper) W3CEndpointReferenceHelper(com.helger.smpclient.peppol.utils.W3CEndpointReferenceHelper) HCA_MailTo(com.helger.html.hc.ext.HCA_MailTo) UnknownHostException(java.net.UnknownHostException) ESMPAPIType(com.helger.peppol.sml.ESMPAPIType) RequestField(com.helger.photon.core.form.RequestField) BDXRClientReadOnly(com.helger.smpclient.bdxr1.BDXRClientReadOnly) SMPQueryParams(com.helger.peppol.domain.SMPQueryParams) StopWatch(com.helger.commons.timing.StopWatch) HCHR(com.helger.html.hc.html.grouping.HCHR) InternalErrorBuilder(com.helger.photon.core.interror.InternalErrorBuilder) GenericJAXBMarshaller(com.helger.jaxb.GenericJAXBMarshaller) X509Certificate(java.security.cert.X509Certificate) WebPageExecutionContext(com.helger.photon.uicore.page.WebPageExecutionContext) PeppolIdentifierHelper(com.helger.peppolid.peppol.PeppolIdentifierHelper) BootstrapLinkButton(com.helger.photon.bootstrap4.button.BootstrapLinkButton) URL(java.net.URL) LoggerFactory(org.slf4j.LoggerFactory) SimpleURL(com.helger.commons.url.SimpleURL) PDIdentifier(com.helger.pd.businesscard.generic.PDIdentifier) Locale(java.util.Locale) RequestFieldBoolean(com.helger.photon.core.form.RequestFieldBoolean) BootstrapErrorBox(com.helger.photon.bootstrap4.alert.BootstrapErrorBox) CCSSValue(com.helger.css.propertyvalue.CCSSValue) EPeppolCertificateCheckResult(com.helger.peppol.utils.EPeppolCertificateCheckResult) SMPClientBadResponseException(com.helger.smpclient.exception.SMPClientBadResponseException) XMLOffsetDateTime(com.helger.commons.datetime.XMLOffsetDateTime) JAXBException(javax.xml.bind.JAXBException) EHCFormMethod(com.helger.html.hc.html.forms.EHCFormMethod) ICommonsOrderedSet(com.helger.commons.collection.impl.ICommonsOrderedSet) CertificateHelper(com.helger.security.certificate.CertificateHelper) OffsetDateTime(java.time.OffsetDateTime) AbstractAppWebPage(com.helger.peppol.ui.page.AbstractAppWebPage) HttpGet(org.apache.http.client.methods.HttpGet) CountryCache(com.helger.commons.locale.country.CountryCache) LocalDate(java.time.LocalDate) AppCommonUI(com.helger.peppol.ui.AppCommonUI) SMPClientException(com.helger.smpclient.exception.SMPClientException) PDBusinessEntity(com.helger.pd.businesscard.generic.PDBusinessEntity) HCH3(com.helger.html.hc.html.sections.HCH3) SMPClientReadOnly(com.helger.smpclient.peppol.SMPClientReadOnly) SimpleProcessIdentifier(com.helger.peppolid.simple.process.SimpleProcessIdentifier) HCUL(com.helger.html.hc.html.grouping.HCUL) PPMetaManager(com.helger.peppol.app.mgr.PPMetaManager) BootstrapTable(com.helger.photon.bootstrap4.table.BootstrapTable) ARecord(org.xbill.DNS.ARecord) HCPrismJS(com.helger.photon.uictrls.prism.HCPrismJS) HCCheckBox(com.helger.html.hc.html.forms.HCCheckBox) IParticipantIdentifier(com.helger.peppolid.IParticipantIdentifier) Nonnull(javax.annotation.Nonnull) HCH4(com.helger.html.hc.html.sections.HCH4) Record(org.xbill.DNS.Record) HCNodeList(com.helger.html.hc.impl.HCNodeList) IRequestWebScopeWithoutResponse(com.helger.web.scope.IRequestWebScopeWithoutResponse) HCLI(com.helger.html.hc.html.grouping.HCLI) Logger(org.slf4j.Logger) CommonsArrayList(com.helger.commons.collection.impl.CommonsArrayList) CommonsLinkedHashSet(com.helger.commons.collection.impl.CommonsLinkedHashSet) CertificateException(java.security.cert.CertificateException) SimpleIdentifierFactory(com.helger.peppolid.factory.SimpleIdentifierFactory) XMLWriter(com.helger.xml.serialize.write.XMLWriter) HttpClientManager(com.helger.httpclient.HttpClientManager) EBootstrapButtonSize(com.helger.photon.bootstrap4.button.EBootstrapButtonSize) Consumer(java.util.function.Consumer) Type(org.xbill.DNS.Type) EFamFamFlagIcon(com.helger.photon.uictrls.famfam.EFamFamFlagIcon) Element(org.w3c.dom.Element) URLHelper(com.helger.commons.url.URLHelper) PeppolCertificateChecker(com.helger.peppol.utils.PeppolCertificateChecker) EPrismLanguage(com.helger.photon.uictrls.prism.EPrismLanguage) PDContact(com.helger.pd.businesscard.generic.PDContact) SMPClientReadOnly(com.helger.smpclient.peppol.SMPClientReadOnly) HCNodeList(com.helger.html.hc.impl.HCNodeList) ResponseHandlerByteArray(com.helger.httpclient.response.ResponseHandlerByteArray) HCH4(com.helger.html.hc.html.sections.HCH4) HCH3(com.helger.html.hc.html.sections.HCH3) IDocumentTypeIdentifier(com.helger.peppolid.IDocumentTypeIdentifier) CertificateException(java.security.cert.CertificateException) PDTToString(com.helger.commons.datetime.PDTToString) GenericJAXBMarshaller(com.helger.jaxb.GenericJAXBMarshaller) SMPClientBadResponseException(com.helger.smpclient.exception.SMPClientBadResponseException) InternalErrorBuilder(com.helger.photon.core.interror.InternalErrorBuilder) IHCLI(com.helger.html.hc.html.grouping.IHCLI) HCLI(com.helger.html.hc.html.grouping.HCLI) Lookup(org.xbill.DNS.Lookup) PDIdentifier(com.helger.pd.businesscard.generic.PDIdentifier) EPeppolCertificateCheckResult(com.helger.peppol.utils.EPeppolCertificateCheckResult) BootstrapErrorBox(com.helger.photon.bootstrap4.alert.BootstrapErrorBox) JAXBException(javax.xml.bind.JAXBException) X509Certificate(java.security.cert.X509Certificate) PDContact(com.helger.pd.businesscard.generic.PDContact) SMPQueryParams(com.helger.peppol.domain.SMPQueryParams) BootstrapTable(com.helger.photon.bootstrap4.table.BootstrapTable) XMLOffsetDateTime(com.helger.commons.datetime.XMLOffsetDateTime) OffsetDateTime(java.time.OffsetDateTime) SMPClientException(com.helger.smpclient.exception.SMPClientException) InetAddress(java.net.InetAddress) CommonsTreeMap(com.helger.commons.collection.impl.CommonsTreeMap) Map(java.util.Map) ICommonsSortedMap(com.helger.commons.collection.impl.ICommonsSortedMap) IParticipantIdentifier(com.helger.peppolid.IParticipantIdentifier) TextParseException(org.xbill.DNS.TextParseException) PDBusinessCard(com.helger.pd.businesscard.generic.PDBusinessCard) Element(org.w3c.dom.Element) HttpGet(org.apache.http.client.methods.HttpGet) ISMLConfiguration(com.helger.peppol.domain.ISMLConfiguration) URL(java.net.URL) SimpleURL(com.helger.commons.url.SimpleURL) ISMLConfigurationManager(com.helger.peppol.app.mgr.ISMLConfigurationManager) ARecord(org.xbill.DNS.ARecord) HttpClientManager(com.helger.httpclient.HttpClientManager) ARecord(org.xbill.DNS.ARecord) Record(org.xbill.DNS.Record) UnknownHostException(java.net.UnknownHostException) HCHR(com.helger.html.hc.html.grouping.HCHR) HCTextArea(com.helger.html.hc.html.forms.HCTextArea) HCPrismJS(com.helger.photon.uictrls.prism.HCPrismJS) BDXRClientReadOnly(com.helger.smpclient.bdxr1.BDXRClientReadOnly) CommonsTreeMap(com.helger.commons.collection.impl.CommonsTreeMap) TextParseException(org.xbill.DNS.TextParseException) UnknownHostException(java.net.UnknownHostException) SMPClientBadResponseException(com.helger.smpclient.exception.SMPClientBadResponseException) JAXBException(javax.xml.bind.JAXBException) SMPClientException(com.helger.smpclient.exception.SMPClientException) CertificateException(java.security.cert.CertificateException) StopWatch(com.helger.commons.timing.StopWatch) IRequestWebScopeWithoutResponse(com.helger.web.scope.IRequestWebScopeWithoutResponse) IPV4Addr(com.helger.dns.ip.IPV4Addr) HCUL(com.helger.html.hc.html.grouping.HCUL) EFamFamFlagIcon(com.helger.photon.uictrls.famfam.EFamFamFlagIcon) PDName(com.helger.pd.businesscard.generic.PDName) PDBusinessEntity(com.helger.pd.businesscard.generic.PDBusinessEntity) CommonsLinkedHashSet(com.helger.commons.collection.impl.CommonsLinkedHashSet) CommonsArrayList(com.helger.commons.collection.impl.CommonsArrayList) IHCNode(com.helger.html.hc.IHCNode)

Example 19 with IRequestWebScopeWithoutResponse

use of com.helger.web.scope.IRequestWebScopeWithoutResponse in project peppol-practical by phax.

the class LayoutAreaContentProviderPublic method _getNavbar.

@Nonnull
private static BootstrapNavbar _getNavbar(final LayoutExecutionContext aLEC) {
    final ISimpleURL aLinkToStartPage = aLEC.getLinkToMenuItem(aLEC.getMenuTree().getDefaultMenuItemID());
    final Locale aDisplayLocale = aLEC.getDisplayLocale();
    final IRequestWebScopeWithoutResponse aRequestScope = aLEC.getRequestScope();
    final IUser aUser = LoggedInUserManager.getInstance().getCurrentUser();
    final BootstrapNavbar aNavbar = new BootstrapNavbar();
    aNavbar.addBrand(new HCSpan().addClass(AppCommonUI.CSS_CLASS_LOGO1).addChild(AppHelper.getApplicationTitle()), aLinkToStartPage);
    aNavbar.addChild(new BootstrapButton(EBootstrapButtonType.DEFAULT).addChild("Participant information").setIcon(EFamFamIcon.USER_GREEN).setOnClick(aLEC.getLinkToMenuItem(CMenuPublic.MENU_TOOLS_PARTICIPANT_INFO)).addClass(CBootstrapCSS.ML_AUTO).addClass(CBootstrapCSS.MX_2));
    aNavbar.addChild(new BootstrapButton(EBootstrapButtonType.DEFAULT).addChild("Document validation").setIcon(EFamFamIcon.SCRIPT_GO).setOnClick(aLEC.getLinkToMenuItem(CMenuPublic.MENU_VALIDATION_UPLOAD)).addClass(CBootstrapCSS.ML_AUTO).addClass(CBootstrapCSS.MX_2));
    aNavbar.addChild(new BootstrapButton(EBootstrapButtonType.DEFAULT).addChild("ID information").setIcon(EFamFamIcon.CUP).setOnClick(aLEC.getLinkToMenuItem(CMenuPublic.MENU_TOOLS_ID_INFO)).addClass(CBootstrapCSS.ML_AUTO).addClass(CBootstrapCSS.MX_2));
    final BootstrapNavbarToggleable aToggleable = aNavbar.addAndReturnToggleable();
    if (aUser != null) {
        aToggleable.addAndReturnText().addClass(CBootstrapCSS.ML_AUTO).addClass(CBootstrapCSS.MX_2).addChild("Welcome ").addChild(new HCStrong().addChild(SecurityHelper.getUserDisplayName(aUser, aDisplayLocale)));
        if (SecurityHelper.hasUserRole(aUser.getID(), CPPApp.ROLE_CONFIG_ID)) {
            aToggleable.addChild(new BootstrapButton().setOnClick(LinkHelper.getURLWithContext(AbstractSecureApplicationServlet.SERVLET_DEFAULT_PATH)).addChild("Administration").addClass(CBootstrapCSS.MX_2));
        }
        aToggleable.addChild(new BootstrapButton().setOnClick(LinkHelper.getURLWithContext(aRequestScope, LogoutServlet.SERVLET_DEFAULT_PATH)).addChild(EPhotonCoreText.LOGIN_LOGOUT.getDisplayText(aDisplayLocale)).addClass(CBootstrapCSS.MX_2));
    } else {
        // show login in Navbar
        final BootstrapNavbarNav aNav = aToggleable.addAndReturnNav();
        final BootstrapDropdownMenu aDropDown = new BootstrapDropdownMenu();
        {
            final HCDiv aDiv = new HCDiv().addClass(CBootstrapCSS.P_2).addStyle(CCSSProperties.MIN_WIDTH.newValue("400px"));
            aDiv.addChild(AppCommonUI.createViewLoginForm(aLEC, null, false));
            aDropDown.addChild(aDiv);
        }
        aNav.addItem().addNavDropDown("Login", aDropDown);
        aToggleable.addChild(new BootstrapButton(EBootstrapButtonType.SUCCESS).addChild(EPhotonCoreText.BUTTON_SIGN_UP.getDisplayText(aDisplayLocale)).setOnClick(aLEC.getLinkToMenuItem(CMenuPublic.MENU_SIGN_UP)).addClass(CBootstrapCSS.ML_AUTO).addClass(CBootstrapCSS.MX_2));
    }
    return aNavbar;
}
Also used : Locale(java.util.Locale) HCDiv(com.helger.html.hc.html.grouping.HCDiv) IRequestWebScopeWithoutResponse(com.helger.web.scope.IRequestWebScopeWithoutResponse) HCSpan(com.helger.html.hc.html.textlevel.HCSpan) HCStrong(com.helger.html.hc.html.textlevel.HCStrong) BootstrapNavbarNav(com.helger.photon.bootstrap4.navbar.BootstrapNavbarNav) BootstrapNavbar(com.helger.photon.bootstrap4.navbar.BootstrapNavbar) BootstrapDropdownMenu(com.helger.photon.bootstrap4.dropdown.BootstrapDropdownMenu) ISimpleURL(com.helger.commons.url.ISimpleURL) IUser(com.helger.photon.security.user.IUser) BootstrapNavbarToggleable(com.helger.photon.bootstrap4.navbar.BootstrapNavbarToggleable) BootstrapButton(com.helger.photon.bootstrap4.button.BootstrapButton) Nonnull(javax.annotation.Nonnull)

Example 20 with IRequestWebScopeWithoutResponse

use of com.helger.web.scope.IRequestWebScopeWithoutResponse in project peppol-practical by phax.

the class AppCommonUI method init.

public static void init() {
    RequestParameterManager.getInstance().setParameterHandler(new RequestParameterHandlerURLPathNamed());
    BootstrapDataTables.setConfigurator((aLEC, aTable, aDataTables) -> {
        final IRequestWebScopeWithoutResponse aRequestScope = aLEC.getRequestScope();
        aDataTables.setAutoWidth(false).setLengthMenu(LENGTH_MENU).setAjaxBuilder(new JQueryAjaxBuilder().url(CAjax.DATATABLES.getInvocationURL(aRequestScope)).data(new JSAssocArray().add(AjaxExecutorDataTables.OBJECT_ID, aTable.getID()))).setServerFilterType(EDataTablesFilterType.ALL_TERMS_PER_ROW).setTextLoadingURL(CAjax.DATATABLES_I18N.getInvocationURL(aRequestScope), AjaxExecutorDataTablesI18N.LANGUAGE_ID).addPlugin(new DataTablesPluginSearchHighlight());
    });
    // By default allow markdown in system message
    BootstrapSystemMessage.setDefaultUseMarkdown(true);
    // Register comment handlers
    CommentThreadManager.getInstance().registerObjectType(CPPApp.OT_PAGE);
}
Also used : IRequestWebScopeWithoutResponse(com.helger.web.scope.IRequestWebScopeWithoutResponse) JQueryAjaxBuilder(com.helger.html.jquery.JQueryAjaxBuilder) RequestParameterHandlerURLPathNamed(com.helger.photon.core.requestparam.RequestParameterHandlerURLPathNamed) JSAssocArray(com.helger.html.jscode.JSAssocArray) DataTablesPluginSearchHighlight(com.helger.photon.uictrls.datatables.plugins.DataTablesPluginSearchHighlight)

Aggregations

IRequestWebScopeWithoutResponse (com.helger.web.scope.IRequestWebScopeWithoutResponse)30 Locale (java.util.Locale)23 Nonnull (javax.annotation.Nonnull)17 HCNodeList (com.helger.html.hc.impl.HCNodeList)14 BootstrapButton (com.helger.photon.bootstrap4.button.BootstrapButton)14 HCDiv (com.helger.html.hc.html.grouping.HCDiv)13 BootstrapButtonToolbar (com.helger.photon.bootstrap4.buttongroup.BootstrapButtonToolbar)10 ISimpleURL (com.helger.commons.url.ISimpleURL)9 JQueryAjaxBuilder (com.helger.html.jquery.JQueryAjaxBuilder)9 JSAssocArray (com.helger.html.jscode.JSAssocArray)9 IUser (com.helger.photon.security.user.IUser)9 IHCNode (com.helger.html.hc.IHCNode)8 HCEdit (com.helger.html.hc.html.forms.HCEdit)7 HCStrong (com.helger.html.hc.html.textlevel.HCStrong)7 Nonempty (com.helger.commons.annotation.Nonempty)6 ICommonsList (com.helger.commons.collection.impl.ICommonsList)6 PDTToString (com.helger.commons.datetime.PDTToString)6 HCA (com.helger.html.hc.html.textlevel.HCA)6 JSAnonymousFunction (com.helger.html.jscode.JSAnonymousFunction)6 JSVar (com.helger.html.jscode.JSVar)6