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.

187 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
  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. if (file_exists($matches[0]) && file_exists($matches[1])) {
  74. $result['ssl_certificate_exists'] = true;
  75. }
  76. // getting expired
  77. exec('openssl x509 -noout -dates -in '.$path, $openssl);
  78. if (isset($openssl[1])) {
  79. $openssl = str_replace('notAfter=', '', $openssl[1]);
  80. }
  81. }
  82. return $result;
  83. }
  84. /**
  85. *
  86. * @return
  87. */
  88. private function getRedirect($path, $domain)
  89. {
  90. // getting .conf-file
  91. $content = file_get_contents($path);
  92. // result
  93. $result = false;
  94. preg_match('/server_name www.'.$domain.'/', $content, $matches);
  95. if (count($matches) > 0) {
  96. $result = true;
  97. }
  98. return $result;
  99. }
  100. /**
  101. * get vhost
  102. *
  103. * @param string $filename
  104. * @param array $enabled
  105. * @return array
  106. */
  107. private function getVhost($filename, $enabled)
  108. {
  109. // getting full path
  110. $path = self::SITES_AVAILABLE.'/'.$filename;
  111. // getting certificates from a configuration
  112. $certificate = $this->getCertificate($path);
  113. // domain
  114. $domain = str_replace('.conf', '', $filename);
  115. $result = array_merge([
  116. 'domain' => $domain,
  117. 'path' => $path,
  118. 'file' => $filename,
  119. 'redirect_www' => $this->getRedirect($path, $domain),
  120. 'enabled' => in_array($filename, $enabled),
  121. ], $certificate);
  122. return $result;
  123. }
  124. /**
  125. * find single vhost by filename
  126. *
  127. * @param string $filename
  128. * @return array
  129. */
  130. public function findOneByFilename($filename)
  131. {
  132. // getting enabled
  133. $enabled = $this->getSitesEnabled();
  134. return $this->getVhost($filename, $enabled);
  135. }
  136. /**
  137. * find all vhost
  138. *
  139. * @return array
  140. */
  141. public function find()
  142. {
  143. $results = [];
  144. // getting available
  145. $available = $this->getSitesAvailable();
  146. // getting enabled
  147. $enabled = $this->getSitesEnabled();
  148. foreach($available as $filename)
  149. {
  150. if (!in_array($filename, self::IGNORE_FILES)) {
  151. $results[] = $this->getVhost($filename, $enabled);
  152. }
  153. }
  154. return $results;
  155. }
  156. }