key0-96/
key0-96/doc/key/
key0-96/doc/key/credits/
key0-96/doc/key/developers/
key0-96/doc/key/developers/resources/
key0-96/setup/caves/
key0-96/setup/help/
key0-96/setup/ruins/
key0-96/src/
key0-96/src/commands/
key0-96/src/events/
key0-96/src/hack/
key0-96/src/sql/
key0-96/src/swing/
key0-96/src/talker/forest/
key0-96/src/talker/objects/
key0-96/src/terminals/
/*
**               j###t  ########## ####   ####
**              j###t   ########## ####   ####
**             j###T               "###L J###"
**          ######P'    ##########  #########
**          ######k,    ##########   T######T
**          ####~###L   ####
**          #### q###L  ##########   .#####
**          ####  \###L ##########   #####"
**
**  Class History
**  
**  Date        Name         Description
**  ---------|------------|-----------------------------------------------
**  22Jul97     merlin       created this command
**
*/

package key.commands;

import key.*;
import key.primitive.*;
import java.io.*;
import java.util.StringTokenizer;

/**
  *  This command is intended to completely ban a site for a period
  *  of 10 minutes because of a particular reason
  *
  *   Two Types of Commands
  *        "B" - Banish - both offline and online
  *        "S" - Banish with site ban
 */

public class TimedBanish extends Command
{
	public static final AtomicElement[] ELEMENTS =
	{
		AtomicElement.construct( TimedBanish.class, Duration.class, "banTime",
			AtomicElement.PUBLIC_FIELD,
			"the default amount of time the banish is for" ),
		AtomicElement.construct( TimedBanish.class, String.class, "commandType",
			AtomicElement.PUBLIC_FIELD,
			"the type of banish (B or S)" ),
	};

	public Duration banTime = null;
	public String commandType = "";
	
	public static final AtomicStructure STRUCTURE = new AtomicStructure( Command.STRUCTURE, ELEMENTS );
	
	public TimedBanish()
	{
		setKey( "timedDisconnect" );
		usage = "<player> [<duration>]";
	}
	
	public AtomicStructure getDeclaredStructure()
	{
		return( STRUCTURE );
	}
	

	public void run( Player p, StringTokenizer args, String fullLine, CategoryCommand caller, InteractiveConnection ic, Flags flags ) throws IOException
	{
		String c = (String) getProperty( "commandType" ); 

		if( args.hasMoreTokens() )
		{
			Player causePlayer = null;
			String name = args.nextToken();
			
			causePlayer = getPlayer( ic, name );
			if( causePlayer == null )
				return;
			
				//  make sure we aint being dumb
			if( p == causePlayer )
			{
				ic.sendFeedback( "Try using a player other than yourself" );
				return;
			}
			
			Duration d = banTime;
			if( args.hasMoreTokens() )
			{
				d = new Duration( Duration.parse( args.nextToken() ) );
			}
			
			if( d.getTime() <= 0 )
			{
				ic.sendFeedback( "How about entering a position duration" );
				return;
			}

			DateTime now = new DateTime();
			DateTime until = new DateTime( now.getTime() + d.getTime() );
			
			causePlayer.setProperty( "banishedUntil", until );
			causePlayer.setProperty( "banishType", new String( c ) ); 
			
			if( c.equals( "P" ) )
			{
				InteractiveConnection sic = causePlayer.getConnection();
				if( sic instanceof SocketIC )
				{
					Site s = ((SocketIC)sic).getSite();
					s.setBan( new String( "C" ), p, now, until, "Site Banish" );
					p.setProperty( "bannedWithSite", s );
				}
				else
					ic.sendFailure( "This player isn't connected to a socket" );
			}
			
			if( causePlayer.connected() )
				causePlayer.disconnect();
		}
		else
			usage( ic );
	}
}