This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
bnfw.php
executable file
·407 lines (364 loc) · 11.4 KB
/
bnfw.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
<?php
/**
* Plugin Name: Better Notifications for WordPress
* Plugin URI: http://wordpress.org/plugins/bnfw/
* Description: Send customisable HTML emails to your users for different WordPress notifications.
* Version: 1.3.2
* Author: Voltronik
* Author URI: http://www.voltronik.co.uk/
* Author Email: [email protected]
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: bnfw
* Domain Path: languages/
*/
/**
* Copyright © 2014 Voltronik ([email protected])
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2, as
* published by the Free Software Foundation.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
class BNFW {
/**
* Constructor.
*
* @since 1.0
*/
function __construct() {
$this->load_textdomain();
$this->includes();
$this->hooks();
$this->notifier = new BNFW_Notification;
$this->engine = new BNFW_Engine;
}
/**
* Factory method to return the instance of the class.
*
* Makes sure that only one instance is created.
*
* @return object Instance of the class
*/
public static function factory() {
static $instance = false;
if ( ! $instance ) {
$instance = new self();
}
return $instance;
}
/**
* Loads the plugin language files
*
* @since 1.0
*/
public function load_textdomain() {
// Load localization domain
$this->translations = dirname( plugin_basename( __FILE__ ) ) . '/languages/';
load_plugin_textdomain( 'bnfw', false, $this->translations );
}
/**
* Include required files.
*
* @since 1.0
*/
public function includes() {
// Load Engine and post type
require_once 'includes/engine/class-bnfw-engine.php';
require_once 'includes/admin/class-bnfw-notification.php';
require_once 'includes/overrides.php';
// Load Admin Pages
if ( is_admin() ) {
require_once 'includes/admin/bnfw-settings.php';
}
}
/**
* Register Hooks.
*
* @since 1.0
*/
public function hooks() {
register_activation_hook( __FILE__ , array( $this, 'activate' ) );
// P2 theme directly inserts the post into db
if ( 'P2' == wp_get_theme() ) {
add_action( 'wp_insert_post' , array( $this, 'insert_post' ), 10, 3 );
}
add_action( 'draft_to_publish' , array( $this, 'publish_post' ) );
add_action( 'publish_to_publish' , array( $this, 'update_post' ) );
add_action( 'init' , array( $this, 'custom_post_type_hooks' ), 100 );
add_action( 'create_term' , array( $this, 'create_term' ), 10, 3 );
add_action( 'comment_post' , array( $this, 'comment_post' ) );
add_action( 'trackback_post' , array( $this, 'trackback_post' ) );
add_action( 'pingback_post' , array( $this, 'pingback_post' ) );
add_action( 'user_register' , array( $this, 'user_register' ) );
add_action( 'user_register' , array( $this, 'welcome_email' ) );
add_action( 'lostpassword_post' , array( $this, 'on_lost_password' ) );
add_filter( 'retrieve_password_title' , array( $this, 'change_password_email_title' ) );
add_filter( 'retrieve_password_message' , array( $this, 'change_password_email_message' ), 10, 4 );
add_filter( 'plugin_action_links' , array( $this, 'plugin_action_links' ), 10, 4 );
}
/**
* Setup hooks for custom post types.
*
* @since 1.2
*/
function custom_post_type_hooks() {
$post_types = get_post_types( array( 'public' => true ), 'names' );
$post_types = array_diff( $post_types, array( BNFW_Notification::POST_TYPE ) );
foreach ( $post_types as $post_type ) {
add_action( 'pending_' . $post_type, array( $this, 'on_post_pending' ), 10, 2 );
add_action( 'future_' . $post_type, array( $this, 'on_post_scheduled' ), 10, 2 );
}
}
/**
* importer
*/
public function activate() {
require_once dirname( __FILE__ ) . '/includes/import.php';
$importer = new BNFW_Import;
$importer->import();
}
/**
* Add 'Settings' link below BNFW in Plugins list.
*
* @since 1.0
* @param unknown $links
* @param unknown $file
* @return unknown
*/
public function plugin_action_links( $links, $file ) {
$plugin_file = 'bnfw/bnfw.php';
if ( $file == $plugin_file ) {
$settings_link = '<a href="' . admin_url( 'admin.php?page=bnfw-settings' ) . '">' . 'Settings' . '</a>';
array_unshift( $links, $settings_link );
}
return $links;
}
/**
* When a new term is created.
*
* @since 1.0
* @param int $term_id
* @param int $tt_id
* @param string $taxonomy
*/
public function create_term( $term_id, $tt_id, $taxonomy ) {
$this->send_notification( 'newterm-' . $taxonomy, $term_id );
}
/**
* Fires when a post is created for the first time.
*
* @since 1.3.1
* @param int $post_id Post ID
* @param object $post Post object
* @param bool $update Whether it was an update
*/
public function insert_post( $post_id, $post, $update ) {
$this->publish_post( $post );
}
/**
* Fires when a post is created for the first time.
*
* @since 1.0
* @param object $post Post Object
*/
function publish_post( $post ) {
$post_id = $post->ID;
$post_type = $post->post_type;
if ( BNFW_Notification::POST_TYPE != $post_type ) {
$this->send_notification( 'new-' . $post_type, $post_id );
}
}
/**
* Fires when a post is updated.
*
* @since 1.0
* @param unknown $post
*/
function update_post( $post ) {
$post_id = $post->ID;
$post_type = $post->post_type;
if ( BNFW_Notification::POST_TYPE != $post_type ) {
$this->send_notification( 'update-' . $post_type, $post_id );
}
}
/**
* Fires when a post is pending for review.
*
* @since 1.1
* @param int $post_id Post ID
* @param object $post Post object
*/
function on_post_pending( $post_id, $post ) {
$post_type = $post->post_type;
if ( BNFW_Notification::POST_TYPE != $post_type ) {
$this->send_notification( 'pending-' . $post_type, $post_id );
}
}
/**
* Fires when a post is scheduled.
*
* @since 1.1.5
* @param int $post_id Post ID
* @param object $post Post object
*/
function on_post_scheduled( $post_id, $post ) {
$post_type = $post->post_type;
if ( BNFW_Notification::POST_TYPE != $post_type ) {
$this->send_notification( 'future-' . $post_type, $post_id );
}
}
/**
* Send notification for new comments
*
* @since 1.0
* @param int $comment_id
*/
function comment_post( $comment_id ) {
$the_comment = get_comment( $comment_id );
if ( $this->can_send_comment_notification( $the_comment ) ) {
$post = get_post( $the_comment->comment_post_ID );
$notification_type = 'new-comment'; // old notification name
if ( 'post' != $post->post_type ) {
$notification_type = 'comment-' . $post->post_type;
}
$this->send_notification( $notification_type, $comment_id );
// comment reply notification.
if ( $the_comment->comment_parent > 0 ) {
$notifications = $this->notifier->get_notifications( 'reply-comment' );
if ( count( $notifications ) > 0 ) {
$parent = get_comment( $the_comment->comment_parent );
if ( $parent->comment_author_email != $the_comment->comment_author_email ) {
foreach ( $notifications as $notification ) {
$this->engine->send_comment_reply_email( $this->notifier->read_settings( $notification->ID ), $the_comment, $parent );
}
}
}
}
}
}
/**
* Send notification for new trackback
*
* @since 1.0
* @param unknown $comment_id
*/
function trackback_post( $comment_id ) {
$the_comment = get_comment( $comment_id );
if ( $this->can_send_comment_notification( $the_comment ) ) {
$this->send_notification( 'new-trackback', $comment_id );
}
}
/**
* Send notification for new pingbacks
*
* @since 1.0
* @param unknown $comment_id
*/
function pingback_post( $comment_id ) {
$the_comment = get_comment( $comment_id );
if ( $this->can_send_comment_notification( $the_comment ) ) {
$this->send_notification( 'new-pingback', $comment_id );
}
}
/**
* Send notification for lost password.
*
* @since 1.0
*/
function on_lost_password() {
$user = get_user_by( 'login', trim( $_POST['user_login'] ) );
if ( $user ) {
$this->send_notification( 'admin-password', $user->ID );
}
}
/**
* Change the title of the password reset email that is sent to the user.
*
* @since 1.1
*/
public function change_password_email_title( $title ) {
$notifications = $this->notifier->get_notifications( 'user-password' );
if ( count( $notifications ) > 0 ) {
// Ideally there should be only one notification for this type.
// If there are multiple notification then we will read data about only the last one
$setting = $this->notifier->read_settings( end( $notifications )->ID );
return $setting['subject'];
}
return $title;
}
/**
* Change the message of the password reset email.
*
* @since 1.1
*/
public function change_password_email_message( $message, $key, $user_login, $user_data ) {
$notifications = $this->notifier->get_notifications( 'user-password' );
if ( count( $notifications ) > 0 ) {
// Ideally there should be only one notification for this type.
// If there are multiple notification then we will read data about only the last one
$setting = $this->notifier->read_settings( end( $notifications )->ID );
return $this->engine->handle_password_reset_shortcodes( $setting, $key, $user_login, $user_data );
}
return $message;
}
/**
* Send notification for new uses.
*
* @since 1.0
* @param unknown $user_id
*/
function user_register( $user_id ) {
$this->send_notification( 'admin-user', $user_id );
}
/**
* New User - Welcome email
*
* @since 1.1
* @param int $user_id New user id
*/
function welcome_email( $user_id ) {
$notifications = $this->notifier->get_notifications( 'welcome-email' );
foreach ( $notifications as $notification ) {
$this->engine->send_registration_email( $this->notifier->read_settings( $notification->ID ), get_userdata( $user_id ) );
}
}
/**
* Send notification based on type and ref id
*
* @access private
* @since 1.0
* @param unknown $type
* @param unknown $ref_id
*/
private function send_notification( $type, $ref_id ) {
$notifications = $this->notifier->get_notifications( $type );
foreach ( $notifications as $notification ) {
$this->engine->send_notification( $this->notifier->read_settings( $notification->ID ), $ref_id );
}
}
/**
* Can send comment notification or not
*
* @since 1.0
* @param unknown $comment
* @return unknown
*/
private function can_send_comment_notification( $comment ) {
// Returns false if the comment is marked as spam AND admin has enabled suppression of spam
$suppress_spam = get_option( 'bnfw_suppress_spam' );
if ( '1' === $suppress_spam && ( 0 === strcmp( $comment->comment_approved, 'spam' ) ) ) {
return false;
}
return true;
}
}
/* ------------------------------------------------------------------------ *
* Fire up the plugin
* ------------------------------------------------------------------------ */
BNFW::factory();