Files
ProxyPanel/app/Components/Namesilo.php
Bretton 66b0f7a561 1.2 版本 界面优化 与 BUG修复
1. 修复节点信息获取错误的问题
2. 优化首页公告显示
3. 修复回复工单时按回车导致报错的问题
4. 修改用户编辑与添加排版
5. 修复潜在的IE兼容问题
6. 统一Table元素格式
7. 优化返利界面
8. 添加了封禁时间倒计时
9. 对非付费用户,首页添加提示购买宣传语
2020-08-05 03:20:19 +08:00

106 lines
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Components;
use Exception;
use Log;
use LSS\XML2Array;
class Namesilo
{
protected static $host;
protected static $systemConfig;
function __construct()
{
self::$host = 'https://www.namesilo.com/api/';
self::$systemConfig = Helpers::systemConfig();
}
// 列出账号下所有域名
public function listDomains()
{
return $this->send('listDomains');
}
// 列出指定域名的所有DNS记录
public function dnsListRecords($domain)
{
$query = [
'domain' => $domain
];
return $this->send('dnsListRecords', $query);
}
// 为指定域名添加DNS记录
public function dnsAddRecord($domain, $host, $value, $type = 'A', $ttl = 7207)
{
$query = [
'domain' => $domain,
'rrtype' => $type,
'rrhost' => $host,
'rrvalue' => $value,
'rrttl' => $ttl
];
return $this->send('dnsAddRecord', $query);
}
// 更新DNS记录
public function dnsUpdateRecord($domain, $id, $host, $value, $ttl = 7207)
{
$query = [
'domain' => $domain,
'rrid' => $id,
'rrhost' => $host,
'rrvalue' => $value,
'rrttl' => $ttl
];
return $this->send('dnsUpdateRecord', $query);
}
// 删除DNS记录
public function dnsDeleteRecord($domain, $id)
{
$data = [
'domain' => $domain,
'rrid' => $id
];
return $this->send('dnsDeleteRecord', $data);
}
// 发送请求
private function send($operation, $data = [])
{
$params = [
'version' => 1,
'type' => 'xml',
'key' => self::$systemConfig['namesilo_key']
];
$query = array_merge($params, $data);
$content = '请求操作:['.$operation.'] --- 请求数据:['.http_build_query($query).']';
try{
$result = Curl::send(self::$host.$operation.'?'.http_build_query($query));
$result = XML2Array::createArray($result);
// 出错
if(empty($result['namesilo']) || $result['namesilo']['reply']['code'] != 300 || $result['namesilo']['reply']['detail'] != 'success'){
Helpers::addEmailLog(self::$systemConfig['crash_warning_email'], '[Namesilo API] - ['.$operation.']', $content, 0, $result['namesilo']['reply']['detail']);
}else{
Helpers::addEmailLog(self::$systemConfig['crash_warning_email'], '[Namesilo API] - ['.$operation.']', $content, 1, $result['namesilo']['reply']['detail']);
}
return $result['namesilo']['reply'];
} catch(Exception $e){
Log::error('CURL请求失败'.$e->getMessage().' --- '.$e->getLine());
Helpers::addEmailLog(self::$systemConfig['crash_warning_email'], '[Namesilo API] - ['.$operation.']', $content, 0, $e->getMessage());
return FALSE;
}
}
}