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

com.woorea.openstack.console.keystone.KeystoneEnvironment Maven / Gradle / Ivy

There is a newer version: 3.2.9
Show newest version
package com.woorea.openstack.console.keystone;

import org.apache.commons.cli.CommandLine;

import com.woorea.openstack.base.client.OpenStackSimpleTokenProvider;
import com.woorea.openstack.console.Command;
import com.woorea.openstack.console.Console;
import com.woorea.openstack.console.Environment;
import com.woorea.openstack.keystone.Keystone;
import com.woorea.openstack.keystone.model.Access;
import com.woorea.openstack.keystone.model.authentication.UsernamePassword;

public class KeystoneEnvironment extends Environment {
	
	public final Keystone CLIENT;
	
	public static final Command KEYSTONE = new Command("keystone") {
		
		@Override
		public void execute(Console console, CommandLine args) {
			
			Keystone client = new Keystone(console.getProperty("keystone.endpoint"));
			
			Access access = client.tokens()
				.authenticate(new UsernamePassword(
					console.getProperty("keystone.username"), 
					console.getProperty("keystone.password")
				))
				.withTenantName(console.getProperty("keystone.tenant_name"))
				.execute();
					
			client.setTokenProvider(new OpenStackSimpleTokenProvider(access.getToken().getId()));
			
			KeystoneEnvironment environment = new KeystoneEnvironment(console.getEnvironment(), client);
			
			environment.register(new KeystoneTenantList());
			environment.register(new KeystoneTenantCreate());
			environment.register(new KeystoneTenantDelete());
			environment.register(new KeystoneUserList());
			environment.register(new KeystoneUserCreate());
			environment.register(new KeystoneUserDelete());
			environment.register(new KeystoneRoleList());
			environment.register(new KeystoneRoleDelete());
			environment.register(new KeystoneServiceList());	
			console.setEnvironment(environment);
		}
		
	};
	
	public KeystoneEnvironment(Environment parent, Keystone client) {
		super(parent);
		CLIENT = client;
	}

	/* (non-Javadoc)
	 * @see org.woorea.wsh.Environment#getPrompt()
	 */
	@Override
	public String getPrompt() {
		return "keystone> ";
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy