using Discord; using Discord.Commands; using Discord.WebSocket; using System.Reflection; using DiscordBot.Services; using SharedClasses.SharedModels; using DiscordBot.Messages; namespace DiscordBot.CommandHandlers { public class HandlerFunctions { private readonly HttpService _httpService; public HandlerFunctions(HttpService httpService) { _httpService = httpService; } public async Task IsRaidSignUpAllowed(SocketInteraction component, int raidId, string pressedButtonId) { if(! await _httpService.DoesUserExist(component.User.Id)) { await component.RespondWithModalAsync(CreateAccountModal.buildMessage(raidId, pressedButtonId, component.User.Username)); return false; } Tuple signUpAllowed = await _httpService.IsSignUpAllowed(raidId, component.User.Id); if(!signUpAllowed.Item1) { await component.RespondAsync(signUpAllowed.Item2, ephemeral: true); return false; } return true; } public async Task> CreateAccount(SocketInteraction interaction, DiscordSocketClient client, string name, string account) { //create Account ApiRaid.Role.User user = new ApiRaid.Role.User() { UserName = name, AccountName = account, UserId = interaction.User.Id }; Tuple createAccountResult = await _httpService.CreateAccount(user); if(createAccountResult.Item1) { List serverList = await _httpService.GetUserRenameServers(); await RenameUser(client, interaction.User.Id, name, account, serverList); } return createAccountResult; } public static async Task RenameUser(DiscordSocketClient client, ulong userId, string name, string account, List serverList) { string nickname = $"{name} | {account}"; foreach(ulong serverId in serverList) { try { SocketGuild guild = client.Guilds.FirstOrDefault(g => g.Id == serverId); if(guild != null) { SocketGuildUser user = guild.GetUser(userId); if(user == null) { await guild.DownloadUsersAsync(); user = guild.GetUser(userId); } if(user != null) { await user.ModifyAsync(p => p.Nickname = nickname); } } } catch(Exception e) { Console.WriteLine(e.Message); Console.WriteLine(e.StackTrace); } } } public async Task SelectRole(SocketInteraction component, int raidId, string buttonType, bool allRoles, ulong userIdToSignUp, ulong signedUpByUserId) { if(signedUpByUserId != 0 || await IsRaidSignUpAllowed(component, raidId, buttonType)) { List roles = new List(); roles = await _httpService.GetRoles(raidId, userIdToSignUp); ApiRaid raid = await _httpService.GetRaid(raidId); if(roles.Count > 1) { await component.RespondAsync($"{raid.Title}: Please choose a role.", components: RoleSelectionMessage.buildMessage(roles, raidId, buttonType, allRoles, userIdToSignUp, signedUpByUserId) , ephemeral: true); } else if(roles.Count == 1) { await SelectAccount(buttonType, raidId, component, roles.First().roleId, userIdToSignUp, signedUpByUserId, false); } else { await component.RespondAsync("no role found.", ephemeral: true); } } } public async Task SelectAccount(string buttonType, int raidId, SocketInteraction component, int roleId, ulong userIdToSignUp, ulong signedUpByUserId, bool roleMessageExists = true) { List accounts = await _httpService.GetSignUpAccounts(userIdToSignUp, raidId); if(accounts.Count == 1) { ApiGuildWars2Account account = accounts.First(); if(await SignUp(buttonType, raidId, roleId, userIdToSignUp, account.GuildWars2AccountId, signedUpByUserId)) { await UpdateOrRespond(component, "successfully signed up", null, roleMessageExists); } else { await UpdateOrRespond(component, "signing up failed", null, roleMessageExists); } } else if(accounts.Count > 1) { await UpdateOrRespond(component, "Please choose an account.", AccountSelectionMessage.buildMessage(accounts, raidId, buttonType, roleId, userIdToSignUp, signedUpByUserId), roleMessageExists); } else { await UpdateOrRespond(component, "no suitable Guild Wars 2 account found.", null, roleMessageExists); } } public async Task SignUp(string buttonType, int raidId, int roleId, ulong userIdToSignUp, int gw2AccountId, ulong signedUpByUserId) { ApiSignUp signUp = new ApiSignUp() { raidId = raidId, roleId = roleId, gw2AccountId = gw2AccountId, userId = userIdToSignUp, signedUpByUserId = signedUpByUserId }; switch(buttonType) { case Constants.ComponentIds.SIGN_UP_BUTTON: return await _httpService.SignUp(signUp); break; case Constants.ComponentIds.MAYBE_BUTTON: return await _httpService.SignUpMaybe(signUp); break; case Constants.ComponentIds.BACKUP_BUTTON: return await _httpService.SignUpBackup(signUp); break; case Constants.ComponentIds.FLEX_BUTTON: return await _httpService.SignUpFlex(signUp); break; default: return false; } } public async Task UpdateOrRespond(SocketInteraction component, string messageText, MessageComponent messageComponent, bool editMessage) { if(editMessage && component is SocketMessageComponent) { SocketMessageComponent socketComponent = component as SocketMessageComponent; await socketComponent.UpdateAsync(x => { x.Content = messageText; x.Components = messageComponent; }); } else { await component.RespondAsync(messageText, components: messageComponent , ephemeral: true); } } } }