|
|
@@ -18,6 +18,10 @@ LdapIntegration.Instance = new LdapIntegration(AppConfiguration.Instance.LDAPCon
|
|
|
|
|
|
|
|
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var rand = new Random();
|
|
|
|
|
|
|
|
var num = rand.NextInt64();
|
|
|
|
|
|
|
|
var mod = num % AppConfiguration.Instance.AverageDaysBetweenRequests;
|
|
|
|
|
|
|
|
|
|
|
|
Console.WriteLine("Setting up user check timer");
|
|
|
|
Console.WriteLine("Setting up user check timer");
|
|
|
|
var userCheckTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false);
|
|
|
|
var userCheckTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false);
|
|
|
|
userCheckTimer.OnOccurence += async (s, ea) =>
|
|
|
|
userCheckTimer.OnOccurence += async (s, ea) =>
|
|
|
@@ -27,7 +31,6 @@ userCheckTimer.OnOccurence += async (s, ea) =>
|
|
|
|
var needsSaving = false;
|
|
|
|
var needsSaving = false;
|
|
|
|
foreach (var memberId in memberList)
|
|
|
|
foreach (var memberId in memberList)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Console.WriteLine("found member: " + memberId);
|
|
|
|
|
|
|
|
var foundUser = dci.Users.Where(u => u.SignalMemberId == memberId).SingleOrDefault();
|
|
|
|
var foundUser = dci.Users.Where(u => u.SignalMemberId == memberId).SingleOrDefault();
|
|
|
|
if (foundUser == null)
|
|
|
|
if (foundUser == null)
|
|
|
|
{
|
|
|
|
{
|
|
|
@@ -97,21 +100,21 @@ pickOfTheDayTimer.OnOccurence += async (s, ea) =>
|
|
|
|
var dci = DataContext.Instance;
|
|
|
|
var dci = DataContext.Instance;
|
|
|
|
var luckyUser = await dci.Users.ElementAtAsync((new Random()).Next(await dci.Users.CountAsync()));
|
|
|
|
var luckyUser = await dci.Users.ElementAtAsync((new Random()).Next(await dci.Users.CountAsync()));
|
|
|
|
var userName = string.IsNullOrEmpty(luckyUser.NickName) ? luckyUser.Name : luckyUser.NickName;
|
|
|
|
var userName = string.IsNullOrEmpty(luckyUser.NickName) ? luckyUser.Name : luckyUser.NickName;
|
|
|
|
SignalIntegration.Instance.SendMessageToGroupAsync($"Today's chosen person to share a song is: **{userName}**");
|
|
|
|
|
|
|
|
SignalIntegration.Instance.SendMessageToGroupAsync($"Today's (optional) suggestion helper to help you pick a song is:\n\n**{suggestion.Title}**\n\n*{suggestion.Description}*");
|
|
|
|
|
|
|
|
SignalIntegration.Instance.SendMessageToUserAsync($"Congratulations, you have been chosen to share a song today!", luckyUser.SignalMemberId);
|
|
|
|
|
|
|
|
var suggestion = await dci.SuggestionHelpers.ElementAtAsync((new Random()).Next(await dci.SuggestionHelpers.CountAsync()));
|
|
|
|
var suggestion = await dci.SuggestionHelpers.ElementAtAsync((new Random()).Next(await dci.SuggestionHelpers.CountAsync()));
|
|
|
|
SignalIntegration.Instance.SendMessageToUserAsync($"Today's (optional) suggestion helper to help you pick a song is:\n\n**{suggestion.Title}**\n\n*{suggestion.Description}*", luckyUser.SignalMemberId);
|
|
|
|
await SignalIntegration.Instance.SendMessageToGroupAsync($"Today's chosen person to share a song is: **{userName}**");
|
|
|
|
SignalIntegration.Instance.SendMessageToUserAsync($"For now please just share your suggestion with the group - in the future I might ask you to share directly with me or via the website to help me keep track of past suggestions!", luckyUser.SignalMemberId);
|
|
|
|
await SignalIntegration.Instance.SendMessageToGroupAsync($"Today's (optional) suggestion helper to help you pick a song is:\n\n**{suggestion.Title}**\n\n*{suggestion.Description}*");
|
|
|
|
|
|
|
|
await SignalIntegration.Instance.SendMessageToUserAsync($"Congratulations, you have been chosen to share a song today!", luckyUser.SignalMemberId);
|
|
|
|
|
|
|
|
await SignalIntegration.Instance.SendMessageToUserAsync($"Today's (optional) suggestion helper to help you pick a song is:\n\n**{suggestion.Title}**\n\n*{suggestion.Description}*", luckyUser.SignalMemberId);
|
|
|
|
|
|
|
|
await SignalIntegration.Instance.SendMessageToUserAsync($"For now please just share your suggestion with the group - in the future I might ask you to share directly with me or via the website to help me keep track of past suggestions!", luckyUser.SignalMemberId);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
pickOfTheDayTimer.Start();
|
|
|
|
pickOfTheDayTimer.Start();
|
|
|
|
|
|
|
|
|
|
|
|
var startUserAssociationProcess = (User userToAssociate) =>
|
|
|
|
var startUserAssociationProcess = async (User userToAssociate) =>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
SignalIntegration.Instance.SendMessageToUserAsync($"Hi, I see you are not associated with any website user yet.", userToAssociate.SignalMemberId);
|
|
|
|
await SignalIntegration.Instance.SendMessageToUserAsync($"Hi, I see you are not associated with any website user yet.", userToAssociate.SignalMemberId);
|
|
|
|
SignalIntegration.Instance.SendMessageToUserAsync($"If you haven't yet, please navigate to https://users.disi.dev to create a new account.", userToAssociate.SignalMemberId);
|
|
|
|
await SignalIntegration.Instance.SendMessageToUserAsync($"If you haven't yet, please navigate to https://users.disi.dev to create a new account.", userToAssociate.SignalMemberId);
|
|
|
|
SignalIntegration.Instance.SendMessageToUserAsync($"Once you have done so, go to https://sotd.disi.dev, login, navigate to \"Unclaimed Phone Numbers\" and click on the \"Claim\" button to start the claim process.", userToAssociate.SignalMemberId);
|
|
|
|
await SignalIntegration.Instance.SendMessageToUserAsync($"Once you have done so, go to https://sotd.disi.dev, login, navigate to \"Unclaimed Phone Numbers\" and click on the \"Claim\" button to start the claim process.", userToAssociate.SignalMemberId);
|
|
|
|
SignalIntegration.Instance.SendMessageToUserAsync($"With a future update you will be required to submit songs via your user account - at that point you will be skipped during the selection process if you have not yet claimed your phone number!", userToAssociate.SignalMemberId);
|
|
|
|
await SignalIntegration.Instance.SendMessageToUserAsync($"With a future update you will be required to submit songs via your user account - at that point you will be skipped during the selection process if you have not yet claimed your phone number!", userToAssociate.SignalMemberId);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
Console.WriteLine("Setting up LdapAssociation timer");
|
|
|
|
Console.WriteLine("Setting up LdapAssociation timer");
|
|
|
@@ -125,7 +128,7 @@ ldapAssociationTimer.OnOccurence += async (s, ea) =>
|
|
|
|
{
|
|
|
|
{
|
|
|
|
user.AssociationInProgress = true;
|
|
|
|
user.AssociationInProgress = true;
|
|
|
|
|
|
|
|
|
|
|
|
startUserAssociationProcess(user);
|
|
|
|
await startUserAssociationProcess(user);
|
|
|
|
user.IsIntroduced = true;
|
|
|
|
user.IsIntroduced = true;
|
|
|
|
needsSaving = true;
|
|
|
|
needsSaving = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|