first commit

This commit is contained in:
2025-08-04 16:00:02 +02:00
commit 807c9b262f
7069 changed files with 2784666 additions and 0 deletions

View File

@@ -0,0 +1,118 @@
<?php
/**
* Plugin Name: WP Notifications Package
* Description: ...
* Plugin URI: https://elementor.com/
* Author: Elementor.com
* Version: 1.0.0
* License: GPL-3
* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
*
* Text Domain: wp-notifications-package
*/
use Elementor\WPNotificationsPackage\V120\Notifications;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Plugin_Example {
public Notifications $notifications;
public function __construct() {
$this->init();
}
private function init() {
require __DIR__ . '/vendor/autoload.php';
$this->notifications = new Notifications( [
'app_name' => 'wp-notifications-package',
'app_version' => '1.2.0',
'short_app_name' => 'wppe',
'app_data' => [
'plugin_basename' => plugin_basename( __FILE__ ),
],
] );
add_action( 'admin_notices', [ $this, 'display_notifications' ] );
add_action( 'admin_footer', [ $this, 'display_dialog' ] );
}
public function display_notifications() {
$notifications = $this->notifications->get_notifications_by_conditions();
if ( empty( $notifications ) ) {
return;
}
?>
<div class="notice notice-info is-dismissible">
<h3><?php esc_html_e( 'What\'s new:', 'wp-notifications-package' ); ?></h3>
<ul>
<?php foreach ( $notifications as $item ) : ?>
<li><a href="<?php echo esc_url( $item['link'] ?? '#' ); ?>" target="_blank"><?php echo esc_html( $item['title'] ); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<?php
// Example with HTML Dialog modal
?>
<div class="notice notice-info is-dismissible">
<button class="plugin-example-notifications-dialog-open">Open Notification</button>
</div>
<?php
}
public function display_dialog() {
$notifications = $this->notifications->get_notifications_by_conditions();
if ( empty( $notifications ) ) {
return;
}
?>
<style>
#plugin-example-notifications-dialog {
padding: 20px;
border: 1px solid #ccc;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#plugin-example-notifications-dialog::backdrop {
background: rgba(0, 0, 0, 0.5);
}
</style>
<dialog id="plugin-example-notifications-dialog">
<h3><?php esc_html_e( 'What\'s new:', 'wp-notifications-package' ); ?></h3>
<ul>
<?php foreach ( $notifications as $item ) : ?>
<li><a href="<?php echo esc_url( $item['link'] ?? '#' ); ?>" target="_blank"><?php echo esc_html( $item['title'] ); ?></a></li>
<?php endforeach; ?>
</ul>
<button class="close">Close</button>
</dialog>
<script>
document.addEventListener( 'DOMContentLoaded', function() {
const openDialogBtn = document.querySelector( '.plugin-example-notifications-dialog-open' );
const closeDialogBtn = document.querySelector( '#plugin-example-notifications-dialog button.close' );
const dialog = document.getElementById( 'plugin-example-notifications-dialog' );
openDialogBtn.addEventListener( 'click', function() {
dialog.showModal();
} );
closeDialogBtn.addEventListener( 'click', function() {
dialog.close();
} );
} );
</script>
<?php
}
}
new Plugin_Example();

View File

