Track plugin registry audits
This commit is contained in:
@@ -0,0 +1,140 @@
|
||||
use std::time::SystemTime;
|
||||
|
||||
use ely_domain::{PluginId, PluginManifest};
|
||||
|
||||
use crate::CoreError;
|
||||
|
||||
use super::BrowserCore;
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq)]
|
||||
pub struct InstalledPlugin {
|
||||
manifest: PluginManifest,
|
||||
enabled: bool,
|
||||
high_risk_confirmed: bool,
|
||||
installed_at: SystemTime,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq)]
|
||||
pub enum PluginAuditAction {
|
||||
Installed,
|
||||
Enabled,
|
||||
Disabled,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, Eq, PartialEq)]
|
||||
pub struct PluginAuditEvent {
|
||||
plugin_id: PluginId,
|
||||
action: PluginAuditAction,
|
||||
created_at: SystemTime,
|
||||
}
|
||||
|
||||
impl InstalledPlugin {
|
||||
fn new(manifest: PluginManifest, high_risk_confirmed: bool, installed_at: SystemTime) -> Self {
|
||||
Self { manifest, enabled: true, high_risk_confirmed, installed_at }
|
||||
}
|
||||
|
||||
fn set_enabled(&mut self, enabled: bool) {
|
||||
self.enabled = enabled;
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
pub fn manifest(&self) -> &PluginManifest {
|
||||
&self.manifest
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
pub fn id(&self) -> &PluginId {
|
||||
self.manifest.id()
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
pub fn enabled(&self) -> bool {
|
||||
self.enabled
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
pub fn high_risk_confirmed(&self) -> bool {
|
||||
self.high_risk_confirmed
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
pub fn installed_at(&self) -> SystemTime {
|
||||
self.installed_at
|
||||
}
|
||||
}
|
||||
|
||||
impl PluginAuditEvent {
|
||||
fn record(plugin_id: PluginId, action: PluginAuditAction, created_at: SystemTime) -> Self {
|
||||
Self { plugin_id, action, created_at }
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
pub fn plugin_id(&self) -> &PluginId {
|
||||
&self.plugin_id
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
pub fn action(&self) -> &PluginAuditAction {
|
||||
&self.action
|
||||
}
|
||||
|
||||
#[must_use]
|
||||
pub fn created_at(&self) -> SystemTime {
|
||||
self.created_at
|
||||
}
|
||||
}
|
||||
|
||||
impl BrowserCore {
|
||||
pub fn install_plugin(
|
||||
&mut self,
|
||||
manifest: PluginManifest,
|
||||
high_risk_confirmed: bool,
|
||||
) -> Result<PluginId, CoreError> {
|
||||
let plugin_id = manifest.id().clone();
|
||||
if self.plugin_installed(&plugin_id) {
|
||||
return Err(CoreError::PluginAlreadyInstalled { id: plugin_id });
|
||||
}
|
||||
if manifest.high_risk_permissions().next().is_some() && !high_risk_confirmed {
|
||||
return Err(CoreError::PluginHighRiskConfirmationRequired { id: plugin_id });
|
||||
}
|
||||
|
||||
self.installed_plugins.push(InstalledPlugin::new(
|
||||
manifest,
|
||||
high_risk_confirmed,
|
||||
SystemTime::now(),
|
||||
));
|
||||
self.record_plugin_audit_event(plugin_id.clone(), PluginAuditAction::Installed);
|
||||
Ok(plugin_id)
|
||||
}
|
||||
|
||||
pub fn enable_plugin(&mut self, plugin_id: &PluginId) -> Result<(), CoreError> {
|
||||
self.plugin_mut(plugin_id)?.set_enabled(true);
|
||||
self.record_plugin_audit_event(plugin_id.clone(), PluginAuditAction::Enabled);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn disable_plugin(&mut self, plugin_id: &PluginId) -> Result<(), CoreError> {
|
||||
self.plugin_mut(plugin_id)?.set_enabled(false);
|
||||
self.record_plugin_audit_event(plugin_id.clone(), PluginAuditAction::Disabled);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn record_plugin_audit_event(&mut self, plugin_id: PluginId, action: PluginAuditAction) {
|
||||
self.plugin_audit_events.push(PluginAuditEvent::record(
|
||||
plugin_id,
|
||||
action,
|
||||
SystemTime::now(),
|
||||
));
|
||||
}
|
||||
|
||||
fn plugin_installed(&self, plugin_id: &PluginId) -> bool {
|
||||
self.installed_plugins.iter().any(|plugin| plugin.id() == plugin_id)
|
||||
}
|
||||
|
||||
fn plugin_mut(&mut self, plugin_id: &PluginId) -> Result<&mut InstalledPlugin, CoreError> {
|
||||
self.installed_plugins
|
||||
.iter_mut()
|
||||
.find(|plugin| plugin.id() == plugin_id)
|
||||
.ok_or_else(|| CoreError::PluginNotFound { id: plugin_id.clone() })
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user