add-user-role.php
1 year ago
change-specific-role-to-specific.php
3 years ago
create-post.php
6 months ago
insert-comment.php
2 years ago
post-of-type-set-to-status.php
1 year ago
post-trashed.php
1 year ago
post-updated-only.php
3 months ago
remove-user-role.php
3 years ago
update-post.php
1 year ago
update-specific-post.php
1 year ago
update-user-role.php
3 years ago
user-comment-approved.php
2 years ago
user-create.php
3 years ago
user-login.php
1 year ago
user-meta-key-updated.php
9 months ago
user-password-reset.php
1 year ago
user-profile-field-updated.php
3 years ago
view-post.php
1 year ago
insert-comment.php
138 lines
| 1 | <?php |
| 2 | /** |
| 3 | * InsertComment. |
| 4 | * php version 5.6 |
| 5 | * |
| 6 | * @category InsertComment |
| 7 | * @package SureTriggers |
| 8 | * @author BSF <username@example.com> |
| 9 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 |
| 10 | * @link https://www.brainstormforce.com/ |
| 11 | * @since 1.0.0 |
| 12 | */ |
| 13 | |
| 14 | namespace SureTriggers\Integrations\Wordpress\Triggers; |
| 15 | |
| 16 | use SureTriggers\Controllers\AutomationController; |
| 17 | use SureTriggers\Integrations\WordPress\WordPress; |
| 18 | use SureTriggers\Traits\SingletonLoader; |
| 19 | use WP_Post; |
| 20 | |
| 21 | if ( ! class_exists( 'InsertComment' ) ) : |
| 22 | |
| 23 | |
| 24 | /** |
| 25 | * InsertComment |
| 26 | * |
| 27 | * @category InsertComment |
| 28 | * @package SureTriggers |
| 29 | * @author BSF <username@example.com> |
| 30 | * @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3 |
| 31 | * @link https://www.brainstormforce.com/ |
| 32 | * @since 1.0.0 |
| 33 | */ |
| 34 | class InsertComment { |
| 35 | |
| 36 | |
| 37 | /** |
| 38 | * Integration type. |
| 39 | * |
| 40 | * @var string |
| 41 | */ |
| 42 | public $integration = 'WordPress'; |
| 43 | |
| 44 | |
| 45 | /** |
| 46 | * Trigger name. |
| 47 | * |
| 48 | * @var string |
| 49 | */ |
| 50 | public $trigger = 'wp_insert_comment'; |
| 51 | |
| 52 | use SingletonLoader; |
| 53 | |
| 54 | |
| 55 | /** |
| 56 | * Constructor |
| 57 | * |
| 58 | * @since 1.0.0 |
| 59 | */ |
| 60 | public function __construct() { |
| 61 | add_filter( 'sure_trigger_register_trigger', [ $this, 'register' ] ); |
| 62 | } |
| 63 | |
| 64 | /** |
| 65 | * Register action. |
| 66 | * |
| 67 | * @param array $triggers trigger data. |
| 68 | * @return array |
| 69 | */ |
| 70 | public function register( $triggers ) { |
| 71 | |
| 72 | $triggers[ $this->integration ][ $this->trigger ] = [ |
| 73 | 'event_name' => 'wp_insert_comment', |
| 74 | 'label' => __( 'User submits a comment on a post', 'suretriggers' ), |
| 75 | 'action' => $this->trigger, |
| 76 | 'function' => [ $this, 'trigger_listener' ], |
| 77 | 'priority' => 10, |
| 78 | 'accepted_args' => 2, |
| 79 | ]; |
| 80 | |
| 81 | return $triggers; |
| 82 | |
| 83 | } |
| 84 | |
| 85 | /** |
| 86 | * Trigger listener |
| 87 | * |
| 88 | * @param int $comment_id comment id. |
| 89 | * @param object|array $comment comment. |
| 90 | * @since 1.0.0 |
| 91 | * |
| 92 | * @return void |
| 93 | */ |
| 94 | public function trigger_listener( $comment_id, $comment ) { |
| 95 | if ( is_object( $comment ) ) { |
| 96 | $comment = get_object_vars( $comment ); |
| 97 | } |
| 98 | |
| 99 | $post = get_post( absint( $comment['comment_post_ID'] ) ); |
| 100 | |
| 101 | if ( ! $post instanceof WP_Post ) { |
| 102 | return; |
| 103 | } |
| 104 | |
| 105 | $user_id = (int) $comment['user_id']; |
| 106 | |
| 107 | |
| 108 | $context['comment_id'] = $comment_id; |
| 109 | $context['comment'] = $comment['comment_content']; |
| 110 | $context['comment_author'] = $comment['comment_author']; |
| 111 | $context['comment_author_email'] = $comment['comment_author_email']; |
| 112 | $context['comment_date'] = $comment['comment_date']; |
| 113 | $context['post'] = $post->ID; |
| 114 | $context['post_author'] = get_the_author_meta( 'display_name', (int) $post->post_author ); |
| 115 | $context['post_title'] = $post->post_title; |
| 116 | $context['post_link'] = get_the_permalink( $post->ID ); |
| 117 | $context = array_merge( $context, WordPress::get_user_context( $user_id ) ); |
| 118 | AutomationController::sure_trigger_handle_trigger( |
| 119 | [ |
| 120 | 'trigger' => $this->trigger, |
| 121 | 'context' => $context, |
| 122 | ] |
| 123 | ); |
| 124 | |
| 125 | } |
| 126 | |
| 127 | |
| 128 | } |
| 129 | |
| 130 | |
| 131 | InsertComment::get_instance(); |
| 132 | |
| 133 | endif; |
| 134 | |
| 135 | |
| 136 | |
| 137 | |
| 138 |