-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.py
171 lines (132 loc) · 4.8 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# Copyright 2019-2021 Oskar Sharipov <oskarsh[at]riseup[dot]net>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import configparser
import logging
import telebot
from peewee import IntegerField, IntegrityError, Model, SqliteDatabase
config = configparser.ConfigParser()
config.read("config.ini")
parsed_types = config.get("Tech", "forward-types").split(";")
logging.basicConfig(format=config.get("Tech", "logger-format"))
bot = telebot.TeleBot(config.get("Tech", "token"))
db = SqliteDatabase("db.sqlite3")
if config.getboolean("Tech", "proxy"):
telebot.apihelper.proxy = {"https": config.get("Tech", "proxy-server")}
class Block(Model):
user_id = IntegerField(unique=True)
class Meta:
database = db
class Message(Model):
from_ = IntegerField()
id = IntegerField(unique=True)
class Meta:
database = db
db.create_tables([Block, Message])
class Filters:
def is_user(message):
return (
message.chat.id != config.get("Tech", "support-chat-id")
and message.chat.type == "private"
)
def is_admin(message):
return message.chat.id == config.getint("Tech", "support-chat-id")
def is_answer(message):
return (
message.chat.id == config.getint("Tech", "support-chat-id")
and message.reply_to_message is not None
and message.reply_to_message.forward_date is not None
)
def is_blocked(message):
return Block.select().where(Block.user_id == message.chat.id).exists()
def is_not_blocked(message):
return not Block.select().where(Block.user_id == message.chat.id).exists()
@bot.message_handler(commands=["start"])
def send_start(message):
bot.send_message(message.chat.id, config.get("Messages", "start"))
@bot.message_handler(commands=["help"])
def send_help(message):
bot.send_message(message.chat.id, config.get("Messages", "help"))
@bot.message_handler(
content_types=parsed_types,
func=lambda msg: Filters.is_user(msg) and Filters.is_not_blocked(msg),
)
def get_question(message):
if config.getboolean("Tech", "success-question-message"):
bot.send_message(message.chat.id, config.get("Messages", "question-was-sent"))
sent = bot.forward_message(
config.get("Tech", "support-chat-id"), message.chat.id, message.message_id
)
Message.create(from_=message.chat.id, id=sent.message_id).save()
@bot.message_handler(func=Filters.is_user)
def get_error_question(message):
bot.send_message(message.chat.id, config.get("Messages", "question-wasnt-sent"))
@bot.message_handler(commands=["block"], func=Filters.is_answer)
def block(message):
user_id = (
Message.select()
.where(Message.id == message.reply_to_message.message_id)
.get()
.from_
)
try:
Block.create(user_id=user_id).save()
except IntegrityError:
pass
bot.send_message(
message.chat.id, config.get("Messages", "block-user").format(user_id=user_id)
)
@bot.message_handler(commands=["unblock"], func=Filters.is_answer)
def unblock(message):
user_id = (
Message.select()
.where(Message.id == message.reply_to_message.message_id)
.get()
.from_
)
try:
Block.select().where(Block.user_id == user_id).get().delete_instance()
except Block.DoesNotExist:
pass
bot.send_message(
message.chat.id, config.get("Messages", "unblock-user").format(user_id=user_id)
)
@bot.message_handler(content_types=["text", "photo"], func=Filters.is_answer)
def answer_question(message):
to_user_id = (
Message.select()
.where(Message.id == message.reply_to_message.message_id)
.get()
.from_
)
if message.photo is not None:
bot.send_photo(
to_user_id,
message.photo[-1].file_id,
message.caption,
)
else:
bot.send_message(
to_user_id,
config.get("Messages", "get-answer").format(message=message.text),
)
if config.getboolean("Tech", "success-answer-message"):
bot.send_message(
message.chat.id,
config.get("Messages", "answer-was-sent"),
reply_to_message_id=message.message_id,
)
def main():
bot.infinity_polling(none_stop=True, timeout=60)
if __name__ == "__main__":
main()