WPJM_SUBMITJOB
Class WPJM_SUBMITJOB
Source Source
File: src/integrations/wp-job-manager/triggers/wpjm-submitjob.php
class WPJM_SUBMITJOB { /** * Integration code * @var string */ public static $integration = 'WPJM'; private $trigger_code; private $trigger_meta; /** * Set up Automator trigger constructor. */ public function __construct() { $this->trigger_code = 'WPJMSUBMITJOB'; $this->trigger_meta = 'WPJMJOBTYPE'; if ( is_admin() ) { add_action( 'init', [ $this, 'plugins_loaded' ], 19 ); } else { $this->define_trigger(); } } /** * Define and register the trigger by pushing it into the Automator object */ public function define_trigger() { $trigger = array( 'author' => Automator()->get_author_name( $this->trigger_code ), 'support_link' => Automator()->get_author_support_link( $this->trigger_code, 'integration/wp-job-manager/' ), 'integration' => self::$integration, 'code' => $this->trigger_code, /* translators: Logged-in trigger - WP Job Manager */ 'sentence' => sprintf( esc_attr__( 'A user submits a {{specific type of:%1$s}} job', 'uncanny-automator' ), $this->trigger_meta ), /* translators: Logged-in trigger - WP Job Manager */ 'select_option_name' => esc_attr__( 'A user submits a {{specific type of}} job', 'uncanny-automator' ), 'action' => 'transition_post_status', 'priority' => 20, 'accepted_args' => 3, 'validation_function' => array( $this, 'job_manager_job_submitted' ), 'options' => [ Automator()->helpers->recipe->wp_job_manager->options->list_wpjm_job_types(), ], ); Automator()->register->trigger( $trigger ); } /** * */ public function plugins_loaded() { $this->define_trigger(); } /** * @param $job_id * @param $post * @param $update */ public function job_manager_job_submitted( $new_status, $old_status, $post ) { if ( empty( $post ) ) { return; } if ( ! $post instanceof \WP_Post ) { return; } $job_id = $post->ID; if ( 'job_listing' !== $post->post_type ) { return; } if ( ! in_array( $post->post_status, array( 'pending', 'publish' ), true ) ) { return; } $job_terms = wpjm_get_the_job_types( $job_id ); $recipes = Automator()->get->recipes_from_trigger_code( $this->trigger_code ); $conditions = $this->match_condition( $job_terms, $recipes, $this->trigger_meta, $this->trigger_code ); if ( empty( $conditions ) ) { return; } $user_id = $post->post_author; foreach ( $conditions['recipe_ids'] as $recipe_id ) { if ( ! Automator()->is_recipe_completed( $recipe_id, $user_id ) ) { $trigger_args = array( 'code' => $this->trigger_code, 'meta' => $this->trigger_meta, 'recipe_to_match' => $recipe_id, 'ignore_post_id' => true, 'user_id' => $user_id, ); $args = Automator()->maybe_add_trigger_entry( $trigger_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'] = $this->trigger_code; $trigger_meta['meta_value'] = $job_id; Automator()->insert_trigger_meta( $trigger_meta ); Automator()->maybe_trigger_complete( $result['args'] ); break; } } } } } } /** * @param $terms * @param null $recipes * @param null $trigger_meta * @param null $trigger_code * * @return array|bool */ public function match_condition( $terms, $recipes = null, $trigger_meta = null, $trigger_code = null ) { if ( null === $recipes ) { return false; } $recipe_ids = array(); $entry_to_match = array(); if ( empty( $terms ) ) { return false; } foreach ( $terms as $term ) { $entry_to_match[] = $term->term_id; } foreach ( $recipes as $recipe ) { foreach ( $recipe['triggers'] as $trigger ) { if ( key_exists( $trigger_meta, $trigger['meta'] ) && ( in_array( (int) $trigger['meta'][ $trigger_meta ], $entry_to_match, true ) || $trigger['meta'][ $trigger_meta ] === "-1" ) ) { $recipe_ids[ $recipe['ID'] ] = $recipe['ID']; break; } } } if ( ! empty( $recipe_ids ) ) { return array( '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.
- define_trigger — Define and register the trigger by pushing it into the Automator object
- job_manager_job_submitted
- match_condition
- plugins_loaded