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:
<?php
class Inbound_Automation_Post_Type {
static $queue;
function __construct() {
self::load_hooks();
}
private function load_hooks() {
add_action( 'init' , array( __CLASS__ , 'register_post_type' ), 11);
if (is_admin()) {
add_filter( 'manage_automation_posts_columns' , array( __CLASS__ , 'register_columns') );
add_action( "manage_posts_custom_column", array( __CLASS__ , 'prepare_column_data' ) , 10, 2 );
add_action( 'admin_enqueue_scripts' , array(__CLASS__ , 'enqueue_admin_scripts' ) );
add_action( 'admin_menu' , array( __CLASS__ , 'setup_menus' ));
add_filter('post_row_actions', array(__CLASS__, 'add_row_actions'),8,2);
add_action( 'wp_ajax_automation_rule_toggle_status', array(__CLASS__, 'ajax_toggle_rule_status'));
add_action( 'wp_ajax_automation_rule_toggle_defer_processing', array(__CLASS__, 'ajax_toggle_rule_defer_processing'));
add_action( 'wp_ajax_automation_rule_remove_taks', array(__CLASS__, 'ajax_clear_rule_tasks'));
add_action('admin_footer-edit.php', array(__CLASS__, 'register_bulk_edit_fields'));
add_action('load-edit.php', array(__CLASS__, 'process_bulk_actions'));
}
}
public static function register_post_type() {
$labels = array(
'name' => __('Automation', 'inbound-pro' ),
'singular_name' => __( 'Rule', 'inbound-pro' ),
'add_new' => __( 'New Rule', 'inbound-pro' ),
'add_new_item' => __( 'Create New Rule' , 'inbound-pro' ),
'edit_item' => __( 'Edit Rule' , 'inbound-pro' ),
'new_item' => __( 'New Rules' , 'inbound-pro' ),
'view_item' => __( 'View Rules' , 'inbound-pro' ),
'search_items' => __( 'Search Rules' , 'inbound-pro' ),
'not_found' => __( 'Nothing found' , 'inbound-pro' ),
'not_found_in_trash' => __( 'Nothing found in Trash' , 'inbound-pro' ),
'parent_item_colon' => ''
);
$args = array(
'labels' => $labels,
'public' => false,
'publicly_queryable' => false,
'show_ui' => true,
'query_var' => true,
'menu_icon' => '',
'show_in_menu' => true,
'show_in_nav_menus' => false,
'capability_type' => 'post',
'hierarchical' => false,
'menu_position' => 35,
'supports' => array('title')
);
register_post_type( 'automation' , $args );
}
public static function get_rules_as_array() {
$rules = get_posts( array(
'post_type' => 'automation',
'posts_per_page' => -1
));
$rules_array = array();
foreach ($rules as $rule) {
$rules_array[$rule->ID] = $rule->post_title;
}
return $rules_array;
}
public static function register_columns( $cols ) {
self::$queue = Inbound_Automation_Processing::load_queue();
$cols = array(
"cb" => "<input type=\"checkbox\" />",
"title" => __( 'Automation' , 'inbound-pro' ),
"status" => __( 'Automation Status' , 'inbound-pro' ),
"defer" => __( 'Defer Processing' , 'inbound-pro' ),
);
$cols = apply_filters('automation_change_columns',$cols);
return $cols;
}
public static function prepare_column_data( $column , $post_id ) {
global $post;
if ($post->post_type !='automation'){
return $column;
}
switch ( $column ) {
case "title":
$automation_name = get_the_title( $post_id );
$automation_name = apply_filters('automation_name',$automation_name);
echo $automation_name;
break;
case "status":
$rule = get_post_meta($post->ID, 'inbound_rule', true);
$status = ( !isset($rule['status']) || $rule['status'] == 'on' ) ? 'on' : 'off';
?>
<label class="switch switch-green">
<input type="checkbox" class="switch-input toggle-rule-status" data-rule-id="<?php echo $post->ID;?>" <?php echo ($status == 'on') ? 'checked' : ''; ?>>
<span class="switch-label " data-on="On" data-off="Off" ></span>
<span class="switch-handle "></span>
</label>
<?php
break;
case "defer":
$rule = get_post_meta($post->ID, 'inbound_rule', true);
$defer = ( !isset($rule['defer']) || $rule['defer'] == 'on' ) ? 'on' : 'off';
?>
<label class="switch switch-green">
<input type="checkbox" class="switch-input toggle-defer-status" data-rule-id="<?php echo $post->ID;?>" <?php echo ($defer == 'on') ? 'checked' : ''; ?>>
<span class="switch-label " data-on="On" data-off="Off" ></span>
<span class="switch-handle "></span>
</label>
<?php
break;
}
do_action('automation_custom_columns',$column, $post_id);
}
public static function define_sortable_columns($columns) {
$columns = apply_filters('',$columns);
return $columns;
}
public static function enqueue_admin_scripts( $hook ) {
$screen = get_current_screen();
if (isset($screen) && $screen->id == 'edit-automation' ) {
wp_enqueue_style( 'automation-list' , INBOUND_AUTOMATION_URLPATH . 'assets/css/admin/admin.list.css' );
wp_enqueue_script( 'automation-list' , INBOUND_AUTOMATION_URLPATH . 'assets/js/admin.rules-list.js' );
wp_enqueue_script('sweetalert', INBOUND_AUTOMATION_URLPATH . 'assets/libraries/SweetAlert/dist/sweetalert.min.js');
wp_enqueue_style('sweetalert', INBOUND_AUTOMATION_URLPATH . 'assets/libraries/SweetAlert/dist/sweetalert.css');
}
}
public static function setup_menus() {
if ( !current_user_can('manage_options')) {
remove_menu_page( 'edit.php?post_type=automation' );
}
}
public static function calculate_tasks($rule_id) {
global $wpdb;
$table_name = $wpdb->prefix . "inbound_automation_queue";
$query = 'SELECT * FROM '.$table_name.' WHERE rule_id = "'.intval($rule_id).'" AND ( status="pending" OR status="waiting" )';
$results = $wpdb->get_results( $query , ARRAY_A );
return count($results);;
}
public static function add_row_actions($actions, $post) {
if ( $post->post_type != 'automation' ) {
return $actions;
}
$actions['clear'] = '<a class="clear-queued-tasks" data-rule-id="'.$post->ID.'" href="#clearing" title="'
. esc_attr(__( 'Clear Queued Tasks', 'inbound-pro' ))
. '">' . __( 'Clear Queued Tasks', 'inbound-pro' ) . ' (' . self::calculate_tasks( $post->ID ) .')' . '</a>';
return $actions;
}
public static function register_bulk_edit_fields() {
global $post_type;
if ($post_type != 'automation') {
return;
}
?>
<script type="text/javascript">
jQuery(document).ready(function () {
jQuery('<option>').val('turn-off').text('<?php _e('Turn Off Rule', 'inbound-pro' ) ?>').appendTo("select[name='action']");
jQuery('<option>').val('turn-off').text('<?php _e('Turn Off Rule', 'inbound-pro' ) ?>').appendTo("select[name='action2']");
jQuery('<option>').val('turn-on').text('<?php _e('Turn On Rule', 'inbound-pro' ) ?>').appendTo("select[name='action']");
jQuery('<option>').val('turn-on').text('<?php _e('Turn On Rule', 'inbound-pro' ) ?>').appendTo("select[name='action2']");
});
</script>
<?php
}
public static function process_bulk_actions() {
if (!isset($_REQUEST['post_type']) || $_REQUEST['post_type'] != 'automation' || !isset($_REQUEST['post'])) {
return;
}
if (!current_user_can('manage_options')) {
die();
}
$rule_ids = array_map('intval', $_REQUEST['post']);
switch ($_REQUEST['action']) {
case 'turn-off':
$added = 0;
foreach ($rule_ids as $rule_id) {
self::ajax_toggle_rule_status( $rule_id , 'off');
$added++;
}
$sendback = add_query_arg(array('added' => $added, 'post_type' => 'automation', 'ids' => join(',', $rule_ids)), $sendback);
break;
case 'turn-on':
$added = 0;
foreach ($rule_ids as $rule_id) {
self::ajax_toggle_rule_status( $rule_id , 'on');
$added++;
}
$sendback = add_query_arg(array('added' => $added, 'post_type' => 'automation', 'ids' => join(',', $rule_ids)), $sendback);
break;
}
wp_redirect($sendback);
exit();
}
public static function mark_jobs_cancelled( $params ) {
global $wpdb;
$table_name = $wpdb->prefix . "inbound_automation_queue";
$args = array();
if (isset($params['rule_id'])) {
$args['rule_id'] = $params['rule_id'];
}
if (isset($params['job_id'])) {
$args['id'] = $params['job_id'];
}
if ($params) {
$wpdb->update($table_name, array('status'=>'cancelled') , $args);
}
}
public static function ajax_toggle_rule_status( $rule_id = null , $status = 'on') {
$rule_id = (isset($_REQUEST['rule_id'])) ? intval($_REQUEST['rule_id']) : $rule_id;
$rule = get_post_meta($rule_id, 'inbound_rule', true);
$status = ( isset($_REQUEST['status']) ) ? sanitize_text_field($_REQUEST['status']) : $status;
$rule['status'] = $status;
if (defined('DOING_AJAX') && DOING_AJAX) {
echo update_post_meta($rule_id, 'inbound_rule', $rule);
exit;
} else {
return update_post_meta($rule_id, 'inbound_rule', $rule);
}
}
public static function ajax_toggle_rule_defer_processing( $rule_id = null , $defer = 'on') {
$rule_id = (isset($_REQUEST['rule_id'])) ? intval($_REQUEST['rule_id']) : $rule_id;
$rule = get_post_meta($rule_id, 'inbound_rule', true);
$defer = ( isset($_REQUEST['defer']) ) ? sanitize_text_field($_REQUEST['defer']) : $defer;
$rule['defer'] = $defer;
if (defined('DOING_AJAX') && DOING_AJAX) {
echo update_post_meta($rule_id, 'inbound_rule', $rule);
exit;
} else {
return update_post_meta($rule_id, 'inbound_rule', $rule);
}
}
public static function ajax_clear_rule_tasks() {
$rule_id = intval($_REQUEST['rule_id']);
$args = array(
'rule_id' => $rule_id
);
self::mark_jobs_cancelled($args);
echo $rule_id;
exit;
}
}
new Inbound_Automation_Post_Type();