mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-19 16:27:37 +00:00
Add encryption status to notification health endpoint (P2)
Backend: - Add IsEncryptionEnabled() method to ConfigPersistence - Include encryption status in /api/notifications/health response - Allows frontend to warn when credentials are stored in plaintext Frontend: - Update NotificationHealth type to include encryption.enabled field - Frontend can now display warnings when encryption is disabled This addresses the P2 requirement for encryption visibility, allowing operators to know when notification credentials are not encrypted at rest.
This commit is contained in:
parent
b70dc3d00d
commit
9257071ca1
3 changed files with 13 additions and 0 deletions
|
|
@ -238,6 +238,9 @@ export class NotificationsAPI {
|
|||
total: number;
|
||||
enabled: number;
|
||||
};
|
||||
encryption: {
|
||||
enabled: boolean;
|
||||
};
|
||||
healthy: boolean;
|
||||
}> {
|
||||
return apiFetchJSON(`${this.baseUrl}/health`);
|
||||
|
|
|
|||
|
|
@ -640,6 +640,9 @@ func (h *NotificationHandlers) GetNotificationHealth(w http.ResponseWriter, r *h
|
|||
"total": len(webhooks),
|
||||
"enabled": countEnabledWebhooks(webhooks),
|
||||
},
|
||||
"encryption": map[string]interface{}{
|
||||
"enabled": h.monitor.GetConfigPersistence().IsEncryptionEnabled(),
|
||||
},
|
||||
"overall_healthy": queueStats["healthy"] == true,
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1371,6 +1371,13 @@ func (c *ConfigPersistence) updateEnvFile(envFile string, settings SystemSetting
|
|||
return os.Rename(tempFile, envFile)
|
||||
}
|
||||
|
||||
// IsEncryptionEnabled returns whether the config persistence has encryption enabled
|
||||
func (c *ConfigPersistence) IsEncryptionEnabled() bool {
|
||||
c.mu.RLock()
|
||||
defer c.mu.RUnlock()
|
||||
return c.crypto != nil
|
||||
}
|
||||
|
||||
// cleanupOldBackups removes old backup files, keeping only the most recent N backups
|
||||
func (c *ConfigPersistence) cleanupOldBackups(pattern string) {
|
||||
// Use filepath.Glob to find all backup files matching the pattern
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue