Commit | Line | Data |
---|---|---|
a54b8f42 RJ |
1 | #!/bin/bash |
2 | ||
e38e56a8 | 3 | DIR=$(readlink -f $(dirname $0)) |
a54b8f42 RJ |
4 | #cd /srv/openils/bin |
5 | ||
6 | PGUSER=evergreen | |
7 | PGHOST=db1.sitka.bclibraries.ca | |
8 | PSQL="psql -A -t -U $PGUSER -h $PGHOST" | |
9 | DATABASE=evergreen | |
10 | #FULL_QUERY="select distinct id from biblio.record_entry where not deleted" | |
11 | FULL_QUERY="select distinct acn.record FROM asset.call_number acn join biblio.record_entry bre on (acn.record = bre.id) where not bre.deleted and bre.active and not acn.deleted" | |
12 | POSTSEC_QUERY="select distinct record FROM asset.call_number where owning_lib in (select distinct id from actor.org_unit_descendants(27)) and not deleted and label != '##URI##';" | |
77d28950 | 13 | NONEXPORTED_QUERY="select distinct acn.record FROM asset.call_number acn join biblio.record_entry bre on (acn.record = bre.id) where bre.deleted or not bre.active or acn.deleted" |
1649d461 | 14 | MARC_PARAMS="--config /srv/openils/conf/opensrf_core.xml --items --location SITKA --collapse_to_depth 2 --timeout 300 --force901 --encoding UTF-8 --onlyholdings --quiet" |
a54b8f42 RJ |
15 | MARC_EXPORT_BIN="${DIR}/marc_export_custom" |
16 | MARC_EXPORT="${MARC_EXPORT_BIN} ${MARC_PARAMS}" | |
a54b8f42 | 17 | |
a54b8f42 RJ |
18 | [ -z "${T}" ] && T=$(date -u +%Y%m%dT%H%M%SZ) |
19 | [ -z "${OUTDIR}" ] && OUTDIR=$(mktemp --tmpdir -d outlook_export.XXXXXXX) | |
20 | ||
21 | process_batch() { | |
77d28950 RJ |
22 | local f="$1" sql="$2" split_count="$3" |
23 | if [ ! -f ${OUTDIR}/${f}-${T}.id ]; then | |
a54b8f42 | 24 | echo "Getting IDs" |
77d28950 | 25 | $PSQL -c "$sql" $DATABASE | sort | uniq >${OUTDIR}/${f}-${T}.id |
a54b8f42 | 26 | fi |
77d28950 | 27 | if [ ! -f ${OUTDIR}/${f}.id.targets ]; then |
a54b8f42 | 28 | echo "Splitting work" |
77d28950 | 29 | split_suffix ${OUTDIR}/${f}-${T}.id ${OUTDIR}/${f}-${T}-split. .id $split_count |
a54b8f42 | 30 | echo "Making targets" |
77d28950 | 31 | find ${OUTDIR} -name "${f}-${T}-split.[0-9]*[0-9].id" \ |
a54b8f42 | 32 | | sed 's,.id$,.marc,g' \ |
77d28950 | 33 | >${OUTDIR}/${f}.id.targets |
a54b8f42 RJ |
34 | fi |
35 | ||
36 | make ${MAKEOPTS} -f Makefile-marc_export \ | |
37 | MARC_EXPORT_BIN="${MARC_EXPORT_BIN}" \ | |
77d28950 RJ |
38 | MARC_PARAMS="$MARC_PARAMS --exclusion_ini ${f}.ini" \ |
39 | $(<${OUTDIR}/${f}.id.targets) | |
368b2926 | 40 | make_rc=$? |
a54b8f42 | 41 | |
77d28950 | 42 | find ${OUTDIR} -name "${f}-${T}-split*.marc" \ |
a54b8f42 | 43 | -exec cat \{} \; \ |
77d28950 | 44 | >${OUTDIR}/${f}-${T}.marc |
368b2926 | 45 | return $make_rc |
a54b8f42 RJ |
46 | } |
47 | ||
48 | split_suffix() { | |
77d28950 RJ |
49 | local input="$1" output_prefix="$2" output_suffix="$3" split_count="$4" |
50 | split -a 7 -d -C ${split_count} ${input} ${output_prefix} | |
51 | find $(dirname ${output_prefix}) -name "$(basename ${output_prefix})*" -exec mv -f \{\} \{\}${output_suffix} \; | |
a54b8f42 RJ |
52 | } |
53 | ||
a54b8f42 | 54 | # media for BC ELN post-secondary libraries |
77d28950 | 55 | export SPLIT_COUNT=10000 |
a54b8f42 | 56 | F=bc_eln_media SQL="$POSTSEC_QUERY" |
77d28950 | 57 | process_batch "$F" "${SQL}" $SPLIT_COUNT |
368b2926 | 58 | rc1=$? |
a54b8f42 RJ |
59 | |
60 | # serials for BC ELN post-secondary libraries | |
77d28950 | 61 | export SPLIT_COUNT=10000 |
a54b8f42 | 62 | F=bc_eln_serials SQL="$POSTSEC_QUERY" |
77d28950 | 63 | process_batch "$F" "${SQL}" $SPLIT_COUNT |
368b2926 | 64 | rc2=$? |
6f7b4d95 | 65 | |
77d28950 | 66 | export SPLIT_COUNT=100000 |
6f7b4d95 RJ |
67 | # full dump for outlook public libraries |
68 | F=sitka_full_outlook SQL="$FULL_QUERY" | |
77d28950 | 69 | process_batch "$F" "${SQL}" $SPLIT_COUNT |
368b2926 RJ |
70 | rc3=$? |
71 | ||
72 | rc=$(($rc1+$rc2+$rc3)) | |
73 | exit $rc |