mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-13 13:22:28 +00:00
Refactor Database into DatabaseContext Moved into separate folder so it actually has a namespace instead sitting in the root
59 lines
No EOL
2.1 KiB
C#
59 lines
No EOL
2.1 KiB
C#
#nullable enable
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using LBPUnion.ProjectLighthouse.Configuration;
|
|
using LBPUnion.ProjectLighthouse.Database;
|
|
using LBPUnion.ProjectLighthouse.Helpers;
|
|
using LBPUnion.ProjectLighthouse.Localization.StringLists;
|
|
using LBPUnion.ProjectLighthouse.Servers.Website.Pages.Layouts;
|
|
using LBPUnion.ProjectLighthouse.Types.Entities.Profile;
|
|
using LBPUnion.ProjectLighthouse.Types.Entities.Token;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.Website.Pages.Email;
|
|
|
|
public class SetEmailForm : BaseLayout
|
|
{
|
|
public SetEmailForm(DatabaseContext database) : base(database)
|
|
{}
|
|
|
|
public string? Error { get; private set; }
|
|
|
|
public IActionResult OnGet()
|
|
{
|
|
if (!ServerConfiguration.Instance.Mail.MailEnabled) return this.NotFound();
|
|
WebToken? token = this.Database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("/login");
|
|
|
|
return this.Page();
|
|
}
|
|
|
|
[SuppressMessage("ReSharper", "SpecifyStringComparison")]
|
|
public async Task<IActionResult> OnPost(string emailAddress)
|
|
{
|
|
if (!ServerConfiguration.Instance.Mail.MailEnabled) return this.NotFound();
|
|
|
|
WebToken? token = this.Database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
User? user = await this.Database.Users.FirstOrDefaultAsync(u => u.UserId == token.UserId);
|
|
if (user == null) return this.Redirect("~/login");
|
|
|
|
if (!SanitizationHelper.IsValidEmail(emailAddress))
|
|
{
|
|
this.Error = this.Translate(ErrorStrings.EmailInvalid);
|
|
return this.Page();
|
|
}
|
|
|
|
if (await this.Database.Users.AnyAsync(u => u.EmailAddress != null && u.EmailAddress.ToLower() == emailAddress.ToLower()))
|
|
{
|
|
this.Error = this.Translate(ErrorStrings.EmailTaken);
|
|
return this.Page();
|
|
}
|
|
|
|
user.EmailAddress = emailAddress;
|
|
await this.Database.SaveChangesAsync();
|
|
|
|
return this.Redirect("/login/sendVerificationEmail");
|
|
}
|
|
} |