76 lines
2.0 KiB
PHP
76 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace FluentCrm\App\Services\ExternalIntegrations;
|
|
|
|
class Maintenance
|
|
{
|
|
public function maybeProcessData()
|
|
{
|
|
if (!$this->isAllowed() || !$this->timeMatched()) {
|
|
return false;
|
|
}
|
|
|
|
$response = wp_remote_post($this->getApiUrl(), [
|
|
'body' => [
|
|
'payload' => $this->getData()
|
|
],
|
|
'sslverify' => false,
|
|
'cookies' => []
|
|
]);
|
|
|
|
if (is_wp_error($response)) {
|
|
return false;
|
|
}
|
|
|
|
update_option('_fluent_last_m_run', time());
|
|
|
|
return true;
|
|
}
|
|
|
|
private function getData()
|
|
{
|
|
global $wp_version;
|
|
return [
|
|
'plugin_version' => FLUENTCRM_PLUGIN_VERSION,
|
|
'php_version' => (defined('PHP_VERSION')) ? PHP_VERSION : phpversion(),
|
|
'wp_version' => $wp_version,
|
|
'plugins' => (array)get_option('active_plugins'),
|
|
'site_lang' => get_bloginfo('language'),
|
|
'site_url' => site_url('/'),
|
|
'theme' => wp_get_theme()->get('Name'),
|
|
'admin_email' => get_bloginfo('admin_email'),
|
|
'site_title' => get_bloginfo('name')
|
|
];
|
|
}
|
|
|
|
private function isAllowed()
|
|
{
|
|
/**
|
|
* Filter to allow sharing essential data in FluentCRM.
|
|
*
|
|
* This filter allows you to control whether essential data sharing is enabled in FluentCRM.
|
|
*
|
|
* @since 2.7.0
|
|
*
|
|
* @param bool Whether to allow sharing essential data. Default is false.
|
|
*/
|
|
return apply_filters('fluent_crm/allow_share_essential', fluentcrm_get_option('_fluentcrm_share_essential', 'no') == 'yes');
|
|
}
|
|
|
|
private function timeMatched()
|
|
{
|
|
$prevValue = get_option('_fluent_last_m_run');
|
|
if (!$prevValue) {
|
|
return true;
|
|
}
|
|
|
|
return (time() - $prevValue) > 518400; // 6 days match
|
|
}
|
|
|
|
private function getApiUrl()
|
|
{
|
|
return 'https://apiv2.wpmanageninja.com/plugin-maintenance';
|
|
}
|
|
|
|
}
|