Bug 28998: (follow-up) Add warning on about for missing key
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Fri, 22 Apr 2022 07:33:28 +0000 (07:33 +0000)
committerFridolin Somers <fridolin.somers@biblibre.com>
Wed, 4 May 2022 15:18:31 +0000 (05:18 -1000)
Test plan:
Make sure that you have no encryption_key in koha-conf.
Check about page, system information tab.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
about.pl
koha-tmpl/intranet-tmpl/prog/en/modules/about.tt

index 55ffc379fbd5388bf1633356b0b2ae9caf241237..ba3434184f3848e52fde7738dc1ae24f416812e9 100755 (executable)
--- a/about.pl
+++ b/about.pl
@@ -277,6 +277,10 @@ if ( ! C4::Context->config('tmp_path') ) {
     }
 }
 
+if( ! C4::Context->config('encryption_key') ) {
+    push @xml_config_warnings, { error => 'encryption_key_missing' };
+}
+
 # Test Zebra facets configuration
 if ( !defined C4::Context->config('use_zebra_facets') ) {
     push @xml_config_warnings, { error => 'use_zebra_facets_entry_missing' };
index 30776fc5f9d8efa83f24355960b241e71ca3e1bc..b05ef269f8e6354594dc863f8488527ed1894f54 100644 (file)
                         The effective temporary directory is '[% config_entry.effective_tmp_dir | html %]'.
                     </td>
                 </tr>
+                [% ELSIF config_entry.error == 'encryption_key_missing' %]
+                <tr>
+                    <th scope="row"><strong>Warning</strong></th>
+                    <td>You are missing the &lt;encryption_key&gt; entry in your koha-conf.xml file.
+                        Please generate a key. We recommend one of at least 32 bytes. (You might use 'pwgen 32' to do so.)
+                    </td>
+                </tr>
                 [% END %]
             [% END %]
             </table>