HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/triad-infosec/wp-content/plugins/events-calendar-pro/src/Tribe/Virtual/Updater.php
<?php
/**
 * Handles Plugin Updates
 *
 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
 *
 * @package Tribe\Events\Virtual
 */

namespace Tribe\Events\Virtual;

use Tribe\Events\Virtual\Meetings\Zoom\Api;
use Tribe\Events\Virtual\Meetings\Zoom\Event_Meta as Zoom_Meta;
use Tribe\Events\Virtual\Meetings\Zoom\OAuth;
use Tribe\Events\Virtual\Meetings\Zoom\Settings;
use Tribe\Events\Virtual\Meetings\Zoom\Url;
use Tribe__Events__Updater;

/**
 * Class Updater.
 *
 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
 *
 * @package Tribe\Events\Virtual
 */
class Updater extends Tribe__Events__Updater {
	/**
	 * Virtual Events reset version.
	 *
	 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
	 *
	 * @var string
	 */
	protected $reset_version = '1.4';

	/**
	 * Virtual Events Schema Key.
	 *
	 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
	 *
	 * @var string
	 */
	protected $version_option = 'events-virtual-schema-version';

	/**
	 * Returns an array of callbacks with version strings as keys.
	 * Any key higher than the version recorded in the DB
	 * and lower than $this->current_version will have its
	 * callback called.
	 *
	 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
	 *
	 * @return array<string|callback> The version number and callback to use.
	 */
	public function get_update_callbacks() {
		return [
			'1.6' => [ $this, 'video_source_migration' ],
			'1.8' => [ $this, 'autodetect_source_migration' ],
		];
	}

	/**
	 * Setup multiple account migration.
	 *
	 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
	 * @deprecated 1.15.3 - No replacement.
	 *
	 * @return boolean whether the migration to multiple accounts is complete.
	 */
	public function multiple_account_migration_setup() {
		_deprecated_function( __METHOD__, '1.15.3', 'No replacement.' );

		/** @var \Tribe\Events\Virtual\Meetings\Zoom\Api */
		$api = tribe( API::class );

		// Get the latest refresh token and use it refresh and add the account for multiple accounts.
		$refresh_token = tribe_get_option( Settings::$option_prefix . 'refresh_token' );
		$refresh_token = $api->encryption->decrypt( $refresh_token );
		if ( empty( $refresh_token ) ) {
			return false;
		}

		return $this->migrate_zoom_account( $api, $refresh_token );
	}

	/**
	 * Migrate the Zoom Account.
	 *
	 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
	 * @deprecated 1.15.3 - No replacement.
	 *
	 * @param Api    $api           An instance of the API class.
	 * @param string $refresh_token The refresh token from the connection before multiple accounts.
	 *
	 * @return boolean whether the migration to multiple accounts is complete.
	 */
	public function migrate_zoom_account( $api, $refresh_token ) {
		_deprecated_function( __METHOD__, '1.15.3', 'No replacement.' );

		$refreshed = false;
		$api->post(
			Url::$refresh_url,
			[
				'body'    => [
					'grant_type'    => 'refresh_token',
					'refresh_token' => $refresh_token,
				],
			],
			200
		)->then(
			function ( array $response ) use ( &$api, &$refreshed ) {
				$body = json_decode( wp_remote_retrieve_body( $response ), true );
				if ( ! isset( $body['access_token'], $body['refresh_token'], $body['expires_in'] ) ) {
					do_action( 'tribe_log', 'error', __CLASS__, [
						'action'   => __METHOD__,
						'message'  => 'Zoom account migration could not be completed, please manually add your account on the Settings/API section.',
						'response' => $body,
					] );

					return false;
				}

				$refreshed = $api->save_account( $response );

				// Clear existing account settings.
				tribe_update_option( Settings::$option_prefix . 'refresh_token', '' );
				delete_transient( Settings::$option_prefix . 'access_token' );

				// Save the original account id to use to update existing events as they are viewed in the admin.
				$user = $api->fetch_user( 'me', false, $refreshed );
				if ( empty( $user['id'] ) ) {
					return $refreshed;
				}
				tribe_update_option( Settings::$option_prefix . 'original_account', esc_attr( $user['id'] ) );

				return $refreshed;
			}
		);

		return $refreshed;
	}

	/**
	 * Migration to the video source dropdown.
	 *
	 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
	 */
	public function video_source_migration() {
		$args = [
			'posts_per_page' => 1000,
			'meta_query' => [
				[
					'relation' => 'OR',
					[
						'key' =>  Event_Meta::$key_virtual,
						'value' => true,
					],
					[
						'key' =>  Event_Meta::$key_virtual,
						'value' => 'yes',
					]
				],
				[
					'key' =>  Event_Meta::$key_video_source,
					'compare' => 'NOT EXISTS',
				]
			],
		];

		/**
		 * Allows filtering of the arguments used to query events for the video source migration.
		 *
		 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
		 * @todo [plugin-consolidation] Merge VE into ECP, hook to be deprecated and renamed.
		 *
		 * @param array<string|mixed> An array of arguments used to query events for the video source migration.
		 */
		$args = apply_filters( 'tec_events_virtual_video_source_migration_args', $args  );

		$virtual_events = tribe_events()->by_args( $args )->get_ids();

		foreach ( $virtual_events as $event_id ) {
			$event = tribe_get_event( $event_id );

			// Safety check.
			if ( $event->virtual_video_source ) {
				continue;
			}

			// If a virtual event has zoom as the meeting provider
			if ( Zoom_Meta::$key_source_id === $event->virtual_meeting_provider ) {
				update_post_meta( $event_id, Event_Meta::$key_video_source, Zoom_Meta::$key_source_id );

				continue;
			}

			// Default to video as the video source.
			update_post_meta( $event_id, Event_Meta::$key_video_source, Event_Meta::$key_video_source_id );
		}
	}

	/**
	 * Migration to the Smart URL/Autodetect Source.
	 *
	 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
	 */
	public function autodetect_source_migration() {
		$args = [
			'posts_per_page' => 1000,
			'meta_query' => [
				[
					'key' =>  Event_Meta::$key_virtual,
					'value' => Event_Meta::$key_video_source_id,
				],
			],
		];

		$virtual_events = tribe_events()->by_args( $args )->get_ids();

		foreach ( $virtual_events as $event_id ) {
			$event = tribe_get_event( $event_id );

			// Safety check.
			if (
				Event_Meta::$key_video_source_id !== $event->virtual_video_source ||
				$event->virtual_autodetect_source
			 ) {
				continue;
			}

			// Default to oembed as the autodetect source.
			update_post_meta( $event->ID, Event_Meta::$key_autodetect_source, Event_Meta::$key_oembed_source_id );
		}
	}

	/**
	 * Force upgrade script to run even without an existing version number
	 * The version was not previously stored for Virtual Events.
	 *
	 * @since 7.0.0 Migrated to Events Pro from Events Virtual.
	 *
	 * @return bool
	 */
	public function is_new_install() {
		return false;
	}
}