2022-05-29 03:33:44 +00:00
|
|
|
import time
|
2022-05-29 04:23:20 +00:00
|
|
|
from random import choice
|
2022-05-29 03:33:44 +00:00
|
|
|
from sqlalchemy import *
|
2022-05-29 04:23:20 +00:00
|
|
|
from files.helpers.alerts import *
|
2022-05-29 03:33:44 +00:00
|
|
|
from files.helpers.wrappers import *
|
2022-06-06 04:07:38 +00:00
|
|
|
from files.helpers.actions import badge_grant
|
2022-05-30 00:49:14 +00:00
|
|
|
from flask import g
|
|
|
|
from .const import *
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-06-06 04:07:38 +00:00
|
|
|
LOTTERY_WINNER_BADGE_ID = 137
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-30 00:49:14 +00:00
|
|
|
def get_active_lottery():
|
2022-05-29 04:23:20 +00:00
|
|
|
return g.db.query(Lottery).order_by(Lottery.id.desc()).filter(Lottery.is_active).one_or_none()
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-29 06:01:45 +00:00
|
|
|
|
2022-05-30 00:49:14 +00:00
|
|
|
def get_users_participating_in_lottery():
|
2022-06-01 03:20:39 +00:00
|
|
|
return g.db.query(User) \
|
|
|
|
.filter(User.currently_held_lottery_tickets > 0) \
|
|
|
|
.order_by(User.currently_held_lottery_tickets.desc()).all()
|
2022-05-29 06:01:45 +00:00
|
|
|
|
|
|
|
|
2022-05-30 00:49:14 +00:00
|
|
|
def get_active_lottery_stats():
|
|
|
|
active_lottery = get_active_lottery()
|
|
|
|
participating_users = get_users_participating_in_lottery()
|
2022-05-29 06:01:45 +00:00
|
|
|
|
|
|
|
return None if active_lottery is None else active_lottery.stats, len(participating_users)
|
|
|
|
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-30 00:49:14 +00:00
|
|
|
def end_lottery_session():
|
|
|
|
active_lottery = get_active_lottery()
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-29 04:23:20 +00:00
|
|
|
if (active_lottery is None):
|
|
|
|
return False, "There is no active lottery."
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-30 00:49:14 +00:00
|
|
|
participating_users = get_users_participating_in_lottery()
|
2022-05-29 04:23:20 +00:00
|
|
|
raffle = []
|
|
|
|
for user in participating_users:
|
|
|
|
for _ in range(user.currently_held_lottery_tickets):
|
|
|
|
raffle.append(user.id)
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-29 04:23:20 +00:00
|
|
|
winner = choice(raffle)
|
2022-05-30 00:49:14 +00:00
|
|
|
active_lottery.winner_id = winner
|
2022-05-29 04:23:20 +00:00
|
|
|
winning_user = next(filter(lambda x: x.id == winner, participating_users))
|
|
|
|
winning_user.coins += active_lottery.prize
|
|
|
|
winning_user.total_lottery_winnings += active_lottery.prize
|
2022-06-06 04:07:38 +00:00
|
|
|
badge_grant(winner, LOTTERY_WINNER_BADGE_ID)
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-29 04:23:20 +00:00
|
|
|
for user in participating_users:
|
2022-05-29 06:01:45 +00:00
|
|
|
chance_to_win = user.currently_held_lottery_tickets / len(raffle) * 100
|
2022-06-06 04:07:38 +00:00
|
|
|
if user.id == winner:
|
|
|
|
notification_text = f'You won {active_lottery.prize} dramacoins in the lottery! ' \
|
|
|
|
+ f'Congratulations!\nOdds of winning: {chance_to_win}%'
|
|
|
|
else:
|
|
|
|
notification_text = f'You did not win the lottery. Better luck next time!\n' \
|
|
|
|
+ f'Odds of winning: {chance_to_win}%'
|
2022-05-29 06:01:45 +00:00
|
|
|
send_repeatable_notification(user.id, notification_text)
|
2022-05-29 04:23:20 +00:00
|
|
|
user.currently_held_lottery_tickets = 0
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-29 04:23:20 +00:00
|
|
|
active_lottery.is_active = False
|
|
|
|
|
2022-05-30 00:49:14 +00:00
|
|
|
manager = g.db.query(User).get(LOTTERY_MANAGER_ACCOUNT_ID)
|
2022-05-30 05:40:55 +00:00
|
|
|
|
|
|
|
if manager:
|
|
|
|
manager.coins -= active_lottery.prize
|
2022-05-29 03:33:44 +00:00
|
|
|
|
|
|
|
g.db.commit()
|
|
|
|
|
2022-05-29 04:23:20 +00:00
|
|
|
return True, f'{winning_user.username} won {active_lottery.prize} dramacoins!'
|
|
|
|
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-30 00:49:14 +00:00
|
|
|
def start_new_lottery_session():
|
|
|
|
end_lottery_session()
|
2022-05-29 03:33:44 +00:00
|
|
|
|
|
|
|
lottery = Lottery()
|
|
|
|
epoch_time = int(time.time())
|
|
|
|
one_week_from_now = epoch_time + 60 * 60 * 24 * 7
|
|
|
|
lottery.ends_at = one_week_from_now
|
|
|
|
lottery.is_active = True
|
|
|
|
|
|
|
|
g.db.add(lottery)
|
|
|
|
g.db.commit()
|
|
|
|
|
|
|
|
|
2022-06-07 11:36:55 +00:00
|
|
|
def check_if_end_lottery_task():
|
|
|
|
active_lottery = get_active_lottery()
|
|
|
|
|
|
|
|
if active_lottery is None:
|
|
|
|
return False
|
|
|
|
elif active_lottery.timeleft > 0:
|
|
|
|
return False
|
|
|
|
|
|
|
|
start_new_lottery_session()
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2022-06-02 23:19:49 +00:00
|
|
|
def purchase_lottery_tickets(v, quantity=1):
|
2022-06-07 21:50:31 +00:00
|
|
|
if quantity < 1:
|
|
|
|
return False, "Must purchase one or more lottery tickets."
|
|
|
|
elif (v.coins < LOTTERY_TICKET_COST * quantity):
|
2022-05-29 06:06:39 +00:00
|
|
|
return False, f'Lottery tickets cost {LOTTERY_TICKET_COST} dramacoins each.'
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-30 00:49:14 +00:00
|
|
|
most_recent_lottery = get_active_lottery()
|
2022-05-29 04:23:20 +00:00
|
|
|
if (most_recent_lottery is None):
|
2022-05-29 06:06:39 +00:00
|
|
|
return False, "There is no active lottery."
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-06-02 23:19:49 +00:00
|
|
|
v.coins -= LOTTERY_TICKET_COST * quantity
|
|
|
|
v.currently_held_lottery_tickets += quantity
|
|
|
|
v.total_held_lottery_tickets += quantity
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-06-02 23:19:49 +00:00
|
|
|
net_ticket_value = (LOTTERY_TICKET_COST - LOTTERY_SINK_RATE - LOTTERY_ROYALTY_RATE) * quantity
|
2022-05-29 03:33:44 +00:00
|
|
|
most_recent_lottery.prize += net_ticket_value
|
2022-06-02 23:19:49 +00:00
|
|
|
most_recent_lottery.tickets_sold += quantity
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-30 02:59:22 +00:00
|
|
|
grant_lottery_proceeds_to_manager(net_ticket_value)
|
2022-05-29 03:33:44 +00:00
|
|
|
|
2022-05-30 00:49:14 +00:00
|
|
|
beneficiary = g.db.query(User).get(LOTTERY_ROYALTY_ACCOUNT_ID)
|
2022-05-30 05:40:55 +00:00
|
|
|
|
|
|
|
if beneficiary:
|
2022-06-02 23:19:49 +00:00
|
|
|
beneficiary.coins += LOTTERY_ROYALTY_RATE * quantity
|
2022-05-29 03:33:44 +00:00
|
|
|
|
|
|
|
g.db.commit()
|
|
|
|
|
2022-06-02 23:19:49 +00:00
|
|
|
return True, f'Successfully purchased {quantity} lottery tickets!'
|
2022-05-30 02:59:22 +00:00
|
|
|
|
2022-06-03 06:24:32 +00:00
|
|
|
def grant_lottery_proceeds_to_manager(prize_value):
|
2022-05-30 02:59:22 +00:00
|
|
|
manager = g.db.query(User).get(LOTTERY_MANAGER_ACCOUNT_ID)
|
2022-05-30 05:40:55 +00:00
|
|
|
|
|
|
|
if manager:
|
2022-06-03 06:24:32 +00:00
|
|
|
manager.coins += prize_value
|
2022-05-30 02:59:22 +00:00
|
|
|
|
|
|
|
def grant_lottery_tickets_to_user(v, amount):
|
|
|
|
active_lottery = get_active_lottery()
|
|
|
|
prize_value = amount * LOTTERY_TICKET_COST
|
|
|
|
|
|
|
|
if active_lottery:
|
|
|
|
v.currently_held_lottery_tickets += amount
|
|
|
|
v.total_held_lottery_tickets += amount
|
|
|
|
|
|
|
|
active_lottery.prize += prize_value
|
|
|
|
active_lottery.tickets_sold += amount
|
|
|
|
|
2022-06-03 06:24:32 +00:00
|
|
|
grant_lottery_proceeds_to_manager(prize_value)
|
2022-05-30 02:59:22 +00:00
|
|
|
|
|
|
|
g.db.commit()
|