buffer
3 years ago
script_loader_tag
3 years ago
traits
3 years ago
Consent_API_Helper.php
3 years ago
Cookie_Consent.php
3 years ago
Cookie_Consent_Interface.php
4 years ago
Cookiebot_Activated.php
3 years ago
Cookiebot_Automatic_Updates.php
3 years ago
Cookiebot_Deactivated.php
4 years ago
Cookiebot_Javascript_Helper.php
3 years ago
Cookiebot_WP.php
3 years ago
Dependency_Container.php
3 years ago
Settings_Page_Tab.php
3 years ago
Settings_Service.php
3 years ago
Settings_Service_Interface.php
3 years ago
Supported_Languages.php
4 years ago
Supported_Regions.php
3 years ago
WP_Rocket_Helper.php
3 years ago
Widgets.php
3 years ago
global-deprecations.php
3 years ago
helper.php
3 years ago
Cookiebot_WP.php
230 lines
| 1 | <?php |
| 2 | |
| 3 | namespace cybot\cookiebot\lib; |
| 4 | |
| 5 | use cybot\cookiebot\addons\Cookiebot_Addons; |
| 6 | use cybot\cookiebot\admin_notices\Cookiebot_Recommendation_Notice; |
| 7 | use cybot\cookiebot\gutenberg\Cookiebot_Gutenberg_Declaration_Block; |
| 8 | use cybot\cookiebot\settings\Menu_Settings; |
| 9 | use cybot\cookiebot\settings\Network_Menu_Settings; |
| 10 | use cybot\cookiebot\widgets\Dashboard_Widget_Cookiebot_Status; |
| 11 | use RuntimeException; |
| 12 | |
| 13 | class Cookiebot_WP { |
| 14 | const COOKIEBOT_PLUGIN_VERSION = '4.2.8'; |
| 15 | const COOKIEBOT_MIN_PHP_VERSION = '5.6.0'; |
| 16 | |
| 17 | /** |
| 18 | * @var Cookiebot_WP The single instance of the class |
| 19 | * @since 1.0.0 |
| 20 | */ |
| 21 | private static $instance = null; |
| 22 | |
| 23 | /** |
| 24 | * Main Cookiebot_WP Instance |
| 25 | * |
| 26 | * Ensures only one instance of Cookiebot_WP is loaded or can be loaded. |
| 27 | * |
| 28 | * @return Cookiebot_WP - Main instance |
| 29 | * @throws RuntimeException |
| 30 | * @version 1.0.0 |
| 31 | * @since 1.0.0 |
| 32 | * @static |
| 33 | */ |
| 34 | public static function instance() { |
| 35 | if ( is_null( self::$instance ) ) { |
| 36 | self::$instance = new self(); |
| 37 | } |
| 38 | |
| 39 | return self::$instance; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Cookiebot_WP Constructor. |
| 44 | * |
| 45 | * @throws RuntimeException |
| 46 | * @since 1.0.0 |
| 47 | * @access public |
| 48 | * @version 2.1.4 |
| 49 | */ |
| 50 | public function __construct() { |
| 51 | $this->throw_exception_if_php_version_is_incompatible(); |
| 52 | |
| 53 | add_action( 'after_setup_theme', array( $this, 'cookiebot_init' ), 5 ); |
| 54 | register_activation_hook( __FILE__, array( new Cookiebot_Activated(), 'run' ) ); |
| 55 | register_deactivation_hook( __FILE__, array( new Cookiebot_Deactivated(), 'run' ) ); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * @throws RuntimeException |
| 60 | */ |
| 61 | private function throw_exception_if_php_version_is_incompatible() { |
| 62 | if ( version_compare( PHP_VERSION, self::COOKIEBOT_MIN_PHP_VERSION, '<' ) ) { |
| 63 | $message = sprintf( |
| 64 | // translators: The placeholder is for the COOKIEBOT_MIN_PHP_VERSION constant |
| 65 | __( 'The Cookiebot plugin requires PHP version %s or greater.', 'cookiebot' ), |
| 66 | self::COOKIEBOT_MIN_PHP_VERSION |
| 67 | ); |
| 68 | throw new RuntimeException( $message ); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | public function cookiebot_init() { |
| 73 | Cookiebot_Addons::instance(); |
| 74 | load_textdomain( |
| 75 | 'cookiebot', |
| 76 | CYBOT_COOKIEBOT_PLUGIN_DIR . 'langs/cookiebot-' . get_locale() . '.mo' |
| 77 | ); |
| 78 | load_plugin_textdomain( 'cookiebot', false, dirname( plugin_basename( __FILE__ ) ) . '/langs' ); |
| 79 | |
| 80 | if ( is_admin() ) { |
| 81 | ( new Menu_Settings() )->add_menu(); |
| 82 | if ( is_multisite() && is_plugin_active_for_network( 'cookiebot/cookiebot.php' ) ) { |
| 83 | ( new Network_Menu_Settings() )->add_menu(); |
| 84 | } |
| 85 | ( new Dashboard_Widget_Cookiebot_Status() )->register_hooks(); |
| 86 | ( new Cookiebot_Recommendation_Notice() )->register_hooks(); |
| 87 | } |
| 88 | |
| 89 | ( new Consent_API_Helper() )->register_hooks(); |
| 90 | ( new Cookiebot_Javascript_Helper() )->register_hooks(); |
| 91 | ( new Cookiebot_Automatic_Updates() )->register_hooks(); |
| 92 | ( new Widgets() )->register_hooks(); |
| 93 | ( new Cookiebot_Gutenberg_Declaration_Block() )->register_hooks(); |
| 94 | ( new WP_Rocket_Helper() )->register_hooks(); |
| 95 | |
| 96 | $this->set_default_options(); |
| 97 | $this->delay_notice_recommendation_on_first_activation(); |
| 98 | add_filter( 'plugin_action_links_cookiebot/cookiebot.php', array( $this, 'set_settings_action_link' ) ); |
| 99 | } |
| 100 | |
| 101 | /** |
| 102 | * Returns true if an user is logged in and has an edit_themes capability |
| 103 | * |
| 104 | * @return bool |
| 105 | * |
| 106 | * @since 3.3.1 |
| 107 | * @version 3.4.1 |
| 108 | */ |
| 109 | public static function can_current_user_edit_theme() { |
| 110 | if ( is_user_logged_in() && |
| 111 | ( |
| 112 | current_user_can( 'edit_themes' ) || |
| 113 | current_user_can( 'edit_pages' ) || |
| 114 | current_user_can( 'edit_posts' ) |
| 115 | ) |
| 116 | ) { |
| 117 | return true; |
| 118 | } |
| 119 | |
| 120 | return false; |
| 121 | } |
| 122 | |
| 123 | /** |
| 124 | * @return string |
| 125 | */ |
| 126 | public static function get_cbid() { |
| 127 | $network_setting = (string) get_site_option( 'cookiebot-cbid', '' ); |
| 128 | $setting = (string) get_option( 'cookiebot-cbid', $network_setting ); |
| 129 | |
| 130 | return empty( $setting ) ? $network_setting : $setting; |
| 131 | } |
| 132 | |
| 133 | /** |
| 134 | * @return string |
| 135 | */ |
| 136 | public static function get_cookie_blocking_mode() { |
| 137 | $allowed_modes = array( 'auto', 'manual' ); |
| 138 | $network_setting = (string) get_site_option( 'cookiebot-cookie-blocking-mode', 'manual' ); |
| 139 | $setting = (string) get_option( 'cookiebot-cookie-blocking-mode', $network_setting ); |
| 140 | |
| 141 | return in_array( $setting, $allowed_modes, true ) ? $setting : 'manual'; |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * @return bool |
| 146 | */ |
| 147 | public static function check_network_auto_blocking_mode() { |
| 148 | $network_setting = (string) get_site_option( 'cookiebot-cookie-blocking-mode' ); |
| 149 | |
| 150 | return $network_setting === 'auto' ? true : false; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Cookiebot_WP Check if Cookiebot is active in admin |
| 155 | * |
| 156 | * @version 4.2.8 |
| 157 | * @since 3.1.0 |
| 158 | */ |
| 159 | public static function cookiebot_disabled_in_admin() { |
| 160 | if ( ( is_network_admin() && get_site_option( 'cookiebot-nooutput-admin', false ) ) || |
| 161 | ( ! is_network_admin() && get_site_option( 'cookiebot-nooutput-admin', false ) ) || |
| 162 | ( ! is_network_admin() && get_option( 'cookiebot-nooutput-admin', false ) ) ) { |
| 163 | return true; |
| 164 | } |
| 165 | |
| 166 | return false; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Cookiebot_WP Set default options |
| 171 | * |
| 172 | * @version 4.2.5 |
| 173 | * @since 4.2.5 |
| 174 | */ |
| 175 | private function set_default_options() { |
| 176 | $options = array( |
| 177 | 'cookiebot-nooutput-admin' => '1', |
| 178 | 'cookiebot-gcm' => '1', |
| 179 | ); |
| 180 | |
| 181 | foreach ( $options as $option => $default ) { |
| 182 | if ( get_option( $option ) === false && ! get_option( $option . '-first-run' ) ) { |
| 183 | update_option( $option, $default ); |
| 184 | } |
| 185 | |
| 186 | if ( ( get_option( $option ) || get_option( $option ) !== false ) && ! get_option( $option . '-first-run' ) ) { |
| 187 | update_option( $option . '-first-run', '1' ); |
| 188 | } |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Cookiebot_WP Delay recommendation notice 1 day after first activation |
| 194 | * |
| 195 | * @version 4.2.5 |
| 196 | * @since 4.2.5 |
| 197 | */ |
| 198 | private function delay_notice_recommendation_on_first_activation() { |
| 199 | // Check if recommendation notice delay option exists |
| 200 | if ( get_option( Cookiebot_Recommendation_Notice::COOKIEBOT_RECOMMENDATION_OPTION_KEY, false ) === false ) { |
| 201 | // Delay in 1 day |
| 202 | add_option( Cookiebot_Recommendation_Notice::COOKIEBOT_RECOMMENDATION_OPTION_KEY, strtotime( '+1 day' ) ); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | public function set_settings_action_link( $actions ) { |
| 207 | $cblinks = array( |
| 208 | '<a href="' . admin_url( 'admin.php?page=cookiebot' ) . '">' . esc_html__( 'Dashboard', 'cookiebot' ) . '</a>', |
| 209 | ); |
| 210 | $actions = array_merge( $actions, $cblinks ); |
| 211 | return $actions; |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * @return string |
| 216 | */ |
| 217 | public static function get_manager_language() { |
| 218 | $locale = get_locale(); |
| 219 | $supported_langs = array( |
| 220 | 'de_DE' => 'de', |
| 221 | 'da_DK' => 'da', |
| 222 | 'fr_FR' => 'fr', |
| 223 | 'it_IT' => 'it', |
| 224 | 'es_ES' => 'es', |
| 225 | ); |
| 226 | |
| 227 | return array_key_exists( $locale, $supported_langs ) ? $supported_langs[ $locale ] : esc_html( 'en' ); |
| 228 | } |
| 229 | } |
| 230 |