Giter Site home page Giter Site logo

signal-bot's Introduction

signal-bot

This is a simple bot system for Signal with minimal dependencies. Pure Java and cross platform.

Building

gradlew installDist should generate a run script at 'build/install/signal-bot/bin/signal-bot'.

Running

  1. To register the bot on the Signal service, run signal-bot --register +12223334444 (change the phone number to any number that you can receive an SMS on.)
  2. After receiving the verification SMS, run signal-bot --verify 123-456 (change the number to the code you received.)
  3. To start the bot, run signal-bot --listen. You should be able to then message the bot and see your messages in the log.
  4. To stop the bot, interrupt with Ctrl+C or kill -2 to allow it to shut down and disconnect gracefully from the Signal service.
  5. To dry-run test the listener, use signal-bot --test. This will start a simple input loop that sends your messages to the bot and sends the response to stdout. This doesn't use the Signal service.

Adding new message responders

  1. Create a new class that implements SignalBot.Responder. For example, this will echo back every message received:
package com.woodencloset.signalbot.responders;

import com.woodencloset.signalbot.SignalBot;

public class EchoResponder implements SignalBot.Responder {
    @Override
    public String getResponse(String messageText) {
        return messageText;
    }
}
  1. Add the line bot.addResponder(new EchoResponder()); to the Main class (as an example, there is a DiceRollResponder included and added already.

Limitations

  • For code simplicity, keys are stored in-memory, so it's mostly suitable for a long running session on a server. If you terminate and re-run, all keys (including identity key) will be re-generated which would neccessitate other parties to re-approve the bot's identity.
  • Group info is stored in-memory as well. If you join a group and then re-run the bot, the first message in the group will be ignored as the bot updates its internal group info. This could be solved by using a message queue, but that's currently not implemented, for code simplicity.
  • Bot interface only supports receiving and sending simple text responses. No images or other data. Messages are always sent back to the sender, or to the group, if sent from one.

signal-bot's People

Contributors

aaronetz avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.