mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-16 11:02:44 -04:00
Added a basic Howl.gg stats command, implemented a setting for controlling the magic number to divide by and retroactively updating bet/profit amounts for unrealized gains on slot feaches
This commit is contained in:
@@ -0,0 +1,34 @@
|
|||||||
|
using System.Text.RegularExpressions;
|
||||||
|
using KfChatDotNetKickBot.Models.DbModels;
|
||||||
|
using KfChatDotNetKickBot.Settings;
|
||||||
|
using KfChatDotNetWsClient.Models.Events;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
|
namespace KfChatDotNetKickBot.Commands;
|
||||||
|
|
||||||
|
public class HowlggStatsCommand : ICommand
|
||||||
|
{
|
||||||
|
public List<Regex> Patterns => [
|
||||||
|
new Regex(@"^howl stats (?<window>\d+)$")
|
||||||
|
];
|
||||||
|
public string HelpText => "Get betting statistics in the given window";
|
||||||
|
public bool HideFromHelp => false;
|
||||||
|
public UserRight RequiredRight => UserRight.Guest;
|
||||||
|
public async Task RunCommand(KickBot botInstance, MessageModel message, GroupCollection arguments, CancellationToken ctx)
|
||||||
|
{
|
||||||
|
var window = Convert.ToInt32(arguments["window"].Value);
|
||||||
|
var start = DateTimeOffset.UtcNow.AddHours(-window);
|
||||||
|
var division = (await Helpers.GetValue(BuiltIn.Keys.HowlggDivisionAmount)).ToType<int>();
|
||||||
|
await using var db = new ApplicationDbContext();
|
||||||
|
// EF SQLite doesn't support filtering on dates :(
|
||||||
|
var bets = (await db.HowlggBets.ToListAsync(ctx)).Where(b => b.Date.UtcDateTime > start).ToList();
|
||||||
|
if (bets.Count == 0)
|
||||||
|
{
|
||||||
|
botInstance.SendChatMessage("No bets captured during this window", true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var output = $"Howl.gg stats for the last {window} hours:[br]" +
|
||||||
|
$"Bets: {bets.Count:N0}; Profit: {bets.Sum(b => b.Profit) / division:C}; Wagered: {bets.Sum(b => b.Bet) / division:C}";
|
||||||
|
botInstance.SendChatMessage(output, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -131,25 +131,33 @@ public class KickBot
|
|||||||
{
|
{
|
||||||
_logger.Debug("Received bet history from Howl.gg");
|
_logger.Debug("Received bet history from Howl.gg");
|
||||||
using var db = new ApplicationDbContext();
|
using var db = new ApplicationDbContext();
|
||||||
foreach (var bets in data.History.Data)
|
foreach (var bet in data.History.Data)
|
||||||
{
|
{
|
||||||
if (db.HowlggBets.Any(b => b.GameId == bets.GameId))
|
// Slot feature buys have an unrealized value that means they show no profit until the feature finishes
|
||||||
|
// The feed will return the correct profit later hence updating the values
|
||||||
|
var existingBet = db.HowlggBets.FirstOrDefault(b => b.BetId == bet.Id);
|
||||||
|
if (existingBet != null)
|
||||||
{
|
{
|
||||||
_logger.Trace("Bet already exists in DB");
|
_logger.Trace("Bet already exists in DB");
|
||||||
|
if (existingBet.Bet == bet.Bet && existingBet.Profit == bet.Profit) continue;
|
||||||
|
_logger.Debug("Updating fields");
|
||||||
|
existingBet.Bet = bet.Bet;
|
||||||
|
existingBet.Profit = bet.Profit;
|
||||||
|
db.SaveChanges();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
db.HowlggBets.Add(new HowlggBetsDbModel
|
db.HowlggBets.Add(new HowlggBetsDbModel
|
||||||
{
|
{
|
||||||
UserId = data.User.Id,
|
UserId = data.User.Id,
|
||||||
BetId = bets.Id,
|
BetId = bet.Id,
|
||||||
GameId = bets.GameId,
|
GameId = bet.GameId,
|
||||||
Bet = bets.Bet,
|
Bet = bet.Bet,
|
||||||
Profit = bets.Profit,
|
Profit = bet.Profit,
|
||||||
Date = bets.Date,
|
Date = bet.Date,
|
||||||
Game = bets.Game
|
Game = bet.Game
|
||||||
});
|
});
|
||||||
_logger.Debug("Added bet to DB");
|
_logger.Info("Added bet to DB");
|
||||||
}
|
}
|
||||||
|
|
||||||
db.SaveChanges();
|
db.SaveChanges();
|
||||||
|
|||||||
@@ -320,6 +320,14 @@ public static class BuiltIn
|
|||||||
Description = "Whether to enable Kick functionality (Pusher websocket mainly)",
|
Description = "Whether to enable Kick functionality (Pusher websocket mainly)",
|
||||||
Default = "true",
|
Default = "true",
|
||||||
IsSecret = false
|
IsSecret = false
|
||||||
|
},
|
||||||
|
new BuiltInSettingsModel
|
||||||
|
{
|
||||||
|
Key = Keys.HowlggDivisionAmount,
|
||||||
|
Regex = @"\d+",
|
||||||
|
Description = "How much to divide the Howlgg bets/profit by to get the real value",
|
||||||
|
Default = "1650",
|
||||||
|
IsSecret = false
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -351,5 +359,6 @@ public static class BuiltIn
|
|||||||
public static string JuiceAmount = "Juice.Amount";
|
public static string JuiceAmount = "Juice.Amount";
|
||||||
public static string KiwiFarmsToken = "KiwiFarms.Token";
|
public static string KiwiFarmsToken = "KiwiFarms.Token";
|
||||||
public static string KickEnabled = "Kick.Enabled";
|
public static string KickEnabled = "Kick.Enabled";
|
||||||
|
public static string HowlggDivisionAmount = "Howlgg.DivisionAmount";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user