Browse Source

Copyvio detection interface is (mostly) done.

pull/24/head
Ben Kurtovic 12 years ago
parent
commit
7d92f7a76b
3 changed files with 306 additions and 13 deletions
  1. +206
    -13
      pages/copyvios.mako
  2. +88
    -0
      static/css/copyvios.css
  3. +12
    -0
      static/js/copyvios.js

+ 206
- 13
pages/copyvios.mako View File

@@ -1,10 +1,165 @@
<%!
from collections import defaultdict
from datetime import datetime
from hashlib import sha256
from itertools import count
from os.path import expanduser
from re import sub, UNICODE
from sys import path
from time import time
from urlparse import parse_qs

import oursql

path.insert(0, "../earwigbot")

import earwigbot

def get_results(lang, project, title, query):
earwigbot.config.config.load("config.ts-earwigbot.json")
try:
site = earwigbot.wiki.get_site(lang=lang, project=project)
except earwigbot.wiki.SiteNotFoundError:
return None, None
page = site.get_page(title)
conn = open_sql_connection()
if not query.get("nocache"):
result = get_cached_results(page, conn)
if query.get("nocache") or not result:
result = get_fresh_results(page, conn)
return page, result

def open_sql_connection():
conn_args = earwigbot.config.config.wiki["_toolserverSQLCache"]
conn_args["read_default_file"] = expanduser("~/.my.cnf")
return oursql.connect(**conn_args)

def get_cached_results(page, conn):
query1 = "DELETE FROM cache WHERE cache_time < DATE_SUB(CURRENT_TIMESTAMP, INTERVAL 1 DAY)"
query2 = "SELECT cache_url, cache_time, cache_queries, cache_process_time FROM cache WHERE cache_id = ? AND cache_hash = ?"
pageid = page.pageid()
hash = sha256(page.get()).hexdigest()
t_start = time()

with conn.cursor() as cursor:
cursor.execute(query1)
cursor.execute(query2, (pageid, hash))
results = cursor.fetchall()
if not results:
return None

url, cache_time, num_queries, original_tdiff = results[0]
result = page.copyvio_compare(url, min_confidence=0.5)
result.cached = True
result.queries = num_queries
result.tdiff = time() - t_start
result.original_tdiff = original_tdiff
result.cache_time = cache_time.strftime("%b %d, %Y %H:%M:%S UTC")
result.cache_age = format_date(cache_time)
return result

def format_date(cache_time):
diff = datetime.utcnow() - cache_time
if diff.seconds > 3600:
return "{0} hours".format(diff.seconds / 3600)
if diff.seconds > 60:
return "{0} minutes".format(diff.seconds / 60)
return "{0} seconds".format(diff.seconds)

def get_fresh_results(page, conn):
t_start = time()
result = page.copyvio_check(min_confidence=0.5, max_queries=10)
result.cached = False
result.tdiff = time() - t_start
cache_result(page, result, conn)
return result

def cache_result(page, result, conn):
pageid = page.pageid()
hash = sha256(page.get()).hexdigest()
query1 = "SELECT 1 FROM cache WHERE cache_id = ?"
query2 = "DELETE FROM cache WHERE cache_id = ?"
query3 = "INSERT INTO cache VALUES (?, ?, ?, CURRENT_TIMESTAMP, ?, ?)"
with conn.cursor() as cursor:
cursor.execute(query1, (pageid,))
if cursor.fetchall():
cursor.execute(query2, (pageid,))
cursor.execute(query3, (pageid, hash, result.url, result.queries,
result.tdiff))

def highlight_delta(chain, delta):
processed = []
prev = chain.START
i = 0
all_words = chain.text.split()
paragraphs = chain.text.split("\n")
for paragraph in paragraphs:
processed_words = []
words = paragraph.split(" ")
for word, i in zip(words, count(i)):
try:
next = strip_word(all_words[i+1])
except IndexError:
next = chain.END
sword = strip_word(word)
before = prev in delta.chain and sword in delta.chain[prev]
after = sword in delta.chain and next in delta.chain[sword]
is_first = i == 0
is_last = i + 1 == len(all_words)
res = highlight_word(word, before, after, is_first, is_last)
processed_words.append(res)
prev = sword
processed.append(u" ".join(processed_words))
i += 1
return u"<br /><br />".join(processed)

