コード例 #1
0
def url_doi_isbn_to_sfn_cit_ref(user_input, date_format) -> tuple:
    en_user_input = unquote(uninum2en(user_input))
    # Checking the user input for dot is important because
    # the use of dotless domains is prohibited.
    # See: https://features.icann.org/dotless-domains
    if '.' in en_user_input:
        # Try predefined URLs
        # Todo: The following code could be done in threads.
        if not user_input.startswith('http'):
            url = 'http://' + user_input
        else:
            url = user_input
        # TLD stands for top-level domain
        tldless_netloc = urlparse(url)[1].rpartition('.')[0]
        resolver = TLDLESS_NETLOC_RESOLVER(
            tldless_netloc[4:] if tldless_netloc.
            startswith('www.') else tldless_netloc)
        if resolver:
            return resolver(url, date_format)
        # DOIs contain dots
        m = DOI_SEARCH(unescape(en_user_input))
        if m:
            return doi_sfn_cit_ref(m[1], True, date_format)
        return urls_sfn_cit_ref(url, date_format)
    else:
        # We can check user inputs containing dots for ISBNs, but probably is
        # error prone.
        m = ISBN_10OR13_SEARCH(en_user_input)
        if m:
            try:
                return isbn_sfn_cit_ref(m[0], True, date_format)
            except IsbnError:
                pass
        return UNDEFINED_INPUT_SFN_CIT_REF
コード例 #2
0
ファイル: app.py プロジェクト: 5j9/yadkard
def url_doi_isbn_to_sfn_cit_ref(user_input, date_format) -> tuple:
    en_user_input = unquote(uninum2en(user_input))
    # Checking the user input for dot is important because
    # the use of dotless domains is prohibited.
    # See: https://features.icann.org/dotless-domains
    if '.' in en_user_input:
        # Try predefined URLs
        # Todo: The following code could be done in threads.
        if not user_input.startswith('http'):
            url = 'http://' + user_input
        else:
            url = user_input
        # TLD stands for top-level domain
        tldless_netloc = urlparse(url)[1].rpartition('.')[0]
        resolver = TLDLESS_NETLOC_RESOLVER(
            tldless_netloc[4:] if tldless_netloc.startswith('www.')
            else tldless_netloc)
        if resolver:
            return resolver(url, date_format)
        # DOIs contain dots
        m = DOI_SEARCH(unescape(en_user_input))
        if m:
            return doi_sfn_cit_ref(m[1], True, date_format)
        return urls_sfn_cit_ref(url, date_format)
    else:
        # We can check user inputs containing dots for ISBNs, but probably is
        # error prone.
        m = ISBN_10OR13_SEARCH(en_user_input)
        if m:
            try:
                return isbn_sfn_cit_ref(m[0], True, date_format)
            except IsbnError:
                pass
        return UNDEFINED_INPUT_SFN_CIT_REF
コード例 #3
0
ファイル: doi_test.py プロジェクト: 5j9/yadkard
 def test_doi1(self):
     self.assertEqual(
         "* {{cite journal | last=Atkins | first=Joshua H. | "
         "last2=Gershell | first2=Leland J. | title="
         "Selective anticancer drugs | journal=Nature Reviews Drug "
         "Discovery | publisher=Springer Nature | volume=1 | issue=7 | "
         "year=2002 | issn=1474-1776 | doi=10.1038/nrd842 | pages=491–492 "
         "| ref=harv}}",
         doi_sfn_cit_ref('https://doi.org/10.1038%2Fnrd842')[1],
     )
コード例 #4
0
ファイル: doi_test.py プロジェクト: coptrump/citer
 def test_doi_isbn_no_year(self):
     """Test when issue date is empty."""
     self.assertEqual(
         '* {{cite thesis | last=Ambati | first=V.R. '
         '| title=Forecasting water waves and currents :'
         ' a space-time approach '
         '| publisher=University Library/University of Twente '
         '| isbn=978-90-365-2632-6 | doi=10.3990/1.9789036526326 '
         '| ref=harv}}',
         doi_sfn_cit_ref('10.3990/1.9789036526326')[1])
