mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-14 13:52:28 +00:00
* Create .gitattributes Added a .gitattributes file that excludes the local customWordFilter.txt file from merged updates, allowing server operators to maintain their own word filter list and not have it overwritten. * Update .gitignore Added chatCensoredList to gitignore * Update .gitignore * Dynamic censor list file changes Removed .gitattributes file, attempted to make chatCensoredList.txt into a dynamic file loaded at runtime instead. * Added additional censorship coverage Censorship now covers: Level titles Level descriptions Reviews Comments * Delete chatCensoredList.txt * Update .gitignore Co-authored-by: Josh <josh@slendy.pw> * Update filter verbiage * Update ProjectLighthouse.Servers.GameServer/Controllers/CommentController.cs Co-authored-by: Josh <josh@slendy.pw> * Update ProjectLighthouse/Helpers/CensorHelper.cs Co-authored-by: Josh <josh@slendy.pw> * Add CensorConfiguration and add more filters Co-authored-by: Josh <josh@slendy.pw>
83 lines
No EOL
2.9 KiB
C#
83 lines
No EOL
2.9 KiB
C#
#nullable enable
|
|
using LBPUnion.ProjectLighthouse.Helpers;
|
|
using LBPUnion.ProjectLighthouse.Logging;
|
|
using LBPUnion.ProjectLighthouse.PlayerData;
|
|
using LBPUnion.ProjectLighthouse.PlayerData.Profiles;
|
|
using LBPUnion.ProjectLighthouse.Types;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.Website.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("user/{id:int}")]
|
|
public class UserPageController : ControllerBase
|
|
{
|
|
private readonly Database database;
|
|
|
|
public UserPageController(Database database)
|
|
{
|
|
this.database = database;
|
|
}
|
|
|
|
[HttpGet("rateComment")]
|
|
public async Task<IActionResult> RateComment([FromRoute] int id, [FromQuery] int? commentId, [FromQuery] int? rating)
|
|
{
|
|
WebToken? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
await this.database.RateComment(token.UserId, commentId.GetValueOrDefault(), rating.GetValueOrDefault());
|
|
|
|
return this.Redirect($"~/user/{id}#{commentId}");
|
|
}
|
|
|
|
[HttpPost("postComment")]
|
|
public async Task<IActionResult> PostComment([FromRoute] int id, [FromForm] string? msg)
|
|
{
|
|
WebToken? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
if (msg == null)
|
|
{
|
|
Logger.Error($"Refusing to post comment from {token.UserId} on user {id}, {nameof(msg)} is null", LogArea.Comments);
|
|
return this.Redirect("~/user/" + id);
|
|
}
|
|
|
|
// Prevent potential xml injection and censor content
|
|
msg = SanitizationHelper.SanitizeString(msg);
|
|
msg = CensorHelper.FilterMessage(msg);
|
|
|
|
await this.database.PostComment(token.UserId, id, CommentType.Profile, msg);
|
|
Logger.Success($"Posted comment from {token.UserId}: \"{msg}\" on user {id}", LogArea.Comments);
|
|
|
|
return this.Redirect("~/user/" + id);
|
|
}
|
|
|
|
[HttpGet("heart")]
|
|
public async Task<IActionResult> HeartUser([FromRoute] int id)
|
|
{
|
|
WebToken? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
User? heartedUser = await this.database.Users.FirstOrDefaultAsync(u => u.UserId == id);
|
|
if (heartedUser == null) return this.NotFound();
|
|
|
|
await this.database.HeartUser(token.UserId, heartedUser);
|
|
|
|
return this.Redirect("~/user/" + id);
|
|
}
|
|
|
|
[HttpGet("unheart")]
|
|
public async Task<IActionResult> UnheartUser([FromRoute] int id)
|
|
{
|
|
WebToken? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
User? heartedUser = await this.database.Users.FirstOrDefaultAsync(u => u.UserId == id);
|
|
if (heartedUser == null) return this.NotFound();
|
|
|
|
await this.database.UnheartUser(token.UserId, heartedUser);
|
|
|
|
return this.Redirect("~/user/" + id);
|
|
}
|
|
} |