-
Notifications
You must be signed in to change notification settings - Fork 2
/
kursi.py
163 lines (133 loc) · 6.37 KB
/
kursi.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
#! /usr/bin/env python3
# coding: utf-8
from functools import partial
from io import BytesIO
import pandas as pd
from sqlalchemy import select
from sqlalchemy.exc import NoResultFound
from sqlalchemy.orm import Session, aliased
from telegram import Update
from telegram.ext import (
Application,
CommandHandler,
ContextTypes,
)
from settings import settings
from utils.currency import Currency
from utils.logger import logging
from utils.models import (
Rate,
Subscriber,
initialize_db,
)
from utils.units import UNITS
async def get_kursi(update: Update, context: ContextTypes.DEFAULT_TYPE, unit="EUR"):
currency = Currency(unit)
data = currency.get_all()
msg = "%s თარიღით %s შეადგენს %s ლარს " % (data["Date"], data["Name"], data["Rate"])
await context.bot.send_message(chat_id=update.effective_chat.id, text=msg)
async def start(update: Update, context: ContextTypes.DEFAULT_TYPE):
await context.bot.send_message(
chat_id=update.effective_chat.id,
text="""
კეთილი იყოს თქვენი მობრძანება!
შეგიძლიათ გამოიყენოთ შემდეგი ბრძანებები:
/subscribe - დოლარის და ევროს კურსის განახლების გამოწერა.
ყოველდღიურად მიიღებთ შეტყობინებას მომდევნო დღის კურსის შესატყობად.
/unsubscribe - ზემოთ აღწერილი გამოწერის გაუქმება.
/usd - ამერიკული დოლარის უახლესი კურსის გაგება.
/eur - ევროს უახლესი კურსის გაგება.
/plot - ლარის კურსის გრაფიკი.
""",
)
async def send_sorry(
update: Update, context: ContextTypes.DEFAULT_TYPE, error_message: str
):
msg = "დაფიქსირდა შეცდომა კურსის მოძიებისას.\n%s" % error_message
await context.bot.send_message(chat_id=update.effective_chat.id, text=msg)
async def subscribe(
update: Update, context: ContextTypes.DEFAULT_TYPE, db_session: Session
):
chat_id = update.effective_chat.id
if db_session.query(Subscriber).filter(Subscriber.chat_id == chat_id).count():
msg = "თქვენ უკვე გამოწერილი გაქვთ განახლებები."
else:
subscriber = Subscriber(chat_id=chat_id)
db_session.add(subscriber)
db_session.commit()
msg = "თქვენ გამოიწერეთ ლარის კურსის განახლებები."
logging.debug("User subscribed to rate updates")
await context.bot.send_message(chat_id=chat_id, text=msg)
async def unsubscribe(
update: Update, context: ContextTypes.DEFAULT_TYPE, db_session: Session
):
chat_id = update.effective_chat.id
try:
subscriber = (
db_session.query(Subscriber).filter(Subscriber.chat_id == chat_id).one()
)
except NoResultFound:
msg = "თქვენ არ გაქვთ გამოწერილი ლარის კურსის განახლებები."
else:
db_session.delete(subscriber)
logging.debug("User unsubscribed to rate updates")
msg = "თქვენ გააუქმეთ ლარის კურსის განახლებების გამოწერა."
finally:
db_session.commit()
await context.bot.send_message(chat_id=chat_id, text=msg)
async def inform_subscribers(db_session, application):
currencies = ("USD", "EUR")
data = [Currency(c).get_all() for c in currencies]
msgs = [
"%s თარიღით %s შეადგენს %s ლარს \n\n" % (d["Date"], d["Name"], d["Rate"])
for d in data
]
msg = "".join(msgs)
subscribers = db_session.query(Subscriber).all()
for subscriber in subscribers:
logging.debug("Sending message to subscriber: %s" % subscriber.chat_id)
await application.bot.send_message(chat_id=subscriber.chat_id, text=msg)
async def plot(update: Update, context: ContextTypes.DEFAULT_TYPE, db_session: Session):
logging.debug("Reading data")
# Define subqueries for USD and EUR rates
usd_rate_subquery = select(Rate).where(Rate.currency_id == 1).subquery()
eur_rate_subquery = select(Rate).where(Rate.currency_id == 2).subquery()
# Create aliases for the subqueries
usd_rate = aliased(Rate, usd_rate_subquery)
eur_rate = aliased(Rate, eur_rate_subquery)
# Define the query
query = select(
usd_rate.date, usd_rate.rate.label("usd"), eur_rate.rate.label("eur")
).outerjoin(eur_rate, usd_rate.date == eur_rate.date)
rates = db_session.execute(query).all()
df = pd.DataFrame(rates, columns=("day", "EUR", "USD")).set_index(
keys="day", drop=True
)
img_buf = BytesIO()
img_buf.name = settings.PLOT_NAME
fig = df.plot.line().get_figure()
fig.set_size_inches(20, 7)
fig.savefig(img_buf, format="png")
logging.debug("Chart ready. Sending it")
img_buf.seek(0)
await context.bot.send_photo(chat_id=update.effective_chat.id, photo=img_buf)
def main():
db_session: Session = initialize_db()
subscribe_ses = partial(subscribe, db_session=db_session)
unsubscribe_ses = partial(unsubscribe, db_session=db_session)
plot_fun = partial(plot, db_session=db_session)
application = Application.builder().token(settings.TOKEN).build()
# Add handler for start command
application.add_handler(CommandHandler("start", start))
# Add handlers for currency commands
for unit, commands in UNITS.items():
get_unit = partial(get_kursi, unit=unit)
for command in commands:
application.add_handler(CommandHandler(command, get_unit))
application.add_handler(CommandHandler("subscribe", subscribe_ses))
application.add_handler(CommandHandler("unsubscribe", unsubscribe_ses))
application.add_handler(CommandHandler("plot", plot_fun))
logging.info("Starting polling...")
application.run_polling()
if __name__ == "__main__":
main()