Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
forked from nark/wirebot

An UNIX chat robot for the Wired 2.0 + 2.5 protocol

License

Notifications You must be signed in to change notification settings

ProfDrLuigi/wirebot_discontinued

 
 

Repository files navigation

Wirebot for UNIX

Introduction

Wirebot is a chat robot for the Wired 2.0 + 2.5 protocol. It connects to a Wired server and interacts with other users following rules and command setup by the administrator. Wirebot is a kind of mix between Wire and Wired, mainly because it is a client program running as a daemon.

Features

  • Support for Wired 2.0 + 2.5 protocol
  • XML-based triggers dictionary
  • Custom chat commands
  • Directory watchers
  • Many more...

How it works

Wirebot is basically a client, that receives/sends/replies messages from/to the server. With Wirebot you can define rules that trigger on received messages to execute a corresponding operation, like for example sending a message back. This I/O system is combined to features like multiple-random-outputs, delays or repeats to create an interactive engine for a chat robot.

The bot also respond to chat commands, thus users can directly execute some operations on-demand. See "Commands " below in the Customize section.

Install Wirebot (UNIX-like systems)

This tutorial explains how to install and run Wirebot on an UNIX-like operating system. (Linux, BSD, OSX, etc)

Howto install on:

Debian/Ubuntu

sudo apt install screen git libxml2-dev libssl-dev libcurl4-openssl-dev libreadline-dev libc6-dev autoconf build-essential zlib1g-dev

Install from the repository

  1. Clone Wiredbot repository:

     git clone https://github.com/profdrluigi/wirebot.git
    
  2. Move into the cloned directory:

     cd wirebot/
    
  3. Add git submodules (here, libwired):

     git submodule update --init --recursive
     libwired/bootstrap
    
  4. Do a fix:

     sed -i 's/mktemp/mkstemp/g' libwired/libwired/file/wi-fs.c
    
  5. Configure the package:

     ./configure
    
  6. Compile both libwired and Wirebot

     make
    

    Use "gmake" on non-GNU systems

  7. Install Wirebot:

     sudo make install
    

Using Wirebot

Run Wirebot

  1. Run it a first time:

     wirebot -D -d
    

    "-D" is to not daemonize the process

    "-d" is to enable debug mode

    This will launch Wirebot a firt time and it will try to connect to localhost:4875 with "admin" login and no password. Wirebot also created default config files (~/.wirebot/). Now kill it (^C), and edit the Wirebot config:

     nano ~/.wirebot/wirebot.conf
    

    Edit the configuration file for your needs, mainly "hostname", "port", "login" and "password" field.

  2. Try to connect again:

     wirebot -D -d
    

    If everything is OK, you should see the following output in the shell:

     ****% wirebot -D -d
     Info: Reading /home/****/.wirebot/wirebot.conf
     Debug:   nick = WireBot
     Debug:   status = Jedi in the Matrix
     Debug:   auto reconnect = yes
     Debug:   reconnect on kick = no
     Debug:   icon path = icon.png
     Debug:   hostname = localhost
     Debug:   port = 4871
     Debug:   login = admin
     Debug:   password = ********
     Info: Reading /home/****/.wirebot/wirebot.xml robot 
     Info: Writting PID file: /home/****/.wirebot/
     Info: Connecting to localhost...
     Info: Trying ::1 at port 4871...
     Info: Connected using AES/256 bits, logging in...
     Info: Logged in, welcome to Wired Server
    
  3. Running normally

You need to run it in a screen-Session. If you run it in Daemon Mode your CPU will going crazy after some time (100% usage).

To start an installed Wired server, run:

screen -dm wirebot -D -d

To enter the running screen session (wiredctl) simply type:

screen -r

To leave the session (not closing!) type

ctrl + a and than d

If you are not familiar with "screen" visit this Site e.g.:

https://linuxize.com/post/how-to-use-linux-screen
  1. To stop it, use the following command:

     kill `cat ~/.wirebot/wirebot.pid`
    

Customize Wirebot

Change the icon

You can update the icon without having to restart the process. Add an "icon.png" file in ~/.wirebot/ directory, and type the following command in the public chat (or private message) where your bot is connected:

!reload

Manage Wirebot dictionary

Wirebot chat-bot engine is based on a XML dictionary located at ~/.wirebot/wirebot.xml by default. In this file, you can found every rules and triggers the bot know. The engine is based on input/output routing of Wired protocol messages, and currenty support two kind your meta-event named rules and commands.

If you modified the dictionary, you have to send a !reload to the bot for changes taking effect.

Rules

The shorter way is to take an example:

<rules>
	<rule permissions="admin,guest" activated="true">
	 	<input message="wired.chat.say" comparison="contains" sensitive="false">hello</input>
	
	 	<output message="wired.chat.say" delay="1">Hey @INPUT_NICK. :-)</output>
	 	<output message="wired.chat.say" delay="1">Hello @INPUT_NICK. :-)</output>
	 	<output message="wired.chat.say" repeat="3">:-)</output>
	 </rule>
</rules>

Definition:

  • permissions: User logins able to trigger this rule, use "any" for all users.
  • activated: Use "true" if the rule is activated, "false" if not.
  • inputs:
    • message: The input message name referring to the Wired specifications. See "currently supported messages" below.
    • comparison: The method used to match the input string.
    • sensitive: Use "true" for sensitive matching, "false" otherwise.
  • outputs:
    • message: The output message name referring to the Wired specifications.
    • delay: Set a delay before executing the output.
    • repeat: Repeat output action as many time as specified.
List of currently supported input messages
  • wired.chat.say
  • wired.chat.me
  • wired.message.message
  • wired.message.broadcast
  • wired.chat.user_join
  • wired.chat.user_leave
List of currently supported output messages
  • wired.chat.say
  • wired.chat.me
  • wired.message.message
  • wired.message.broadcast
Commands

TBD

Watchers

Watchers are triggers that launch on file changes. A watcher observes a directory using the subscribtion system of the Wired 2.0 protocol and executes operations defined into the XML bot dictionary.

TBD

Mac Users

If you are a Mac user, have a look to WireBot for Mac. It provides a binary version for OSX and a graphical user interface to edit dictionnary file. [COming soon]

Licence

Copyright (c) 2011-2012 Rafaël Warnault. All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

About

An UNIX chat robot for the Wired 2.0 + 2.5 protocol

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 48.0%
  • Roff 43.7%
  • Shell 7.5%
  • Other 0.8%