Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

255

256

257

258

259

260

261

262

263

264

265

266

267

268

269

270

271

272

273

274

275

276

277

278

279

280

281

282

283

284

285

286

287

288

289

290

291

292

293

294

295

296

297

298

299

300

301

302

303

304

305

306

307

308

309

310

311

312

313

314

315

316

317

318

319

320

321

322

323

324

325

326

327

328

329

330

331

332

333

334

335

336

337

338

339

340

341

342

343

344

345

346

347

348

349

350

351

352

353

354

355

356

357

#!/usr/bin/python 

# -*- coding: utf-8 -*- 

''' 

 

get coordinates from the Monuments database and 

add coordinate template to articles in Wikipedia 

 

@author Kentaur 

 

Usage: 

# loop through all countries 

python add_coord_to_articles.py 

 

# work on specific country-lang 

python add_coord_to_articles.py -countrycode:XX -langcode:YY 

 

''' 

import re 

 

import pywikibot 

 

import erfgoedbot.common as common 

import erfgoedbot.monuments_config as mconfig 

from erfgoedbot.database_connection import ( 

close_database_connection, 

connect_to_commons_database, 

connect_to_monuments_database 

) 

 

# coordinate templates for different language wikipedias 

wikiData = { 

('et'): { 

'coordTemplate': 'Coordinate', 

# coordTemplateSyntax % (lat, lon, countrycode.upper() ) 

'coordTemplateSyntax': '{{Coordinate|NS=%f|EW=%f|type=landmark|region=%s}}' 

}, 

('fr'): { 

'coordTemplate': 'coord', 

# {{coord|52.51626|13.3777|type:landmark_region:DE|format=dms|display=title}} 

'coordTemplateSyntax': '{{coord|%f|%f|type:landmark_region=%s|format=dms|display=title}}' 

} 

} 

 

 

# "constants" 

 

# wikipedia article namespace 

WP_ARTICLE_NS = 0 

# wikipedia category namespace 

WP_CATEGORY_NS = 14 

# output debug messages 

DEBUG = True 

 

 

# classes 

 

class Monument: 

# Constructor with default arguments 

def __init__(self, id=None): 

self.id = id 

self.name = '' 

self.country = '' 

self.wikilang = '' 

self.article = '' 

self.lat = None 

self.lon = None 

self.source = '' 

 

 

# functions 

 

 

def processCountry(countryconfig, coordconfig, connMon, cursorMon): 

''' 

Work on a single country. 

''' 

if (not coordconfig or not coordconfig.get('coordTemplate')): 

# No template found, just skip. 

pywikibot.output( 

'Language: {0} has no coordTemplate set!'.format( 

countryconfig.get('lang'))) 

return False 

 

(connWiki, cursorWiki) = connect_to_commons_database( 

countryconfig.get('lang')) 

 

withCoordinates = getMonumentsWithCoordinates( 

countryconfig.get('country'), countryconfig.get('lang'), cursorMon) 

 

articleNames = [] 

duplicateArticles = [] 

monumentsWithArticle = [] 

 

for aMonument in withCoordinates: 

article_name = '' 

result = re.match("\[\[(.+?)\|.+?\]\]", aMonument.name) 

if (result and result.group(1)): 

article_name = result.group(1) 

 

result = re.match("\[\[([^\|]+?)\]\]", aMonument.name) 

if (result and result.group(1)): 

article_name = result.group(1) 

 

if (article_name): 

if article_name not in duplicateArticles: 

if article_name in articleNames: 

duplicateArticles.append(article_name) 

articleNames.remove(article_name) 

for sMon in monumentsWithArticle: 

if (sMon.article == article_name): 

monumentsWithArticle.remove(sMon) 

break 

else: 

articleNames.append(article_name) 

aMonument.article = article_name 

monumentsWithArticle.append(aMonument) 

 

if len(duplicateArticles): 

pywikibot.output('Multiple references to following articles: %s in monument lists! Skipped those.' % duplicateArticles[:]) 

 

