A copyright violation detector running on Wikimedia Cloud Services https://tools.wmflabs.org/copyvios/
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

296 rader
17 KiB

  1. <%!
  2. from flask import g, request
  3. from copyvios.checker import T_POSSIBLE, T_SUSPECT
  4. from copyvios.misc import cache
  5. %>\
  6. <%include file="/support/header.mako" args="title='Earwig\'s Copyvio Detector'"/>
  7. <%namespace module="copyvios.highlighter" import="highlight_delta"/>\
  8. <%namespace module="copyvios.misc" import="httpsfix, urlstrip"/>\
  9. % if notice:
  10. <div id="notice-box" class="gray-box">
  11. ${notice}
  12. </div>
  13. % endif
  14. % if query.submitted:
  15. % if query.error:
  16. <div id="info-box" class="red-box"><p>
  17. % if query.error == "bad action":
  18. Unknown action: <b><span class="mono">${query.action | h}</span></b>.
  19. % elif query.error == "no search method":
  20. No copyvio search methods were selected. A check can only be made using the search engine, links present in the page, Turnitin, or some combination of these.
  21. % elif query.error == "no URL":
  22. URL comparison mode requires a URL to be entered. Enter one in the text box below, or choose copyvio search mode to look for content similar to the article elsewhere on the web.
  23. % elif query.error == "bad URI":
  24. Unsupported URI scheme: <a href="${query.url | h}">${query.url | h}</a>.
  25. % elif query.error == "no data":
  26. Couldn't find any text in <a href="${query.url | h}">${query.url | h}</a>. <i>Note:</i> only HTML documents, plain text pages, and PDFs are supported, and content generated by JavaScript or found inside iframes is ignored.
  27. % elif query.error == "timeout":
  28. The URL <a href="${query.url | h}">${query.url | h}</a> timed out before any data could be retrieved.
  29. % elif query.error == "search error":
  30. An error occurred while using the search engine (${query.exception}). Try reloading the page. If the error persists, <a href="${request.url | httpsfix, h}&amp;use_engine=0">repeat the check without using the search engine</a>.
  31. % else:
  32. An unknown error occurred.
  33. % endif
  34. </p></div>
  35. % elif not query.site:
  36. <div id="info-box" class="red-box">
  37. <p>The given site (project=<b><span class="mono">${query.project | h}</span></b>, language=<b><span class="mono">${query.lang | h}</span></b>) doesn't seem to exist. It may also be closed or private. <a href="//${query.lang | h}.${query.project | h}.org/">Confirm its URL.</a></p>
  38. </div>
  39. % elif query.oldid and not result:
  40. <div id="info-box" class="red-box">
  41. <p>The given revision ID doesn't seem to exist: <a href="//${query.site.domain | h}/w/index.php?oldid=${query.oldid | h}">${query.oldid | h}</a>.</p>
  42. </div>
  43. % elif query.title and not result:
  44. <div id="info-box" class="red-box">
  45. <p>The given page doesn't seem to exist: <a href="${query.page.url}">${query.page.title | h}</a>.</p>
  46. </div>
  47. % endif
  48. %endif
  49. <p>This tool attempts to detect <a href="//en.wikipedia.org/wiki/WP:COPYVIO">copyright violations</a> in articles. In <i>search mode</i>, it will check for similar content elsewhere on the web using <a href="//developer.yahoo.com/boss/search/">Yahoo! BOSS</a>, external links present in the text of the page, or <a href="//en.wikipedia.org/wiki/Wikipedia:Turnitin">Turnitin</a> (provided by <a href="//en.wikipedia.org/wiki/User:EranBot">EranBot</a>), depending on which options are selected. In <i>comparison mode</i>, the tool will skip the searching step and display a report comparing the article to the given webpage, like the <a href="//tools.wmflabs.org/dupdet/">Duplication Detector</a>.</p>
  50. <p>Running a full check can take up to a minute if other websites are slow or if the tool is under heavy use. Please be patient. If you get a timeout, wait a moment and refresh the page.</p>
  51. <p>Specific websites can be skipped (for example, if they copy from Wikipedia) by being added to the <a href="//en.wikipedia.org/wiki/User:EarwigBot/Copyvios/Exclusions">excluded URL list</a>.</p>
  52. <form id="cv-form" action="${request.script_root}" method="get">
  53. <table id="cv-form-outer">
  54. <tr>
  55. <td>Site:</td>
  56. <td colspan="3">
  57. <span class="mono">https://</span>
  58. <select name="lang">
  59. <% selected_lang = query.orig_lang if query.orig_lang else g.cookies["CopyviosDefaultLang"].value if "CopyviosDefaultLang" in g.cookies else cache.bot.wiki.get_site().lang %>\
  60. % for code, name in cache.langs:
  61. % if code == selected_lang:
  62. <option value="${code | h}" selected="selected">${name}</option>
  63. % else:
  64. <option value="${code | h}">${name}</option>
  65. % endif
  66. % endfor
  67. </select>
  68. <span class="mono">.</span>
  69. <select name="project">
  70. <% selected_project = query.project if query.project else g.cookies["CopyviosDefaultProject"].value if "CopyviosDefaultProject" in g.cookies else cache.bot.wiki.get_site().project %>\
  71. % for code, name in cache.projects:
  72. % if code == selected_project:
  73. <option value="${code | h}" selected="selected">${name}</option>
  74. % else:
  75. <option value="${code | h}">${name}</option>
  76. % endif
  77. % endfor
  78. </select>
  79. <span class="mono">.org</span>
  80. </td>
  81. </tr>
  82. <tr>
  83. <td id="cv-col1">Page&nbsp;title:</td>
  84. <td id="cv-col2">
  85. % if query.title:
  86. <input class="cv-text" type="text" name="title" value="${query.page.title if query.page else query.title | h}" />
  87. % else:
  88. <input class="cv-text" type="text" name="title" />
  89. % endif
  90. </td>
  91. <td id="cv-col3">or&nbsp;revision&nbsp;ID:</td>
  92. <td id="cv-col4">
  93. % if query.oldid:
  94. <input class="cv-text" type="text" name="oldid" value="${query.oldid | h}" />
  95. % else:
  96. <input class="cv-text" type="text" name="oldid" />
  97. % endif
  98. </td>
  99. </tr>
  100. <tr>
  101. <td>Action:</td>
  102. <td colspan="3">
  103. <table id="cv-form-inner">
  104. <tr>
  105. <td id="cv-inner-col1">
  106. <input id="action-search" type="radio" name="action" value="search" ${'checked="checked"' if (query.action == "search" or not query.action) else ""} />
  107. </td>
  108. <td id="cv-inner-col2"><label for="action-search">Copyvio&nbsp;search:</label></td>
  109. <td id="cv-inner-col3">
  110. <input type="hidden" name="use_engine" value="0" />
  111. <input id="cv-cb-engine" class="cv-search" type="checkbox" name="use_engine" value="1" ${'checked="checked"' if query.use_engine not in ("0", "false") else ""} />
  112. <label for="cv-cb-engine">Use&nbsp;search&nbsp;engine</label>
  113. <input type="hidden" name="use_links" value="0" />
  114. <input id="cv-cb-links" class="cv-search" type="checkbox" name="use_links" value="1" ${'checked="checked"' if query.use_links not in ("0", "false") else ""} />
  115. <label for="cv-cb-links">Use&nbsp;links&nbsp;in&nbsp;page</label>
  116. <input type="hidden" name="turnitin" value="0" />
  117. <input id="cv-cb-turnitin" class="cv-search" type="checkbox" name="turnitin" value="1" ${'checked="checked"' if query.turnitin in ("1", "true") else ""}/>
  118. <label for="cv-cb-turnitin">Use&nbsp;Turnitin</label>
  119. </td>
  120. </tr>
  121. <tr>
  122. <td>
  123. <input id="action-compare" type="radio" name="action" value="compare" ${'checked="checked"' if query.action == "compare" else ""} />
  124. </td>
  125. <td><label for="action-compare">URL&nbsp;comparison:</label></td>
  126. <td>
  127. <input class="cv-compare cv-text" type="text" name="url"
  128. % if query.url:
  129. value="${query.url | h}"
  130. % endif
  131. />
  132. </td>
  133. </tr>
  134. </table>
  135. </td>
  136. </tr>
  137. % if query.nocache or (result and result.cached):
  138. <tr>
  139. <td><label for="cb-nocache">Bypass&nbsp;cache:</label></td>
  140. <td colspan="3">
  141. <input id="cb-nocache" type="checkbox" name="nocache" value="1" ${'checked="checked"' if query.nocache else ""} />
  142. </td>
  143. </tr>
  144. % endif
  145. <tr>
  146. <td colspan="4">
  147. <button type="submit">Submit</button>
  148. </td>
  149. </tr>
  150. </table>
  151. </form>
  152. % if result:
  153. <div id="generation-time">
  154. Results
  155. % if result.cached:
  156. <a id="cv-cached" href="#">cached<span>To save time (and money), this tool will retain the results of checks for up to 72 hours. This includes the URLs of the checked sources, but neither their content nor the content of the article. Future checks on the same page (assuming it remains unchanged) will not involve additional search queries, but a fresh comparison against the source URL will be made. If the page is modified, a new check will be run.</span></a> from <abbr title="${result.cache_time}">${result.cache_age} ago</abbr>. Originally
  157. % endif
  158. generated in <span class="mono">${round(result.time, 3)}</span>
  159. % if query.action == "search":
  160. seconds using <span class="mono">${result.queries}</span> quer${"y" if result.queries == 1 else "ies"}.
  161. % else:
  162. seconds.
  163. % endif
  164. <a href="${request.script_root | h}?lang=${query.lang | h}&amp;project=${query.project | h}&amp;oldid=${query.oldid or query.page.lastrevid | h}&amp;action=${query.action | h}&amp;${"use_engine={0}&use_links={1}".format(int(query.use_engine not in ("0", "false")), int(query.use_links not in ("0", "false"))) if query.action == "search" else "" | h}${"url=" if query.action == "compare" else ""}${query.url if query.action == "compare" else "" | u}">Permalink.</a>
  165. </div>
  166. <div id="cv-result" class="${'red' if result.confidence >= T_SUSPECT else 'yellow' if result.confidence >= T_POSSIBLE else 'green'}-box">
  167. <table id="cv-result-head-table">
  168. <colgroup>
  169. <col>
  170. <col>
  171. <col>
  172. </colgroup>
  173. <tr>
  174. <td>
  175. <a href="${query.page.url}">${query.page.title | h}</a>
  176. % if query.oldid:
  177. @<a href="//${query.site.domain | h}/w/index.php?oldid=${query.oldid | h}">${query.oldid | h}</a>
  178. % endif
  179. % if query.redirected_from:
  180. <br />
  181. <span id="redirected-from">Redirected from <a href="//${query.site.domain | h}/w/index.php?title=${query.redirected_from.title | u}&amp;redirect=no">${query.redirected_from.title | h}</a>. <a href="${request.url | httpsfix, h}&amp;noredirect=1">Check original.</a></span>
  182. % endif
  183. </td>
  184. <td>
  185. <div>
  186. % if result.confidence >= T_SUSPECT:
  187. Violation&nbsp;Suspected
  188. % elif result.confidence >= T_POSSIBLE:
  189. Violation&nbsp;Possible
  190. % elif result.sources:
  191. Violation&nbsp;Unlikely
  192. % else:
  193. No&nbsp;Violation
  194. % endif
  195. </div>
  196. <div>${round(result.confidence * 100, 1)}%</div>
  197. <div>confidence</div>
  198. </td>
  199. <td>
  200. % if result.url:
  201. <a href="${result.url | h}">${result.url | urlstrip, h}</a>
  202. % else:
  203. <span id="result-head-no-sources">No matches found.</span>
  204. % endif
  205. </td>
  206. </tr>
  207. </table>
  208. </div>
  209. % if query.turnitin_result:
  210. <div id="turnitin-container" class="${'red' if query.turnitin_result.reports else 'green'}-box">
  211. <div id="turnitin-title">Turnitin Results</div>
  212. % if query.turnitin_result.reports:
  213. <table id="turnitin-table"><tbody>
  214. % for report in turnitin_result.reports:
  215. <tr><td class="turnitin-table-cell"><a href="https://tools.wmflabs.org/eranbot/ithenticate.py?rid=${report.reportid}">Report ${report.reportid}</a> for text added at <a href="https://${query.lang}.wikipedia.org/w/index.php?title=${query.title}&amp;diff=${report.diffid}"> ${report.time_posted.strftime("%H:%M, %d %B %Y (UTC)")}</a>:
  216. <ul>
  217. % for source in report.sources:
  218. <li>${source['percent']}% of revision text (${source['words']} words) found at <a href="${source['url'] | h}">${source['url'] | h}</a></li>
  219. % endfor
  220. </ul></td></tr>
  221. % endfor
  222. </tbody></table>
  223. % else:
  224. <div id="turnitin-summary">No matching sources found.</div>
  225. % endif
  226. </div>
  227. % endif
  228. % if query.action == "search":
  229. <% skips = False %>
  230. <div id="sources-container">
  231. <div id="sources-title">Checked Sources</div>
  232. % if result.sources:
  233. <table id="cv-result-sources">
  234. <colgroup>
  235. <col>
  236. <col>
  237. <col>
  238. </colgroup>
  239. <tr>
  240. <th>URL</th>
  241. <th>Confidence</th>
  242. <th>Compare</th>
  243. </tr>
  244. % for i, source in enumerate(result.sources):
  245. <tr ${'class="source-default-hidden"' if i >= 10 else 'id="source-row-selected"' if i == 0 else ""}>
  246. <td><a ${'id="source-selected"' if i == 0 else ""} class="source-url" href="${source.url | h}">${source.url | h}</a></td>
  247. <td>
  248. % if source.excluded:
  249. <span class="source-excluded">Excluded</span>
  250. % elif source.skipped:
  251. <% skips = True %>
  252. <span class="source-skipped">Skipped</span>
  253. % else:
  254. <span class="source-confidence ${"source-suspect" if source.confidence >= T_SUSPECT else "source-possible" if source.confidence >= T_POSSIBLE else "source-novio"}">${round(source.confidence * 100, 1)}%</span>
  255. % endif
  256. </td>
  257. <td>
  258. <a href="${request.script_root | h}?lang=${query.lang | h}&amp;project=${query.project | h}&amp;oldid=${query.oldid or query.page.lastrevid | h}&amp;action=compare&amp;url=${source.url | u}">Compare</a>
  259. </td>
  260. </tr>
  261. % endfor
  262. </table>
  263. % else:
  264. <div class="cv-source-footer">
  265. No sources checked.
  266. </div>
  267. % endif
  268. % if len(result.sources) > 10:
  269. <div id="cv-additional" class="cv-source-footer">
  270. ${len(result.sources) - 10} URL${"s" if len(result.sources) > 11 else ""} with lower confidence hidden. <a id="show-additional-sources" href="#">Show them.</a>
  271. </div>
  272. % endif
  273. % if skips or result.possible_miss:
  274. <div class="cv-source-footer">
  275. The search ended early because a match was found with high confidence. <a href="${request.url | httpsfix, h}&amp;noskip=1">Do a complete check.</a>
  276. </div>
  277. % endif
  278. </div>
  279. % endif
  280. <div id="cv-chain-container">
  281. <table id="cv-chain-table">
  282. <tr>
  283. <td class="cv-chain-cell">Article: <div class="cv-chain-detail"><p>${highlight_delta(result.article_chain, result.best.chains[1] if result.best else None)}</p></div></td>
  284. <td class="cv-chain-cell">Source: <div class="cv-chain-detail"><p>${highlight_delta(result.best.chains[0], result.best.chains[1]) if result.best else ""}</p></div></td>
  285. </tr>
  286. </table>
  287. </div>
  288. % endif
  289. <%include file="/support/footer.mako"/>