Code Monkey home page Code Monkey logo

joker-telegram-bot's Introduction

Joker Telegram Bot

Born in 2001'th this bot was entertaiment chatbot written in miRCscript, joking on #blackcrystal Quakenet channel.

Since that time many things has been changed. Here is third rewrite of Joker, made for Telegram to be modern and simple, with PHP to be fun.

Currently this bot is used in telegram channel @blackcrystalnet

Why so serous

Joker history (Russian)

Installation and start

Ubuntu/Debian
Install required software packages
sudo apt-get install php-cli php-gd php-json php-curl php-mbstring git composer screen ttf-ubuntu-font-family 
CentOS/Red Hat
Install required software packages
sudo yum install php-cli php-gd php-json php-curl php-mbstring git composer screen
Install Ubuntu fonts

This is optional step, Ubuntu font is necessary for one of included plugins. You can change it to any other font in plugin configuration.

sudo mkdir -p /usr/share/fonts
wget https://assets.ubuntu.com/v1/0cef8205-ubuntu-font-family-0.83.zip
unzip 0cef8205-ubuntu-font-family-0.83.zip -d /usr/share/fonts/
sudo fc-cache -fv
Windows
  1. Install PHP 7.4 with basic extensions gd, json, curl, mbstring, or just XAMPP
  2. Install Git
  3. Install Composer
  4. Install Ubuntu fonts

Clone repository and install dependencies.

git clone https://github.com/miamibc/joker-telegram-bot.git
cd joker-telegram-bot
composer install
cp .env.sample .env

To run Telegram bot, you must be registered in BotFather and have working Telegram API token placed in .env configuration file or joker.php directly.

Now we are ready to start.

php joker.php

Find your bot in Telegram by name and say him Hi.

Use screen command, to run bot in background.

Plugins

By default bot does nothing, plugins is used to extend functionality and interact with users. We made few classic plugins for Joker, like Hello and more complex one Temp, feel free to use them and add new.

To add plugin, create new class extending Joker\Plugin and connect it with $joker->plug( array ) command before main loop. Add methods like on[Action][Action]( Joker\Parser\Update $update ). These methods will be called when all actions is found in request. Actions can be:

  • Public - public requests
  • Private - non-public requests
  • Group - group, supergroup and channel requests
  • Message - all requests contains message, except Empty.
  • Sticker - stickers or replies with sticker
  • Text - has text
  • Photo - has photo
  • Caption - has caption, usually on photo
  • Animation - has animation
  • Audio - has audio
  • Document - has document
  • Video - has video
  • Voice - has voice
  • Contact - has contact
  • Dice - is a rolled dice
  • Game - contains game
  • Reply - is a reply
  • Forward - is a forwarded message
  • Poll - polls
  • Edit - edited message
  • Location - location
  • Join - user joined the chat
  • Leave - user leaves the chat
  • Pin - new pinned message
  • Entities - has entities attached
  • Viabot - message is sent via bot
  • Empty - empty requests, you can use this for processing timers

For example, onPrivateSticker or onStickerPrivate will be called when both sticker and private is found in request.

Parameter of this method Joker\Parser\Update $update is used to access different parts of updates and react.

All details are described in Joker\Parser classes, to get information from update use methods with same names as in Telegram API types on $update object, for example $update->message()->chat()->username() will return username of chat, where message was sent to.

Actions can be called from update, for example $update->answerMessage() or $update->answerSticker() is a shortcut to answer same channel or private user, by message or sticker. Other actions can be found in Joker\Parser\Update class and others.

Return value of plugin method can be:

  • Joker\Bot::PLUGIN_NEXT or true or null- (default) process next plugin in chain
  • Joker\Bot::PLUGIN_BREAK or false - do not process plugin chain anymore.

More information about existing plugins functionality can be found here.

I'll be glad to see your plugins and help with implementations.

Helpers

We created few classes for our needs, i called them Helpers.

Description and examples can be found in Helpers documentation.

Todo

  • Reboot counter
  • Restart plugins without lose their state
  • Reload plugins without actual restart
  • Add onTimer event type, to process events by time
  • Add CommandPlugin base class, to simplify adding new commands
  • Database implementations: Redis, Mysql, Simplesql and nosql
  • Audio processing with ffmpeg and sending with sendAudio/sendVoice
  • CowsayPlugin post image instead of text
  • Improved admin of jokes
  • Implement Payments
  • Currency rates (thanks ʎǝxǝl∀ for ide∀)
  • Corona plugin
  • Chpocker HTML5 game
  • Inline quote plugin
  • More cool plugins

Please send your ideas into the issues

Project pages

Contributors

joker-telegram-bot's People

Contributors

miamibc avatar dacaps 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.