-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdoiutil.py
28 lines (24 loc) · 984 Bytes
/
doiutil.py
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
# -*- encoding: utf-8 -*-
import itertools, logging
SCHEME = 'doi:'
RESOLVER = 'http://dx.doi.org'
OTHER_RESOLVERS = ['http://doi.acm.org']
logger = logging.getLogger('doiutil')
def toUrl(identifier):
# Based on DSpace's org.dspace.identifier.DOI#DOIToExternalForm
if identifier is None or identifier == '':
return None
if identifier.startswith(SCHEME):
return RESOLVER + '/' + identifier[len(SCHEME):]
if identifier.startswith('10.') and '/' in identifier:
return RESOLVER + '/' + identifier
for resolver in itertools.chain(OTHER_RESOLVERS, [RESOLVER]):
if identifier.startswith(resolver + '/10.'):
return RESOLVER + identifier[len(resolver):]
logger.warning('Ignorando DOI inválido: %r', identifier)
return None
def filter(url):
""" Retorna None se `url` não for um endereço de DOI válido e oficial """
if url is None or not url.startswith(RESOLVER + '/10.'):
return None
return url