All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.wiki.plugin.Groups Maven / Gradle / Ivy

/* 
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.  
 */
package org.apache.wiki.plugin;

import org.apache.wiki.api.core.Context;
import org.apache.wiki.api.core.ContextEnum;
import org.apache.wiki.api.core.Engine;
import org.apache.wiki.api.exceptions.PluginException;
import org.apache.wiki.api.plugin.Plugin;
import org.apache.wiki.auth.authorize.GroupManager;
import org.apache.wiki.url.URLConstructor;
import org.apache.wiki.util.comparators.PrincipalComparator;

import java.security.Principal;
import java.util.Arrays;
import java.util.Comparator;
import java.util.Map;

/**
 *  

Prints the groups managed by this wiki, separated by commas. *
The groups are sorted in ascending order, and are hyperlinked to the page that displays the group's members. *

*

Parameters :

* NONE * * @since 2.4.19 */ public class Groups implements Plugin { private static final Comparator COMPARATOR = new PrincipalComparator(); /** * {@inheritDoc} */ @Override public String execute( final Context context, final Map params ) throws PluginException { // Retrieve groups, and sort by name final Engine engine = context.getEngine(); final GroupManager groupMgr = engine.getManager( GroupManager.class ); final Principal[] groups = groupMgr.getRoles(); Arrays.sort( groups, COMPARATOR ); final StringBuilder s = new StringBuilder(); for ( int i = 0; i < groups.length; i++ ) { final String name = groups[ i ].getName(); // Make URL final String url = engine.getManager( URLConstructor.class ).makeURL( ContextEnum.GROUP_VIEW.getRequestContext(), name, null ); // Create hyperlink s.append( "" ); s.append( name ); s.append( "" ); // If not the last one, add a comma and space if ( i < ( groups.length - 1 ) ) { s.append( ',' ); s.append( ' ' ); } } return s.toString(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy