HEX
Server: Apache
System: Linux iad1-shared-b8-22 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
User: dh_7uh9vd (6523960)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /home/dh_7uh9vd/lifeofcanada.com/wp-content/plugins/wp-user-avatar/src/RegisterActivation/Base.php
<?php

namespace ProfilePress\Core\RegisterActivation;

use ProfilePress\Core\Classes\FormRepository as FR;
use ProfilePress\Core\Membership\DigitalProducts\UploadHandler;

class Base
{
    public static function run_install($networkwide = false)
    {
        if (is_multisite() && $networkwide) {

            $site_ids = get_sites(['fields' => 'ids', 'number' => 0]);

            foreach ($site_ids as $site_id) {
                switch_to_blog($site_id);
                self::pp_install();
                restore_current_blog();
            }
        } else {
            self::pp_install();
        }

        flush_rewrite_rules();
    }

    /**
     * Run plugin install / activation action when new blog is created in multisite setup.
     *
     * @param int $blog_id
     */
    public static function multisite_new_blog_install($blog_id)
    {
        if ( ! function_exists('is_plugin_active_for_network')) {
            require_once ABSPATH . 'wp-admin/includes/plugin.php';
        }

        if (is_plugin_active_for_network('wp-user-avatar/wp-user-avatar.php')) {
            switch_to_blog($blog_id);
            self::pp_install();
            restore_current_blog();
        }
    }

    /**
     * Perform plugin activation / installation.
     */
    public static function pp_install()
    {
        // set flag for those migrating from wp user avatar
        if ( ! get_option('ppress_plugin_activated') && '1' == get_option('wp_user_avatar_default_avatar_updated')) {
            add_option('ppress_is_from_wp_user_avatar', 'true');
        }

        if ( ! current_user_can('activate_plugins') || get_option('ppress_plugin_activated') == 'true') return;

        CreateDBTables::make();

        UploadHandler::get_instance()->create_protection_files(true);

        self::default_settings();
        self::create_default_forms();
        self::clear_wpengine_cache();

        add_option('ppress_install_date', current_time('mysql'));
        add_option('ppress_plugin_activated', 'true');
        add_option('ppress_new_v4_install', 'true');

        flush_rewrite_rules();
    }

    public static function create_default_forms()
    {

        FR::add_form(
            esc_html__('Default Registration', 'wp-user-avatar'),
            FR::REGISTRATION_TYPE,
            'Tulip',
            FR::DRAG_DROP_BUILDER_TYPE
        );

        FR::add_form(
            esc_html__('Default Login', 'wp-user-avatar'),
            FR::LOGIN_TYPE,
            'Tulip',
            FR::DRAG_DROP_BUILDER_TYPE
        );

        FR::add_form(
            esc_html__('Default Password Reset', 'wp-user-avatar'),
            FR::PASSWORD_RESET_TYPE,
            'Tulip',
            FR::DRAG_DROP_BUILDER_TYPE
        );

        FR::add_form(
            esc_html__('Default Edit Profile', 'wp-user-avatar'),
            FR::EDIT_PROFILE_TYPE,
            'Tulip',
            FR::DRAG_DROP_BUILDER_TYPE
        );

        FR::add_form(
            esc_html__('Default User Profile', 'wp-user-avatar'),
            FR::USER_PROFILE_TYPE,
            'DefaultTemplate',
            FR::DRAG_DROP_BUILDER_TYPE
        );

        FR::add_form(
            esc_html__('Default Member Directory', 'wp-user-avatar'),
            FR::MEMBERS_DIRECTORY_TYPE,
            'DefaultTemplate',
            FR::DRAG_DROP_BUILDER_TYPE
        );

        FR::add_form(
            esc_html__('Lucid Tab Widget', 'wp-user-avatar'),
            FR::MELANGE_TYPE,
            'Lucid',
            FR::SHORTCODE_BUILDER_TYPE
        );
    }

    public static function default_settings()
    {
        $settings = [
            'login_username_email_restrict'    => 'both',
            'myac_edit_account_endpoint'       => 'edit-profile',
            'myac_change_password_endpoint'    => 'change-password',
            'set_user_profile_slug'            => 'profile',
            'set_login_redirect'               => 'dashboard',
            'global_site_access'               => 'everyone',
            'global_restricted_access_message' => '<p>' . esc_html__('You are unauthorized to view this page.', 'wp-user-avatar') . '</p>',

            'admin_email_addresses' => ppress_admin_email(),
            'email_sender_name'     => ppress_site_title(),
            'email_sender_email'    => 'wordpress@' . ppress_site_url_without_scheme(),
            'email_content_type'    => 'text/html',
            'email_template_type'   => 'default',

            'password_reset_email_enabled' => 'on',
            'password_reset_email_subject' => sprintf(__('[%s] Password Reset'), ppress_site_title()),
            'password_reset_email_content' => ppress_password_reset_content_default(),

            'new_user_admin_email_email_enabled' => 'on',
            'new_user_admin_email_email_subject' => sprintf(__('[%s] New User Registration'), ppress_site_title()),
            'new_user_admin_email_email_content' => ppress_new_user_admin_notification_message_default(),
        ];

        foreach ($settings as $key => $value) {
            ppress_update_settings($key, $value);
        }

        self::membership_default_settings();
    }

