statusmessage.js 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /**
  2. * Created by logicp on 6/05/17.
  3. */
  4. (function($, Drupal, drupalSettings) {
  5. Drupal.behaviors.status= {
  6. attach: function (context, settings) {
  7. Drupal.AjaxCommands.prototype.generatePreview = function(ajax, response, status) {
  8. if (validateUrl(response.url)) {
  9. console.dir(response);
  10. }
  11. var cleanUrl = response.url.replace(/^http(s?):\/\//i, "");
  12. // console.log(cleanUrl);
  13. $.ajax({
  14. type:'POST',
  15. url:'/statusmessage/generate-preview/' + cleanUrl,
  16. success: function(response) {
  17. // console.log(response.data);
  18. if (response.data != null) {
  19. var parser = new DOMParser();
  20. var doc = parser.parseFromString(response.data, "text/html");
  21. var imgs = doc.querySelectorAll('img')
  22. var metaTags = doc.querySelectorAll('meta');
  23. var title = doc.querySelector('title');
  24. var markup;
  25. var description;
  26. var previewImage;
  27. imgs.forEach(function (img) {
  28. var imgClasses = img.classList;
  29. if (imgClasses.value !== null && imgClasses.value.length > 0) {
  30. if (imgClasses.value.includes('logo')) {
  31. previewImage = img;
  32. }
  33. }
  34. if (previewImage !== null) {
  35. }
  36. });
  37. metaTags.forEach(function (metaTag) {
  38. if (metaTag.name == 'description') {
  39. description = metaTag.content;
  40. }
  41. });
  42. console.dir(description);
  43. console.log(previewImage);
  44. markup = '<div id="statusmessage-preview"><h2> ' + title != null ? title.innerHTML : "No Title</h2>"
  45. + description != null ? description.innerHTML : "No Description"
  46. + '<img src="' + previewImage != null ? previewImage.src + '" />' : 'google images />'
  47. + '</div>';
  48. console.dir(markup);
  49. console.log(markup);
  50. var statusBlock = document.getElementById('block-statusblock');
  51. var previewIframe = document.createElement('iframe');
  52. previewIframe.classList.add('statusmessage-preview-iframe');
  53. statusBlock.appendChild(previewIframe);
  54. previewIframe.contentWindow.document.open();
  55. previewIframe.contentWindow.document.write(markup);
  56. previewIframe.contentWindow.document.close();
  57. }
  58. }
  59. });
  60. };
  61. function validateUrl(input) {
  62. return input.match(new RegExp("([a-zA-Z0-9]+://)?([a-zA-Z0-9_]+:[a-zA-Z0-9_]+@)?([a-zA-Z0-9.-]+\\.[A-Za-z]{2,4})(:[0-9]+)?(/.*)?"));
  63. }
  64. }
  65. };
  66. })(jQuery, Drupal, drupalSettings);