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
Add DELETE request handler for short link
- Loading branch information
Showing
1 changed file
with
17 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,17 @@ | ||
import { jsonError } from "../../common.js"; | ||
|
||
export async function onRequestDelete(context: RequestContext) { | ||
const path = context.data.body?.id; | ||
|
||
if (typeof path !== "string") return jsonError("Invalid path", 400); | ||
|
||
await context.env.D1.prepare( | ||
"DELETE FROM short_links WHERE path = ? AND user = ?;", | ||
) | ||
.bind(path, context.data.current_user.id) | ||
.run(); | ||
|
||
return new Response(null, { | ||
status: 204, | ||
}); | ||
} |