File size: 19,116 Bytes
04bd3ae cbdf865 04bd3ae cbdf865 04bd3ae cbdf865 04bd3ae cbdf865 04bd3ae cbdf865 04bd3ae |
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 |
import gradio as gr
import os
import zipfile
import tempfile
import shutil
from pathlib import Path
import mimetypes
import time
import socket
# Create uploads directory
UPLOADS_FOLDER = "uploads"
os.makedirs(UPLOADS_FOLDER, exist_ok=True)
def find_available_port(start_port=7860, max_attempts=10):
"""Find an available port starting from start_port"""
for port in range(start_port, start_port + max_attempts):
try:
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
s.bind(('', port))
return port
except OSError:
continue
return start_port # Fallback to start_port if none found
def process_file(file_obj, file_name, action):
"""
Process uploaded file: return original or create zip
"""
if not file_obj:
return None, "❌ No file uploaded"
try:
# In Gradio 6+, file_obj is a dictionary
if isinstance(file_obj, dict):
file_path = file_obj["path"]
original_name = file_obj["name"]
else:
# Fallback for older versions
file_path = file_obj.name if hasattr(file_obj, 'name') else file_obj
original_name = os.path.basename(file_path)
# Save uploaded file temporarily
temp_dir = tempfile.mkdtemp()
custom_name = file_name.strip() if file_name and file_name.strip() else original_name
original_path = os.path.join(temp_dir, custom_name)
# Copy file to temp location
shutil.copy2(file_path, original_path)
if action == "original":
# Return original file - for Gradio 6+, return a dictionary
return {
"path": original_path,
"name": custom_name
}, f"✅ Ready to download: {custom_name}"
elif action == "zip":
# Create zip file
base_name = os.path.splitext(custom_name)[0]
zip_name = f"{base_name}.zip"
zip_path = os.path.join(temp_dir, zip_name)
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf:
zipf.write(original_path, custom_name)
return {
"path": zip_path,
"name": zip_name
}, f"✅ Zipped as: {zip_name}"
elif action == "zip_with_password":
# Create password-protected zip
try:
import pyminizip
base_name = os.path.splitext(custom_name)[0]
zip_name = f"{base_name}_protected.zip"
zip_path = os.path.join(temp_dir, zip_name)
# Compress with password
pyminizip.compress(
original_path,
None,
zip_path,
"password123", # Default password
5 # Compression level
)
return {
"path": zip_path,
"name": zip_name
}, f"✅ Password-protected zip created (password: password123)"
except ImportError:
return None, "❌ pyminizip not installed. Install with: pip install pyminizip"
else:
return None, "❌ Invalid action selected"
except Exception as e:
return None, f"❌ Error: {str(e)}"
def process_multiple_files(files, action):
"""
Process multiple uploaded files
"""
if not files:
return None, "❌ No files uploaded"
try:
temp_dir = tempfile.mkdtemp()
if action == "individual":
# Create zip containing all files
zip_name = "files.zip"
zip_path = os.path.join(temp_dir, zip_name)
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf:
for file_obj in files:
# Handle Gradio 6+ file object format
if isinstance(file_obj, dict):
file_path = file_obj["path"]
file_name = file_obj["name"]
else:
file_path = file_obj.name if hasattr(file_obj, 'name') else file_obj
file_name = os.path.basename(file_path)
zipf.write(file_path, file_name)
return {
"path": zip_path,
"name": zip_name
}, f"✅ Created zip with {len(files)} files"
elif action == "separate":
# Create separate zips for each file
zip_name = "separate_files.zip"
zip_path = os.path.join(temp_dir, zip_name)
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf:
for file_obj in files:
# Handle Gradio 6+ file object format
if isinstance(file_obj, dict):
file_path = file_obj["path"]
file_name = file_obj["name"]
else:
file_path = file_obj.name if hasattr(file_obj, 'name') else file_obj
file_name = os.path.basename(file_path)
# Create individual zip first
base_name = os.path.splitext(file_name)[0]
individual_zip_name = f"{base_name}.zip"
individual_zip_path = os.path.join(temp_dir, individual_zip_name)
with zipfile.ZipFile(individual_zip_path, 'w', zipfile.ZIP_DEFLATED) as ind_zip:
ind_zip.write(file_path, file_name)
# Add individual zip to main zip
zipf.write(individual_zip_path, individual_zip_name)
return {
"path": zip_path,
"name": zip_name
}, f"✅ Created zip with {len(files)} individual zips"
else:
return None, "❌ Invalid action selected"
except Exception as e:
return None, f"❌ Error: {str(e)}"
def get_file_info(file_obj):
"""Get information about uploaded file"""
if not file_obj:
return "No file selected"
try:
# Handle Gradio 6+ file object format
if isinstance(file_obj, dict):
file_path = file_obj["path"]
file_name = file_obj["name"]
else:
file_path = file_obj.name if hasattr(file_obj, 'name') else file_obj
file_name = os.path.basename(file_path)
file_size = os.path.getsize(file_path)
file_ext = os.path.splitext(file_name)[1].lower()
# Get file type
mime_type, _ = mimetypes.guess_type(file_path)
file_type = mime_type.split('/')[0] if mime_type else "Unknown"
# Get creation and modification times
ctime = time.ctime(os.path.getctime(file_path))
mtime = time.ctime(os.path.getmtime(file_path))
info = f"""
📄 **File Information:**
**Name:** {file_name}
**Size:** {file_size:,} bytes ({file_size/1024:.2f} KB)
**Extension:** {file_ext}
**Type:** {file_type}
**Created:** {ctime}
**Modified:** {mtime}
**Path:** {file_path}
"""
return info
except Exception as e:
return f"❌ Error getting file info: {str(e)}"
# Create Gradio interface
with gr.Blocks(title="File Upload & Download Manager") as iface:
gr.Markdown("# 📁 File Upload & Download Manager")
gr.Markdown("Upload files and download them as original or zipped")
with gr.Tabs():
# Single File Tab
with gr.Tab("Single File"):
with gr.Row():
with gr.Column(scale=2):
single_file = gr.File(
label="Upload a File",
file_count="single"
)
file_name_input = gr.Textbox(
label="Custom Filename (optional)",
placeholder="Leave empty to keep original name...",
info="Enter a custom name for the downloaded file"
)
single_action = gr.Radio(
choices=[
("Download Original", "original"),
("Download as ZIP", "zip"),
("Password-protected ZIP", "zip_with_password")
],
label="Select Action",
value="original"
)
single_btn = gr.Button("Process File", variant="primary")
with gr.Column(scale=1):
file_info = gr.Markdown(label="File Information")
single_status = gr.Textbox(label="Status", interactive=False)
single_download = gr.File(label="Download Processed File", interactive=False)
# Update file info when file is uploaded
single_file.change(
fn=get_file_info,
inputs=[single_file],
outputs=file_info
)
# Multiple Files Tab
with gr.Tab("Multiple Files"):
with gr.Row():
with gr.Column(scale=2):
multi_files = gr.File(
label="Upload Multiple Files",
file_count="multiple",
# Updated file_types format for Gradio 6+
file_types=[
"image", "video", "audio",
"text", ".pdf", ".zip", ".txt",
".doc", ".docx", ".xls", ".xlsx"
]
)
multi_action = gr.Radio(
choices=[
("Combine all files into one ZIP", "individual"),
("Create separate ZIPs for each file", "separate")
],
label="Select Action",
value="individual"
)
multi_btn = gr.Button("Process Files", variant="primary")
with gr.Column(scale=1):
multi_status = gr.Textbox(label="Status", interactive=False)
multi_download = gr.File(label="Download Processed Files", interactive=False)
# Batch Processing Tab
with gr.Tab("Batch Processing"):
with gr.Row():
with gr.Column():
gr.Markdown("### Upload Multiple Files for Batch Processing")
batch_files = gr.File(
label="Upload Files",
file_count="multiple",
file_types=None # All file types
)
batch_options = gr.CheckboxGroup(
choices=[
"Create individual ZIPs",
"Create combined ZIP",
"Rename with timestamp",
"Add to existing ZIP"
],
label="Processing Options",
value=["Create combined ZIP"]
)
with gr.Row():
batch_format = gr.Dropdown(
choices=[".zip", ".7z", ".tar.gz"],
value=".zip",
label="Archive Format"
)
compression_level = gr.Slider(
minimum=1,
maximum=9,
value=6,
step=1,
label="Compression Level"
)
batch_btn = gr.Button("Process Batch", variant="primary", size="lg")
with gr.Column():
batch_status = gr.Textbox(label="Status", interactive=False, lines=3)
batch_download = gr.File(label="Download Results", interactive=False)
# Instructions
with gr.Accordion("📖 Instructions & Features", open=False):
gr.Markdown("""
## How to Use:
### Single File Tab:
1. **Upload** a single file
2. (Optional) Enter a custom filename
3. **Choose action**: Download original, as ZIP, or password-protected ZIP
4. Click **Process File**
### Multiple Files Tab:
1. **Upload** multiple files (Ctrl+Click to select multiple)
2. **Choose action**: Combine into one ZIP or create separate ZIPs
3. Click **Process Files**
### Batch Processing Tab:
1. **Upload** multiple files
2. **Select processing options**
3. Choose archive format and compression level
4. Click **Process Batch**
## Features:
- ✅ Single file upload and download
- ✅ Multiple file upload and batch processing
- ✅ ZIP file creation with compression
- ✅ Password-protected ZIPs (requires pyminizip)
- ✅ File information display
- ✅ Custom filename support
- ✅ Multiple archive formats
## Notes:
- Files are processed in temporary storage
- Original files are not modified
- Large files may take time to process
- Password for protected ZIPs: `password123`
- For Gradio 6+ compatibility, file objects are handled differently
""")
# Connect events
single_btn.click(
fn=process_file,
inputs=[single_file, file_name_input, single_action],
outputs=[single_download, single_status]
)
multi_btn.click(
fn=process_multiple_files,
inputs=[multi_files, multi_action],
outputs=[multi_download, multi_status]
)
# Batch processing function
def process_batch(files, options, format_type, compression):
if not files:
return None, "❌ No files uploaded"
try:
temp_dir = tempfile.mkdtemp()
results = []
# Process based on options
if "Create combined ZIP" in options:
zip_name = f"combined{format_type}"
zip_path = os.path.join(temp_dir, zip_name)
if format_type == ".zip":
with zipfile.ZipFile(zip_path, 'w', zipfile.ZIP_DEFLATED, compresslevel=compression) as zipf:
for file_obj in files:
# Handle Gradio 6+ file object format
if isinstance(file_obj, dict):
file_path = file_obj["path"]
arcname = file_obj["name"]
else:
file_path = file_obj.name if hasattr(file_obj, 'name') else file_obj
arcname = os.path.basename(file_path)
if "Rename with timestamp" in options:
name, ext = os.path.splitext(arcname)
arcname = f"{name}_{int(time.time())}{ext}"
zipf.write(file_path, arcname)
results.append({
"path": zip_path,
"name": zip_name
})
if "Create individual ZIPs" in options:
for file_obj in files:
# Handle Gradio 6+ file object format
if isinstance(file_obj, dict):
file_path = file_obj["path"]
file_name = file_obj["name"]
else:
file_path = file_obj.name if hasattr(file_obj, 'name') else file_obj
file_name = os.path.basename(file_path)
base_name = os.path.splitext(file_name)[0]
if "Rename with timestamp" in options:
base_name = f"{base_name}_{int(time.time())}"
individual_zip_name = f"{base_name}{format_type}"
individual_zip_path = os.path.join(temp_dir, individual_zip_name)
if format_type == ".zip":
with zipfile.ZipFile(individual_zip_path, 'w', zipfile.ZIP_DEFLATED, compresslevel=compression) as zipf:
zipf.write(file_path, file_name)
results.append({
"path": individual_zip_path,
"name": individual_zip_name
})
# If multiple results, create a final zip
if len(results) > 1:
final_zip_name = f"batch_results{format_type}"
final_zip_path = os.path.join(temp_dir, final_zip_name)
with zipfile.ZipFile(final_zip_path, 'w', zipfile.ZIP_DEFLATED) as zipf:
for result in results:
zipf.write(result["path"], result["name"])
output_file = {
"path": final_zip_path,
"name": final_zip_name
}
elif results:
output_file = results[0]
else:
return None, "⚠️ No processing options selected"
return output_file, f"✅ Processed {len(files)} file(s) with {len(options)} option(s)"
except Exception as e:
return None, f"❌ Error: {str(e)}"
batch_btn.click(
fn=process_batch,
inputs=[batch_files, batch_options, batch_format, compression_level],
outputs=[batch_download, batch_status]
)
# Launch the app
if __name__ == "__main__":
# Find an available port
available_port = find_available_port(start_port=7860, max_attempts=20)
print(f"Starting server on port {available_port}...")
iface.launch(
server_name="0.0.0.0", # Changed to 0.0.0.0 for better compatibility
server_port=available_port, # Use dynamically found port
show_error=True,
share=False,
theme=gr.themes.Soft()
) |