Files
tiku-backend.net/Tiku.Api/Controllers/ProfileController.cs

156 lines
5.6 KiB
C#

using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Tiku.Api.Contracts;
using Tiku.Application.Profile;
using Tiku.Application.Security;
using Tiku.Infrastructure.Profile;
namespace Tiku.Api.Controllers;
[ApiController]
[Authorize(Policy = TikuPolicies.CurrentTenantMember)]
[Produces("application/json")]
[Route("api/profile")]
public sealed class ProfileController(
IProfileService profileService,
ICurrentUser currentUser,
ITenantContext currentTenant) : ControllerBase
{
[HttpGet("me")]
[EndpointSummary("获取当前学生资料")]
[ProducesResponseType<StudentProfileItem>(StatusCodes.Status200OK)]
public async Task<ActionResult<StudentProfileItem>> Me(
[FromQuery] ProfileQueryDto query,
CancellationToken cancellationToken)
{
return Ok(await profileService.GetMeAsync(
ResolveActor(),
new ProfileQuery(query.RecentLimit),
cancellationToken));
}
[HttpPatch("me")]
[EndpointSummary("更新当前学生资料")]
[ProducesResponseType<StudentProfileItem>(StatusCodes.Status200OK)]
public async Task<ActionResult<StudentProfileItem>> UpdateMe(
UpdateProfileDto request,
CancellationToken cancellationToken)
{
return Ok(await profileService.UpdateMeAsync(
ResolveActor(),
request.ToCommand(),
cancellationToken));
}
[HttpGet("exam-countdowns")]
[EndpointSummary("查询考试倒计时")]
[ProducesResponseType<ExamCountdownList>(StatusCodes.Status200OK)]
public async Task<ActionResult<ExamCountdownList>> ExamCountdowns(
[FromQuery] ProfileQueryDto query,
CancellationToken cancellationToken)
{
return Ok(await profileService.GetExamCountdownsAsync(
ResolveActor(),
new ProfileQuery(Limit: query.Limit),
cancellationToken));
}
[HttpGet("notifications")]
[EndpointSummary("查询用户通知")]
[ProducesResponseType<ProfileNotificationList>(StatusCodes.Status200OK)]
public async Task<ActionResult<ProfileNotificationList>> Notifications(
[FromQuery] ProfileQueryDto query,
CancellationToken cancellationToken)
{
return Ok(await profileService.GetNotificationsAsync(
ResolveActor(),
new ProfileNotificationQuery(query.Status, query.Limit),
cancellationToken));
}
[HttpPost("notifications/status")]
[EndpointSummary("更新通知状态")]
[ProducesResponseType<ProfileNotificationList>(StatusCodes.Status200OK)]
public async Task<ActionResult<ProfileNotificationList>> UpdateNotificationStatus(
NotificationStatusDto request,
CancellationToken cancellationToken)
{
return Ok(await profileService.UpdateNotificationStatusAsync(
ResolveActor(),
request.ToCommand(),
cancellationToken));
}
[HttpGet("badges")]
[EndpointSummary("查询徽章列表")]
[ProducesResponseType<BadgeList>(StatusCodes.Status200OK)]
public async Task<ActionResult<BadgeList>> Badges(
[FromQuery] ProfileQueryDto query,
CancellationToken cancellationToken)
{
return Ok(await profileService.GetBadgesAsync(
ResolveActor(),
new BadgeQuery(query.IncludeLocked, query.Category, query.Limit),
cancellationToken));
}
[HttpGet("feedbacks")]
[EndpointSummary("查询反馈记录")]
[ProducesResponseType<IReadOnlyCollection<FeedbackItem>>(StatusCodes.Status200OK)]
public async Task<ActionResult<IReadOnlyCollection<FeedbackItem>>> Feedbacks(
[FromQuery] ProfileQueryDto query,
CancellationToken cancellationToken)
{
return Ok(await profileService.GetFeedbacksAsync(
ResolveActor(),
new FeedbackQuery(query.Status, query.Type, query.Limit),
cancellationToken));
}
[HttpPost("check-in")]
[Tiku.Api.Security.RequireSaasFeature(SaasFeatureCatalog.StudentStore)]
[EndpointSummary("每日签到")]
[ProducesResponseType<CheckInResult>(StatusCodes.Status200OK)]
public async Task<ActionResult<CheckInResult>> CheckIn(CancellationToken cancellationToken)
{
return Ok(await profileService.CheckInAsync(ResolveActor(), cancellationToken));
}
[HttpGet("score-events")]
[Tiku.Api.Security.RequireSaasFeature(SaasFeatureCatalog.StudentStore)]
[EndpointSummary("查询积分流水")]
[ProducesResponseType<ProfileScoreEventList>(StatusCodes.Status200OK)]
public async Task<ActionResult<ProfileScoreEventList>> ScoreEvents(
[FromQuery] ProfileQueryDto query,
CancellationToken cancellationToken)
{
return Ok(await profileService.GetScoreEventsAsync(
ResolveActor(),
new ProfileScoreEventQuery(query.Limit, query.SourceType, query.From, query.To),
cancellationToken));
}
[HttpPost("feedbacks")]
[EndpointSummary("提交意见反馈")]
[ProducesResponseType<FeedbackItem>(StatusCodes.Status200OK)]
public async Task<ActionResult<FeedbackItem>> SubmitFeedback(
SubmitFeedbackDto request,
CancellationToken cancellationToken)
{
return Ok(await profileService.SubmitFeedbackAsync(
ResolveActor(),
request.ToCommand(),
cancellationToken));
}
private ProfileActor ResolveActor()
{
if (currentTenant.TenantId is null || currentUser.UserId is null)
{
throw new ProfileException("Current profile actor was not resolved.", "profile_access_denied");
}
return new ProfileActor(currentTenant.TenantId.Value, currentUser.UserId.Value);
}
}