HEX
Server: Apache/2.4.65 (Debian)
System: Linux 88f31f35b0b8 6.1.0-38-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.147-1 (2025-08-02) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/html/wp-content/plugins/publishpress/modules/async-notifications/async-notifications.php
<?php
/**
 * @package PublishPress
 * @author  PublishPress
 *
 * Copyright (c) 2022 PublishPress
 *
 * ------------------------------------------------------------------------------
 * Based on Edit Flow
 * Author: Daniel Bachhuber, Scott Bressler, Mohammad Jangda, Automattic, and
 * others
 * Copyright (c) 2009-2016 Mohammad Jangda, Daniel Bachhuber, et al.
 * ------------------------------------------------------------------------------
 *
 * This file is part of PublishPress
 *
 * PublishPress is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * PublishPress 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 PublishPress.  If not, see <http://www.gnu.org/licenses/>.
 */

use PublishPress\AsyncNotifications\WPCronAdapter;
use PublishPress\Legacy\Auto_loader;
use PublishPress\Notifications\Traits\Dependency_Injector;
use PublishPress\Notifications\Traits\PublishPress_Module;
use PublishPress\Notifications\Workflow\Workflow;

if (! class_exists('PP_Async_Notifications')) {
    /**
     * class PP_Async_Notifications. Depends on the Improved Notifications module.
     */
    class PP_Async_Notifications extends PP_Module
    {
        use Dependency_Injector, PublishPress_Module;

        const SETTINGS_SLUG = 'pp-async-notifications-settings';

        public $module_name = 'async-notifications';

        public $module_url;

        /**
         * Instace for the module
         *
         * @var stdClass
         */
        public $module;

        /**
         * Construct the Notifications class
         */
        public function __construct()
        {
            global $publishpress;

            $this->viewsPath = dirname(dirname(dirname(__FILE__))) . '/views';

            $this->module_url = $this->get_module_url(__FILE__);

            // Register the module with PublishPress
            $args = [
                'title' => __('Async Notifications', 'publishpress'),
                'short_description' => false,
                'extended_description' => false,
                'module_url' => $this->module_url,
                'icon_class' => 'dashicons dashicons-feedback',
                'slug' => 'async-notifications',
                'default_options' => [
                    'enabled' => 'on',
                ],
                'options_page' => false,
            ];

            // Apply a filter to the default options
            $args['default_options'] = apply_filters(
                'publishpress_async_notif_default_options',
                $args['default_options']
            );
            $this->module = $publishpress->register_module(
                PublishPress\Legacy\Util::sanitize_module_name($this->module_name),
                $args
            );

            Auto_loader::register('\\PublishPress\\AsyncNotifications\\', __DIR__ . '/library');

            parent::__construct();
        }

        /**
         * Initialize the module. Conditionally loads if the module is enabled
         *
         * @throws Exception
         */
        public function init()
        {
            add_action('publishpress_notifications_running_for_post', [$this, 'schedule_notifications'], 7);
            add_action(WPCronAdapter::SEND_NOTIFICATION_HOOK, [$this, 'send_notification'], 10, 8);
            add_filter('debug_information', [$this, 'filterDebugInformation']);
            add_filter('publishpress_notifications_stop_sync_notifications', '__return_true');
        }

        /**
         * Load default editorial fields the first time the module is loaded
         *
         * @since 0.7
         */
        public function install()
        {
        }

        /**
         * Upgrade our data in case we need to
         *
         * @since 0.7
         */
        public function upgrade($previous_version)
        {
        }

        /**
         * @param array $params
         */
        public function send_notification($params = [])
        {
            if (empty($params) || ! is_array($params) || ! isset($params['workflow_id'])) {
                return;
            }

            // Work the notification
            $workflow = Workflow::load_by_id((int)$params['workflow_id']);
            $workflow->event_args = $params['event_args'];

            if (!apply_filters('publishpress_notifications_should_send_notification', true, $workflow)) {
                return;
            }

            do_action('publishpress_notifications_send_notifications_action', $workflow, true);

            do_action('publishpress_notifications_async_notification_sent', $params);
        }

        /**
         * @param array $debugInfo
         *
         * @return array
         */
        public function filterDebugInformation($debugInfo)
        {
            $scheduledNotifications = [];

            $cronTasks = _get_cron_array();

            $expectedHooks = [
                WPCronAdapter::SEND_NOTIFICATION_HOOK,
                'publishpress_notifications_send_notification',
            ];

            if (! empty($cronTasks)) {
                foreach ($cronTasks as $time => $cron) {
                    foreach ($cron as $hook => $dings) {
                        if (! in_array($hook, $expectedHooks)) {
                            continue;
                        }

                        foreach ($dings as $sig => $data) {
                            $formattedDate = date('Y-m-d H:i:s', $time);

                            $scheduledNotifications["$hook-$sig-$time"] = [
                                'label' => $formattedDate,
                                'value' => sprintf(
                                    __('Event: %s, Workflow ID: %s, Post ID: %s, User ID: %s', 'publishpress'),
                                    $data['args']['event'],
                                    $data['args']['workflowId'],
                                    $data['args']['postId'],
                                    $data['args']['userId']
                                ),
                            ];
                        }
                    }
                }
            }

            $debugInfo['publishpress-scheduled-notifications'] = [
                'label' => 'PublishPress Scheduled Notifications in the Cron',
                'description' => '',
                'show_count' => true,
                'fields' => $scheduledNotifications,
            ];

            return $debugInfo;
        }

        public function schedule_notifications($workflow)
        {
            if (!apply_filters('publishpress_notifications_schedule_notification', true, $workflow)) {
                return;
            }

            $scheduler = $this->get_service('notification_scheduler');

            $scheduler->scheduleNotification($workflow->workflow_post->ID, $workflow->event_args);
        }
    }
}