1 | <?php //phpcs:ignore WordPress.Files.FileName.InvalidClassFileName |
||
16 | class Jetpack_Plan { |
||
17 | /** |
||
18 | * A cache variable to hold the active plan for the current request. |
||
19 | * |
||
20 | * @var array |
||
21 | */ |
||
22 | private static $active_plan_cache; |
||
23 | |||
24 | /** |
||
25 | * The name of the option that will store the site's plan. |
||
26 | * |
||
27 | * @var string |
||
28 | */ |
||
29 | const PLAN_OPTION = 'jetpack_active_plan'; |
||
30 | |||
31 | /** |
||
32 | * The name of the option that will store the site's products. |
||
33 | * |
||
34 | * @var string |
||
35 | */ |
||
36 | const SITE_PRODUCTS_OPTION = 'jetpack_site_products'; |
||
37 | |||
38 | const PLAN_DATA = array( |
||
39 | 'free' => array( |
||
40 | 'plans' => array( |
||
41 | 'jetpack_free', |
||
42 | ), |
||
43 | 'supports' => array( |
||
44 | 'opentable', |
||
45 | 'calendly', |
||
46 | 'send-a-message', |
||
47 | 'social-previews', |
||
48 | |||
49 | 'core/video', |
||
50 | 'core/cover', |
||
51 | 'core/audio', |
||
52 | ), |
||
53 | ), |
||
54 | 'personal' => array( |
||
55 | 'plans' => array( |
||
56 | 'jetpack_personal', |
||
57 | 'jetpack_personal_monthly', |
||
58 | 'personal-bundle', |
||
59 | 'personal-bundle-monthly', |
||
60 | 'personal-bundle-2y', |
||
61 | ), |
||
62 | 'supports' => array( |
||
63 | 'akismet', |
||
64 | 'recurring-payments', |
||
65 | ), |
||
66 | ), |
||
67 | 'premium' => array( |
||
68 | 'plans' => array( |
||
69 | 'jetpack_premium', |
||
70 | 'jetpack_premium_monthly', |
||
71 | 'value_bundle', |
||
72 | 'value_bundle-monthly', |
||
73 | 'value_bundle-2y', |
||
74 | ), |
||
75 | 'supports' => array( |
||
76 | 'donations', |
||
77 | 'simple-payments', |
||
78 | 'vaultpress', |
||
79 | 'videopress', |
||
80 | ), |
||
81 | ), |
||
82 | 'security' => array( |
||
83 | 'plans' => array( |
||
84 | 'jetpack_security_daily', |
||
85 | 'jetpack_security_daily_monthly', |
||
86 | 'jetpack_security_realtime', |
||
87 | 'jetpack_security_realtime_monthly', |
||
88 | ), |
||
89 | 'supports' => array(), |
||
90 | ), |
||
91 | 'business' => array( |
||
92 | 'plans' => array( |
||
93 | 'jetpack_business', |
||
94 | 'jetpack_business_monthly', |
||
95 | 'business-bundle', |
||
96 | 'business-bundle-monthly', |
||
97 | 'business-bundle-2y', |
||
98 | 'ecommerce-bundle', |
||
99 | 'ecommerce-bundle-monthly', |
||
100 | 'ecommerce-bundle-2y', |
||
101 | 'vip', |
||
102 | ), |
||
103 | 'supports' => array(), |
||
104 | ), |
||
105 | |||
106 | 'complete' => array( |
||
107 | 'plans' => array( |
||
108 | 'jetpack_complete', |
||
109 | 'jetpack_complete_monthly', |
||
110 | ), |
||
111 | 'supports' => array(), |
||
112 | ), |
||
113 | ); |
||
114 | |||
115 | /** |
||
116 | * Given a response to the `/sites/%d` endpoint, will parse the response and attempt to set the |
||
117 | * site's plan and products from the response. |
||
118 | * |
||
119 | * @param array $response The response from `/sites/%d`. |
||
120 | * @return bool Was the plan successfully updated? |
||
121 | */ |
||
122 | public static function update_from_sites_response( $response ) { |
||
166 | |||
167 | /** |
||
168 | * Store data in an option. |
||
169 | * |
||
170 | * @param string $option The name of the option that will store the data. |
||
171 | * @param array $data Data to be store in an option. |
||
172 | * @return bool Were the subscriptions successfully updated? |
||
173 | */ |
||
174 | private static function store_data_in_option( $option, $data ) { |
||
185 | |||
186 | /** |
||
187 | * Make an API call to WordPress.com for plan status |
||
188 | * |
||
189 | * @uses Jetpack_Options::get_option() |
||
190 | * @uses Client::wpcom_json_api_request_as_blog() |
||
191 | * @uses update_option() |
||
192 | * |
||
193 | * @access public |
||
194 | * @static |
||
195 | * |
||
196 | * @return bool True if plan is updated, false if no update |
||
197 | */ |
||
198 | public static function refresh_from_wpcom() { |
||
205 | |||
206 | /** |
||
207 | * Get the plan that this Jetpack site is currently using. |
||
208 | * |
||
209 | * @uses get_option() |
||
210 | * |
||
211 | * @access public |
||
212 | * @static |
||
213 | * |
||
214 | * @return array Active Jetpack plan details |
||
215 | */ |
||
216 | public static function get() { |
||
255 | |||
256 | /** |
||
257 | * Get the site's products. |
||
258 | * |
||
259 | * @uses get_option() |
||
260 | * |
||
261 | * @access public |
||
262 | * @static |
||
263 | * |
||
264 | * @return array Active Jetpack products |
||
265 | */ |
||
266 | public static function get_products() { |
||
269 | |||
270 | /** |
||
271 | * Get the class of plan and a list of features it supports |
||
272 | * |
||
273 | * @param string $plan_slug The plan that we're interested in. |
||
274 | * @return array Two item array, the plan class and the an array of features. |
||
275 | */ |
||
276 | private static function get_class_and_features( $plan_slug ) { |
||
286 | |||
287 | /** |
||
288 | * Gets the minimum plan slug that supports the given feature |
||
289 | * |
||
290 | * @param string $feature The name of the feature. |
||
291 | * @return string|bool The slug for the minimum plan that supports. |
||
292 | * the feature or false if not found |
||
293 | */ |
||
294 | public static function get_minimum_plan_for_feature( $feature ) { |
||
302 | |||
303 | /** |
||
304 | * Determine whether the active plan supports a particular feature |
||
305 | * |
||
306 | * @uses Jetpack_Plan::get() |
||
307 | * |
||
308 | * @access public |
||
309 | * @static |
||
310 | * |
||
311 | * @param string $feature The module or feature to check. |
||
312 | * |
||
313 | * @return bool True if plan supports feature, false if not |
||
314 | */ |
||
315 | public static function supports( $feature ) { |
||
344 | } |
||
345 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..