|
1
|
|
|
<?php |
|
2
|
|
|
namespace GV; |
|
3
|
|
|
|
|
4
|
|
|
/** If this file is called directly, abort. */ |
|
5
|
|
|
if ( ! defined( 'GRAVITYVIEW_DIR' ) ) { |
|
6
|
|
|
die(); |
|
7
|
|
|
} |
|
8
|
|
|
|
|
9
|
|
|
/** |
|
10
|
|
|
* The \GV\License_Handler class. |
|
11
|
|
|
* |
|
12
|
|
|
* Handles everything licensing. Ka-ching! |
|
13
|
|
|
*/ |
|
14
|
|
|
class License_Handler { |
|
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* @var \GV\Addon_Settings The global addon settings binding. |
|
17
|
|
|
*/ |
|
18
|
|
|
private $settings; |
|
19
|
|
|
|
|
20
|
|
|
const name = 'GravityView'; |
|
21
|
|
|
const author = 'Katz Web Services, Inc.'; |
|
22
|
|
|
const url = 'https://gravityview.co'; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* Post ID on gravityview.co |
|
26
|
|
|
* @since 1.15 |
|
27
|
|
|
*/ |
|
28
|
|
|
const item_id = 17; |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Name of the transient used to store license status for GV |
|
32
|
|
|
* @since 1.17 |
|
33
|
|
|
*/ |
|
34
|
|
|
const status_transient_key = 'gravityview_edd-activate_valid'; |
|
35
|
|
|
|
|
36
|
|
|
/** |
|
37
|
|
|
* @var string Key used to store active GravityView/Gravity Forms plugin data |
|
38
|
|
|
* @since 1.15 |
|
39
|
|
|
*/ |
|
40
|
|
|
const related_plugins_key = 'gravityview_related_plugins'; |
|
41
|
|
|
|
|
42
|
|
|
/** @var \GV\EDD_SL_Plugin_Updater */ |
|
43
|
|
|
private $EDD_SL_Plugin_Updater; |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* @var \GV\License_Handler |
|
47
|
|
|
*/ |
|
48
|
|
|
private static $__instance; |
|
49
|
|
|
|
|
50
|
1 |
|
private function __construct( $settings ) { |
|
51
|
|
|
|
|
52
|
1 |
|
$this->settings = $settings; |
|
53
|
|
|
|
|
54
|
1 |
|
if ( ! $this->settings instanceof Addon_Settings ) { |
|
55
|
|
|
$this->settings = gravityview()->plugin->settings; |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
1 |
|
add_action( 'admin_init', array( $this, 'setup_edd' ), 0 ); |
|
59
|
1 |
|
add_action( 'wp_ajax_gravityview_license', array( $this, 'license_call' ) ); |
|
60
|
1 |
|
add_action( 'admin_init', array( $this, 'refresh_license_status' ) ); |
|
61
|
1 |
|
add_action( 'admin_init', array( $this, 'check_license' ) ); |
|
62
|
1 |
|
add_action( 'update_option_active_plugins', array( $this, 'flush_related_plugins_transient' ) ); |
|
63
|
1 |
|
add_action( 'update_option_active_sitewide_plugins', array( $this, 'flush_related_plugins_transient' ) ); |
|
64
|
1 |
|
} |
|
65
|
|
|
|
|
66
|
|
|
/** |
|
67
|
|
|
* @return \GV\License_Handler The global instance. |
|
68
|
|
|
*/ |
|
69
|
2 |
|
public static function get( $settings = null ) { |
|
70
|
2 |
|
if ( ! self::$__instance ) { |
|
71
|
1 |
|
self::$__instance = new self( $settings ); |
|
72
|
|
|
} |
|
73
|
2 |
|
return self::$__instance; |
|
74
|
|
|
} |
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* Generate the array of settings passed to the EDD license call |
|
78
|
|
|
* |
|
79
|
|
|
* @since 1.7.4 |
|
80
|
|
|
* |
|
81
|
|
|
* @param string $action The action to send to edd, such as `check_license` |
|
82
|
|
|
* @param string $license The license key to have passed to EDD |
|
83
|
|
|
* |
|
84
|
|
|
* @return array |
|
85
|
|
|
*/ |
|
86
|
1 |
|
private function _get_edd_settings( $action = '', $license = '' ) { |
|
87
|
|
|
|
|
88
|
|
|
// retrieve our license key from the DB |
|
89
|
1 |
|
$license_key = empty( $license ) ? trim( $this->settings->get( 'license_key' ) ) : $license; |
|
90
|
|
|
|
|
91
|
|
|
$settings = array( |
|
92
|
1 |
|
'version' => Plugin::$version, |
|
93
|
1 |
|
'license' => $license_key, |
|
94
|
1 |
|
'item_name' => self::name, |
|
95
|
1 |
|
'item_id' => self::item_id, |
|
96
|
1 |
|
'author' => self::author, |
|
97
|
1 |
|
'language' => get_locale(), |
|
98
|
1 |
|
'url' => home_url(), |
|
99
|
1 |
|
'beta' => $this->settings->get( 'beta' ), |
|
100
|
|
|
); |
|
101
|
|
|
|
|
102
|
1 |
|
if ( ! empty( $action ) ) { |
|
103
|
1 |
|
$settings['edd_action'] = esc_attr( $action ); |
|
104
|
|
|
} |
|
105
|
|
|
|
|
106
|
1 |
|
return array_map( 'urlencode', $settings ); |
|
107
|
|
|
} |
|
108
|
|
|
|
|
109
|
|
|
/** |
|
110
|
|
|
* Include the EDD plugin updater class, if not exists |
|
111
|
|
|
* |
|
112
|
|
|
* @since 1.7.4 |
|
113
|
|
|
* @since 1.21.5.3 Changed visibility of method to public |
|
114
|
|
|
* |
|
115
|
|
|
* @return void |
|
116
|
|
|
*/ |
|
117
|
1 |
|
public function setup_edd() { |
|
118
|
1 |
|
if ( ! class_exists( '\GV\EDD_SL_Plugin_Updater' ) ) { |
|
119
|
1 |
|
require_once gravityview()->plugin->dir( 'future/lib/EDD_SL_Plugin_Updater.php' ); |
|
120
|
|
|
} |
|
121
|
|
|
|
|
122
|
|
|
// setup the updater |
|
123
|
1 |
|
$this->EDD_SL_Plugin_Updater = new EDD_SL_Plugin_Updater( |
|
124
|
1 |
|
self::url, |
|
125
|
1 |
|
GRAVITYVIEW_FILE, |
|
126
|
1 |
|
$this->_get_edd_settings() |
|
127
|
|
|
); |
|
128
|
1 |
|
} |
|
129
|
|
|
|
|
130
|
|
|
/** |
|
131
|
|
|
* Perform the call to EDD based on the AJAX call or passed data |
|
132
|
|
|
* |
|
133
|
|
|
* @since 1.7.4 |
|
134
|
|
|
* |
|
135
|
|
|
* @param array $array { |
|
136
|
|
|
* @type string $license The license key |
|
137
|
|
|
* @type string $edd_action The EDD action to perform, like `check_license` |
|
138
|
|
|
* @type string $field_id The ID of the field to check |
|
139
|
|
|
* @type boolean $update Whether to update plugin settings. Prevent updating the data by setting an `update` key to false |
|
140
|
|
|
* @type string $format If `object`, return the object of the license data. Else, return the JSON-encoded object |
|
141
|
|
|
* } |
|
142
|
|
|
* @param boolean $cap_check Require `gravityview_edit_settings` capability from current user. |
|
143
|
|
|
* |
|
144
|
|
|
* @return mixed|string|void |
|
145
|
|
|
*/ |
|
146
|
1 |
|
public function license_call( $array = array(), $cap_check = true ) { |
|
147
|
|
|
|
|
148
|
1 |
|
$is_ajax = ( defined( 'DOING_AJAX' ) && DOING_AJAX ); |
|
149
|
1 |
|
$data = empty( $array ) ? Utils::_POST( 'data', array() ) : $array; |
|
150
|
|
|
|
|
151
|
1 |
|
$data = wp_parse_args( $data, array( |
|
152
|
1 |
|
'license' => '', |
|
153
|
|
|
'edd_action' => '', |
|
154
|
|
|
'field_id' => '', |
|
155
|
|
|
'update' => '', |
|
156
|
|
|
'format' => 'json', |
|
157
|
|
|
) ); |
|
158
|
|
|
|
|
159
|
1 |
|
if ( $is_ajax && empty( $data['license'] ) ) { |
|
160
|
|
|
die( -1 ); |
|
161
|
|
|
} |
|
162
|
|
|
|
|
163
|
|
|
// If the user isn't allowed to edit settings, show an error message |
|
164
|
1 |
|
if ( $cap_check && ! \GVCommon::has_cap( 'gravityview_edit_settings' ) ) { |
|
165
|
1 |
|
$license_data = new \stdClass(); |
|
166
|
1 |
|
$license_data->error = 'capability'; |
|
167
|
1 |
|
$license_data->message = $this->get_license_message( $license_data ); |
|
168
|
1 |
|
$json = json_encode( $license_data ); |
|
169
|
|
|
} else { |
|
170
|
1 |
|
$license = esc_attr( Utils::get( $data, 'license' ) ); |
|
171
|
1 |
|
$license_data = $this->_license_get_remote_response( $data, $license ); |
|
172
|
|
|
|
|
173
|
|
|
// Empty is returned when there's an error. |
|
174
|
1 |
|
if ( empty( $license_data ) ) { |
|
175
|
1 |
|
if ( $is_ajax ) { |
|
176
|
|
|
exit( json_encode( array() ) ); |
|
177
|
|
|
} else { // Non-ajax call |
|
178
|
1 |
|
return json_encode( array() ); |
|
179
|
|
|
} |
|
180
|
|
|
} |
|
181
|
|
|
|
|
182
|
1 |
|
$license_data->details = $this->license_details( $license_data ); |
|
183
|
1 |
|
$license_data->message = $this->get_license_message( $license_data ); |
|
184
|
|
|
|
|
185
|
1 |
|
$json = json_encode( $license_data ); |
|
186
|
|
|
|
|
187
|
1 |
|
$update_license = Utils::get( $data, 'update' ) || 'gravityview_license' === Utils::_POST('action'); |
|
188
|
|
|
|
|
189
|
1 |
|
$is_check_action_button = ( 'check_license' === Utils::get( $data, 'edd_action' ) && defined( 'DOING_AJAX' ) && DOING_AJAX ); |
|
190
|
|
|
|
|
191
|
1 |
|
if ( 'deactivate_license' === Utils::get( $data, 'edd_action' ) ) { |
|
192
|
|
|
do_action('gravityview/admin_installer/delete_downloads_data', true ); |
|
193
|
|
|
} |
|
194
|
|
|
|
|
195
|
1 |
|
if ( $is_check_action_button ) { |
|
196
|
|
|
delete_transient( self::status_transient_key ); |
|
197
|
|
|
|
|
198
|
|
|
// Failed is the response from trying to de-activate a license and it didn't work. |
|
199
|
|
|
// This likely happened because people entered in a different key and clicked "Deactivate", |
|
200
|
|
|
// meaning to deactivate the original key. We don't want to save this response, since it is |
|
201
|
|
|
// most likely a mistake. |
|
202
|
1 |
|
} else if ( $license_data->license !== 'failed' && $update_license ) { |
|
203
|
|
|
|
|
204
|
1 |
|
if ( ! empty( $data['field_id'] ) ) { |
|
205
|
1 |
|
set_transient( self::status_transient_key, $license_data, DAY_IN_SECONDS ); |
|
206
|
|
|
} |
|
207
|
|
|
|
|
208
|
1 |
|
$this->license_call_update_settings( $license_data, $data ); |
|
209
|
|
|
} |
|
210
|
|
|
} |
|
211
|
|
|
|
|
212
|
1 |
|
if ( $is_ajax ) { |
|
213
|
|
|
exit( $json ); |
|
214
|
|
|
} else { // Non-ajax call |
|
215
|
1 |
|
return ( Utils::_GET( 'format', Utils::get( $data, 'format' ) ) === 'object' ) ? $license_data : $json; |
|
216
|
|
|
} |
|
217
|
|
|
} |
|
218
|
|
|
|
|
219
|
|
|
/** |
|
220
|
|
|
* Generate the status message displayed in the license field |
|
221
|
|
|
* |
|
222
|
|
|
* @since 1.7.4 |
|
223
|
|
|
* @param $license_data |
|
224
|
|
|
* |
|
225
|
|
|
* @return string |
|
226
|
|
|
*/ |
|
227
|
2 |
|
private function get_license_message( $license_data ) { |
|
228
|
2 |
|
if ( empty( $license_data ) ) { |
|
229
|
2 |
|
$message = ''; |
|
230
|
|
|
} else { |
|
231
|
1 |
|
if( ! empty( $license_data->error ) ) { |
|
232
|
1 |
|
$class = 'error'; |
|
233
|
1 |
|
$string_key = $license_data->error; |
|
234
|
1 |
|
} else { $class = $license_data->license; |
|
235
|
1 |
|
$string_key = $license_data->license; |
|
236
|
|
|
} |
|
237
|
|
|
|
|
238
|
1 |
|
$message = sprintf( '<p><strong>%s: %s</strong></p>', $this->strings( 'status' ), $this->strings( $string_key, $license_data ) ); |
|
239
|
|
|
|
|
240
|
1 |
|
$message = $this->generate_license_box( $message, $class ); |
|
241
|
|
|
} |
|
242
|
|
|
|
|
243
|
2 |
|
return $message; |
|
244
|
|
|
} |
|
245
|
|
|
|
|
246
|
|
|
/** |
|
247
|
|
|
* Allow pure HTML in settings fields |
|
248
|
|
|
* |
|
249
|
|
|
* @since 1.17 |
|
250
|
|
|
* |
|
251
|
|
|
* @param array $response License response |
|
252
|
|
|
* |
|
253
|
|
|
* @return string `html` key of the $field |
|
254
|
|
|
*/ |
|
255
|
2 |
|
public function license_details( $response = array() ) { |
|
256
|
|
|
|
|
257
|
2 |
|
$response = (array) $response; |
|
258
|
|
|
|
|
259
|
2 |
|
$return = ''; |
|
260
|
2 |
|
$wrapper = '<span class="gv-license-details" aria-live="polite" aria-busy="false">%s</span>'; |
|
261
|
|
|
|
|
262
|
2 |
|
if ( ! empty( $response['license_key'] ) ) { |
|
263
|
1 |
|
$return .= '<h3>' . esc_html__( 'License Details:', 'gravityview' ) . '</h3>'; |
|
264
|
|
|
|
|
265
|
1 |
|
if ( in_array( Utils::get( $response, 'license' ), array( 'invalid', 'deactivated' ) ) ) { |
|
266
|
1 |
|
$return .= $this->strings( $response['license'], $response ); |
|
267
|
1 |
|
} elseif ( ! empty( $response['license_name'] ) ) { |
|
268
|
|
|
$response_keys = array( |
|
269
|
1 |
|
'license_name' => '', |
|
270
|
|
|
'license_limit' => '', |
|
271
|
|
|
'customer_name' => '', |
|
272
|
|
|
'customer_email' => '', |
|
273
|
|
|
'site_count' => '', |
|
274
|
|
|
'expires' => '', |
|
275
|
|
|
'upgrades' => '' |
|
276
|
|
|
); |
|
277
|
|
|
|
|
278
|
|
|
// Make sure all the keys are set |
|
279
|
1 |
|
$response = wp_parse_args( $response, $response_keys ); |
|
280
|
|
|
|
|
281
|
1 |
|
$login_link = sprintf( '<a href="%s" class="howto" rel="external">%s</a>', esc_url( sprintf( 'https://gravityview.co/wp-login.php?username=%s', $response['customer_email'] ) ), esc_html__( 'Access your GravityView account', 'gravityview' ) ); |
|
282
|
1 |
|
$local_text = ( ! empty( $response['is_local'] ) ? '<span class="howto">' . __( 'This development site does not count toward license activation limits', 'gravityview' ) . '</span>' : '' ); |
|
283
|
1 |
|
$license_limit = empty( $response['license_limit'] ) ? __( 'Unlimited', 'gravityview' ) : (int) $response['license_limit']; |
|
284
|
|
|
|
|
285
|
|
|
$details = array( |
|
286
|
1 |
|
'license' => sprintf( esc_html__( 'License level: %s', 'gravityview' ), esc_html( $response['license_name'] ), esc_html( $response['license_limit'] ) ), |
|
287
|
1 |
|
'licensed_to' => sprintf( esc_html_x( 'Licensed to: %1$s (%2$s)', '1: Customer name; 2: Customer email', 'gravityview' ), esc_html__( $response['customer_name'], 'gravityview' ), esc_html__( $response['customer_email'], 'gravityview' ) ) . $login_link, |
|
288
|
1 |
|
'activations' => sprintf( esc_html__( 'Activations: %d of %s sites', 'gravityview' ), intval( $response['site_count'] ), esc_html( $license_limit ) ) . $local_text, |
|
289
|
1 |
|
'expires' => 'lifetime' === $response['expires'] ? '' : sprintf( esc_html__( 'Renew on: %s', 'gravityview' ), date_i18n( get_option( 'date_format' ), strtotime( $response['expires'] ) - DAY_IN_SECONDS ) ), |
|
290
|
1 |
|
'upgrade' => $this->get_upgrade_html( $response['upgrades'] ), |
|
291
|
|
|
); |
|
292
|
|
|
|
|
293
|
1 |
|
if ( ! empty( $response['error'] ) && 'expired' === $response['error'] ) { |
|
294
|
|
|
unset( $details['upgrade'] ); |
|
295
|
|
|
$details['expires'] = '<div class="error inline"><p>' . $this->strings( 'expired', $response ) . '</p></div>'; |
|
296
|
|
|
} |
|
297
|
|
|
|
|
298
|
1 |
|
$return .= '<ul><li>' . implode( '</li><li>', array_filter( $details ) ) . '</li></ul>'; |
|
299
|
|
|
} |
|
300
|
|
|
} |
|
301
|
|
|
|
|
302
|
2 |
|
return sprintf( $wrapper, $return ); |
|
303
|
|
|
} |
|
304
|
|
|
|
|
305
|
|
|
/** |
|
306
|
|
|
* Display possible upgrades for a license |
|
307
|
|
|
* |
|
308
|
|
|
* @since 1.17 |
|
309
|
|
|
* |
|
310
|
|
|
* @param array $upgrades Array of upgrade paths, returned from the GV website |
|
311
|
|
|
* |
|
312
|
|
|
* @return string HTML list of upgrades available for the current license |
|
313
|
|
|
*/ |
|
314
|
1 |
|
private function get_upgrade_html( $upgrades ) { |
|
315
|
|
|
|
|
316
|
1 |
|
$output = ''; |
|
317
|
|
|
|
|
318
|
1 |
|
if ( ! empty( $upgrades ) ) { |
|
319
|
|
|
|
|
320
|
1 |
|
$locale_parts = explode( '_', get_locale() ); |
|
321
|
1 |
|
$is_english = ( 'en' === $locale_parts[0] ); |
|
322
|
|
|
|
|
323
|
1 |
|
$output .= '<h4>' . esc_html__( 'Upgrades available:', 'gravityview' ) . '</h4>'; |
|
324
|
1 |
|
$output .= '<ul class="ul-disc">'; |
|
325
|
|
|
|
|
326
|
1 |
|
foreach ( $upgrades as $upgrade_id => $upgrade ) { |
|
327
|
1 |
|
$upgrade = (object) $upgrade; |
|
328
|
|
|
|
|
329
|
1 |
|
$anchor_text = sprintf( esc_html_x( 'Upgrade to %1$s for %2$s', '1: GravityView upgrade name, 2: Cost of upgrade', 'gravityview' ), esc_attr( $upgrade->name ), esc_attr( $upgrade->price ) ); |
|
330
|
|
|
|
|
331
|
1 |
|
if ( $is_english && isset( $upgrade->description ) ) { |
|
332
|
1 |
|
$message = esc_html( $upgrade->description ); |
|
333
|
|
|
} else { |
|
334
|
|
|
switch( $upgrade->price_id ) { |
|
335
|
|
|
// Interstellar |
|
336
|
|
|
case 1: |
|
337
|
|
|
default: |
|
338
|
|
|
$message = esc_html__( 'Get access to Extensions', 'gravityview' ); |
|
339
|
|
|
break; |
|
340
|
|
|
// Galactic |
|
341
|
|
|
case 2: |
|
|
|
|
|
|
342
|
|
|
$message = esc_html__( 'Get access to Entry Importer and other Premium plugins', 'gravityview' ); |
|
343
|
|
|
break; |
|
344
|
|
|
} |
|
345
|
|
|
} |
|
346
|
|
|
|
|
347
|
1 |
|
$output .= sprintf( '<li><a href="%s">%s</a><span class="howto">%s</span></li>', esc_url( add_query_arg( array( 'utm_source' => 'settings', 'utm_medium' => 'admin', 'utm_content' => 'license-details', 'utm_campaign' => 'Upgrades' ), $upgrade->url ) ), $anchor_text, $message ); |
|
348
|
|
|
} |
|
349
|
1 |
|
$output .= '</ul>'; |
|
350
|
|
|
} |
|
351
|
|
|
|
|
352
|
1 |
|
return $output; |
|
353
|
|
|
} |
|
354
|
|
|
|
|
355
|
|
|
/** |
|
356
|
|
|
* Generate the status message box HTML based on the current status |
|
357
|
|
|
* |
|
358
|
|
|
* @since 1.7.4 |
|
359
|
|
|
* @param $message |
|
360
|
|
|
* @param string $class |
|
361
|
|
|
* |
|
362
|
|
|
* @return string |
|
363
|
|
|
*/ |
|
364
|
1 |
|
private function generate_license_box( $message, $class = '' ) { |
|
365
|
1 |
|
$template = '<div id="gv-edd-status" aria-live="polite" aria-busy="false" class="gv-edd-message inline %s">%s</div>'; |
|
366
|
|
|
|
|
367
|
1 |
|
$output = sprintf( $template, esc_attr( $class ), $message ); |
|
368
|
|
|
|
|
369
|
1 |
|
return $output; |
|
370
|
|
|
} |
|
371
|
|
|
|
|
372
|
|
|
/** |
|
373
|
|
|
* Override the text used in the GravityView EDD license Javascript |
|
374
|
|
|
* |
|
375
|
|
|
* @param string $status Status to get. If empty, get all strings. |
|
376
|
|
|
* @param object|array|null $license_data Object with license data, used to generate link to license renewal URL |
|
377
|
|
|
* @return string Modified array of content |
|
378
|
|
|
*/ |
|
379
|
1 |
|
public function strings( $status = NULL, $license_data = null ) { |
|
380
|
|
|
|
|
381
|
|
|
$strings = array( |
|
382
|
1 |
|
'status' => esc_html__( 'Status', 'gravityview' ), |
|
383
|
1 |
|
'error' => esc_html__( 'There was an error processing the request.', 'gravityview' ), |
|
384
|
1 |
|
'failed' => esc_html__( 'Could not deactivate the license. The license key you attempted to deactivate may not be active or valid.', 'gravityview' ), |
|
385
|
1 |
|
'site_inactive' => esc_html__( 'The license key is valid, but it has not been activated for this site.', 'gravityview' ), |
|
386
|
1 |
|
'inactive' => esc_html__( 'The license key is valid, but it has not been activated for this site.', 'gravityview' ), |
|
387
|
1 |
|
'no_activations_left' => esc_html__( 'Invalid: this license has reached its activation limit.', 'gravityview' ) . ' ' . sprintf( esc_html__( 'You can manage license activations %son your GravityView account page%s.', 'gravityview' ), '<a href="https://gravityview.co/account/#licenses">', '</a>' ), |
|
388
|
1 |
|
'deactivated' => esc_html__( 'The license has been deactivated.', 'gravityview' ), |
|
389
|
1 |
|
'valid' => esc_html__( 'The license key is valid and active.', 'gravityview' ), |
|
390
|
1 |
|
'invalid' => esc_html__( 'The license key entered is invalid.', 'gravityview' ), |
|
391
|
1 |
|
'missing' => esc_html__( 'Invalid license key.', 'gravityview' ), |
|
392
|
1 |
|
'revoked' => esc_html__( 'This license key has been revoked.', 'gravityview' ), |
|
393
|
1 |
|
'expired' => sprintf( esc_html__( 'This license key has expired. %sRenew your license on the GravityView website%s to receive updates and support.', 'gravityview' ), '<a href="'. esc_url( $this->get_license_renewal_url( $license_data ) ) .'">', '</a>' ), |
|
394
|
1 |
|
'capability' => esc_html__( 'You don\'t have the ability to edit plugin settings.', 'gravityview' ), |
|
395
|
|
|
|
|
396
|
1 |
|
'verifying_license' => esc_html__( 'Verifying license…', 'gravityview' ), |
|
397
|
1 |
|
'activate_license' => esc_html__( 'Activate License', 'gravityview' ), |
|
398
|
1 |
|
'deactivate_license' => esc_html__( 'Deactivate License', 'gravityview' ), |
|
399
|
1 |
|
'check_license' => esc_html__( 'Verify License', 'gravityview' ), |
|
400
|
|
|
); |
|
401
|
|
|
|
|
402
|
|
|
/** |
|
403
|
|
|
* @internal Do not rely on this filter. |
|
404
|
|
|
* @since 2.1 |
|
405
|
|
|
*/ |
|
406
|
1 |
|
$strings = apply_filters( 'gravityview/admin/license/strings', $strings ); |
|
407
|
|
|
|
|
408
|
1 |
|
return Utils::get( $strings, $status, null ); |
|
409
|
|
|
} |
|
410
|
|
|
|
|
411
|
|
|
/** |
|
412
|
|
|
* URL to direct license renewal, or if license key is not set, then just the account page |
|
413
|
|
|
* @since 1.13.1 |
|
414
|
|
|
* @param object|null $license_data Object with license data |
|
415
|
|
|
* @return string Renewal or account URL |
|
416
|
|
|
*/ |
|
417
|
1 |
|
private function get_license_renewal_url( $license_data ) { |
|
418
|
1 |
|
$license_data = is_array( $license_data ) ? (object)$license_data : $license_data; |
|
419
|
|
|
|
|
420
|
1 |
|
if ( ! empty( $license_data->renewal_url ) ) { |
|
421
|
|
|
$renew_license_url = $license_data->renewal_url; |
|
422
|
1 |
|
} elseif( ! empty( $license_data->license_key ) ) { |
|
423
|
1 |
|
$renew_license_url = sprintf( 'https://gravityview.co/checkout/?download_id=17&edd_license_key=%s', $license_data->license_key ); |
|
424
|
|
|
} else { |
|
425
|
1 |
|
$renew_license_url = 'https://gravityview.co/account/'; |
|
426
|
|
|
} |
|
427
|
|
|
|
|
428
|
1 |
|
$renew_license_url = add_query_arg( wp_parse_args( 'utm_source=admin_notice&utm_medium=admin&utm_content=expired&utm_campaign=Activation&force_login=1' ), $renew_license_url ); |
|
429
|
|
|
|
|
430
|
1 |
|
return $renew_license_url; |
|
431
|
|
|
} |
|
432
|
|
|
|
|
433
|
|
|
/** |
|
434
|
|
|
* Perform the call |
|
435
|
|
|
* |
|
436
|
|
|
* @return array|\WP_Error |
|
437
|
|
|
*/ |
|
438
|
1 |
|
private function _license_get_remote_response( $data, $license = '' ) { |
|
439
|
1 |
|
$api_params = $this->_get_edd_settings( $data['edd_action'], $license ); |
|
440
|
|
|
|
|
441
|
1 |
|
$url = add_query_arg( $api_params, self::url ); |
|
442
|
|
|
|
|
443
|
1 |
|
$response = wp_remote_get( $url, array( |
|
444
|
1 |
|
'timeout' => 15, |
|
445
|
|
|
'sslverify' => false, |
|
446
|
|
|
) ); |
|
447
|
|
|
|
|
448
|
1 |
|
if ( is_wp_error( $response ) ) { |
|
449
|
|
|
gravityview()->log->error( 'WP_Error response from license check. API params:', array( 'data' => $api_params ) ); |
|
450
|
|
|
return array(); |
|
451
|
|
|
} |
|
452
|
|
|
|
|
453
|
1 |
|
$license_data = json_decode( wp_remote_retrieve_body( $response ) ); |
|
454
|
|
|
|
|
455
|
|
|
// Not JSON |
|
456
|
1 |
|
if ( empty( $license_data ) ) { |
|
457
|
1 |
|
gravityview()->log->error( 'Empty license data response from license check', array( 'data' => compact( 'response', 'url', 'api_params', 'data' ) ) ); |
|
458
|
|
|
|
|
459
|
1 |
|
delete_transient( self::status_transient_key ); |
|
460
|
|
|
|
|
461
|
|
|
// Change status |
|
462
|
1 |
|
return array(); |
|
463
|
|
|
} |
|
464
|
|
|
|
|
465
|
|
|
// Store the license key inside the data array |
|
466
|
1 |
|
$license_data->license_key = $license; |
|
467
|
|
|
|
|
468
|
1 |
|
return $license_data; |
|
469
|
|
|
} |
|
470
|
|
|
|
|
471
|
|
|
/** |
|
472
|
|
|
* Update the license after fetching it |
|
473
|
|
|
* @param object $license_data |
|
474
|
|
|
* @return void |
|
475
|
|
|
*/ |
|
476
|
1 |
|
private function license_call_update_settings( $license_data, $data ) { |
|
477
|
1 |
|
$settings = array(); |
|
478
|
|
|
|
|
479
|
1 |
|
$settings['license_key'] = $license_data->license_key = trim( $data['license'] ); |
|
480
|
1 |
|
$settings['license_key_status'] = $license_data->license; |
|
481
|
1 |
|
$settings['license_key_response'] = (array)$license_data; |
|
482
|
|
|
|
|
483
|
1 |
|
$this->settings->set( $settings ); |
|
484
|
1 |
|
} |
|
485
|
|
|
|
|
486
|
2 |
|
public function settings_edd_license_activation( $field, $echo ) { |
|
|
|
|
|
|
487
|
2 |
|
$script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
488
|
|
|
|
|
489
|
2 |
|
wp_enqueue_script( 'gv-admin-edd-license', GRAVITYVIEW_URL . 'assets/js/admin-edd-license' . $script_debug . '.js', array( 'jquery' ) ); |
|
490
|
|
|
|
|
491
|
2 |
|
$status = trim( $this->settings->get( 'license_key_status' ) ); |
|
492
|
2 |
|
$key = trim( $this->settings->get( 'license_key' ) ); |
|
493
|
|
|
|
|
494
|
2 |
|
if ( ! empty( $key ) ) { |
|
495
|
|
|
$response = $this->settings->get( 'license_key_response' ); |
|
496
|
|
|
$response = is_array( $response ) ? (object) $response : json_decode( $response ); |
|
497
|
|
|
} else { |
|
498
|
2 |
|
$response = array(); |
|
499
|
|
|
} |
|
500
|
|
|
|
|
501
|
2 |
|
wp_localize_script( 'gv-admin-edd-license', 'GVGlobals', array( |
|
502
|
2 |
|
'license_box' => $this->get_license_message( $response ) |
|
503
|
|
|
) ); |
|
504
|
|
|
|
|
505
|
|
|
$fields = array( |
|
506
|
|
|
array( |
|
507
|
2 |
|
'name' => 'edd-activate', |
|
508
|
2 |
|
'value' => __( 'Activate License', 'gravityview' ), |
|
509
|
2 |
|
'data-pending_text' => __( 'Verifying license…', 'gravityview' ), |
|
510
|
2 |
|
'data-edd_action' => 'activate_license', |
|
511
|
2 |
|
'class' => 'button-primary', |
|
512
|
|
|
), |
|
513
|
|
|
array( |
|
514
|
2 |
|
'name' => 'edd-deactivate', |
|
515
|
2 |
|
'value' => __( 'Deactivate License', 'gravityview' ), |
|
516
|
2 |
|
'data-pending_text' => __( 'Deactivating license…', 'gravityview' ), |
|
517
|
2 |
|
'data-edd_action' => 'deactivate_license', |
|
518
|
2 |
|
'class' => ( empty( $status ) ? 'button-primary hide' : 'button-primary' ), |
|
519
|
|
|
), |
|
520
|
|
|
array( |
|
521
|
2 |
|
'name' => 'edd-check', |
|
522
|
2 |
|
'value' => __( 'Check License', 'gravityview' ), |
|
523
|
2 |
|
'data-pending_text' => __( 'Verifying license…', 'gravityview' ), |
|
524
|
2 |
|
'title' => 'Check the license before saving it', |
|
525
|
2 |
|
'data-edd_action' => 'check_license', |
|
526
|
2 |
|
'class' => 'button-secondary', |
|
527
|
|
|
), |
|
528
|
|
|
); |
|
529
|
|
|
|
|
530
|
2 |
|
$class = 'button gv-edd-action'; |
|
531
|
|
|
|
|
532
|
2 |
|
$class .= ( ! empty( $key ) && $status !== 'valid' ) ? '' : ' hide'; |
|
533
|
|
|
|
|
534
|
2 |
|
$disabled_attribute = \GVCommon::has_cap( 'gravityview_edit_settings' ) ? false : 'disabled'; |
|
535
|
|
|
|
|
536
|
2 |
|
$submit = '<div class="gv-edd-button-wrapper">'; |
|
537
|
2 |
|
foreach ( $fields as $field ) { |
|
538
|
2 |
|
$field['type'] = 'button'; |
|
539
|
2 |
|
$field['class'] = isset( $field['class'] ) ? $field['class'] . ' '. $class : $class; |
|
540
|
2 |
|
$field['style'] = 'margin-left: 10px;'; |
|
541
|
2 |
|
if( $disabled_attribute ) { |
|
542
|
1 |
|
$field['disabled'] = $disabled_attribute; |
|
543
|
|
|
} |
|
544
|
2 |
|
$submit .= $this->settings->as_html( $field, $echo ); |
|
545
|
|
|
} |
|
546
|
2 |
|
$submit .= '</div>'; |
|
547
|
|
|
|
|
548
|
2 |
|
return $submit; |
|
549
|
|
|
} |
|
550
|
|
|
|
|
551
|
|
|
/** |
|
552
|
|
|
* When the status transient expires (or is deleted on activation), re-check the status |
|
553
|
|
|
* |
|
554
|
|
|
* @since 1.17 |
|
555
|
|
|
* |
|
556
|
|
|
* @return void |
|
557
|
|
|
*/ |
|
558
|
1 |
|
public function refresh_license_status() { |
|
559
|
1 |
|
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { |
|
560
|
|
|
return; |
|
561
|
|
|
} |
|
562
|
|
|
|
|
563
|
|
|
// The transient is fresh; don't fetch. |
|
564
|
1 |
|
if ( $status = get_transient( self::status_transient_key ) ) { |
|
565
|
|
|
return; |
|
566
|
|
|
} |
|
567
|
|
|
|
|
568
|
|
|
$data = array( |
|
569
|
1 |
|
'edd_action' => 'check_license', |
|
570
|
1 |
|
'license' => trim( $this->settings->get( 'license_key' ) ), |
|
571
|
|
|
'update' => true, |
|
572
|
1 |
|
'format' => 'object', |
|
573
|
1 |
|
'field_id' => 'refresh_license_status', // Required to set the `status_transient_key` transient |
|
574
|
|
|
); |
|
575
|
|
|
|
|
576
|
1 |
|
$license_call = $this->license_call( $data, false ); |
|
577
|
|
|
|
|
578
|
1 |
|
gravityview()->log->debug( 'Refreshed the license.', array( 'data' => $license_call ) ); |
|
579
|
1 |
|
} |
|
580
|
|
|
|
|
581
|
|
|
/** |
|
582
|
|
|
* Check the GravityView license information |
|
583
|
|
|
* |
|
584
|
|
|
* @since 1.19.3 |
|
585
|
|
|
* @param bool $force Whether to force checking license, even if AJAX |
|
|
|
|
|
|
586
|
|
|
* |
|
587
|
|
|
* @return void |
|
588
|
|
|
*/ |
|
589
|
1 |
|
public function check_license() { |
|
590
|
1 |
|
if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { |
|
591
|
|
|
return; // Don't fire when saving settings or AJAX |
|
592
|
|
|
} |
|
593
|
|
|
|
|
594
|
1 |
|
if ( ! apply_filters( 'gv_send_site_data', true ) ) { |
|
595
|
|
|
return; |
|
596
|
|
|
} |
|
597
|
|
|
|
|
598
|
|
|
// Send checkins once per week |
|
599
|
1 |
|
$last_checked = get_option( 'gv_last_checkin', false ); |
|
600
|
|
|
|
|
601
|
1 |
|
if ( is_numeric( $last_checked ) && $last_checked > strtotime( '-1 week', current_time( 'timestamp' ) ) ) { |
|
602
|
|
|
return; // checked within a week |
|
603
|
|
|
} |
|
604
|
|
|
|
|
605
|
1 |
|
$status = get_transient( 'gv_license_check' ); |
|
606
|
|
|
|
|
607
|
|
|
// Run the license check a maximum of once per day, and not on GV website |
|
608
|
1 |
|
if ( false === $status && site_url() !== self::url ) { |
|
609
|
|
|
|
|
610
|
|
|
// Call the custom API. |
|
611
|
1 |
|
$response = wp_remote_post( self::url, array( |
|
612
|
1 |
|
'timeout' => 15, |
|
613
|
|
|
'sslverify' => false, |
|
614
|
|
|
'body' => array( |
|
615
|
1 |
|
'edd_action' => 'check_license', |
|
616
|
1 |
|
'license' => trim( $this->settings->get( 'license_key' ) ), |
|
617
|
1 |
|
'item_name' => self::name, |
|
618
|
1 |
|
'url' => home_url(), |
|
619
|
1 |
|
'site_data' => $this->get_site_data(), |
|
620
|
|
|
), |
|
621
|
|
|
)); |
|
622
|
|
|
|
|
623
|
|
|
// make sure the response came back okay |
|
624
|
1 |
|
if ( is_wp_error( $response ) ) { |
|
625
|
|
|
|
|
626
|
|
|
// Connection failed, try again in three hours |
|
627
|
|
|
set_transient( 'gv_license_check', 1, 3 * HOUR_IN_SECONDS ); |
|
628
|
|
|
|
|
629
|
|
|
return; |
|
630
|
|
|
} |
|
631
|
|
|
|
|
632
|
1 |
|
set_transient( 'gv_license_check', 1, DAY_IN_SECONDS ); |
|
633
|
|
|
|
|
634
|
1 |
|
update_option( 'gv_last_checkin', current_time( 'timestamp' ) ); |
|
635
|
|
|
} |
|
636
|
1 |
|
} |
|
637
|
|
|
|
|
638
|
|
|
/** |
|
639
|
|
|
* Retrieves site data (plugin versions, integrations, etc) to be sent along with the license check. |
|
640
|
|
|
* |
|
641
|
|
|
* @since 1.9 |
|
642
|
|
|
* @access public |
|
643
|
|
|
* |
|
644
|
|
|
* @return array |
|
645
|
|
|
*/ |
|
646
|
1 |
|
public function get_site_data() { |
|
647
|
1 |
|
$data = array(); |
|
648
|
|
|
|
|
649
|
1 |
|
$theme_data = wp_get_theme(); |
|
650
|
1 |
|
$theme = $theme_data->Name . ' ' . $theme_data->Version; |
|
651
|
|
|
|
|
652
|
1 |
|
$data['gv_version'] = Plugin::$version; |
|
653
|
1 |
|
$data['php_version'] = phpversion(); |
|
654
|
1 |
|
$data['wp_version'] = get_bloginfo( 'version' ); |
|
655
|
1 |
|
$data['gf_version'] = \GFForms::$version; |
|
656
|
1 |
|
$data['server'] = Utils::get( $_SERVER, 'SERVER_SOFTWARE' ); |
|
657
|
1 |
|
$data['multisite'] = is_multisite(); |
|
658
|
1 |
|
$data['theme'] = $theme; |
|
659
|
1 |
|
$data['url'] = home_url(); |
|
660
|
1 |
|
$data['license_key'] = $this->settings->get( 'license_key' ); |
|
661
|
1 |
|
$data['beta'] = $this->settings->get( 'beta' ); |
|
662
|
|
|
|
|
663
|
|
|
// View Data |
|
664
|
1 |
|
$gravityview_posts = wp_count_posts( 'gravityview', 'readable' ); |
|
665
|
|
|
|
|
666
|
1 |
|
$data['view_count'] = null; |
|
667
|
1 |
|
$data['view_first'] = null; |
|
668
|
1 |
|
$data['view_latest'] = null; |
|
669
|
|
|
|
|
670
|
1 |
|
if ( $gravityview_posts->publish ) { |
|
671
|
1 |
|
$data['view_count'] = $gravityview_posts->publish; |
|
672
|
|
|
|
|
673
|
1 |
|
$first = get_posts( 'numberposts=1&post_type=gravityview&post_status=publish&order=ASC' ); |
|
674
|
1 |
|
$latest = get_posts( 'numberposts=1&post_type=gravityview&post_status=publish&order=DESC' ); |
|
675
|
|
|
|
|
676
|
1 |
|
if ( $first = array_shift( $first ) ) { |
|
677
|
1 |
|
$data['view_first'] = $first->post_date; |
|
678
|
|
|
} |
|
679
|
1 |
|
if ( $latest = array_pop( $latest ) ) { |
|
680
|
1 |
|
$data['view_latest'] = $latest->post_date; |
|
681
|
|
|
} |
|
682
|
|
|
} |
|
683
|
|
|
|
|
684
|
|
|
// Form counts |
|
685
|
1 |
|
if ( class_exists( 'GFFormsModel' ) ) { |
|
686
|
1 |
|
$form_data = \GFFormsModel::get_form_count(); |
|
687
|
1 |
|
$data['forms_total'] = Utils::get( $form_data, 'total', 0 ); |
|
688
|
1 |
|
$data['forms_active'] = Utils::get( $form_data, 'active', 0 ); |
|
689
|
1 |
|
$data['forms_inactive'] = Utils::get( $form_data, 'inactive', 0 ); |
|
690
|
1 |
|
$data['forms_trash'] = Utils::get( $form_data, 'inactive', 0 ); |
|
691
|
|
|
} |
|
692
|
|
|
|
|
693
|
|
|
// Retrieve current plugin information |
|
694
|
1 |
|
if ( ! function_exists( 'get_plugins' ) ) { |
|
695
|
|
|
include ABSPATH . '/wp-admin/includes/plugin.php'; |
|
696
|
|
|
} |
|
697
|
|
|
|
|
698
|
1 |
|
$data['integrations'] = self::get_related_plugins_and_extensions(); |
|
699
|
1 |
|
$data['active_plugins'] = get_option( 'active_plugins', array() ); |
|
700
|
1 |
|
$data['inactive_plugins'] = array(); |
|
701
|
1 |
|
$data['locale'] = get_locale(); |
|
702
|
|
|
|
|
703
|
|
|
// Validate request on the GV server |
|
704
|
1 |
|
$data['hash'] = 'gv_version.url.locale:' . sha1( $data['gv_version'] . $data['url'] . $data['locale'] ); |
|
705
|
|
|
|
|
706
|
1 |
|
return $data; |
|
707
|
|
|
} |
|
708
|
|
|
|
|
709
|
|
|
/** |
|
710
|
|
|
* Get active GravityView Extensions and Gravity Forms Add-ons to help debug issues. |
|
711
|
|
|
* |
|
712
|
|
|
* @since 1.15 |
|
713
|
|
|
* @return string List of active extensions related to GravityView or Gravity Forms, separated by HTML line breaks |
|
714
|
|
|
*/ |
|
715
|
1 |
|
static public function get_related_plugins_and_extensions( $implode = '<br />' ) { |
|
716
|
1 |
|
if ( ! function_exists( 'wp_get_active_and_valid_plugins' ) ) { |
|
717
|
|
|
return 'Running < WP 3.0'; |
|
718
|
|
|
} |
|
719
|
|
|
|
|
720
|
1 |
|
$extensions = get_site_transient( self::related_plugins_key ); |
|
721
|
|
|
|
|
722
|
1 |
|
if ( empty( $extensions ) ) { |
|
723
|
|
|
|
|
724
|
1 |
|
$active_plugins = wp_get_active_and_valid_plugins(); |
|
725
|
1 |
|
$extensions = array(); |
|
726
|
1 |
|
foreach ( $active_plugins as $active_plugin ) { |
|
727
|
|
|
// Match gravityview, gravity-forms, gravityforms, gravitate |
|
728
|
|
|
if ( ! preg_match( '/(gravityview|gravity-?forms|gravitate)/ism', $active_plugin ) ) { |
|
729
|
|
|
continue; |
|
730
|
|
|
} |
|
731
|
|
|
|
|
732
|
|
|
$plugin_data = get_plugin_data( $active_plugin ); |
|
733
|
|
|
|
|
734
|
|
|
$extensions[] = sprintf( '%s %s', $plugin_data['Name'], $plugin_data['Version'] ); |
|
735
|
|
|
} |
|
736
|
|
|
|
|
737
|
1 |
|
if ( ! empty( $extensions ) ) { |
|
738
|
|
|
set_site_transient( self::related_plugins_key, $extensions, HOUR_IN_SECONDS ); |
|
739
|
|
|
} else { |
|
740
|
1 |
|
return 'There was an error fetching related plugins.'; |
|
741
|
|
|
} |
|
742
|
|
|
} |
|
743
|
|
|
|
|
744
|
|
|
return $implode ? implode( $implode, $extensions ) : $extensions; |
|
745
|
|
|
} |
|
746
|
|
|
|
|
747
|
|
|
/** |
|
748
|
|
|
* When a plugin is activated or deactivated, delete the cached extensions/plugins used by get_related_plugins_and_extensions() |
|
749
|
|
|
* |
|
750
|
|
|
* @see get_related_plugins_and_extensions() |
|
751
|
|
|
* @since 1.15 |
|
752
|
|
|
*/ |
|
753
|
1 |
|
public function flush_related_plugins_transient() { |
|
754
|
1 |
|
if ( function_exists( 'delete_site_transient' ) ) { |
|
755
|
1 |
|
delete_site_transient( self::related_plugins_key ); |
|
756
|
|
|
} |
|
757
|
1 |
|
} |
|
758
|
|
|
} |
|
759
|
|
|
|