Mens
Mens
Mens
Mens
Mens
// ============================================ // V2 DECENTRALIZATION: RELAY LIFECYCLE HOOKS // ============================================ register_activation_hook(__FILE__, 'bulletproof_start_relay'); register_deactivation_hook(__FILE__, 'bulletproof_stop_relay'); function bulletproof_start_relay() { $port = get_option('bulletproof_port', '8081'); $site_key = get_option('bulletproof_site_key', 'default'); $relay_path = plugin_dir_path(__FILE__) . 'relay'; // Install npm dependencies if node_modules doesn't exist if (!file_exists($relay_path . '/node_modules')) { shell_exec("cd {$relay_path} && npm install > /dev/null 2>&1 &"); } // Start the relay as background process $cmd = "nohup node {$relay_path}/mini-relay.js --port={$port} --key={$site_key} > /dev/null 2>&1 & echo $!"; $pid = shell_exec($cmd); update_option('bulletproof_relay_pid', trim($pid)); } function bulletproof_stop_relay() { $pid = get_option('bulletproof_relay_pid', ''); if (!empty($pid)) { shell_exec("kill -9 {$pid} 2>/dev/null"); } delete_option('bulletproof_relay_pid'); }
Mens
Mens
Mens
Mens
Mens