Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Create user history endpoint
- Loading branch information
Showing
1 changed file
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
import { queryLogs } from "../../../gcloud.js"; | ||
|
||
export async function onRequestGet(context: RequestContext) { | ||
const robloxUserReq = await fetch( | ||
"https://users.roblox.com/v1/usernames/users", | ||
{ | ||
body: JSON.stringify({ | ||
excludeBannedUsers: false, | ||
usernames: [context.params.user as string], | ||
}), | ||
headers: { | ||
"content-type": "application/json", | ||
}, | ||
} | ||
); | ||
|
||
if (!robloxUserReq.ok) { | ||
console.log(await robloxUserReq.json()); | ||
return new Response('{"error":"Failed to resolve username"}', { | ||
headers: { | ||
"content-type": "application/json", | ||
}, | ||
status: 500, | ||
}); | ||
} | ||
|
||
const { data: users }: { data: { [k: string]: any }[] } = | ||
await robloxUserReq.json(); | ||
|
||
if (!users.length) | ||
return new Response('{"error":"No user found with that name"}', { | ||
headers: { | ||
"content-type": "application/json", | ||
}, | ||
status: 400, | ||
}); | ||
|
||
return new Response( | ||
JSON.stringify( | ||
(await queryLogs(users[0].id, context)).sort((a, b) => | ||
a.entity.properties.executed_at.integerValue > | ||
b.entity.properties.executed_at.integerValue | ||
? 1 | ||
: -1 | ||
) | ||
), | ||
{ | ||
headers: { | ||
"content-type": "application/json", | ||
}, | ||
} | ||
); | ||
} |