PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 15.1
Jetpack – WP Security, Backup, Speed, & Growth v15.1
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / comment-likes.php
comment-likes.php
255 lines 7.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php //phpcs:ignore WordPress.Files.FileName.InvalidClassFileName
2 /**
3 * Module Name: Comment Likes
4 * Module Description: Enable visitors to like individual comments and boost engagement.
5 * Sort Order: 39
6 * Recommendation Order: 17
7 * First Introduced: 5.1
8 * Requires Connection: Yes
9 * Auto Activate: No
10 * Module Tags: Social
11 * Additional Search Queries: like widget, like button, like, likes
12 *
13 * @package automattic/jetpack
14 */
15
16 use Automattic\Jetpack\Assets;
17
18 if ( ! defined( 'ABSPATH' ) ) {
19 exit( 0 );
20 }
21
22 Assets::add_resource_hint( '//widgets.wp.com', 'dns-prefetch' );
23
24 require_once __DIR__ . '/likes/jetpack-likes-master-iframe.php';
25 require_once __DIR__ . '/likes/jetpack-likes-settings.php';
26
27 /**
28 * Jetpack Comment Like Class
29 */
30 class Jetpack_Comment_Likes {
31
32 /**
33 * Jetpack_Likes_Settings object
34 *
35 * @var Jetpack_Likes_Settings
36 */
37 public $settings;
38
39 /**
40 * Blog ID
41 *
42 * @var int
43 */
44 public $blog_id;
45
46 /**
47 * Site home URL domain
48 *
49 * @var string
50 */
51 public $domain;
52
53 /**
54 * Initialize comment like module
55 */
56 public static function init() {
57 static $instance = null;
58
59 if ( ! $instance ) {
60 $instance = new Jetpack_Comment_Likes();
61 }
62
63 return $instance;
64 }
65
66 /**
67 * Construct comment like module.
68 */
69 private function __construct() {
70 $this->settings = new Jetpack_Likes_Settings();
71 $this->blog_id = Jetpack_Options::get_option( 'id' );
72 $url_parts = wp_parse_url( home_url() );
73 $this->domain = $url_parts['host'];
74
75 add_action( 'template_redirect', array( $this, 'frontend_init' ) );
76 add_action( 'admin_init', array( $this, 'admin_init' ) );
77
78 if ( ! Jetpack::is_module_active( 'likes' ) ) {
79 $active = Jetpack::get_active_modules();
80
81 if ( in_array( 'publicize', $active, true ) && ! in_array( 'sharedaddy', $active, true ) ) {
82 // we have a sharing page but not the global options area.
83 add_action( 'pre_admin_screen_sharing', array( $this->settings, 'sharing_block' ), 20 );
84 add_action( 'pre_admin_screen_sharing', array( $this->settings, 'updated_message' ), -10 );
85 }
86
87 if ( ! in_array( 'sharedaddy', $active, true ) ) {
88 add_action( 'admin_init', array( $this->settings, 'process_update_requests_if_sharedaddy_not_loaded' ) );
89 add_action( 'sharing_global_options', array( $this->settings, 'admin_settings_showbuttonon_init' ), 19 );
90 add_action( 'sharing_admin_update', array( $this->settings, 'admin_settings_showbuttonon_callback' ), 19 );
91 add_action( 'admin_init', array( $this->settings, 'add_meta_box' ) );
92 } else {
93 add_filter( 'sharing_meta_box_title', array( $this->settings, 'add_likes_to_sharing_meta_box_title' ) );
94 add_action( 'start_sharing_meta_box_content', array( $this->settings, 'meta_box_content' ) );
95 }
96
97 add_action( 'save_post', array( $this->settings, 'meta_box_save' ) );
98 add_action( 'edit_attachment', array( $this->settings, 'meta_box_save' ) );
99 add_action( 'sharing_global_options', array( $this->settings, 'admin_settings_init' ), 20 );
100 add_action( 'sharing_admin_update', array( $this->settings, 'admin_settings_callback' ), 20 );
101 }
102 }
103
104 /**
105 * Initialize admin section
106 */
107 public function admin_init() {
108 add_filter( 'manage_edit-comments_columns', array( $this, 'add_like_count_column' ) );
109 add_action( 'manage_comments_custom_column', array( $this, 'comment_likes_edit_column' ), 10, 2 );
110 add_action( 'admin_print_styles-edit-comments.php', array( $this, 'enqueue_admin_styles_scripts' ) );
111 }
112
113 /**
114 * Displays number of comment likes in comment admin page.
115 *
116 * @param string $column_name name of the column.
117 * @param int $comment_id ID of the comment.
118 */
119 public function comment_likes_edit_column( $column_name, $comment_id ) {
120 if ( 'comment_likes' !== $column_name ) {
121 return;
122 }
123
124 $permalink = get_permalink( get_the_ID() );
125 ?>
126 <a
127 data-comment-id="<?php echo absint( $comment_id ); ?>"
128 data-blog-id="<?php echo absint( $this->blog_id ); ?>"
129 class="comment-like-count"
130 id="comment-like-count-<?php echo absint( $comment_id ); ?>"
131 href="<?php echo esc_url( $permalink ); ?>#comment-<?php echo absint( $comment_id ); ?>"
132 >
133 <span class="like-count">0</span>
134 </a>
135 <?php
136 }
137
138 /**
139 * Enqueue admin style scripts.
140 */
141 public function enqueue_admin_styles_scripts() {
142 wp_enqueue_style( 'comment-like-count', plugins_url( 'comment-likes/admin-style.css', __FILE__ ), array(), JETPACK__VERSION );
143 wp_enqueue_script(
144 'comment-like-count',
145 Assets::get_file_url_for_environment(
146 '_inc/build/comment-likes/comment-like-count.min.js',
147 'modules/comment-likes/comment-like-count.js'
148 ),
149 array( 'jquery' ),
150 JETPACK__VERSION,
151 false
152 );
153 }
154
155 /**
156 * Adds like count column to admin page.
157 *
158 * @param array $columns column of admin table.
159 */
160 public function add_like_count_column( $columns ) {
161 $columns['comment_likes'] = '<span class="vers"></span>';
162 return $columns;
163 }
164
165 /**
166 * Initialize front end
167 */
168 public function frontend_init() {
169 if ( class_exists( Jetpack_AMP_Support::class ) && Jetpack_AMP_Support::is_amp_request() ) {
170 return;
171 }
172
173 add_action( 'wp_enqueue_scripts', array( $this, 'load_styles_register_scripts' ) );
174 add_filter( 'comment_text', array( $this, 'comment_likes' ), 10, 2 );
175 }
176
177 /**
178 * Load styling scripts
179 */
180 public function load_styles_register_scripts() {
181 if ( ! $this->settings->is_likes_visible() ) {
182 return;
183 }
184
185 if ( ! wp_style_is( 'open-sans', 'registered' ) ) {
186 wp_register_style( 'open-sans', 'https://fonts.googleapis.com/css?family=Open+Sans', array(), JETPACK__VERSION );
187 }
188 wp_enqueue_style( 'jetpack_likes', plugins_url( 'likes/style.css', __FILE__ ), array( 'open-sans' ), JETPACK__VERSION );
189 wp_enqueue_script( 'jetpack_likes_queuehandler', plugins_url( 'likes/queuehandler.js', __FILE__ ), array(), JETPACK__VERSION, true );
190 }
191
192 /**
193 * Display like count.
194 *
195 * @param string $content text content of the comment itself.
196 * @param object $comment comment object containing comment data.
197 */
198 public function comment_likes( $content, $comment = null ) {
199 if ( empty( $comment ) ) {
200 return $content;
201 }
202
203 if ( ! $this->settings->is_likes_visible() ) {
204 return $content;
205 }
206
207 $comment_id = get_comment_ID();
208 if ( empty( $comment_id ) && ! empty( $comment->comment_ID ) ) {
209 $comment_id = $comment->comment_ID;
210 }
211
212 if ( empty( $content ) || empty( $comment_id ) ) {
213 return $content;
214 }
215
216 if ( empty( $comment->comment_approved ) ) {
217 return $content;
218 }
219
220 // In case master iframe hasn't been loaded. This could be the case when Post Likes module is disabled,
221 // or on pages on which we have comments but post likes are disabled.
222 if ( false === has_action( 'wp_footer', 'jetpack_likes_master_iframe' ) ) {
223 add_action( 'wp_footer', 'jetpack_likes_master_iframe', 21 );
224 }
225
226 $uniqid = uniqid();
227
228 $src = sprintf( 'https://widgets.wp.com/likes/#blog_id=%1$d&amp;comment_id=%2$d&amp;origin=%3$s&amp;obj_id=%1$d-%2$d-%4$s', $this->blog_id, $comment_id, $this->domain, $uniqid );
229 $name = sprintf( 'like-comment-frame-%1$d-%2$d-%3$s', $this->blog_id, $comment_id, $uniqid );
230 $wrapper = sprintf( 'like-comment-wrapper-%1$d-%2$d-%3$s', $this->blog_id, $comment_id, $uniqid );
231
232 $html = '';
233 $html .= "<div class='jetpack-comment-likes-widget-wrapper jetpack-likes-widget-unloaded' id='$wrapper' data-src='$src' data-name='$name'>";
234 $html .= "<div class='likes-widget-placeholder comment-likes-widget-placeholder comment-likes'><span class='loading'>" . esc_html__( 'Loading...', 'jetpack' ) . '</span></div>';
235 $html .= "<div class='comment-likes-widget jetpack-likes-widget comment-likes'><span class='comment-like-feedback'></span>";
236 $html .= "<span class='sd-text-color'></span><a class='sd-link-color'></a>";
237 $html .= '</div></div>';
238
239 /**
240 * Filters the Comment Likes button content.
241 *
242 * @module comment-likes
243 *
244 * @since 5.1.0
245 *
246 * @param string $html Comment Likes button content.
247 */
248 $like_button = apply_filters( 'comment_like_button', $html );
249
250 return $content . $like_button;
251 }
252 }
253
254 Jetpack_Comment_Likes::init();
255