-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added get and get total posts request for a new asylum-refugees front…
…-end (#37)
- Loading branch information
1 parent
4f9db3b
commit 9dc567a
Showing
2 changed files
with
54 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,32 @@ | ||
import { NextResponse } from 'next/server'; | ||
import { | ||
getPaginationParams, | ||
fetchJobPostings, | ||
handleError, | ||
} from '../siteRequestUtils'; | ||
|
||
export async function GET(req) { | ||
try { | ||
//Todo: Update the site5 name to asylum-refugees | ||
const siteCriteria = { site5: true }; | ||
|
||
// Extract pagination parameters | ||
const { skip, pageSize } = getPaginationParams(req); | ||
|
||
// Query job postings with pagination | ||
const jobPostings = await fetchJobPostings(siteCriteria, skip, pageSize); | ||
|
||
if (jobPostings.length === 0) { | ||
return NextResponse.json( | ||
{ message: 'Not Found - No job postings found on this page' }, | ||
{ status: 404 } | ||
); | ||
} | ||
|
||
// Return success response with the paginated job postings | ||
return NextResponse.json({ jobPostings }, { status: 200 }); | ||
} catch (error) { | ||
// Handle errors | ||
return handleError(error); | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
src/app/api/job-posting/asylum-refugees/total-posts/route.js
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,22 @@ | ||
import { NextResponse } from 'next/server'; | ||
import { getTotalNumberOfPostings, handleError } from '../../siteRequestUtils'; | ||
|
||
export async function GET() { | ||
try { | ||
const siteCriteria = { site5: true }; | ||
|
||
let jobPostings = await getTotalNumberOfPostings(siteCriteria); | ||
|
||
if (jobPostings < 1) { | ||
return NextResponse.json( | ||
{ message: 'Not Found - No job postings found on this page' }, | ||
{ status: 404 } | ||
); | ||
} | ||
|
||
return NextResponse.json({ jobPostings }, { status: 200 }); | ||
} catch (error) { | ||
// Handle errors | ||
return handleError(error); | ||
} | ||
} |