コード例 #5
0
ファイル: doi_test.py プロジェクト: coptrump/citer
 def test_doi1(self):
     self.assertEqual(
         "* {{cite journal | last=Atkins | first=Joshua H. | "
         "last2=Gershell | first2=Leland J. | title="
         "Selective anticancer drugs | journal=Nature Reviews Drug "
         "Discovery | publisher=Springer Nature | volume=1 | issue=7 | "
         "year=2002 | issn=1474-1776 | doi=10.1038/nrd842 | pages=491–492 "
         "| ref=harv}}",
         doi_sfn_cit_ref('https://doi.org/10.1038%2Fnrd842')[1],
     )
コード例 #6
0
ファイル: doi_test.py プロジェクト: coptrump/citer
 def test_non_numeric_volume(self):
     self.assertEqual(
         '* {{cite journal | last=Niemeyer | first=Jurgen | last2=Hinken '
         '| first2=Johann H. | last3=Kautz | first3=Richard L. '
         '| title=Near-Zero Bias Arrays of Josephson Tunnel Junctions '
         'Providing Standard Voltages up to 1 V | journal=IEEE '
         'Transactions on Instrumentation and Measurement '
         '| publisher=Institute of Electrical and Electronics Engineers '
         '(IEEE) | volume=IM-34 | issue=2 | year=1985 | issn=0018-9456 '
         '| doi=10.1109/tim.1985.4315297 | pages=185–187 | ref=harv}}',
         doi_sfn_cit_ref('10.1109/TIM.1985.4315297')[1])
コード例 #7
0
ファイル: doi_test.py プロジェクト: 5j9/yadkard
 def test_doi_isbn_no_year(self):
     """Test when issue date is empty."""
     self.assertEqual(
         '* {{cite thesis | last=Ambati | first=V.R. '
         '| title=Forecasting water waves and currents :'
         ' a space-time approach '
         '| publisher=University Library/University of Twente '
         '| isbn=978-90-365-2632-6 | doi=10.3990/1.9789036526326 '
         '| ref=harv}}',
         doi_sfn_cit_ref('10.3990/1.9789036526326')[1]
     )
コード例 #8
0
ファイル: doi_test.py プロジェクト: coptrump/citer
 def test_doi3(self):
     """No author. URL contains %2F."""
     self.assertEqual(
         '* {{cite journal | last=Spitzer | first=H. F. '
         '| title=Studies in retention. '
         '| journal=Journal of Educational Psychology '
         '| publisher=American Psychological Association (APA) '
         '| volume=30 | issue=9 | year=1939 | issn=0022-0663 '
         '| doi=10.1037/h0063404 | pages=641–656 '
         '| ref=harv}}',
         doi_sfn_cit_ref('https://doi.org/10.1037%2Fh0063404')[1],
     )
コード例 #9
0
ファイル: doi_test.py プロジェクト: 5j9/yadkard
 def test_doi3(self):
     """No author. URL contains %2F."""
     self.assertEqual(
         '* {{cite journal | last=Spitzer | first=H. F. '
         '| title=Studies in retention. '
         '| journal=Journal of Educational Psychology '
         '| publisher=American Psychological Association (APA) '
         '| volume=30 | issue=9 | year=1939 | issn=0022-0663 '
         '| doi=10.1037/h0063404 | pages=641–656 '
         '| ref=harv}}',
         doi_sfn_cit_ref('https://doi.org/10.1037%2Fh0063404')[1],
     )
コード例 #10
0
ファイル: doi_test.py プロジェクト: coptrump/citer
 def test_bad_author_name(self):
     self.assertEqual(
         '* {{cite journal | last=Giusti | first=D. | last2=Lubicz '
         '| first2=V. | last3=Martinelli | first3=G. | last4=Sanfilippo '
         '| first4=F. | last5=Simula | first5=S. '
         '| title=Strange and charm HVP contributions to the muon (g − 2) '
         'including QED corrections with twisted-mass fermions '
         '| journal=Journal of High Energy Physics '
         '| publisher=Springer Nature | volume=2017 | issue=10 '
         '| year=2017 | issn=1029-8479 | doi=10.1007/jhep10(2017)157 '
         '| ref=harv}}',
         doi_sfn_cit_ref('10.1007/JHEP10(2017)157')[1])
