Namesilo.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?php
  2. namespace App\Components;
  3. use GuzzleHttp\Client;
  4. use Log;
  5. use LSS\XML2Array;
  6. class Namesilo {
  7. protected static $host;
  8. protected static $systemConfig;
  9. // Todo Debug测试
  10. public function __construct() {
  11. self::$host = 'https://www.namesilo.com/api/';
  12. self::$systemConfig = Helpers::systemConfig();
  13. }
  14. // 列出账号下所有域名
  15. public function listDomains() {
  16. return $this->send('listDomains');
  17. }
  18. // 发送请求
  19. private function send($operation, $data = []) {
  20. $params = [
  21. 'version' => 1,
  22. 'type' => 'xml',
  23. 'key' => self::$systemConfig['namesilo_key']
  24. ];
  25. $query = array_merge($params, $data);
  26. $content = '请求操作:['.$operation.'] --- 请求数据:['.http_build_query($query).']';
  27. $request = (new Client(['timeout' => 15]))->get(self::$host.$operation.'?'.http_build_query($query));
  28. $result = XML2Array::createArray(json_decode($request->getBody(), true));
  29. if($request->getStatusCode() != 200){
  30. Log::error('请求失败:'.var_export($request, true));
  31. Helpers::addNotificationLog('[Namesilo API] - ['.$operation.']', $content, 1,
  32. self::$systemConfig['webmaster_email'], 0, var_export($request, true));
  33. return false;
  34. }
  35. // 出错
  36. if(empty($result['namesilo']) || $result['namesilo']['reply']['code'] != 300 || $result['namesilo']['reply']['detail'] !== 'success'){
  37. Helpers::addNotificationLog('[Namesilo API] - ['.$operation.']', $content, 1,
  38. self::$systemConfig['webmaster_email'], 0, $result['namesilo']['reply']['detail']);
  39. }else{
  40. Helpers::addNotificationLog('[Namesilo API] - ['.$operation.']', $content, 1,
  41. self::$systemConfig['webmaster_email'], 1, $result['namesilo']['reply']['detail']);
  42. }
  43. return $result['namesilo']['reply'];
  44. }
  45. // 列出指定域名的所有DNS记录
  46. public function dnsListRecords($domain) {
  47. $query = [
  48. 'domain' => $domain
  49. ];
  50. return $this->send('dnsListRecords', $query);
  51. }
  52. // 为指定域名添加DNS记录
  53. public function dnsAddRecord($domain, $host, $value, $type = 'A', $ttl = 7207) {
  54. $query = [
  55. 'domain' => $domain,
  56. 'rrtype' => $type,
  57. 'rrhost' => $host,
  58. 'rrvalue' => $value,
  59. 'rrttl' => $ttl
  60. ];
  61. return $this->send('dnsAddRecord', $query);
  62. }
  63. // 更新DNS记录
  64. public function dnsUpdateRecord($domain, $id, $host, $value, $ttl = 7207) {
  65. $query = [
  66. 'domain' => $domain,
  67. 'rrid' => $id,
  68. 'rrhost' => $host,
  69. 'rrvalue' => $value,
  70. 'rrttl' => $ttl
  71. ];
  72. return $this->send('dnsUpdateRecord', $query);
  73. }
  74. // 删除DNS记录
  75. public function dnsDeleteRecord($domain, $id) {
  76. $data = [
  77. 'domain' => $domain,
  78. 'rrid' => $id
  79. ];
  80. return $this->send('dnsDeleteRecord', $data);
  81. }
  82. }