Namesilo.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <?php
  2. namespace App\Components;
  3. use Exception;
  4. use Log;
  5. use LSS\XML2Array;
  6. class Namesilo {
  7. protected static $host;
  8. protected static $systemConfig;
  9. function __construct() {
  10. self::$host = 'https://www.namesilo.com/api/';
  11. self::$systemConfig = Helpers::systemConfig();
  12. }
  13. // 列出账号下所有域名
  14. public function listDomains() {
  15. return $this->send('listDomains');
  16. }
  17. // 发送请求
  18. private function send($operation, $data = []) {
  19. $params = [
  20. 'version' => 1,
  21. 'type' => 'xml',
  22. 'key' => self::$systemConfig['namesilo_key']
  23. ];
  24. $query = array_merge($params, $data);
  25. $content = '请求操作:['.$operation.'] --- 请求数据:['.http_build_query($query).']';
  26. try{
  27. $result = Curl::send(self::$host.$operation.'?'.http_build_query($query));
  28. $result = XML2Array::createArray($result);
  29. // 出错
  30. if(empty($result['namesilo']) || $result['namesilo']['reply']['code'] != 300 || $result['namesilo']['reply']['detail'] != 'success'){
  31. Helpers::addNotificationLog('[Namesilo API] - ['.$operation.']', $content, 1,
  32. self::$systemConfig['webmaster_email'], 0, $result['namesilo']['reply']['detail']);
  33. }else{
  34. Helpers::addNotificationLog('[Namesilo API] - ['.$operation.']', $content, 1,
  35. self::$systemConfig['webmaster_email'], 1, $result['namesilo']['reply']['detail']);
  36. }
  37. return $result['namesilo']['reply'];
  38. }catch(Exception $e){
  39. Log::error('CURL请求失败:'.$e->getMessage().' --- '.$e->getLine());
  40. Helpers::addNotificationLog('[Namesilo API] - ['.$operation.']', $content, 1,
  41. self::$systemConfig['webmaster_email'], 0, $e->getMessage());
  42. return false;
  43. }
  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. }