截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

YlyConfig.php 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace App\Config;
  3. use InvalidArgumentException;
  4. class YlyConfig{
  5. private $clientId = '';
  6. private $clientSecret = '';
  7. private $requestUrl = "https://open-api.10ss.net";
  8. private $log;
  9. public function __construct($clientId, $clientSecret)
  10. {
  11. if ($clientId == null || $clientId == "") {
  12. throw new InvalidArgumentException("clientId is required");
  13. }
  14. if ($clientSecret == null || $clientSecret == "") {
  15. throw new InvalidArgumentException("clientSecret is required");
  16. }
  17. $this->clientId = $clientId;
  18. $this->clientSecret = $clientSecret;
  19. }
  20. public function getClientId()
  21. {
  22. return $this->clientId;
  23. }
  24. public function getClientSecret()
  25. {
  26. return $this->clientSecret;
  27. }
  28. public function getRequestUrl()
  29. {
  30. return $this->requestUrl;
  31. }
  32. public function setRequestUrl($requestUrl)
  33. {
  34. $this->requestUrl = $requestUrl;
  35. }
  36. public function getLog()
  37. {
  38. return $this->log;
  39. }
  40. public function setLog($log)
  41. {
  42. if (!method_exists($log, "info")) {
  43. throw new InvalidArgumentException("logger need have method 'info(\$message)'");
  44. }
  45. if (!method_exists($log, "error")) {
  46. throw new InvalidArgumentException("logger need have method 'error(\$message)'");
  47. }
  48. $this->log = $log;
  49. }
  50. }