2022-09-04 20:53:34 +00:00
|
|
|
from files.__main__ import app
|
|
|
|
from files.helpers.wrappers import *
|
|
|
|
from files.helpers.alerts import *
|
|
|
|
from files.helpers.get import *
|
|
|
|
from files.helpers.const import *
|
|
|
|
from files.helpers.wrappers import *
|
|
|
|
from files.helpers.slots import *
|
|
|
|
from files.helpers.lottery import *
|
2022-09-10 21:01:34 +00:00
|
|
|
from files.helpers.casino import *
|
|
|
|
from files.helpers.twentyone import *
|
2022-09-04 20:53:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.get("/casino")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-04 20:53:34 +00:00
|
|
|
@auth_required
|
|
|
|
def casino(v):
|
2022-09-10 21:01:34 +00:00
|
|
|
if v.rehab: return render_template("casino/rehab.html", v=v)
|
|
|
|
return render_template("casino.html", v=v)
|
|
|
|
|
|
|
|
|
|
|
|
@app.get("/lottershe")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-10 21:01:34 +00:00
|
|
|
@auth_required
|
|
|
|
def lottershe(v):
|
|
|
|
if v.rehab: return render_template("casino/rehab.html", v=v)
|
|
|
|
participants = get_users_participating_in_lottery()
|
|
|
|
return render_template("lottery.html", v=v, participants=participants)
|
|
|
|
|
2022-09-09 23:55:13 +00:00
|
|
|
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-05 20:59:42 +00:00
|
|
|
@app.get("/casino/<game>")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-05 20:59:42 +00:00
|
|
|
@auth_required
|
|
|
|
def casino_game_page(v, game):
|
2022-09-10 21:01:34 +00:00
|
|
|
if v.rehab: return render_template("casino/rehab.html", v=v)
|
|
|
|
|
|
|
|
feed = json.dumps(get_game_feed(game))
|
|
|
|
leaderboard = json.dumps(get_game_leaderboard(game))
|
|
|
|
|
|
|
|
return render_template(
|
|
|
|
f"casino/{game}_screen.html",
|
|
|
|
v=v,
|
|
|
|
game=game,
|
|
|
|
feed=feed,
|
|
|
|
leaderboard=leaderboard
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@app.get("/casino/<game>/feed")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-10 21:01:34 +00:00
|
|
|
@auth_required
|
|
|
|
def casino_game_feed(v, game):
|
|
|
|
feed = get_game_feed(game)
|
|
|
|
return {"feed": feed}
|
2022-09-05 20:59:42 +00:00
|
|
|
|
2022-09-04 20:53:34 +00:00
|
|
|
|
|
|
|
@app.post("/casino/slots")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-04 20:53:34 +00:00
|
|
|
@auth_required
|
|
|
|
def pull_slots(v):
|
2022-09-10 21:01:34 +00:00
|
|
|
if v.rehab: return {"error": "You are under Rehab award effect!"}
|
2022-09-09 23:55:13 +00:00
|
|
|
|
2022-09-10 21:01:34 +00:00
|
|
|
try:
|
|
|
|
wager = int(request.values.get("wager"))
|
|
|
|
except:
|
|
|
|
return {"error": "Invalid wager."}
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-10 21:01:34 +00:00
|
|
|
try:
|
|
|
|
currency = request.values.get("currency")
|
|
|
|
except:
|
|
|
|
return {"error": "Invalid currency (expected 'dramacoin' or 'marseybux')."}
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-10 21:01:34 +00:00
|
|
|
if (currency == "dramacoin" and wager > v.coins) or (currency == "marseybux" and wager > v.procoins):
|
|
|
|
return {"error": f"Not enough {currency} to make that bet."}
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-10 21:01:34 +00:00
|
|
|
success, game_state = casino_slot_pull(v, wager, currency)
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-10 21:01:34 +00:00
|
|
|
if success:
|
|
|
|
return {"game_state": game_state, "gambler": {"coins": v.coins, "procoins": v.procoins}}
|
|
|
|
else:
|
|
|
|
return {"error": f"Wager must be more than 5 {currency}."}
|
2022-09-04 20:53:34 +00:00
|
|
|
|
|
|
|
|
2022-09-10 21:01:34 +00:00
|
|
|
@app.post("/casino/twentyone/deal")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-04 20:53:34 +00:00
|
|
|
@auth_required
|
2022-09-10 21:01:34 +00:00
|
|
|
def blackjack_deal_to_player(v):
|
|
|
|
if v.rehab: return {"error": "You are under Rehab award effect!"}
|
2022-09-09 23:55:13 +00:00
|
|
|
|
2022-09-11 01:56:47 +00:00
|
|
|
wager = int(request.values.get("wager"))
|
|
|
|
currency = request.values.get("currency")
|
|
|
|
create_new_game(v, wager, currency)
|
|
|
|
state = dispatch_action(v, BlackjackAction.DEAL)
|
|
|
|
feed = get_game_feed('blackjack')
|
2022-09-04 20:53:34 +00:00
|
|
|
|
2022-09-11 01:56:47 +00:00
|
|
|
return {"success": True, "state": state, "feed": feed}
|
2022-09-04 20:53:34 +00:00
|
|
|
|
|
|
|
|
2022-09-10 21:01:34 +00:00
|
|
|
@app.post("/casino/twentyone/hit")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-04 20:53:34 +00:00
|
|
|
@auth_required
|
2022-09-10 21:01:34 +00:00
|
|
|
def blackjack_player_hit(v):
|
|
|
|
if v.rehab: return {"error": "You are under Rehab award effect!"}
|
|
|
|
|
|
|
|
try:
|
|
|
|
state = dispatch_action(v, BlackjackAction.HIT)
|
|
|
|
feed = get_game_feed('blackjack')
|
|
|
|
return {"success": True, "state": state, "feed": feed, "gambler": {"coins": v.coins, "procoins": v.procoins}}
|
|
|
|
except:
|
|
|
|
return {"error": "Unable to hit."}
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/casino/twentyone/stay")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-10 21:01:34 +00:00
|
|
|
@auth_required
|
|
|
|
def blackjack_player_stay(v):
|
|
|
|
if v.rehab: return {"error": "You are under Rehab award effect!"}
|
|
|
|
|
|
|
|
try:
|
|
|
|
state = dispatch_action(v, BlackjackAction.STAY)
|
|
|
|
feed = get_game_feed('blackjack')
|
|
|
|
return {"success": True, "state": state, "feed": feed, "gambler": {"coins": v.coins, "procoins": v.procoins}}
|
|
|
|
except:
|
|
|
|
return {"error": "Unable to stay."}
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/casino/twentyone/double-down")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-10 21:01:34 +00:00
|
|
|
@auth_required
|
|
|
|
def blackjack_player_doubled_down(v):
|
|
|
|
if v.rehab: return {"error": "You are under Rehab award effect!"}
|
|
|
|
|
|
|
|
try:
|
|
|
|
state = dispatch_action(v, BlackjackAction.DOUBLE_DOWN)
|
|
|
|
feed = get_game_feed('blackjack')
|
|
|
|
return {"success": True, "state": state, "feed": feed, "gambler": {"coins": v.coins, "procoins": v.procoins}}
|
|
|
|
except:
|
|
|
|
return {"error": "Unable to double down."}
|
|
|
|
|
|
|
|
|
|
|
|
@app.post("/casino/twentyone/buy-insurance")
|
2022-09-11 02:05:50 +00:00
|
|
|
@limiter.limit("100/minute;2000/hour;12000/day")
|
2022-09-05 20:59:42 +00:00
|
|
|
@auth_required
|
2022-09-10 21:01:34 +00:00
|
|
|
def blackjack_player_bought_insurance(v):
|
|
|
|
if v.rehab: return {"error": "You are under Rehab award effect!"}
|
|
|
|
|
|
|
|
try:
|
|
|
|
state = dispatch_action(v, BlackjackAction.BUY_INSURANCE)
|
|
|
|
feed = get_game_feed('blackjack')
|
|
|
|
return {"success": True, "state": state, "feed": feed, "gambler": {"coins": v.coins, "procoins": v.procoins}}
|
|
|
|
except:
|
|
|
|
return {"error": "Unable to buy insurance."}
|