aboutsummaryrefslogtreecommitdiffstats
path: root/extra
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-05-19 16:57:19 -0700
committerBryan Newbold <bnewbold@archive.org>2021-05-19 16:57:19 -0700
commit42da448ea610afa980b5d893ce5982b98507fe3c (patch)
tree972097402dbddf0f1164c6c06632f50c333d0bc1 /extra
parent4e452afae432ac718482b62d276bee42adc1e660 (diff)
downloadfatcat-scholar-42da448ea610afa980b5d893ce5982b98507fe3c.tar.gz
fatcat-scholar-42da448ea610afa980b5d893ce5982b98507fe3c.zip
sitemaps: filter out 12-digit wayback timestamp access URLs, for now
Diffstat (limited to 'extra')
-rwxr-xr-xextra/sitemap/access_urls_query.sh2
-rwxr-xr-xextra/sitemap/work_urls_query.sh2
2 files changed, 4 insertions, 0 deletions
diff --git a/extra/sitemap/access_urls_query.sh b/extra/sitemap/access_urls_query.sh
index 284b52b..eb34564 100755
--- a/extra/sitemap/access_urls_query.sh
+++ b/extra/sitemap/access_urls_query.sh
@@ -7,9 +7,11 @@ set -o pipefail # fail if part of a '|' command fails
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
# query for specific works; about 8.6 million circa 2021-04-29
+# NOTE: filter out 12-digit access URLs (vs. 14-digit)
fatcat-cli search scholar 'doc_type:work (fulltext.access_type:ia_file OR fulltext.access_type:wayback) (NOT biblio.arxiv_id:*) (NOT biblio.pmcid:*) (NOT biblio.publisher_type:big5) (year:<1926 OR tags:*)' --index-json --limit 0 \
| pv -l \
| jq '[.fulltext.access_type, .fulltext.access_url] | @tsv' -r \
| rg -v '^null' \
+ | rg -v 'web.archive.org/web/\d{12}/' \
| $SCRIPT_DIR/transform_access_url.py \
| split --lines 20000 - sitemap-access- -d -a 5 --additional-suffix .txt
diff --git a/extra/sitemap/work_urls_query.sh b/extra/sitemap/work_urls_query.sh
index 32ccc11..c369c35 100755
--- a/extra/sitemap/work_urls_query.sh
+++ b/extra/sitemap/work_urls_query.sh
@@ -6,8 +6,10 @@ set -o pipefail # fail if part of a '|' command fails
# query for specific works; about 8.6 million circa 2021-04-29
+# NOTE: filter out 12-digit access URLs (vs. 14-digit)
fatcat-cli search scholar 'doc_type:work (fulltext.access_type:ia_file OR fulltext.access_type:wayback) (NOT biblio.arxiv_id:*) (NOT biblio.pmcid:*) (NOT biblio.publisher_type:big5) (year:<1926 OR tags:*)' --index-json --limit 0 \
| pv -l \
+ | rg -v 'web.archive.org/web/\d{12}/' \
| jq .key -r \
| tr '_' '/' \
| awk '{print "https://scholar.archive.org/" $1}' \