class AuditLogApi in TMGMT Translator Smartling 8.4
Same name and namespace in other branches
- 8.3 vendor/smartling/api-sdk-php/src/AuditLog/AuditLogApi.php \Smartling\AuditLog\AuditLogApi
Hierarchy
- class \Smartling\BaseApiAbstract
- class \Smartling\AuditLog\AuditLogApi
Expanded class hierarchy of AuditLogApi
3 files declare their use of AuditLogApi
- AuditLogApiFunctionalTest.php in vendor/
smartling/ api-sdk-php/ tests/ functional/ AuditLogApiFunctionalTest.php - AuditLogApiTest.php in vendor/
smartling/ api-sdk-php/ tests/ unit/ AuditLogApiTest.php - SmartlingApiFactory.php in src/
Smartling/ SmartlingApiFactory.php - SmartlingApiFactory.php.
File
- vendor/
smartling/ api-sdk-php/ src/ AuditLog/ AuditLogApi.php, line 12
Namespace
Smartling\AuditLogView source
class AuditLogApi extends BaseApiAbstract {
const ENDPOINT_URL = 'https://api.smartling.com/audit-log-api/v2';
const PROJECT_LEVEL_URL = 'projects/%s/logs';
const ACCOUNT_LEVEL_URL = 'accounts/%s/logs';
/**
* {@inheritdoc}
*/
public function __construct($projectId, ClientInterface $client, LoggerInterface $logger = null, $service_url = null) {
parent::__construct($projectId, $client, $logger, $service_url);
// Do not include project_id into base url since
// audit log service has /accounts/{accountUid}/logs
// endpoint without project id.
$this
->setBaseUrl(rtrim($service_url, '/'));
}
public static function create(AuthApiInterface $authProvider, $projectId, LoggerInterface $logger = null) {
$client = self::initializeHttpClient(self::ENDPOINT_URL);
$instance = new self($projectId, $client, $logger, self::ENDPOINT_URL);
$instance
->setAuth($authProvider);
return $instance;
}
public function createProjectLevelLogRecord(CreateRecordParameters $createRecordRecommendedParameters) {
$requestData = $this
->getDefaultRequestData('json', $createRecordRecommendedParameters
->exportToArray());
$endpoint = vsprintf(self::PROJECT_LEVEL_URL, [
$this
->getProjectId(),
]);
return $this
->sendRequest($endpoint, $requestData, static::HTTP_METHOD_POST);
}
public function createAccountLevelLogRecord($accountUid, CreateRecordParameters $createRecordRecommendedParameters) {
$requestData = $this
->getDefaultRequestData('json', $createRecordRecommendedParameters
->exportToArray());
$endpoint = vsprintf(self::ACCOUNT_LEVEL_URL, [
$accountUid,
]);
return $this
->sendRequest($endpoint, $requestData, static::HTTP_METHOD_POST);
}
public function searchProjectLevelLogRecord(SearchRecordParameters $searchParameters) {
$requestData = $this
->getDefaultRequestData('query', $searchParameters
->exportToArray());
$endpoint = vsprintf(self::PROJECT_LEVEL_URL, [
$this
->getProjectId(),
]);
return $this
->sendRequest($endpoint, $requestData, static::HTTP_METHOD_GET);
}
public function searchAccountLevelLogRecord($accountUid, SearchRecordParameters $searchParameters) {
$requestData = $this
->getDefaultRequestData('query', $searchParameters
->exportToArray());
$endpoint = vsprintf(self::ACCOUNT_LEVEL_URL, [
$accountUid,
]);
return $this
->sendRequest($endpoint, $requestData, static::HTTP_METHOD_GET);
}
}