flask_service.dart (15888B)
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 | import 'dart:convert'; import 'dart:io'; import 'dart:typed_data'; import 'package:flutter/foundation.dart'; import 'package:path_provider/path_provider.dart'; import 'package:http/http.dart' as http; import 'package:path/path.dart' as p; import 'package:flutter_dotenv/flutter_dotenv.dart'; import 'package:creekui/data/repos/file_repo.dart'; import 'package:creekui/data/repos/image_repo.dart'; import 'package:creekui/data/repos/note_repo.dart'; import 'package:creekui/data/repos/project_repo.dart'; import './python_service.dart'; import './encryption_service.dart'; class FlaskService { // =========================================================================== // CONFIGURATION // =========================================================================== static String get _urlGenerate => dotenv.env['URL_GENERATE'] ?? ''; static String get _urlInpainting => dotenv.env['URL_INPAINTING'] ?? ''; static String get _urlInpaintingApi => dotenv.env['URL_INPAINTING_API'] ?? ''; static String get _urlSketchApi => dotenv.env['URL_SKETCH_API'] ?? ''; static String get _urlAsset => dotenv.env['URL_ASSET'] ?? ''; static String get _urlDescribe => dotenv.env['URL_DESCRIBE'] ?? ''; static const Map<String, String> _headers = { 'Content-Type': 'application/json', }; // --- REPOSITORIES --- final _imageRepo = ImageRepo(); final _noteRepo = NoteRepo(); final _projectRepo = ProjectRepo(); final _fileRepo = FileRepo(); final _pythonService = PythonService(); // --- SECURITY --- final _encryptionService = EncryptionService(); // =========================================================================== // 1. PIPELINES // =========================================================================== // [Sketch-to-Image Pipeline] Future<String?> sketchToImage({ required int projectId, required String sketchPath, required String userPrompt, String? imageDescription, }) async { debugPrint("🔗 [Pipeline] Starting Sketch-to-Image..."); // 1. Analyze Sketch (Use cached description if available) final String? sketchDescription = imageDescription ?? await describeImage( imagePath: sketchPath, prompt: '<MORE_DETAILED_CAPTION>', ); if (sketchDescription == null) { debugPrint("❌ [Pipeline] Failed: Could not analyze sketch."); return null; } // 2. Fetch Stylesheet & Construct Prompt final project = await _projectRepo.getProjectById(projectId); final String stylesheetJson = project?.globalStylesheet ?? "{}"; // --- DEBUG LOGS --- debugPrint("🐛 [DEBUG] 1. User Prompt: $userPrompt"); debugPrint("🐛 [DEBUG] 2. Image Caption: $sketchDescription"); await _logToFile("debug_stylesheet.json", stylesheetJson); debugPrint("🔗 [Pipeline] Generating magic prompt from stylesheet..."); final String? magicPrompt = await _pythonService.generateMagicPrompt( stylesheetJson: stylesheetJson, caption: sketchDescription, userPrompt: userPrompt, ); if (magicPrompt != null) { await _logToFile("debug_magic_prompt.txt", magicPrompt); debugPrint("🐛 [DEBUG] 4. Magic Prompt: $magicPrompt"); } else { debugPrint("🐛 [DEBUG] 4. Magic Prompt: null"); } final String globalPrompt = magicPrompt ?? "$userPrompt. The image features: $sketchDescription"; debugPrint("🔗 [Pipeline] Generating base image..."); final String? generatedImagePath = await generateAndSaveImage(globalPrompt); if (generatedImagePath == null) { debugPrint("❌ [Pipeline] Failed: Image generation returned null."); return null; } return generatedImagePath; } // [Sketch-to-Image-API Pipeline] Future<String?> sketchToImageAPI({ required int projectId, required String sketchPath, required String userPrompt, required int option, String? imageDescription, }) async { debugPrint("🔗 [Pipeline] Starting Sketch-to-Image-API..."); // 1. Analyze Sketch final String? sketchDescription = imageDescription ?? await describeImage( imagePath: sketchPath, prompt: '<MORE_DETAILED_CAPTION>', ); if (sketchDescription == null) { debugPrint("❌ [Pipeline] Failed: Could not analyze sketch."); return null; } // 2. Fetch Stylesheet & Construct Prompt final project = await _projectRepo.getProjectById(projectId); final String stylesheetJson = project?.globalStylesheet ?? "{}"; // --- DEBUG LOGS --- debugPrint("🐛 [DEBUG] 1. User Prompt: $userPrompt"); debugPrint("🐛 [DEBUG] 2. Image Caption: $sketchDescription"); await _logToFile("debug_stylesheet.json", stylesheetJson); debugPrint("🔗 [Pipeline] Generating magic prompt from stylesheet..."); final String? magicPrompt = await _pythonService.generateMagicPrompt( stylesheetJson: stylesheetJson, caption: sketchDescription, userPrompt: userPrompt, ); if (magicPrompt != null) { await _logToFile("debug_magic_prompt.txt", magicPrompt); debugPrint("🐛 [DEBUG] 4. Magic Prompt: $magicPrompt"); } else { debugPrint("🐛 [DEBUG] 4. Magic Prompt: null"); } final String globalPrompt = magicPrompt ?? "$userPrompt. The image features: $sketchDescription"; debugPrint("🔗 [Pipeline] Generating base image via API..."); final String? generatedImagePath = await _performImageOperation( fullUrl: _urlSketchApi, logPrefix: '🖌️ API Sketch', // The body map is the PLAINTEXT payload body: {'prompt': globalPrompt, 'option': option}, filenamePrefix: 'sketch-to-image-api_$globalPrompt', ); if (generatedImagePath == null) { debugPrint("❌ [Pipeline] Failed: Image generation returned null."); return null; } return generatedImagePath; } // =========================================================================== // 2. GENERATION SERVICES (Returns File Path) // =========================================================================== // [Text-to-Image] Future<String?> generateAndSaveImage(String prompt) async { return _performImageOperation( fullUrl: _urlGenerate, logPrefix: '🎨 Text-to-Image', body: {'prompt': prompt}, filenamePrefix: 'gen', ); } // [Inpainting] Future<String?> inpaintImage({ required String imagePath, required String maskPath, required String prompt, }) async { final String? base64Image = await _encodeFile(imagePath); final String? base64Mask = await _encodeFile(maskPath); if (base64Image == null || base64Mask == null) return null; return _performImageOperation( fullUrl: _urlInpainting, logPrefix: '🖌️ Inpainting', body: { 'prompt': prompt, 'negative_prompt': 'blurry, bad quality, low res, ugly', 'image': base64Image, 'mask_image': base64Mask, }, filenamePrefix: 'inpaint_$prompt', ); } // [Inpainting-API] Future<String?> inpaintApiImage({ required String imagePath, required String maskPath, required String prompt, }) async { final String? base64Image = await _encodeFile(imagePath); final String? base64Mask = await _encodeFile(maskPath); if (base64Image == null || base64Mask == null) return null; return _performImageOperation( fullUrl: _urlInpaintingApi, logPrefix: '🖌️ Inpainting API', body: { 'prompt': prompt, 'negative_prompt': 'blurry, bad quality, low res, ugly', 'image': base64Image, 'mask_image': base64Mask, }, filenamePrefix: 'inpaint_api$prompt', ); } // [Background Removal] Future<String?> generateAsset({required String imagePath}) async { // 1. Prepare and Upload final String? base64Image = await _encodeFile(imagePath); if (base64Image == null) return null; final String? generatedAssetPath = await _performImageOperation( fullUrl: _urlAsset, logPrefix: '✂️ Asset Gen', body: {'image': base64Image}, filenamePrefix: 'asset', ); // 2. Resolve Project ID and Save if (generatedAssetPath != null) { int? projectId; // --- CHECK 1: Is this a Main Image? --- final imageModel = await _imageRepo.getByFilePath(imagePath); if (imageModel != null) { projectId = imageModel.projectId; } // --- CHECK 2: Is this a Note Crop? --- if (projectId == null) { final noteModel = await _noteRepo.getByCropPath(imagePath); if (noteModel != null) { final parentImage = await _imageRepo.getById(noteModel.imageId); if (parentImage != null) { projectId = parentImage.projectId; debugPrint("🔗 Linked Asset to Project via Note: ${noteModel.id}"); } } } // --- CHECK 3: Is this a generic File? --- if (projectId == null) { final fileModel = await _fileRepo.getByFilePath(imagePath); if (fileModel != null) { projectId = fileModel.projectId; } } // 3. Update the Project if (projectId != null) { final project = await _projectRepo.getProjectById(projectId); if (project != null) { project.assetsPath.add(generatedAssetPath); await _projectRepo.updateAssets(projectId, project.assetsPath); debugPrint("✅ Asset path saved to Project DB: $generatedAssetPath"); } } else { debugPrint("⚠️ Asset generated but could not link to a Project ID."); } } return generatedAssetPath; } // =========================================================================== // 3. ANALYSIS SERVICES // =========================================================================== // [Image Captioning] Future<String?> describeImage({ required String imagePath, String prompt = '<MORE_DETAILED_CAPTION>', }) async { debugPrint("👁️ [Describe] Preparing request..."); final String? base64Image = await _encodeFile(imagePath); if (base64Image == null) return null; // Send encrypted request final response = await _postRequest( fullUrl: _urlDescribe, body: {'image': base64Image, 'prompt': prompt}, ); if (response != null && response.statusCode == 200) { try { // 1. Decode JSON Wrapper to get 'data' key final jsonWrapper = jsonDecode(response.body); if (!jsonWrapper.containsKey('data')) { debugPrint("❌ [Describe] Response missing 'data' key"); return null; } final encryptedData = jsonWrapper['data']; // 2. Decrypt the inner data final String? decryptedBody = await _encryptionService.decrypt( encryptedData, ); if (decryptedBody == null) { debugPrint("❌ [Describe] Decryption failed."); return null; } // 3. Parse the actual result final data = jsonDecode(decryptedBody); if (data['output'] != null) { debugPrint("✅ [Describe] Success: ${data['output']}"); return data['output']; } } catch (e) { debugPrint("❌ [Describe] Error Parsing Response: $e"); } } debugPrint("❌ [Describe] Failed."); return null; } // =========================================================================== // PRIVATE HELPERS (ENCRYPTION AWARE) // =========================================================================== Future<String?> _performImageOperation({ required String fullUrl, required String logPrefix, required Map<String, dynamic> body, required String filenamePrefix, }) async { debugPrint("$logPrefix Sending request to $fullUrl..."); final response = await _postRequest(fullUrl: fullUrl, body: body); if (response != null && response.statusCode == 200) { return _saveImageFromResponse(response, filenamePrefix); } debugPrint( "❌ $logPrefix Failed: ${response?.statusCode ?? 'No Connection'}", ); return null; } // Encrypts the body, wraps it in {"data": ...}, and sends POST Future<http.Response?> _postRequest({ required String fullUrl, required Map<String, dynamic> body, }) async { try { if (fullUrl.isEmpty) { debugPrint("❌ Config Error: URL is missing in .env"); return null; } // 1. Encrypt the PLAINTEXT JSON body final String plaintextJson = jsonEncode(body); final String encryptedString = await _encryptionService.encrypt( plaintextJson, ); // 2. Package the encrypted string into the Flask wrapper format final Map<String, String> encryptedBody = {'data': encryptedString}; return await http.post( Uri.parse(fullUrl), headers: _headers, body: jsonEncode(encryptedBody), ); } catch (e) { debugPrint("❌ Network/Encryption Error ($fullUrl): $e"); return null; } } Future<String?> _saveImageFromResponse( http.Response response, String prefix, ) async { try { // 1. Decode the outer JSON wrapper (Flask returns { "data": "..." }) final jsonWrapper = jsonDecode(response.body); if (!jsonWrapper.containsKey('data')) { debugPrint("❌ [SaveImage] Response missing 'data' key"); // Fallback: If server failed encryption, it might send raw error if (jsonWrapper.containsKey('error')) debugPrint("Server Error: ${jsonWrapper['error']}"); return null; } final encryptedData = jsonWrapper['data']; // 2. Decrypt the inner content final String? decryptedBody = await _encryptionService.decrypt( encryptedData, ); if (decryptedBody == null) { debugPrint("❌ [SaveImage] Decryption failed."); return null; } // 3. Parse the decrypted JSON (Should contain { "image": "BASE64..." }) final data = jsonDecode(decryptedBody); if (data['image'] == null) { debugPrint("❌ [SaveImage] Decrypted data missing 'image' field."); return null; } final Uint8List imageBytes = base64Decode(data['image']); final directory = await getApplicationDocumentsDirectory(); final imagesDirPath = p.join(directory.path, 'generated_images'); final imagesDir = Directory(imagesDirPath); if (!await imagesDir.exists()) await imagesDir.create(recursive: true); final timestamp = DateTime.now().millisecondsSinceEpoch; final safePrefix = prefix .replaceAll(RegExp(r'[^\w\s]'), '') .trim() .replaceAll(' ', '_'); final shortPrefix = safePrefix.length > 20 ? safePrefix.substring(0, 20) : safePrefix; final String filePath = p.join( imagesDir.path, '${shortPrefix}_$timestamp.png', ); await File(filePath).writeAsBytes(imageBytes); debugPrint("✅ Image saved: $filePath"); return filePath; } catch (e) { debugPrint("❌ Error saving or decoding image: $e"); return null; } } Future<void> _logToFile(String filename, String content) async { try { final dir = await getApplicationDocumentsDirectory(); final file = File('${dir.path}/$filename'); await file.writeAsString(content); debugPrint("📄 [LOG] Saved content to: ${file.path}"); } catch (e) { debugPrint("❌ Failed to log to file: $e"); } } Future<String?> _encodeFile(String path) async { final file = File(path); if (!file.existsSync()) { debugPrint("❌ File not found: $path"); return null; } return base64Encode(await file.readAsBytes()); } } |