初始上传
This commit is contained in:
65
addon/printer/data/sdk/yilianyun/config/YlyConfig.php
Executable file
65
addon/printer/data/sdk/yilianyun/config/YlyConfig.php
Executable file
@@ -0,0 +1,65 @@
|
||||
<?php
|
||||
namespace addon\printer\data\sdk\yilianyun\config;
|
||||
|
||||
use InvalidArgumentException;
|
||||
|
||||
class YlyConfig{
|
||||
|
||||
private $clientId = '';
|
||||
private $clientSecret = '';
|
||||
private $requestUrl = "https://open-api.10ss.net";
|
||||
private $log;
|
||||
|
||||
public function __construct($clientId, $clientSecret)
|
||||
{
|
||||
|
||||
if ($clientId == null || $clientId == "") {
|
||||
throw new InvalidArgumentException("clientId is required");
|
||||
}
|
||||
|
||||
if ($clientSecret == null || $clientSecret == "") {
|
||||
throw new InvalidArgumentException("clientSecret is required");
|
||||
}
|
||||
|
||||
$this->clientId = $clientId;
|
||||
$this->clientSecret = $clientSecret;
|
||||
}
|
||||
|
||||
public function getClientId()
|
||||
{
|
||||
return $this->clientId;
|
||||
}
|
||||
|
||||
|
||||
public function getClientSecret()
|
||||
{
|
||||
return $this->clientSecret;
|
||||
}
|
||||
|
||||
public function getRequestUrl()
|
||||
{
|
||||
return $this->requestUrl;
|
||||
}
|
||||
|
||||
public function setRequestUrl($requestUrl)
|
||||
{
|
||||
$this->requestUrl = $requestUrl;
|
||||
}
|
||||
|
||||
public function getLog()
|
||||
{
|
||||
return $this->log;
|
||||
}
|
||||
|
||||
public function setLog($log)
|
||||
{
|
||||
if (!method_exists($log, "info")) {
|
||||
throw new InvalidArgumentException("logger need have method 'info(\$message)'");
|
||||
}
|
||||
if (!method_exists($log, "error")) {
|
||||
throw new InvalidArgumentException("logger need have method 'error(\$message)'");
|
||||
}
|
||||
$this->log = $log;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user