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

org.kie.config.cli.command.impl.CreateOrganizationalUnitCliCommand Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta1
Show newest version
/*
 * Copyright 2013 JBoss by Red Hat.
 *
 * Licensed 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.kie.config.cli.command.impl;

import java.util.ArrayList;
import java.util.Collection;

import org.guvnor.structure.organizationalunit.OrganizationalUnit;
import org.guvnor.structure.organizationalunit.OrganizationalUnitService;
import org.guvnor.structure.repositories.Repository;
import org.guvnor.structure.repositories.RepositoryService;
import org.jboss.weld.environment.se.WeldContainer;
import org.kie.config.cli.CliContext;
import org.kie.config.cli.command.CliCommand;
import org.kie.config.cli.support.InputReader;

public class CreateOrganizationalUnitCliCommand implements CliCommand {

    @Override
    public String getName() {
        return "create-org-unit";
    }

    @Override
    public String execute( CliContext context ) {
        StringBuffer result = new StringBuffer();
        WeldContainer container = context.getContainer();

        OrganizationalUnitService organizationalUnitService = container.instance().select( OrganizationalUnitService.class ).get();
        RepositoryService repositoryService = container.instance().select( RepositoryService.class ).get();

        InputReader input = context.getInput();
        System.out.print( ">>Organizational Unit name:" );
        String name = input.nextLine();

        System.out.print( ">>Organizational Unit owner:" );
        String owner = input.nextLine();

        System.out.print( ">>Repositories (comma separated list):" );
        String repos = input.nextLine();
        Collection repositories = new ArrayList();
        if ( repos != null && repos.trim().length() > 0 ) {
            String[] repoAliases = repos.split( "," );
            for ( String alias : repoAliases ) {
                Repository repo = repositoryService.getRepository( alias );
                if ( repo != null ) {
                    repositories.add( repo );
                } else {
                    System.out.println( "WARN: Repository with alias " + alias + " does not exists and will be skipped" );
                }
            }
        }

        OrganizationalUnit organizationalUnit = organizationalUnitService.createOrganizationalUnit( name, owner, repositories );
        result.append( "Organizational Unit " + organizationalUnit.getName() + " successfully created" );
        return result.toString();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy