From 4a2e238614158a0000785a4aa05c1d46a0f5fe8d Mon Sep 17 00:00:00 2001
From: Tomas Cohen Arazi <tomascohen@theke.io>
Date: Thu, 29 Mar 2018 10:25:43 -0300
Subject: [PATCH] Bug 20428: Add the option to specify a tmp uploads dir

This patch adds an option to the koha-conf.xml file for specifying
a temporary uploaded files directory.

The koha-create script is adjusted to handle it and a convenient option
switch is added. If ommited, it will default to
/var/lib/koha/<instance>/uploads_tmp.

koha-create-dirs is patched to create the required directory with the
right permissions.

The docs get the new parameter documented.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
---
 debian/docs/koha-create.xml            |  9 +++++++++
 debian/scripts/koha-create             | 21 +++++++++++++++++++++
 debian/scripts/koha-create-dirs        |  1 +
 debian/templates/koha-conf-site.xml.in |  1 +
 etc/koha-conf.xml                      |  1 +
 5 files changed, 33 insertions(+)

diff --git a/debian/docs/koha-create.xml b/debian/docs/koha-create.xml
index d4bbadb40d..554cc954b4 100644
--- a/debian/docs/koha-create.xml
+++ b/debian/docs/koha-create.xml
@@ -41,6 +41,7 @@
       <arg><option>--sru-port</option> port</arg>
       <arg><option>--template-cache-dir</option> directory</arg>
       <arg><option>--upload-path</option> directory</arg>
+      <arg><option>--upload-tmp-path</option> directory</arg>
       <arg><option>--letsencrypt</option></arg>
       <arg><option>--help</option>|<option>-h</option></arg>
 
@@ -193,6 +194,14 @@
       </listitem>
     </varlistentry>
 
+    <varlistentry>
+      <term><option>--upload-tmp-path</option></term>
+      <listitem>
+        <para>Specify a <option>directory</option> for storing the temporarily uploaded files of the instance.
+              It defaults to <filename>/var/lib/koha/instance/uploads_tmp</filename>.</para>
+      </listitem>
+    </varlistentry>
+
     <varlistentry>
       <term><option>--letsencrypt</option></term>
       <listitem>
diff --git a/debian/scripts/koha-create b/debian/scripts/koha-create
index e0fd5cdd77..4160cb1851 100755
--- a/debian/scripts/koha-create
+++ b/debian/scripts/koha-create
@@ -73,6 +73,8 @@ Options:
                             /var/cache/koha/<instance>/templates
   --upload-path dir         Set a user defined upload_path. It defaults to
                             /var/lib/koha/<instance>/uploads
+  --upload-tmp-path dir     Set a user defined upload_tmp_path. It defaults to
+                            /var/lib/koha/<instance>/uploads_tmp
   --letsencrypt             Set up a https-only site with letsencrypt certificates
   --help,-h                 Show this help.
 
@@ -116,6 +118,7 @@ generate_config_file() {
         -e "s/__UNIXGROUP__/$username/g" \
         -e "s#__TEMPLATE_CACHE_DIR__#$TEMPLATE_CACHE_DIR#g" \
         -e "s#__UPLOAD_PATH__#$UPLOAD_PATH#g" \
+        -e "s#__UPLOAD_TMP_PATH__#$UPLOAD_TMP_PATH#g" \
         -e "s/__LOG_DIR__/\/var\/log\/koha\/$name/g" \
         -e "s/__PLUGINS_DIR__/\/var\/lib\/koha\/$name\/plugins/g" \
         -e "s/__MEMCACHED_NAMESPACE__/$MEMCACHED_NAMESPACE/g" \
@@ -327,6 +330,17 @@ set_upload_path()
     fi
 }
 
+set_upload_tmp_path()
+{
+    local instance="$1"
+
+    if [ "$CLO_UPLOAD_TMP_PATH" != "" ]; then
+        UPLOAD_TMP_PATH=$CLO_UPLOAD_TMP_PATH
+    else
+        UPLOAD_TMP_PATH="$UPLOAD_PATH_BASE/$instance/$UPLOAD_TMP_DIR"
+    fi
+}
+
 enable_sru_server()
 {
     # remove the commenting symbols
@@ -413,6 +427,9 @@ DEFAULT_MEMCACHED_PREFIX="koha_"
 UPLOAD_PATH_BASE="/var/lib/koha"
 UPLOAD_DIR="uploads"
 UPLOAD_PATH=""
+# hardcoded upload_tmp_path
+UPLOAD_TMP_DIR="uploads_tmp"
+UPLOAD_TMP_PATH=""
 # cache base dir
 CACHE_DIR_BASE="/var/cache/koha"
 # Generate a randomizaed API secret
@@ -459,6 +476,7 @@ CLO_AUTHORITIES_INDEXING_MODE=""
 CLO_MEMCACHED_SERVERS=""
 CLO_MEMCACHED_PREFIX=""
 CLO_UPLOAD_PATH=""
+CLO_UPLOAD_TMP_PATH=""
 CLO_LETSENCRYPT=""
 CLO_TEMPLATE_CACHE_DIR=""
 
@@ -504,6 +522,8 @@ while true ; do
             CLO_TEMPLATE_CACHE_DIR="$2" ; shift 2 ;;
         --upload-path)
             CLO_UPLOAD_PATH="$2" ; shift 2 ;;
+        --upload-tmp-path)
+            CLO_UPLOAD_TMP_PATH="$2" ; shift 2 ;;
         --letsencrypt)
             CLO_LETSENCRYPT="yes" ; shift ;;
         -h|--help)
@@ -569,6 +589,7 @@ set_authorities_indexing_mode $AUTHORITIES_INDEXING_MODE $ZEBRA_MARC_FORMAT
 name="$1"
 
 set_upload_path $name
+set_upload_tmp_path $name
 
 if [ "$op" = use ] && [ "$CLO_DATABASE" = "" ] &&
    ( [ ! -f "$PASSWDFILE" ] || [ ! `cat $PASSWDFILE | grep "^$name:"` ] )
diff --git a/debian/scripts/koha-create-dirs b/debian/scripts/koha-create-dirs
index 6d47c157bc..f7777dffb5 100755
--- a/debian/scripts/koha-create-dirs
+++ b/debian/scripts/koha-create-dirs
@@ -55,6 +55,7 @@ do
     userdir "$name" "/var/lib/koha/$name/biblios/tmp"
     userdir "$name" "/var/lib/koha/$name/plugins"
     userdir "$name" "/var/lib/koha/$name/uploads"
+    userdir "$name" "/var/lib/koha/$name/uploads_tmp"
     userdir "$name" "/var/lock/koha/$name"
     userdir "$name" "/var/lock/koha/$name/authorities"
     userdir "$name" "/var/lock/koha/$name/biblios"
diff --git a/debian/templates/koha-conf-site.xml.in b/debian/templates/koha-conf-site.xml.in
index 0a4f02eeab..7d594cd2f8 100644
--- a/debian/templates/koha-conf-site.xml.in
+++ b/debian/templates/koha-conf-site.xml.in
@@ -261,6 +261,7 @@ __END_SRU_PUBLICSERVER__
  <pluginsdir>__PLUGINS_DIR__</pluginsdir> <!-- This entry can be repeated to use multiple directories -->
  <enable_plugins>0</enable_plugins>
  <upload_path>__UPLOAD_PATH__</upload_path>
+ <upload_tmp_path>__UPLOAD_TMP_PATH__</upload_tmp_path>
  <intranetdir>/usr/share/koha/intranet/cgi-bin</intranetdir>
  <opacdir>/usr/share/koha/opac/cgi-bin/opac</opacdir>
  <opachtdocs>/usr/share/koha/opac/htdocs/opac-tmpl</opachtdocs>
diff --git a/etc/koha-conf.xml b/etc/koha-conf.xml
index 1b50f77a45..111c40fa26 100644
--- a/etc/koha-conf.xml
+++ b/etc/koha-conf.xml
@@ -93,6 +93,7 @@ __PAZPAR2_TOGGLE_XML_POST__
  <pluginsdir>__PLUGINS_DIR__</pluginsdir> <!-- This entry can be repeated to use multiple directories -->
  <enable_plugins>0</enable_plugins>
  <upload_path></upload_path>
+ <upload_tmp_path></upload_tmp_path>
  <intranetdir>__INTRANET_CGI_DIR__</intranetdir>
  <opacdir>__OPAC_CGI_DIR__/opac</opacdir>
  <opachtdocs>__OPAC_TMPL_DIR__</opachtdocs>
-- 
2.15.1 (Apple Git-101)