def highlight_word(word, before, after, is_first, is_last):
if before and after:
# Word is in the middle of a highlighted block, so don't change
# anything unless this is the first word (force block to start) or
# the last word (force block to end):
res = word
if is_first:
res = u'<span class="cv-hl">' + res
if is_last:
res += u'</span>'
elif before:
# Word is the last in a highlighted block, so fade it out and then
# end the block; force open a block before the word if this is the
# first word:
res = fade_word(word, u"out") + u"</span>"
if is_first:
res = u'<span class="cv-hl">' + res
elif after:
# Word is the first in a highlighted block, so start the block and
# then fade it in; force close the block after the word if this is
# the last word:
res = u'<span class="cv-hl">' + fade_word(word, u"in")
if is_last:
res += u"</span>"
else:
# Word is completely outside of a highlighted block, so do nothing:
res = word
return res

def fade_word(word, dir):
if len(word) <= 4:
return u'<span class="cv-hl-{0}">{1}</span>'.format(dir, word)
if dir == u"out":
return u'{0}<span class="cv-hl-out">{1}</span>'.format(word[:-4], word[-4:])
return u'<span class="cv-hl-in">{0}</span>{1}'.format(word[:4], word[4:])

def strip_word(word):
return sub("[^\w\s-]", "", word.lower(), flags=UNICODE)

def urlstrip(url):
if url.startswith("http://"):
url = url[7:]
if url.startswith("www."):
url = url[4:]
if url.endswith("/"):
url = url[:-1]
return url
%>\
<%
query = parse_qs(environ["QUERY_STRING"])
@@ -15,15 +170,9 @@
except (KeyError, IndexError):
page = None
else:
earwigbot.config.config.load("config.ts-earwigbot.json")
try:
site = earwigbot.wiki.get_site(lang=lang, project=project)
except earwigbot.wiki.SiteNotFoundError:
page = None
else:
page = site.get_page(title)
page, result = get_results(lang, project, title, query)
%>\
<%include file="/support/header.mako" args="environ=environ, title='Copyvio Detector'"/>
<%include file="/support/header.mako" args="environ=environ, title='Copyvio Detector', add_css=('copyvios.css',), add_js=('copyvios.js',)"/>
<h1>Copyvio Detector</h1>
<p>This tool attempts to detect <a href="http://en.wikipedia.org/wiki/WP:COPYVIO">copyright violations</a> in Wikipedia articles.</p>
<form action="${environ['PATH_INFO']}" method="get">
@@ -42,20 +191,64 @@
<tr>
<td>Page title:</td>
% if page:
<td><input type="text" name="title" size="50" value="${page.title()}" /></td>
<td><input type="text" name="title" size="50" value="${page.title() | h}" /></td>
% else:
<td><input type="text" name="title" size="50" /></td>
% endif
</tr>
% if query.get("nocache") or page:
<tr>
<td>Bypass cache:</td>
% if query.get("nocache"):
<td><input type="checkbox" name="nocache" value="1" checked="checked" /></td>
% else:
<td><input type="checkbox" name="nocache" value="1" /></td>
% endif
</tr>
% endif
<tr>
<td><button type="submit">Submit</button></td>
</tr>
</table>
</form>
% if page:
<fieldset id="result">
<legend>Result for <a href="${page.url()}">${page.title()}</a>:</legend>
<p>Watch this space!</p>
</fieldset>
<div class="divider"></div>
<div id="cv-result-${'yes' if result.violation else 'no'}">
% if result.violation:
<h2 id="cv-result-header"><a href="${page.url()}">${page.title() | h}</a> is a suspected violation of <a href="${result.url | h}">${result.url | urlstrip}</a>.</h2>
% else:
<h2 id="cv-result-header">No violations detected in <a href="${page.url()}">${page.title() | h}</a>.</h2>
% endif
<ul id="cv-result-list">
<li><b><tt>${round(result.confidence * 100, 1)}%</tt></b> confidence of a violation.</li>
% if result.cached:
<li>Results are <a id="cv-cached" href="#">cached
<span>To save time (and money), this tool will retain the results of checks for up to 24 hours. This includes the URL of the "violated" source, but neither its 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.</span>
</a> from ${result.cache_time} (${result.cache_age} ago). <a href="${environ['REQUEST_URI'] | h}&amp;nocache=1">Bypass the cache.</a></li>
% else:
<li>Results generated in <tt>${round(result.tdiff, 3)}</tt> seconds using <tt>${result.queries}</tt> queries.</li>
% endif
<li><a id="cv-result-detail-link" href="#cv-result-detail" onclick="copyvio_toggle_details()">Show details:</a></li>
</ul>
<div id="cv-result-detail" style="display: none;">
<ul id="cv-result-detail-list">
<li>Markov chain size: Article: <tt>${result.article_chain.size()}</tt> / Source: <tt>${result.source_chain.size()}</tt> / Delta: <tt>${result.delta_chain.size()}</tt></li>
% if result.cached:
% if result.queries:
<li>Retrieved from cache in <tt>${round(result.tdiff, 3)}</tt> seconds (originally generated in <tt>${round(result.original_tdiff, 3)}</tt>s using <tt>${result.queries}</tt> queries; <tt>${round(result.original_tdiff - result.tdiff, 3)}</tt>s saved).</li>
% else:
<li>Retrieved from cache in <tt>${round(result.tdiff, 3)}</tt> seconds (originally generated in <tt>${round(result.original_tdiff, 3)}</tt>s; <tt>${round(result.original_tdiff - result.tdiff, 3)}</tt>s saved).</li>
% endif
% endif
<li><i>Fun fact:</i> The Wikimedia Foundation paid Yahoo! Inc. <a href="http://info.yahoo.com/legal/us/yahoo/search/bosspricing/details.html">$${result.queries * 0.0008} USD</a> for these results.</li>
</ul>
<table id="cv-chain-table">
<tr>
<td>Article: <div class="cv-chain-detail"><p>${highlight_delta(result.article_chain, result.delta_chain)}</p></div></td>
<td>Source: <div class="cv-chain-detail"><p>${highlight_delta(result.source_chain, result.delta_chain)}</p></div></td>
</tr>
</table>
</div>
</div>
% endif
<%include file="/support/footer.mako" args="environ=environ"/>

