3 # koha-functions.sh -- shared library of helper functions for koha-* scripts
4 # Copyright 2014 - Tomas Cohen Arazi
5 # Universidad Nacional de Cordoba
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
32 get_apache_config_for
()
35 local sitefile
="/etc/apache2/sites-available/$site"
37 if is_instance
$site; then
38 if [ -f "$sitefile.conf" ]; then
40 elif [ -f "$sitefile" ]; then
50 if [ -e /etc
/koha
/koha-sites.conf
]; then
51 .
/etc
/koha
/koha-sites.conf
53 echo "Error: /etc/koha/koha-sites.conf not present." 1>&2
56 local opacdomain
="$OPACPREFIX$site$OPACSUFFIX$DOMAIN"
64 if [ -e /etc
/koha
/koha-sites.conf
]; then
65 .
/etc
/koha
/koha-sites.conf
67 echo "Error: /etc/koha/koha-sites.conf not present." 1>&2
70 local intradomain
="$INTRAPREFIX$site$INTRASUFFIX$DOMAIN"
74 letsencrypt_get_opacdomain_for
()
78 if [ -e /var
/lib
/koha
/$site/letsencrypt.enabled
]; then
79 .
/var
/lib
/koha
/$site/letsencrypt.enabled
81 local opacdomain
=$
(get_opacdomain_for
$site)
89 local instancefile
=$
(get_apache_config_for
$site)
91 if [ "$instancefile" = "" ]; then
95 if grep -q '^[[:space:]]*Include /etc/koha/apache-shared-disable.conf' \
96 "$instancefile" ; then
105 local instancename
=$1
107 if find -L /etc
/koha
/sites
-mindepth 1 -maxdepth 1 \
108 -type d
-printf '%f\n'\
109 |
grep -q -x "$instancename" ; then
118 local instancename
=$1
120 if [ -e /var
/lib
/koha
/$instancename/email.enabled
]; then
127 is_letsencrypt_enabled
()
129 local instancename
=$1
131 if [ -e /var
/lib
/koha
/$instancename/letsencrypt.enabled
]; then
140 local instancename
=$1
142 if [ -e /etc
/koha
/sites
/$instancename/SIPconfig.xml
]; then
151 local instancename
=$1
153 if [ -e /var
/lib
/koha
/$instancename/sitemap.enabled
]; then
162 local instancename
=$1
164 if daemon
--name="$instancename-koha-zebra" \
165 --pidfiles="/var/run/koha/$instancename/" \
166 --user="$instancename-koha.$instancename-koha" \
176 local instancename
=$1
178 if daemon
--name="$instancename-koha-indexer" \
179 --pidfiles="/var/run/koha/$instancename/" \
180 --user="$instancename-koha.$instancename-koha" \
191 local instancefile
=$
(get_apache_config_for
$site)
193 if [ "$instancefile" = "" ]; then
197 if grep -q '^[[:space:]]*Include /etc/koha/apache-shared-opac-plack.conf' \
199 grep -q '^[[:space:]]*Include /etc/koha/apache-shared-intranet-plack.conf' \
200 "$instancefile" ; then
209 local instancename
=$1
211 if start-stop-daemon
--pidfile "/var/run/koha/${instancename}/plack.pid" \
219 adjust_paths_dev_install
()
221 # Adjust KOHA_HOME, PERL5LIB for dev installs, as indicated by
222 # corresponding tag in koha-conf.xml
224 local instancename
=$1
227 if [ "$instancename" != "" ] && is_instance
$instancename; then
228 dev_install
=$
(run_safe_xmlstarlet
$instancename dev_install
)
231 if [ "$dev_install" != "" ] && [ "$dev_install" != "0" ]; then
233 KOHA_HOME
=$
(run_safe_xmlstarlet
$instancename intranetdir
)
242 find -L /etc
/koha
/sites
-mindepth 1 -maxdepth 1\
243 -type d
-printf '%f\n' |
sort
248 local instancename
=$1
249 local retval
=$
(run_safe_xmlstarlet
$instancename zebra_loglevels
)
250 if [ "$retval" != "" ]; then
253 echo "none,fatal,warn"
259 if [ "$TMPDIR" != "" ]; then
260 if [ -d "$TMPDIR" ]; then
264 # We will not unset TMPDIR but just default to /tmp here
265 # Note that mktemp (used later) would look at TMPDIR
269 local retval
=$
(mktemp
-u)
270 if [ "$retval" = "" ]; then
274 echo $
(dirname $retval)
277 run_safe_xmlstarlet
()
279 # When a bash script sets -e (errexit), calling xmlstarlet on an
280 # unexisting key would halt the script. This is resolved by calling
281 # this function in a subshell. It will always returns true, while not
282 # affecting the exec env of the caller. (Otherwise, errexit is cleared.)
283 local instancename
=$1
285 set +e
; # stay on the safe side
286 echo $
(xmlstarlet sel
-t -v "yazgfs/config/$myexpr" /etc
/koha
/sites
/$instancename/koha-conf.xml
)