mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-13 16:51:27 +00:00
* Simplify website rank badges to use semantic classes * Fix ambiguity between partial display types * Add profile vanity tags and needed migration * Make form field read only to non-administrators * Display lock icon if user is not admin to minimize confusion * Also display lock icon for username field since it's readonly * Fix up naming consistency issues and edit migration accordingly * Apply suggestions from code review * Add space between placeholder property and ternary operator
101 lines
No EOL
3.7 KiB
C#
101 lines
No EOL
3.7 KiB
C#
#nullable enable
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using LBPUnion.ProjectLighthouse.Configuration;
|
|
using LBPUnion.ProjectLighthouse.Database;
|
|
using LBPUnion.ProjectLighthouse.Files;
|
|
using LBPUnion.ProjectLighthouse.Helpers;
|
|
using LBPUnion.ProjectLighthouse.Localization;
|
|
using LBPUnion.ProjectLighthouse.Servers.Website.Pages.Layouts;
|
|
using LBPUnion.ProjectLighthouse.Types.Entities.Profile;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.Website.Pages;
|
|
|
|
public class UserSettingsPage : BaseLayout
|
|
{
|
|
|
|
public UserEntity? ProfileUser;
|
|
public UserSettingsPage(DatabaseContext database) : base(database)
|
|
{}
|
|
|
|
[SuppressMessage("ReSharper", "SpecifyStringComparison")]
|
|
public async Task<IActionResult> OnPost
|
|
(
|
|
[FromRoute] int userId,
|
|
[FromForm] string? avatar,
|
|
[FromForm] string? username,
|
|
[FromForm] string? email,
|
|
[FromForm] string profileTag,
|
|
[FromForm] string? biography,
|
|
[FromForm] string? timeZone,
|
|
[FromForm] string? language
|
|
)
|
|
{
|
|
this.ProfileUser = await this.Database.Users.FirstOrDefaultAsync(u => u.UserId == userId);
|
|
if (this.ProfileUser == null) return this.NotFound();
|
|
|
|
if (this.User == null) return this.Redirect("~/user/" + userId);
|
|
|
|
if (!this.User.IsModerator && this.User != this.ProfileUser) return this.Redirect("~/user/" + userId);
|
|
|
|
string? avatarHash = await FileHelper.ParseBase64Image(avatar);
|
|
|
|
if (avatarHash != null) this.ProfileUser.IconHash = avatarHash;
|
|
|
|
if (this.User.IsAdmin) this.ProfileUser.ProfileTag = profileTag;
|
|
|
|
if (biography != null)
|
|
{
|
|
biography = CensorHelper.FilterMessage(biography);
|
|
if (this.ProfileUser.Biography != biography && biography.Length <= 512)
|
|
this.ProfileUser.Biography = biography;
|
|
}
|
|
|
|
if (ServerConfiguration.Instance.Mail.MailEnabled &&
|
|
SanitizationHelper.IsValidEmail(email) &&
|
|
(this.User == this.ProfileUser || this.User.IsAdmin))
|
|
{
|
|
// if email hasn't already been used
|
|
if (!await this.Database.Users.AnyAsync(u => u.EmailAddress != null && u.EmailAddress.ToLower() == email!.ToLower()))
|
|
{
|
|
if (this.ProfileUser.EmailAddress != email)
|
|
{
|
|
this.ProfileUser.EmailAddress = email;
|
|
this.ProfileUser.EmailAddressVerified = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (this.ProfileUser == this.User)
|
|
{
|
|
if (!string.IsNullOrWhiteSpace(language) && this.ProfileUser.Language != language)
|
|
{
|
|
if (LocalizationManager.GetAvailableLanguages().Contains(language))
|
|
this.ProfileUser.Language = language;
|
|
}
|
|
|
|
if (!string.IsNullOrWhiteSpace(timeZone) && this.ProfileUser.TimeZone != timeZone)
|
|
{
|
|
HashSet<string> timeZoneIds = TimeZoneInfo.GetSystemTimeZones().Select(t => t.Id).ToHashSet();
|
|
if (timeZoneIds.Contains(timeZone)) this.ProfileUser.TimeZone = timeZone;
|
|
}
|
|
}
|
|
|
|
|
|
await this.Database.SaveChangesAsync();
|
|
return this.Redirect("~/user/" + userId);
|
|
}
|
|
|
|
public async Task<IActionResult> OnGet([FromRoute] int userId)
|
|
{
|
|
this.ProfileUser = await this.Database.Users.FirstOrDefaultAsync(u => u.UserId == userId);
|
|
if (this.ProfileUser == null) return this.NotFound();
|
|
|
|
if (this.User == null) return this.Redirect("~/user/" + userId);
|
|
|
|
if (!this.User.IsModerator && this.User != this.ProfileUser) return this.Redirect("~/user/" + userId);
|
|
|
|
return this.Page();
|
|
}
|
|
} |