-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathclass-update-database.php
More file actions
147 lines (128 loc) · 4.35 KB
/
Copy pathclass-update-database.php
File metadata and controls
147 lines (128 loc) · 4.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
/**
* Class file for updating the database.
*
* @package Accessibility_Checker
* @since 1.9.0
*/
namespace EDAC\Admin;
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Class that handles admin notices
*
* @since 1.9.0
*/
class Update_Database {
/**
* Class constructor.
*/
public function __construct() {
}
/**
* Initialize WordPress hooks
*
* @return void
*/
public function init_hooks() {
add_action( 'admin_init', [ $this, 'edac_update_database' ], 10 );
}
/**
* Create/Update database
*
* @return void
*/
public function edac_update_database() {
global $wpdb;
$table_name = $wpdb->prefix . 'accessibility_checker';
$table_exists = $wpdb->get_var( // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Safe variable used for table name, caching not required for one time operation.
$wpdb->prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $table_name ) )
) === $table_name;
$db_version = get_option( 'edac_db_version' );
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared, WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Prepare above, Safe variable used for table name, caching not required for one time operation.
if ( EDAC_DB_VERSION !== $db_version || ! $table_exists ) {
$charset_collate = $wpdb->get_charset_collate();
$sql = "CREATE TABLE $table_name (
id bigint(20) NOT NULL AUTO_INCREMENT,
postid bigint(20) NOT NULL,
siteid text NOT NULL,
type text NOT NULL,
landmark varchar(20) NULL,
landmark_selector text NULL,
selector text NULL,
ancestry text NULL,
xpath text NULL,
rule text NOT NULL,
ruletype text NOT NULL,
object mediumtext NOT NULL,
recordcheck mediumint(9) NOT NULL,
created timestamp NOT NULL default CURRENT_TIMESTAMP,
user bigint(20) NOT NULL,
ignre mediumint(9) NOT NULL,
ignre_global mediumint(9) NOT NULL,
ignre_user bigint(20) NULL,
ignre_date timestamp NULL,
ignre_reason varchar(50) NULL,
ignre_comment mediumtext NULL,
PRIMARY KEY (id),
KEY postid_index (postid)
) $charset_collate;";
require_once ABSPATH . 'wp-admin/includes/upgrade.php';
dbDelta( $sql );
// Run migration for selector-based unique identifiers if upgrading from older versions.
if ( version_compare( $db_version, '1.0.5', '<' ) ) {
$this->migrate_to_selector_based_unique_id();
}
// Migrate free plugin license key to shared option key used by both free and pro.
if ( version_compare( $db_version, '1.0.7', '<' ) ) {
$this->migrate_license_key_to_shared_option();
}
}
// Update database version option.
update_option( 'edac_db_version', sanitize_text_field( EDAC_DB_VERSION ) );
}
/**
* Migrate early testing key to the shared option used by both free and pro.
*
* Copies `edac_license_key` to `edacp_license_key` if the free key exists and the
* shared key is not already set, then deletes the old option.
*
* @since 1.0.7
* @return void
*/
private function migrate_license_key_to_shared_option() {
$migratable_key = get_option( 'edac_license_key', '' );
if ( empty( $migratable_key ) ) {
return;
}
// Only copy if the shared key is not already occupied.
if ( empty( get_option( 'edacp_license_key', '' ) ) ) {
update_option( 'edacp_license_key', $migratable_key );
}
delete_option( 'edac_license_key' );
}
/**
* Migrate existing records to use selector-based unique identifiers.
*
* This migration handles records that were created before the selector field
* was used as the unique identifier. Records with NULL selectors will have
* a fallback identifier generated based on their ID to ensure uniqueness.
*
* @since 1.0.5
* @return void
*/
private function migrate_to_selector_based_unique_id() {
global $wpdb;
$table_name = $wpdb->prefix . 'accessibility_checker';
// Find records with NULL or empty selectors and update them with a fallback value.
// Using the record ID ensures each record has a unique selector for backward compatibility.
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- One-time migration query.
$wpdb->query(
$wpdb->prepare(
"UPDATE %i SET selector = CONCAT('legacy-id-', id) WHERE selector IS NULL OR selector = ''",
$table_name
)
);
}
}