Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
97462b01
Commit
97462b01
authored
13 years ago
by
Serge Martin
Browse files
Options
Downloads
Patches
Plain Diff
Merge MySQL and PostgreSQL input fields
parent
8e3914bc
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/js/setup.js
+4
-16
4 additions, 16 deletions
core/js/setup.js
core/templates/installation.php
+13
-17
13 additions, 17 deletions
core/templates/installation.php
lib/setup.php
+16
-29
16 additions, 29 deletions
lib/setup.php
with
33 additions
and
62 deletions
core/js/setup.js
+
4
−
16
View file @
97462b01
$
(
document
).
ready
(
function
()
{
// Hide the PostgreSQL config div if needed:
if
(
!
$
(
'
#pgsql
'
).
is
(
'
:checked
'
))
{
$
(
'
#use_postgresql
'
).
hide
();
}
$
(
'
#datadirField
'
).
hide
(
250
);
if
(
$
(
'
#hasSQLite
'
).
val
()
==
'
true
'
){
$
(
'
#databaseField
'
).
hide
(
250
);
$
(
'
#use_other_db
'
).
slideUp
(
250
);
}
$
(
'
#sqlite
'
).
click
(
function
()
{
$
(
'
#use_mysql
'
).
slideUp
(
250
);
$
(
'
#use_postgresql
'
).
slideUp
(
250
);
$
(
'
#use_other_db
'
).
slideUp
(
250
);
});
$
(
'
#mysql
'
).
click
(
function
()
{
$
(
'
#use_mysql
'
).
slideDown
(
250
);
$
(
'
#use_postgresql
'
).
slideUp
(
250
);
$
(
'
#use_other_db
'
).
slideDown
(
250
);
});
$
(
'
#pgsql
'
).
click
(
function
()
{
$
(
'
#use_postgresql
'
).
slideDown
(
250
);
$
(
'
#use_mysql
'
).
slideUp
(
250
);
$
(
'
#use_other_db
'
).
slideDown
(
250
);
});
$
(
'
#showAdvanced
'
).
click
(
function
()
{
...
...
@@ -30,9 +23,4 @@ $(document).ready(function() {
$
(
'
#databaseField
'
).
slideToggle
(
250
);
}
});
// Hide the MySQL config div if needed :
if
(
$
(
'
#dbtype
'
).
val
()
==
'
sqlite
'
)
{
$
(
'
#databaseField
'
).
hide
();
}
});
This diff is collapsed.
Click to expand it.
core/templates/installation.php
+
13
−
17
View file @
97462b01
...
...
@@ -23,10 +23,11 @@
</fieldset>
<fieldset
id=
'databaseField'
>
<?php
if
(
$_
[
'hasMySQL'
]
or
$_
[
'hasPostgreSQL'
])
$hasOtherDB
=
true
;
//other than SQLite ?>
<
legend
><?
php
echo
$l
->
t
(
'Configure the database'
);
?>
</legend>
<?php
if
(
$_
[
'hasSQLite'
])
:
?>
<input
type=
'hidden'
id=
'hasSQLite'
value=
'true'
/>
<?php
if
(
!
$
_
[
'hasMySQL'
]
and
!
$_
[
'hasPostgreSQL'
]
)
:
?>
<?php
if
(
!
$
hasOtherDB
)
:
?>
<p>
<?php
echo
$l
->
t
(
'SQLite will be used.'
);
?>
</p>
<input
type=
"hidden"
id=
"dbtype"
name=
"dbtype"
value=
"sqlite"
/>
<?php
else
:
?>
...
...
@@ -42,33 +43,28 @@
<?php
else
:
?>
<label
class=
"mysql"
for=
"mysql"
>
MySQL
</label><input
type=
"radio"
name=
"dbtype"
value=
'mysql'
id=
"mysql"
<?php
OC_Helper
::
init_radio
(
'dbtype'
,
'pgsql'
,
'mysql'
,
'sqlite'
);
?>
/>
<?php
endif
;
?>
<div
id=
"use_mysql"
>
<input
type=
"text"
name=
"dbuser"
id=
"dbuser"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbuser'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Database user'
);
?>
"
required
/>
<input
type=
"password"
name=
"dbpass"
id=
"dbpass"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbpass'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Database password'
);
?>
"
/>
<input
type=
"text"
name=
"dbname"
id=
"dbname"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbname'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Database name'
);
?>
"
required
/>
<input
type=
"text"
name=
"dbhost"
id=
"dbhost"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbhost'
,
'localhost'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Host'
);
?>
"
required
/>
<input
type=
"text"
name=
"dbtableprefix"
id=
"dbtableprefix"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbtableprefix'
,
'oc_'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Table prefix'
);
?>
"
/>
</div>
<?php
endif
;
?>
<?php
if
(
$_
[
'hasPostgreSQL'
])
:
?>
<input
type=
'hidden'
id=
'hasPostgreSQL'
value=
'true'
/>
<?php
if
(
!
$_
[
'hasSQLite'
]
and
!
$_
[
'hasSQLite'
])
:
?>
<?php
if
(
!
$_
[
'hasSQLite'
]
and
!
$_
[
'hasMySQL'
])
:
?>
<p>
<?php
echo
$l
->
t
(
'PostgreSQL will be used.'
);
?>
</p>
<input
type=
"hidden"
id=
"dbtype"
name=
"dbtype"
value=
"pgsql"
/>
<?php
else
:
?>
<p><label
class=
"pgsql"
for=
"pgsql"
>
PostgreSQL
</label><input
type=
"radio"
name=
"dbtype"
value=
'pgsql'
id=
"pgsql"
<?php
OC_Helper
::
init_radio
(
'dbtype'
,
'pgsql'
,
'mysql'
,
'sqlite'
);
?>
/></p>
<?php
endif
;
?>
<div
id=
"use_postgresql"
>
<input
type=
"text"
name=
"pg_dbuser"
id=
"pg_dbuser"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbuser'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Database user'
);
?>
"
required
/>
<input
type=
"password"
name=
"pg_dbpass"
id=
"pg_dbpass"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbpass'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'PostgreSQL password'
);
?>
"
/>
<input
type=
"text"
name=
"pg_dbname"
id=
"pg_dbname"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbname'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Database name'
);
?>
"
required
/>
<input
type=
"text"
name=
"pg_dbhost"
id=
"pg_dbhost"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbhost'
,
'localhost'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Host'
);
?>
"
required
/>
<input
type=
"text"
name=
"pg_dbtableprefix"
id=
"pg_dbtableprefix"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbtableprefix'
,
'oc_'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Table prefix'
);
?>
"
/>
<?php
endif
;
?>
<?php
if
(
$hasOtherDB
)
:
?>
<div
id=
"use_other_db"
>
<input
type=
"text"
name=
"dbuser"
id=
"dbuser"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbuser'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Database user'
);
?>
"
required
/>
<input
type=
"password"
name=
"dbpass"
id=
"dbpass"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbpass'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Database password'
);
?>
"
/>
<input
type=
"text"
name=
"dbname"
id=
"dbname"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbname'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Database name'
);
?>
"
required
/>
<input
type=
"text"
name=
"dbhost"
id=
"dbhost"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbhost'
,
'localhost'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Host'
);
?>
"
required
/>
<input
type=
"text"
name=
"dbtableprefix"
id=
"dbtableprefix"
value=
"
<?php
print
OC_Helper
::
init_var
(
'dbtableprefix'
,
'oc_'
);
?>
"
placeholder=
"
<?php
echo
$l
->
t
(
'Table prefix'
);
?>
"
/>
</div>
<?php
endif
;
?>
</fieldset>
<a
id=
'showAdvanced'
><strong>
<?php
echo
$l
->
t
(
'Advanced'
);
?>
▾
</strong></a>
...
...
This diff is collapsed.
Click to expand it.
lib/setup.php
+
16
−
29
View file @
97462b01
...
...
@@ -46,39 +46,26 @@ class OC_Setup {
$error
[]
=
'STEP 2 : data directory path is not set.'
;
}
if
(
$dbtype
==
'mysql'
)
{
//mysql needs more config options
if
(
$dbtype
==
'mysql'
or
$dbtype
==
'pgsql'
)
{
//mysql and postgresql needs more config options
if
(
$dbtype
==
'mysql'
)
$dbprettyname
=
'MySQL'
;
else
$dbprettyname
=
'PostgreSQL'
;
if
(
empty
(
$options
[
'dbuser'
]))
{
$error
[]
=
'
STEP 3 :
MySQL
database user is not set.
'
;
$error
[]
=
"
STEP 3 :
$dbprettyname
database user is not set.
"
;
}
if
(
empty
(
$options
[
'dbpass'
]))
{
$error
[]
=
'
STEP 3 :
MySQL
database password is not set.
'
;
$error
[]
=
"
STEP 3 :
$dbprettyname
database password is not set.
"
;
}
if
(
empty
(
$options
[
'dbname'
]))
{
$error
[]
=
'
STEP 3 :
MySQL
database name is not set.
'
;
$error
[]
=
"
STEP 3 :
$dbprettyname
database name is not set.
"
;
}
if
(
empty
(
$options
[
'dbhost'
]))
{
$error
[]
=
'
STEP 3 :
MySQL
database host is not set.
'
;
$error
[]
=
"
STEP 3 :
$dbprettyname
database host is not set.
"
;
}
if
(
!
isset
(
$options
[
'dbtableprefix'
]))
{
$error
[]
=
'STEP 3 : MySQL database table prefix is not set.'
;
}
}
if
(
$dbtype
==
'pgsql'
)
{
//postgresql needs more config options
if
(
empty
(
$options
[
'pg_dbuser'
]))
{
$error
[]
=
'STEP 3 : PostgreSQL database user is not set.'
;
}
if
(
empty
(
$options
[
'pg_dbpass'
]))
{
$error
[]
=
'STEP 3 : PostgreSQL database password is not set.'
;
}
if
(
empty
(
$options
[
'pg_dbname'
]))
{
$error
[]
=
'STEP 3 : PostgreSQL database name is not set.'
;
}
if
(
empty
(
$options
[
'pg_dbhost'
]))
{
$error
[]
=
'STEP 3 : PostgreSQL database host is not set.'
;
}
if
(
!
isset
(
$options
[
'pg_dbtableprefix'
]))
{
$error
[]
=
'STEP 3 : PostgreSQL database table prefix is not set.'
;
$error
[]
=
"STEP 3 :
$dbprettyname
database table prefix is not set."
;
}
}
...
...
@@ -150,11 +137,11 @@ class OC_Setup {
}
}
elseif
(
$dbtype
==
'pgsql'
)
{
$dbuser
=
$options
[
'
pg_
dbuser'
];
$dbpass
=
$options
[
'
pg_
dbpass'
];
$dbname
=
$options
[
'
pg_
dbname'
];
$dbhost
=
$options
[
'
pg_
dbhost'
];
$dbtableprefix
=
$options
[
'
pg_
dbtableprefix'
];
$dbuser
=
$options
[
'dbuser'
];
$dbpass
=
$options
[
'dbpass'
];
$dbname
=
$options
[
'dbname'
];
$dbhost
=
$options
[
'dbhost'
];
$dbtableprefix
=
$options
[
'dbtableprefix'
];
OC_CONFIG
::
setValue
(
'dbname'
,
$dbname
);
OC_CONFIG
::
setValue
(
'dbhost'
,
$dbhost
);
OC_CONFIG
::
setValue
(
'dbtableprefix'
,
$dbtableprefix
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment