-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathclass-insert-rule-data.php
More file actions
199 lines (180 loc) · 7.38 KB
/
Copy pathclass-insert-rule-data.php
File metadata and controls
199 lines (180 loc) · 7.38 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<?php
/**
* Inserts rule data about a post to the database
*
* @since 1.10.0
*
* @package Accessibility_Checker
*/
namespace EDAC\Admin;
/**
* Class for inserting rule data into the database
*
* The unique identifier for issues changed in version 1.0.5 of the database schema.
* Previously, issues were identified by: postid + rule + object + type + siteid
* Now, issues are identified by: postid + rule + selector + type + siteid
*
* This change allows duplicate code objects (e.g., two empty paragraphs) to be
* stored as separate issues when they appear in different locations on the page.
* The selector field provides the unique location identifier for each issue.
*
* @since 1.10.0
*/
class Insert_Rule_Data {
/**
* Insert rule data into database
*
* @since 1.10.0
*
* @param object $post The post object. Must have a valid ID.
* @param string $rule The rule.
* @param string $ruletype The rule type.
* @param string $rule_obj The object.
* @param string|null $landmark The landmark type (main, header, footer, nav), optional.
* @param string|null $landmark_selector The landmark selector, optional.
* @param array $selectors An array of selectors that point to the object, optional.
*
* @return void|int|\WP_Error The ID of the inserted record, void if no
* record was inserted or a WP_Error if the insert failed.
*/
public function insert( object $post, string $rule, string $ruletype, string $rule_obj, ?string $landmark = null, ?string $landmark_selector = null, array $selectors = [] ) {
if ( ! isset( $post->ID, $post->post_type )
|| empty( $rule )
|| empty( $ruletype )
|| empty( $rule_obj )
) {
return;
}
global $wpdb;
$table_name = $wpdb->prefix . 'accessibility_checker';
// set up rule data array.
$rule_data = [
'postid' => $post->ID,
'siteid' => get_current_blog_id(),
'type' => $post->post_type,
'landmark' => $landmark,
'landmark_selector' => $landmark_selector,
'selector' => $selectors['selector'][0] ?? null,
'ancestry' => $selectors['ancestry'][0] ?? null,
'xpath' => $selectors['xpath'][0] ?? null,
'rule' => $rule,
'ruletype' => $ruletype,
// Sanitize before esc_attr(): the scanned object HTML/SVG is
// untrusted (submitted by any user who can edit the post, via
// the JS scan-results REST route) and is later html_entity_decode()d
// and re-parsed for display - see edac_sanitize_scanned_html().
'object' => esc_attr( edac_sanitize_scanned_html( $rule_obj ) ),
'recordcheck' => 1,
'user' => get_current_user_id(),
'ignre' => 0,
'ignre_user' => null,
'ignre_date' => null,
'ignre_comment' => null,
'ignre_global' => 0,
];
// return if revision.
if ( 'revision' === $rule_data['type'] ) {
return;
}
// Check if exists.
// Use selector as the unique identifier instead of object to allow duplicate code objects
// with different selectors (e.g., two empty paragraphs in different locations).
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Using direct query for adding data to database, caching not required for one time operation.
$results = $wpdb->get_results(
$wpdb->prepare(
'SELECT postid, ignre FROM %i where type = %s and postid = %d and rule = %s and selector = %s and siteid = %d',
$table_name,
$rule_data['type'],
$rule_data['postid'],
$rule_data['rule'],
$rule_data['selector'],
$rule_data['siteid']
),
ARRAY_A
);
// Loop existing records.
if ( $results ) {
foreach ( $results as $row ) {
// if being ignored, don't overwrite value.
if ( true === (bool) $row['ignre'] ) {
$rule_data['ignre'] = 1;
}
// update existing record.
// Use selector for WHERE clause instead of object to match on unique identifier.
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Using direct query for adding data to database, caching not required for one time operation.
$wpdb->query(
$wpdb->prepare(
'UPDATE %i SET recordcheck = %d, landmark = %s, landmark_selector = %s, object = %s, ancestry = %s, xpath = %s, ignre = %d WHERE siteid = %d and postid = %d and rule = %s and selector = %s and type = %s',
$table_name,
1,
$rule_data['landmark'],
$rule_data['landmark_selector'],
$rule_data['object'],
$rule_data['ancestry'],
$rule_data['xpath'],
$rule_data['ignre'],
$rule_data['siteid'],
$rule_data['postid'],
$rule_data['rule'],
$rule_data['selector'],
$rule_data['type']
)
);
}
}
// Insert new records.
if ( ! $results ) {
/**
* Filter the rule data before inserting it into the database.
*
* This data will be sanitized after the filter is applied.
*
* @since 1.4.0
*
* @param array $rule_data The rule data.
*/
$rule_data = apply_filters( 'edac_filter_insert_rule_data', $rule_data );
// Sanitize rule data since it is filtered, and we can't be sure
// the data is still as valid as it was when it was first set.
// Sanitize the filtered data.
$rule_data_sanitized = [
'postid' => absint( $rule_data['postid'] ),
'siteid' => absint( $rule_data['siteid'] ),
'type' => sanitize_text_field( $rule_data['type'] ),
'landmark' => isset( $rule_data['landmark'] ) ? sanitize_text_field( $rule_data['landmark'] ) : null,
'landmark_selector' => isset( $rule_data['landmark_selector'] ) ? sanitize_text_field( $rule_data['landmark_selector'] ) : null,
'selector' => sanitize_text_field( $rule_data['selector'] ?? '' ),
'ancestry' => sanitize_text_field( $rule_data['ancestry'] ?? '' ),
'xpath' => sanitize_text_field( $rule_data['xpath'] ?? '' ),
'rule' => sanitize_text_field( $rule_data['rule'] ),
'ruletype' => sanitize_text_field( $rule_data['ruletype'] ),
'object' => esc_attr( edac_sanitize_scanned_html( $rule_data['object'] ) ),
'recordcheck' => absint( $rule_data['recordcheck'] ),
'user' => absint( $rule_data['user'] ),
'ignre' => absint( $rule_data['ignre'] ),
'ignre_user' => isset( $rule_data['ignre_user'] ) ? absint( $rule_data['ignre_user'] ) : null,
'ignre_date' => isset( $rule_data['ignre_date'] ) ? sanitize_text_field( $rule_data['ignre_date'] ) : null,
'ignre_comment' => isset( $rule_data['ignre_comment'] ) ? null : null,
'ignre_global' => absint( $rule_data['ignre_global'] ),
];
if ( isset( $rule_data['ignre_comment'] ) ) {
$allowed_html = [
'strong' => [],
'b' => [],
'em' => [],
'i' => [],
'a' => [
'href' => true,
'target' => true,
'rel' => true,
],
];
$rule_data_sanitized['ignre_comment'] = esc_html( wp_kses( $rule_data['ignre_comment'], $allowed_html ) );
}
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery -- Using direct query for adding data to database.
$wpdb->insert( $table_name, $rule_data_sanitized );
// Return insert id or error.
return $wpdb->insert_id;
}
}
}