2003-06-18 18:29:10 +02:00
|
|
|
<?php
|
2008-08-14 08:30:38 +02:00
|
|
|
/**
|
2022-11-20 15:10:15 +01:00
|
|
|
* Plugins may load this file to gain access to special helper functions
|
|
|
|
* for plugin installation. This file is not included by WordPress and it is
|
2008-08-14 08:30:38 +02:00
|
|
|
* recommended, to prevent fatal errors, that this file is included using
|
2020-02-06 07:33:11 +01:00
|
|
|
* require_once.
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
|
|
|
* These functions are not optimized for speed, but they should only be used
|
|
|
|
* once in a while, so speed shouldn't be a concern. If it is and you are
|
2022-11-20 15:10:15 +01:00
|
|
|
* needing to use these functions a lot, you might experience timeouts.
|
|
|
|
* If you do, then it is advised to just write the SQL code yourself.
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
2014-11-24 06:47:23 +01:00
|
|
|
* check_column( 'wp_links', 'link_description', 'mediumtext' );
|
2022-11-20 15:10:15 +01:00
|
|
|
*
|
2014-11-24 06:47:23 +01:00
|
|
|
* if ( check_column( $wpdb->comments, 'comment_author', 'tinytext' ) ) {
|
|
|
|
* echo "ok\n";
|
|
|
|
* }
|
2008-12-09 19:03:31 +01:00
|
|
|
*
|
2014-11-24 06:47:23 +01:00
|
|
|
* // Check the column.
|
2020-01-29 01:45:18 +01:00
|
|
|
* if ( ! check_column( $wpdb->links, 'link_description', 'varchar( 255 )' ) ) {
|
2014-11-24 06:47:23 +01:00
|
|
|
* $ddl = "ALTER TABLE $wpdb->links MODIFY COLUMN link_description varchar(255) NOT NULL DEFAULT '' ";
|
|
|
|
* $q = $wpdb->query( $ddl );
|
|
|
|
* }
|
2008-12-09 19:03:31 +01:00
|
|
|
*
|
2022-11-20 15:10:15 +01:00
|
|
|
* $error_count = 0;
|
|
|
|
* $tablename = $wpdb->links;
|
|
|
|
*
|
2014-11-24 06:47:23 +01:00
|
|
|
* if ( check_column( $wpdb->links, 'link_description', 'varchar( 255 )' ) ) {
|
|
|
|
* $res .= $tablename . ' - ok <br />';
|
|
|
|
* } else {
|
|
|
|
* $res .= 'There was a problem with ' . $tablename . '<br />';
|
|
|
|
* ++$error_count;
|
|
|
|
* }
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
|
|
|
* @package WordPress
|
2008-08-20 08:21:23 +02:00
|
|
|
* @subpackage Plugin
|
2008-08-14 08:30:38 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** Load WordPress Bootstrap */
|
2020-02-06 07:33:11 +01:00
|
|
|
require_once dirname( __DIR__ ) . '/wp-load.php';
|
2003-06-18 18:29:10 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! function_exists( 'maybe_create_table' ) ) :
|
|
|
|
/**
|
2020-05-12 20:40:07 +02:00
|
|
|
* Creates a table in the database if it doesn't already exist.
|
2017-12-01 00:11:00 +01:00
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*
|
|
|
|
* @global wpdb $wpdb WordPress database abstraction object.
|
|
|
|
*
|
|
|
|
* @param string $table_name Database table name.
|
2020-05-12 20:40:07 +02:00
|
|
|
* @param string $create_ddl SQL statement to create table.
|
|
|
|
* @return bool True on success or if the table already exists. False on failure.
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
function maybe_create_table( $table_name, $create_ddl ) {
|
|
|
|
global $wpdb;
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( $wpdb->get_col( 'SHOW TABLES', 0 ) as $table ) {
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( $table === $table_name ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
2006-11-19 08:56:05 +01:00
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
// Didn't find it, so try to create it.
|
2022-11-19 16:42:16 +01:00
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- No applicable variables for this query.
|
2017-12-01 00:11:00 +01:00
|
|
|
$wpdb->query( $create_ddl );
|
2014-07-17 11:14:16 +02:00
|
|
|
|
2022-11-20 15:10:15 +01:00
|
|
|
// We cannot directly tell whether this succeeded!
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( $wpdb->get_col( 'SHOW TABLES', 0 ) as $table ) {
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( $table === $table_name ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
2006-11-19 08:56:05 +01:00
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return false;
|
2006-11-19 08:56:05 +01:00
|
|
|
}
|
2008-08-11 01:13:39 +02:00
|
|
|
endif;
|
2003-06-18 18:29:10 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( ! function_exists( 'maybe_add_column' ) ) :
|
|
|
|
/**
|
2020-05-12 20:40:07 +02:00
|
|
|
* Adds column to database table, if it doesn't already exist.
|
2017-12-01 00:11:00 +01:00
|
|
|
*
|
|
|
|
* @since 1.0.0
|
|
|
|
*
|
|
|
|
* @global wpdb $wpdb WordPress database abstraction object.
|
|
|
|
*
|
2020-05-12 20:40:07 +02:00
|
|
|
* @param string $table_name Database table name.
|
|
|
|
* @param string $column_name Table column name.
|
|
|
|
* @param string $create_ddl SQL statement to add column.
|
|
|
|
* @return bool True on success or if the column already exists. False on failure.
|
2017-12-01 00:11:00 +01:00
|
|
|
*/
|
|
|
|
function maybe_add_column( $table_name, $column_name, $create_ddl ) {
|
|
|
|
global $wpdb;
|
2008-08-14 08:30:38 +02:00
|
|
|
|
2022-11-19 16:42:16 +01:00
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names.
|
2020-05-12 20:32:08 +02:00
|
|
|
foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) {
|
|
|
|
if ( $column === $column_name ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
2008-08-14 08:30:38 +02:00
|
|
|
}
|
2014-07-17 11:14:16 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
// Didn't find it, so try to create it.
|
2022-11-19 16:42:16 +01:00
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- No applicable variables for this query.
|
2017-12-01 00:11:00 +01:00
|
|
|
$wpdb->query( $create_ddl );
|
2014-07-17 11:14:16 +02:00
|
|
|
|
2022-11-20 15:10:15 +01:00
|
|
|
// We cannot directly tell whether this succeeded!
|
2022-11-19 16:42:16 +01:00
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names.
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) {
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( $column === $column_name ) {
|
2017-12-01 00:11:00 +01:00
|
|
|
return true;
|
|
|
|
}
|
2006-11-19 08:56:05 +01:00
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
return false;
|
2006-11-19 08:56:05 +01:00
|
|
|
}
|
2008-08-11 01:13:39 +02:00
|
|
|
endif;
|
2003-06-18 18:29:10 +02:00
|
|
|
|
|
|
|
/**
|
2020-05-12 20:40:07 +02:00
|
|
|
* Drops column from database table, if it exists.
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
2010-12-20 10:25:21 +01:00
|
|
|
* @since 1.0.0
|
2014-02-25 18:14:14 +01:00
|
|
|
*
|
2014-10-31 18:56:22 +01:00
|
|
|
* @global wpdb $wpdb WordPress database abstraction object.
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
2020-05-12 20:40:07 +02:00
|
|
|
* @param string $table_name Database table name.
|
|
|
|
* @param string $column_name Table column name.
|
|
|
|
* @param string $drop_ddl SQL statement to drop column.
|
|
|
|
* @return bool True on success or if the column doesn't exist. False on failure.
|
2003-06-18 18:29:10 +02:00
|
|
|
*/
|
2017-12-01 00:11:00 +01:00
|
|
|
function maybe_drop_column( $table_name, $column_name, $drop_ddl ) {
|
2006-11-19 08:56:05 +01:00
|
|
|
global $wpdb;
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2022-11-19 16:42:16 +01:00
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names.
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) {
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( $column === $column_name ) {
|
2014-07-17 11:14:16 +02:00
|
|
|
|
|
|
|
// Found it, so try to drop it.
|
2022-11-19 16:42:16 +01:00
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared -- No applicable variables for this query.
|
2017-12-01 00:11:00 +01:00
|
|
|
$wpdb->query( $drop_ddl );
|
2014-07-17 11:14:16 +02:00
|
|
|
|
2022-11-20 15:10:15 +01:00
|
|
|
// We cannot directly tell whether this succeeded!
|
2022-11-19 16:42:16 +01:00
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names.
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( $wpdb->get_col( "DESC $table_name", 0 ) as $column ) {
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( $column === $column_name ) {
|
2006-11-19 08:56:05 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2014-07-17 11:14:16 +02:00
|
|
|
// Else didn't find it.
|
2006-11-19 08:56:05 +01:00
|
|
|
return true;
|
2003-06-18 18:29:10 +02:00
|
|
|
}
|
2003-07-23 02:26:03 +02:00
|
|
|
|
|
|
|
/**
|
2020-05-12 20:40:07 +02:00
|
|
|
* Checks that database table column matches the criteria.
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
|
|
|
* Uses the SQL DESC for retrieving the table info for the column. It will help
|
|
|
|
* understand the parameters, if you do more research on what column information
|
2022-11-20 15:10:15 +01:00
|
|
|
* is returned by the SQL statement. Pass in null to skip checking that criteria.
|
|
|
|
*
|
|
|
|
* Column names returned from DESC table are case sensitive and are as listed:
|
|
|
|
*
|
|
|
|
* - Field
|
|
|
|
* - Type
|
|
|
|
* - Null
|
|
|
|
* - Key
|
|
|
|
* - Default
|
|
|
|
* - Extra
|
2008-08-14 08:30:38 +02:00
|
|
|
*
|
2010-12-20 10:25:21 +01:00
|
|
|
* @since 1.0.0
|
2008-08-20 08:21:23 +02:00
|
|
|
*
|
2015-10-15 01:44:25 +02:00
|
|
|
* @global wpdb $wpdb WordPress database abstraction object.
|
2015-05-28 23:41:30 +02:00
|
|
|
*
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/install-helper.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$default` parameter to `$default_value` in `check_column()`.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215], [53216], [53220], [53230].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53232
git-svn-id: http://core.svn.wordpress.org/trunk@52821 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-20 13:19:12 +02:00
|
|
|
* @param string $table_name Database table name.
|
|
|
|
* @param string $col_name Table column name.
|
|
|
|
* @param string $col_type Table column type.
|
|
|
|
* @param bool $is_null Optional. Check is null.
|
|
|
|
* @param mixed $key Optional. Key info.
|
|
|
|
* @param mixed $default_value Optional. Default value.
|
|
|
|
* @param mixed $extra Optional. Extra value.
|
2008-08-14 08:30:38 +02:00
|
|
|
* @return bool True, if matches. False, if not matching.
|
2003-07-23 02:26:03 +02:00
|
|
|
*/
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/install-helper.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$default` parameter to `$default_value` in `check_column()`.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215], [53216], [53220], [53230].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53232
git-svn-id: http://core.svn.wordpress.org/trunk@52821 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-20 13:19:12 +02:00
|
|
|
function check_column( $table_name, $col_name, $col_type, $is_null = null, $key = null, $default_value = null, $extra = null ) {
|
2012-02-17 01:02:42 +01:00
|
|
|
global $wpdb;
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2022-11-19 16:42:16 +01:00
|
|
|
$diffs = 0;
|
|
|
|
|
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared -- Cannot be prepared. Fetches columns for table names.
|
2017-12-01 00:11:00 +01:00
|
|
|
$results = $wpdb->get_results( "DESC $table_name" );
|
2006-11-19 08:56:05 +01:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
foreach ( $results as $row ) {
|
2008-08-14 08:30:38 +02:00
|
|
|
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( $row->Field === $col_name ) {
|
2014-07-17 11:14:16 +02:00
|
|
|
|
|
|
|
// Got our column, check the params.
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( ( null !== $col_type ) && ( $row->Type !== $col_type ) ) {
|
2008-08-14 08:30:38 +02:00
|
|
|
++$diffs;
|
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( ( null !== $is_null ) && ( $row->Null !== $is_null ) ) {
|
2008-08-14 08:30:38 +02:00
|
|
|
++$diffs;
|
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( ( null !== $key ) && ( $row->Key !== $key ) ) {
|
2008-08-14 08:30:38 +02:00
|
|
|
++$diffs;
|
|
|
|
}
|
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/install-helper.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$default` parameter to `$default_value` in `check_column()`.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215], [53216], [53220], [53230].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53232
git-svn-id: http://core.svn.wordpress.org/trunk@52821 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-20 13:19:12 +02:00
|
|
|
if ( ( null !== $default_value ) && ( $row->Default !== $default_value ) ) {
|
2008-08-14 08:30:38 +02:00
|
|
|
++$diffs;
|
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
if ( ( null !== $extra ) && ( $row->Extra !== $extra ) ) {
|
2008-08-14 08:30:38 +02:00
|
|
|
++$diffs;
|
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2017-12-01 00:11:00 +01:00
|
|
|
if ( $diffs > 0 ) {
|
2008-08-14 08:30:38 +02:00
|
|
|
return false;
|
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2008-08-14 08:30:38 +02:00
|
|
|
return true;
|
2020-01-29 01:45:18 +01:00
|
|
|
} // End if found our column.
|
2006-11-19 08:56:05 +01:00
|
|
|
}
|
2020-05-12 20:32:08 +02:00
|
|
|
|
2006-11-19 08:56:05 +01:00
|
|
|
return false;
|
2003-07-23 02:26:03 +02:00
|
|
|
}
|