/usr/lib/x86_64-linux-gnu/referencer/isi-plugin.py is in referencer 1.2.1-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 | #!/usr/bin/env python
# A referencer plugin to get document info from ISI Web of Science using
# the Title/Author/Year fields of the document (any or all of them)
#
# Copyright 2008 Mario Castro, Yoav Avitzour
#
# 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 os
import referencer
from referencer import _
import sys, urllib2, urllib
import gobject
import gtk
from xml.dom import minidom
try:
from titlecase import titlecase
UseTitlecase = True
except ImportError:
UseTitlecase = False
DEFAULTMAXRECORDS = 10
referencer_plugin_info = {
"author": "Mario Castro, Yoav Avitzour",
"version": "0.1",
"ui":
"""
<ui>
<menubar name='MenuBar'>
<menu action='DocMenu'>
<placeholder name='PluginDocMenuActions'>
<menuitem action='_plugin_isi'/>
</placeholder>
</menu>
</menubar>
<toolbar name='ToolBar'>
<placeholder name='PluginToolBarActions'>
<toolitem action='_plugin_isi'/>
</placeholder>
</toolbar>
<popup name='DocPopup'>
<placeholder name='PluginDocPopupActions'>
<menuitem action='_plugin_isi'/>
</placeholder>
</popup>
</ui>
""",
"longname": _("ISI Web of Science resolver (requires subscription)"),
"action": _("Get metadata from ISI Web of Science"),
"tooltip": _("ISI Web of Science resolver (requires subscription)")}
referencer_plugin_actions = [{
"name":"_plugin_isi",
"label":_("ISI Info"),
"tooltip":_("Retrieve metadata for the selected documents from ISI Web of Science"),
"icon":"_stock:gtk-edit",
"callback":"do_action",
"sensitivity":"sensitivity_genkey",
"accelerator":"<control>i"
}]
referencer_plugin_capabilities = ["resolve_metadata"]
def can_resolve_metadata (doc):
if doc.get_field ("title"):
return 10
elif doc.get_field ("author") and doc.get_field("year"):
return 5
return -1
def resolve_metadata (document, method=None):
#do search
try:
searchres = do_search(document)
except:
return False
#throw exception on server error: probably because IP is not allowed
err = get_field(searchres,"ERROR")
if err:
serverExcDia = serverException(err)
response = serverExcDia.run()
serverExcDia.destroy()
return False
nrecs = int(get_field(searchres,"COUNT"))
isi_recs = searchres.getElementsByTagName("REC")
if nrecs>1:
rec = choose_record(document, nrecs, isi_recs)
if rec is not False:
rec.set_document_from_record(document)
else:
return False
elif nrecs == 1:
rec = isiRec(isi_recs[0])
rec.set_document_from_record(document)
elif nrecs == 0:
noRec = noRecordFound(document)
response = noRec.run()
noRec.destroy()
return False
return True
class isiRec:
def __init__(self, isi_rec):
self.authors=''
self.abstract=''
self.keywords=''
self.journal=''
self.doi=''
self.pages=''
self.title=''
self.year=''
self.volume=''
self.isi_rec = isi_rec
self.set_fields_from_data(self.isi_rec)
def set_fields_from_data(self,isi_rec):
"""
xmlrec is a <REC> xml node
"""
xmldoc = isi_rec
self.authors=get_fields(xmldoc,"AuCollectiveName",' and ')
#self.authors = capitalize_authors(self.authors)
self.abstract=get_field(xmldoc,"abstract")
self.keywords=get_fields(xmldoc,"keyword",', ')
self.journal=get_field(xmldoc,"source_title")
if self.journal.isupper():
if UseTitlecase:
self.journal = titlecase(self.journal.lower())
else:
self.journal = self.journal.title()
doi=get_last_field(xmldoc,"article_no")
if len(doi) > 0:
self.doi = doi[4:]
else:
self.doi = doi
self.pages=get_field(xmldoc,"bib_pages")
if self.pages == '-':
artn = get_field(xmldoc,"article_no")
self.pages = artn[4:]
self.title=get_field(xmldoc,"item_title")
if self.title.isupper():
if UseTitlecase:
self.title = titlecase(self.title.lower())
else:
self.title = self.title.title()
self.year=get_attribute_from_field(xmldoc,"bib_issue","year")
self.volume=get_attribute_from_field(xmldoc,"bib_issue","vol")
def set_document_from_record(self,document):
if (len(self.year)>0):
document.set_field("year",self.year)
if (len(self.volume)>0):
document.set_field("volume",self.volume)
if (len(self.title)>0):
document.set_field("title",self.title)
if (len(self.authors)>0):
document.set_field("author",self.authors)
if (len(self.doi)>0):
document.set_field("doi",self.doi)
if (len(self.journal)>0):
document.set_field("journal",self.journal)
if (len(self.pages)>0):
document.set_field("pages",self.pages)
if (len(self.abstract)>0):
document.set_field("abstract",self.abstract)
if (len(self.keywords)>0):
document.set_field("keywords",self.keywords)
return document
class preferencesDialog(gtk.Dialog):
def __init__(self, parent = None):
gtk.Dialog.__init__(self,"ISI plugin preferences",
parent,
gtk.DIALOG_MODAL |
gtk.DIALOG_DESTROY_WITH_PARENT,
(gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT,
gtk.STOCK_OK, gtk.RESPONSE_OK))
hbox = gtk.HBox()
label = gtk.Label("Maximum no. of records to retreive from ISI")
adjustment = gtk.Adjustment(value=get_MAXRECORDS(), lower=0, upper=100,
step_incr=1, page_incr=1)
self.MaxRecords = gtk.SpinButton(adjustment,1)
hbox.pack_start(label)
hbox.pack_start(self.MaxRecords)
self.vbox.pack_start(hbox,padding=3)
hbox = gtk.HBox()
text = """The ISI plugin uses the Title, Author and Year to find a matching record in the ISI database. If there is more than one match, a Record Chooser dialog opens. Set here the maximum number of records to retrieve for such cases."""
label = gtk.Label(text)
label.set_line_wrap(True)
image = gtk.Image()
image.set_from_stock(gtk.STOCK_DIALOG_INFO,gtk.ICON_SIZE_DIALOG)
hbox.pack_start(image)
hbox.pack_start(label)
self.vbox.pack_start(hbox,padding=3)
self.vbox.show_all()
class documentDisplay(gtk.Window):
def __init__(self,document = None, parent = None):
gtk.Window.__init__(self)
self.set_title("Current document properties")
self.myparent = parent
self.set_transient_for(parent)
self.set_destroy_with_parent(True)
self.vbox = gtk.VBox()
self.add(self.vbox)
if document is not None:
fields = ['title','author','journal','year','pages']
table = gtk.Table(len(fields),2)
row = 0
for field in fields:
label = gtk.Label()
label.set_markup("<b>"+field.title()+": "+"</b>")
label.set_alignment(0.0, 0.5)
value = gtk.Label(document.get_field(field))
value.set_line_wrap(True)
value.set_alignment(0.0, 0.5)
table.attach(label,0,1,row,row+1,gtk.FILL)
table.attach(value,1,2,row,row+1,gtk.EXPAND|gtk.FILL)
row += 1
self.vbox.pack_start(table)
self.vbox.show_all()
def set_position(self):
(xp,yp) = self.myparent.get_position()
(wp,hp) = self.get_size()
x = xp
y = yp - hp - 30
self.move(x,y)
class serverException(gtk.Dialog):
def __init__(self, err, parent=None):
gtk.Dialog.__init__(self,"ISI plugin",
parent,
gtk.DIALOG_MODAL |
gtk.DIALOG_DESTROY_WITH_PARENT,
(gtk.STOCK_OK, gtk.RESPONSE_OK))
text = """
<b> ISI Error</b>
The server returned an error:
"%s"
Your current IP address probably does not have access to the ISI webservice.
""" % (err)
label = gtk.Label()
label.set_markup(text)
self.vbox.pack_start(label)
self.vbox.show_all()
class noRecordFound(gtk.Dialog):
def __init__(self, document = None, parent = None):
gtk.Dialog.__init__(self,"ISI plugin",
parent,
gtk.DIALOG_MODAL |
gtk.DIALOG_DESTROY_WITH_PARENT,
(gtk.STOCK_OK, gtk.RESPONSE_OK))
text = """
<b> ISI query did not find any matching records</b>
You may try one of the following:
* Remove words representing symbols from the title
(such as alpha, \\alpha, etc.)
* Remove hyphened words from the title
* Remember that the ISI database does not contain
records earlier than 1975
"""
label = gtk.Label()
label.set_markup(text)
self.vbox.pack_start(label)
self.vbox.show_all()
self.showdoc = gtk.Button("Show document")
self.showdoc.connect("clicked",self.show_document_details)
self.showdoc.show()
label = gtk.Label()
label.show()
self.action_area.pack_start(self.showdoc)
self.action_area.pack_start(label,True,True)
self.action_area.reorder_child(self.showdoc,0)
self.action_area.reorder_child(label,1)
self.docDisp = documentDisplay(document,self)
def show_document_details(self, *args):
if self.docDisp.get_property("visible") == True:
self.docDisp.hide()
self.showdoc.set_label("Show document")
else:
self.docDisp.set_position()
self.docDisp.show()
self.showdoc.set_label("Hide document")
class recordChooser(gtk.Dialog):
def __init__(self,document, nrecs, records, parent = None):
gtk.Dialog.__init__(self,"ISI record chooser dialog",
parent,
gtk.DIALOG_DESTROY_WITH_PARENT,
(gtk.STOCK_CANCEL, gtk.RESPONSE_REJECT,
gtk.STOCK_OK, gtk.RESPONSE_OK))
self.document = document
self.records = records
label = gtk.Label("Found %d records, showing first %d" % (nrecs, len(records)))
self.vbox.pack_start(label,False,False,0)
self.recTree = gtk.TreeStore(bool,str,str,bool)
self.treeview = gtk.TreeView(self.recTree)
self.tvcolumn0 = gtk.TreeViewColumn()
self.tvcolumn1 = gtk.TreeViewColumn()
self.tvcolumn2 = gtk.TreeViewColumn()
scwindow = gtk.ScrolledWindow()
scwindow.set_policy(gtk.POLICY_AUTOMATIC,gtk.POLICY_AUTOMATIC)
scwindow.add_with_viewport(self.treeview)
self.vbox.pack_start(scwindow,True,True,0)
self.treeview.append_column(self.tvcolumn0)
self.treeview.append_column(self.tvcolumn1)
self.treeview.append_column(self.tvcolumn2)
self.tcell = gtk.CellRendererText()
self.bcell = gtk.CellRendererToggle()
self.bcell.set_radio(True)
self.bcell.connect("toggled", self.toggled_cb, (self.recTree, 3))
self.bcell.set_property('activatable',True)
self.tvcolumn0.pack_start(self.bcell, True)
self.tvcolumn0.add_attribute(self.bcell, 'visible', 0)
self.tvcolumn0.add_attribute(self.bcell, 'active', 3)
self.tvcolumn1.pack_start(self.tcell, True)
self.tvcolumn1.add_attribute(self.tcell, 'text', 1)
self.tvcolumn2.pack_start(self.tcell, True)
self.tvcolumn2.add_attribute(self.tcell, 'text', 2)
self.fields = ['authors','title','journal','volume','pages','year']
if records is not None:
self.add_records()
self.current_record = 0
self.treeview.expand_all()
self.resize(400,300)
self.vbox.show_all()
self.showdoc = gtk.Button("Show document")
self.showdoc.connect("clicked",self.show_document_details)
self.showdoc.show()
label = gtk.Label()
label.show()
self.action_area.pack_start(self.showdoc)
self.action_area.pack_start(label,True,True)
self.action_area.reorder_child(self.showdoc,0)
self.action_area.reorder_child(label,1)
self.docDisp = documentDisplay(self.document,self)
def add_records(self):
outerrow = 0
for rec in self.records:
outeriter = self.recTree.insert(None,outerrow)
if outerrow == 0:
isactive = True
else:
isactive = False
self.recTree.set(outeriter,0,True,
1,'Record '+str(outerrow+1),3,isactive)
for innerrow in range(len(self.fields)):
self.recTree.set(self.recTree.insert(outeriter,innerrow),
0,False,
1,self.fields[innerrow],
2,eval('rec.'+self.fields[innerrow]),
3,False)
outerrow += 1
def toggled_cb(self, cell, path, user_data):
model, column = user_data
for row in model:
row[column] = False
model[path][column] = True
self.current_record = path
return
def show_document_details(self, *args):
if self.docDisp.get_property("visible") == True:
self.docDisp.hide()
self.showdoc.set_label("Show document")
else:
self.docDisp.set_position()
self.docDisp.show()
self.showdoc.set_label("Hide document")
def capitalize_authors(authors):
spltau = authors.split()
nau = (len(spltau)+1)/3
for i in range(nau):
spltau[3*i] = spltau[3*i].capitalize()
spltau[3*i+1] = spltau[3*i+1].upper()
return ' '.join(spltau)
def get_fields (doc, field, separator):
value = doc.getElementsByTagName(field)
output=''
if len(value) == 0:
return ""
else:
length=len(value)
if (len(value[0].childNodes) == 0):
return ""
else:
#for items in value:
for index in range(length-1):
output+=value[index].childNodes[0].data.encode("utf-8")+separator
return output+value[length-1].childNodes[0].data.encode("utf-8")
def get_last_field (doc, field):
value = doc.getElementsByTagName(field)
if len(value) == 0:
return ""
else:
if (len(value[0].childNodes) == 0):
return ""
else:
for items in value:
last=items.childNodes[0].data.encode("utf-8")
return last
def getText(nodelist):
"""
Recursively traverse the nodelist for any text nodes.
Needed for situations like: Swans and <b>bees</b> and the like
"""
rc = []
for node in nodelist:
if node.nodeType == node.TEXT_NODE:
rc.append(node.data)
elif node.nodeType == node.ELEMENT_NODE:
rc.append(getText(node.childNodes))
return u''.join(rc).strip()
def get_field (doc, field):
value = doc.getElementsByTagName(field)
if len(value) == 0:
return ""
else:
if (len(value[0].childNodes) == 0):
return ""
else:
return getText(value[0].childNodes)
def get_attribute_from_field (doc, field, attr):
value = doc.getElementsByTagName(field)
return value[0].getAttribute(attr)
def do_search (document):
title = document.get_field("title")
year = document.get_field ("year")
author= document.get_field ("author")
url0='http://estipub.isiknowledge.com/esti/cgi?action=search&viewType=xml&mode=GeneralSearch&product=WOS&ServiceName=GeneralSearch&filter=&Start=&End=%d&DestApp=WOS' % (get_MAXRECORDS())
url0+= "&" + get_query(document)
print "isi query url:", url0
if False: #debugging
#data0 = open("plugins/isi-plugin-testdata.txt").read()
data0 = open("plugins/isi-plugin-testdata2.txt").read()
else:
data0 = referencer.download(
_("Obtaining data from ISI-WebOfScience"),
_("Querying for %s/%s/%s") % (author,title,year),
url0)
print data0
xmldoc0 = minidom.parseString(data0)
return xmldoc0
def get_query(document):
query = {}
title = document.get_field("title")
title = remove_non_ascii_chars(title)
if len(title) > 0:
query['topic'] = title
year = document.get_field ("year")
if len(year)>0:
query['year'] = year
author= document.get_field ("author")
author = remove_non_ascii_chars(author)
if len(author)>0:
query['author'] = author
return urllib.urlencode(query)
def remove_non_ascii_chars(si):
for s in si:
if ord(s)>126 or ord(s) < 32 or s in "?!.,()":
si = si.replace(s,'',1)
return si
#>-- Start the record chooser dialog in case more than one matching
#>-- record was found
def choose_record(document,nrecs,isi_recs):
records = []
for isi_rec in isi_recs:
irec = isiRec(isi_rec)
records.append(irec)
recChoose = recordChooser(document,nrecs,records)
response = recChoose.run()
if response == int(gtk.RESPONSE_OK):
currentrec = recChoose.current_record
currentrec = records[int(currentrec)]
else:
currentrec = False
recChoose.destroy()
return currentrec
def get_MAXRECORDS():
maxrecords = referencer.pref_get ("isi_maxrecords")
if (len(maxrecords)==0):
maxrecords = DEFAULTMAXRECORDS
return int(maxrecords)
def set_MAXRECORDS(maxrecords):
referencer.pref_set ("isi_maxrecords", str(maxrecords))
#>-- Main referencer function
def do_action(library,documents):
empty = True
s = ""
assigned_keys = {}
for document in documents:
resolve_metadata(document)
return True
#>-- Main referencer preferences function
def referencer_config():
prefs = preferencesDialog()
response = prefs.run()
if response == int(gtk.RESPONSE_OK):
set_MAXRECORDS(prefs.MaxRecords.get_value_as_int())
prefs.destroy()
|