actionElementId; $api = new KerioWhmcs('whmcsKerioEmail', 'Thurdata', '1.0'); try { $api->login($this->getWhmcsParamByKey('serverhostname'), $this->getWhmcsParamByKey('serverusername'), $this->getWhmcsParamByKey('serverpassword')); $dkimSet = $api->getDkimDnsRecord($maildomain); } catch (KerioApiException $error) { logModuleCall( 'kerioEmail', __FUNCTION__, $error, 'Debug Error', $error->getMessage() ); return ['error' => $error->getMessage()]; } $api->logout(); // format dkim response $dkimArray = explode(PHP_EOL,$dkimSet['detail']); $dkimValue = explode(":",$dkimArray[1]); $this->domainKey = ltrim($dkimValue[1]); $dkimName = explode(":",$dkimArray[0]); $this->dkimName = ltrim($dkimName[1]); // get settings from product configuration $productManager = new ProductManager(); $productManager->loadById($this->getWhmcsParamByKey('pid')); $this->spfConfig = $productManager->get('spf_string'); $this->dmarcConfig = $productManager->get('dmarc_string'); $clientDomains = localAPI('GetClientsDomains', array('clientid' => $this->getWhmcsParamByKey('userid'))); $dns = new DnsHelper(); /** * format model to array */ in_array($maildomain,$clientDomains) ? $selfdomain = 1 : $selfdomain = 0; $dnsRecords = $dns->getRecords($maildomain); $dnsRecords['selfdns'] ? $selfDns = $dnsRecords['selfdns'] : $selfDns = 0; $this->mxthurdata = $this->getWhmcsParamByKey('serverhostname'); if(empty($dnsRecords['mx'])){ $mx = 'unset'; } else { $mx = implode('',$dnsRecords['mx']); } if(empty($dnsRecords['spf'])) { $spf = 'unset'; } else { $spf = implode('',$dnsRecords['spf']); } if(empty($dnsRecords['dmarc'])) { $dmarc = 'unset'; } else { $dmarc = implode('',$dnsRecords['dmarc']); } if(empty($dnsRecords['dkim'])) { $dkim = 'unset'; } else { $dkim = implode('',$dnsRecords['dkim']); } if($this->mxthurdata == $mx){ if($this->spfConfig == $spf && $this->dmarcConfig == $dmarc && in_array($this->domainKey, $dnsRecords['dkim'])){ $dnsok = 'success'; } else { $dnsok = 'warning'; } } else { $dnsok = 'danger'; } $this->data = [ 'editmaildomain' => $maildomain, 'editmxactive' => $mx, 'editspf' => $spf, 'editdmarc' => $dmarc, 'dkimname' => $this->dkimName, 'editdkim' => $dkim, 'editmxthurdata' => $this->mxthurdata, 'editspfthurdata' => $this->spfConfig, 'editdmarcthurdata' => $this->dmarcConfig, 'editdkimthurdata' => $this->domainKey, 'zoneid' => $selfDns, 'dnsok' => $dnsok ]; } /** * @return HtmlDataJsonResponse */ public function update() { logModuleCall( 'kerioEmail', __FUNCTION__, $this->formData, 'Debug Formdata', $this->params ); return (new HtmlDataJsonResponse())->setMessageAndTranslate('settingHasBeenUpdated')->setStatusSuccess(); $fieldToProtection = [ 'editmaildomain', 'mxthurdata', 'spfthurdata', 'dmarcthurdata', 'dkimthurdata', 'dkimname', 'zoneid' ]; foreach ($this->formData as $field => &$value) { $value = in_array($field, $fieldToProtection) ? htmlentities($value) : $value; } $dnsParams = array( 'mxthurdata' => $this->formData['mxthurdata'], 'type' => $this->formData['type'], 'isEnabled' => $this->formData['status'] === 'active' ? true : false, 'manager' => array( 'id' => $this->formData['manager'], 'type' => 'UserPrincipal' ) ); $api = new KerioWhmcs('whmcsKerioEmail', 'Thurdata', '1.0'); try { $api->login($this->getWhmcsParamByKey('serverhostname'), $this->getWhmcsParamByKey('serverusername'), $this->getWhmcsParamByKey('serverpassword')); $domainID = $api->getDomainId($this->getWhmcsParamByKey('domain')); } catch (KerioApiException $error) { logModuleCall( 'kerioEmail', __FUNCTION__, $error, 'Debug Error', $error->getMessage() ); return ['error' => $error->getMessage()]; } try { $result = $api->updateResouce($attr,$this->formData['id']); } catch (KerioApiException $error) { logModuleCall( 'kerioEmail', __FUNCTION__, $error, 'Debug Error', $error->getMessage() ); return ['error' => $error->getMessage()]; } $api->logout(); return (new HtmlDataJsonResponse())->setMessageAndTranslate('settingHasBeenUpdated')->setStatusSuccess(); } /** * @return HtmlDataJsonResponse */ public function updateStatus() { } /** * @return HtmlDataJsonResponse */ public function changePassword() { } }