2023-07-10 20:07:19 -07:00
|
|
|
from fastapi import APIRouter
|
2023-07-06 16:44:38 -07:00
|
|
|
|
2023-07-07 19:00:59 -07:00
|
|
|
from api.core.scrapers.indeed import IndeedScraper
|
2023-07-08 04:57:36 -07:00
|
|
|
from api.core.scrapers.ziprecruiter import ZipRecruiterScraper
|
2023-07-08 07:34:55 -07:00
|
|
|
from api.core.scrapers.linkedin import LinkedInScraper
|
2023-07-10 16:04:44 -07:00
|
|
|
from api.core.scrapers import ScraperInput, Site, JobResponse
|
2023-07-07 19:00:59 -07:00
|
|
|
|
2023-08-19 16:46:03 -07:00
|
|
|
router = APIRouter(prefix="/jobs", tags=["jobs"])
|
2023-07-07 19:00:59 -07:00
|
|
|
|
2023-07-08 19:36:08 -07:00
|
|
|
SCRAPER_MAPPING = {
|
|
|
|
Site.LINKEDIN: LinkedInScraper,
|
|
|
|
Site.INDEED: IndeedScraper,
|
|
|
|
Site.ZIP_RECRUITER: ZipRecruiterScraper,
|
|
|
|
}
|
2023-07-07 19:00:59 -07:00
|
|
|
|
2023-07-08 07:34:55 -07:00
|
|
|
|
2023-07-10 16:21:01 -07:00
|
|
|
@router.post("/", response_model=JobResponse)
|
2023-07-10 20:07:19 -07:00
|
|
|
async def scrape_jobs(scraper_input: ScraperInput):
|
2023-07-10 16:04:44 -07:00
|
|
|
scraper_class = SCRAPER_MAPPING[scraper_input.site_type]
|
2023-07-08 19:36:08 -07:00
|
|
|
scraper = scraper_class()
|
2023-07-08 07:34:55 -07:00
|
|
|
|
2023-07-08 19:36:08 -07:00
|
|
|
job_response = scraper.scrape(scraper_input)
|
2023-07-07 19:00:59 -07:00
|
|
|
|
|
|
|
return job_response
|