StatusPreviewController.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. <?php
  2. namespace Drupal\statusmessage\Controller;
  3. require_once(DRUPAL_ROOT .'/vendor/autoload.php');
  4. use Drupal\Core\Controller\ControllerBase;
  5. use Symfony\Component\HttpFoundation\Response;
  6. use Symfony\Component\DependencyInjection\ContainerInterface;
  7. use GuzzleHttp\Client;
  8. /**
  9. * Class StatusPreviewController.
  10. *
  11. * @package Drupal\statusmessage\Controller
  12. */
  13. class StatusPreviewController extends ControllerBase {
  14. protected $httpClient;
  15. /**
  16. * {@inheritdoc}
  17. */
  18. public static function create(ContainerInterface $container) {
  19. return new static(
  20. $container->get('http_client'));
  21. }
  22. /**
  23. * Constructor.
  24. */
  25. public function __construct(Client $http_client) {
  26. $this->httpClient = $http_client;
  27. }
  28. /**
  29. * Generate.
  30. *
  31. * @return string
  32. * Return Hello string.
  33. */
  34. public function generate($url) {
  35. if ($url == 'build') {
  36. $url = \Drupal::request()->get('data');
  37. $this->dom = new \DOMDocument;
  38. $contents = file_get_contents('http://' . $url);
  39. $this->dom->loadHTML($contents);
  40. $xpath = new \DomXpath($this->dom);
  41. $anchorAttributes = $this->getAnchorNodeNames();
  42. $imgAttributes = $this->getImgNodeNames();
  43. $imgLogos = $this->searchDom('img', 'logo');
  44. $anchorLogos = $this->searchDom('a', 'logo');
  45. $contents = file_get_contents('http://' . $url);
  46. $response = new Response();
  47. $response->setContent(\GuzzleHttp\json_encode(array('data' => $contents)));
  48. $response->headers->set('Content-Type', 'application/json');
  49. return $response;
  50. }
  51. }
  52. private function getAnchorNodeNames() {
  53. if ($this->dom) {
  54. $names = array();
  55. $attrXpath = new \DomXpath($this->dom);
  56. $nodes = $attrXpath->query('//a/@*');
  57. $i = 0;
  58. foreach ($nodes as $node) {
  59. $names[$i] = new \stdClass();
  60. $names[$i]->name = $node->nodeName;
  61. $names[$i]->value = $node->nodeValue;
  62. $i++;
  63. }
  64. return $names;
  65. }
  66. }
  67. private function getImgNodeNames() {
  68. if ($this->dom) {
  69. $names = array();
  70. $attrXpath = new \DomXpath($this->dom);
  71. $nodes = $attrXpath->query('//img/@*');
  72. $i = 0;
  73. foreach ($nodes as $node) {
  74. $names[$i] = new \stdClass();
  75. $names[$i]->name = $node->nodeName;
  76. $names[$i]->value = $node->nodeValue;
  77. $i++;
  78. }
  79. return $names;
  80. }
  81. }
  82. private function searchDom($tag, $string) {
  83. if ($this->dom) {
  84. $results = array();
  85. $tags = $this->dom->getElementsByTagName($tag);
  86. for ($i = 0; $i < $tags->length; $i++) {
  87. $results[$i] = new \stdClass();
  88. $src = $tags->item($i)->getAttribute('src');
  89. if (strpos($src, 'logo')) {
  90. $results[$i]->src = $src;
  91. }
  92. $href = $tags->item($i)->getAttribute('href');
  93. if (strpos($href, 'logo')) {
  94. $results[$i]->href = $href;
  95. }
  96. }
  97. return $results;
  98. }
  99. }
  100. }