Spaces:
Running
Running
File size: 15,900 Bytes
65d246e |
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 |
import os import shutil from pathlib import Path from pdf2zh import __version__ from pdf2zh.pdf2zh import extract_text import gradio as gr import numpy as np import pymupdf import tqdm import requests import cgi # Map service names to pdf2zh service options service_map = { #"Google": ("google", None, None), #"DeepL": ("deepl", "DEEPL_AUTH_KEY", None), #"DeepLX": ("deeplx", "DEEPLX_AUTH_KEY", None), #"Ollama": ("ollama", None, "gemma2"), "OpenAI": ("openai", "OPENAI_API_KEY", "gpt-4o"), #"Azure": ("azure", "AZURE_APIKEY", None), #"Tencent": ("tencent", "TENCENT_SECRET_KEY", None), } lang_map = { "Chinese": "zh", "English": "en", "French": "fr", "German": "de", "Japanese": "ja", "Korean": "ko", "Russian": "ru", "Spanish": "es", "Italian": "it", } page_map = { "All": None, "First": [0], "First 5 pages": list(range(0, 5)), } flag_demo = False if os.environ.get("PDF2ZH_DEMO"): flag_demo = True service_map = { "Google": ("google", None, None), } page_map = { "First": [0], "First 20 pages": list(range(0, 20)), } client_key = os.environ.get("PDF2ZH_CLIENT_KEY") server_key = os.environ.get("PDF2ZH_SERVER_KEY") def verify_recaptcha(response): recaptcha_url = "https://www.google.com/recaptcha/api/siteverify" print("reCAPTCHA", server_key, response) data = {"secret": server_key, "response": response} result = requests.post(recaptcha_url, data=data).json() print("reCAPTCHA", result.get("success")) return result.get("success") def pdf_preview(file): doc = pymupdf.open(file) page = doc[0] pix = page.get_pixmap() image = np.frombuffer(pix.samples, np.uint8).reshape(pix.height, pix.width, 3) return image def upload_file(file, service, progress=gr.Progress()): """Handle file upload, validation, and initial preview.""" if not file or not os.path.exists(file): return None, None try: # Convert first page for preview preview_image = pdf_preview(file) return file, preview_image except Exception as e: print(f"Error converting PDF: {e}") return None, None def download_with_limit(url, save_path, size_limit): chunk_size = 1024 total_size = 0 with requests.get(url, stream=True, timeout=10) as response: response.raise_for_status() content = response.headers.get("Content-Disposition") try: _, params = cgi.parse_header(content) filename = params["filename"] except Exception: filename = os.path.basename(url) with open(save_path / filename, "wb") as file: for chunk in response.iter_content(chunk_size=chunk_size): total_size += len(chunk) if size_limit and total_size > size_limit: raise gr.Error("Exceeds file size limit") file.write(chunk) return save_path / filename def translate( file_type, file_input, link_input, service, apikey, model_id, lang_from, lang_to, page_range, recaptcha_response, progress=gr.Progress(), ): """Translate PDF content using selected service.""" if flag_demo and not verify_recaptcha(recaptcha_response): raise gr.Error("reCAPTCHA fail") progress(0, desc="Starting translation...") output = Path("pdf2zh_files") output.mkdir(parents=True, exist_ok=True) if file_type == "File": if not file_input: raise gr.Error("No input") file_path = shutil.copy(file_input, output) else: if not link_input: raise gr.Error("No input") file_path = download_with_limit( link_input, output, 5 * 1024 * 1024 if flag_demo else None, ) filename = os.path.splitext(os.path.basename(file_path))[0] file_en = output / f"{filename}.pdf" file_zh = output / f"{filename}-zh.pdf" file_dual = output / f"{filename}-dual.pdf" selected_service = service_map[service][0] if service_map[service][1]: os.environ.setdefault(service_map[service][1], apikey) selected_page = page_map[page_range] lang_from = lang_map[lang_from] lang_to = lang_map[lang_to] if selected_service == "google": lang_from = "zh-CN" if lang_from == "zh" else lang_from lang_to = "zh-CN" if lang_to == "zh" else lang_to print(f"Files before translation: {os.listdir(output)}") def progress_bar(t: tqdm.tqdm): progress(t.n / t.total, desc="Translating...") param = { "files": [file_en], "pages": selected_page, "lang_in": lang_from, "lang_out": lang_to, "service": f"{selected_service}:{model_id}", "output": output, "thread": 4, "callback": progress_bar, } print(param) extract_text(**param) print(f"Files after translation: {os.listdir(output)}") if not file_zh.exists() or not file_dual.exists(): raise gr.Error("No output") try: translated_preview = pdf_preview(str(file_zh)) except Exception: raise gr.Error("No preview") progress(1.0, desc="Translation complete!") return ( str(file_zh), translated_preview, str(file_dual), gr.update(visible=True), gr.update(visible=True), gr.update(visible=True), ) # Global setup custom_blue = gr.themes.Color( c50="#E8F3FF", c100="#BEDAFF", c200="#94BFFF", c300="#6AA1FF", c400="#4080FF", c500="#165DFF", # Primary color c600="#0E42D2", c700="#0A2BA6", c800="#061D79", c900="#03114D", c950="#020B33", ) with gr.Blocks( title="PDFBestTranslate - PDF Translation with preserved formats", theme=gr.themes.Default( primary_hue=custom_blue, spacing_size="md", radius_size="lg" ), css=""" .secondary-text {color: #999 !important;} footer {visibility: hidden} .env-warning {color: #dd5500 !important;} .env-success {color: #559900 !important;} /* Add dashed border to input-file class */ .input-file { border: 1.2px dashed #165DFF !important; border-radius: 6px !important; # background-color: #ffffff !important; transition: background-color 0.4s ease-out; } .input-file:hover { border: 1.2px dashed #165DFF !important; border-radius: 6px !important; color: #165DFF !important; background-color: #E8F3FF !important; transition: background-color 0.2s ease-in; } .progress-bar-wrap { border-radius: 8px !important; } .progress-bar { border-radius: 8px !important; } # .input-file label { # color: #165DFF !important; # border: 1.2px dashed #165DFF !important; # border-left: none !important; # border-top: none !important; # } # .input-file .wrap { # color: #165DFF !important; # } # .input-file .or { # color: #165DFF !important; # } """, head=( """ <script src="https://www.google.com/recaptcha/api.js?render=explicit" async defer></script> <script type="text/javascript"> var onVerify = function(token) { el=document.getElementById('verify').getElementsByTagName('textarea')[0]; el.value=token; el.dispatchEvent(new Event('input')); }; </script> """ if flag_demo else "" ), ) as demo: gr.Markdown( #"# [PDFMathTranslate @ GitHub](https://github.com/Byaidu/PDFMathTranslate)" "# [PDFMathTranslate——科研之心免费提供(更多科研AI智能体请点击)](https://ai.linkagi.top)" ) with gr.Row(): with gr.Column(scale=1): gr.Markdown("## File | < 5 MB" if flag_demo else "## File") file_type = gr.Radio( choices=["File", "Link"], label="Type", value="File", ) file_input = gr.File( label="File", file_count="single", file_types=[".pdf"], type="filepath", elem_classes=["input-file"], ) link_input = gr.Textbox( label="Link", visible=False, interactive=True, ) gr.Markdown("## Option(请先选择翻译模型)") with gr.Row(): service = gr.Dropdown( label="Service", choices=service_map.keys(), value="Google", ) apikey = gr.Textbox( label="API Key", max_lines=1, visible=False, ) with gr.Row(): lang_from = gr.Dropdown( label="Translate from", choices=lang_map.keys(), value="English", ) lang_to = gr.Dropdown( label="Translate to", choices=lang_map.keys(), value="Chinese", ) page_range = gr.Radio( choices=page_map.keys(), label="Pages", value=list(page_map.keys())[0], ) model_id = gr.Textbox( label="Model ID", visible=False, interactive=True, ) envs_status = "<span class='env-success'>- Properly configured.</span><br>" def details_wrapper(text_markdown): text = f""" <summary>Technical details</summary> {text_markdown} - GitHub: <a href="https://github.com/Byaidu/PDFMathTranslate">Byaidu/PDFMathTranslate</a><br> - GUI by: <a href="https://github.com/reycn">Rongxin</a><br> - Version: {__version__} """ return text def env_var_checker(env_var_name: str) -> str: if env_var_name: if not os.environ.get(env_var_name): envs_status = ( f"<span class='env-warning'>- Warning: environmental not found or error ({env_var_name})." + "</span><br>- Please make sure that the environment variables are properly configured " + "(<a href='https://github.com/Byaidu/PDFMathTranslate'>guide</a>).<br>" ) else: value = str(os.environ.get(env_var_name)) envs_status = "<span class='env-success'>- Properly configured.</span><br>" envs_status += ( f"- {env_var_name}: <code>{value[:13]}***</code><br>" ) else: envs_status = ( "<span class='env-success'>- Properly configured.</span><br>" ) return details_wrapper(envs_status) def on_select_service(service, evt: gr.EventData): if service_map[service][1]: apikey_content = gr.update( visible=False, value=os.environ.get(service_map[service][1]) ) else: apikey_content = gr.update(visible=False) if service_map[service][2]: model_visibility = gr.update( visible=True, value=service_map[service][2] ) else: model_visibility = gr.update(visible=False) return ( env_var_checker(service_map[service][1]), model_visibility, apikey_content, ) def on_select_filetype(file_type): return ( gr.update(visible=file_type == "File"), gr.update(visible=file_type == "Link"), ) output_title = gr.Markdown("## Translated", visible=False) output_file = gr.File(label="Download Translation", visible=False) output_file_dual = gr.File( label="Download Translation (Dual)", visible=False ) recaptcha_response = gr.Textbox( label="reCAPTCHA Response", elem_id="verify", visible=False ) recaptcha_box = gr.HTML('<div id="recaptcha-box"></div>') translate_btn = gr.Button("Translate", variant="primary") tech_details_tog = gr.Markdown( details_wrapper(envs_status), elem_classes=["secondary-text"], ) service.select( on_select_service, service, [tech_details_tog, model_id, apikey] ) file_type.select( on_select_filetype, file_type, [file_input, link_input], js=( f""" (a,b)=>{{ try{{ grecaptcha.render('recaptcha-box',{{ 'sitekey':'{client_key}', 'callback':'onVerify' }}); }}catch(error){{}} return [a]; }} """ if flag_demo else "" ), ) with gr.Column(scale=2): gr.Markdown("## Preview") preview = gr.Image(label="Document Preview", visible=True) # Event handlers file_input.upload( upload_file, inputs=[file_input, service], outputs=[file_input, preview], js=( f""" (a,b)=>{{ try{{ grecaptcha.render('recaptcha-box',{{ 'sitekey':'{client_key}', 'callback':'onVerify' }}); }}catch(error){{}} return [a]; }} """ if flag_demo else "" ), ) translate_btn.click( translate, inputs=[ file_type, file_input, link_input, service, apikey, model_id, lang_from, lang_to, page_range, recaptcha_response, ], outputs=[ output_file, preview, output_file_dual, output_file, output_file_dual, output_title, ], ).then(lambda: None, js="()=>{grecaptcha.reset()}" if flag_demo else "") def setup_gui(share=False): if flag_demo: demo.launch(server_name="0.0.0.0", max_file_size="5mb", inbrowser=True) else: try: demo.launch(server_name="0.0.0.0", debug=True, inbrowser=True, share=share) except Exception: print( "Error launching GUI using 0.0.0.0.\nThis may be caused by global mode of proxy software." ) try: demo.launch( server_name="127.0.0.1", debug=True, inbrowser=True, share=share ) except Exception: print( "Error launching GUI using 127.0.0.1.\nThis may be caused by global mode of proxy software." ) demo.launch(debug=True, inbrowser=True, share=True) # For auto-reloading while developing if __name__ == "__main__": setup_gui() |