Skip to content

An intelligent robot for people to search on Telegram.

License

Notifications You must be signed in to change notification settings

hunter2009pf/TeleSearchBot

Repository files navigation

TeleSearchBot

An intelligent robot for people to search on Telegram.

Plan

  1. build up a robot for content search
    • collect info of channels and groups(AI and blockchain related)
    • insert data into ElasticSearch
  2. import adsgram into the robot
  3. fix bugs and enhance the robot

Design

bot_plan

Timeline

Phase 1: Search Optimization

  • Work Content: Improve the accuracy and efficiency of search method with ElasticSearch.
  • Deadline: 2024-07-20

Phase 2: Classifier Optimization

  • Work Content: Add buttons on telebot UI for facilitating the users' operations. Enhance task classifier in the backend.
  • Deadline: 2024-07-27

Phase 3: Crawler Development

  • Work Content: Collect the infomation of channels and groups and insert the data into ElasticSearch. Create scripts or API interface to facilitate the insertion.
  • Deadline: 2024-08-03

Phase 4: Ton Chain Connection

  • Work Content: Import adsgram into telebot and connect telebot with ton chain.
  • Deadline: 2024-08-6

Phase 5: Domain Purchase

  • Work Content: Purchase domain and combine it with IP. Deploy the backend of telebot on Linux.
  • Deadline: 2024-08-10

DSL

PUT /telegroups
{
  "mappings": {
    "properties": {
      "id" : {
        "type" : "integer",
        "index": false
      },
      "name": {
        "type": "text",
        "analyzer": "ik_smart"
      },
      "link": {
        "type": "keyword", 
        "index": false
      },
      "member_count": {
        "type": "integer",
        "index": false
      },
      "tags": {
        "type": "keyword"
      },
      "description": {
        "type": "text",
        "analyzer": "ik_smart"
      }
    }
  }
}

PUT /telechannels
{
  "mappings": {
    "properties": {
      "id" : {
        "type" : "integer",
        "index": false
      },
      "name": {
        "type": "text",
        "analyzer": "ik_smart"
      },
      "link": {
        "type": "keyword", 
        "index": false
      },
      "subscriber_count": {
        "type": "integer",
        "index": false
      },
      "tags": {
        "type": "keyword"
      },
      "description": {
        "type": "text",
        "analyzer": "ik_smart"
      }
    }
  }
}

Log

  1. use API interface to get group ID, the returned message looks like this:
{
	"ok": true,
	"result": [{
		"update_id": 212274839,
		"message": {
			"message_id": 4,
			"from": {
				"id": <message sender ID>,
				"is_bot": false,
				"first_name": "Kim",
				"last_name": "Joohn",
				"language_code": "zh-hans"
			},
			"chat": {
				"id": <group_id>,
				"title": "game fans",
				"type": "supergroup"
			},
			"date": 1720090140,
			"text": "/haha @<robot name>",
			"entities": [{
				"offset": 0,
				"length": 5,
				"type": "bot_command"
			}, {
				"offset": 6,
				"length": 16,
				"type": "mention"
			}]
		}
	}]
}
  1. we can setup webhook to accept messages received by Telebots API: https://api.telegram.org/bot{my_bot_token}/setWebhook?url={url_to_send_updates_to}

Deployment

  1. start docker container
    docker build -t telesearchbot:v0.0.1 .
    docker run --name telebot_test0 -p 8888:8888 -d telesearchbot:v0.0.1
    

Problems

  1. got an error when create telegram application solution: tdlib/telegram-bot-api#273

References

  1. TON: https://github.com/ton-blockchain/ton
  2. TON documents: https://docs.ton.org/
  3. Telegram bots: https://core.telegram.org/bots
  4. Method of creating bots: https://www.kyzy.cc/350.html
  5. Sending messages to bots: https://blog.csdn.net/tz_zs/article/details/127110582
  6. Keeping critical info: https://www.bilibili.com/video/BV1Vj42197kj/?spm_id_from=333.999.0.0&vd_source=c2c36667f866bcdc49a4a305213efb64
  7. Telethon: https://github.com/LonamiWebs/Telethon
  8. Webhook: https://cloud.tencent.com/developer/ask/sof/104354741
  9. Elastic Search: https://www.elastic.co/cn/what-is/vector-search
  10. AdsGram: https://adsgram.ai/

About

An intelligent robot for people to search on Telegram.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published