Subversion Repositories oidplus

Rev

Rev 424 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
362 daniel-mar 1
/*
2
 * OIDplus 2.0
511 daniel-mar 3
 * Copyright 2019 - 2021 Daniel Marschall, ViaThinkSoft
362 daniel-mar 4
 *
5
 * Licensed under the Apache License, Version 2.0 (the "License");
6
 * you may not use this file except in compliance with the License.
7
 * You may obtain a copy of the License at
8
 *
9
 *     http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 */
17
 
18
plugin_combobox_change_callbacks.push(function(strPlugin) {
19
        document.getElementById('DBPLUGIN_PARAMS_PgSQL').style.display = (strPlugin == 'PgSQL') ? "Block" : "None";
20
});
21
 
22
rebuild_callbacks.push(function() {
23
        var e = document.getElementById("db_plugin");
24
        var strPlugin = e.options[e.selectedIndex].value;
25
        if (strPlugin != 'PgSQL') return true;
26
 
27
        document.getElementById('struct_cli_1').innerHTML = '';
28
        document.getElementById('struct_cli_2').innerHTML = '';
29
        document.getElementById('struct_1').href = 'struct_empty.sql.php';
30
        document.getElementById('struct_2').href = 'struct_with_examples.sql.php';
31
 
32
        error = false;
33
 
34
        // Check 1: host must not be empty
35
        if (document.getElementById('pgsql_host').value.length == 0)
36
        {
37
                document.getElementById('pgsql_host_warn').innerHTML = '<font color="red">'+_L('Please specify a host name!')+'</font>';
38
                document.getElementById('config').innerHTML = '<b>&lt?php</b><br><br><i>// ERROR: Please specify a host name!</i>'; // do not translate
39
                error = true;
40
        } else {
41
                document.getElementById('pgsql_host_warn').innerHTML = '';
42
        }
43
 
44
        // Check 2: Username must not be empty
45
        if (document.getElementById('pgsql_username').value.length == 0)
46
        {
47
                document.getElementById('pgsql_username_warn').innerHTML = '<font color="red">'+_L('Please specify a username!')+'</font>';
48
                document.getElementById('config').innerHTML = '<b>&lt?php</b><br><br><i>// ERROR: Please specify a username!</i>'; // do not translate
49
                error = true;
50
        } else {
51
                document.getElementById('pgsql_username_warn').innerHTML = '';
52
        }
53
 
54
        // Check 3: Database name must not be empty
55
        if (document.getElementById('pgsql_database').value.length == 0)
56
        {
57
                document.getElementById('pgsql_database_warn').innerHTML = '<font color="red">'+_L('Please specify a database name!')+'</font>';
58
                document.getElementById('config').innerHTML = '<b>&lt?php</b><br><br><i>// ERROR: Please specify a database name!</i>'; // do not translate
59
                error = true;
60
        } else {
61
                document.getElementById('pgsql_database_warn').innerHTML = '';
62
        }
63
 
64
        document.getElementById('struct_1').href = setupdir+'struct_empty.sql.php?plugin=pgsql&prefix='+encodeURI(document.getElementById('tablename_prefix').value)+'&database='+encodeURI(document.getElementById('pgsql_database').value)+'&slang=pgsql';
65
        document.getElementById('struct_2').href = setupdir+'struct_with_examples.sql.php?plugin=pgsql&prefix='+encodeURI(document.getElementById('tablename_prefix').value)+'&database='+encodeURI(document.getElementById('pgsql_database').value)+'&slang=pgsql';
66
        document.getElementById('struct_cli_1').innerHTML = '<br>'+_L('or via command line:')+'<br><code>curl -s "'+document.getElementById('struct_1').href+'" | psql <!-- TODO: split host/port  -h '+document.getElementById('pgsql_host').value+' --> -U '+document.getElementById('pgsql_username').value+' -d '+document.getElementById('pgsql_database').value+' -a</code>';
67
        document.getElementById('struct_cli_2').innerHTML = '<br>'+_L('or via command line:')+'<br><code>curl -s "'+document.getElementById('struct_2').href+'" | psql <!-- TODO: split host/port  -h '+document.getElementById('pgsql_host').value+' --> -U '+document.getElementById('pgsql_username').value+' -d '+document.getElementById('pgsql_database').value+' -a</code>';
68
 
69
        return !error;
70
});
71
 
72
rebuild_config_callbacks.push(function() {
73
        var e = document.getElementById("db_plugin");
74
        var strPlugin = e.options[e.selectedIndex].value;
75
        if (strPlugin != 'PgSQL') return '';
76
 
77
        return 'OIDplus::baseConfig()->setValue(\'PGSQL_HOST\',        \''+document.getElementById('pgsql_host').value+'\');<br>' +
78
               'OIDplus::baseConfig()->setValue(\'PGSQL_USERNAME\',    \''+document.getElementById('pgsql_username').value+'\');<br>' +
79
               'OIDplus::baseConfig()->setValue(\'PGSQL_PASSWORD\',    base64_decode(\''+b64EncodeUnicode(document.getElementById('pgsql_password').value)+'\'));<br>' +
80
               'OIDplus::baseConfig()->setValue(\'PGSQL_DATABASE\',    \''+document.getElementById('pgsql_database').value+'\');<br>';
81
});