generated from nhcarrigan/template
86404497f0
## Summary This PR implements comprehensive user profile enhancements including: - User profile pages showing stats, badges, social links, and bio - Achievement system with 62 achievements across 5 categories - Primary badge selection allowing users to display their preferred badge - Admin profile editing capabilities ## Changes ### User Profiles (#45) - **Frontend**: User profile pages with stats display - Profile cards showing avatar, display name, username, and bio - Social links section (Website, GitHub, Bluesky, LinkedIn, Twitch, YouTube, Discord) - Stats display (suggestions, accepted suggestions, likes, comments) - Recent achievements section - Badge display - Report button for other users' profiles - **Backend**: Profile API endpoints - Get user profile by username or ID - Profile includes stats, badges, and achievement points ### Achievement System (#48) - **Database**: UserAchievement model for tracking progress - **62 Total Achievements** across 5 categories: - **Suggestions (15)**: First suggestion through ultimate curator - **Likes (12)**: First like through legendary fan - **Comments (12)**: First comment through review legend - **Engagement (15)**: Login streaks and activity milestones - **Reports (8)**: Valid reports and accuracy tracking - **Backend**: AchievementService with real-time checking - Integrated into all user interaction points - API endpoints for achievement data - Progress tracking to avoid recalculation - **Frontend**: Achievements page and profile integration - Full achievements page with category filtering - Tier-based styling (Bronze, Silver, Gold, Platinum, Diamond) - Progress indicators for in-progress achievements - Recent achievements on profile pages ### Primary Badge System (#49) - **Database**: Add primaryBadge field to User model - **Backend**: Update profile endpoints to include primary badge - **Frontend**: Primary badge selection in settings - Only shows badges the user has earned - Displayed on profile page - Displayed in comments (next to username) - Falls back to no badge if selection is invalid - **Admin Features**: Admin can edit any user's primary badge ### Admin Enhancements - Comprehensive profile editing modal for admins - Edit display name, bio, slug, social links - Set primary badge for users - Visual feedback for save/error states - Admin action buttons in report review modals - Ban user, delete comment, edit profile - Integrated with report workflow ### Quality Improvements - Improved dropdown option contrast for readability - Hide all badges when no primary badge is selected - "View All" achievements link only shown on own profile - Improved achievement text readability ## Testing - ✅ User profiles display correctly with stats and badges - ✅ Achievement checking works for all interaction types - ✅ Primary badge selection persists and displays correctly - ✅ Admin profile editing saves successfully - ✅ Report workflow integrated with admin actions - ✅ Achievements page shows all 62 achievements with filtering - ✅ Text readability improved across components Closes #45 Closes #48 Closes #49 Co-authored-by: Hikari <hikari@nhcarrigan.com> Reviewed-on: #58 Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com> Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
254 lines
7.6 KiB
TypeScript
254 lines
7.6 KiB
TypeScript
import type { FastifyInstance } from "fastify";
|
|
import { SuggestionService } from "../../services/suggestion.service";
|
|
import { AuditService } from "../../services/audit.service";
|
|
import { AchievementService } from "../../services/achievement.service";
|
|
import { AuditAction, AuditCategory, AchievementCategory } from "@library/shared-types";
|
|
import type {
|
|
SuggestionStatus,
|
|
SuggestionEntity,
|
|
CreateSuggestionDto,
|
|
DeclineSuggestionDto,
|
|
AcceptWithEditsDto,
|
|
} from "@library/shared-types";
|
|
import { adminGuard } from "../../middleware/admin-guard";
|
|
import { bannedGuard } from "../../middleware/banned-guard";
|
|
|
|
export default async function (app: FastifyInstance): Promise<void> {
|
|
// Get all suggestions (admin only)
|
|
app.get<{
|
|
Querystring: { status?: SuggestionStatus; entityType?: SuggestionEntity };
|
|
}>(
|
|
"/",
|
|
{
|
|
preHandler: [app.authenticate, adminGuard],
|
|
},
|
|
async (request, reply) => {
|
|
const { status, entityType } = request.query;
|
|
|
|
const suggestions = await SuggestionService.getAllSuggestions({
|
|
status,
|
|
entityType,
|
|
});
|
|
|
|
reply.send(suggestions);
|
|
}
|
|
);
|
|
|
|
// Get current user's suggestions
|
|
app.get(
|
|
"/my",
|
|
{
|
|
preHandler: [app.authenticate],
|
|
},
|
|
async (request, reply) => {
|
|
const userId = request.user.id;
|
|
const suggestions = await SuggestionService.getUserSuggestions(userId);
|
|
reply.send(suggestions);
|
|
}
|
|
);
|
|
|
|
// Get a single suggestion by ID
|
|
app.get<{ Params: { id: string } }>(
|
|
"/:id",
|
|
{
|
|
preHandler: [app.authenticate],
|
|
},
|
|
async (request, reply) => {
|
|
const { id } = request.params;
|
|
const suggestion = await SuggestionService.getSuggestionById(id);
|
|
|
|
if (!suggestion) {
|
|
return reply.notFound("Suggestion not found");
|
|
}
|
|
|
|
// Non-admins can only view their own suggestions
|
|
if (!request.user.isAdmin && suggestion.userId !== request.user.id) {
|
|
return reply.forbidden("You can only view your own suggestions");
|
|
}
|
|
|
|
reply.send(suggestion);
|
|
}
|
|
);
|
|
|
|
// Create a new suggestion (any authenticated non-banned user)
|
|
app.post<{ Body: CreateSuggestionDto }>(
|
|
"/",
|
|
{
|
|
preHandler: [app.authenticate, bannedGuard, app.csrfProtection],
|
|
},
|
|
async (request, reply) => {
|
|
const userId = request.user.id;
|
|
|
|
try {
|
|
const suggestion = await SuggestionService.createSuggestion(
|
|
userId,
|
|
request.body
|
|
);
|
|
|
|
await AuditService.logFromRequest(request, {
|
|
action: AuditAction.entryCreate,
|
|
category: AuditCategory.content,
|
|
resourceType: "Suggestion",
|
|
resourceId: suggestion.id,
|
|
details: `Created ${suggestion.entityType} suggestion: ${suggestion.title}`,
|
|
success: true,
|
|
});
|
|
|
|
// Check for suggestion achievements
|
|
const achievementService = new AchievementService();
|
|
await achievementService.checkAchievements(
|
|
userId,
|
|
AchievementCategory.Suggestion,
|
|
request
|
|
);
|
|
|
|
reply.send(suggestion);
|
|
} catch (error) {
|
|
return reply.badRequest(
|
|
error instanceof Error ? error.message : "Failed to create suggestion"
|
|
);
|
|
}
|
|
}
|
|
);
|
|
|
|
// Accept a suggestion (admin only)
|
|
app.put<{ Params: { id: string } }>(
|
|
"/:id/accept",
|
|
{
|
|
preHandler: [app.authenticate, adminGuard, app.csrfProtection],
|
|
},
|
|
async (request, reply) => {
|
|
const { id } = request.params;
|
|
|
|
try {
|
|
const suggestion = await SuggestionService.acceptSuggestion(id);
|
|
|
|
await AuditService.logFromRequest(request, {
|
|
action: AuditAction.entryUpdate,
|
|
category: AuditCategory.admin,
|
|
resourceType: "Suggestion",
|
|
resourceId: suggestion.id,
|
|
details: `Accepted ${suggestion.entityType} suggestion: ${suggestion.title}`,
|
|
success: true,
|
|
});
|
|
|
|
// Check for suggestion achievements for the user who made the suggestion
|
|
const achievementService = new AchievementService();
|
|
await achievementService.checkAchievements(
|
|
suggestion.userId,
|
|
AchievementCategory.Suggestion,
|
|
request
|
|
);
|
|
|
|
reply.send(suggestion);
|
|
} catch (error) {
|
|
return reply.badRequest(
|
|
error instanceof Error ? error.message : "Failed to accept suggestion"
|
|
);
|
|
}
|
|
}
|
|
);
|
|
|
|
// Accept a suggestion with edits (admin only)
|
|
app.put<{ Params: { id: string }; Body: AcceptWithEditsDto }>(
|
|
"/:id/accept-with-edits",
|
|
{
|
|
preHandler: [app.authenticate, adminGuard, app.csrfProtection],
|
|
},
|
|
async (request, reply) => {
|
|
const { id } = request.params;
|
|
const editedData = request.body;
|
|
|
|
try {
|
|
const suggestion = await SuggestionService.acceptSuggestionWithEdits(id, editedData);
|
|
|
|
await AuditService.logFromRequest(request, {
|
|
action: AuditAction.entryUpdate,
|
|
category: AuditCategory.admin,
|
|
resourceType: "Suggestion",
|
|
resourceId: suggestion.id,
|
|
details: `Accepted ${suggestion.entityType} suggestion with edits: ${suggestion.title}`,
|
|
success: true,
|
|
});
|
|
|
|
// Check for suggestion achievements for the user who made the suggestion
|
|
const achievementService = new AchievementService();
|
|
await achievementService.checkAchievements(
|
|
suggestion.userId,
|
|
AchievementCategory.Suggestion,
|
|
request
|
|
);
|
|
|
|
reply.send(suggestion);
|
|
} catch (error) {
|
|
return reply.badRequest(
|
|
error instanceof Error ? error.message : "Failed to accept suggestion with edits"
|
|
);
|
|
}
|
|
}
|
|
);
|
|
|
|
// Decline a suggestion (admin only)
|
|
app.put<{ Params: { id: string }; Body: DeclineSuggestionDto }>(
|
|
"/:id/decline",
|
|
{
|
|
preHandler: [app.authenticate, adminGuard, app.csrfProtection],
|
|
},
|
|
async (request, reply) => {
|
|
const { id } = request.params;
|
|
const { reason } = request.body;
|
|
|
|
try {
|
|
const suggestion = await SuggestionService.declineSuggestion(id, reason);
|
|
|
|
await AuditService.logFromRequest(request, {
|
|
action: AuditAction.entryUpdate,
|
|
category: AuditCategory.admin,
|
|
resourceType: "Suggestion",
|
|
resourceId: suggestion.id,
|
|
details: `Declined ${suggestion.entityType} suggestion: ${suggestion.title}${reason ? ` (Reason: ${reason})` : ""}`,
|
|
success: true,
|
|
});
|
|
|
|
reply.send(suggestion);
|
|
} catch (error) {
|
|
return reply.badRequest(
|
|
error instanceof Error ? error.message : "Failed to decline suggestion"
|
|
);
|
|
}
|
|
}
|
|
);
|
|
|
|
// Delete a suggestion (owner or admin only, only if unreviewed)
|
|
app.delete<{ Params: { id: string } }>(
|
|
"/:id",
|
|
{
|
|
preHandler: [app.authenticate, app.csrfProtection],
|
|
},
|
|
async (request, reply) => {
|
|
const { id } = request.params;
|
|
const userId = request.user.id;
|
|
const isAdmin = request.user.isAdmin;
|
|
|
|
try {
|
|
const suggestion = await SuggestionService.deleteSuggestion(id, userId, isAdmin);
|
|
|
|
await AuditService.logFromRequest(request, {
|
|
action: AuditAction.entryDelete,
|
|
category: isAdmin ? AuditCategory.admin : AuditCategory.content,
|
|
resourceType: "Suggestion",
|
|
resourceId: suggestion.id,
|
|
details: `Deleted ${suggestion.entityType} suggestion: ${suggestion.title}`,
|
|
success: true,
|
|
});
|
|
|
|
reply.send({ success: true });
|
|
} catch (error) {
|
|
return reply.badRequest(
|
|
error instanceof Error ? error.message : "Failed to delete suggestion"
|
|
);
|
|
}
|
|
}
|
|
);
|
|
}
|