sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
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.
78 lines
2.1 KiB
78 lines
2.1 KiB
6 years ago
|
<?php
|
||
|
|
||
|
namespace Github\Api\Enterprise;
|
||
|
|
||
|
use Github\Api\AbstractApi;
|
||
|
|
||
|
class ManagementConsole extends AbstractApi
|
||
|
{
|
||
|
/**
|
||
|
* Checks the status of your installation’s most recent configuration process.
|
||
|
*
|
||
|
* @link https://developer.github.com/v3/enterprise/management_console/#check-configuration-status
|
||
|
*
|
||
|
* @param string $hash md5 hash of your license
|
||
|
*
|
||
|
* @return array array of configuration status information
|
||
|
*/
|
||
|
public function configcheck($hash)
|
||
|
{
|
||
|
return $this->getWithLicenseHash('/setup/api/configcheck', $hash);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieves your installation’s settings.
|
||
|
*
|
||
|
* @link https://developer.github.com/v3/enterprise/management_console/#retrieve-settings
|
||
|
*
|
||
|
* @param string $hash md5 hash of your license
|
||
|
*
|
||
|
* @return array array of settings
|
||
|
*/
|
||
|
public function settings($hash)
|
||
|
{
|
||
|
return $this->getWithLicenseHash('/setup/api/settings', $hash);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Checks your installation’s maintenance status.
|
||
|
*
|
||
|
* @link https://developer.github.com/v3/enterprise/management_console/#check-maintenance-status
|
||
|
*
|
||
|
* @param string $hash md5 hash of your license
|
||
|
*
|
||
|
* @return array array of maintenance status information
|
||
|
*/
|
||
|
public function maintenance($hash)
|
||
|
{
|
||
|
return $this->getWithLicenseHash('/setup/api/maintenance', $hash);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieves your installation’s authorized SSH keys.
|
||
|
*
|
||
|
* @link https://developer.github.com/v3/enterprise/management_console/#retrieve-authorized-ssh-keys
|
||
|
*
|
||
|
* @param string $hash md5 hash of your license
|
||
|
*
|
||
|
* @return array array of authorized keys
|
||
|
*/
|
||
|
public function keys($hash)
|
||
|
{
|
||
|
return $this->getWithLicenseHash('/setup/api/settings/authorized-keys', $hash);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sends an authenticated GET request.
|
||
|
*
|
||
|
* @param string $uri the request URI
|
||
|
* @param string $hash md5 hash of your license
|
||
|
*
|
||
|
* @return array|string
|
||
|
*/
|
||
|
protected function getWithLicenseHash($uri, $hash)
|
||
|
{
|
||
|
return $this->get($uri, ['license_md5' => rawurlencode($hash)]);
|
||
|
}
|
||
|
}
|