firecrawl/apps/playwright-service/main.py

77 lines
2.5 KiB
Python
Raw Normal View History

"""
This module provides a FastAPI application that uses Playwright to fetch and return
the HTML content of a specified URL. It supports optional proxy settings and media blocking.
"""
from os import environ
2024-04-25 17:31:28 +00:00
from fastapi import FastAPI
2024-04-15 21:01:47 +00:00
from fastapi.responses import JSONResponse
from playwright.async_api import Browser, async_playwright
2024-04-15 21:01:47 +00:00
from pydantic import BaseModel
PROXY_SERVER = environ.get('PROXY_SERVER', None)
PROXY_USERNAME = environ.get('PROXY_USERNAME', None)
PROXY_PASSWORD = environ.get('PROXY_PASSWORD', None)
BLOCK_MEDIA = environ.get('BLOCK_MEDIA', 'False').upper() == 'TRUE'
2024-04-25 17:31:28 +00:00
2024-04-15 21:01:47 +00:00
app = FastAPI()
class UrlModel(BaseModel):
"""Model representing the URL and associated parameters for the request."""
2024-04-15 21:01:47 +00:00
url: str
2024-05-10 01:00:58 +00:00
wait: int = None
timeout: int = 15000
2024-04-15 21:01:47 +00:00
2024-04-25 17:31:28 +00:00
browser: Browser = None
@app.on_event("startup")
async def startup_event():
"""Event handler for application startup to initialize the browser."""
2024-04-25 17:31:28 +00:00
global browser
playwright = await async_playwright().start()
browser = await playwright.chromium.launch()
@app.on_event("shutdown")
async def shutdown_event():
"""Event handler for application shutdown to close the browser."""
2024-04-25 17:31:28 +00:00
await browser.close()
2024-04-15 21:01:47 +00:00
2024-04-25 17:31:28 +00:00
@app.post("/html")
async def root(body: UrlModel):
"""
Endpoint to fetch and return HTML content of a given URL.
Args:
body (UrlModel): The URL model containing the target URL, wait time, and timeout.
Returns:
JSONResponse: The HTML content of the page.
"""
context = None
if PROXY_SERVER and PROXY_USERNAME and PROXY_PASSWORD:
context = await browser.new_context(proxy={"server": PROXY_SERVER,
"username": PROXY_USERNAME,
"password": PROXY_PASSWORD})
else:
context = await browser.new_context()
if BLOCK_MEDIA:
await context.route("**/*.{png,jpg,jpeg,gif,svg,mp3,mp4,avi,flac,ogg,wav,webm}",
handler=lambda route, request: route.abort())
2024-04-25 17:31:28 +00:00
page = await context.new_page()
await page.goto(
body.url,
wait_until="load",
timeout=body.timeout,
)
2024-05-22 17:45:43 +00:00
# Wait != timeout. Wait is the time to wait after the page is loaded - useful in some cases were "load" / "networkidle" is not enough
if body.wait:
await page.wait_for_timeout(body.wait)
2024-04-25 17:31:28 +00:00
page_content = await page.content()
await context.close()
json_compatible_item_data = {"content": page_content}
return JSONResponse(content=json_compatible_item_data)