| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176 |
- <?php
- trait AdGuardHomepageItem
- {
- public function adguardSettingsArray($infoOnly = false)
- {
- $homepageInformation = [
- 'name' => 'AdGuardHome',
- 'enabled' => true,
- 'image' => 'plugins/images/tabs/AdGuardHome.png',
- 'category' => 'Monitor',
- 'settingsArray' => __FUNCTION__
- ];
- if ($infoOnly) {
- return $homepageInformation;
- }
- $homepageSettings = [
- 'debug' => true,
- 'settings' => [
- 'Enable' => [
- $this->settingsOption('enable', 'homepageAdGuardEnabled'),
- $this->settingsOption('auth', 'homepageAdGuardAuth'),
- ],
- 'Connection' => [
- $this->settingsOption('url', 'adguardURL', ['help' => 'Please make sure to use local IP address and port. You can add multiple AdGuard Homes by comma separating the URLs.', 'placeholder' => 'http(s)://hostname:port']),
- $this->settingsOption('username', 'adGuardUsername'),
- $this->settingsOption('password', 'adGuardPassword'),
- ],
- 'Misc' => [
- $this->settingsOption('toggle-title', 'adguardHeaderToggle'),
- $this->settingsOption('switch', 'homepageAdGuardCombine', ['label' => 'Combine stat cards', 'help' => 'This controls whether to combine the stats for multiple adguard instances into 1 card.']),
- ],
- 'Stats' => [
- $this->settingsOption('switch', 'adguardQueriesToggle', ['label' => 'Total Queries']),
- $this->settingsOption('switch', 'adguardQueriesBlockedToggle', ['label' => 'Queries Blocked']),
- $this->settingsOption('switch', 'adguardPercentToggle', ['label' => 'Percent Blocked']),
- $this->settingsOption('switch', 'adguardProcessingToggle', ['label' => 'Processing Time']),
- $this->settingsOption('switch', 'adguardDomainListToggle', ['label' => 'Domains on Blocklist']),
- ],
- 'Test Connection' => [
- $this->settingsOption('blank', null, ['label' => 'Please Save before Testing']),
- $this->settingsOption('test', 'adguard'),
- ]
- ]
- ];
- return array_merge($homepageInformation, $homepageSettings);
- }
- public function testConnectionAdGuard()
- {
- if (empty($this->config['adguardURL'])) {
- $this->setAPIResponse('error', 'AdGuard URL is not defined', 422);
- return false;
- }
- $api = array();
- $failed = false;
- $errors = '';
- $urls = explode(',', $this->config['adguardURL']);
- foreach ($urls as $url) {
- $url = $url . '/control/stats';
- try {
- $options = array(
- 'auth' => array($this->config['adGuardUsername'], $this->decrypt($this->config['adGuardPassword']))
- );
- $response = Requests::get($url, [], $options);
- if ($response->success) {
- @$test = json_decode($response->body, true);
- if (!is_array($test)) {
- $ip = $this->qualifyURL($url, true)['host'];
- $errors .= $ip . ': Response was not JSON';
- $failed = true;
- }
- }
- if (!$response->success) {
- $ip = $this->qualifyURL($url, true)['host'];
- $errors .= $ip . ": Unknown Failure";
- $failed = true;
- }
- } catch (Requests_Exception $e) {
- $failed = true;
- $ip = $this->qualifyURL($url, true)['host'];
- $errors .= $ip . ': ' . $e->getMessage();
- $this->setLoggerChannel('AdGuard')->error($e);
- };
- }
- if ($failed) {
- $this->setAPIResponse('error', $errors, 500);
- return false;
- } else {
- $this->setAPIResponse('success', null, 200);
- return true;
- }
- }
- public function adguardHomepagePermissions($key = null)
- {
- $permissions = [
- 'main' => [
- 'enabled' => [
- 'homepageAdGuardEnabled'
- ],
- 'auth' => [
- 'homepageAdGuardAuth'
- ],
- 'not_empty' => [
- 'adguardURL'
- ]
- ]
- ];
- return $this->homepageCheckKeyPermissions($key, $permissions);
- }
- public function homepageOrderAdGuard()
- {
- if ($this->homepageItemPermissions($this->adguardHomepagePermissions('main'))) {
- return '
- <div id="' . __FUNCTION__ . '">
- <div class="white-box homepage-loading-box"><h2 class="text-center" lang="en">Loading AdGuard...</h2></div>
- <script>
- // Pi-hole Stats
- homepageAdGuard("' . $this->config['homepageAdGuardRefresh'] . '");
- // End Pi-hole Stats
- </script>
- </div>
- ';
- }
- }
- public function getAdGuardHomepageStats()
- {
- if (!$this->homepageItemPermissions($this->adguardHomepagePermissions('main'), true)) {
- return false;
- }
- $stats = array();
- $urls = explode(',', $this->config['adguardURL']);
- foreach ($urls as $url) {
- $stats_url = $url . '/control/stats?';
- $filter_url = $url . '/control/filtering/status?';
- try {
- $options = array(
- 'auth' => array($this->config['adGuardUsername'], $this->decrypt($this->config['adGuardPassword']))
- );
- $response = Requests::get($stats_url, [], $options);
- if ($response->success) {
- @$adguardResults = json_decode($response->body, true);
- if (is_array($adguardResults)) {
- $ip = $this->qualifyURL($stats_url, true)['host'];
- $stats['data'][$ip] = $adguardResults;
- }
- }
- $response = Requests::get($filter_url, [], $options);
- if ($response->success) {
- @$adguardFilterResults = json_decode($response->body, true);
- if (is_array($adguardFilterResults)) {
- $ip = $this->qualifyURL($filter_url, true)['host'];
- $stats['filters'][$ip] = $adguardFilterResults;
- }
- }
- } catch (Requests_Exception $e) {
- $this->setResponse(500, $e->getMessage());
- $this->setLoggerChannel('AdGuard')->error($e);
- return false;
- };
- }
- $stats['options']['combine'] = $this->config['homepageAdGuardCombine'];
- $stats['options']['title'] = $this->config['adguardHeaderToggle'];
- $stats['options']['queries'] = $this->config['adguardQueriesToggle'];
- $stats['options']['blocked_count'] = $this->config['adguardQueriesBlockedToggle'];
- $stats['options']['blocked_percent'] = $this->config['adguardPercentToggle'];
- $stats['options']['processing_time'] = $this->config['adguardProcessingToggle'];
- $stats['options']['domain_count'] = $this->config['adguardDomainListToggle'];
- $stats = isset($stats) ? $stats : null;
- $this->setAPIResponse('success', null, 200, $stats);
- return $stats;
- }
- }
|