mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-04-19 19:14:51 +00:00
* Fix missing filtering, filter inconsistencies, and filter logging * Remove unused import and replace removed logger * Make filter log arguments optional * Update ProjectLighthouse.Servers.GameServer/Controllers/MessageController.cs Co-authored-by: sudokoko <sudo@koko.rip> * Update ProjectLighthouse.Servers.Website/Pages/Debug/FilterTestPage.cshtml.cs Co-authored-by: sudokoko <sudo@koko.rip> * Replace filter location strings with enum * Rename enum to FilterLocation for readability --------- Co-authored-by: sudokoko <sudo@koko.rip>
155 lines
No EOL
5.8 KiB
C#
155 lines
No EOL
5.8 KiB
C#
#nullable enable
|
|
using LBPUnion.ProjectLighthouse.Configuration;
|
|
using LBPUnion.ProjectLighthouse.Database;
|
|
using LBPUnion.ProjectLighthouse.Helpers;
|
|
using LBPUnion.ProjectLighthouse.Logging;
|
|
using LBPUnion.ProjectLighthouse.Types.Entities.Level;
|
|
using LBPUnion.ProjectLighthouse.Types.Entities.Profile;
|
|
using LBPUnion.ProjectLighthouse.Types.Entities.Token;
|
|
using LBPUnion.ProjectLighthouse.Types.Filter;
|
|
using LBPUnion.ProjectLighthouse.Types.Logging;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
// I would like to apologize in advance for anyone dealing with this file.
|
|
// Theres probably a better way to do this with delegates but I'm tired.
|
|
// TODO: Clean up this file
|
|
// - jvyden
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Servers.Website.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("slot/{id:int}")]
|
|
public class SlotPageController : ControllerBase
|
|
{
|
|
private readonly DatabaseContext database;
|
|
|
|
public SlotPageController(DatabaseContext database)
|
|
{
|
|
this.database = database;
|
|
}
|
|
|
|
[HttpGet("unpublish")]
|
|
public async Task<IActionResult> UnpublishSlot([FromRoute] int id)
|
|
{
|
|
WebTokenEntity? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
SlotEntity? targetSlot = await this.database.Slots.FirstOrDefaultAsync(s => s.SlotId == id);
|
|
if (targetSlot == null) return this.Redirect("~/slots/0");
|
|
|
|
if (targetSlot.CreatorId != token.UserId) return this.Redirect("~/slot/" + id);
|
|
|
|
this.database.Slots.Remove(targetSlot);
|
|
|
|
await this.database.SaveChangesAsync();
|
|
|
|
return this.Redirect("~/slots/0");
|
|
}
|
|
|
|
[HttpGet("rateComment")]
|
|
public async Task<IActionResult> RateComment([FromRoute] int id, [FromQuery] int commentId, [FromQuery] int rating)
|
|
{
|
|
WebTokenEntity? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
await this.database.RateComment(token.UserId, commentId, rating);
|
|
|
|
return this.Redirect($"~/slot/{id}#{commentId}");
|
|
}
|
|
|
|
[HttpPost("postComment")]
|
|
public async Task<IActionResult> PostComment([FromRoute] int id, [FromForm] string? msg)
|
|
{
|
|
WebTokenEntity? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
// Deny request if in read-only mode
|
|
if (ServerConfiguration.Instance.UserGeneratedContentLimits.ReadOnlyMode) return this.Redirect("~/slot/" + id);
|
|
|
|
if (msg == null)
|
|
{
|
|
Logger.Error($"Refusing to post comment from {token.UserId} on level {id}, {nameof(msg)} is null", LogArea.Comments);
|
|
return this.Redirect("~/slot/" + id);
|
|
}
|
|
|
|
string username = await this.database.UsernameFromWebToken(token);
|
|
string filteredText = CensorHelper.FilterMessage(msg, FilterLocation.SlotReview, username);
|
|
|
|
bool success = await this.database.PostComment(token.UserId, id, CommentType.Level, filteredText);
|
|
if (success)
|
|
{
|
|
Logger.Success($"Posted comment from {username}: \"{filteredText}\" on level {id}", LogArea.Comments);
|
|
}
|
|
else
|
|
{
|
|
Logger.Error($"Failed to post comment from {username}: \"{filteredText}\" on level {id}", LogArea.Comments);
|
|
}
|
|
|
|
return this.Redirect("~/slot/" + id);
|
|
}
|
|
|
|
[HttpGet("heart")]
|
|
public async Task<IActionResult> HeartLevel([FromRoute] int id, [FromQuery] string? callbackUrl)
|
|
{
|
|
if (string.IsNullOrEmpty(callbackUrl)) callbackUrl = "~/slot/" + id;
|
|
|
|
WebTokenEntity? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
SlotEntity? heartedSlot = await this.database.Slots.FirstOrDefaultAsync(s => s.SlotId == id);
|
|
if (heartedSlot == null) return this.NotFound();
|
|
|
|
await this.database.HeartLevel(token.UserId, heartedSlot);
|
|
|
|
return this.Redirect(callbackUrl);
|
|
}
|
|
|
|
[HttpGet("unheart")]
|
|
public async Task<IActionResult> UnheartLevel([FromRoute] int id, [FromQuery] string? callbackUrl)
|
|
{
|
|
if (string.IsNullOrEmpty(callbackUrl)) callbackUrl = "~/slot/" + id;
|
|
|
|
WebTokenEntity? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
SlotEntity? heartedSlot = await this.database.Slots.FirstOrDefaultAsync(s => s.SlotId == id);
|
|
if (heartedSlot == null) return this.NotFound();
|
|
|
|
await this.database.UnheartLevel(token.UserId, heartedSlot);
|
|
|
|
return this.Redirect(callbackUrl);
|
|
}
|
|
|
|
[HttpGet("queue")]
|
|
public async Task<IActionResult> QueueLevel([FromRoute] int id, [FromQuery] string? callbackUrl)
|
|
{
|
|
if (string.IsNullOrEmpty(callbackUrl)) callbackUrl = "~/slot/" + id;
|
|
|
|
WebTokenEntity? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
SlotEntity? queuedSlot = await this.database.Slots.FirstOrDefaultAsync(s => s.SlotId == id);
|
|
if (queuedSlot == null) return this.NotFound();
|
|
|
|
await this.database.QueueLevel(token.UserId, queuedSlot);
|
|
|
|
return this.Redirect(callbackUrl);
|
|
}
|
|
|
|
[HttpGet("unqueue")]
|
|
public async Task<IActionResult> UnqueueLevel([FromRoute] int id, [FromQuery] string? callbackUrl)
|
|
{
|
|
if (string.IsNullOrEmpty(callbackUrl)) callbackUrl = "~/slot/" + id;
|
|
|
|
WebTokenEntity? token = this.database.WebTokenFromRequest(this.Request);
|
|
if (token == null) return this.Redirect("~/login");
|
|
|
|
SlotEntity? queuedSlot = await this.database.Slots.FirstOrDefaultAsync(s => s.SlotId == id);
|
|
if (queuedSlot == null) return this.NotFound();
|
|
|
|
await this.database.UnqueueLevel(token.UserId, queuedSlot);
|
|
|
|
return this.Redirect(callbackUrl);
|
|
}
|
|
} |