Passed
Push — 331-fix/delete-comment-meta-te... ( a14039...ec608e )
by Rajan
10:45
created

DeleteCommentMetaModule   A

Complexity

Total Complexity 17

Size/Duplication

Total Lines 269
Duplicated Lines 0 %

Test Coverage

Coverage 43.42%

Importance

Changes 0
Metric Value
wmc 17
eloc 127
dl 0
loc 269
ccs 33
cts 76
cp 0.4342
rs 10
c 0
b 0
f 0

11 Methods

Rating   Name   Duplication   Size   Complexity  
A register() 0 7 1
A convert_user_input_to_options() 0 14 1
A initialize() 0 9 1
A render() 0 62 1
A filter_js_array() 0 8 1
A get_success_message() 0 3 1
A add_filtering_options() 0 31 1
A change_meta_query() 0 11 1
A do_delete_comment_meta() 0 4 1
A process_filtering_options() 0 8 2
B do_delete() 0 44 6
1
<?php
2
3
namespace BulkWP\BulkDelete\Core\Metas\Modules;
4
5
use BulkWP\BulkDelete\Core\Metas\MetasModule;
6
7 1
defined( 'ABSPATH' ) || exit; // Exit if accessed directly.
8
9
/**
10
 * Delete Comment Meta.
11
 *
12
 * @since 6.0.0
13
 */
