Spaces:
Sleeping
Sleeping
File size: 1,856 Bytes
1ba9d5e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | /**
* Profile Route
*
* Get and update user profiles.
*/
import { NextRequest, NextResponse } from "next/server";
import { getCurrentUser } from "@/lib/auth";
import { getProfileByUsername, createOrUpdateProfile } from "@/lib/db/queries/users";
export async function GET(request: NextRequest) {
try {
const { searchParams } = new URL(request.url);
const username = searchParams.get("username");
if (!username) {
return NextResponse.json({ error: "Username is required" }, { status: 400 });
}
const profile = await getProfileByUsername(username);
if (!profile) {
return NextResponse.json({ error: "Profile not found" }, { status: 404 });
}
return NextResponse.json(profile);
} catch (error) {
console.error("Profile fetch error:", error);
return NextResponse.json({ error: "Internal server error" }, { status: 500 });
}
}
export async function PUT(request: NextRequest) {
try {
const user = await getCurrentUser(request);
if (!user) {
return NextResponse.json({ error: "Unauthorized" }, { status: 401 });
}
const body = await request.json();
const { bio, location, website, twitter, skills, availableForMentoring, mentoringTopics } = body;
const profile = await createOrUpdateProfile(user.id, {
username: user.username,
avatarUrl: user.avatarUrl,
bio,
location,
website,
twitter,
skills,
availableForMentoring,
mentoringTopics,
});
return NextResponse.json(profile);
} catch (error) {
console.error("Profile update error:", error);
return NextResponse.json({ error: "Internal server error" }, { status: 500 });
}
}
|