Spaces:
Sleeping
Sleeping
File size: 15,445 Bytes
a5dbad5 | 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 | """
Verification Engine - Main orchestrator untuk semua analyzer
"""
import time
import json
from typing import Any, Dict, List, Optional, Union
from dataclasses import dataclass, field
from datetime import datetime
from enum import Enum
from .base_model import AnalysisResult
from .text_analyzer import TextAnalyzer
from .url_analyzer import URLAnalyzer
from .image_analyzer import ImageAnalyzer
from .video_analyzer import VideoAnalyzer
from .challenge_analyzer import ChallengeAnalyzer
class ContentType(Enum):
TEXT = "text"
URL = "url"
IMAGE = "image"
VIDEO = "video"
@dataclass
class VerificationRequest:
"""Request object untuk verifikasi"""
content_type: ContentType
content: Any # text string, URL string, image bytes/path, video bytes/path
metadata: Dict[str, Any] = field(default_factory=dict)
request_id: str = field(default_factory=lambda: datetime.now().strftime('%Y%m%d%H%M%S%f'))
@dataclass
class VerificationResponse:
"""Response object dari verifikasi"""
request_id: str
content_type: str
score: float
confidence: float
status: str
status_color: str
source: str
ai_summary: str
main_findings: str
need_attention: str
about_source: str
detailed_analysis: Dict[str, Any]
analysis_time: float
timestamp: str = field(default_factory=lambda: datetime.now().isoformat())
def to_dict(self) -> Dict[str, Any]:
return {
'request_id': self.request_id,
'content_type': self.content_type,
'score': round(self.score, 1),
'confidence': round(self.confidence, 3),
'status': self.status,
'status_color': self.status_color,
'source': self.source,
'ai_summary': self.ai_summary,
'main_findings': self.main_findings,
'need_attention': self.need_attention,
'about_source': self.about_source,
'detailed_analysis': self.detailed_analysis,
'analysis_time': round(self.analysis_time, 3),
'timestamp': self.timestamp
}
def to_json(self) -> str:
return json.dumps(self.to_dict(), ensure_ascii=False, indent=2)
class VerificationEngine:
"""
Main engine untuk verifikasi informasi
Mengkoordinasikan semua analyzer
"""
def __init__(self, lazy_load: bool = True):
"""
Initialize verification engine
Args:
lazy_load: If True, analyzers are loaded on first use
"""
self.text_analyzer = None
self.url_analyzer = None
self.image_analyzer = None
self.video_analyzer = None
self.challenge_analyzer = None
self.lazy_load = lazy_load
self.initialized_analyzers = set()
if not lazy_load:
self.initialize_all()
def initialize_all(self) -> Dict[str, bool]:
"""Initialize all analyzers"""
results = {}
for content_type in ContentType:
try:
self._ensure_analyzer(content_type)
results[content_type.value] = True
except Exception as e:
print(f"[Engine] Failed to initialize {content_type.value}: {e}")
results[content_type.value] = False
# Init challenge analyzer explicitly
try:
self._ensure_analyzer("challenge")
results["challenge"] = True
except Exception as e:
results["challenge"] = False
return results
def _ensure_analyzer(self, content_type: Union[ContentType, str]):
"""Ensure analyzer is initialized"""
# Handle string or Enum
type_str = content_type.value if isinstance(content_type, ContentType) else content_type
if type_str in self.initialized_analyzers:
return
if content_type == ContentType.TEXT:
self.text_analyzer = TextAnalyzer()
self.text_analyzer.initialize()
elif content_type == ContentType.URL:
self.url_analyzer = URLAnalyzer()
self.url_analyzer.initialize()
elif content_type == ContentType.IMAGE:
self.image_analyzer = ImageAnalyzer()
self.image_analyzer.initialize()
elif content_type == ContentType.VIDEO:
self.video_analyzer = VideoAnalyzer()
self.video_analyzer.initialize()
elif type_str == "challenge":
self.challenge_analyzer = ChallengeAnalyzer()
self.challenge_analyzer.initialize()
self.initialized_analyzers.add(type_str)
def evaluate_challenge(self, case_context: Dict[str, str], user_answer: str, user_sources: str) -> Dict[str, Any]:
"""Evaluate challenge answer"""
self._ensure_analyzer("challenge")
return self.challenge_analyzer.evaluate(case_context, user_answer, user_sources)
def verify(self, request: VerificationRequest) -> VerificationResponse:
"""
Main verification method
Args:
request: VerificationRequest object
Returns:
VerificationResponse with analysis results
"""
start_time = time.time()
# Ensure analyzer is ready
self._ensure_analyzer(request.content_type)
# Route to appropriate analyzer
if request.content_type == ContentType.TEXT:
result = self.text_analyzer.analyze(request.content)
source = f"Teks ({len(request.content)} karakter)"
elif request.content_type == ContentType.URL:
result = self.url_analyzer.analyze(request.content)
source = request.content[:100]
elif request.content_type == ContentType.IMAGE:
result = self.image_analyzer.analyze(request.content)
source = "Gambar yang diupload"
elif request.content_type == ContentType.VIDEO:
result = self.video_analyzer.analyze(request.content)
source = "Video yang diupload"
else:
raise ValueError(f"Unknown content type: {request.content_type}")
# Generate human-readable summaries
ai_summary = self._generate_ai_summary(result, request.content_type)
main_findings = self._format_findings(result.findings)
need_attention = self._format_warnings(result.warnings)
about_source = self._generate_source_info(result, request.content_type, source)
analysis_time = time.time() - start_time
return VerificationResponse(
request_id=request.request_id,
content_type=request.content_type.value,
score=result.score,
confidence=result.confidence,
status=self._get_status_label(result.status),
status_color=result.status_color,
source=source,
ai_summary=ai_summary,
main_findings=main_findings,
need_attention=need_attention,
about_source=about_source,
detailed_analysis=result.metadata,
analysis_time=analysis_time
)
def verify_text(self, text: str) -> VerificationResponse:
"""Shortcut untuk verifikasi teks"""
request = VerificationRequest(
content_type=ContentType.TEXT,
content=text
)
return self.verify(request)
def verify_url(self, url: str) -> VerificationResponse:
"""Shortcut untuk verifikasi URL"""
request = VerificationRequest(
content_type=ContentType.URL,
content=url
)
return self.verify(request)
def verify_image(self, image_source: Any) -> VerificationResponse:
"""Shortcut untuk verifikasi gambar"""
request = VerificationRequest(
content_type=ContentType.IMAGE,
content=image_source
)
return self.verify(request)
def verify_video(self, video_source: Any) -> VerificationResponse:
"""Shortcut untuk verifikasi video"""
request = VerificationRequest(
content_type=ContentType.VIDEO,
content=video_source
)
return self.verify(request)
def _get_status_label(self, status: str) -> str:
"""Convert status code to human-readable label"""
labels = {
'kredibel': 'Kredibel',
'cukup_kredibel': 'Cukup Kredibel',
'perlu_perhatian': 'Perlu Perhatian',
'tidak_kredibel': 'Tidak Kredibel'
}
return labels.get(status, status)
def _generate_ai_summary(self, result: AnalysisResult, content_type: ContentType) -> str:
"""Generate AI summary berdasarkan hasil analisis"""
score = result.score
findings_count = len(result.findings)
warnings_count = len(result.warnings)
# 1. Try to get direct AI reasoning first
ai_reasoning = ""
# Check metadata for explicit AI results (Image/Video/URL often have it)
meta = result.metadata
if content_type == ContentType.IMAGE and 'ai_vision_analysis' in meta:
ai_reasoning = meta['ai_vision_analysis'].get('reasoning', '')
elif content_type == ContentType.VIDEO and 'ai_multimodal' in meta:
ai_reasoning = meta['ai_multimodal'].get('reasoning', '')
elif content_type == ContentType.URL and 'content_analysis' in meta:
ai_reasoning = meta['content_analysis'].get('ai_analysis', {}).get('raw', {}).get('reasoning', '')
# If not in metadata, look for "AI:" prefix in findings/warnings (TextAnalyzer way)
if not ai_reasoning:
all_notes = result.findings + result.warnings
for note in all_notes:
if note.startswith("AI: ") or note.startswith("AI Vision: ") or note.startswith("AI Multimodal: "):
ai_reasoning = note.split(": ", 1)[1]
break
# 2. Construct Summary
summary = ""
if ai_reasoning:
summary = f"Analisis AI: \"{ai_reasoning}\" "
else:
# Fallback to score-based template
if score >= 80:
summary = "Analisis menunjukkan konten ini memiliki kredibilitas tinggi. "
elif score >= 60:
summary = "Konten ini cukup kredibel namun tetap perlu diverifikasi. "
elif score >= 40:
summary = "Perlu kehati-hatian, terdeteksi indikator yang meragukan. "
else:
summary = "Peringatan: Konten ini memiliki indikator kuat sebagai misinformasi atau manipulasi. "
# 3. Add Context Specifics (Verification details)
if content_type == ContentType.TEXT:
if meta.get('hoax_score', 0) > 0.5:
summary += "Terdeteksi pola bahasa yang umum digunakan dalam hoax. "
if meta.get('clickbait_score', 0) > 0.5:
summary += "Judul atau konten menggunakan gaya clickbait. "
elif content_type == ContentType.URL:
if meta.get('domain_score', 0) < 0.4:
summary += "Domain situs ini tidak memiliki reputasi yang jelas. "
if meta.get('ssl_enabled'):
summary += "Koneksi aman (HTTPS) terverifikasi. "
elif content_type == ContentType.IMAGE:
if meta.get('ai_generated', {}).get('is_ai_generated'):
summary += "Analisis teknis juga mendeteksi jejak generasi AI. "
elif meta.get('ela_score', 0) > 0.4:
summary += "Analisis forensik digital (ELA) menemukan anomali kompresi. "
elif content_type == ContentType.VIDEO:
deepfake = meta.get('deepfake_analysis', {}) or meta.get('heuristic_deepfake', {})
if deepfake.get('is_deepfake'):
summary += "Indikator teknis konsisten dengan tanda-tanda deepfake. "
# Add warning count if significant
if warnings_count > 0 and "Peringatan" not in summary:
summary += f"Ditemukan {warnings_count} catatan peringatan."
return summary.strip()
def _format_findings(self, findings: List[str]) -> str:
"""Format findings list to bullet points"""
if not findings:
return "Tidak ada temuan khusus."
formatted = []
for finding in findings[:10]: # Limit to 10 items
formatted.append(f"• {finding}")
return "\n".join(formatted)
def _format_warnings(self, warnings: List[str]) -> str:
"""Format warnings list to bullet points"""
if not warnings:
return "Tidak ada peringatan khusus."
formatted = []
for warning in warnings[:10]: # Limit to 10 items
formatted.append(f"• {warning}")
return "\n".join(formatted)
def _generate_source_info(
self,
result: AnalysisResult,
content_type: ContentType,
source: str
) -> str:
"""Generate info about the source"""
info = []
if content_type == ContentType.TEXT:
word_count = result.metadata.get('word_count', 0)
info.append(f"Teks berisi {word_count} kata.")
elif content_type == ContentType.URL:
domain = result.metadata.get('domain', '')
info.append(f"Domain: {domain}")
age = result.metadata.get('domain_age', {})
if age.get('age_years'):
info.append(f"Usia domain: {age['age_years']} tahun")
elif content_type == ContentType.IMAGE:
img_info = result.metadata.get('image_info', {})
if img_info:
info.append(f"Resolusi: {img_info.get('width', 0)}x{img_info.get('height', 0)} pixels")
exif = result.metadata.get('exif', {})
if exif.get('Make') or exif.get('Model'):
camera = f"{exif.get('Make', '')} {exif.get('Model', '')}".strip()
info.append(f"Kamera: {camera}")
elif content_type == ContentType.VIDEO:
video_info = result.metadata.get('video_info', {})
if video_info:
info.append(f"Durasi: {video_info.get('duration', 0):.1f} detik")
info.append(f"Resolusi: {video_info.get('width', 0)}x{video_info.get('height', 0)}")
info.append(f"FPS: {video_info.get('fps', 0)}")
if not info:
info.append(f"Sumber: {source}")
return "\n".join(info)
def get_status(self) -> Dict[str, Any]:
"""Get engine status"""
return {
'initialized_analyzers': list(self.initialized_analyzers),
'lazy_load': self.lazy_load,
'analyzers': {
'text': self.text_analyzer.get_status() if self.text_analyzer else None,
'url': self.url_analyzer.get_status() if self.url_analyzer else None,
'image': self.image_analyzer.get_status() if self.image_analyzer else None,
'video': self.video_analyzer.get_status() if self.video_analyzer else None
}
}
|