14
class DeleteCommentMetaModule extends MetasModule {
15 8
	protected function initialize() {
16 8
		$this->field_slug    = 'comment_meta';
17 8
		$this->meta_box_slug = 'bd-comment-meta';
18 8
		$this->action        = 'delete_comment_meta';
19 8
		$this->cron_hook     = 'do-bulk-delete-comment-meta';
20 8
		$this->messages      = array(
21 8
			'box_label'  => __( 'Bulk Delete Comment Meta', 'bulk-delete' ),
22 8
			'scheduled'  => __( 'Comment meta fields from the comments with the selected criteria are scheduled for deletion.', 'bulk-delete' ),
23 8
			'cron_label' => __( 'Delete Comment Meta', 'bulk-delete' ),
24
		);
25 8
	}
26
27
	public function register( $hook_suffix, $page_slug ) {
28
		parent::register( $hook_suffix, $page_slug );
29
30
		add_action( 'bd_delete_comment_meta_form', array( $this, 'add_filtering_options' ) );
31
32
		add_filter( 'bd_delete_comment_meta_options', array( $this, 'process_filtering_options' ), 10, 2 );
33
		add_filter( 'bd_delete_comment_meta_query', array( $this, 'change_meta_query' ), 10, 2 );
34
	}
35
36
	public function render() {
37
		?>
38
		<!-- Comment Meta box start-->
39
		<fieldset class="options">
40
			<h4><?php _e( 'Select the post type whose comment meta fields you want to delete', 'bulk-delete' ); ?></h4>
41
			<table class="optiontable">
42
				<?php $this->render_post_type_dropdown(); ?>
43
			</table>
44
45
			<h4><?php _e( 'Choose your comment meta field settings', 'bulk-delete' ); ?></h4>
46
			<table class="optiontable">
47
				<tr>
48
					<td>
49
						<input name="smbd_<?php echo esc_attr( $this->field_slug ); ?>_use_value" value="false" type="radio" checked>
50
						<label for="smbd_<?php echo esc_attr( $this->field_slug ); ?>_use_value"><?php echo __( 'Delete based on comment meta key name only', 'bulk-delete' ); ?></label>
51
					</td>
52
				</tr>
53
54
				<tr>
55
					<td>
56
						<input type="radio" value="true" name="smbd_<?php echo esc_attr( $this->field_slug ); ?>_use_value"
57
							id="smbd_<?php echo esc_attr( $this->field_slug ); ?>_use_value">
58
59
						<label for="smbd_<?php echo esc_attr( $this->field_slug ); ?>_use_value"><?php echo __( 'Delete based on comment meta key name and value', 'bulk-delete' ); ?></label>
60
					</td>
61
				</tr>
62
63
				<tr>
64
					<td>
65
						<label for="smbd_<?php echo esc_attr( $this->field_slug ); ?>_meta_key"><?php _e( 'Comment Meta Key ', 'bulk-delete' ); ?></label>
66
						<input name="smbd_<?php echo esc_attr( $this->field_slug ); ?>_meta_key"
67
						       id="smbd_<?php echo esc_attr( $this->field_slug ); ?>_meta_key"
68
						       placeholder="<?php _e( 'Meta Key', 'bulk-delete' ); ?>">
69
					</td>
70
				</tr>
71
			</table>
72
73
			<?php
74
			/**
75
			 * Add more fields to the delete comment meta field form.
76
			 * This hook can be used to add more fields to the delete comment meta field form.
77
			 *
78
			 * @since 5.4
79
			 */
80
			do_action( 'bd_delete_comment_meta_form' );
81
			?>
82
			<table class="optiontable">
83
				<tr>
84
					<td colspan="2">
85
						<h4><?php _e( 'Choose your deletion options', 'bulk-delete' ); ?></h4>
86
					</td>
87
				</tr>
88
89
				<?php $this->render_restrict_settings(); ?>
90
				<?php $this->render_limit_settings(); ?>
91
				<?php $this->render_cron_settings(); ?>
92
93
			</table>
94
		</fieldset>
95
96
		<?php $this->render_submit_button(); ?>
97
98
		<!-- Comment Meta box end-->
99
		<?php
100
	}
101
102
	protected function convert_user_input_to_options( $request, $options ) {
103
		$options['post_type'] = esc_sql( bd_array_get( $request, 'smbd_' . $this->field_slug . '_post_type', 'post' ) );
104
105
		$options['use_value'] = bd_array_get_bool( $request, 'smbd_' . $this->field_slug . '_use_value', false );
106
		$options['meta_key']  = esc_sql( bd_array_get( $request, 'smbd_' . $this->field_slug . '_meta_key', '' ) );
107
108
		/**
109
		 * Delete comment-meta delete options filter.
110
		 *
111
		 * This filter is for processing filtering options for deleting comment meta.
112
		 *
113
		 * @since 5.4
114
		 */
115
		return apply_filters( 'bd_delete_comment_meta_options', $options, $request );
116
	}
117
118 8
	protected function do_delete( $options ) {
119
		$args = array(
120 8
			'post_type' => $options['post_type'],
121
		);
122
123 8
		if ( $options['limit_to'] > 0 ) {
124 1
			$args['number'] = $options['limit_to'];
125
		}
126
127 8
		$op   = $options['date_op'];
128 8
		$days = $options['days'];
129
130 8
		if ( $options['restrict'] ) {
131 2
			$args['date_query'] = array(
132
				array(
133 2
					'column' => 'comment_date',
134 2
					$op      => "{$days} day ago",
135
				),
136
			);
137
		}
138
139 8
		if ( $options['use_value'] ) {
140 3
			$args['meta_query'] = array(
141
				array(
142 3
					'key'     => $options['meta_key'],
143 3
					'value'   => $options['meta_value'],
144 3
					'compare' => $options['meta_op'],
145 3
					'type'    => $options['meta_type'],
146
				),
147
			);
148
		} else {
149 5
			$args['meta_key'] = $options['meta_key'];
150
		}
151
152 8
		$meta_deleted = 0;
153 8
		$comments     = get_comments( $args );
154
155 8
		foreach ( $comments as $comment ) {
156 8
			if ( delete_comment_meta( $comment->comment_ID, $options['meta_key'] ) ) {
157 8
				$meta_deleted ++;
158
			}
159
		}
160
161 8
		return $meta_deleted;
162
	}
163
164
	public function filter_js_array( $js_array ) {
165
		$js_array['dt_iterators'][]              = '_' . $this->field_slug;
166
		$js_array['validators'][ $this->action ] = 'noValidation';
167
168
		$js_array['pre_action_msg'][ $this->action ] = 'deleteCMWarning';
169
		$js_array['msg']['deleteCMWarning']          = __( 'Are you sure you want to delete all the comment meta fields that match the selected filters?', 'bulk-delete' );
170
171
		return $js_array;
172
	}
173
174
	protected function get_success_message( $items_deleted ) {
175
		/* translators: 1 Number of posts deleted */
176
		return _n( 'Deleted comment meta field from %d comment', 'Deleted comment meta field from %d comments', $items_deleted, 'bulk-delete' );
177
	}
178
179
	/**
180
	 * Append filtering options to the delete comment meta form.
181
	 *
182
	 * This function was originally part of the Bulk Delete Comment Meta add-on.
183
	 *
184
	 * @since 0.1 of Bulk Delete Comment Meta add-on
185
	 */
186
	public function add_filtering_options() {
187
		?>
188
		<table class="optiontable" id="smbd_<?php echo esc_attr( $this->field_slug ); ?>_filters" style="display:none;">
189
			<tr>
190
				<td>
191
					<?php _e( 'Comment Meta Value ', 'bulk-delete' ); ?>
192
					<select name="smbd_<?php echo esc_attr( $this->field_slug ); ?>_meta_op" id="smbd_<?php echo esc_attr( $this->field_slug ); ?>_meta_op">
193
						<option value="="><?php _e( 'equal to', 'bulk-delete' ); ?></option>
194
						<option value="!="><?php _e( 'not equal to', 'bulk-delete' ); ?></option>
195
						<option value="<"><?php _e( 'less than', 'bulk-delete' ); ?></option>
196
						<option value="<="><?php _e( 'less than or equal to', 'bulk-delete' ); ?></option>
197
						<option value=">"><?php _e( 'greater than', 'bulk-delete' ); ?></option>
198
						<option value=">="><?php _e( 'greater than or equal to', 'bulk-delete' ); ?></option>
199
						<option value="LIKE"><?php _e( 'like', 'bulk-delete' ); ?></option>
200
						<option value="NOT LIKE"><?php _e( 'not like', 'bulk-delete' ); ?></option>
201
					</select>
202
					<select name="smbd_<?php echo esc_attr( $this->field_slug ); ?>_type" id="smbd_<?php echo esc_attr( $this->field_slug ); ?>_type">
203
						<option value="CHAR"><?php _e( 'CHAR', 'bulk-delete' ); ?></option>
204
						<option value="NUMERIC"><?php _e( 'NUMERIC', 'bulk-delete' ); ?></option>
205
						<option value="DECIMAL"><?php _e( 'DECIMAL', 'bulk-delete' ); ?></option>
206
						<option value="SIGNED"><?php _e( 'SIGNED', 'bulk-delete' ); ?></option>
207
						<option value="UNSIGNED"><?php _e( 'UNSIGNED', 'bulk-delete' ); ?></option>
208
						<option value="DATE"><?php _e( 'DATE', 'bulk-delete' ); ?></option>
209
						<option value="TIME"><?php _e( 'TIME', 'bulk-delete' ); ?></option>
210
						<option value="DATETIME"><?php _e( 'DATETIME', 'bulk-delete' ); ?></option>
211
						<option value="BINARY"><?php _e( 'BINARY', 'bulk-delete' ); ?></option>
212
					</select>
213
214
					<input type="text" placeholder="<?php _e( 'Meta Value', 'bulk-delete' ); ?>"
215
						name="smbd_<?php echo esc_attr( $this->field_slug ); ?>_value"
216
						id="smbd_<?php echo esc_attr( $this->field_slug ); ?>_value">
217
				</td>
218
			</tr>
219
		</table>
220
		<?php
221
	}
222
223
	/**
224
	 * Process additional delete options.
225
	 *
226
	 * This function was originally part of the Bulk Delete Comment Meta add-on.
227
	 *
228
	 * @since 0.1 of Bulk Delete Comment Meta add-on
229
	 *
230
	 * @param array $delete_options Delete options array.
231
	 * @param array $post           The POST array.
232
	 *
233
	 * @return array Processed delete options array.
234
	 */
235
	public function process_filtering_options( $delete_options, $post ) {
236
		if ( 'true' == bd_array_get( $post, 'smbd_' . $this->field_slug . '_use_value', 'false' ) ) {
237
			$delete_options['meta_op']    = bd_array_get( $post, 'smbd_' . $this->field_slug . '_meta_op', '=' );
238
			$delete_options['meta_type']  = bd_array_get( $post, 'smbd_' . $this->field_slug . '_type', 'CHAR' );
239
			$delete_options['meta_value'] = bd_array_get( $post, 'smbd_' . $this->field_slug . '_value', '' );
240
		}
241
242
		return $delete_options;
243
	}
244
245
	/**
246
	 * Change the meta query.
247
	 *
248
	 * This function was originally part of the Bulk Delete Comment Meta add-on.
249
	 *
250
	 * @since 0.1 of Bulk Delete Comment Meta add-on
251
	 *
252
	 * @param array $meta_query     Meta query.
253
	 * @param array $delete_options List of options chosen by the user.
254
	 *
255
	 * @return array Modified meta query.
256
	 */
257
	public function change_meta_query( $meta_query, $delete_options ) {
258
		$meta_query = array(
259
			array(
260
				'key'     => $delete_options['meta_key'],
261
				'value'   => $delete_options['meta_value'],
262
				'compare' => $delete_options['meta_op'],
263
				'type'    => $delete_options['meta_type'],
264
			),
265
		);
266
267
		return $meta_query;
268
	}
269
270
	/**
271
	 * Hook handler.
272
	 *
273
	 * This function was originally part of the Bulk Delete Comment Meta add-on.
274
	 *
275
	 * @since 0.1 of Bulk Delete Comment Meta add-on
276
	 *
277
	 * @param array $delete_options Delete options array.
278
	 */
279
	public function do_delete_comment_meta( $delete_options ) {
280
		do_action( 'bd_before_scheduler', $this->messages['cron_label'] );
281
		$count = $this->delete( $delete_options );
282
		do_action( 'bd_after_scheduler', $this->messages['cron_label'], $count );
283
	}
284
}
285