@@ -0,0 +1,252 @@
<?php
namespace Elementor\WPNotificationsPackage\V120;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Notifications {
const PACKAGE_VERSION = '1.2.0';
private string $app_name;
private string $app_version;
private string $short_app_name;
private string $transient_key;
private array $app_data = [];
private string $api_endpoint = 'https://my.elementor.com/api/v1/notifications';
public function __construct( array $config ) {
$this->app_name = sanitize_title( $config['app_name'] );
$this->app_version = $config['app_version'];
$this->short_app_name = $config['short_app_name'] ?? 'plugin';
$this->app_data = $config['app_data'] ?? [];
$this->transient_key = "_{$this->app_name}_notifications";
add_action( 'admin_init', [ $this, 'refresh_notifications' ] );
add_filter( 'body_class', [ $this, 'add_body_class' ] );
if ( ! empty( $this->app_data['plugin_basename'] ) ) {
register_deactivation_hook( $this->app_data['plugin_basename'], [ $this, 'on_plugin_deactivated' ] );
}
if ( ! empty( $this->app_data['theme_name'] ) ) {
add_action( 'switch_theme', [ $this, 'on_theme_deactivated' ], 10, 3 );
}
}
public function refresh_notifications(): void {
$this->get_notifications();
}
public function add_body_class( array $classes ): array {
$classes[] = $this->short_app_name . '-default';
return $classes;
}
public function get_notifications_by_conditions( $force_request = false ) {
$notifications = $this->get_notifications( $force_request );
$filtered_notifications = [];
foreach ( $notifications as $notification ) {
if ( empty( $notification['conditions'] ) ) {
$filtered_notifications = $this->add_to_array( $filtered_notifications, $notification );
continue;
}
if ( ! $this->check_conditions( $notification['conditions'] ) ) {
continue;
}
$filtered_notifications = $this->add_to_array( $filtered_notifications, $notification );
}
return $filtered_notifications;
}
private function get_notifications( $force_update = false, $additional_status = false ): array {
$notifications = static::get_transient( $this->transient_key );
if ( false === $notifications || $force_update ) {
$notifications = $this->fetch_data( $additional_status );
static::set_transient( $this->transient_key, $notifications );
}
return $notifications;
}
private function add_to_array( $filtered_notifications, $notification ) {
foreach ( $filtered_notifications as $filtered_notification ) {
if ( $filtered_notification['id'] === $notification['id'] ) {
return $filtered_notifications;
}
}
$filtered_notifications[] = $notification;
return $filtered_notifications;
}
private function check_conditions( $groups ): bool {
foreach ( $groups as $group ) {
if ( $this->check_group( $group ) ) {
return true;
}
}
return false;
}
private function check_group( $group ) {
$is_or_relation = ! empty( $group['relation'] ) && 'OR' === $group['relation'];
unset( $group['relation'] );
$result = false;
foreach ( $group as $condition ) {
// Reset results for each condition.
$result = false;
switch ( $condition['type'] ) {
case 'wordpress': // phpcs:ignore WordPress.WP.CapitalPDangit
// include an unmodified $wp_version
include ABSPATH . WPINC . '/version.php';
$result = version_compare( $wp_version, $condition['version'], $condition['operator'] );
break;
case 'multisite':
$result = is_multisite() === $condition['multisite'];
break;
case 'language':
$in_array = in_array( get_locale(), $condition['languages'], true );
$result = 'in' === $condition['operator'] ? $in_array : ! $in_array;
break;
case 'plugin':
if ( ! function_exists( 'is_plugin_active' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
$is_plugin_active = is_plugin_active( $condition['plugin'] );
if ( empty( $condition['operator'] ) ) {
$condition['operator'] = '==';
}
$result = '==' === $condition['operator'] ? $is_plugin_active : ! $is_plugin_active;
break;
case 'theme':
$theme = wp_get_theme();
if ( wp_get_theme()->parent() ) {
$theme = wp_get_theme()->parent();
}
if ( $theme->get_template() === $condition['theme'] ) {
$version = $theme->version;
} else {
$version = '';
}
$result = version_compare( $version, $condition['version'], $condition['operator'] );
break;
default:
$result = apply_filters( "$this->app_name/notifications/condition/{$condition['type']}", $result, $condition );
break;
}
if ( ( $is_or_relation && $result ) || ( ! $is_or_relation && ! $result ) ) {
return $result;
}
}
return $result;
}
private function fetch_data( $additional_status = false ): array {
$body_request = [
'api_version' => self::PACKAGE_VERSION,
'app_name' => $this->app_name,
'app_version' => $this->app_version,
'site_lang' => get_bloginfo( 'language' ),
'site_key' => $this->get_site_key(),
];
$timeout = 10;
if ( ! empty( $additional_status ) ) {
$body_request['status'] = $additional_status;
$timeout = 3;
}
$response = wp_remote_get(
$this->api_endpoint,
[
'timeout' => $timeout,
'body' => $body_request,
]
);
if ( is_wp_error( $response ) || 200 !== (int) wp_remote_retrieve_response_code( $response ) ) {
return [];
}
$data = \json_decode( wp_remote_retrieve_body( $response ), true );
if ( empty( $data['notifications'] ) || ! is_array( $data['notifications'] ) ) {
return [];
}
return $data['notifications'];
}
private function get_site_key() {
$site_key = get_option( 'elementor_connect_site_key' );
if ( ! $site_key ) {
$site_key = md5( uniqid( wp_generate_password() ) );
update_option( 'elementor_connect_site_key', $site_key );
}
return $site_key;
}
private static function get_transient( $cache_key ) {
$cache = get_option( $cache_key );
if ( empty( $cache['timeout'] ) ) {
return false;
}
if ( time() > $cache['timeout'] ) {
return false;
}
return json_decode( $cache['value'], true );
}
private static function set_transient( $cache_key, $value, $expiration = '+12 hours' ) {
$data = [
'timeout' => strtotime( $expiration, time() ),
'value' => wp_json_encode( $value ),
];
return update_option( $cache_key, $data, false );
}
public function on_plugin_deactivated(): void {
$this->get_notifications( true, 'deactivated' );
}
public function on_theme_deactivated( string $new_name, \WP_Theme $new_theme, \WP_Theme $old_theme ): void {
if ( $old_theme->get_template() === $this->app_data['theme_name'] ) {
$this->get_notifications( true, 'deactivated' );
}
}
}