コード例 #11
0
ファイル: doi_test.py プロジェクト: coptrump/citer
 def test_doi2(self):
     """Title of this DOI could not be detected in an older version."""
     self.assertEqual(
         '* {{cite journal | title=Books of Critical Interest '
         '| journal=Critical Inquiry '
         '| publisher=University of Chicago Press | volume=40 '
         '| issue=3 | year=2014 | issn=0093-1896 | doi=10.1086/677379 '
         '| pages=272–281 '
         '| ref={{sfnref | University of Chicago Press | 2014}}'
         '}}',
         doi_sfn_cit_ref('http://www.jstor.org/stable/info/10.1086/677379')
         [1],
     )
コード例 #12
0
ファイル: doi_test.py プロジェクト: 5j9/yadkard
 def test_doi2(self):
     """Title of this DOI could not be detected in an older version."""
     self.assertEqual(
         '* {{cite journal | title=Books of Critical Interest '
         '| journal=Critical Inquiry '
         '| publisher=University of Chicago Press | volume=40 '
         '| issue=3 | year=2014 | issn=0093-1896 | doi=10.1086/677379 '
         '| pages=272–281 '
         '| ref={{sfnref | University of Chicago Press | 2014}}'
         '}}',
         doi_sfn_cit_ref(
             'http://www.jstor.org/stable/info/10.1086/677379'
         )[1],
     )
コード例 #13
0
ファイル: test_fa.py プロジェクト: 5j9/yadkard
 def test_di1(self):
     self.maxDiff = None
     # Note: Language detection is wrong, it should be en
     self.assertIn(
         "* {{یادکرد ژورنال | نام خانوادگی=Atkins |"
         " نام=Joshua H. | نام خانوادگی۲=Gershell | نام۲=Leland J. |"
         " عنوان=Selective anticancer drugs |"
         " ژورنال=Nature Reviews Drug Discovery |"
         " ناشر=Springer Nature | جلد=1 | شماره=7 |"
         " سال=2002 | ماه=7 | issn=1474-1776 | doi=10.1038/nrd842 |"
         " صفحه=491–492 |"
         " زبان=da}}",
         doi_sfn_cit_ref('http://dx.doi.org/10.1038/nrd842')[1],
     )
コード例 #14
0
ファイル: doi_test.py プロジェクト: coptrump/citer
 def test_conference_location(self):
     """Test citing a conference with location."""
     self.assertEqual(
         "* {{cite conference "
         "| title=Proceedings of the international workshop on System-level"
         " interconnect prediction  - SLIP'06 "
         "| publisher=ACM Press "
         "| publication-place=New York, New York, USA "
         "| year=2006 "
         "| isbn=1-59593-255-0 "
         "| doi=10.1145/1117278 "
         "| ref={{sfnref | ACM Press | 2006}}"
         "}}",
         doi_sfn_cit_ref('10.1145/1117278')[1])
コード例 #15
0
ファイル: test_fa.py プロジェクト: coptrump/citer
 def test_di1(self):
     self.maxDiff = None
     # Note: Language detection is wrong, it should be en
     self.assertIn(
         "* {{یادکرد ژورنال | نام خانوادگی=Atkins |"
         " نام=Joshua H. | نام خانوادگی۲=Gershell | نام۲=Leland J. |"
         " عنوان=Selective anticancer drugs |"
         " ژورنال=Nature Reviews Drug Discovery |"
         " ناشر=Springer Nature | جلد=1 | شماره=7 |"
         " سال=2002 | ماه=7 | issn=1474-1776 | doi=10.1038/nrd842 |"
         " صفحه=491–492 |"
         " زبان=da}}",
         doi_sfn_cit_ref('http://dx.doi.org/10.1038/nrd842')[1],
     )
