Admin
4 years ago
Exceptions
4 years ago
Factories
4 years ago
Helpers
4 years ago
Pipeline
1 year ago
Repositories
3 years ago
Routes
2 years ago
Tabs
1 year ago
resources
1 year ago
App.php
1 year ago
Block.php
2 years ago
Helpers.php
1 year ago
Profile.php
1 year ago
RequestHandler.php
4 years ago
ServiceProvider.php
2 years ago
Shortcode.php
2 years ago
App.php
216 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\DonorDashboards; |
| 4 | |
| 5 | use Give\DonorDashboards\Helpers\LocationList; |
| 6 | use Give\Helpers\EnqueueScript; |
| 7 | |
| 8 | /** |
| 9 | * Class App |
| 10 | * @package Give\DonorDashboards |
| 11 | * |
| 12 | * @since 2.10.2 |
| 13 | */ |
| 14 | class App |
| 15 | { |
| 16 | /** |
| 17 | * @var Profile |
| 18 | */ |
| 19 | protected $profile; |
| 20 | |
| 21 | /** |
| 22 | * App constructor. |
| 23 | */ |
| 24 | public function __construct() |
| 25 | { |
| 26 | $this->profile = new Profile(); |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * @since 3.6.0 Escape attributes |
| 31 | * |
| 32 | * @param array $attributes |
| 33 | * |
| 34 | * @return string |
| 35 | */ |
| 36 | public function getOutput($attributes) |
| 37 | { |
| 38 | $url = get_site_url() . '/?give-embed=donor-dashboard'; |
| 39 | |
| 40 | $queryArgs = []; |
| 41 | |
| 42 | if (isset($attributes['accent_color'])) { |
| 43 | $queryArgs['accent-color'] = urlencode(esc_attr($attributes['accent_color'])); |
| 44 | } |
| 45 | |
| 46 | if (isset($_GET['give_nl'])) { |
| 47 | $queryArgs['give_nl'] = urlencode(give_clean($_GET['give_nl'])); |
| 48 | } |
| 49 | |
| 50 | if (isset($_GET['_give_hash'])) { |
| 51 | $queryArgs['_give_hash'] = urlencode(give_clean($_GET['_give_hash'])); |
| 52 | } |
| 53 | |
| 54 | if (isset($_GET['action'])) { |
| 55 | $queryArgs['action'] = urlencode(give_clean($_GET['action'])); |
| 56 | } |
| 57 | |
| 58 | $url = esc_url(add_query_arg($queryArgs, $url)); |
| 59 | |
| 60 | $loader = $this->getIframeLoader(esc_attr($attributes['accent_color'])); |
| 61 | |
| 62 | return sprintf( |
| 63 | '<div style="position: relative; max-width: 100%%;"><iframe |
| 64 | name="give-embed-donor-profile" |
| 65 | %1$s |
| 66 | %4$s |
| 67 | data-autoScroll="%2$s" |
| 68 | onload="if( \'undefined\' !== typeof Give ) { Give.initializeIframeResize(this) }" |
| 69 | style="border: 0;visibility: hidden;%3$s"></iframe>%5$s</div>', |
| 70 | "src=\"{$url}#/dashboard\"", |
| 71 | true, |
| 72 | 'min-height: 776px; width: 100%; max-width: 100% !important;', |
| 73 | '', |
| 74 | $loader |
| 75 | ); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Get output markup for Donor Dashboard app |
| 80 | * |
| 81 | * @since 2.10.0 |
| 82 | * |
| 83 | * @param string $accentColor |
| 84 | * |
| 85 | * @return string |
| 86 | */ |
| 87 | public function getIframeLoader($accentColor) |
| 88 | { |
| 89 | ob_start(); |
| 90 | |
| 91 | require $this->getLoaderTemplatePath(); |
| 92 | |
| 93 | return ob_get_clean(); |
| 94 | } |
| 95 | |
| 96 | /** |
| 97 | * Get output markup for Donor Dashboard app |
| 98 | * |
| 99 | * @since 2.10.0 |
| 100 | * @return string |
| 101 | */ |
| 102 | public function getIframeContent() |
| 103 | { |
| 104 | ob_start(); |
| 105 | |
| 106 | require $this->getTemplatePath(); |
| 107 | |
| 108 | return ob_get_clean(); |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Get template path for Donor Dashboard component template |
| 113 | * @since 2.10.0 |
| 114 | **/ |
| 115 | public function getTemplatePath() |
| 116 | { |
| 117 | return GIVE_PLUGIN_DIR . '/src/DonorDashboards/resources/views/donordashboard.php'; |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Get template path for Donor Dashboard component template |
| 122 | * @since 2.10.0 |
| 123 | **/ |
| 124 | public function getLoaderTemplatePath() |
| 125 | { |
| 126 | return GIVE_PLUGIN_DIR . '/src/DonorDashboards/resources/views/donordashboardloader.php'; |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Enqueue assets for front-end donor dashboards |
| 131 | * |
| 132 | * @since 3.19.0 Add action to allow enqueueing additional assets. |
| 133 | * @since 2.11.0 Set script translations. |
| 134 | * @since 2.10.0 |
| 135 | * |
| 136 | * @return void |
| 137 | */ |
| 138 | public function loadAssets() |
| 139 | { |
| 140 | // Load assets only if rendering donor dashboard. |
| 141 | if (!isset($_GET['give-embed']) || 'donor-dashboard' !== $_GET['give-embed']) { |
| 142 | return; |
| 143 | } |
| 144 | |
| 145 | $recaptcha_key = give_get_option('recaptcha_key'); |
| 146 | $recaptcha_secret = give_get_option('recaptcha_secret'); |
| 147 | $recaptcha_enabled = (give_is_setting_enabled(give_get_option('enable_recaptcha'))) && |
| 148 | !empty($recaptcha_key) && !empty($recaptcha_secret); |
| 149 | |
| 150 | $data = [ |
| 151 | 'apiRoot' => esc_url_raw(rest_url()), |
| 152 | 'apiNonce' => wp_create_nonce('wp_rest'), |
| 153 | 'profile' => give()->donorDashboard->getProfileData(), |
| 154 | 'countries' => LocationList::getCountries(), |
| 155 | 'states' => LocationList::getStates(give()->donorDashboard->getCountry()), |
| 156 | 'id' => give()->donorDashboard->getId(), |
| 157 | 'emailAccessEnabled' => give_is_setting_enabled(give_get_option('email_access')), |
| 158 | 'loginEnabled' => $this->loginEnabled(), |
| 159 | 'registeredTabs' => give()->donorDashboardTabs->getRegisteredIds(), |
| 160 | 'loggedInWithoutDonor' => get_current_user_id() !== 0 && give()->donorDashboard->getId() === null, |
| 161 | 'recaptchaKey' => $recaptcha_enabled ? $recaptcha_key : '', |
| 162 | ]; |
| 163 | |
| 164 | EnqueueScript::make( |
| 165 | 'give-donor-dashboards-app', |
| 166 | 'assets/dist/js/donor-dashboards-app.js' |
| 167 | ) |
| 168 | ->loadInFooter() |
| 169 | ->registerTranslations() |
| 170 | ->registerLocalizeData('giveDonorDashboardData', $data) |
| 171 | ->enqueue(); |
| 172 | |
| 173 | wp_enqueue_style( |
| 174 | 'give-google-font-montserrat', |
| 175 | 'https://fonts.googleapis.com/css?family=Montserrat:500,500i,600,600i,700,700i&display=swap', |
| 176 | [], |
| 177 | null |
| 178 | ); |
| 179 | |
| 180 | do_action('give_donor_dashboard_enqueue_assets'); |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Determine if the login should be enabled. |
| 185 | * |
| 186 | * @since 2.15.0 |
| 187 | * |
| 188 | * @return bool |
| 189 | */ |
| 190 | protected function loginEnabled() |
| 191 | { |
| 192 | // We need to get all the form IDs. |
| 193 | $formIds = get_posts( |
| 194 | [ |
| 195 | 'fields' => 'ids', |
| 196 | 'numberposts' => -1, |
| 197 | 'post_status' => 'publish', |
| 198 | 'post_type' => 'give_forms', |
| 199 | ] |
| 200 | ); |
| 201 | |
| 202 | // By default, the login is disabled. |
| 203 | $loginEnabled = false; |
| 204 | foreach ($formIds as $formId) { |
| 205 | if (give_show_login_register_option($formId) !== 'none') { |
| 206 | // Once there is a single form that it is enabled, we can bail out |
| 207 | // early since the login needs to be enabled. |
| 208 | $loginEnabled = true; |
| 209 | break; |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | return $loginEnabled; |
| 214 | } |
| 215 | } |
| 216 |