This repository has been archived on 2021-04-24. You can view files and clone it, but cannot push or open issues or pull requests.
Mikubot/README.md

77 lines
2.7 KiB
Markdown
Raw Normal View History

2014-06-30 12:34:41 +02:00
telegram-bot
============
2014-12-21 12:44:31 +01:00
A Telegram Bot based on plugins using [tg](https://github.com/vysheng/tg).
2014-10-11 12:34:51 +02:00
2014-11-22 13:30:46 +01:00
Multimedia
----------
- When user sends image (png, jpg, jpeg) URL download and send it to origin.
- When user sends media (gif, mp4, pdf, etc.) URL download and send it to origin.
2015-01-04 19:51:32 +01:00
- When user sends twitter URL, send text and images to origin. Requires OAuth Key.
2014-11-22 13:30:46 +01:00
- When user sends youtube URL, send to origin video image.
2014-11-23 11:55:02 +01:00
![http://i.imgur.com/0FGUvU0.png](http://i.imgur.com/0FGUvU0.png) ![http://i.imgur.com/zW7WWWt.png](http://i.imgur.com/zW7WWWt.png) ![http://i.imgur.com/zW7WWWt.png](http://i.imgur.com/kPK7paz.png)
2015-01-12 21:17:16 +01:00
Default enabled commands
2014-10-11 16:27:05 +02:00
------------
2014-08-06 01:19:31 +02:00
```
2014-11-22 15:05:54 +01:00
!9gag -> send random image from 9gag
2014-11-22 13:30:46 +01:00
!echo [whatever] -> echoes the msg
!get (value_name) -> retrieves variables saved with !set
!set [value_name] [data] -> Set value
2015-01-12 21:17:16 +01:00
!img [topic] -> search image with Google API and sends it
!loc (location) -> Gets information about a location, maplink and overview
2014-11-23 11:55:02 +01:00
!stats -> Numer of messages by user
2014-11-22 15:05:54 +01:00
!time [area] -> Displays the local time in an area
!version -> Shows bot version
2015-01-12 21:17:16 +01:00
!google terms -> Searches Google
!help -> Lists all available commands
2014-08-06 01:19:31 +02:00
```
2014-11-22 13:30:46 +01:00
2014-11-23 11:55:02 +01:00
Installation
------------
```bash
# Tested on Ubuntu 14.04, for other OSs check out https://github.com/vysheng/tg#installation
2014-12-10 12:19:50 +01:00
$ sudo apt-get install libreadline-dev libconfig-dev libssl-dev lua5.2 liblua5.2-dev libevent-dev unzip git
2014-11-23 11:55:02 +01:00
$ cd /tmp
$ wget http://luarocks.org/releases/luarocks-2.2.0.tar.gz
$ tar -xzvf luarocks-2.2.0.tar.gz
$ cd luarocks-2.2.0/
$ ./configure
$ make && sudo make install
$ sudo luarocks install oauth
$ sudo luarocks install luasocket
```
```bash
# After those dependencies, lets install the bot
$ cd $HOME
2014-12-10 12:25:18 +01:00
$ git clone https://github.com/yagop/telegram-bot.git --recursive
2014-11-23 11:55:02 +01:00
$ cd telegram-bot/tg
2015-01-12 21:17:16 +01:00
$ ./configure && make && cd ..
$ ./launch.sh # Will ask you for a phone number & confirmation code.
```
Enable more [`plugins`](https://github.com/yagop/telegram-bot/tree/master/plugins)
-------------
See the plugins list with `!plugins` command.
2015-01-12 21:26:24 +01:00
Enable a disabled plugin by `!plugins enable [name]`.
2015-01-12 21:17:16 +01:00
2015-01-12 21:26:24 +01:00
Disable an eanbled plugin by `!plugins disable [name]`.
2015-01-12 21:17:16 +01:00
Those commands require a privileged user, privileged users are defined inside `data/config.lua` (generated by the bot), stop de bot and edit if necessary.
Run it as a daemon
------------
If your linux/unix comes with [upstart](http://upstart.ubuntu.com/) you can run the bot by this way
```bash
2014-12-17 21:31:52 +01:00
$ sed -i "s/yourusername/$(whoami)/g" etc/telegram.conf
$ sed -i "s_telegrambotpath_$(pwd)_g" etc/telegram.conf
$ sudo cp etc/telegram.conf /etc/init/
2014-12-10 12:19:50 +01:00
```
2014-12-21 12:44:31 +01:00
Contact me
------------
You can contact me [via Telegram](https://telegram.me/yago_perez) but if you have an issue please [open](https://github.com/yagop/telegram-bot/issues) one.