コード例 #16
0
ファイル: doi_test.py プロジェクト: 5j9/yadkard
 def test_conference_location(self):
     """Test citing a conference with location."""
     self.assertEqual(
         "* {{cite conference "
         "| title=Proceedings of the international workshop on System-level"
         " interconnect prediction  - SLIP'06 "
         "| publisher=ACM Press "
         "| publication-place=New York, New York, USA "
         "| year=2006 "
         "| isbn=1-59593-255-0 "
         "| doi=10.1145/1117278 "
         "| ref={{sfnref | ACM Press | 2006}}"
         "}}",
         doi_sfn_cit_ref('10.1145/1117278')[1]
     )
コード例 #17
0
ファイル: doi_test.py プロジェクト: coptrump/citer
 def test_doi4(self):
     """publisher=Informa {UK"""
     self.assertEqual(
         '* {{cite journal | last=Davis | first=Margaret I. | last2=Jason '
         '| first2=Leonard A. | last3=Ferrari | first3=Joseph R. '
         '| last4=Olson | first4=Bradley D. | last5=Alvarez '
         '| first5=Josefina '
         '| title=A Collaborative Action Approach to Researching Substance'
         ' Abuse Recovery '
         '| journal=The American Journal of Drug and Alcohol Abuse '
         '| publisher=Informa UK Limited '
         '| volume=31 | issue=4 | year=2005 | issn=0095-2990 '
         '| doi=10.1081/ada-200068110 | pages=537–553 '
         '| ref=harv}}',
         doi_sfn_cit_ref('10.1081%2Fada-200068110')[1],
     )
コード例 #18
0
ファイル: doi_test.py プロジェクト: 5j9/yadkard
 def test_doi4(self):
     """publisher=Informa {UK"""
     self.assertEqual(
         '* {{cite journal | last=Davis | first=Margaret I. | last2=Jason '
         '| first2=Leonard A. | last3=Ferrari | first3=Joseph R. '
         '| last4=Olson | first4=Bradley D. | last5=Alvarez '
         '| first5=Josefina '
         '| title=A Collaborative Action Approach to Researching Substance'
         ' Abuse Recovery '
         '| journal=The American Journal of Drug and Alcohol Abuse '
         '| publisher=Informa UK Limited '
         '| volume=31 | issue=4 | year=2005 | issn=0095-2990 '
         '| doi=10.1081/ada-200068110 | pages=537–553 '
         '| ref=harv}}',
         doi_sfn_cit_ref('10.1081%2Fada-200068110')[1],
     )
コード例 #19
0
ファイル: doi_test.py プロジェクト: coptrump/citer
 def test_incollection(self):
     """Test the `incollection` type."""
     self.assertEqual(
         '* {{cite book '
         '| last=Meyer '
         '| first=Albert R. '
         '| title=Lecture Notes in Mathematics '
         '| chapter=Weak monadic second order theory of succesor is not'
         ' elementary-recursive '
         '| publisher=Springer Berlin Heidelberg '
         '| publication-place=Berlin, Heidelberg '
         '| year=1975 '
         '| isbn=978-3-540-07155-6 '
         '| issn=0075-8434 '
         '| doi=10.1007/bfb0064872 '
         '| ref=harv'
         '}}',
         doi_sfn_cit_ref('DOI 10.1007/BFb0064872')[1])
コード例 #20
0
ファイル: doi_test.py プロジェクト: 5j9/yadkard
 def test_incollection(self):
     """Test the `incollection` type."""
     self.assertEqual(
         '* {{cite book '
         '| last=Meyer '
         '| first=Albert R. '
         '| title=Lecture Notes in Mathematics '
         '| chapter=Weak monadic second order theory of succesor is not'
         ' elementary-recursive '
         '| publisher=Springer Berlin Heidelberg '
         '| publication-place=Berlin, Heidelberg '
         '| year=1975 '
         '| isbn=978-3-540-07155-6 '
         '| issn=0075-8434 '
         '| doi=10.1007/bfb0064872 '
         '| ref=harv'
         '}}',
         doi_sfn_cit_ref('DOI 10.1007/BFb0064872')[1]
     )