| 1 |
<?php |
| 2 |
|
| 3 |
use Give\Log\Log; |
| 4 |
use Give\Framework\Database\DB; |
| 5 |
use Give\Log\ValueObjects\LogType; |
| 6 |
/** |
| 7 |
* Front-end Filters |
| 8 |
* |
| 9 |
* @package Give |
| 10 |
* @subpackage Functions |
| 11 |
* @copyright Copyright (c) 2016, GiveWP |
| 12 |
* @license https://opensource.org/licenses/gpl-license GNU Public License |
| 13 |
* @since 1.0 |
| 14 |
*/ |
| 15 |
|
| 16 |
// Exit if accessed directly. |
| 17 |
if ( ! defined( 'ABSPATH' ) ) { |
| 18 |
exit; |
| 19 |
} |
| 20 |
|
| 21 |
|
| 22 |
/** |
| 23 |
* Add backward compatibility for settings who has disable_ as name prefix. |
| 24 |
* TODO: Remove this backward compatibility when do not need. |
| 25 |
* |
| 26 |
* @since 1.8 |
| 27 |
* |
| 28 |
* @param array $old_settings Array of settings. |
| 29 |
* @param array $settings Array of settings. |
| 30 |
* |
| 31 |
* @return void |
| 32 |
*/ |
| 33 |
function give_set_settings_with_disable_prefix( $old_settings, $settings ) { |
| 34 |
// Bailout. |
| 35 |
if ( ! function_exists( 'give_v18_renamed_core_settings' ) ) { |
| 36 |
return; |
| 37 |
} |
| 38 |
|
| 39 |
// Get old setting names. |
| 40 |
$old_settings = array_flip( give_v18_renamed_core_settings() ); |
| 41 |
$update_setting = false; |
| 42 |
|
| 43 |
foreach ( $settings as $key => $value ) { |
| 44 |
|
| 45 |
// Check 1. Check if new option is really updated or not. |
| 46 |
// Check 2. Continue if key is not renamed. |
| 47 |
if ( ! isset( $old_settings[ $key ] ) ) { |
| 48 |
continue; |
| 49 |
} |
| 50 |
|
| 51 |
// Set old setting. |
| 52 |
$settings[ $old_settings[ $key ] ] = 'on'; |
| 53 |
|
| 54 |
// Do not need to set old setting if new setting is not set. |
| 55 |
if ( |
| 56 |
( give_is_setting_enabled( $value ) && ( false !== strpos( $old_settings[ $key ], 'disable_' ) ) ) |
| 57 |
|| ( ! give_is_setting_enabled( $value ) && ( false !== strpos( $old_settings[ $key ], 'enable_' ) ) ) |
| 58 |
|
| 59 |
) { |
| 60 |
unset( $settings[ $old_settings[ $key ] ] ); |
| 61 |
} |
| 62 |
|
| 63 |
// Tell bot to update setting. |
| 64 |
$update_setting = true; |
| 65 |
} |
| 66 |
|
| 67 |
// Update setting if any old setting set. |
| 68 |
if ( $update_setting ) { |
| 69 |
update_option( 'give_settings', $settings, false ); |
| 70 |
} |
| 71 |
} |
| 72 |
|
| 73 |
add_action( 'update_option_give_settings', 'give_set_settings_with_disable_prefix', 10, 2 ); |
| 74 |
|
| 75 |
/** |
| 76 |
* Check spam through Akismet. |
| 77 |
* |
| 78 |
* It will build Akismet query string and call Akismet API. |
| 79 |
* Akismet response return 'true' for spam donation. |
| 80 |
* |
| 81 |
* @since 1.8.14 |
| 82 |
* |
| 83 |
* @param $spam |
| 84 |
* |
| 85 |
* @return bool|mixed |
| 86 |
*/ |
| 87 |
function give_akismet( $spam ) { |
| 88 |
// Build args array. |
| 89 |
$args = []; |
| 90 |
|
| 91 |
// Bail out, If spam. |
| 92 |
if ( $spam || ! give_is_setting_enabled( give_get_option( 'akismet_spam_protection' ) ) ) { |
| 93 |
return $spam; |
| 94 |
} |
| 95 |
|
| 96 |
// Bail out, if Akismet key not exist. |
| 97 |
if ( ! give_check_akismet_key() ) { |
| 98 |
return false; |
| 99 |
} |
| 100 |
|
| 101 |
$args['comment_author_email'] = isset( $_POST['give_email'] ) ? sanitize_email( $_POST['give_email'] ) : false; |
| 102 |
|
| 103 |
/** |
| 104 |
* Filter list of whitelisted emails |
| 105 |
* |
| 106 |
* @since 2.5.14 |
| 107 |
* |
| 108 |
* @param array |
| 109 |
*/ |
| 110 |
$whitelist_emails = apply_filters( 'give_akismet_whitelist_emails', give_akismet_get_whitelisted_emails() ); |
| 111 |
|
| 112 |
// Whitelist emails. |
| 113 |
if ( in_array( $args['comment_author_email'], (array) $whitelist_emails, true ) ) { |
| 114 |
return false; |
| 115 |
} |
| 116 |
|
| 117 |
$args['comment_author'] = isset( $_POST['give_first'] ) ? give_clean( $_POST['give_first'] ) : ''; |
| 118 |
$args['blog'] = get_option( 'home' ); |
| 119 |
$args['blog_lang'] = get_locale(); |
| 120 |
$args['blog_charset'] = get_option( 'blog_charset' ); |
| 121 |
$args['user_ip'] = $_SERVER['REMOTE_ADDR']; |
| 122 |
$args['user_agent'] = $_SERVER['HTTP_USER_AGENT']; |
| 123 |
$args['referrer'] = $_SERVER['HTTP_REFERER']; |
| 124 |
$args['comment_type'] = 'contact-form'; |
| 125 |
|
| 126 |
$form_id = isset( $_POST['give-form-id'] ) ? absint( $_POST['give-form-id'] ) : 0; |
| 127 |
$donor_last_name = ! empty( $_POST['give_last'] ) ? ' ' . give_clean( $_POST['give_last'] ) : ''; |
| 128 |
|
| 129 |
// Pass Donor comment if enabled. |
| 130 |
if ( give_is_donor_comment_field_enabled( $form_id ) ) { |
| 131 |
$give_comment = isset( $_POST['give_comment'] ) ? give_clean( $_POST['give_comment'] ) : ''; |
| 132 |
|
| 133 |
$args['comment_content'] = $give_comment; |
| 134 |
} |
| 135 |
|
| 136 |
$ignore = [ 'HTTP_COOKIE', 'HTTP_COOKIE2', 'PHP_AUTH_PW' ]; |
| 137 |
|
| 138 |
foreach ( $_SERVER as $key => $value ) { |
| 139 |
if ( ! in_array( $key, $ignore, true ) ) { |
| 140 |
$args[ $key ] = $value; |
| 141 |
} |
| 142 |
} |
| 143 |
|
| 144 |
$response = give_akismet_spam_check_post( $args ); |
| 145 |
$spam = 'true' === $response[1]; |
| 146 |
|
| 147 |
// Log spam information. |
| 148 |
if ( $spam && ! give_akismet_is_email_logged( $args['comment_author_email'] ) ) { |
| 149 |
|
| 150 |
$title = sprintf( |
| 151 |
'This donor\'s email (%1$s%2$s - %3$s) has been flagged as SPAM', |
| 152 |
$args['comment_author'], |
| 153 |
$donor_last_name, |
| 154 |
$args['comment_author_email'] |
| 155 |
); |
| 156 |
|
| 157 |
$message = sprintf( |
| 158 |
'<p><strong>%1$s</strong><pre>%2$s</pre></p><strong>%3$s</strong><pre>%4$s</pre><p>', |
| 159 |
__( 'Request', 'give' ), |
| 160 |
print_r( $args, true ), |
| 161 |
__( 'Response', 'give' ), |
| 162 |
print_r( $response, true ) |
| 163 |
); |
| 164 |
|
| 165 |
$context = [ |
| 166 |
'donor_email' => $args['comment_author_email'], |
| 167 |
'filter' => 'akismet', |
| 168 |
'message' => $message, |
| 169 |
]; |
| 170 |
|
| 171 |
Log::spam( $title, $context ); |
| 172 |
} |
| 173 |
|
| 174 |
// It will return Akismet spam detect API response. |
| 175 |
return $spam; |
| 176 |
|
| 177 |
} |
| 178 |
|
| 179 |
add_filter( 'give_spam', 'give_akismet' ); |
| 180 |
|
| 181 |
/** |
| 182 |
* Check Akismet API Key. |
| 183 |
* |
| 184 |
* @since 1.8.14 |
| 185 |
* |
| 186 |
* @return bool |
| 187 |
*/ |
| 188 |
function give_check_akismet_key() { |
| 189 |
if ( is_callable( [ 'Akismet', 'get_api_key' ] ) ) { // Akismet v3.0+ |
| 190 |
return (bool) Akismet::get_api_key(); |
| 191 |
} |
| 192 |
|
| 193 |
if ( function_exists( 'akismet_get_key' ) ) { |
| 194 |
return (bool) akismet_get_key(); |
| 195 |
} |
| 196 |
|
| 197 |
return false; |
| 198 |
} |
| 199 |
|
| 200 |
/** |
| 201 |
* Detect spam through Akismet Comment API. |
| 202 |
* |
| 203 |
* @param array $args |
| 204 |
* |
| 205 |
* @return bool|mixed |
| 206 |
* @since 1.8.14 |
| 207 |
* @since 2.3.15 Refactor function to use give_akismet_spam_check_post |
| 208 |
*/ |
| 209 |
function give_akismet_spam_check( $args ) { |
| 210 |
$response = give_akismet_spam_check_post( $args ); |
| 211 |
|
| 212 |
// It's spam if response status is true. |
| 213 |
$spam = 'true' === $response[1]; |
| 214 |
|
| 215 |
// Allow developer to modified Akismet spam detection response. |
| 216 |
return apply_filters( 'give_akismet_spam_check', $spam, $args ); |
| 217 |
} |
| 218 |
|
| 219 |
/** |
| 220 |
* Detect spam through Akismet Comment API. |
| 221 |
* |
| 222 |
* @since 2.5.13 |
| 223 |
* |
| 224 |
* @param array $args |
| 225 |
* |
| 226 |
* @return array |
| 227 |
*/ |
| 228 |
function give_akismet_spam_check_post( $args ) { |
| 229 |
global $akismet_api_host, $akismet_api_port; |
| 230 |
|
| 231 |
$query_string = http_build_query( $args ); |
| 232 |
|
| 233 |
if ( is_callable( [ 'Akismet', 'http_post' ] ) ) { // Akismet v3.0+ |
| 234 |
$response = Akismet::http_post( $query_string, 'comment-check' ); |
| 235 |
} else { |
| 236 |
$response = akismet_http_post( |
| 237 |
$query_string, |
| 238 |
$akismet_api_host, |
| 239 |
'/1.1/comment-check', |
| 240 |
$akismet_api_port |
| 241 |
); |
| 242 |
} |
| 243 |
|
| 244 |
return $response; |
| 245 |
} |
| 246 |
|
| 247 |
|
| 248 |
/** |
| 249 |
* Check if email already logged or not |
| 250 |
* |
| 251 |
* @param $email |
| 252 |
* |
| 253 |
* @return bool |
| 254 |
* @since 2.5.13 |
| 255 |
*/ |
| 256 |
function give_akismet_is_email_logged( $email ) { |
| 257 |
global $wpdb; |
| 258 |
|
| 259 |
return (bool) DB::get_var( |
| 260 |
DB::prepare( "SELECT COUNT(id) FROM {$wpdb->give_log} WHERE log_type = %s AND data LIKE '%%%s%%';", LogType::SPAM, esc_sql( $email ) ) |
| 261 |
); |
| 262 |
} |
| 263 |
|
| 264 |
/** |
| 265 |
* Get list of whitelisted emails. |
| 266 |
* |
| 267 |
* @return array |
| 268 |
* @since 2.5.13 |
| 269 |
*/ |
| 270 |
function give_akismet_get_whitelisted_emails() { |
| 271 |
return give_get_option( |
| 272 |
'akismet_whitelisted_email_addresses', |
| 273 |
get_bloginfo( 'admin_email' ) |
| 274 |
); |
| 275 |
} |
| 276 |
|
| 277 |
/** |
| 278 |
* Add support of RIAL code for backward compatibility. |
| 279 |
* Note: for internal use only |
| 280 |
* |
| 281 |
* @since 1.8.17 |
| 282 |
* |
| 283 |
* @param array $currencies |
| 284 |
* |
| 285 |
* @return array |
| 286 |
*/ |
| 287 |
function give_bc_v1817_iranian_currency_code( $currencies ) { |
| 288 |
$currencies['RIAL'] = $currencies['IRR']; |
| 289 |
|
| 290 |
return $currencies; |
| 291 |
} |
| 292 |
|
| 293 |
if ( ! give_has_upgrade_completed( 'v1817_update_donation_iranian_currency_code' ) ) { |
| 294 |
add_filter( 'give_currencies', 'give_bc_v1817_iranian_currency_code', 0 ); |
| 295 |
} |
| 296 |
|
| 297 |
|
| 298 |
/** |
| 299 |
* Format right to left supported currency amount. |
| 300 |
* |
| 301 |
* @since 1.8.17 |
| 302 |
* |
| 303 |
* @param $formatted_amount |
| 304 |
* @param $currency_args |
| 305 |
* @param $price |
| 306 |
* |
| 307 |
* @return string |
| 308 |
*/ |
| 309 |
function give_format_price_for_right_to_left_supported_currency( $formatted_amount, $currency_args, $price ) { |
| 310 |
if ( ! give_is_right_to_left_supported_currency( $currency_args['currency_code'] ) ) { |
| 311 |
return $formatted_amount; |
| 312 |
} |
| 313 |
|
| 314 |
$formatted_amount = ( |
| 315 |
'before' === (string) $currency_args['position'] ? |
| 316 |
'‫' . $price . $currency_args['symbol'] . '‬' : |
| 317 |
'‪' . $price . $currency_args['symbol'] . '‬' |
| 318 |
); |
| 319 |
|
| 320 |
$formatted_amount = $currency_args['decode_currency'] ? |
| 321 |
html_entity_decode( $formatted_amount, ENT_COMPAT, 'UTF-8' ) : |
| 322 |
$formatted_amount; |
| 323 |
|
| 324 |
return $formatted_amount; |
| 325 |
} |
| 326 |
|
| 327 |
add_filter( 'give_currency_filter', 'give_format_price_for_right_to_left_supported_currency', 10, 3 ); |
| 328 |
|
| 329 |
/** |
| 330 |
* Validate active gateway value before returning result. |
| 331 |
* |
| 332 |
* @since 2.1.0 |
| 333 |
* |
| 334 |
* @param $value |
| 335 |
* |
| 336 |
* @return array |
| 337 |
*/ |
| 338 |
function __give_validate_active_gateways( $value ) { |
| 339 |
$gateways = array_keys( give_get_payment_gateways() ); |
| 340 |
$active_gateways = is_array( $value ) ? array_keys( $value ) : []; |
| 341 |
|
| 342 |
// Remove deactivated payment gateways. |
| 343 |
if ( ! empty( $active_gateways ) ) { |
| 344 |
foreach ( $active_gateways as $index => $gateway_id ) { |
| 345 |
if ( ! in_array( $gateway_id, $gateways ) ) { |
| 346 |
unset( $value[ $gateway_id ] ); |
| 347 |
} |
| 348 |
} |
| 349 |
} |
| 350 |
|
| 351 |
if ( empty( $value ) ) { |
| 352 |
/** |
| 353 |
* Filter the default active gateway |
| 354 |
* |
| 355 |
* @since 2.1.0 |
| 356 |
*/ |
| 357 |
$value = apply_filters( |
| 358 |
'give_default_active_gateways', |
| 359 |
[ |
| 360 |
'manual' => 1, |
| 361 |
] |
| 362 |
); |
| 363 |
} |
| 364 |
|
| 365 |
return $value; |
| 366 |
} |
| 367 |
|
| 368 |
add_filter( 'give_get_option_gateways', '__give_validate_active_gateways', 10, 1 ); |
| 369 |
|