#!/usr/bin/env python2.5
# Copyright 2009 bjweeks, MZMcBride
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import datetime
import MySQLdb
import re
import urlparse
import wikitools
import settings
report_title = settings.rootpage + 'Possibly unreferenced biographies of living people'
report_template = u'''
Possibly unreferenced [[WP:BLP|biographies of living people]]. If unreferenced, these \
biographies should be tagged with {{tlx|BLP unsourced}}. Data as of <onlyinclude>%s</onlyinclude>.
{| class="wikitable sortable plainlinks" style="width:100%%; margin:auto;"
|- style="white-space:nowrap;"
! No.
! Biography
|-
%s
|}
'''
wiki = wikitools.Wiki(settings.apiurl)
wiki.login(settings.username, settings.password)
conn = MySQLdb.connect(host=settings.host, db=settings.dbname, read_default_file='~/.my.cnf')
cursor = conn.cursor()
cursor.execute('''
/* possunsourcedbios.py SLOW_OK */
SELECT
page_title,
el_index
FROM page
JOIN categorylinks
ON cl_from = page_id
LEFT JOIN externallinks
ON el_from = page_id
WHERE page_namespace = 0
AND page_is_redirect = 0
AND cl_to = "Living_people"
LIMIT 200000;
''')
page_dict = {}
output_list = []
for row in cursor.fetchall():
title = row[0]
if not row[1]:
output_list.append(title)
continue
url = urlparse.urlparse(row[1])
domain = url.netloc[:-1]
if title in page_dict:
page_dict[title].append(domain)
else:
page_dict[title] = [domain]
for title, domain_list in page_dict.iteritems():
for domain in domain_list:
if domain != 'org.wikipedia.en':
break
else:
output_list.append(title)
i = 1
output = []
for item in output_list:
page_title = u'%s' % unicode(item, 'utf-8')
page = wikitools.Page(wiki, page_title, followRedir=False)
if not re.search(r'(==.*(further reading(s)?|bibliography|reference(s)?|external link(s)?).*==|<ref|http://)', page.getWikiText(), re.I|re.U):
table_row = u'''| %d
| [[%s]]
|-''' % (i, page_title)
output.append(table_row)
i += 1
cursor.execute('SELECT UNIX_TIMESTAMP() - UNIX_TIMESTAMP(rc_timestamp) FROM recentchanges ORDER BY rc_timestamp DESC LIMIT 1;')
rep_lag = cursor.fetchone()[0]
current_of = (datetime.datetime.utcnow() - datetime.timedelta(seconds=rep_lag)).strftime('%H:%M, %d %B %Y (UTC)')
report = wikitools.Page(wiki, report_title)
report_text = report_template % (current_of, '\n'.join(output))
report_text = report_text.encode('utf-8')
report.edit(report_text, summary=settings.editsumm, bot=1)
cursor.close()
conn.close()