File size: 8,480 Bytes
fd50325 | 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 | """
Upload Caption Images to MinIO
This script uploads the image files referenced in the captions to the MinIO nlp-images bucket.
The images should be in a local directory (e.g., 'caption_images' folder).
Usage:
python upload_caption_images.py [--image-dir <directory>]
"""
import os
import sys
from pathlib import Path
from dotenv import load_dotenv
from minio import Minio
from minio.error import S3Error
import logging
# Configure logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(levelname)s - %(message)s'
)
logger = logging.getLogger(__name__)
# Load environment variables
load_dotenv()
MONGO_URI = os.getenv("MONGO_URI", "mongodb://localhost:27017/detectifai")
MINIO_ENDPOINT = os.getenv("MINIO_ENDPOINT", "s3.eu-central-003.backblazeb2.com")
MINIO_ACCESS_KEY = os.getenv("MINIO_ACCESS_KEY", "00367479ffb7e4e0000000001")
MINIO_SECRET_KEY = os.getenv("MINIO_SECRET_KEY", "K003opTvf92ijRj5dM7H1dgrlwcGTdA")
MINIO_SECURE = os.getenv("MINIO_SECURE", "true").lower() == "true"
MINIO_REGION = os.getenv("MINIO_REGION", "eu-central-003")
NLP_IMAGES_BUCKET = "nlp-images"
# Expected image files from upload_captions.py
EXPECTED_IMAGES = [
"img1.webp",
"img2.jpg",
"img3.png",
"img4.png",
"img5.jpg",
"img6.webp",
"img7.webp",
"img8.webp",
"img9.jpg",
"img10.png"
]
def setup_minio_client():
"""Initialize MinIO client"""
try:
client = Minio(
MINIO_ENDPOINT,
access_key=MINIO_ACCESS_KEY,
secret_key=MINIO_SECRET_KEY,
secure=MINIO_SECURE,
region=MINIO_REGION
)
return client
except Exception as e:
logger.error(f"β Error connecting to MinIO: {e}")
return None
def ensure_bucket_exists(client, bucket_name):
"""Ensure the bucket exists, create if it doesn't"""
try:
if not client.bucket_exists(bucket_name):
logger.info(f"Creating bucket: {bucket_name}")
client.make_bucket(bucket_name)
logger.info(f"β
Created bucket: {bucket_name}")
else:
logger.info(f"β
Bucket '{bucket_name}' already exists")
return True
except S3Error as e:
if e.code == "BucketAlreadyOwnedByYou" or e.code == "BucketAlreadyExists":
logger.info(f"β
Bucket '{bucket_name}' already exists")
return True
logger.error(f"β Error creating bucket: {e}")
return False
except Exception as e:
logger.error(f"β Unexpected error: {e}")
return False
def upload_image(client, bucket_name, image_path, object_name):
"""Upload a single image file to MinIO"""
try:
if not os.path.exists(image_path):
logger.warning(f"β οΈ Image file not found: {image_path}")
return False
file_size = os.path.getsize(image_path)
# Determine content type based on extension
ext = image_path.lower().split('.')[-1]
content_type_map = {
'jpg': 'image/jpeg',
'jpeg': 'image/jpeg',
'png': 'image/png',
'webp': 'image/webp',
'gif': 'image/gif'
}
content_type = content_type_map.get(ext, 'application/octet-stream')
with open(image_path, 'rb') as file_data:
client.put_object(
bucket_name,
object_name,
file_data,
length=file_size,
content_type=content_type
)
logger.info(f"β
Uploaded: {object_name} ({file_size} bytes)")
return True
except S3Error as e:
logger.error(f"β S3Error uploading {object_name}: {e}")
return False
except Exception as e:
logger.error(f"β Error uploading {object_name}: {e}")
return False
def find_image_directory():
"""Try to find the directory containing caption images"""
# Common locations to check
possible_dirs = [
Path(__file__).parent / "caption_images",
Path(__file__).parent.parent / "caption_images",
Path(__file__).parent / "images",
Path(__file__).parent.parent / "images",
Path(__file__).parent / "DetectifAI_db" / "caption_images",
]
for dir_path in possible_dirs:
if dir_path.exists() and dir_path.is_dir():
# Check if it contains any of the expected images
files = [f.name for f in dir_path.iterdir() if f.is_file()]
if any(img in files for img in EXPECTED_IMAGES):
return dir_path
return None
def upload_all_images(image_dir=None):
"""Upload all caption images to MinIO"""
logger.info("π Starting Caption Image Upload Process")
logger.info("=" * 80)
# Initialize MinIO client
client = setup_minio_client()
if not client:
logger.error("β Failed to initialize MinIO client")
return False
# Ensure bucket exists
if not ensure_bucket_exists(client, NLP_IMAGES_BUCKET):
logger.error("β Failed to ensure bucket exists")
return False
# Find image directory
if image_dir is None:
image_dir = find_image_directory()
if image_dir is None:
logger.error("β Could not find image directory")
logger.info("π‘ Please provide the image directory path:")
logger.info(" python upload_caption_images.py --image-dir <path>")
logger.info("")
logger.info("Expected image files:")
for img in EXPECTED_IMAGES:
logger.info(f" - {img}")
return False
image_dir = Path(image_dir)
if not image_dir.exists():
logger.error(f"β Image directory does not exist: {image_dir}")
return False
logger.info(f"π Using image directory: {image_dir}")
logger.info("")
# Upload each image
uploaded_count = 0
failed_count = 0
missing_count = 0
for image_name in EXPECTED_IMAGES:
image_path = image_dir / image_name
if not image_path.exists():
logger.warning(f"β οΈ Image not found: {image_name}")
missing_count += 1
continue
if upload_image(client, NLP_IMAGES_BUCKET, str(image_path), image_name):
uploaded_count += 1
else:
failed_count += 1
# Summary
logger.info("")
logger.info("=" * 80)
logger.info("π Upload Summary:")
logger.info(f" β
Successfully uploaded: {uploaded_count}")
logger.info(f" β Failed: {failed_count}")
logger.info(f" β οΈ Missing: {missing_count}")
logger.info(f" π¦ Total expected: {len(EXPECTED_IMAGES)}")
logger.info("=" * 80)
if uploaded_count > 0:
logger.info("β
Image upload process completed!")
return True
else:
logger.error("β No images were uploaded")
return False
def list_bucket_contents(client, bucket_name):
"""List all objects in the bucket"""
try:
logger.info(f"\nπ¦ Contents of '{bucket_name}' bucket:")
objects = client.list_objects(bucket_name, recursive=True)
count = 0
for obj in objects:
logger.info(f" - {obj.object_name} ({obj.size} bytes)")
count += 1
if count == 0:
logger.info(" (bucket is empty)")
return count
except Exception as e:
logger.error(f"β Error listing bucket contents: {e}")
return 0
if __name__ == "__main__":
import argparse
parser = argparse.ArgumentParser(description="Upload caption images to MinIO")
parser.add_argument(
"--image-dir",
type=str,
help="Directory containing the caption images"
)
parser.add_argument(
"--list",
action="store_true",
help="List current contents of nlp-images bucket"
)
args = parser.parse_args()
if args.list:
client = setup_minio_client()
if client:
list_bucket_contents(client, NLP_IMAGES_BUCKET)
else:
success = upload_all_images(args.image_dir)
sys.exit(0 if success else 1)
|