+ 88
- 0
static/css/copyvios.css View File

@@ -0,0 +1,88 @@
div#cv-result-yes {
padding: 0 10px 0 10px;
margin: 0 5px 10px 5px;
background-color: #FEE;
border: 1px solid #F77;
}

div#cv-result-no {
padding: 0 10px 0 10px;
margin: 0 5px 10px 5px;
background-color: #EFE;
border: 1px solid #7F7;
}

div#cv-result-detail {
padding: 0 10px 0 10px;
margin: 10px 10px 20px 10px;
background-color: #F3F3F3;
border: 1px solid #AAA;
}

table#cv-chain-table {
width: 100%;
border-spacing: 10px;
}

h2#cv-result-header {
margin-bottom: 0;
}

ul#cv-result-list {
margin-top: 0.5em;
}

ul#cv-result-detail-list {
margin-bottom: 0;
}

a#cv-cached {
position: relative;
}

a#cv-cached span {
display: none;
position: absolute;
top: 20px;
left: -50px;
width: 500px;
padding: 5px;
z-index: 1;
background: #F3F3F3;
border: 1px solid #AAA;
color: black;
}

a:active#cv-cached { color: #040; text-decoration: none; }
a:hover#cv-cached { text-decoration: none; }
a:hover#cv-cached span { display: block; }

div.cv-chain-detail {
padding: 0 10px 0 10px;
background-color: #FFF;
border: 1px solid #BBB;
}

span.cv-hl {
background: #FAA;
}

span.cv-hl-in {
background: #FCC;
background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(#FFF), to(#FAA)); /* Chrome, Safari 4+ */
background: -webkit-linear-gradient(left, #FFF, #FAA); /* Chrome 10+, Safari 5+ */
background: -moz-linear-gradient(left, #FFF, #FAA); /* Firefox 3.6+ */
background: -ms-linear-gradient(left, #FFF, #FAA); /* IE 10+ */
background: -o-linear-gradient(left, #FFF, #FAA); /* Opera 11.10+ */
background: linear-gradient(left, #FFF, #FAA);
}

span.cv-hl-out {
background: #FCC;
background: -webkit-gradient(linear, 0% 0%, 100% 0%, from(#FAA), to(#FFF)); /* Chrome, Safari 4+ */
background: -webkit-linear-gradient(left, #FAA, #FFF); /* Chrome 10+, Safari 5+ */
background: -moz-linear-gradient(left, #FAA, #FFF); /* Firefox 3.6+ */
background: -ms-linear-gradient(left, #FAA, #FFF); /* IE 10+ */
background: -o-linear-gradient(left, #FAA, #FFF); /* Opera 11.10+ */
background: linear-gradient(left, #FAA, #FFF);
}

+ 12
- 0
static/js/copyvios.js View File

@@ -0,0 +1,12 @@
function copyvio_toggle_details(details) {
link = document.getElementById("cv-result-detail-link");
details = document.getElementById("cv-result-detail");
if (link.innerHTML == "Show details:") {
details.style.display = "block";
link.innerHTML = "Hide details:";
} else {
details.style.display = "none";
link.innerHTML = "Show details:";
}
}

Loading…
Cancel
Save