-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.py
172 lines (133 loc) · 6.58 KB
/
commands.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
172
# This file contains all the commands that could be processed by Skaffer
# Импорт системных модулей
import requests
import datetime
import time
import os
# Импорт локального файла с настройками
import config
#Импорт класса для обработки изменений на сервере
from bothandler import BotHandler as handler
# Создание бота с заданным токеном
skaffer = handler(config.token)
def start(last_chat_id, last_chat_name):
greet_msg = 'Привет, '
greet_msg += last_chat_name
greet_msg += '! Меня зовут Skaffer и я полностью в твоем распоряжении :)\nP.S Используй /help, чтобы узнать, что я умею'
skaffer.send_message(last_chat_id, greet_msg)
# Функция отправляет в чат сообщение с полезной для пользователя информацией
def help(last_chat_id):
skaffer.send_message(last_chat_id, text = 'Что я могу:\n\n/tt - Получить полное расписание занятий\n/next - Какая же у меня следующая пара?\n/weather - Информация о погоде\n/tod - Расписание на сегодня\n/tom - Расписание на завтра\n/bus - Время прибытия ближайшего автобуса на остановки "Курчатова" и "Факультет Радиофизики"\n\nP.S Вы можете использовать все предложенные команды без символа"/". Просмотреть весь список альтернативных команд - /alt')
def alt(last_chat_id):
skaffer.send_message(last_chat_id, 'Вы можете использовать все команды несколькими способами, например:\n\n/help - help, помощь, памагити\n/next - next, след, следующая, дальше\n/weather - weather, прогноз, погода\n/tt - tt, timetable, расписание\n/tod - tod, сегодня, пары\n/tom - tom, завтра\n/bus47 - bus47, 47')
# Функция отправляет в чат все расписание занятий
def timetable(last_chat_id):
with open('database/timetable.txt') as tt_file:
tt_text = tt_file.read()
skaffer.send_message(last_chat_id, 'Ваше расписание на третий семестр:')
skaffer.send_message(last_chat_id, tt_text)
# Функция отправляет в чат расписание занятий на сегодня
def today_timetable(last_chat_id):
day = list(time.ctime().split())
week_day = day[0]
path = 'database/days/'
path += week_day
path += '.txt'
with open(path) as tt_today_file:
tt_today_text = tt_today_file.read()
if week_day == 'Sat' or week_day == 'Sun':
skaffer.send_message(last_chat_id, 'Сегодня выходной, какая учеба?')
else:
skaffer.send_message(last_chat_id, 'Ваше расписание на сегодня:')
skaffer.send_message(last_chat_id, tt_today_text)
# Функция отправляет в чат расписание занятий на завтра
def tomorrow_timetable(last_chat_id):
week_days_list = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri']
day = list(time.ctime().split())
week_day = day[0]
if week_day == 'Fri' or week_day == 'Sat':
skaffer.send_message(last_chat_id, 'Завтра выходной, какая учеба?')
else:
if week_day == 'Sun':
week_day = 'Mon'
else:
week_day_number = week_days_list.index(week_day)
week_day = week_days_list[week_day_number + 1]
path = 'database/days/'
path += week_day
path += '.txt'
with open(path) as tt_tomorrow_file:
tt_tomorrow_text = tt_tomorrow_file.read()
skaffer.send_message(last_chat_id, 'Ваше расписание на завтра:')
skaffer.send_message(last_chat_id, tt_tomorrow_text)
# Функция отправляет в чат сообщение с информацией о текущей погоде
def weather(last_chat_id):
city = "Minsk,BY"
city_id = 625144
appid = "0e3ef2e80ad4ea15b7ee3bd7c701569f"
try:
weather_request = requests.get("http://api.openweathermap.org/data/2.5/weather",
params={'id': city_id, 'units': 'metric', 'lang': 'ru', 'APPID': appid})
weather_data = weather_request.json()
weather_conditions = weather_data['weather'][0]['description']
weather_temp = str(weather_data['main']['temp'])
weather_message = 'Сейчас за окном '
weather_message += weather_temp
weather_message += ' градусов, '
weather_message += weather_conditions
skaffer.send_message(last_chat_id, weather_message)
except Exception as error_message:
print("Exception while getting the weather", error_message)
pass
# Функция отправляет в чат сообщение с местом и временем следующей пары
def next(last_chat_id):
current_time = list((str(datetime.datetime.now().time())).split(':'))
hours = int(current_time[0]) + 3
minutes = int(current_time[1])
day = list(time.ctime().split())
week_day = day[0]
# week_day = 'Tue'
path = 'database/days/'
path += week_day
path += '.txt'
with open(path) as week_day_file:
pair = list(str(i) for i in week_day_file.readline().strip().split())
if pair[0] != 'Сегодня':
min_hours = 24
next_pair = []
while pair != []:
pair_time = pair[0].split(':')
pair_hour = int(pair_time[0])
pair_minute = int(pair_time[1])
if pair_hour - hours <= 1 and pair_hour - hours >= 0:
print(pair_hour, hours, pair_minute, minutes)
if pair_hour - hours == 0:
if pair_minute - minutes > 0:
next_pair = pair
break
else:
next_pair = pair
break
pair = list(str(i) for i in week_day_file.readline().strip().split())
if next_pair == []:
skaffer.send_message(last_chat_id, 'На сегодня все пары закончились')
else:
pair_message = 'Следующей парой у вас '
pair_message += next_pair[2]
pair_message += ' ('
pair_message += next_pair[1]
pair_message += ')'
pair_message += ' в '
pair_message += next_pair[0]
pair_message += ' в кабинете '
pair_message += next_pair[3]
skaffer.send_message(last_chat_id, pair_message)
next_pair_time = next_pair[0].split(':')
if int(next_pair_time[0]) == 9:
weather(last_chat_id)
else:
pair_message = ''
for word in pair:
pair_message += word
pair_message += ' '
skaffer.send_message(last_chat_id, pair_message)