for aMonument in monumentsWithArticle: 

PageNs = WP_ARTICLE_NS 

followRedirect = True 

(retStatus, pageId, redirNs, redirTitle) = getPageId(aMonument.article, connWiki, cursorWiki, PageNs, followRedirect) 

if (retStatus == 'FOLLOWED_REDIR' and redirNs == WP_ARTICLE_NS): 

aMonument.article = redirTitle 

if (pageId): 

if not hasCoordinates(pageId, countryconfig.get('lang'), cursorWiki): 

addCoords(countryconfig, aMonument, coordconfig) 

 

 

def getMonumentsWithCoordinates(countrycode, lang, cursor): 

''' 

Get monuments with coordinates from monuments database for a certain country/language combination. 

''' 

result = [] 

query = ( 

"SELECT id, name, lat, lon, source " 

"FROM monuments_all " 

"WHERE lat<>0 AND lon<>0 AND country=%s AND lang=%s") 

cursor.execute(query, (countrycode, lang)) 

 

# result = cursor.fetchall () 

while True: 

try: 

row = cursor.fetchone() 

aMon = Monument() 

aMon.country = countrycode 

aMon.wikilang = lang 

(aMon.id, aMon.name, aMon.lat, aMon.lon, aMon.source) = row 

result.append(aMon) 

except TypeError: 

break 

 

return result 

 

 

def hasCoordinates(pageId, lang, cursor): 

''' 

check if Article has Article coords in WP coords DB 

''' 

 

if (pageId and lang): 

coordTable = 'u_dispenser_p.coord_' + lang + 'wiki' 

 

# check if primary coordinate i.e. article coordinate exists for pageId 

query = ( 

"SELECT gc_from " 

"FROM %s " 

"WHERE (gc_from = %d AND gc_primary = 1) " 

"LIMIT 1") 

# FIXME escape & sanitize coordTable and pageId 

cursor.execute(query, (coordTable, int(pageId))) 

 

if (cursor.rowcount > 0): 

return True 

else: 

return False 

else: 

return False 

 

 

def getPageId(pageName, conn, cursor, 

pageNamespace=WP_ARTICLE_NS, followRedirect=False): 

''' 

get Wikipedia pagename pageId 

''' 

 

# underscores 

pageName = pageName.replace(' ', '_') 

retStatus = '' 

pageId = '' 

redirNs = '' 

redirTitle = '' 

 

# FIXME page_titles like 'Château_de_Bercy' won't work, but titles like 'Käru' do ?? 

query = ( 

"SELECT page_id, page_is_redirect " 

"FROM page " 

"WHERE page_namespace = %s AND page_title = %s") 

cursor.execute(query, (pageNamespace, pageName)) 

if DEBUG: 

print(cursor._executed) 

print('rowcount: %d ' % cursor.rowcount) 

 

if (cursor.rowcount > 0): 

row = cursor.fetchone() 

(pageId, IsRedirect) = row 

if (IsRedirect): 

if (followRedirect): 

(redirNs, redirTitle) = getRedirPageNsTitle(pageId, cursor) 

if not isinstance(redirTitle, str): 

redirTitle = str(redirTitle, encoding="utf-8") 

(dummy0, pageId, dummy1, dummy2) = getPageId(redirTitle, conn, cursor, redirNs) 

retStatus = 'FOLLOWED_REDIR' 

else: 

retStatus = 'REDIRECT' 

else: 

retStatus = 'OK' 

 

return (retStatus, pageId, redirNs, redirTitle) 

 

 

def getRedirPageNsTitle(pageId, cursor): 

''' 

Get redirect page namespace and title. 

''' 

 

if (pageId): 

pageNs = '' 

pageTitle = '' 

 

query = ( 

"SELECT rd_namespace, rd_title " 

"FROM redirect " 

"WHERE rd_from = %s") 

cursor.execute(query, (pageId,)) 

 

if (cursor.rowcount > 0): 

row = cursor.fetchone() 

