diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-11-17 19:41:56 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-11-19 14:55:15 -0800 |
commit | 6b948b6b6d480940571de244c664efe420e05d50 (patch) | |
tree | 523cbd87574e27cc9c07f8a73bfe59fbbc7226d6 | |
parent | 92db2c8bb2464db8455b61b245a007cb57f2c92f (diff) | |
download | fatcat-6b948b6b6d480940571de244c664efe420e05d50.tar.gz fatcat-6b948b6b6d480940571de244c664efe420e05d50.zip |
if a release has DOAJ article id, count as OA
-rw-r--r-- | python/fatcat_tools/transforms/elasticsearch.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/fatcat_tools/transforms/elasticsearch.py b/python/fatcat_tools/transforms/elasticsearch.py index dfb5f799..96a5b96b 100644 --- a/python/fatcat_tools/transforms/elasticsearch.py +++ b/python/fatcat_tools/transforms/elasticsearch.py @@ -213,6 +213,9 @@ def release_to_elasticsearch(entity, force_bool=True): t['best_pdf_url'] = best_pdf_url or good_pdf_url or any_pdf_url t['ia_pdf_url'] = ia_pdf_url + if release.ext_ids.doaj: + is_oa = True + if release.license_slug: # TODO: more/better checks here, particularly strict *not* OA licenses if release.license_slug.startswith("CC-"): |