OpenSource CLI-App to install and handle stuff related to Web-Server
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.

189 lines
4.3 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. <?php
  2. namespace App\Helpers;
  3. /**
  4. * hande nginx vhosts
  5. *
  6. * @author Björn Hase, Tentakelfabrik
  7. * @license http://opensource.org/licenses/MIT The MIT License
  8. * @link https://gitea.tentakelfabrik.de/Tentakelfabrik/mcp
  9. *
  10. */
  11. class NginxVhostHelper
  12. {
  13. // path for available files
  14. const SITES_AVAILABLE = '/etc/nginx/sites-available';
  15. // path for enabled files
  16. const SITES_ENABLED = '/etc/nginx/sites-enabled';
  17. // regex to get files for
  18. const REGEX_SSL_CERTIFICATE = '/\bssl_certificate\s+\K\S+/';
  19. const REGEX_SSL_CERTIFICATE_KEY = '/\bssl_certificate_key\s+\K\S+/';
  20. // ignore files
  21. const IGNORE_FILES = [
  22. '.', '..'
  23. ];
  24. /**
  25. * get sites that are in sites-available
  26. *
  27. *
  28. * @return array
  29. *
  30. */
  31. private function getSitesAvailable()
  32. {
  33. return scandir(self::SITES_AVAILABLE);
  34. }
  35. /**
  36. * get sites that are in sites-enabled
  37. *
  38. *
  39. * @return array
  40. *
  41. */
  42. private function getSitesEnabled()
  43. {
  44. return scandir(self::SITES_ENABLED);
  45. }
  46. /**
  47. * find path for certificates in .conf-files
  48. *
  49. *
  50. * ssl_certificate /etc/letsencrypt/live/<domain>/fullchain.pem;
  51. * ssl_certificate_key /etc/letsencrypt/live/<domain>/privkey.pem;
  52. *
  53. * @param string $filename
  54. *
  55. */
  56. private function getCertificate($path)
  57. {
  58. $result = [
  59. 'ssl' => false,
  60. 'ssl_certificate_exists' => false,
  61. 'ssl_certificate_expired_at' => false
  62. ];
  63. // getting .conf-file
  64. $content = file_get_contents($path);
  65. // check for path of sites
  66. preg_match(self::REGEX_SSL_CERTIFICATE, $content, $certificates);
  67. $matches = array_merge([], $certificates);
  68. preg_match(self::REGEX_SSL_CERTIFICATE_KEY, $content, $certificates);
  69. $matches = array_merge($matches, $certificates);
  70. // check ssl certificates
  71. if (count($matches) >= 2) {
  72. $result['ssl'] = true;
  73. var_dump($matches); die();
  74. if (file_exists($matches[0]) && file_exists($matches[1])) {
  75. $result['ssl_certificate_exists'] = true;
  76. }
  77. // getting expired
  78. exec('openssl x509 -noout -dates -in '.$path, $openssl);
  79. if (isset($openssl[1])) {
  80. $openssl = str_replace('notAfter=', '', $openssl[1]);
  81. }
  82. }
  83. return $result;
  84. }
  85. /**
  86. *
  87. * @return
  88. */
  89. private function getRedirect($path, $domain)
  90. {
  91. // getting .conf-file
  92. $content = file_get_contents($path);
  93. // result
  94. $result = false;
  95. preg_match('/server_name www.'.$domain.'/', $content, $matches);
  96. if (count($matches) > 0) {
  97. $result = true;
  98. }
  99. return $result;
  100. }
  101. /**
  102. * get vhost
  103. *
  104. * @param string $filename
  105. * @param array $enabled
  106. * @return array
  107. */
  108. private function getVhost($filename, $enabled)
  109. {
  110. // getting full path
  111. $path = self::SITES_AVAILABLE.'/'.$filename;
  112. // getting certificates from a configuration
  113. $certificate = $this->getCertificate($path);
  114. // domain
  115. $domain = str_replace('.conf', '', $filename);
  116. $result = array_merge([
  117. 'domain' => $domain,
  118. 'path' => $path,
  119. 'file' => $filename,
  120. 'redirect_www' => $this->getRedirect($path, $domain),
  121. 'enabled' => in_array($filename, $enabled),
  122. ], $certificate);
  123. return $result;
  124. }
  125. /**
  126. * find single vhost by filename
  127. *
  128. * @param string $filename
  129. * @return array
  130. */
  131. public function findOneByFilename($filename)
  132. {
  133. // getting enabled
  134. $enabled = $this->getSitesEnabled();
  135. return $this->getVhost($filename, $enabled);
  136. }
  137. /**
  138. * find all vhost
  139. *
  140. * @return array
  141. */
  142. public function find()
  143. {
  144. $results = [];
  145. // getting available
  146. $available = $this->getSitesAvailable();
  147. // getting enabled
  148. $enabled = $this->getSitesEnabled();
  149. foreach($available as $filename)
  150. {
  151. if (!in_array($filename, self::IGNORE_FILES)) {
  152. $results[] = $this->getVhost($filename, $enabled);
  153. }
  154. }
  155. return $results;
  156. }
  157. }