MyDealz Comment Viewer

Zeigt die letzten Kommentare eines Benutzers an

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/528796/1560683/MyDealz%20Comment%20Viewer.js

  1. // ==UserScript==
  2. // @name MyDealz Comment Viewer
  3. // @namespace http://tampermonkey.net/
  4. // @version 2.1
  5. // @description Zeigt die letzten Kommentare eines Benutzers an
  6. // @author MD928835
  7. // @license MIT
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12.  
  13. // Globale Funktion definieren
  14. window.viewUserComments = async function(username) {
  15. // SessionStorage für Kommentare leeren
  16. sessionStorage.removeItem('mydealz_comments');
  17.  
  18. const fetchDealTitle = async (threadId) => {
  19. const query = `
  20. query getThread($filter: IDFilter!) {
  21. thread(threadId: $filter) {
  22. title
  23. }
  24. }`;
  25.  
  26. try {
  27. const response = await fetch("https://www.mydealz.de/graphql", {
  28. method: 'POST',
  29. headers: {
  30. 'Content-Type': 'application/json'
  31. },
  32. body: JSON.stringify({
  33. query,
  34. variables: { filter: { eq: threadId } }
  35. })
  36. });
  37.  
  38. const result = await response.json();
  39. return result.data.thread.title || "Titel nicht verfügbar";
  40. } catch (error) {
  41. console.error(`Fehler beim Abrufen des Titels für threadId ${threadId}:`, error);
  42. return "Titel nicht verfügbar";
  43. }
  44. };
  45.  
  46. try {
  47. // Profilseite abrufen
  48. const response = await fetch(`https://www.mydealz.de/profile/${username}?page=1`);
  49. if (!response.ok) throw new Error(`HTTP Fehler! Status: ${response.status}`);
  50. const html = await response.text();
  51.  
  52. // Kommentar- und Thread-IDs extrahieren
  53. const pattern = /href=https:\/\/www\.mydealz\.de\/.*?-(\d+)#(?:comment|reply)-(\d+)/g;
  54. const matches_raw = [...html.matchAll(pattern)];
  55. const ids = matches_raw.map(match => ({
  56. threadId: match[1],
  57. commentId: match[2],
  58. url: match[0].replace('href=', '')
  59. }));
  60.  
  61. // Parallelisierte Anfragen für Kommentare und Titel
  62. const fetchPromises = ids.map(async ({ threadId, commentId, url }) => {
  63. const commentQuery = `
  64. query comment($id: ID!) {
  65. comment(id: $id) {
  66. preparedHtmlContent
  67. createdAt
  68. createdAtTs
  69. }
  70. }`;
  71.  
  72. try {
  73. const [commentResponse, title] = await Promise.all([
  74. fetch("https://www.mydealz.de/graphql", {
  75. method: 'POST',
  76. headers: {
  77. 'Content-Type': 'application/json'
  78. },
  79. body: JSON.stringify({
  80. query: commentQuery,
  81. variables: { id: commentId }
  82. })
  83. }).then(res => res.json()),
  84. fetchDealTitle(threadId)
  85. ]);
  86.  
  87. const commentData = commentResponse?.data?.comment;
  88. if (commentData) {
  89. const comment = commentData.preparedHtmlContent.replace(/<img[^>]*>/g, '');
  90. const date = new Date(commentData.createdAtTs * 1000)
  91. .toLocaleString('de-DE', {
  92. day: '2-digit',
  93. month: '2-digit',
  94. year: '2-digit',
  95. hour: '2-digit',
  96. minute: '2-digit'
  97. })
  98. .replace(',', '');
  99.  
  100. return {
  101. html: `<div class="comment-card" style="background-color:white;padding:1rem;margin:0.75rem 0;border-radius:8px;box-shadow:0 2px 4px rgba(0,0,0,0.1);"><span title="${date}">${commentData.createdAt}</span> <b>${title}</b><br>${comment}<br><svg width="15px" height="16px" class="icon icon--comment" style="vertical-align: middle"><use xlink:href="/assets/img/ico_632f5.svg#comment"></use></svg> <a href='${url}' target='_blank'>Zum Kommentar</a></div>`,
  102. title,
  103. comment,
  104. dealId: threadId,
  105. commentId
  106. };
  107. }
  108. } catch (error) {
  109. console.error(`Fehler bei der Verarbeitung von commentId ${commentId}:`, error);
  110. return null;
  111. }
  112. });
  113.  
  114. const pageResults = (await Promise.all(fetchPromises)).filter(r => r);
  115.  
  116. // Ergebnisse sicher in sessionStorage speichern
  117. sessionStorage.setItem('mydealz_comments', JSON.stringify(pageResults));
  118.  
  119. // Popup anzeigen
  120. const resultWindow = window.open("", "Results", "width=1000,height=700,location=no,menubar=no,toolbar=no,status=no,titlebar=no");
  121. if (resultWindow) {
  122. resultWindow.document.write(`
  123. <html>
  124. <head>
  125. <title>${username}s letzte Kommentare</title>
  126. <style>
  127. body { margin: 0; padding: 0; background: #f5f5f5; font-family: Arial, sans-serif; }
  128. .header { background: #005293; height: 56px; display: flex; align-items: center; justify-content: center; color: white; font-size: 24px; position: relative; }
  129. .logo { height: 40px; position: absolute; left: 20px; }
  130. .sort-options { text-align: center; padding: 10px; }
  131. .comments-container { margin: 20px; }
  132. .comment-card { background-color: white; padding: 1rem; margin: 0.75rem 0; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
  133. </style>
  134. <script>
  135. function sortComments(type) {
  136. let comments = JSON.parse(sessionStorage.getItem('mydealz_comments'));
  137. if (type === 'all') {
  138. comments.sort((a, b) => b.commentId - a.commentId);
  139. } else {
  140. comments.sort((a, b) => b.dealId === a.dealId ? b.commentId - a.commentId : b.dealId - a.dealId);
  141. }
  142. document.getElementById('comments-container').innerHTML = comments.map(r => r.html).join('');
  143. }
  144. </script>
  145. </head>
  146. <body>
  147. <div class="header">
  148. <img src="https://www.mydealz.de/assets/img/logo/default-light_d4b86.svg" class="logo">
  149. <a href="https://www.mydealz.de/profile/${username}" style="color:white;text-decoration:none" target="_blank">${username}s letzte ${pageResults.length} Kommentare</a>
  150. </div>
  151.  
  152. <div class="sort-options">
  153. Kommentare sortieren nach
  154. <label><input type="radio" name="sort" checked onclick="sortComments('all')"> alle chronologisch</label>
  155. <label><input type="radio" name="sort" onclick="sortComments('deal')"> beitragschronologisch</label>
  156. </div>
  157.  
  158. <div id="comments-container" class="comments-container">
  159. ${pageResults.map(r => r.html).join('')}
  160. </div>
  161. </body>
  162. </html>`);
  163. resultWindow.document.close();
  164. resultWindow.focus();
  165. } else {
  166. alert("Popup blockiert!");
  167. }
  168. } catch (error) {
  169. console.error("Fehler:", error);
  170. alert(`Fehler: ${error.message}`);
  171. }
  172. };
  173. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址