-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathclass-admin.php
520 lines (469 loc) · 17.7 KB
/
class-admin.php
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
<?php
namespace Webmention;
use WP_Comment;
/**
* Webmention Admin Class
*
* @author Matthias Pfefferle
*/
class Admin {
/**
* Register Webmention admin settings.
*/
public static function admin_init() {
self::register_settings();
add_settings_field( 'discussion_settings', esc_html__( 'Webmention Settings', 'webmention' ), array( static::class, 'discussion_settings' ), 'discussion', 'default' );
/* Add meta boxes on the 'add_meta_boxes' hook. */
add_action( 'add_meta_boxes', array( static::class, 'add_meta_boxes' ) );
add_action( 'admin_enqueue_scripts', array( static::class, 'enqueue_scripts' ) );
add_filter( 'plugin_action_links', array( static::class, 'plugin_action_links' ), 10, 2 );
add_filter( 'plugin_row_meta', array( static::class, 'plugin_row_meta' ), 10, 2 );
add_action( 'admin_comment_types_dropdown', array( static::class, 'comment_types_dropdown' ) );
add_filter( 'manage_edit-comments_columns', array( static::class, 'comment_columns' ) );
add_filter( 'manage_comments_custom_column', array( static::class, 'manage_comments_custom_column' ), 10, 2 );
add_action( 'bulk_actions-edit-comments', array( static::class, 'bulk_comment_actions' ), 10, 3 );
add_filter( 'handle_bulk_actions-edit-comments', array( static::class, 'bulk_comment_action_handler' ), 10, 3 );
add_filter( 'comment_row_actions', array( static::class, 'comment_row_actions' ), 13, 2 );
add_filter( 'comment_unapproved_to_approved', array( static::class, 'transition_to_approvelist' ), 10 );
self::add_privacy_policy_content();
}
/**
* Add Webmention options to the WordPress discussion settings page.
*/
public static function discussion_settings() {
if ( class_exists( 'Indieweb_Plugin' ) ) {
$path = 'admin.php?page=webmention';
} else {
$path = 'options-general.php?page=webmention';
}
/* translators: 1. settings page URL */
printf( __( 'Based on your feedback and to improve the user experience, we decided to move the settings to a separate <a href="%1$s">settings-page</a>.', 'webmention' ), $path );
}
public static function meta_boxes( $object, $box ) {
wp_nonce_field( 'webmention_comment_metabox', 'webmention_comment_nonce' );
if ( ! $object instanceof WP_Comment ) {
return;
}
load_template( __DIR__ . '/../templates/webmention-edit-comment-form.php' );
}
/**
* Add comment-type as column in WP-Admin
*
* @param array $column The column to implement.
* @param int $comment_id The comment id.
*/
public static function manage_comments_custom_column( $column, $comment_id ) {
if ( 'comment_type' !== $column ) {
return;
}
echo esc_html( get_webmention_comment_type_string( $comment_id ) );
}
/**
* Add bulk option to bulk comment handler.
*
* @param array $bulk_actions The bulk actions.
*
* @return array The bulk actions.
*/
public static function bulk_comment_actions( $bulk_actions ) {
$bulk_actions['refresh_webmention'] = __( 'Refresh Webmention', 'webmention' );
return $bulk_actions;
}
/**
* Add bulk action handler to comments.
*
* @param string $redirect_to The redirect URL.
* @param string $doaction The action to perform.
* @param array $comment_ids The comment IDs.
*
* @return string The redirect URL.
*/
public static function bulk_comment_action_handler( $redirect_to, $doaction, $comment_ids ) {
if ( 'refresh_webmention' !== $doaction ) {
return $redirect_to;
}
foreach ( $comment_ids as $comment_id ) {
$return = webmention_refresh( $comment_id );
}
return $redirect_to;
}
/**
* Add an action link.
*
* @param array $links The settings links.
* @param string $file The plugin filename.
*
* @return array The filtered array.
*/
public static function plugin_action_links( $links, $file ) {
if ( stripos( $file, 'webmention' ) === false || ! function_exists( 'admin_url' ) ) {
return $links;
}
if ( class_exists( 'Indieweb_Plugin' ) ) {
$path = 'admin.php?page=webmention';
} else {
$path = 'options-general.php?page=webmention';
}
$links[] = sprintf( '<a href="%s">%s</a>', admin_url( $path ), esc_html__( 'Settings', 'webmention' ) );
return $links;
}
/**
* Add a plugin meta link.
*
* @param array $links The settings links.
* @param string $file The plugin filename.
*
* @return array The filtered array.
*/
public static function plugin_row_meta( $links, $file ) {
if ( stripos( $file, 'webmention' ) === false || ! function_exists( 'admin_url' ) ) {
return $links;
}
$home_mentions = get_option( 'webmention_home_mentions' );
if ( $home_mentions ) {
$links[] = sprintf( '<a href="%s">%s</a>', get_the_permalink( $home_mentions ), esc_html__( 'Homepage Webmentions', 'webmention' ) );
}
return $links;
}
/**
* Create a meta boxes to be displayed on the comment editor screen.
*/
public static function add_meta_boxes() {
add_meta_box(
'webmention-meta',
esc_html__( 'Webmention Data', 'webmention' ),
array( static::class, 'meta_boxes' ),
'comment',
'normal',
'default'
);
}
/**
* Extend the "filter by comment type" of in the comments section
* of the admin interface with "Webmention"
*
* @param array $types the different comment types
*
* @return array the filtered comment types
*/
public static function comment_types_dropdown( $types ) {
global $webmention_comment_types;
if ( ! is_array( $webmention_comment_types ) ) {
return $types;
}
foreach ( $webmention_comment_types as $comment_type_object ) {
$types[ $comment_type_object->name ] = esc_html( $comment_type_object->label );
}
return $types;
}
/**
* Add comment-type as column in WP-Admin.
*
* @param array $columns The list of column names.
*
* @return array The filtered columns.
*/
public static function comment_columns( $columns ) {
$columns['comment_type'] = esc_html__( 'Comment-Type', 'webmention' );
return $columns;
}
/**
* Add comment-type as column in WP-Admin.
*
* @param array $actions The actions.
* @param object $comment The comment object.
*
* @return array The filtered actions.
*/
public static function comment_row_actions( $actions, $comment ) {
$query = array(
'_wpnonce' => wp_create_nonce( "approve-comment_$comment->comment_ID" ),
'action' => 'approvecomment',
'domain' => 'true',
'c' => $comment->comment_ID,
);
$approve_url = admin_url( 'comment.php' );
$approve_url = add_query_arg( $query, $approve_url );
$status = wp_get_comment_status( $comment );
$protocol = get_comment_meta( $comment->comment_ID, 'protocol' );
if ( ! $protocol || ! in_array( 'webmention', $protocol, true ) ) {
return $actions;
}
if ( 'unapproved' === $status ) {
$actions['domainapprovelist'] = sprintf(
'<a href="%1$s" aria-label="%2$s">%2$s</a>',
esc_url( $approve_url ),
esc_attr__( 'Approve & Always Allow', 'webmention' )
);
}
return $actions;
}
/**
* Add a webmention approve domain.
*
* @param string $host The host.
*/
public static function add_webmention_approve_domain( $host ) {
$approvelist = get_webmention_approve_domains();
$approvelist[] = $host;
$approvelist = array_unique( $approvelist );
$approvelist = implode( "\n", $approvelist );
update_option( 'webmention_approve_domains', $approvelist );
}
/**
* Transition to approve list.
*
* @param object $comment The comment object.
*/
public static function transition_to_approvelist( $comment ) {
if ( ! current_user_can( 'moderate_comments' ) ) {
return;
}
if ( isset( $_REQUEST['domain'] ) ) {
$url = get_comment_meta( $comment->comment_ID, 'webmention_source_url', true );
if ( ! $url ) {
return;
}
$host = webmention_extract_domain( $url );
self::add_webmention_approve_domain( $host );
}
}
/**
* Add admin menu entry
*/
public static function admin_menu() {
$title = esc_html__( 'Webmention', 'webmention' );
// If the IndieWeb Plugin is installed use its menu.
if ( class_exists( 'IndieWeb_Plugin' ) ) {
$options_page = add_submenu_page(
'indieweb',
$title,
$title,
'manage_options',
'webmention',
array( static::class, 'settings_page' )
);
} else {
$options_page = add_options_page(
$title,
$title,
'manage_options',
'webmention',
array( static::class, 'settings_page' )
);
}
add_action( 'load-' . $options_page, array( static::class, 'add_help_tab' ) );
}
/**
* Load settings page
*/
public static function settings_page() {
Upgrade::maybe_upgrade();
add_thickbox();
wp_enqueue_script( 'plugin-install' );
load_template( __DIR__ . '/../templates/webmention-settings.php' );
}
public static function add_help_tab() {
get_current_screen()->add_help_tab(
array(
'id' => 'overview',
'title' => esc_html__( 'Overview', 'webmention' ),
'content' =>
'<p>' . esc_html__( 'Webmention is a simple way to notify any URL when you mention it on your site. From the receiver\'s perspective, it\'s a way to request notifications when other sites mention it.', 'webmention' ) . '</p>' .
'<p>' . esc_html__( 'A Webmention is a notification that one URL links to another. For example, Alice writes an interesting post on her blog. Bob then writes a response to her post on his own site, linking back to Alice\'s original post. Bob\'s publishing software sends a Webmention to Alice notifying that her article was replied to, and Alice\'s software can show that reply as a comment on the original post.', 'webmention' ) . '</p>' .
'<p>' . esc_html__( 'Sending a Webmention is not limited to blog posts, and can be used for additional kinds of content and responses as well. For example, a response can be an RSVP to an event, an indication that someone "likes" another post, a "bookmark" of another post, and many others. Webmention enables these interactions to happen across different websites, enabling a distributed social web.', 'webmention' ) . '</p>',
)
);
get_current_screen()->add_help_tab(
array(
'id' => 'screencast',
'title' => esc_html__( 'Screencast', 'webmention' ),
'content' =>
'<p><iframe src="https://player.vimeo.com/video/85217592?app_id=122963" width="640" height="480" frameborder="0" title="Add the Webmention plugin to your WordPress weblog" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe></p>',
)
);
get_current_screen()->add_help_tab(
array(
'id' => 'indieweb',
'title' => esc_html__( 'The IndieWeb', 'webmention' ),
'content' =>
'<p>' . esc_html__( 'The IndieWeb is a people-focused alternative to the "corporate web".', 'webmention' ) . '</p>' .
'<p>
<strong>' . esc_html__( 'Your content is yours', 'webmention' ) . '</strong><br />' .
esc_html__( 'When you post something on the web, it should belong to you, not a corporation. Too many companies have gone out of business and lost all of their users’ data. By joining the IndieWeb, your content stays yours and in your control.', 'webmention' ) .
'</p>' .
'<p>
<strong>' . esc_html__( 'You are better connected', 'webmention' ) . '</strong><br />' .
esc_html__( 'Your articles and status messages can go to all services, not just one, allowing you to engage with everyone. Even replies and likes on other services can come back to your site so they’re all in one place.', 'webmention' ) .
'</p>' .
'<p>
<strong>' . esc_html__( 'You are in control', 'webmention' ) . '</strong><br />' .
__( 'You can post anything you want, in any format you want, with no one monitoring you. In addition, you share simple readable links such as example.com/ideas. These links are permanent and will always work.', 'webmention' ) .
'</p>',
)
);
get_current_screen()->set_help_sidebar(
'<p><strong>' . esc_html__( 'For more information:', 'webmention' ) . '</strong></p>' .
'<p>' . __( '<a href="https://indieweb.org/Webmention">IndieWeb Wiki page</a>', 'webmention' ) . '</p>' .
'<p>' . __( '<a href="https://webmention.rocks/">Test suite</a>', 'webmention' ) . '</p>' .
'<p>' . __( '<a href="https://www.w3.org/TR/webmention/">W3C Spec</a>', 'webmention' ) . '</p>'
);
}
/**
* Register settings.
*/
public static function register_settings() {
register_setting(
'webmention',
'webmention_disable_selfpings_same_url',
array(
'type' => 'boolean',
'description' => esc_html__( 'Disable self Webmentions on the same URL', 'webmention' ),
'show_in_rest' => true,
'default' => 1,
)
);
register_setting(
'webmention',
'webmention_disable_selfpings_same_domain',
array(
'type' => 'boolean',
'description' => esc_html__( 'Disable self Webmentions on the same domain', 'webmention' ),
'show_in_rest' => true,
'default' => 0,
)
);
register_setting(
'webmention',
'webmention_disable_media_mentions',
array(
'type' => 'boolean',
'description' => esc_html__( 'Disable sending Webmentions for media links (image, video, and audio tags)', 'webmention' ),
'show_in_rest' => true,
'default' => 1,
)
);
register_setting(
'webmention',
'webmention_support_post_types',
array(
'type' => 'string',
'description' => esc_html__( 'Enable Webmention support for post types', 'webmention' ),
'show_in_rest' => true,
'default' => array( 'post', 'pages' ),
)
);
register_setting(
'webmention',
'webmention_show_comment_form',
array(
'type' => 'boolean',
'description' => esc_html__( 'Show Webmention comment-form', 'webmention' ),
'show_in_rest' => true,
'default' => 1,
)
);
register_setting(
'webmention',
'webmention_comment_form_text',
array(
'type' => 'string',
'description' => esc_html__( 'Change the text of the Webmention comment-form', 'webmention' ),
'show_in_rest' => true,
'default' => '',
)
);
register_setting(
'webmention',
'webmention_home_mentions',
array(
'type' => 'int',
'description' => esc_html__( 'Where to direct Mentions of the home page', 'webmention' ),
'show_in_rest' => true,
'default' => 0,
)
);
register_setting(
'webmention',
'webmention_approve_domains',
array(
'type' => 'string',
'description' => esc_html__( 'Automatically approve Webmentions from these domains', 'webmention' ),
'show_in_rest' => false,
'default' => 'indieweb.org',
)
);
register_setting(
'webmention',
'webmention_avatars',
array(
'type' => 'int',
'description' => esc_html__( 'Show Avatars on Webmentions', 'webmention' ),
'show_in_rest' => true,
'default' => 1,
)
);
register_setting(
'webmention',
'webmention_avatar_store_enable',
array(
'type' => 'int',
'description' => esc_html__( 'Store Avatars Locally', 'webmention' ),
'show_in_rest' => true,
'default' => 0,
)
);
register_setting(
'webmention',
'webmention_separate_comment',
array(
'type' => 'int',
'description' => esc_html__( 'Separate Webmention Comment Types in Display from Comments', 'webmention' ),
'show_in_rest' => true,
'default' => 1,
)
);
register_setting(
'webmention',
'webmention_facepile_fold_limit',
array(
'type' => 'int',
'description' => esc_html__( 'Initial number of faces to show in facepiles <small>(0 for all)</small>', 'webmention' ),
'show_in_rest' => true,
'default' => 0,
)
);
}
/**
* Add recommended privacy content.
*/
public static function add_privacy_policy_content() {
$content =
'<p>' . esc_html__( 'Webmentions are an explicit feature of your content management system: by sending a Webmention to the Webmention endpoint of this website, you request the server to take notice of that referral and process it. As long as public content is concerned (i.e. you are not sending a private Webmention), such use of this website’s Webmention endpoint implies that you are aware of it being published.', 'webmention' ) . '</p>' .
'<p>' . esc_html__( 'You can at any time request the removal of one or all Webmentions originating from your website.', 'webmention' ) . '</p>' .
'<h3>' . esc_html__( 'Processing', 'webmention' ) . '</h3>' .
'<p>' . esc_html__( 'Incoming Webmentions are handled as a request to process personal data that you make available by explicitly providing metadata in your website\'s markup.', 'webmention' ) . '</p>' .
'<h3>' . esc_html__( 'Publishing', 'webmention' ) . '</h3>' .
'<p>' . esc_html__( 'An incoming Webmention request is by design a request for publishing a comment from elsewhere on the web; this is what the protocol was designed for and why it is active on your website.', 'webmention' ) . '</p>' .
'<h3>' . esc_html__( 'Personal data', 'webmention' ) . '</h3>' .
'<p>' . esc_html__( 'The Webmention plugin processes the following data (if available):', 'webmention' ) . '</p>' .
'<ul>' .
'<li>' . esc_html__( 'Your name', 'webmention' ) . '</li>' .
'<li>' . esc_html__( 'The profile picture from your website', 'webmention' ) . '</li>' .
'<li>' . esc_html__( 'The URL of your website', 'webmention' ) . '</li>' .
'<li>' . esc_html__( 'Personal information you include in your post', 'webmention' ) . '</li>' .
'<ul>';
if ( function_exists( 'wp_add_privacy_policy_content' ) ) {
wp_add_privacy_policy_content( __( 'Webmention', 'webmention' ), $content );
}
}
/**
* Enqueue admin styles.
*/
public static function enqueue_scripts() {
$current_screen = get_current_screen();
if ( isset( $current_screen->base ) && 'dashboard' === $current_screen->base ) {
wp_enqueue_style( 'webmention-admin', plugins_url( '/assets/css/admin.css', __DIR__ ), array(), version() );
}
}
}