    public static function membership_default_settings()
    {
        $settings = [
            // Business info
            'business_name'               => ppress_site_title(),
            'business_country'            => 'US',
            // Payment settings
            //'payment_currency'            => 'USD', excluded so onboarding checklist can ask user to set currency
            'currency_position'           => 'left',
            'currency_decimal_separator'  => '.',
            'currency_thousand_separator' => ',',
            'currency_decimal_number'     => '2',
            'terms_agreement_label'       => sprintf(__('I have read and agree to the website %s', 'wp-user-avatar'), '[terms]'),
        ];

        foreach ($settings as $key => $value) {
            ppress_update_settings($key, $value);
        }
    }

    public static function create_pages()
    {
        $pages = [
            'set_login_url'              => [
                'post_title'   => esc_html__('Log In', 'wp-user-avatar'),
                'post_content' => sprintf('<!-- wp:shortcode -->[profilepress-login id="%s"]<!-- /wp:shortcode -->', FR::get_form_first_id(FR::LOGIN_TYPE)),
            ],
            'set_registration_url'       => [
                'post_title'   => esc_html__('Sign Up', 'wp-user-avatar'),
                'post_content' => sprintf('<!-- wp:shortcode -->[profilepress-registration id="%s"]<!-- /wp:shortcode -->', FR::get_form_first_id(FR::REGISTRATION_TYPE)),
            ],
            'set_lost_password_url'      => [
                'post_title'   => esc_html__('Reset Password', 'wp-user-avatar'),
                'post_content' => sprintf('<!-- wp:shortcode -->[profilepress-password-reset id="%s"]<!-- /wp:shortcode -->', FR::get_form_first_id(FR::PASSWORD_RESET_TYPE)),
            ],
            'edit_user_profile_url'      => [
                'post_title'   => esc_html__('My Account', 'wp-user-avatar'),
                'post_content' => '<!-- wp:shortcode -->[profilepress-my-account]<!-- /wp:shortcode -->',
                'post_name'    => 'account'
            ],
            'set_user_profile_shortcode' => [
                'post_title'   => esc_html__('My Profile', 'wp-user-avatar'),
                'post_content' => sprintf('<!-- wp:shortcode -->[profilepress-user-profile id="%s"]<!-- /wp:shortcode -->', FR::get_form_first_id(FR::USER_PROFILE_TYPE))
            ],
            'member_directory'           => [
                'post_title'   => esc_html__('Member Directory', 'wp-user-avatar'),
                'post_content' => sprintf('<!-- wp:shortcode -->[profilepress-member-directory id="%s"]<!-- /wp:shortcode -->', FR::get_form_first_id(FR::MEMBERS_DIRECTORY_TYPE))
            ]
        ];

        foreach ($pages as $key => $page) {

            $insert = wp_insert_post(
                array_merge(
                    ['post_status' => 'publish', 'post_type' => 'page'],
                    $page
                ),
                true
            );

            if ($insert && ! is_wp_error($insert)) {
                ppress_update_settings($key, $insert);
            }
        }

        self::create_membership_pages();
    }

    public static function create_membership_pages()
    {
        $pages = [
            'checkout_page_id'        => [
                'post_title'   => esc_html__('Checkout', 'wp-user-avatar'),
                'post_content' => '<!-- wp:shortcode -->[profilepress-checkout]<!-- /wp:shortcode -->'
            ],
            'payment_success_page_id' => [
                'post_title'   => esc_html__('Order Confirmation', 'wp-user-avatar'),
                'post_content' => sprintf(
                    '<!-- wp:paragraph --><p>%s</p><!-- /wp:paragraph --><!-- wp:shortcode -->[profilepress-receipt]<!-- /wp:shortcode -->',
                    esc_html__('Thank you for your order!', 'wp-user-avatar')
                )
            ],
            'payment_failure_page_id' => [
                'post_title'   => esc_html__('Order Failed', 'wp-user-avatar'),
                'post_content' => sprintf(
                    '<!-- wp:paragraph --><p>%s</p><!-- /wp:paragraph -->',
                    esc_html__('Your transaction failed, please try again or contact support.', 'wp-user-avatar')
                )
            ]
        ];

        foreach ($pages as $key => $page) {

            $page_id     = ppress_settings_by_key($key, '');
            $page_status = get_post_status($page_id);

            if (empty($page_id) || 'publish' !== $page_status) {

                $insert = wp_insert_post(
                    array_merge(
                        ['post_status' => 'publish', 'post_type' => 'page'],
                        $page
                    ),
                    true
                );

                if ($insert && ! is_wp_error($insert)) {
                    ppress_update_settings($key, $insert);
                }
            }
        }
    }

    public static function clear_wpengine_cache()
    {
        if ( ! class_exists('\WpeCommon')) {
            return;
        }

        if (method_exists('\WpeCommon', 'purge_memcached')) {
            \WpeCommon::purge_memcached();
        }

        if (method_exists('\WpeCommon', 'clear_maxcdn_cache')) {
            \WpeCommon::clear_maxcdn_cache();
        }

        if (method_exists('\WpeCommon', 'purge_varnish_cache')) {
            \WpeCommon::purge_varnish_cache();
        }
    }
}