Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 | /** * Super Admin Settings Controller * Manages system settings, SMTP, and payment gateways */ const BaseController = require('./BaseController'); const { pool } = require('../config/database'); const { logger } = require('../config/logger'); const nodemailer = require('nodemailer'); const multer = require('multer'); const path = require('path'); const fs = require('fs'); const bcrypt = require('bcryptjs'); // Configure multer for file uploads const storage = multer.diskStorage({ destination: function (req, file, cb) { const uploadDir = path.join(__dirname, '../public/uploads/system'); if (!fs.existsSync(uploadDir)) { fs.mkdirSync(uploadDir, { recursive: true }); } cb(null, uploadDir); }, filename: function (req, file, cb) { const ext = path.extname(file.originalname); const prefix = file.fieldname === 'favicon' ? 'favicon' : 'logo'; cb(null, `${prefix}-${Date.now()}${ext}`); } }); const upload = multer({ storage: storage, limits: { fileSize: 2 * 1024 * 1024 }, // 2MB fileFilter: function (req, file, cb) { const allowedTypes = /jpeg|jpg|png|gif|svg|ico/; const extname = allowedTypes.test(path.extname(file.originalname).toLowerCase()); const mimetype = allowedTypes.test(file.mimetype) || file.mimetype === 'image/x-icon' || file.mimetype === 'image/vnd.microsoft.icon'; if (extname || mimetype) { return cb(null, true); } cb(new Error('Only image files are allowed')); } }).fields([ { name: 'system_logo', maxCount: 1 }, { name: 'favicon', maxCount: 1 } ]); class SuperAdminSettingsController extends BaseController { /** * Get super admin profile * GET /api/superadmin/profile */ static async getProfile(req, res) { try { const adminId = req.user.id; const [admins] = await pool.execute( 'SELECT id, email, name FROM super_admins WHERE id = ?', [adminId] ); if (admins.length === 0) { return res.status(404).json({ success: false, message: 'Super admin not found' }); } return res.json({ success: true, data: admins[0] }); } catch (error) { logger.error('Error getting super admin profile', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading profile' }); } } /** * Update super admin profile * PUT /api/superadmin/profile */ static async updateProfile(req, res) { try { const adminId = req.user.id; const { email, current_password, new_password } = req.body; // Verify current password if changing password or email if (new_password || email) { const [admins] = await pool.execute( 'SELECT password FROM super_admins WHERE id = ?', [adminId] ); if (admins.length === 0) { return res.status(404).json({ success: false, message: 'Super admin not found' }); } // If changing password, verify current password if (new_password && !current_password) { return res.status(400).json({ success: false, message: 'Current password is required to set a new password' }); } if (current_password) { const isValidPassword = await bcrypt.compare(current_password, admins[0].password); if (!isValidPassword) { return res.status(401).json({ success: false, message: 'Invalid current password' }); } } } const updateFields = []; const values = []; if (email) { // Check if email is taken by another superadmin const [existing] = await pool.execute( 'SELECT id FROM super_admins WHERE email = ? AND id != ?', [email, adminId] ); if (existing.length > 0) { return res.status(400).json({ success: false, message: 'Email already in use' }); } updateFields.push('email = ?'); values.push(email); } if (new_password) { const hashedPassword = await bcrypt.hash(new_password, 10); updateFields.push('password = ?'); values.push(hashedPassword); } if (updateFields.length === 0) { return res.status(400).json({ success: false, message: 'No changes provided' }); } values.push(adminId); await pool.execute( `UPDATE super_admins SET ${updateFields.join(', ')} WHERE id = ?`, values ); logger.info('Super admin profile updated', { adminId }); return res.json({ success: true, message: 'Profile updated successfully' }); } catch (error) { logger.error('Error updating super admin profile', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating profile' }); } } /** * Get system settings * GET /api/superadmin/settings/system */ static async getSystemSettings(req, res) { try { const [settings] = await pool.execute( 'SELECT * FROM system_settings WHERE id = 1' ); return res.json({ success: true, data: settings[0] || { grace_period_days: 7, payment_reminder_days: '7,3,2,1', overdue_reminder_interval_days: 2, auto_suspend_enabled: true } }); } catch (error) { logger.error('Error getting system settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading system settings' }); } } /** * Update system settings * PUT /api/superadmin/settings/system */ static async updateSystemSettings(req, res) { try { const { grace_period_days, payment_reminder_days, overdue_reminder_interval_days, auto_suspend_enabled } = req.body; // Validation if (grace_period_days !== undefined && (grace_period_days < 0 || grace_period_days > 90)) { return res.status(400).json({ success: false, message: 'Grace period must be between 0 and 90 days' }); } const updateFields = []; const values = []; if (grace_period_days !== undefined) { updateFields.push('grace_period_days = ?'); values.push(grace_period_days); } if (payment_reminder_days !== undefined) { updateFields.push('payment_reminder_days = ?'); values.push(payment_reminder_days); } if (overdue_reminder_interval_days !== undefined) { updateFields.push('overdue_reminder_interval_days = ?'); values.push(overdue_reminder_interval_days); } if (auto_suspend_enabled !== undefined) { updateFields.push('auto_suspend_enabled = ?'); values.push(auto_suspend_enabled); } if (updateFields.length === 0) { return res.status(400).json({ success: false, message: 'No fields to update' }); } await pool.execute( `INSERT INTO system_settings (id, ${updateFields.map((_, i) => updateFields[i].split(' = ')[0]).join(', ')}) VALUES (1, ${values.map(() => '?').join(', ')}) ON DUPLICATE KEY UPDATE ${updateFields.join(', ')}`, [...values, ...values] ); logger.info('System settings updated'); return res.json({ success: true, message: 'System settings updated successfully' }); } catch (error) { logger.error('Error updating system settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating system settings' }); } } /** * Get SMTP settings * GET /api/superadmin/settings/smtp */ static async getSMTPSettings(req, res) { try { const [settings] = await pool.execute( 'SELECT * FROM smtp_settings WHERE id = 1' ); // Don't send password to client if (settings[0]) { delete settings[0].smtp_password; } return res.json({ success: true, data: settings[0] || {} }); } catch (error) { logger.error('Error getting SMTP settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading SMTP settings' }); } } /** * Update SMTP settings * PUT /api/superadmin/settings/smtp */ static async updateSMTPSettings(req, res) { try { const { smtp_host, smtp_port, smtp_user, smtp_password, smtp_from_email, smtp_from_name, smtp_secure, enabled } = req.body; // Validation if (!smtp_host || !smtp_port || !smtp_user || !smtp_from_email) { return res.status(400).json({ success: false, message: 'Host, port, user, and from email are required' }); } const updateFields = []; const values = []; updateFields.push('smtp_host = ?', 'smtp_port = ?', 'smtp_user = ?', 'smtp_from_email = ?', 'smtp_from_name = ?', 'smtp_secure = ?'); values.push(smtp_host, smtp_port, smtp_user, smtp_from_email, smtp_from_name || 'System', smtp_secure !== false); if (smtp_password) { updateFields.push('smtp_password = ?'); values.push(smtp_password); } if (enabled !== undefined) { updateFields.push('enabled = ?'); values.push(enabled); } await pool.execute( `INSERT INTO smtp_settings (id, ${updateFields.map((_, i) => updateFields[i].split(' = ')[0]).join(', ')}) VALUES (1, ${values.map(() => '?').join(', ')}) ON DUPLICATE KEY UPDATE ${updateFields.join(', ')}`, [...values, ...values] ); logger.info('SMTP settings updated'); return res.json({ success: true, message: 'SMTP settings updated successfully' }); } catch (error) { logger.error('Error updating SMTP settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating SMTP settings' }); } } /** * Test SMTP connection * POST /api/superadmin/settings/smtp/test */ static async testSMTPConnection(req, res) { try { const { test_email } = req.body; if (!test_email) { return res.status(400).json({ success: false, message: 'Test email address is required' }); } const [settings] = await pool.execute( 'SELECT * FROM smtp_settings WHERE id = 1' ); if (!settings[0] || !settings[0].smtp_host) { return res.status(400).json({ success: false, message: 'SMTP settings not configured' }); } const config = settings[0]; const transporter = nodemailer.createTransport({ host: config.smtp_host, port: config.smtp_port, secure: config.smtp_secure, auth: { user: config.smtp_user, pass: config.smtp_password } }); await transporter.verify(); await transporter.sendMail({ from: `"${config.smtp_from_name}" <${config.smtp_from_email}>`, to: test_email, subject: 'SMTP Test Email', text: 'This is a test email from your SaaS platform. SMTP is configured correctly!', html: '<h1>SMTP Test Email</h1><p>This is a test email from your SaaS platform. SMTP is configured correctly!</p>' }); logger.info('SMTP test email sent', { test_email }); return res.json({ success: true, message: 'Test email sent successfully' }); } catch (error) { logger.error('SMTP test failed', { error: error.message }); return res.status(500).json({ success: false, message: `SMTP test failed: ${error.message}` }); } } /** * Get payment gateway settings * GET /api/superadmin/settings/payment-gateways */ static async getPaymentGateways(req, res) { try { const [gateways] = await pool.execute( 'SELECT * FROM payment_gateway_settings' ); // Mask sensitive data const maskedGateways = gateways.map(gw => ({ ...gw, stripe_secret_key: gw.stripe_secret_key ? '***' : null, stripe_webhook_secret: gw.stripe_webhook_secret ? '***' : null, paypal_client_secret: gw.paypal_client_secret ? '***' : null })); return res.json({ success: true, data: maskedGateways }); } catch (error) { logger.error('Error getting payment gateways', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading payment gateways' }); } } /** * Update payment gateway settings * PUT /api/superadmin/settings/payment-gateways/:gateway */ static async updatePaymentGateway(req, res) { try { const { gateway } = req.params; const updates = req.body; if (!['stripe', 'paypal'].includes(gateway)) { return res.status(400).json({ success: false, message: 'Invalid gateway. Must be stripe or paypal' }); } const updateFields = []; const values = []; if (gateway === 'stripe') { if (updates.stripe_secret_key) { updateFields.push('stripe_secret_key = ?'); values.push(updates.stripe_secret_key); } if (updates.stripe_publishable_key) { updateFields.push('stripe_publishable_key = ?'); values.push(updates.stripe_publishable_key); } if (updates.stripe_webhook_secret) { updateFields.push('stripe_webhook_secret = ?'); values.push(updates.stripe_webhook_secret); } } else if (gateway === 'paypal') { if (updates.paypal_client_id) { updateFields.push('paypal_client_id = ?'); values.push(updates.paypal_client_id); } if (updates.paypal_client_secret) { updateFields.push('paypal_client_secret = ?'); values.push(updates.paypal_client_secret); } if (updates.paypal_mode) { updateFields.push('paypal_mode = ?'); values.push(updates.paypal_mode); } } if (updates.enabled !== undefined) { updateFields.push('enabled = ?'); values.push(updates.enabled); } if (updateFields.length === 0) { return res.status(400).json({ success: false, message: 'No fields to update' }); } values.push(gateway); await pool.execute( `INSERT INTO payment_gateway_settings (gateway_name, ${updateFields.map((_, i) => updateFields[i].split(' = ')[0]).join(', ')}) VALUES (?, ${values.slice(0, -1).map(() => '?').join(', ')}) ON DUPLICATE KEY UPDATE ${updateFields.join(', ')}`, [gateway, ...values.slice(0, -1), ...values.slice(0, -1)] ); logger.info('Payment gateway updated', { gateway }); return res.json({ success: true, message: 'Payment gateway updated successfully' }); } catch (error) { logger.error('Error updating payment gateway', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating payment gateway' }); } } /** * Get system branding settings * GET /api/superadmin/system-branding */ static async getSystemBranding(req, res) { try { // Get from system_settings_kv const [settings] = await pool.execute( `SELECT setting_key, setting_value FROM system_settings_kv WHERE setting_key IN ('system_name', 'system_logo', 'favicon', 'support_email')` ); const data = {}; settings.forEach(s => { data[s.setting_key] = s.setting_value; }); // Also get from landing_page_settings as fallback const [landing] = await pool.execute( 'SELECT company_name, company_logo, contact_email FROM landing_page_settings WHERE id = 1' ); if (landing[0]) { if (!data.system_name) data.system_name = landing[0].company_name; if (!data.system_logo) data.system_logo = landing[0].company_logo; if (!data.support_email) data.support_email = landing[0].contact_email; } return res.json({ success: true, data: { system_name: data.system_name || 'Misayan SaaS', system_logo: data.system_logo || null, favicon: data.favicon || null, support_email: data.support_email || '' } }); } catch (error) { logger.error('Error getting system branding', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading system branding' }); } } /** * Update system branding settings * PUT /api/superadmin/system-branding */ static async updateSystemBranding(req, res) { upload(req, res, async function(err) { if (err) { logger.error('File upload error', { error: err.message }); return res.status(400).json({ success: false, message: err.message }); } try { const { system_name, support_email, remove_logo, remove_favicon } = req.body; // Update system name if (system_name) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('system_name', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [system_name, system_name] ); // Also update landing page company name await pool.execute( 'UPDATE landing_page_settings SET company_name = ? WHERE id = 1', [system_name] ); } // Update support email if (support_email !== undefined) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('support_email', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [support_email, support_email] ); // Also update landing page contact email await pool.execute( 'UPDATE landing_page_settings SET contact_email = ? WHERE id = 1', [support_email] ); } // Handle logo upload if (req.files && req.files.system_logo) { const logoFile = req.files.system_logo[0]; const logoUrl = `/uploads/system/${logoFile.filename}`; // Delete old logo if exists const [oldLogo] = await pool.execute( "SELECT setting_value FROM system_settings_kv WHERE setting_key = 'system_logo'" ); if (oldLogo[0] && oldLogo[0].setting_value) { const oldPath = path.join(__dirname, '../public', oldLogo[0].setting_value); if (fs.existsSync(oldPath)) { fs.unlinkSync(oldPath); } } await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('system_logo', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [logoUrl, logoUrl] ); // Also update landing page await pool.execute( 'UPDATE landing_page_settings SET company_logo = ? WHERE id = 1', [logoUrl] ); } // Handle favicon upload if (req.files && req.files.favicon) { const faviconFile = req.files.favicon[0]; const faviconUrl = `/uploads/system/${faviconFile.filename}`; // Delete old favicon if exists const [oldFavicon] = await pool.execute( "SELECT setting_value FROM system_settings_kv WHERE setting_key = 'favicon'" ); if (oldFavicon[0] && oldFavicon[0].setting_value) { const oldPath = path.join(__dirname, '../public', oldFavicon[0].setting_value); if (fs.existsSync(oldPath)) { fs.unlinkSync(oldPath); } } await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('favicon', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [faviconUrl, faviconUrl] ); } // Handle logo removal if (remove_logo === 'true') { const [oldLogo] = await pool.execute( "SELECT setting_value FROM system_settings_kv WHERE setting_key = 'system_logo'" ); if (oldLogo[0] && oldLogo[0].setting_value) { const oldPath = path.join(__dirname, '../public', oldLogo[0].setting_value); if (fs.existsSync(oldPath)) { fs.unlinkSync(oldPath); } } await pool.execute( "DELETE FROM system_settings_kv WHERE setting_key = 'system_logo'" ); await pool.execute( 'UPDATE landing_page_settings SET company_logo = NULL WHERE id = 1' ); } // Handle favicon removal if (remove_favicon === 'true') { const [oldFavicon] = await pool.execute( "SELECT setting_value FROM system_settings_kv WHERE setting_key = 'favicon'" ); if (oldFavicon[0] && oldFavicon[0].setting_value) { const oldPath = path.join(__dirname, '../public', oldFavicon[0].setting_value); if (fs.existsSync(oldPath)) { fs.unlinkSync(oldPath); } } await pool.execute( "DELETE FROM system_settings_kv WHERE setting_key = 'favicon'" ); } logger.info('System branding updated'); return res.json({ success: true, message: 'System branding updated successfully' }); } catch (error) { logger.error('Error updating system branding', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating system branding' }); } }); } /** * Get timezone settings * GET /api/superadmin/settings/timezone */ static async getTimezoneSettings(req, res) { try { const [settings] = await pool.execute( `SELECT setting_key, setting_value FROM system_settings_kv WHERE setting_key IN ('system_timezone', 'date_format', 'time_format', 'clock_enabled')` ); const data = {}; settings.forEach(s => { data[s.setting_key] = s.setting_value; }); return res.json({ success: true, data: { timezone: data.system_timezone || 'UTC', date_format: data.date_format || 'YYYY-MM-DD', time_format: data.time_format || '24h', clock_enabled: data.clock_enabled === 'true' } }); } catch (error) { logger.error('Error getting timezone settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading timezone settings' }); } } /** * Update timezone settings * PUT /api/superadmin/settings/timezone */ static async updateTimezoneSettings(req, res) { try { const { timezone, date_format, time_format, clock_enabled } = req.body; // Update timezone if (timezone) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('system_timezone', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [timezone, timezone] ); } // Update date format if (date_format) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('date_format', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [date_format, date_format] ); } // Update time format if (time_format) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('time_format', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [time_format, time_format] ); } // Update clock enabled if (clock_enabled !== undefined) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('clock_enabled', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [String(clock_enabled), String(clock_enabled)] ); } logger.info('Timezone settings updated'); return res.json({ success: true, message: 'Timezone settings updated successfully' }); } catch (error) { logger.error('Error updating timezone settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating timezone settings' }); } } /** * Get Meta/Facebook App settings for WhatsApp Cloud API * GET /api/superadmin/settings/meta */ static async getMetaSettings(req, res) { try { const [settings] = await pool.execute( `SELECT setting_key, setting_value FROM system_settings_kv WHERE setting_key IN ('meta_app_id', 'meta_app_secret', 'meta_config_id', 'meta_business_id', 'meta_embedded_signup_enabled')` ); const settingsObj = {}; settings.forEach(row => { // Don't send app secret to client (only indicate if it's set) if (row.setting_key === 'meta_app_secret') { settingsObj[row.setting_key] = row.setting_value ? '********' : ''; } else { settingsObj[row.setting_key] = row.setting_value; } }); logger.info('Meta settings retrieved', { settingsCount: settings.length, embeddedSignupEnabled: settingsObj.meta_embedded_signup_enabled }); return res.json({ success: true, data: settingsObj }); } catch (error) { logger.error('Error getting Meta settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading Meta settings' }); } } /** * Get Meta App configuration status (public route for tenants) * GET /api/superadmin/settings/meta/status */ static async getMetaStatus(req, res) { try { const [settings] = await pool.execute( `SELECT setting_key, setting_value FROM system_settings_kv WHERE setting_key IN ('meta_app_id', 'meta_config_id', 'meta_embedded_signup_enabled')` ); const settingsObj = {}; settings.forEach(row => { settingsObj[row.setting_key] = row.setting_value; }); // Check if Meta App is properly configured const isConfigured = !!( settingsObj.meta_app_id && settingsObj.meta_config_id && settingsObj.meta_embedded_signup_enabled === '1' ); return res.json({ success: true, data: { meta_app_id: settingsObj.meta_app_id || null, meta_config_id: settingsObj.meta_config_id || null, meta_embedded_signup_enabled: settingsObj.meta_embedded_signup_enabled === '1', is_configured: isConfigured } }); } catch (error) { logger.error('Error getting Meta status', { error: error.message }); return res.status(500).json({ success: false, message: 'Error checking Meta configuration status' }); } } /** * Update Meta/Facebook App settings * PUT /api/superadmin/settings/meta */ static async updateMetaSettings(req, res) { try { const { meta_app_id, meta_app_secret, meta_config_id, meta_business_id, meta_embedded_signup_enabled } = req.body; // Update Meta App ID if (meta_app_id !== undefined) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('meta_app_id', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [meta_app_id, meta_app_id] ); } // Update Meta App Secret (only if provided and not masked) if (meta_app_secret && meta_app_secret !== '********') { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('meta_app_secret', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [meta_app_secret, meta_app_secret] ); } // Update Meta Config ID (for Embedded Signup) if (meta_config_id !== undefined) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('meta_config_id', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [meta_config_id, meta_config_id] ); } // Update Meta Business ID if (meta_business_id !== undefined) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('meta_business_id', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [meta_business_id, meta_business_id] ); } // Update Embedded Signup enabled flag if (meta_embedded_signup_enabled !== undefined) { const enabledValue = meta_embedded_signup_enabled === true || meta_embedded_signup_enabled === 'true' || meta_embedded_signup_enabled === '1' ? '1' : '0'; await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('meta_embedded_signup_enabled', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [enabledValue, enabledValue] ); } logger.info('Meta settings updated'); return res.json({ success: true, message: 'Meta settings updated successfully' }); } catch (error) { logger.error('Error updating Meta settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating Meta settings' }); } } static async getOmnichannelSettings(req, res) { try { const keys = [ 'omnichannel_instagram_app_id', 'omnichannel_instagram_app_secret', 'omnichannel_instagram_config_id', 'omnichannel_instagram_embedded_enabled', 'omnichannel_messenger_app_id', 'omnichannel_messenger_app_secret', 'omnichannel_messenger_config_id', 'omnichannel_messenger_embedded_enabled', 'omnichannel_telegram_bot_name', 'omnichannel_telegram_enabled' ]; const [settings] = await pool.execute( `SELECT setting_key, setting_value FROM system_settings_kv WHERE setting_key IN (${keys.map(() => '?').join(', ')})`, keys ); const settingsObj = {}; settings.forEach(row => { if (row.setting_key.endsWith('_app_secret')) { settingsObj[row.setting_key] = row.setting_value ? '********' : ''; } else { settingsObj[row.setting_key] = row.setting_value; } }); return res.json({ success: true, data: settingsObj }); } catch (error) { logger.error('Error getting omnichannel settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading omnichannel settings' }); } } static async updateOmnichannelSettings(req, res) { try { const { omnichannel_instagram_app_id, omnichannel_instagram_app_secret, omnichannel_instagram_config_id, omnichannel_instagram_embedded_enabled, omnichannel_messenger_app_id, omnichannel_messenger_app_secret, omnichannel_messenger_config_id, omnichannel_messenger_embedded_enabled, omnichannel_telegram_bot_name, omnichannel_telegram_enabled } = req.body; const updates = [ ['omnichannel_instagram_app_id', omnichannel_instagram_app_id], ['omnichannel_instagram_config_id', omnichannel_instagram_config_id], ['omnichannel_messenger_app_id', omnichannel_messenger_app_id], ['omnichannel_messenger_config_id', omnichannel_messenger_config_id], ['omnichannel_telegram_bot_name', omnichannel_telegram_bot_name] ]; for (const [key, value] of updates) { if (value !== undefined) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES (?, ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [key, value, value] ); } } if (omnichannel_instagram_app_secret && omnichannel_instagram_app_secret !== '********') { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('omnichannel_instagram_app_secret', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [omnichannel_instagram_app_secret, omnichannel_instagram_app_secret] ); } if (omnichannel_messenger_app_secret && omnichannel_messenger_app_secret !== '********') { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('omnichannel_messenger_app_secret', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [omnichannel_messenger_app_secret, omnichannel_messenger_app_secret] ); } if (omnichannel_instagram_embedded_enabled !== undefined) { const enabledValue = omnichannel_instagram_embedded_enabled === true || omnichannel_instagram_embedded_enabled === 'true' || omnichannel_instagram_embedded_enabled === '1' ? '1' : '0'; await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('omnichannel_instagram_embedded_enabled', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [enabledValue, enabledValue] ); } if (omnichannel_messenger_embedded_enabled !== undefined) { const enabledValue = omnichannel_messenger_embedded_enabled === true || omnichannel_messenger_embedded_enabled === 'true' || omnichannel_messenger_embedded_enabled === '1' ? '1' : '0'; await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('omnichannel_messenger_embedded_enabled', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [enabledValue, enabledValue] ); } if (omnichannel_telegram_enabled !== undefined) { const enabledValue = omnichannel_telegram_enabled === true || omnichannel_telegram_enabled === 'true' || omnichannel_telegram_enabled === '1' ? '1' : '0'; await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('omnichannel_telegram_enabled', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [enabledValue, enabledValue] ); } logger.info('Omnichannel settings updated'); return res.json({ success: true, message: 'Omnichannel settings updated successfully' }); } catch (error) { logger.error('Error updating omnichannel settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating omnichannel settings' }); } } /** * Test Meta App connection * POST /api/superadmin/settings/meta/test */ static async testMetaConnection(req, res) { try { const [settings] = await pool.execute( `SELECT setting_key, setting_value FROM system_settings_kv WHERE setting_key IN ('meta_app_id', 'meta_app_secret')` ); const settingsObj = {}; settings.forEach(row => { settingsObj[row.setting_key] = row.setting_value; }); if (!settingsObj.meta_app_id || !settingsObj.meta_app_secret) { return res.status(400).json({ success: false, message: 'Meta App ID and App Secret are required' }); } // Test the connection by making a request to Meta Graph API const axios = require('axios'); try { const response = await axios.get( `https://graph.facebook.com/v18.0/${settingsObj.meta_app_id}`, { params: { fields: 'name,category', access_token: `${settingsObj.meta_app_id}|${settingsObj.meta_app_secret}` } } ); return res.json({ success: true, message: 'Meta App connection successful', data: { app_name: response.data.name, app_category: response.data.category } }); } catch (apiError) { logger.error('Meta API test failed', { error: apiError.message }); return res.status(400).json({ success: false, message: 'Failed to connect to Meta API. Please check your credentials.', error: apiError.response?.data?.error?.message || apiError.message }); } } catch (error) { logger.error('Error testing Meta connection', { error: error.message }); return res.status(500).json({ success: false, message: 'Error testing Meta connection' }); } } /** * Get superadmin contact settings (WhatsApp for payment support) * GET /api/superadmin/settings/contact */ static async getContactSettings(req, res) { try { const [settings] = await pool.execute( `SELECT setting_key, setting_value FROM system_settings_kv WHERE setting_key IN ('superadmin_whatsapp_phone', 'superadmin_support_email')` ); const settingsObj = {}; settings.forEach(row => { settingsObj[row.setting_key] = row.setting_value; }); return res.json({ success: true, data: { whatsapp_phone: settingsObj.superadmin_whatsapp_phone || '', support_email: settingsObj.superadmin_support_email || '' } }); } catch (error) { logger.error('Error getting contact settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading contact settings' }); } } /** * Update superadmin contact settings * PUT /api/superadmin/settings/contact */ static async updateContactSettings(req, res) { try { const { whatsapp_phone, support_email } = req.body; // Update WhatsApp phone if (whatsapp_phone !== undefined) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('superadmin_whatsapp_phone', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [whatsapp_phone, whatsapp_phone] ); } // Update support email if (support_email !== undefined) { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('superadmin_support_email', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [support_email, support_email] ); } logger.info('Contact settings updated'); return res.json({ success: true, message: 'Contact settings updated successfully' }); } catch (error) { logger.error('Error updating contact settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating contact settings' }); } } /** * Get contact settings (public route for registration) * GET /api/public/contact-settings */ static async getPublicContactSettings(req, res) { try { const [settings] = await pool.execute( `SELECT setting_value FROM system_settings_kv WHERE setting_key = 'superadmin_whatsapp_phone'` ); return res.json({ success: true, data: { whatsapp_phone: settings[0]?.setting_value || '' } }); } catch (error) { logger.error('Error getting public contact settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading contact settings' }); } } /** * Get Evolution API settings * GET /api/superadmin/settings/evolution */ static async getEvolutionSettings(req, res) { try { const [settings] = await pool.execute( `SELECT setting_key, setting_value FROM system_settings_kv WHERE setting_key IN ('evolution_enabled', 'evolution_api_url', 'evolution_api_key', 'evolution_webhook_base_url')` ); const settingsObj = {}; settings.forEach(row => { // Don't send API key to client (only indicate if it's set) if (row.setting_key === 'evolution_api_key') { settingsObj[row.setting_key] = row.setting_value ? '********' : ''; } else { settingsObj[row.setting_key] = row.setting_value; } }); logger.info('Evolution API settings retrieved', { settingsCount: settings.length, evolutionEnabled: settingsObj.evolution_enabled }); return res.json({ success: true, data: settingsObj }); } catch (error) { logger.error('Error getting Evolution API settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error loading Evolution API settings' }); } } /** * Test Evolution API connection * POST /api/superadmin/settings/evolution/test */ static async testEvolutionConnection(req, res) { try { const { evolution_api_url, evolution_api_key } = req.body; if (!evolution_api_url || !evolution_api_key) { return res.status(400).json({ success: false, message: 'API URL and API Key are required' }); } // Test connection to Evolution API const axios = require('axios'); // Remove trailing slash from URL const cleanUrl = evolution_api_url.replace(/\/$/, ''); try { // Try to fetch instances list - this is a reliable endpoint const response = await axios.get(`${cleanUrl}/instance/fetchInstances`, { headers: { 'apikey': evolution_api_key, 'Content-Type': 'application/json' }, timeout: 10000 }); logger.info('Evolution API connection test successful', { url: cleanUrl, status: response.status, instanceCount: Array.isArray(response.data) ? response.data.length : 0 }); return res.json({ success: true, message: 'Connection successful', data: { status: 'Online', version: response.data?.version || 'Latest', instanceCount: Array.isArray(response.data) ? response.data.length : 0 } }); } catch (apiError) { logger.error('Evolution API connection test failed', { url: cleanUrl, error: apiError.message, status: apiError.response?.status, statusText: apiError.response?.statusText, responseData: apiError.response?.data }); let errorMessage = 'Failed to connect to Evolution API'; if (apiError.code === 'ECONNREFUSED') { errorMessage = 'Connection refused. Please check if Evolution API is running and the URL is correct.'; } else if (apiError.code === 'ETIMEDOUT' || apiError.code === 'ENOTFOUND') { errorMessage = 'Connection timeout. Please check the URL and network connectivity.'; } else if (apiError.response?.status === 401 || apiError.response?.status === 403) { errorMessage = 'Authentication failed. Please check your API Key.'; } else if (apiError.response?.status === 404) { errorMessage = 'Evolution API endpoint not found. Please check the URL.'; } return res.status(400).json({ success: false, message: errorMessage, error: apiError.response?.data?.message || apiError.message, details: { code: apiError.code, status: apiError.response?.status } }); } } catch (error) { logger.error('Error testing Evolution API connection', { error: error.message }); return res.status(500).json({ success: false, message: 'Error testing connection' }); } } /** * Update Evolution API settings * PUT /api/superadmin/settings/evolution */ static async updateEvolutionSettings(req, res) { try { const { evolution_enabled, evolution_api_url, evolution_api_key, evolution_webhook_base_url } = req.body; // Update Evolution enabled flag if (evolution_enabled !== undefined) { const enabledValue = evolution_enabled === true || evolution_enabled === 'true' || evolution_enabled === '1' ? '1' : '0'; await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('evolution_enabled', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [enabledValue, enabledValue] ); } // Update Evolution API URL if (evolution_api_url !== undefined) { // Remove trailing slash if present const cleanUrl = evolution_api_url.replace(/\/$/, ''); await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('evolution_api_url', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [cleanUrl, cleanUrl] ); } // Update Evolution API Key (only if provided and not masked) if (evolution_api_key && evolution_api_key !== '********') { await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('evolution_api_key', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [evolution_api_key, evolution_api_key] ); } // Update Evolution Webhook Base URL if (evolution_webhook_base_url !== undefined) { // Remove trailing slash if present const cleanUrl = evolution_webhook_base_url.replace(/\/$/, ''); await pool.execute( `INSERT INTO system_settings_kv (setting_key, setting_value) VALUES ('evolution_webhook_base_url', ?) ON DUPLICATE KEY UPDATE setting_value = ?`, [cleanUrl, cleanUrl] ); } logger.info('Evolution API settings updated'); return res.json({ success: true, message: 'Evolution API settings updated successfully' }); } catch (error) { logger.error('Error updating Evolution API settings', { error: error.message }); return res.status(500).json({ success: false, message: 'Error updating Evolution API settings' }); } } } module.exports = SuperAdminSettingsController; |