BDB_USERPOSTREPLYFORUM
Class BDB_USERPOSTREPLYFORUM
Source Source
File: src/integrations/buddyboss/triggers/bdb-userpostreplyforum.php
class BDB_USERPOSTREPLYFORUM { /** * Integration code * @var string */ public static $integration = 'BDB'; private $trigger_code; private $trigger_meta; /** * Set up Automator trigger constructor. */ public function __construct() { $this->trigger_code = 'BDBUSERPOSTREPLYFORUM'; $this->trigger_meta = 'BDBTOPIC'; $this->define_trigger(); } /** * Define and register the trigger by pushing it into the Automator object */ public function define_trigger() { $args = [ 'post_type' => 'forum', 'posts_per_page' => 999, 'orderby' => 'title', 'order' => 'ASC', 'post_status' => [ 'publish', 'private' ], ]; $options = Automator()->helpers->recipe->options->wp_query( $args, true, __( 'Any forum', 'uncanny-automator' ) ); $forum_relevant_tokens = [ 'BDBFORUMS' => __( 'Forum title', 'uncanny-automator' ), 'BDBFORUMS_ID' => __( 'Forum ID', 'uncanny-automator' ), 'BDBFORUMS_URL' => __( 'Forum URL', 'uncanny-automator' ), ]; $relevant_tokens = [ $this->trigger_meta => __( 'Topic title', 'uncanny-automator' ), $this->trigger_meta . '_ID' => __( 'Topic ID', 'uncanny-automator' ), $this->trigger_meta . '_URL' => __( 'Topic URL', 'uncanny-automator' ), ]; $trigger = array( 'author' => Automator()->get_author_name( $this->trigger_code ), 'support_link' => Automator()->get_author_support_link( $this->trigger_code, 'integration/buddyboss/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - bbPress */ 'sentence' => sprintf( __( 'A user replies to {{a topic:%1$s}} in {{a forum:%2$s}}', 'uncanny-automator' ), $this->trigger_meta, 'BDBFORUMS' ), /* translators: Logged-in trigger - bbPress */ 'select_option_name' => __( 'A user replies to {{a topic}} in {{a forum}}', 'uncanny-automator' ), 'action' => 'bbp_new_reply', 'priority' => 10, 'accepted_args' => 3, 'validation_function' => array( $this, 'bbp_insert_reply' ), 'options_group' => [ $this->trigger_meta => [ Automator()->helpers->recipe->field->select_field_ajax( 'BDBFORUMS', __( 'Forum', 'uncanny-automator' ), $options, '', '', false, true, [ 'target_field' => $this->trigger_meta, 'endpoint' => 'select_topic_from_forum_BDBTOPICREPLY', ], $forum_relevant_tokens ), Automator()->helpers->recipe->field->select_field( $this->trigger_meta, __( 'Topic', 'uncanny-automator' ), array(), false, false, false, $relevant_tokens ), ], ], ); Automator()->register->trigger( $trigger ); return; } /** * Validation function when the trigger action is hit * * @param $reply_id * @param $topic_id * @param $forum_id */ public function bbp_insert_reply( $reply_id, $topic_id, $forum_id ) { $recipes = Automator()->get->recipes_from_trigger_code( $this->trigger_code ); $conditions = $this->match_condition( $topic_id, $forum_id, $recipes, $this->trigger_meta, $this->trigger_code, 'SUBVALUE' ); if ( ! $conditions ) { return; } $user_id = get_current_user_id(); if ( ! empty( $conditions ) ) { foreach ( $conditions['recipe_ids'] as $recipe_id => $trigger_id ) { if ( ! Automator()->is_recipe_completed( $recipe_id, $user_id ) ) { $args = [ 'code' => $this->trigger_code, 'meta' => $this->trigger_meta, 'recipe_to_match' => $recipe_id, 'trigger_to_match' => $trigger_id, 'post_id' => $topic_id, 'user_id' => $user_id, ]; $args = Automator()->maybe_add_trigger_entry( $args, false ); if ( $args ) { foreach ( $args as $result ) { if ( true === $result['result'] ) { $trigger_meta = [ 'user_id' => $user_id, 'trigger_id' => $result['args']['trigger_id'], 'trigger_log_id' => $result['args']['get_trigger_id'], 'run_number' => $result['args']['run_number'], ]; $trigger_meta['meta_key'] = 'BDBTOPICREPLY'; $trigger_meta['meta_value'] = $reply_id; Automator()->insert_trigger_meta( $trigger_meta ); Automator()->maybe_trigger_complete( $result['args'] ); } } } } } } } /** * Match condition for form field and value. * * @param int $topic_id . * @param int $forum_id . * @param null|array $recipes . * @param null|string $trigger_meta . * @param null|string $trigger_code . * @param null|string $trigger_second_code . * * @return array|bool */ public function match_condition( $topic_id, $forum_id, $recipes = null, $trigger_meta = null, $trigger_code = null, $trigger_second_code = null ) { if ( null === $recipes ) { return false; } $recipe_ids = array(); foreach ( $recipes as $recipe ) { foreach ( $recipe['triggers'] as $trigger ) { if ( key_exists( 'BDBFORUMS', $trigger['meta'] ) && ( $trigger['meta']['BDBFORUMS'] == - 1 || $trigger['meta']['BDBFORUMS'] == $forum_id ) ) { if ( key_exists( $trigger_meta, $trigger['meta'] ) && ( $trigger['meta'][ $trigger_meta ] == - 1 || $trigger['meta'][ $trigger_meta ] == $topic_id ) ) { $recipe_ids[ $recipe['ID'] ] = $trigger['ID']; } } } } if ( ! empty( $recipe_ids ) ) { return [ 'recipe_ids' => $recipe_ids, 'result' => true ]; } return false; } }
Expand full source code Collapse full source code View on Github
Methods Methods
- __construct — Set up Automator trigger constructor.
- bbp_insert_reply — Validation function when the trigger action is hit
- define_trigger — Define and register the trigger by pushing it into the Automator object
- load_options
- match_condition — Match condition for form field and value.