admin
1 day ago
modules
1 year ago
class-helpers.php
1 year ago
class-options.php
1 year ago
class-page-parser.php
1 year ago
main.php
2 years ago
class-helpers.php
221 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Helpers. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.48.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Modules\OneClick; |
| 11 | |
| 12 | use AdvancedAds\Utilities\WordPress; |
| 13 | use AdvancedAds\Framework\Utilities\Str; |
| 14 | |
| 15 | defined( 'ABSPATH' ) || exit; |
| 16 | |
| 17 | /** |
| 18 | * Helpers. |
| 19 | */ |
| 20 | class Helpers { |
| 21 | |
| 22 | /** |
| 23 | * Check if config has traffic cop subscription |
| 24 | * |
| 25 | * @param array $config Config instance. |
| 26 | * |
| 27 | * @return bool |
| 28 | */ |
| 29 | public static function has_traffic_cop( $config = null ): bool { |
| 30 | if ( null === $config ) { |
| 31 | $config = Options::pubguru_config(); |
| 32 | } |
| 33 | |
| 34 | if ( |
| 35 | isset( $config['params'] ) && |
| 36 | ( isset( $config['params']['trafficCopIvtAction'] ) && 'block' === $config['params']['trafficCopIvtAction'] ) && |
| 37 | ( isset( $config['params']['trafficCopTestPercent'] ) && $config['params']['trafficCopTestPercent'] > 0.01 ) |
| 38 | ) { |
| 39 | return true; |
| 40 | } |
| 41 | |
| 42 | return false; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Get config file |
| 47 | * |
| 48 | * Cases |
| 49 | * 1. For auto_created |
| 50 | * 2. For mobile prefix |
| 51 | * 3. For desktop prefix |
| 52 | * 4. If none of the prefix is found than go with the first one |
| 53 | * 5. No configuration found => pg.{domain}.js |
| 54 | * |
| 55 | * @return bool|string |
| 56 | */ |
| 57 | public static function get_config_file() { |
| 58 | static $pubguru_config_name; |
| 59 | |
| 60 | if ( null !== $pubguru_config_name ) { |
| 61 | return $pubguru_config_name; |
| 62 | } |
| 63 | |
| 64 | $pubguru_config_name = false; |
| 65 | $configs = Options::pubguru_config(); |
| 66 | |
| 67 | // 1. For auto_created => pg.{domain}_auto_created.js |
| 68 | foreach ( $configs['configs'] as $config ) { |
| 69 | if ( isset( $config['auto_created'] ) && $config['auto_created'] ) { |
| 70 | $pubguru_config_name = $config['name']; |
| 71 | return $pubguru_config_name; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | // 5. No configuration found => pg.{domain}.js |
| 76 | if ( ! isset( $configs['configs'] ) || empty( $configs['configs'] ) ) { |
| 77 | $domain = WordPress::get_site_domain( 'name' ); |
| 78 | return "pg.{$domain}.js"; |
| 79 | } |
| 80 | |
| 81 | $pubguru_config_name = wp_is_mobile() |
| 82 | // 2. For mobile prefix |
| 83 | ? self::config_contains( 'mobile' ) |
| 84 | // 3. For desktop prefix |
| 85 | : self::config_contains( 'desktop' ); |
| 86 | $pubguru_config_name = false !== $pubguru_config_name |
| 87 | ? $pubguru_config_name |
| 88 | // 4. If none of the prefix is found than go with the first one |
| 89 | : $configs['configs'][0]['name']; |
| 90 | |
| 91 | return $pubguru_config_name; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Find config name by needle |
| 96 | * |
| 97 | * @param string $needle Needle to look into config name. |
| 98 | * |
| 99 | * @return bool|string |
| 100 | */ |
| 101 | private static function config_contains( $needle ) { |
| 102 | $configs = Options::pubguru_config(); |
| 103 | |
| 104 | foreach ( $configs['configs'] as $config ) { |
| 105 | if ( Str::contains( $needle, $config['name'] ) ) { |
| 106 | return $config['name']; |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | return false; |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Get ads from saved config. |
| 115 | * |
| 116 | * In this order |
| 117 | * 1. Get ads from auto_created = true |
| 118 | * 2. Get ads from first config |
| 119 | * 3. Get ads from default config |
| 120 | * |
| 121 | * @return bool|array |
| 122 | */ |
| 123 | public static function get_ads_from_config() { |
| 124 | static $pubguru_config_ads; |
| 125 | $config = Options::pubguru_config(); |
| 126 | |
| 127 | if ( null !== $pubguru_config_ads ) { |
| 128 | return $pubguru_config_ads; |
| 129 | } |
| 130 | |
| 131 | $pubguru_config_ads = false; |
| 132 | // 1. Get ads from auto_created = true or name contains auto_created |
| 133 | foreach ( $config['configs'] as $config ) { |
| 134 | if ( |
| 135 | ( isset( $config['auto_created'] ) && $config['auto_created'] ) || |
| 136 | Str::contains( 'auto_created', $config['name'] ) |
| 137 | ) { |
| 138 | $pubguru_config_ads = $config['ad_units']; |
| 139 | return $pubguru_config_ads; |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | // 2. Get ads from first config |
| 144 | if ( isset( $config['configs'][0]['ad_units'] ) && ! empty( $config['configs'][0]['ad_units'] ) ) { |
| 145 | $pubguru_config_ads = $config['configs'][0]['ad_units']; |
| 146 | } else { |
| 147 | // 3. Get ads from default config |
| 148 | $domain = WordPress::get_site_domain(); |
| 149 | $pubguru_config_ads = [ |
| 150 | $domain . '_leaderboard' => [ |
| 151 | 'ad_unit' => $domain . '_leaderboard', |
| 152 | 'slot' => $domain . '_leaderboard', |
| 153 | 'device' => 'all', |
| 154 | 'advanced_placement' => [ |
| 155 | 'placement' => 'beforeContent', |
| 156 | 'inContentRule' => [ |
| 157 | 'position' => 'before', |
| 158 | 'positionCount' => 1, |
| 159 | 'positionElement' => 'paragraph', |
| 160 | 'positionRepeat' => false, |
| 161 | ], |
| 162 | ], |
| 163 | ], |
| 164 | $domain . '_in_content_1' => [ |
| 165 | 'ad_unit' => $domain . '_in_content_1', |
| 166 | 'slot' => $domain . '_in_content_1', |
| 167 | 'device' => 'all', |
| 168 | 'advanced_placement' => [ |
| 169 | 'placement' => 'beforeContent', |
| 170 | 'inContentRule' => [ |
| 171 | 'position' => 'before', |
| 172 | 'positionCount' => 1, |
| 173 | 'positionElement' => 'paragraph', |
| 174 | 'positionRepeat' => false, |
| 175 | ], |
| 176 | ], |
| 177 | ], |
| 178 | $domain . '_in_content_2' => [ |
| 179 | 'ad_unit' => $domain . '_in_content_2', |
| 180 | 'slot' => $domain . '_in_content_2', |
| 181 | 'device' => 'all', |
| 182 | 'advanced_placement' => [ |
| 183 | 'placement' => 'inContent', |
| 184 | 'inContentRule' => [ |
| 185 | 'position' => 'after', |
| 186 | 'positionCount' => 3, |
| 187 | 'positionElement' => 'paragraph', |
| 188 | 'positionRepeat' => true, |
| 189 | ], |
| 190 | ], |
| 191 | ], |
| 192 | ]; |
| 193 | } |
| 194 | |
| 195 | return $pubguru_config_ads; |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Is ad disabled on page |
| 200 | * |
| 201 | * @param int $post_id Post id to check for. |
| 202 | * |
| 203 | * @return bool |
| 204 | */ |
| 205 | public static function is_ad_disabled( $post_id = 0 ): bool { |
| 206 | global $post; |
| 207 | |
| 208 | if ( ! $post ) { |
| 209 | return false; |
| 210 | } |
| 211 | |
| 212 | if ( ! $post_id ) { |
| 213 | $post_id = $post->ID; |
| 214 | } |
| 215 | |
| 216 | $settings = get_post_meta( $post_id, '_advads_ad_settings', true ); |
| 217 | |
| 218 | return is_singular() ? ! empty( $settings['disable_ads'] ) : false; |
| 219 | } |
| 220 | } |
| 221 |