(pageNs, pageTitle) = row 

 

return (pageNs, pageTitle) 

 

 

def addCoords(countryconfig, monument, coordconfig): 

''' 

Add the coordinates to article. 

''' 

countrycode = countryconfig.get('country') 

lang = countryconfig.get('lang') 

if (countrycode and lang): 

coordTemplate = coordconfig.get('coordTemplate') 

coordTemplateSyntax = coordconfig.get('coordTemplateSyntax') 

site = pywikibot.getSite(lang, 'wikipedia') 

 

page = pywikibot.Page(site, monument.article) 

try: 

text = page.get() 

except pywikibot.NoPage: # First except, prevent empty pages 

return False 

except pywikibot.IsRedirectPage: # second except, prevent redirect 

pywikibot.output('%s is a redirect!' % monument.article) 

return False 

except pywikibot.Error: # third exception, take the problem and print 

pywikibot.output("Some error, skipping..") 

return False 

 

if coordTemplate in page.templates(): 

return False 

 

newtext = text 

replCount = 1 

coordText = coordTemplateSyntax % (monument.lat, monument.lon, 

countrycode.upper()) 

localCatName = pywikibot.getSite().namespace(WP_CATEGORY_NS) 

catStart = r'\[\[(' + localCatName + '|Category):' 

catStartPlain = '[[' + localCatName + ':' 

replacementText = '' 

replacementText = coordText + '\n\n' + catStartPlain 

 

# insert coordinate template before categories 

newtext = re.sub(catStart, replacementText, newtext, replCount, flags=re.IGNORECASE) 

 

if text != newtext: 

try: 

source_link = common.get_source_link( 

monument.source, 

countryconfig.get('type')) 

except ValueError: 

source_link = '' 

comment = 'Adding template %s based on %s, # %s' % (coordTemplate, source_link, monument.id) 

pywikibot.showDiff(text, newtext) 

modPage = pywikibot.input('Modify page: %s ([y]/n) ?' % (monument.article)) 

if (modPage.lower == 'y' or modPage == ''): 

page.put(newtext, comment) 

return True 

else: 

return False 

else: 

return False 

 

 

def main(): 

countrycode = '' 

lang = '' 

skip_wd = False 

connMon = None 

cursorMon = None 

 

(connMon, cursorMon) = connect_to_monuments_database() 

 

for arg in pywikibot.handleArgs(): 

option, sep, value = arg.partition(':') 

if option == '-countrycode': 

countrycode = value 

elif option == '-langcode': 

lang = value 

elif option == '-skip_wd': 

skip_wd = True 

else: 

raise Exception( 

'Bad parameters. Expected "-countrycode", "-langcode", ' 

'"-skip_wd" or pywikibot args. Found "{}"'.format(option)) 

 

if countrycode and lang: 

if not mconfig.countries.get((countrycode, lang)): 

pywikibot.output('I have no config for countrycode "%s" in language "%s"' % (countrycode, lang)) 

return False 

pywikibot.output('Working on countrycode "%s" in language "%s"' % (countrycode, lang)) 

processCountry(mconfig.countries.get((countrycode, lang)), 

wikiData.get(lang), connMon, cursorMon) 

elif countrycode or lang: 

raise Exception('The "countrycode" and "langcode" arguments must ' 

'be used together.') 

else: 

for (countrycode, lang), countryconfig in mconfig.filtered_countries( 

skip_wd=skip_wd): 

pywikibot.output('Working on countrycode "%s" in language "%s"' % (countrycode, lang)) 

try: 

processCountry( 

countryconfig, wikiData.get(lang), connMon, cursorMon) 

except Exception as e: 

pywikibot.error( 

'Unknown error occurred when processing country ' 

'{0} in lang {1}\n{2}'.format(countrycode, lang, str(e))) 

continue 

 

close_database_connection(connMon, cursorMon) 

 

 

if __name__ == "__main__": 

pywikibot.log('Start of %s' % __file__) 

try: 

main() 

finally: 

pywikibot.stopme()