1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
<?php
namespace Automattic\WooCommerce\Blocks\AI;
use Automattic\Jetpack\Config; use Automattic\Jetpack\Connection\Manager; use Automattic\Jetpack\Connection\Utils;
/** * Class Configuration * * @internal */ class Configuration {
/** * The name of the option that stores the site owner's consent to connect to the AI API. * * @var string */ private $consent_option_name = 'woocommerce_blocks_allow_ai_connection'; /** * The Jetpack connection manager. * * @var Manager */ private $manager; /** * The Jetpack configuration. * * @var Config */ private $config;
/** * Configuration constructor. */ public function __construct() { if ( ! class_exists( 'Automattic\Jetpack\Connection\Manager' ) || ! class_exists( 'Automattic\Jetpack\Config' ) ) { return; }
$this->manager = new Manager( 'woocommerce_blocks' ); $this->config = new Config(); }
/** * Initialize the site and user connection and registration. * * @return bool|\WP_Error */ public function init() { if ( ! $this->should_connect() ) { return false; }
$this->enable_connection_feature();
return $this->register_and_connect(); }
/** * Verify if the site should connect to Jetpack. * * @return bool */ private function should_connect() { $site_owner_consent = get_option( $this->consent_option_name );
return $site_owner_consent && class_exists( 'Automattic\Jetpack\Connection\Utils' ) && class_exists( 'Automattic\Jetpack\Connection\Manager' ); }
/** * Initialize Jetpack's connection feature within the WooCommerce Blocks plugin. * * @return void */ private function enable_connection_feature() { $this->config->ensure( 'connection', array( 'slug' => 'woocommerce/woocommerce-blocks', 'name' => 'WooCommerce Blocks', ) ); }
/** * Register the site with Jetpack. * * @return bool|\WP_Error */ private function register_and_connect() { Utils::init_default_constants();
$jetpack_id = \Jetpack_Options::get_option( 'id' ); $jetpack_public = \Jetpack_Options::get_option( 'public' );
$register = $jetpack_id && $jetpack_public ? true : $this->manager->register();
if ( true === $register && ! $this->manager->is_user_connected() ) { $this->manager->connect_user(); return true; }
return false; }
/** * Unregister the site with Jetpack. * * @return void */ private function unregister_site() { if ( $this->manager->is_connected() ) { $this->manager->remove_connection(); } } }
|