File size: 54,961 Bytes
bbfde3f | 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 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 | import os
import time
import shutil
from typing import List, Optional
from pathlib import Path
import zipfile
import xml.etree.ElementTree as ET
import re
import json
from lxml import etree
import platform
import subprocess
import uuid
try:
import win32com.client
except ImportError:
win32com = None
# Load environment variables (optional)
try:
from dotenv import load_dotenv
load_dotenv()
except ImportError:
pass # .env is optional
# Import FREE Local AI Vision - Only Option!
AI_AVAILABLE = False
try:
from local_vision import generate_alt_text_free, get_vision_model
local_model = get_vision_model()
if local_model and local_model.is_enabled():
AI_AVAILABLE = True
print("✅ Local AI vision model loaded (BLIP - 100% FREE, No Costs)")
else:
print("⚠️ Local AI model not ready yet (will download on first use)")
except ImportError as e:
print(f"⚠️ AI vision module not available: {e}")
print("ℹ️ Will use placeholder alt text")
from fastapi import FastAPI, File, UploadFile, HTTPException, Body, Request, Response
from fastapi.middleware.cors import CORSMiddleware
from fastapi.responses import FileResponse, JSONResponse, PlainTextResponse
from fastapi.exceptions import RequestValidationError
from starlette.exceptions import HTTPException as StarletteHTTPException
import traceback
from color_contrast import (
build_pptx_color_context,
check_slide_color_contrast,
remediate_slide_color_contrast,
)
# ---------- CONFIG ----------
BASE_DIR = Path(__file__).resolve().parent
UPLOAD_DIR = BASE_DIR / "uploads"
UPLOAD_DIR.mkdir(parents=True, exist_ok=True)
OUTPUT_DIR = BASE_DIR / "output"
OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
# ---------- APP SETUP ----------
app = FastAPI()
# Configure CORS (Angular frontend -> Python backend)
origins = [
"http://localhost:4200",
"http://localhost:3000",
]
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
expose_headers=["Content-Disposition"],
)
@app.exception_handler(Exception)
async def debug_exception_handler(request: Request, exc: Exception):
traceback.print_exc()
return PlainTextResponse(str(exc), status_code=500)
@app.middleware("http")
async def access_log(request: Request, call_next):
t0 = time.time()
response = await call_next(request)
ms = (time.time() - t0) * 1000
print(f"[{request.method}] {request.url.path} -> {response.status_code} ({ms:.2f} ms)")
return response
@app.get("/")
def health_check():
return {"status": "running", "service": "PowerPoint Accessibility Backend"}
SOFFICE_PATH = r"C:\Program Files\LibreOffice\program\soffice.exe"
def is_windows() -> bool:
return platform.system().lower().startswith("win")
def convert_legacy_ppt_to_pptx_powerpoint(src_path: Path, out_dir: Path) -> Path:
out_dir.mkdir(parents=True, exist_ok=True)
dst_path = out_dir / f"{src_path.stem}.pptx"
if win32com is None:
raise RuntimeError("win32com is required for legacy PowerPoint conversion on Windows.")
pp = win32com.client.Dispatch("PowerPoint.Application")
pp.Visible = 1
try:
pres = pp.Presentations.Open(str(src_path), 1, 0, 0) # ReadOnly=1, WithWindow=0
try:
pres.SaveAs(str(dst_path), 24) # 24 = ppSaveAsOpenXMLPresentation (.pptx)
finally:
pres.Close()
finally:
pp.Quit()
if not dst_path.exists():
raise RuntimeError("PowerPoint conversion did not produce a .pptx file.")
return dst_path
def convert_legacy_to_pptx(src_path: Path, out_dir: Path) -> Path:
if is_windows():
try:
return convert_legacy_ppt_to_pptx_powerpoint(src_path, out_dir)
except Exception as e:
# fallback to LibreOffice if PowerPoint fails
return convert_legacy_ppt_to_pptx_powerpoint(src_path, out_dir)
else:
return convert_legacy_ppt_to_pptx_powerpoint(src_path, out_dir)
@app.post("/upload")
async def upload_files(
files: Optional[List[UploadFile]] = File(default=None),
file: Optional[UploadFile] = File(default=None),
pptxFile: Optional[UploadFile] = File(default=None),
docxFile: Optional[UploadFile] = File(default=None),
):
incoming: List[UploadFile] = []
if files:
incoming.extend(files)
if file:
incoming.append(file)
if pptxFile:
incoming.append(pptxFile)
if docxFile:
incoming.append(docxFile)
if not incoming:
raise HTTPException(
status_code=400,
detail="No file uploaded. Send multipart/form-data with one of: files, file, pptxFile, docxFile"
)
if len(incoming) > 10:
raise HTTPException(
status_code=400,
detail=f"Too many files. You uploaded {len(incoming)}, but the limit is 10."
)
results = []
for up in incoming:
try:
filename = up.filename or "unnamed.pptx"
filename_lower = filename.lower()
allowed_ext = (".pptx", ".ppt", ".pps", ".pot", ".potx", ".ppsx")
if not filename_lower.endswith(allowed_ext):
results.append({
"fileName": filename,
"error": "Invalid file type. Please upload a PowerPoint file."
})
continue
# save with unique name to avoid collisions
unique_prefix = uuid.uuid4().hex[:8]
saved_name = f"{unique_prefix}_{filename}"
file_location = UPLOAD_DIR / saved_name
with file_location.open("wb") as buffer:
shutil.copyfileobj(up.file, buffer)
ext = Path(filename_lower).suffix
converted_dir = UPLOAD_DIR / "converted" / unique_prefix
converted_dir.mkdir(parents=True, exist_ok=True)
if ext in [".ppt", ".pps", ".pot"]:
pptx_input = convert_legacy_to_pptx(file_location, converted_dir)
else:
pptx_input = file_location
base = Path(filename).stem
out_name = f"remediated-{base}.pptx"
out_path = OUTPUT_DIR / f"{unique_prefix}_{out_name}"
original_report = analyze_powerpoint(pptx_input, filename)
alt_fixed_count, alt_fix_details, contrast_fixed_count, contrast_fix_details, dup_fixed_count, dup_fix_details = remediate_accessibility_pptx(pptx_input, out_path)
post_remediation_report = analyze_powerpoint(out_path, out_name)
report = original_report
report["fileName"] = out_name
report["summary"]["fixed"] += alt_fixed_count + contrast_fixed_count + dup_fixed_count
report["details"]["autoFixedAltText"] = alt_fix_details
report["details"]["autoFixedColorContrast"] = contrast_fix_details
report["details"]["duplicateTitleFixes"] = dup_fix_details
report["details"]["remainingColorContrastIssues"] = post_remediation_report["details"].get("colorContrastIssues", [])
report["details"]["remainingImagesMissingOrBadAlt"] = post_remediation_report["details"].get("imagesMissingOrBadAlt", [])
results.append({
"fileName": filename,
# "suggestedFileName": f"{unique_prefix}_{out_name}",
"suggestedFileName": out_name,
"report": report
})
except Exception as e:
results.append({
"fileName": getattr(up, "filename", "unknown"),
"error": str(e)
})
return JSONResponse(content={"files": results})
@app.post("/api/session")
def create_session():
return {"sessionId": uuid.uuid4().hex}
def get_slide_num(path: str) -> int:
"""
Extract numeric slide number from path for sorting.
"""
m = re.search(r"ppt/slides/slide(\d+)\.xml$", path)
return int(m.group(1)) if m else 10**9
def analyze_powerpoint(file_path, filename):
"""Analyze PowerPoint file for accessibility issues."""
report = {
"fileName": filename,
"summary": {
"fixed": 0,
"flagged": 0
},
"details": {
"slidesMissingTitles": [],
"imagesMissingOrBadAlt": [],
"gifsDetected": [],
"listFormattingIssues": [],
"colorContrastIssues": [],
"titleNeedsFixing": False,
"fileNameNeedsFixing": False,
"autoFixedAltText": [],
"autoFixedColorContrast": [],
"remainingColorContrastIssues": [],
"remainingImagesMissingOrBadAlt": [],
"duplicateSlides": [],
"rawUrlFindings": [],
"nonEnglishFindings": [],
"likelyDecorativeImages": [],
"headerFooterFindings": [],
"duplicateTitleFixes": []
}
}
try:
with zipfile.ZipFile(file_path, 'r') as zip_file:
contrast_context = build_pptx_color_context(zip_file)
# ---- Title metadata check ----
if 'docProps/core.xml' in zip_file.namelist():
core_xml = zip_file.read('docProps/core.xml').decode('utf-8', errors='ignore')
if '<dc:title/>' in core_xml or '<dc:title></dc:title>' in core_xml:
report["details"]["titleNeedsFixing"] = True
report["summary"]["flagged"] += 1
# ---- File name check ----
if "_" in filename or filename.lower().startswith("presentation") or filename.lower().startswith("untitled"):
report["details"]["fileNameNeedsFixing"] = True
report["summary"]["flagged"] += 1
# ---- Collect slides in TRUE numeric order ----
slides = [
name for name in zip_file.namelist()
if name.startswith("ppt/slides/slide") and name.endswith(".xml")
]
slides = sorted(slides, key=get_slide_num)
# ---- Analyze each slide in presentation order ----
previous_slide_signature = None
for slide_path in slides:
slide_number = get_slide_num(slide_path)
slide_xml = zip_file.read(slide_path).decode('utf-8', errors='ignore')
# Check slide title
title_check = check_slide_title(slide_xml, slide_number)
if title_check["missing"]:
report["details"]["slidesMissingTitles"].append(title_check)
report["summary"]["flagged"] += 1
# Check images
image_issues = check_slide_images(slide_xml, slide_number)
if image_issues:
report["details"]["imagesMissingOrBadAlt"].extend(image_issues)
report["summary"]["flagged"] += len(image_issues)
# Check list formatting
list_issues = check_list_formatting(slide_xml, slide_number)
if list_issues:
report["details"]["listFormattingIssues"].extend(list_issues)
report["summary"]["flagged"] += len(list_issues)
# Check color contrast
contrast_issues = check_slide_color_contrast(zip_file.read(slide_path), slide_number, contrast_context)
if contrast_issues:
report["details"]["colorContrastIssues"].extend(contrast_issues)
report["summary"]["flagged"] += len(contrast_issues)
# ===== NEW FEATURE CHECKS (Phase 1) =====
# Check for duplicate slides
current_signature = get_slide_signature(slide_xml)
if previous_slide_signature is not None and current_signature == previous_slide_signature:
report["details"]["duplicateSlides"].append({
"slideNumber": slide_number,
"duplicateOf": slide_number - 1,
"message": f"Slide {slide_number} appears to be an exact duplicate of Slide {slide_number - 1}"
})
report["summary"]["flagged"] += 1
previous_slide_signature = current_signature
# Check for raw URLs in text
url_issues = detect_raw_urls(slide_xml, slide_number)
if url_issues:
report["details"]["rawUrlFindings"].extend(url_issues)
report["summary"]["flagged"] += len(url_issues)
# Check for non-English text
non_english_issues = detect_non_english_text(slide_xml, slide_number)
if non_english_issues:
report["details"]["nonEnglishFindings"].extend(non_english_issues)
report["summary"]["flagged"] += len(non_english_issues)
# Check for likely decorative images
decorative_candidates = detect_likely_decorative_images(slide_xml, slide_number)
if decorative_candidates:
report["details"]["likelyDecorativeImages"].extend(decorative_candidates)
report["summary"]["flagged"] += len(decorative_candidates)
# Check for header/footer content
footer_issues = detect_header_footer_content(slide_xml, slide_number)
if footer_issues:
report["details"]["headerFooterFindings"].extend(footer_issues)
report["summary"]["flagged"] += len(footer_issues)
# ---- GIF check ----
gif_files = [
name for name in zip_file.namelist()
if name.startswith("ppt/media/") and name.lower().endswith(".gif")
]
if gif_files:
report["details"]["gifsDetected"] = gif_files
report["summary"]["flagged"] += len(gif_files)
except Exception as e:
print(f"Error analyzing PowerPoint: {e}")
raise
return report
def check_slide_title(slide_xml: str, slide_number: int):
"""Check if slide has a title."""
# Look for title placeholder
title_pattern = r'<p:ph[^>]*type="(title|ctrTitle)"[^>]*>'
has_title_placeholder = re.search(title_pattern, slide_xml)
if not has_title_placeholder:
return {
"missing": True,
"slideNumber": slide_number,
"message": f"Slide {slide_number} is missing a title"
}
# Check if title has text
text_pattern = r'<a:t[^>]*>(.*?)</a:t>'
text_matches = re.findall(text_pattern, slide_xml)
if not any(text.strip() for text in text_matches):
return {
"missing": True,
"slideNumber": slide_number,
"message": f"Slide {slide_number} has an empty title"
}
return {"missing": False}
def check_list_formatting(slide_xml: str, slide_number: int):
"""Check for list-like content that is not semantically marked as a list."""
issues = []
# Find all text elements
text_pattern = r'<a:t[^>]*>(.*?)</a:t>'
text_matches = re.findall(text_pattern, slide_xml)
for text in text_matches:
# Check for hyphenated list patterns
if re.match(r'^[\s]*[-–—•]\s+.+', text):
issues.append({
"slideNumber": slide_number,
"location": f"Slide {slide_number}",
"issue": f'Possible improperly formatted list: "{text[:50]}..."',
"type": "listFormatting"
})
# Check for paragraph indentation patterns that often indicate manual bullets.
paragraphs = re.findall(r'<a:p\b[\s\S]*?</a:p>', slide_xml)
previous_level = 0
previous_text = ""
for para_xml in paragraphs:
para_texts = re.findall(r'<a:t[^>]*>(.*?)</a:t>', para_xml)
para_text = " ".join(t.strip() for t in para_texts if t and t.strip())
if not para_text:
continue
first_raw_text = para_texts[0] if para_texts else ""
ppr_match = re.search(r'<a:pPr([^>]*)>', para_xml)
ppr_attrs = ppr_match.group(1) if ppr_match else ""
lvl_match = re.search(r'\blvl="(\d+)"', ppr_attrs)
level = int(lvl_match.group(1)) if lvl_match else 0
mar_match = re.search(r'\bmarL="(\d+)"', ppr_attrs)
mar_left = int(mar_match.group(1)) if mar_match else 0
has_explicit_bullet = bool(re.search(r'<a:bu(Char|AutoNum|Blip)\b', para_xml))
has_bu_none = bool(re.search(r'<a:buNone\b', para_xml))
has_text_bullet = bool(re.match(r'^\s*[-–—•*]\s+.+', para_text))
has_manual_leading_indent = bool(re.match(r'^[ \t]+\S', first_raw_text))
visually_indented = (level > 0 or mar_left > 0)
# If a line becomes more indented than the previous line but lacks bullet semantics,
# treat it as an improperly formatted list candidate.
if visually_indented and not has_explicit_bullet and not has_text_bullet and previous_text and level > previous_level:
issues.append({
"slideNumber": slide_number,
"location": f"Slide {slide_number}",
"issue": f'Indented line appears list-like but is not marked as a list: "{para_text[:50]}..."',
"type": "listFormatting"
})
# Also catch manual indentation done by adding leading spaces while bullets are disabled.
if has_bu_none and has_manual_leading_indent and not has_text_bullet and previous_text:
issues.append({
"slideNumber": slide_number,
"location": f"Slide {slide_number}",
"issue": f'Manually indented paragraph with bullets disabled looks like a list item: "{para_text[:50]}..."',
"type": "listFormatting"
})
previous_level = level
previous_text = para_text
return issues
# ========== NEW FEATURE HELPERS (Phase 1) ==========
def extract_all_text_from_slide(slide_xml: str) -> str:
"""Extract all visible text content from a slide for analysis."""
text_pattern = r'<a:t[^>]*>(.*?)</a:t>'
text_matches = re.findall(text_pattern, slide_xml)
return ' '.join(text_matches)
def get_slide_signature(slide_xml: str) -> str:
"""Generate a normalized signature for a slide to detect exact duplicates."""
# Get all text and normalize whitespace
all_text = extract_all_text_from_slide(slide_xml)
normalized = re.sub(r'\s+', ' ', all_text.strip()).lower()
# Count visible shapes/images as a structural hint
pic_count = len(re.findall(r'<p:pic[\s\S]*?</p:pic>', slide_xml))
shape_count = len(re.findall(r'<p:sp[\s\S]*?</p:sp>', slide_xml))
# Return a deterministic hash-like signature
signature = f"{normalized}|pics:{pic_count}|shapes:{shape_count}"
return signature
def detect_raw_urls(slide_xml: str, slide_number: int) -> List[dict]:
"""Detect plain URLs in visible text (http/https/www patterns)."""
issues = []
text_pattern = r'<a:t[^>]*>(.*?)</a:t>'
text_matches = re.findall(text_pattern, slide_xml)
# Regex to find plain URLs
url_pattern = r'(?:https?://|www\.)[^\s<>"]+'
for text in text_matches:
url_matches = re.finditer(url_pattern, text)
for url_match in url_matches:
issues.append({
"slideNumber": slide_number,
"location": f"Slide {slide_number}",
"matchedText": url_match.group(0),
"context": text[:80],
"type": "rawUrl",
"recommendation": "Replace raw URLs with descriptive link text"
})
return issues
def detect_non_english_text(slide_xml: str, slide_number: int) -> List[dict]:
"""Detect clearly non-English text runs using conservative language markers."""
issues = []
def _is_substantial_text(text: str) -> bool:
cleaned = text.strip()
if not cleaned:
return False
alpha_chars = sum(1 for c in cleaned if c.isalpha())
word_count = len(re.findall(r"[A-Za-zÀ-ÖØ-öø-ÿ']+", cleaned))
return alpha_chars >= 8 and word_count >= 2
def _tokenize(text: str) -> List[str]:
return re.findall(r"[A-Za-zÀ-ÖØ-öø-ÿ']+", text.lower())
def _has_non_latin_script(text: str) -> bool:
return bool(re.search(r"[\u0400-\u04FF\u0600-\u06FF\u0900-\u0DFF\u3040-\u30FF\u4E00-\u9FFF]", text))
text_pattern = r'<a:t[^>]*>(.*?)</a:t>'
text_matches = re.findall(text_pattern, slide_xml)
english_stopwords = {
"the", "and", "for", "with", "this", "that", "from", "are", "is", "of", "to", "in", "on", "by",
"a", "an", "it", "as", "at", "be", "or", "we", "you", "they", "was", "were", "have", "has"
}
language_hints = {
"es": {"el", "la", "los", "las", "de", "del", "que", "para", "con", "una", "uno", "como", "por", "este", "esta", "es", "en", "y"},
"fr": {"le", "la", "les", "des", "une", "un", "avec", "pour", "que", "est", "dans", "sur", "et", "de"},
"de": {"der", "die", "das", "und", "mit", "für", "ist", "nicht", "ein", "eine", "den", "zu", "auf"},
"pt": {"o", "a", "os", "as", "de", "do", "da", "que", "com", "para", "uma", "um", "e", "não", "em"},
"it": {"il", "lo", "la", "gli", "le", "di", "che", "con", "per", "una", "un", "è", "e", "in"}
}
for text in text_matches:
cleaned_text = text.strip()
if len(cleaned_text) < 3 or not _is_substantial_text(cleaned_text):
continue
if _has_non_latin_script(cleaned_text):
issues.append({
"slideNumber": slide_number,
"location": f"Slide {slide_number}",
"detectedLanguage": "non-Latin script",
"sampleText": cleaned_text[:60],
"type": "nonEnglishText",
"recommendation": "Verify non-English content is intentional or provide translation"
})
continue
tokens = _tokenize(cleaned_text)
if len(tokens) < 3:
continue
en_hits = sum(1 for t in tokens if t in english_stopwords)
best_lang = None
best_hits = 0
for lang_code, hints in language_hints.items():
hits = sum(1 for t in tokens if t in hints)
if hits > best_hits:
best_hits = hits
best_lang = lang_code
# Only flag when the non-English signal is very strong.
# This intentionally avoids guessing on short or ambiguous phrases.
if best_lang and best_hits >= 3 and best_hits >= en_hits + 2:
issues.append({
"slideNumber": slide_number,
"location": f"Slide {slide_number}",
"detectedLanguage": f"{best_lang} (heuristic)",
"sampleText": cleaned_text[:60],
"type": "nonEnglishText",
"recommendation": "Verify non-English content is intentional or provide translation"
})
return issues
def detect_likely_decorative_images(slide_xml: str, slide_number: int) -> List[dict]:
"""Detect images that are likely decorative (logo, icon, watermark)."""
candidates = []
pic_pattern = r'<p:pic[\s\S]*?</p:pic>'
pic_matches = re.findall(pic_pattern, slide_xml)
decorative_hints = ["background", "bg", "decor", "decoration", "border", "divider", "logo", "icon", "watermark", "pattern", "frame"]
for pic_xml in pic_matches:
cnvpr_pattern = r'<p:cNvPr([^>]*)/?>'
m = re.search(cnvpr_pattern, pic_xml)
attrs = m.group(1) if m else ""
def get_attr(attr_name: str) -> str:
am = re.search(rf'{attr_name}="([^"]*)"', attrs)
return am.group(1) if am else ""
shape_id = get_attr("id")
shape_name = get_attr("name")
alt_text = get_attr("descr")
# Check if image name or alt text suggests it's decorative
name_lower = (shape_name or "").lower()
alt_lower = (alt_text or "").lower()
is_likely_decorative = any(hint in name_lower for hint in decorative_hints) or \
(alt_lower == "decorative")
if is_likely_decorative:
candidates.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"altText": alt_text or "(none)",
"type": "likelyDecorativeImage",
"recommendation": "Confirm this image is decorative; if so, set alt text to 'decorative' to skip auto-generation"
})
return candidates
def detect_header_footer_content(slide_xml: str, slide_number: int) -> List[dict]:
"""Detect header/footer placeholder content and repeated footer-like text."""
issues = []
def _is_page_number_only(text: str) -> bool:
cleaned = re.sub(r'\s+', ' ', (text or '')).strip()
if not cleaned:
return False
return bool(re.fullmatch(r'(?:page\s*)?\d+(?:\s*/\s*\d+)?', cleaned, flags=re.IGNORECASE))
# Check for explicit footer/date/slide number placeholders.
# If the placeholder type is only slide-number (sldNum), ignore it.
placeholder_types = re.findall(r'<p:ph[^>]*type="(ftr|dt|sldNum)"', slide_xml)
if placeholder_types:
only_slide_number_placeholder = all(t == "sldNum" for t in placeholder_types)
if only_slide_number_placeholder:
placeholder_types = []
if placeholder_types:
text_matches = [t.strip() for t in re.findall(r'<a:t[^>]*>(.*?)</a:t>', slide_xml) if t and t.strip()]
if text_matches and all(_is_page_number_only(t) for t in text_matches):
return issues
issues.append({
"slideNumber": slide_number,
"location": f"Slide {slide_number}",
"type": "headerFooterPlaceholder",
"recommendation": "Header/footer content detected; consider moving critical info to slide body for better accessibility"
})
# Check for repeated identical text at slide end (footer-like pattern).
# This is intentionally strict to avoid false positives on list content.
text_pattern = r'<a:t[^>]*>(.*?)</a:t>'
text_matches = [t.strip() for t in re.findall(text_pattern, slide_xml) if t and t.strip()]
if len(text_matches) >= 3:
last_texts = text_matches[-3:]
normalized_last = [re.sub(r'\s+', ' ', t).strip().lower() for t in last_texts]
looks_like_bullet = any(re.match(r'^[-–—•*]\s+', t) for t in last_texts)
if (
len(set(normalized_last)) == 1
and 1 < len(last_texts[0]) < 80
and not looks_like_bullet
and not _is_page_number_only(last_texts[0])
):
issues.append({
"slideNumber": slide_number,
"location": f"Slide {slide_number}",
"repeatedText": last_texts[0][:40] if last_texts else "",
"type": "footerLikePattern",
"recommendation": "Repeated footer-like text detected; ensure all important content is duplicated in slide body"
})
return issues
def remediate_duplicate_slide_title(slide_xml_bytes: bytes, slide_number: int, is_duplicate: bool, duplicate_index: int) -> tuple:
"""
Fix duplicate slide titles by appending Part N to the title text.
Returns: (new_xml_bytes, fixed_count, fix_details)
"""
if not is_duplicate:
return slide_xml_bytes, 0, []
try:
ns = {
"p": "http://schemas.openxmlformats.org/presentationml/2006/main",
"a": "http://schemas.openxmlformats.org/drawingml/2006/main"
}
root = etree.fromstring(slide_xml_bytes, parser=etree.XMLParser(remove_blank_text=False, recover=True))
# Find title shape - look for sp containing a title placeholder
title_sp = None
for sp in root.findall(".//p:sp", namespaces=ns):
ph = sp.find(".//p:ph", namespaces=ns)
if ph is not None:
ph_type = ph.get("type", "")
if ph_type in ["title", "ctrTitle"]:
title_sp = sp
break
if title_sp is None:
return slide_xml_bytes, 0, []
# Find the text element within the title shape
text_elem = title_sp.find(".//a:t", namespaces=ns)
if text_elem is None:
return slide_xml_bytes, 0, []
old_title = text_elem.text or ""
new_title = f"{old_title} - Part {duplicate_index}"
text_elem.text = new_title
new_bytes = etree.tostring(
root,
xml_declaration=True,
encoding="UTF-8",
standalone=None
)
return new_bytes, 1, [{
"slideNumber": slide_number,
"fix": "appendedPartNumber",
"oldTitle": old_title,
"newTitle": new_title
}]
except Exception as e:
print(f" ⚠️ Error fixing duplicate title on slide {slide_number}: {e}")
return slide_xml_bytes, 0, []
ALT_TEXT_MAX = 250
def check_slide_images(slide_xml: str, slide_number: int):
issues = []
pic_pattern = r'<p:pic[\s\S]*?</p:pic>'
pic_matches = re.findall(pic_pattern, slide_xml)
for pic_xml in pic_matches:
cnvpr_pattern = r'<p:cNvPr([^>]*)/?>'
m = re.search(cnvpr_pattern, pic_xml)
attrs = m.group(1) if m else ""
def get_attr(attr_name: str) -> str:
am = re.search(rf'{attr_name}="([^"]*)"', attrs)
return am.group(1) if am else ""
shape_id = get_attr("id")
shape_name = get_attr("name")
alt_text = get_attr("descr")
alt_text_clean = (alt_text or "").strip().lower()
is_decorative = (alt_text_clean == "decorative")
# --- RULES ---
# 1. Missing alt text
if not alt_text or alt_text.strip() == "":
issues.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"issue": "Image missing alt text",
"type": "imageAltMissing"
})
# 2. Decorative images
elif is_decorative:
continue
# 3. Too long alt text
elif len(alt_text) > ALT_TEXT_MAX:
issues.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"issue": f"Alt text exceeds {ALT_TEXT_MAX} characters",
"type": "imageAltTooLong",
"length": len(alt_text),
"max": ALT_TEXT_MAX
})
elif alt_text_clean in ["image", "picture", "photo"]:
issues.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"issue": "Alt text is too generic",
"type": "imageAltTooGeneric"
})
return issues
def escape_xml_attr(s: str) -> str:
return (s.replace("&", "&")
.replace('"', """)
.replace("<", "<")
.replace(">", ">"))
def choose_default_alt(shape_name: str, slide_number: int) -> str:
"""
Heuristic:
- If it looks decorative (name hints), set "decorative"
- Otherwise set a non-generic placeholder
"""
n = (shape_name or "").lower()
decorative_hints = ["background", "bg", "decor", "decoration", "border", "divider", "logo", "icon", "watermark"]
if any(h in n for h in decorative_hints):
return "decorative"
return f"Image on slide {slide_number}"
def remediate_slide_alt_text(slide_xml: str, slide_number: int):
"""
Returns: (new_xml, fixed_count, fix_details)
Fix rules:
- Missing descr -> add descr (decorative or placeholder)
- descr > 250 -> truncate
- descr is generic image/picture/photo -> replace with placeholder
"""
fixed = 0
fix_details = []
pic_pattern = r'<p:pic[\s\S]*?</p:pic>'
pics = re.findall(pic_pattern, slide_xml)
# If no pics, return unchanged
if not pics:
return slide_xml, 0, []
new_xml = slide_xml
for pic_xml in pics:
# Extract cNvPr attrs
cnvpr_pattern = r'<p:cNvPr([^>]*)/?>'
m = re.search(cnvpr_pattern, pic_xml)
attrs = m.group(1) if m else ""
def get_attr(attr_name: str) -> str:
am = re.search(rf'{attr_name}="([^"]*)"', attrs)
return am.group(1) if am else ""
shape_id = get_attr("id")
shape_name = get_attr("name")
alt_text = get_attr("descr")
alt_clean = (alt_text or "").strip().lower()
# Decide what to write (if needed)
if not alt_text or alt_text.strip() == "":
new_alt = choose_default_alt(shape_name, slide_number)
fixed += 1
fix_details.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"fix": "addedAltText",
"altText": new_alt
})
# update in the FULL slide XML by matching the cNvPr with this id
new_xml = set_cnvpr_descr(new_xml, shape_id, new_alt)
elif len(alt_text) > ALT_TEXT_MAX:
new_alt = alt_text[:ALT_TEXT_MAX]
fixed += 1
fix_details.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"fix": "truncatedAltText",
"altText": new_alt
})
new_xml = set_cnvpr_descr(new_xml, shape_id, new_alt)
elif alt_clean in ["image", "picture", "photo"]:
new_alt = f"Image on slide {slide_number}"
fixed += 1
fix_details.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"fix": "replacedGenericAltText",
"altText": new_alt
})
new_xml = set_cnvpr_descr(new_xml, shape_id, new_alt)
return new_xml, fixed, fix_details
def set_cnvpr_descr(full_slide_xml: str, shape_id: str, new_alt: str) -> str:
"""
Sets/updates descr="..." on the <p:cNvPr ... id="{shape_id}" ...> element.
Works for both self-closing (<p:cNvPr ... />) and normal (<p:cNvPr ...>).
"""
if not shape_id:
return full_slide_xml
escaped = escape_xml_attr(new_alt)
# 1) Replace existing descr if present
pattern_has_descr = rf'(<p:cNvPr\b[^>]*\bid="{re.escape(shape_id)}"[^>]*\bdescr=")([^"]*)(")'
if re.search(pattern_has_descr, full_slide_xml):
return re.sub(pattern_has_descr, rf'\1{escaped}\3', full_slide_xml)
# 2) Inject descr before the tag closes (handles .../> and ...>)
pattern_inject = rf'(<p:cNvPr\b[^>]*\bid="{re.escape(shape_id)}"[^>]*?)(\s*/?>)'
return re.sub(pattern_inject, rf'\1 descr="{escaped}"\2', full_slide_xml, count=1)
P_NS = "http://schemas.openxmlformats.org/presentationml/2006/main"
A_NS = "http://schemas.openxmlformats.org/drawingml/2006/main"
R_NS = "http://schemas.openxmlformats.org/officeDocument/2006/relationships"
def extract_image_from_pptx_slide(
pptx_path: Path,
slide_number: int,
rel_id: str
) -> Optional[bytes]:
"""
Extract image data from PowerPoint using relationship ID
Args:
pptx_path: Path to the PowerPoint file
slide_number: Slide number (1-indexed)
rel_id: Relationship ID (e.g., 'rId2')
Returns:
Image bytes or None if not found
"""
try:
with zipfile.ZipFile(pptx_path, 'r') as zip_ref:
# Get relationship file for this slide
rels_path = f'ppt/slides/_rels/slide{slide_number}.xml.rels'
if rels_path not in zip_ref.namelist():
return None
rels_xml = zip_ref.read(rels_path).decode('utf-8')
# Find the target for this relationship ID
# <Relationship Id="rId2" Target="../media/image1.png" />
pattern = rf'<Relationship[^>]*Id="{re.escape(rel_id)}"[^>]*Target="([^"]*)"[^>]*/>'
match = re.search(pattern, rels_xml)
if not match:
return None
target = match.group(1)
# Convert relative path to absolute in ZIP
if target.startswith('../'):
media_path = 'ppt/' + target[3:]
else:
media_path = target
if media_path in zip_ref.namelist():
return zip_ref.read(media_path)
except Exception as e:
print(f"Error extracting image {rel_id} from slide {slide_number}: {e}")
return None
def get_image_rel_id_for_pic(pic_element, namespaces: dict) -> Optional[str]:
"""
Extract the relationship ID for an image from a p:pic element
Args:
pic_element: The p:pic XML element
namespaces: XML namespaces dict
Returns:
Relationship ID (e.g., 'rId2') or None
"""
try:
# Navigate: p:pic -> p:blipFill -> a:blip[@r:embed]
blip = pic_element.find('.//a:blip[@r:embed]', namespaces)
if blip is not None:
return blip.get(f'{{{R_NS}}}embed')
except Exception as e:
print(f"Error getting rel ID from pic element: {e}")
return None
def set_alt_text_in_slide_xml(
slide_xml_bytes: bytes,
slide_number: int,
pptx_path: Optional[Path] = None
):
"""
Finds all picture cNvPr nodes and fixes their 'descr' safely.
Uses FREE local AI for intelligent alt text generation.
Args:
slide_xml_bytes: The slide XML as bytes
slide_number: Slide number (1-indexed)
pptx_path: Path to the PowerPoint file (needed for AI image extraction)
Returns: (new_xml_bytes, fixed_count, fix_details)
"""
parser = etree.XMLParser(remove_blank_text=False, recover=False)
root = etree.fromstring(slide_xml_bytes, parser=parser)
ns = {
"p": P_NS,
"a": A_NS,
"r": R_NS
}
fixed = 0
fix_details = []
# Check if AI is available and enabled
use_ai = AI_AVAILABLE and os.getenv("ENABLE_AI_ALT_TEXT", "true").lower() == "true"
if use_ai:
print(f"🤖 Using FREE local AI (BLIP) for slide {slide_number}")
else:
print(f"ℹ️ Using placeholder alt text for slide {slide_number}")
# Pictures: p:pic -> p:nvPicPr -> p:cNvPr
pic_elements = root.xpath(".//p:pic", namespaces=ns)
for pic in pic_elements:
cnvpr = pic.find(".//p:nvPicPr/p:cNvPr", namespaces=ns)
if cnvpr is None:
continue
shape_id = cnvpr.get("id") or ""
shape_name = cnvpr.get("name") or ""
descr = cnvpr.get("descr") # can be None
# Get relationship ID for AI image extraction
rel_id = get_image_rel_id_for_pic(pic, ns) if use_ai and pptx_path else None
# Decide if we need a fix
if descr is None or descr.strip() == "":
new_alt = None
# Try AI generation first
if use_ai and pptx_path and rel_id:
try:
image_data = extract_image_from_pptx_slide(pptx_path, slide_number, rel_id)
if image_data:
new_alt = generate_alt_text_free(
image_data,
shape_name=shape_name,
slide_number=slide_number,
max_length=ALT_TEXT_MAX
)
if new_alt:
print(f" ✅ AI generated alt text for {shape_name}: '{new_alt[:50]}...'")
except Exception as e:
print(f" ⚠️ AI alt text generation failed for {shape_name}: {e}")
# Fallback to placeholder if AI fails or is disabled
if not new_alt:
new_alt = choose_default_alt(shape_name, slide_number)
cnvpr.set("descr", new_alt)
fixed += 1
fix_details.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"fix": "addedAltText" if use_ai else "addedPlaceholderAltText",
"altText": new_alt,
"aiGenerated": use_ai and rel_id is not None
})
elif len(descr) > ALT_TEXT_MAX:
new_alt = None
if use_ai and pptx_path and rel_id:
try:
image_data = extract_image_from_pptx_slide(pptx_path, slide_number, rel_id)
if image_data:
new_alt = generate_alt_text_free(
image_data,
shape_name=shape_name,
slide_number=slide_number,
max_length=ALT_TEXT_MAX
)
except Exception as e:
print(f"AI alt text generation failed for long alt text on {shape_name}: {e}")
if not new_alt:
new_alt = descr[:ALT_TEXT_MAX]
cnvpr.set("descr", new_alt)
fixed += 1
fix_details.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"fix": "replacedLongAltText" if new_alt != descr[:ALT_TEXT_MAX] else "truncatedAltText",
"altText": new_alt
})
else:
# Check for generic descriptions that could be improved
descr_lower = descr.lower()
if descr_lower in ["image", "picture", "photo"]:
new_alt = None
# Try AI generation for generic descriptions
if use_ai and pptx_path and rel_id:
try:
image_data = extract_image_from_pptx_slide(pptx_path, slide_number, rel_id)
if image_data:
new_alt = generate_alt_text_free(
image_data,
shape_name=shape_name,
slide_number=slide_number,
max_length=ALT_TEXT_MAX
)
if new_alt:
print(f" ✅ AI replaced generic alt text for {shape_name}: '{new_alt[:50]}...'")
except Exception as e:
print(f" ⚠️ AI alt text generation failed for {shape_name}: {e}")
# Fallback to placeholder
if not new_alt:
new_alt = f"Image on slide {slide_number}"
cnvpr.set("descr", new_alt)
fixed += 1
fix_details.append({
"slideNumber": slide_number,
"shapeId": shape_id,
"shapeName": shape_name,
"fix": "replacedGenericAltText",
"altText": new_alt,
"aiGenerated": use_ai and rel_id is not None
})
new_bytes = etree.tostring(
root,
xml_declaration=True,
encoding="UTF-8",
standalone=None
)
return new_bytes, fixed, fix_details
def remediate_alt_text_pptx(src_pptx: Path, dst_pptx: Path):
"""
Remediate alt text in PowerPoint file using AI-powered descriptions,
while processing slides in true numeric presentation order.
"""
fixed_total = 0
all_fix_details = []
print(f"\n🔧 Starting alt text remediation for: {src_pptx.name}")
print(f" AI Mode: {os.getenv('ENABLE_AI_ALT_TEXT', 'true')}")
with zipfile.ZipFile(src_pptx, "r") as zin, zipfile.ZipFile(dst_pptx, "w", compression=zipfile.ZIP_DEFLATED) as zout:
# Build a lookup of all original zip entries
info_by_name = {item.filename: item for item in zin.infolist()}
# Separate slide XMLs from everything else
slide_names = [
name for name in info_by_name.keys()
if re.match(r"ppt/slides/slide\d+\.xml$", name)
]
slide_names = sorted(slide_names, key=get_slide_num)
non_slide_names = [
name for name in info_by_name.keys()
if name not in slide_names
]
# Write non-slide files first exactly as they are
for name in non_slide_names:
item = info_by_name[name]
data = zin.read(name)
zout.writestr(item, data)
# Then write slides in true numeric order
for name in slide_names:
item = info_by_name[name]
data = zin.read(name)
slide_num = get_slide_num(name)
try:
new_data, fixed, details = set_alt_text_in_slide_xml(
data,
slide_num,
pptx_path=src_pptx
)
if fixed:
data = new_data
fixed_total += fixed
all_fix_details.extend(details)
except Exception as e:
print(f" ⚠️ Error processing slide {slide_num}: {e}")
zout.writestr(item, data)
print(f"\n✅ Remediation complete: {fixed_total} images processed")
ai_count = sum(1 for d in all_fix_details if d.get("aiGenerated", False))
if ai_count > 0:
print(f" 🤖 {ai_count} alt texts generated by FREE local AI (no cost)")
return fixed_total, all_fix_details
def remediate_accessibility_pptx(src_pptx: Path, dst_pptx: Path):
"""
Remediate alt text, color contrast, and duplicate slide titles in one pass.
"""
alt_fixed_total = 0
all_alt_fix_details = []
contrast_fixed_total = 0
all_contrast_fix_details = []
duplicate_title_fixed_total = 0
all_duplicate_title_fixes = []
print(f"\n🔧 Starting accessibility remediation for: {src_pptx.name}")
print(f" AI Alt Text Mode: {os.getenv('ENABLE_AI_ALT_TEXT', 'true')}")
with zipfile.ZipFile(src_pptx, "r") as zin, zipfile.ZipFile(dst_pptx, "w", compression=zipfile.ZIP_DEFLATED) as zout:
info_by_name = {item.filename: item for item in zin.infolist()}
contrast_context = build_pptx_color_context(zin)
slide_names = [
name for name in info_by_name.keys()
if re.match(r"ppt/slides/slide\d+\.xml$", name)
]
slide_names = sorted(slide_names, key=get_slide_num)
non_slide_names = [
name for name in info_by_name.keys()
if name not in slide_names
]
for name in non_slide_names:
item = info_by_name[name]
data = zin.read(name)
zout.writestr(item, data)
previous_slide_signature = None
duplicate_run_count = 1
for name in slide_names:
item = info_by_name[name]
data = zin.read(name)
slide_num = get_slide_num(name)
# Decode to check for duplicates
slide_xml_str = data.decode('utf-8', errors='ignore')
current_signature = get_slide_signature(slide_xml_str)
# Check if this is a duplicate of the previous slide
is_duplicate = (previous_slide_signature is not None and
current_signature == previous_slide_signature)
if is_duplicate:
duplicate_run_count += 1
part_number = duplicate_run_count
else:
duplicate_run_count = 1
previous_slide_signature = current_signature
try:
new_data, fixed, details = set_alt_text_in_slide_xml(
data,
slide_num,
pptx_path=src_pptx
)
if fixed:
data = new_data
alt_fixed_total += fixed
all_alt_fix_details.extend(details)
except Exception as e:
print(f" ⚠️ Error processing alt text on slide {slide_num}: {e}")
try:
new_data, fixed, details = remediate_slide_color_contrast(
data,
slide_num,
contrast_context
)
if fixed:
data = new_data
contrast_fixed_total += fixed
all_contrast_fix_details.extend(details)
except Exception as e:
print(f" ⚠️ Error processing color contrast on slide {slide_num}: {e}")
# Handle duplicate slide title remediation
if is_duplicate:
try:
new_data, fixed, details = remediate_duplicate_slide_title(
data,
slide_num,
is_duplicate=True,
duplicate_index=part_number
)
if fixed:
data = new_data
duplicate_title_fixed_total += fixed
all_duplicate_title_fixes.extend(details)
print(f" ✅ Duplicate slide {slide_num} title fixed: appended Part {part_number}")
except Exception as e:
print(f" ⚠️ Error fixing duplicate title on slide {slide_num}: {e}")
zout.writestr(item, data)
print(f"\n✅ Accessibility remediation complete")
print(f" Alt text fixes: {alt_fixed_total}")
print(f" Color contrast fixes: {contrast_fixed_total}")
print(f" Duplicate title fixes: {duplicate_title_fixed_total}")
return alt_fixed_total, all_alt_fix_details, contrast_fixed_total, all_contrast_fix_details, duplicate_title_fixed_total, all_duplicate_title_fixes
@app.get("/download")
def download_all_files():
candidates = [p for p in OUTPUT_DIR.glob("*") if p.is_file()]
if not candidates:
raise HTTPException(status_code=404, detail="No files available to download yet.")
zip_name = f"remediated-files-{uuid.uuid4().hex[:8]}.zip"
zip_path = OUTPUT_DIR / zip_name
with zipfile.ZipFile(zip_path, "w", compression=zipfile.ZIP_DEFLATED) as zf:
for p in candidates:
clean_name = re.sub(r"^[0-9a-f]{8}_", "", p.name)
zf.write(p, arcname=clean_name)
return FileResponse(
path=str(zip_path),
media_type="application/zip",
filename="remediated-files.zip"
)
@app.post("/download")
async def download_selected_files(request: Request):
body = await request.json()
file_name = body.get("fileName") or body.get("filename") or body.get("suggestedFileName")
files = body.get("files", [])
# Case 1: single file download
if file_name:
file_path = OUTPUT_DIR / file_name
if not file_path.exists():
matches = list(OUTPUT_DIR.glob(f"*_{file_name}"))
if matches:
file_path = matches[0]
else:
raise HTTPException(status_code=404, detail=f"File not found: {file_name}")
return FileResponse(
path=str(file_path),
media_type="application/vnd.openxmlformats-officedocument.presentationml.presentation",
filename=file_name
)
# Case 2: multiple files -> zip
if files:
zip_name = f"remediated-files-{uuid.uuid4().hex[:8]}.zip"
zip_path = OUTPUT_DIR / zip_name
added_any = False
with zipfile.ZipFile(zip_path, "w", compression=zipfile.ZIP_DEFLATED) as zf:
for name in files:
file_path = OUTPUT_DIR / name
# if clean name not found, try prefixed stored file
if not file_path.exists():
matches = list(OUTPUT_DIR.glob(f"*_{name}"))
if matches:
file_path = matches[0]
else:
continue
clean_name = re.sub(r"^[0-9a-f]{8}_", "", file_path.name)
zf.write(file_path, arcname=clean_name)
added_any = True
if not added_any:
raise HTTPException(status_code=404, detail="None of the requested files were found.")
return FileResponse(
path=str(zip_path),
media_type="application/zip",
filename="remediated-files.zip"
)
raise HTTPException(status_code=400, detail="No file name(s) provided.")
# ---------- RUN ----------
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="127.0.0.1", port=5000) |