2018-12-24 12:54:28 +01:00
|
|
|
# TelegramSwooleClient
|
2019-01-07 13:24:29 +01:00
|
|
|
Fast, simple, async php telegram client and parser: MadelineProto + Swoole Server
|
|
|
|
|
|
|
|
* Online server for tests (previous version, different request syntax): http://tg.i-c-a.su/?format=json&images=0&url=breakingmash
|
|
|
|
* My content aggregator: [https://i-c-a.su](https://i-c-a.su)
|
|
|
|
|
|
|
|
**Features**
|
|
|
|
* Fast async swoole server
|
2019-01-20 18:20:41 +01:00
|
|
|
* Use as micro-service to access telegram api
|
2019-01-07 13:24:29 +01:00
|
|
|
* Get any public telegram posts from groups as json
|
|
|
|
|
|
|
|
**TODO**
|
|
|
|
* RSS output
|
|
|
|
* flood protection (for use in public)
|
|
|
|
* logging
|
|
|
|
|
|
|
|
**Installation**
|
|
|
|
|
|
|
|
1. Get app_id and app_hash at [my.telegram.org](https://my.telegram.org/)
|
|
|
|
1. Swoole extension required: [Install swoole](https://github.com/swoole/swoole-src#%EF%B8%8F-installation)
|
|
|
|
1. Install this package:
|
|
|
|
|
|
|
|
a. Standalone:
|
|
|
|
|
|
|
|
1. download files from github and extract.
|
|
|
|
2. Run `composer install` inside unpacked directory
|
|
|
|
|
|
|
|
b. Existing project:
|
|
|
|
|
|
|
|
1. Add following into your project's composer.json
|
|
|
|
```
|
|
|
|
"repositories": [
|
|
|
|
{
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/xtrime-ru/TelegramSwooleClient.git"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
|
|
|
"xtrime-ru/telegramswooleclient": "dev-master",
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
**Usage**
|
|
|
|
|
|
|
|
1. Install
|
|
|
|
1. Fill options in .env file (see .env.example)
|
|
|
|
1. Run server/parser
|
|
|
|
```
|
|
|
|
php server.php [--help] [-a|--address=127.0.0.1] [-p|--port=9503]
|
|
|
|
|
|
|
|
Options:
|
|
|
|
|
|
|
|
--help Show this message
|
|
|
|
-a --address Server ip (optional) (example: 127.0.0.1 or 0.0.0.0 to listen all hosts)
|
|
|
|
-p --port Server port (optional) (example: 9503)
|
|
|
|
|
|
|
|
Also all options can be set in .env file (see .env.example)
|
|
|
|
```
|
|
|
|
1. Get posts from any open channel
|
|
|
|
|
|
|
|
* Get 10 latests posts from any open channel via GET request:
|
|
|
|
`http://%address%:%port%/json/%channel%`
|
|
|
|
Example:
|
|
|
|
`http://127.0.0.1:9503/json/breakingmash`
|
|
|
|
* Get posts from multiple channels via POST:
|
|
|
|
|
|
|
|
Url: `http://127.0.0.1:9503/json/`
|
|
|
|
|
|
|
|
Headers: `Content-Type: application/json`
|
|
|
|
|
|
|
|
`form-data` and `x-www-form-urlencoded` should work,
|
|
|
|
but was not tested
|
|
|
|
|
|
|
|
Body:
|
|
|
|
```
|
|
|
|
{
|
|
|
|
"getHistory": [
|
|
|
|
{
|
|
|
|
"peer":"channel#1259060275"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"peer": "breakingmash",
|
|
|
|
"limit": 30,
|
|
|
|
"max_id": 200,
|
|
|
|
}
|
|
|
|
]
|
|
|
|
|
|
|
|
}
|
|
|
|
```
|
|
|
|
You can use any other options from https://docs.madelineproto.xyz/API_docs/methods/messages_getHistory.html
|
|
|
|
peer name can be provided in different formats: https://docs.madelineproto.xyz/API_docs/types/InputPeer.html
|
2019-01-20 18:20:41 +01:00
|
|
|
1. Access telegram api directly via simple get requests.
|
|
|
|
* Url: `http://%address%:%port%/api/%method%/?%param1%=%val%`
|
|
|
|
* All available methods you can find in `src/Client.php`.
|
|
|
|
* <b>Important: All parameters must be passed at strict order!</b>
|
|
|
|
* <b>Important: api available only from ip in whitelist. By default it is: `127.0.0.1`
|
|
|
|
You can add client ip in .env file to `API_CLIENT_WHITELIST` (use json format)
|
2019-01-07 13:24:29 +01:00
|
|
|
|
2019-01-20 18:20:41 +01:00
|
|
|
Examples:
|
|
|
|
* get_info about channel/user: `http://127.0.0.1:9503/api/getInfo/?id=@xtrime`
|
|
|
|
* repost: `http://127.0.0.1:9503/api/forwardMessages/?fromPeer=@xtrime&toPeer=@xtrime&messageId=1234`
|
|
|
|
* get messages from channel/user: `http://127.0.0.1:9503/api/getHistory/?data[peer]=@breakingmash&data[limit]=10`
|
|
|
|
* search: `http://127.0.0.1:9503/api/searchGlobal/?q=Hello%20World&limit=10`
|
|
|
|
* sendMessage: `http://127.0.0.1:9503/api/sendMessage/?data[peer]=@xtrime&data[message]=Hello!`
|
2019-01-07 13:24:29 +01:00
|
|
|
|
|
|
|
**Contacts**
|
|
|
|
|
|
|
|
* Telegram: [@xtrime](tg://resolve?domain=xtrime)
|
|
|
|
* Email: alexander(at)i-c-a.su
|