Spaces:
Sleeping
Sleeping
File size: 18,799 Bytes
1837ea3 aec3e24 9a3e6bb f9f4ada 9a3e6bb aec3e24 1837ea3 aec3e24 1837ea3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 |
import gradio as gr
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
from webdriver_manager.chrome import ChromeDriverManager
from bs4 import BeautifulSoup
import requests
from urllib.parse import urlparse, urljoin
import os
import time
from concurrent.futures import ThreadPoolExecutor
import tempfile
import base64
from io import BytesIO
from PIL import Image
import atexit
import shutil
from llm_analyzer import analyze_screenshots
import json
# Define viewport sizes
VIEWPORT_SIZES = {
'desktop': (1920, 1080),
'mobile': (375, 812) # iPhone X dimensions
}
# Keep track of temporary files for cleanup
temp_files = set()
def cleanup_temp_files():
"""Clean up all temporary files created during the session."""
print("\nCleaning up temporary files...")
for file_path in temp_files:
try:
if os.path.exists(file_path):
os.remove(file_path)
print(f"Removed temporary file: {file_path}")
except Exception as e:
print(f"Error removing temporary file {file_path}: {str(e)}")
# Register cleanup function to run on exit
atexit.register(cleanup_temp_files)
def setup_driver(viewport_type='desktop'):
"""Set up and return a configured Chrome WebDriver."""
print(f"Setting up Chrome WebDriver for {viewport_type} view...")
chrome_options = Options()
chrome_options.add_argument("--headless")
chrome_options.add_argument("--no-sandbox")
chrome_options.add_argument("--disable-dev-shm-usage")
# Set viewport size
width, height = VIEWPORT_SIZES[viewport_type]
chrome_options.add_argument(f"--window-size={width},{height}")
# Add mobile emulation for mobile view
if viewport_type == 'mobile':
mobile_emulation = {
"deviceMetrics": {"width": width, "height": height, "pixelRatio": 3.0},
"userAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1"
}
chrome_options.add_experimental_option("mobileEmulation", mobile_emulation)
# Configure WebDriver Manager environment variables
os.environ['WDM_LOCAL'] = '1' # Use local cache
# os.environ['WDM_SSL_VERIFY'] = '0' # Disable SSL verification
os.environ['WDM_PATH'] = '/tmp/.wdm' # Set custom path for ChromeDriver
# Create the directory if it doesn't exist
os.makedirs(os.environ['WDM_PATH'], exist_ok=True)
# Set permissions for the directory
os.chmod(os.environ['WDM_PATH'], 0o777)
service = Service(ChromeDriverManager().install())
driver = webdriver.Chrome(service=service, options=chrome_options)
print(f"Chrome WebDriver setup complete for {viewport_type} view!")
return driver
def get_urls(url):
"""Extract both subdomains and paths from a given URL."""
try:
print(f"\nStarting URL discovery for {url}...")
# Parse the main domain
parsed_url = urlparse(url)
main_domain = parsed_url.netloc
# Get the base domain (e.g., example.com from sub.example.com)
parts = main_domain.split('.')
if len(parts) > 2:
base_domain = '.'.join(parts[-2:])
else:
base_domain = main_domain
print(f"Base domain identified: {base_domain}")
# Make a request to the main domain
print("Fetching main page content...")
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
# Find all links
print("Analyzing page for URLs...")
urls = set()
# Process all links
for link in soup.find_all('a'):
href = link.get('href')
if href:
try:
# Convert relative URLs to absolute
full_url = urljoin(url, href)
parsed_href = urlparse(full_url)
# Add if it's a subdomain or path of our base domain
if parsed_href.netloc and base_domain in parsed_href.netloc:
urls.add(full_url)
except:
continue
# Add the main URL if it's not already included
urls.add(url)
# Convert to list and sort
url_list = sorted(list(urls))
print(f"Found {len(url_list)} URLs:")
for found_url in url_list:
print(f" - {found_url}")
return url_list
except Exception as e:
print(f"Error getting URLs: {str(e)}")
return [url]
def take_screenshot(url, viewport_type='desktop', return_base64=False):
"""Take a screenshot of a given URL with specified viewport."""
try:
print(f"\nTaking {viewport_type} screenshot of {url}...")
driver = setup_driver(viewport_type)
print(f"Navigating to {url}")
driver.get(url)
print("Waiting for page to load...")
time.sleep(2) # Wait for page to load
# Take screenshot to memory
screenshot = driver.get_screenshot_as_png()
driver.quit()
if return_base64:
# Return base64 encoded image for API/MCP
base64_screenshot = base64.b64encode(screenshot).decode('utf-8')
return base64_screenshot
else:
# Save to temporary file for UI display
with tempfile.NamedTemporaryFile(suffix='.png', delete=False) as tmp:
tmp.write(screenshot)
screenshot_path = tmp.name
temp_files.add(screenshot_path) # Track for cleanup
return screenshot_path
except Exception as e:
print(f"Error taking {viewport_type} screenshot of {url}: {str(e)}")
if 'driver' in locals():
driver.quit()
return None
def process_url(url, return_base64=False):
"""Process a URL and return screenshots of all discovered URLs."""
print(f"\n{'='*50}")
print(f"Starting process for URL: {url}")
print(f"{'='*50}")
# Ensure URL has proper format
if not url.startswith(('http://', 'https://')):
url = 'https://' + url
print(f"Added https:// prefix to URL")
# Get URLs
urls = get_urls(url)
# Take screenshots in parallel for both desktop and mobile
desktop_screenshots = []
mobile_screenshots = []
for viewport_type in ['desktop', 'mobile']:
print(f"\nStarting parallel {viewport_type} screenshot capture of {len(urls)} URLs...")
with ThreadPoolExecutor(max_workers=5) as executor:
screenshot_paths = list(executor.map(
lambda url: take_screenshot(url, viewport_type, return_base64),
urls
))
# Filter out None values and create gallery items
print(f"\nProcessing {viewport_type} results...")
for found_url, screenshot in zip(urls, screenshot_paths):
if screenshot:
if viewport_type == 'desktop':
desktop_screenshots.append((screenshot, f"URL: {found_url}"))
else:
mobile_screenshots.append((screenshot, f"URL: {found_url}"))
print(f"\nSuccessfully captured {len(desktop_screenshots)} desktop and {len(mobile_screenshots)} mobile screenshots")
print(f"{'='*50}\n")
return desktop_screenshots, mobile_screenshots
def analyze_screenshots_handler(desktop_screenshots, mobile_screenshots):
"""Handler for analyzing screenshots with LLM."""
print("\nStarting LLM analysis of screenshots...")
# Check if there are any screenshots
if not desktop_screenshots and not mobile_screenshots:
return "β οΈ No screenshots available for analysis. Please generate screenshots first."
all_screenshots = [s[0] for s in desktop_screenshots + mobile_screenshots]
analysis_results = analyze_screenshots(all_screenshots)
# Parse the analysis results into a structured format
try:
# Split the analysis into individual screenshot analyses and summary
parts = analysis_results.split("\n\nSUMMARY:\n")
individual_analyses = parts[0].strip().split("\n\n")
summary = parts[1] if len(parts) > 1 else ""
# Create HTML for the analysis display
html_output = """
<div class="analysis-container">
<div class="summary-card">
<h3>π Overall Analysis</h3>
<div class="summary-content">
"""
# Add summary section
if summary:
try:
summary_data = json.loads(summary)
html_output += f"""
<div class="summary-item">
<h4>Summary</h4>
<p>{summary_data.get('summary', 'No summary available')}</p>
</div>
<div class="summary-item">
<h4>Common Issues</h4>
<div class="issue-tags">
"""
for issue in summary_data.get('common_issues', []):
html_output += f'<span class="issue-tag">{issue}</span>'
html_output += """
</div>
</div>
<div class="summary-item">
<h4>Overall Assessment</h4>
<p>{}</p>
</div>
""".format(summary_data.get('overall_assessment', 'No assessment available'))
except json.JSONDecodeError:
html_output += "<p>Error parsing summary data</p>"
html_output += """
</div>
</div>
<div class="screenshot-analyses">
<h3>π Detailed Analysis</h3>
"""
# Add individual screenshot analyses
for analysis in individual_analyses:
if "Screenshot" in analysis:
try:
# Extract screenshot number and analysis data
screenshot_num = analysis.split("Screenshot")[1].split("Analysis")[0].strip()
analysis_data = json.loads(analysis.split("Analysis:\n")[1])
# Determine status color
status_color = "red" if analysis_data.get('issues_found', False) else "green"
status_icon = "β οΈ" if analysis_data.get('issues_found', False) else "β
"
html_output += f"""
<div class="analysis-card">
<div class="analysis-header">
<h4>Screenshot {screenshot_num}</h4>
<span class="status-indicator" style="color: {status_color}">
{status_icon}
</span>
</div>
<div class="analysis-content">
<p>{analysis_data.get('details', 'No details available')}</p>
</div>
</div>
"""
except json.JSONDecodeError:
html_output += f"""
<div class="analysis-card">
<div class="analysis-header">
<h4>Screenshot {screenshot_num}</h4>
<span class="status-indicator">β</span>
</div>
<div class="analysis-content">
<p>Error parsing analysis data</p>
</div>
</div>
"""
html_output += """
</div>
</div>
<style>
.analysis-container {
background: #f5f6fa;
color: #222;
}
.summary-card, .analysis-card, .summary-item {
background: #fff;
color: #222;
border-left: 4px solid #6c63ff;
}
.issue-tag {
background: #e6e4ff;
color: #6c63ff;
}
/* ...other light mode styles... */
@media (prefers-color-scheme: dark) {
.analysis-container {
background: #181a20;
color: #f5f6fa;
}
.summary-card, .analysis-card, .summary-item {
background: #23272f;
color: #f5f6fa;
border-left: 4px solid #6c63ff;
}
.issue-tag {
background: #2d254d;
color: #a99cff;
}
/* ...other dark mode styles... */
}
.summary-content {
display: grid;
gap: 20px;
}
.issue-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.screenshot-analyses {
display: grid;
gap: 15px;
}
.analysis-card {
border-radius: 10px;
padding: 16px;
box-shadow: 0 1px 4px rgba(108, 99, 255, 0.08);
margin-bottom: 16px;
}
.analysis-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
.analysis-header h4 {
margin: 0;
color: #6c63ff;
}
.status-indicator {
font-size: 1.3em;
font-weight: bold;
}
.analysis-content {
line-height: 1.5;
}
</style>
"""
return html_output
except Exception as e:
return f"Error formatting analysis results: {str(e)}"
# Create Gradio interface
with gr.Blocks(title="Website Screenshot Tool", theme=gr.themes.Soft()) as demo:
with gr.Column(scale=1, min_width=800):
gr.Markdown("""
# π Website Screenshot Tool
### Capture and analyze your website's appearance across different devices
""", elem_classes=["header"])
gr.Markdown("Note: Only one user can process screenshots at a time. Please wait if the queue is busy.")
# Top Row - Screenshotting
with gr.Row():
# URL Input Section
url_input = gr.Textbox(
label="Web Address",
placeholder="Enter a web address (e.g., example.com)",
info="Make sure to include http:// or https://",
elem_classes=["input-field"]
)
submit_btn = gr.Button(
"Generate Screenshots",
variant="primary",
elem_classes=["action-button"]
)
with gr.Row():
# Desktop Screenshots Section
with gr.Column():
gr.Markdown("## Desktop Screenshots")
desktop_gallery = gr.Gallery(
label="Desktop View",
show_label=True,
elem_id="desktop_gallery",
columns=[3], # More flexible layout
rows=[3],
height="auto",
object_fit="contain",
elem_classes=["gallery"]
)
# Mobile Screenshots Section
with gr.Column():
gr.Markdown("## Mobile Screenshots")
mobile_gallery = gr.Gallery(
label="Mobile View",
show_label=True,
elem_id="mobile_gallery",
columns=[3], # More flexible layout
rows=[3],
height="auto",
object_fit="contain",
elem_classes=["gallery"]
)
# Bottom Row - Analysis
with gr.Row():
with gr.Group(elem_classes=["analysis-container"]):
gr.Markdown("---") # Horizontal line separator
gr.Markdown("## LLM Analysis Results")
gr.Markdown("") # Add empty line for spacing
gr.Markdown("") # Add another empty line for more spacing
analyze_btn = gr.Button(
"Analyze Screenshots with LLM",
variant="primary",
elem_classes=["action-button"],
scale=1,
min_width=200
)
analysis_output = gr.HTML(
label="Analysis Results",
show_label=True,
elem_classes=["analysis-results"],
value=" " # Add a space to ensure minimum height
)
# UI handlers
def ui_handler(url):
if not url:
raise gr.Error("Please enter a valid URL")
if not url.startswith(('http://', 'https://')):
url = 'https://' + url
print(f"Added https:// prefix to URL")
try:
return process_url(url, return_base64=False)
except Exception as e:
raise gr.Error(f"Error processing URL: {str(e)}")
# API handler
def api_handler(url):
if not url:
raise gr.Error("Please enter a valid URL")
if not url.startswith(('http://', 'https://')):
url = 'https://' + url
try:
return process_url(url, return_base64=True)
except Exception as e:
raise gr.Error(f"Error processing URL: {str(e)}")
# Register handlers
submit_btn.click(
fn=ui_handler,
inputs=url_input,
outputs=[desktop_gallery, mobile_gallery],
queue=True,
concurrency_limit=1,
show_progress=True
)
analyze_btn.click(
fn=analyze_screenshots_handler,
inputs=[desktop_gallery, mobile_gallery],
outputs=analysis_output,
queue=True,
concurrency_limit=1,
show_progress=True
)
# Expose API endpoint
demo.launch(share=True)
if __name__ == "__main__":
print("\nStarting Website Screenshot Tool...")
print("Initializing Gradio interface...")
demo.queue().launch() |