: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
if (!defined('ABSPATH')) exit;
if (!class_exists('BVWatchCallback')) :
class BVWatchCallback extends BVCallbackBase {
const WATCH_WING_VERSION = 1.4;
public function __construct($callback_handler) {
$this->db = $callback_handler->db;
$this->settings = $callback_handler->settings;
public function getData($table, $limit = 0, $filter = "") {
$rows = $this->db->getTableContent($table, '*', $filter, $limit);
foreach ($rows as $row) {
$data['last_id'] = $last_id;
public function deleteBvDynamicEvents($filter = "") {
$name = BVWPDynSync::$dynsync_table;
return $this->db->deleteBVTableContent($name, $filter);
public function setWatchTime() {
return $this->settings->updateOption('bvwatchtime', time());
public function getFWPrependLog($params) {
$fname = $params['fname'];
$limit = intval($params['limit']);
if (file_exists($fname)) {
$result['exists'] = true;
$tmpfname = $fname."tmp";
if (!@rename($fname, $tmpfname)) {
$result = array('status' => 'Error', 'message' => 'UNABLE_TO_RENAME_LOGFILE');
if (file_exists($tmpfname)) {
$fsize = filesize($tmpfname);
$result["size"] = $fsize;
$result['content'] = file_get_contents($tmpfname);
$handle = fopen($tmpfname, "rb");
$result['content'] = fread($handle, $limit);
$result['incomplete'] = true;
$result['tmpfile'] = unlink($tmpfname);
$result['tmpfile'] = 'DOES_NOT_EXISTS';
public function getDomainInfo($params) {
$domain = $params["domain"];
return array('domainData' => "DOMAIN_NOT_PRESENT");
$whoisServer = $params["host"];
if (empty($whoisServer)) {
return array('domainData' => "WHOIS_SERVER_NOT_PRESENT : $domain");
$conn = @fsockopen($whoisServer, $params["port"], $errno, $errstr, $params["timeout"]);
return array('domainData' => "UNABLE_TO_CONNECT_TO_WHOIS_SERVER : $whoisServer : DOMAIN : $domain : ERROR : $errstr ($errno)");
fwrite($conn, "$domain\r\n");
$response .= fgets($conn, 1024);
return array('domainData' => "ERROR_WHILE_FETCHING_DATA : " . $e->getMessage());
return array('domainData' => $response);
public function process($request) {
$settings = $this->settings;
$params = $request->params;
switch ($request->method) {
if (isset($params['domain_params']) && is_array($params['domain_params'])) {
$resp = array_merge($resp, $this->getDomainInfo($params['domain_params']));
if (array_key_exists('lp', $params)) {
require_once dirname( __FILE__ ) . '/../../protect/lp.php';
$lp_params = $params['lp'];
if (!isset($lp_params['bv_check_table']) || $db->isTablePresent($db->getBVTable(BVProtectLP_V565::TABLE_NAME))) {
$limit = intval($lp_params['limit']);
$filter = $lp_params['filter'];
$db->deleteBVTableContent(BVProtectLP_V565::TABLE_NAME, $lp_params['rmfilter']);
$table = $db->getBVTable(BVProtectLP_V565::TABLE_NAME);
$resp["lplogs"] = $this->getData($table, $limit, $filter);
$resp["lplogs"] = array("status" => "TABLE_NOT_PRESENT");
if (array_key_exists('prelog', $params)) {
$prelog_params = $params['prelog'];
$resp["prelog"] = $this->getFWPrependLog($prelog_params);
if (array_key_exists('fw', $params)) {
require_once dirname( __FILE__ ) . '/../../protect/fw.php';
$fw_params = $params['fw'];
if (!isset($fw_params['bv_check_table']) || $db->isTablePresent($db->getBVTable(BVProtectFW_V565::TABLE_NAME))) {
$limit = intval($fw_params['limit']);
$filter = $fw_params['filter'];
$db->deleteBVTableContent(BVProtectFW_V565::TABLE_NAME, $fw_params['rmfilter']);
$table = $db->getBVTable(BVProtectFW_V565::TABLE_NAME);
$resp["fwlogs"] = $this->getData($table, $limit, $filter);
$resp["fwlogs"] = array("status" => "TABLE_NOT_PRESENT");
if (array_key_exists('dynevent', $params)) {
require_once dirname( __FILE__ ) . '/../../wp_dynsync.php';
$isdynsyncactive = $settings->getOption('bvDynSyncActive');
if ($isdynsyncactive == 'yes') {
if (!isset($params['bv_check_table']) || $db->isTablePresent($db->getBVTable(BVWPDynSync::$dynsync_table))) {
$limit = intval($params['limit']);
$filter = $params['filter'];
$this->deleteBvDynamicEvents($params['rmfilter']);
$table = $db->getBVTable(BVWPDynSync::$dynsync_table);
$data = $this->getData($table, $limit, $filter);
$resp['last_id'] = $data['last_id'];
$resp['events'] = $data['rows'];
$resp['timestamp'] = time();
if (array_key_exists('actlog', $params)) {
require_once dirname( __FILE__ ) . '/../../wp_actlog.php';
$actlog_params = $params['actlog'];
if (!isset($actlog_params['bv_check_table']) || $db->isTablePresent($db->getBVTable(BVWPActLog::$actlog_table))) {
$limit = intval($actlog_params['limit']);
$filter = $actlog_params['filter'];
$db->deleteBVTableContent(BVWPActLog::$actlog_table, $actlog_params['rmfilter']);
$table = $db->getBVTable(BVWPActLog::$actlog_table);
$resp["actlogs"] = $this->getData($table, $limit, $filter);
$resp["actlogs"] = array("status" => "TABLE_NOT_PRESENT");
if (array_key_exists('airlift_stats', $params)) {
$airlift_stats_table = "airlift_stats";
$airlift_stats_params = $params['airlift_stats'];
$table = $db->getBVTable($airlift_stats_table);
if (!isset($airlift_stats_params['bv_check_table']) || $db->isTablePresent($table)) {
$limit = intval($airlift_stats_params['limit']);
$filter = $airlift_stats_params['filter'];
$db->deleteBVTableContent($airlift_stats_table, $airlift_stats_params['rmfilter']);
$resp["airlift_stats"] = $this->getData($table, $limit, $filter);
$resp["airlift_stats"] = array("status" => "TABLE_NOT_PRESENT");
if (array_key_exists('php_error_monitoring', $params)) {
require_once dirname( __FILE__ ) . '/../../php_error_monitoring/monitoring.php';
$php_error_monit_params = $params['php_error_monitoring'];
$table = $db->getBVTable(BVWPPHPErrorMonitoring::ERROR_TABLE);
if (!isset($php_error_monit_params['bv_check_table']) || $db->isTablePresent($table)) {
$limit = intval($php_error_monit_params['limit']);
$filter = $php_error_monit_params['filter'];
$db->deleteBVTableContent(BVWPPHPErrorMonitoring::ERROR_TABLE, $php_error_monit_params['rmfilter']);
$resp["php_error_monitoring"] = $this->getData($table, $limit, $filter);
$resp["php_error_monitoring"] = array("status" => "TABLE_NOT_PRESENT");
$resp["status"] = "done";
require_once dirname( __FILE__ ) . '/../../wp_dynsync.php';
$filter = $params['filter'];
$resp = array("status" => $this->deleteBvDynamicEvents($filter));