CtcpResponder.cs :  » Chat-Servers » Thresher » Sharkbite » Irc » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Chat Servers » Thresher 
Thresher » Sharkbite » Irc » CtcpResponder.cs
/*
 * Thresher IRC client library
 * Copyright (C) 2002 Aaron Hunter <thresher@sharkbite.org>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 * 
 * See the gpl.txt file located in the top-level-directory of
 * the archive of this library for complete text of license.
*/

using System;
using System.Text;


namespace Sharkbite.Irc{
  /// <summary>
  /// A class which automatically responds to CTCP queries. The
  /// replies it sends are configurable by the client.
  /// </summary>
  public sealed class CtcpResponder
  {
    private Connection connection;
    private long nextTime;
    private double floodDelay;
    private string fingerMessage;
    private string userInfoMessage;
    private string versionMessage;
    private string sourceMessage;
    private string clientInfoMessage;

    /// <summary>
    /// Create an instance and register handlers for
    /// CTCP events. The Connection's CtcpEnable property must
    /// be set to true or the connection will not send CTCP events
    /// to this responder.
    /// </summary>
    /// <param name="connection">The containing connection.</param>
    public CtcpResponder( Connection connection )
    {
      this.connection = connection;
      nextTime = DateTime.Now.ToFileTime();
      //Wait at least 2 second in between automatic CTCP responses
      floodDelay = 2000;
      //Send back user nick by default for finger requests.
      userInfoMessage = "Thresher CTCP Responder";    
      fingerMessage = userInfoMessage;
      versionMessage = "Thresher IRC library 1.1";
      sourceMessage = "http://thresher.sourceforge.net";
      clientInfoMessage = "This client supports: UserInfo, Finger, Version, Source, Ping, Time and ClientInfo";
      if( connection.EnableCtcp ) 
      {
        connection.CtcpListener.OnCtcpRequest += new CtcpRequestEventHandler( OnCtcpRequest );
        connection.CtcpListener.OnCtcpPingRequest += new CtcpPingRequestEventHandler( OnCtcpPingRequest );
      }
    }

    /// <summary>
    /// How long the responder should wait before
    /// replying to a query. Queries coming before this
    /// time has passed will be droppped.
    /// </summary>
    /// <value>The delay in milliseconds. The default is 2000 (2 seconds).</value>
    public double ResponseDelay 
    {
      get 
      {
        return floodDelay;
      }
      set
      {
        floodDelay = value;
      }
    }
    /// <summary>
    /// Finger responses normally consist of a message
    /// and the idle time.
    /// </summary>
    /// <value>The Idle time will be automatically appended
    /// to the finger response. This default to the UserInfo message.</value>
    public string FingerResponse
    {
      get
      {
        return fingerMessage + " Idle time " + FormatIdleTime() + ".";
      }
      set
      {
        fingerMessage = value;
      }
    }
    /// <summary>
    /// A message about the user.
    /// </summary>
    /// <value>Any string which does not exceed the IRC max length.
    /// This defaults to "Thresher Auto-Responder".</value>
    public string UserInfoResponse
    {
      get
      {
        return userInfoMessage;
      }
      set
      {
        userInfoMessage = value;
      }
    }
    /// <summary>
    /// The version of the client software.
    /// </summary>
    /// <value>This defaults to "Thresher IRC library 1.0".</value>
    public string VersionResponse
    {
      get
      {
        return versionMessage;
      }
      set
      {
        versionMessage = value;
      }
    }
    /// <summary>
    /// Tell others what CTCP commands this client supports.
    /// </summary>
    /// <value>By default it sends a list of all the CTCP commands.</value>
    public string ClientInfoResponse
    {
      get
      {
        return clientInfoMessage;
      }
      set
      {
        clientInfoMessage = value;
      }
    }
    /// <summary>
    /// Where to get this client.
    /// </summary>
    /// <value>This can be a complex set of FTP instructions or just a
    /// URL to the client's homepage.</value>
    public string SourceResponse
    {
      get
      {
        return sourceMessage;
      }
      set
      {
        sourceMessage = value;
      }
    }

    /// <summary>
    /// For a TimeSpan to show only hours,minutes, and seconds.
    /// </summary>
    /// <returns>A beautified TimeSpan</returns>
    private string FormatIdleTime() 
    {
      StringBuilder builder = new StringBuilder();
      builder.Append( connection.IdleTime.Hours + " Hours, " );
      builder.Append( connection.IdleTime.Minutes + " Minutes, " );
      builder.Append( connection.IdleTime.Seconds + " Seconds" );
      return builder.ToString();
    }
    /// <summary>
    /// Format the current date into date, time, and time zone. Used
    /// by Time replies.
    /// </summary>
    /// <returns>A beautified DateTime</returns>
    private string FormatDateTime() 
    {
      DateTime time = DateTime.Now;
      StringBuilder builder = new StringBuilder();
      builder.Append( time.ToLongDateString() + " ");
      builder.Append( time.ToLongTimeString() + " " );
      builder.Append( "(" + TimeZone.CurrentTimeZone.StandardName + ")" );
      return builder.ToString();
    }
    /// <summary>
    /// Create the next time period and adding the correct number
    /// of ticks. No Ctcp replies will be sent if the current time is not later
    /// than this value.
    /// </summary>
    private void UpdateTime() 
    {
      nextTime = DateTime.Now.ToFileTime() + (long)( floodDelay * TimeSpan.TicksPerMillisecond );
    }
    private void OnCtcpRequest( string command, UserInfo who ) 
    {
      if( DateTime.Now.ToFileTime() > nextTime ) 
      {
        switch( command ) 
        {
          case CtcpUtil.Finger:
            connection.CtcpSender.CtcpReply( command, who.Nick, fingerMessage + " Idle time: " + FormatIdleTime() );
            break;
          case CtcpUtil.Time:
            connection.CtcpSender.CtcpReply( command, who.Nick, FormatDateTime() );
            break;
          case CtcpUtil.UserInfo:
            connection.CtcpSender.CtcpReply( command, who.Nick, userInfoMessage );
            break;
          case CtcpUtil.Version:
            connection.CtcpSender.CtcpReply( command, who.Nick, versionMessage );
            break;
          case CtcpUtil.Source:
            connection.CtcpSender.CtcpReply( command, who.Nick, sourceMessage );
            break;
          case CtcpUtil.ClientInfo:
            connection.CtcpSender.CtcpReply( command, who.Nick, clientInfoMessage );
            break;
          default:
            string error = command + " is not a supported Ctcp query.";
            connection.CtcpSender.CtcpReply( command, who.Nick, error );
            break;
        }
        UpdateTime();
      }
    }
    private void OnCtcpPingRequest( UserInfo who, string timestamp ) 
    {
      connection.CtcpSender.CtcpPingReply( who.Nick, timestamp );
    }

    /// <summary>
    /// Stop listening to the CtcpListener.
    /// </summary>
    internal void Disable() 
    {
      connection.CtcpListener.OnCtcpRequest -= new CtcpRequestEventHandler( OnCtcpRequest );
      connection.CtcpListener.OnCtcpPingRequest -= new CtcpPingRequestEventHandler( OnCtcpPingRequest );
    }

  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.