fixed quests completion, removed logs

This commit is contained in:
Toastie 2025-03-30 15:43:43 +13:00
parent c058d180ae
commit 524c97d9bf
Signed by: toastie_t0ast
GPG key ID: 0861BE54AD481DC7
2 changed files with 4 additions and 19 deletions
src/EllieBot/Modules/Games/Quests

View file

@ -1,6 +1,5 @@
using LinqToDB;
using LinqToDB.EntityFrameworkCore;
using Microsoft.CodeAnalysis.Operations;
using EllieBot.Common.ModuleBehaviors;
using EllieBot.Db.Models;
@ -46,44 +45,30 @@ public sealed class QuestService(
_ = Task.Run(async () =>
{
Log.Information("Action reported by {UserId}: {EventType} {Metadata}",
userId,
eventType,
metadata.ToJson());
metadata ??= new();
var now = DateTime.UtcNow;
Log.Information("done?");
var alreadyDone = await botCache.GetAsync(UserCompletedDailiesKey(userId));
if (alreadyDone.IsT0)
return;
Log.Information("not done");
var userQuests = await GetUserQuestsAsync(userId, now);
Log.Information("got quests");
foreach (var (q, uq) in userQuests)
{
// deleted quest
if (q is null)
continue;
Log.Information("not deleted {QuestEventType} - {EventType}", q.EventType, eventType);
// user already completed or incorrect event
if (uq.IsCompleted || q.EventType != eventType)
continue;
Log.Information("Gonna update progress");
var newProgress = q.TryUpdateProgress(metadata, uq.Progress);
// user already did that part of the quest
if (newProgress == uq.Progress)
continue;
Log.Information("new progress");
var isCompleted = newProgress >= q.RequiredAmount;
@ -95,7 +80,7 @@ public sealed class QuestService(
.UpdateAsync();
uq.IsCompleted = isCompleted;
if (userQuests.All(x => x.UserQuest.IsCompleted))
{
var timeUntilTomorrow = now.Date.AddDays(1) - DateTime.UtcNow;

View file

@ -15,7 +15,7 @@ public class UserQuest
public QuestIds QuestId { get; set; }
public int Progress { get; set; }
public long Progress { get; set; }
public bool IsCompleted { get; set; }