-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprli-main.php
361 lines (293 loc) · 12.9 KB
/
prli-main.php
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
<?php
// Let's give pretty link plenty of room to work with
$mem = abs(intval(@ini_get('memory_limit')));
if( $mem and $mem < 128 )
@ini_set('memory_limit', '128M');
add_action('admin_menu', 'prli_menu');
function prli_menu()
{
global $prli_options;
add_menu_page('Pretty Link', 'Pretty Link', 'administrator', PRLI_PATH.'/prli-links.php','',PRLI_IMAGES_URL.'/pretty-link-small.png');
add_submenu_page(PRLI_PATH.'/prli-links.php', 'Pretty Link | Add New Link', 'Add New Link', 'administrator', PRLI_PATH.'/prli-add-link.php');
add_submenu_page(PRLI_PATH.'/prli-links.php', 'Pretty Link | Groups', 'Groups', 'administrator', PRLI_PATH.'/prli-groups.php');
if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking != "count" )
add_submenu_page(PRLI_PATH.'/prli-links.php', 'Pretty Link | Hits', 'Hits', 'administrator', PRLI_PATH.'/prli-clicks.php');
add_submenu_page(PRLI_PATH.'/prli-links.php', 'Pretty Link | Tools', 'Tools', 'administrator', PRLI_PATH.'/prli-tools.php');
add_submenu_page(PRLI_PATH.'/prli-links.php', 'Pretty Link | Options', 'Options', 'administrator', PRLI_PATH.'/prli-options.php');
add_submenu_page(PRLI_PATH.'/prli-links.php', 'Pretty Link | Pretty Link Pro', 'Pretty Link Pro', 'administrator', PRLI_PATH.'/prli-pro-settings.php');
add_action('admin_head-pretty-link/prli-clicks.php', 'prli_reports_admin_header');
add_action('admin_head-pretty-link/prli-links.php', 'prli_links_admin_header');
add_action('admin_head-pretty-link/prli-add-link.php', 'prli_links_admin_header');
add_action('admin_head-pretty-link/prli-groups.php', 'prli_groups_admin_header');
add_action('admin_head-pretty-link/prli-options.php', 'prli_options_admin_header');
}
/* Add header to prli-options page */
function prli_options_admin_header()
{
require_once 'classes/views/prli-options/head.php';
}
/* Add header to prli-clicks page */
function prli_reports_admin_header()
{
// Don't show this sheesh if we're displaying the vuid or ip grouping
if(!isset($_GET['ip']) and !isset($_GET['vuid']))
{
global $prli_siteurl, $prli_click, $prli_utils;
$params = $prli_click->get_params_array();
$first_click = $prli_utils->getFirstClickDate();
// Adjust for the first click
if(isset($first_click))
{
$min_date = (int)((time()-$first_click)/60/60/24);
if($min_date < 30)
$start_timestamp = $prli_utils->get_start_date($params,$min_date);
else
$start_timestamp = $prli_utils->get_start_date($params,30);
$end_timestamp = $prli_utils->get_end_date($params);
}
else
{
$min_date = 0;
$start_timestamp = time();
$end_timestamp = time();
}
$link_id = $params['l'];
$type = $params['type'];
$group = $params['group'];
require_once 'classes/views/prli-clicks/head.php';
}
}
/* Add header to the prli-links page */
function prli_links_admin_header()
{
global $prli_siteurl;
require_once 'classes/views/prli-links/head.php';
}
/* Add header to the prli-links page */
function prli_groups_admin_header()
{
global $prli_siteurl;
require_once 'classes/views/prli-groups/head.php';
}
/********* ADD REDIRECTS FOR STANDARD MODE ***********/
function prli_redirect()
{
global $prli_link;
// Remove the trailing slash if there is one
$request_uri = preg_replace('#/$#','',urldecode($_SERVER['REQUEST_URI']));
if( $link_info =& $prli_link->is_pretty_link($request_uri,false) )
{
$params = (isset($link_info['pretty_link_params'])?$link_info['pretty_link_params']:'');
prli_link_redirect_from_slug( $link_info['pretty_link_found']->slug, $params );
}
}
// For use with the prli_redirect function
function prli_link_redirect_from_slug($slug,$param_str)
{
global $prli_link, $prli_utils;
$link =& $prli_link->getOneFromSlug(urldecode($slug));
if(isset($link->slug) and !empty($link->slug))
{
$custom_get = $_GET;
if(isset($link->param_forwarding) and $link->param_forwarding == 'custom')
$custom_get = $prli_utils->decode_custom_param_str($link->param_struct, $param_str);
$prli_utils->track_link($link->slug,$custom_get);
exit;
}
}
add_action('init', 'prli_redirect'); //Redirect
//add_action('template_redirect', 'prli_redirect',0); //Redirect
function prli_route_scripts()
{
if( isset($_GET['action']) and $_GET['action'] == 'prli_download_csv_hit_report' )
{
global $wpdb, $prli_click, $prli_group, $prli_link;
require_once( PRLI_PATH . "/prli-clicks.php" );
exit;
}
}
add_action('init', 'prli_route_scripts');
/********* DASHBOARD WIDGET ***********/
function prli_dashboard_widget_function() {
require_once 'prli-dashboard-widget.php';
}
// Create the function use in the action hook
function prli_add_dashboard_widgets() {
global $current_user;
get_currentuserinfo();
if($current_user->user_level >= 8)
{
wp_add_dashboard_widget('prli_dashboard_widget', 'Pretty Link Quick Add', 'prli_dashboard_widget_function');
// Globalize the metaboxes array, this holds all the widgets for wp-admin
global $wp_meta_boxes;
// Get the regular dashboard widgets array
$normal_dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
// Backup and delete our new dashbaord widget from the end of the array
$prli_widget_backup = array('prli_dashboard_widget' => $normal_dashboard['prli_dashboard_widget']);
unset($normal_dashboard['prli_dashboard_widget']);
// Merge the two arrays together so our widget is at the beginning
$i = 0;
foreach($normal_dashboard as $key => $value)
{
if($i == 1 or (count($normal_dashboard) <= 1 and $i == count($normal_dashboard) - 1))
$sorted_dashboard['prli_dashboard_widget'] = $prli_widget_backup['prli_dashboard_widget'];
$sorted_dashboard[$key] = $normal_dashboard[$key];
$i++;
}
// Save the sorted array back into the original metaboxes
$wp_meta_boxes['dashboard']['normal']['core'] = $sorted_dashboard;
}
}
// Hook into the 'wp_dashboard_setup' action to register our other functions
add_action('wp_dashboard_setup', 'prli_add_dashboard_widgets' );
/********* EXPORT PRETTY LINK API VIA XML-RPC ***********/
function prli_export_api($api_methods)
{
$api_methods['prli.create_pretty_link'] = 'prli_xmlrpc_create_pretty_link';
$api_methods['prli.get_all_groups'] = 'prli_xmlrpc_get_all_groups';
$api_methods['prli.get_all_links'] = 'prli_xmlrpc_get_all_links';
$api_methods['prli.get_link'] = 'prli_xmlrpc_get_link';
$api_methods['prli.get_link_from_slug'] = 'prli_xmlrpc_get_link_from_slug';
$api_methods['prli.get_pretty_link_url'] = 'prli_xmlrpc_get_pretty_link_url';
$api_methods['prli.api_version'] = 'prli_xmlrpc_api_version';
return $api_methods;
}
add_filter('xmlrpc_methods', 'prli_export_api');
/********* INSTALL PLUGIN ***********/
function prli_install()
{
global $wpdb, $prli_utils, $prli_update;
$db_version = 11; // this is the version of the database we're moving to
$old_db_version = get_option('prli_db_version');
$groups_table = $wpdb->prefix . "prli_groups";
$clicks_table = $wpdb->prefix . "prli_clicks";
$pretty_links_table = $wpdb->prefix . "prli_links";
$link_metas_table = $wpdb->prefix . "prli_link_metas";
$charset_collate = '';
if( $wpdb->has_cap( 'collation' ) )
{
if( !empty($wpdb->charset) )
$charset_collate = "DEFAULT CHARACTER SET $wpdb->charset";
if( !empty($wpdb->collate) )
$charset_collate .= " COLLATE $wpdb->collate";
}
if($db_version != $old_db_version)
{
$prli_utils->migrate_before_db_upgrade();
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
/* Create/Upgrade Clicks (Hits) Table */
$sql = "CREATE TABLE " . $clicks_table . " (
id int(11) NOT NULL auto_increment,
ip varchar(255) default NULL,
browser varchar(255) default NULL,
btype varchar(255) default NULL,
bversion varchar(255) default NULL,
os varchar(255) default NULL,
referer varchar(255) default NULL,
host varchar(255) default NULL,
uri varchar(255) default NULL,
robot tinyint default 0,
first_click tinyint default 0,
created_at datetime NOT NULL,
link_id int(11) default NULL,
vuid varchar(25) default NULL,
PRIMARY KEY (id),
KEY link_id (link_id),
KEY vuid (vuid)".
// We won't worry about this constraint for now.
//CONSTRAINT ".$clicks_table."_ibfk_1 FOREIGN KEY (link_id) REFERENCES $pretty_links_table (id)
") {$charset_collate};";
dbDelta($sql);
/* Create/Upgrade Pretty Links Table */
$sql = "CREATE TABLE " . $pretty_links_table . " (
id int(11) NOT NULL auto_increment,
name varchar(255) default NULL,
description text default NULL,
url text default NULL,
slug varchar(255) default NULL,
nofollow tinyint(1) default 0,
track_me tinyint(1) default 1,
param_forwarding varchar(255) default NULL,
param_struct varchar(255) default NULL,
redirect_type varchar(255) default '307',
created_at datetime NOT NULL,
group_id int(11) default NULL,
PRIMARY KEY (id),
KEY group_id (group_id),
KEY slug (slug)
) {$charset_collate};";
dbDelta($sql);
/* Create/Upgrade Groups Table */
$sql = "CREATE TABLE " . $groups_table . " (
id int(11) NOT NULL auto_increment,
name varchar(255) default NULL,
description text default NULL,
cmon_g varchar(255) default NULL,
created_at datetime NOT NULL,
PRIMARY KEY (id)
) {$charset_collate};";
dbDelta($sql);
/* Create/Upgrade Groups Table */
$sql = "CREATE TABLE {$link_metas_table} (
id int(11) NOT NULL auto_increment,
meta_key varchar(255) default NULL,
meta_value longtext default NULL,
link_id int(11) NOT NULL,
created_at datetime NOT NULL,
PRIMARY KEY (id),
KEY link_id (link_id)
) {$charset_collate};";
dbDelta($sql);
$prli_utils->migrate_after_db_upgrade();
}
// Install Pro DB if this user is authorized
if( $prli_update->pro_is_authorized() )
$prli_utils->install_pro_db();
// If there are any post metas with a post_id of 0 get rid of them...
$prli_utils->clear_unknown_post_metas();
/***** SAVE OPTIONS *****/
$prli_options = get_option('prli_options');
// If unserializing didn't work
if(!$prli_options)
$prli_options = new PrliOptions();
else
$prli_options->set_default_options(); // Sets defaults for unset options
update_option('prli_options',$prli_options);
/***** SAVE DB VERSION *****/
update_option('prli_db_version',$db_version);
}
// Ensure this gets called on first install
register_activation_hook(PRLI_PATH."/pretty-link.php",'prli_install');
add_action('after_plugin_row', 'prli_pro_action_needed');
add_action('admin_notices', 'prli_pro_get_started_headline');
function prli_pro_action_needed( $plugin )
{
global $prli_update;
if( $plugin == 'pretty-link/pretty-link.php' and
$prli_update->pro_is_authorized() and
!$prli_update->pro_is_installed() )
{
$prli_update->queue_update(true);
$inst_install_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=' . $plugin, 'upgrade-plugin_' . $plugin);
?>
<td colspan="3" class="plugin-update"><div class="update-message" style="-moz-border-radius-bottomleft:5px; -moz-border-radius-bottomright:5px; -moz-border-radius-topleft:5px; -moz-border-radius-topright:5px; border-style:solid; border-width:1px; margin:5px; background-color:#FFEBE8; border-color:#CC0000; padding:3px 5px;"><?php printf(__('Your Pretty Link Pro installation isn\'t quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Pretty Link Pro%2$s', 'pretty-link'), '<a href="'.$inst_install_url.'">', '</a>'); ?></div></td>
<?php
}
}
function prli_pro_get_started_headline()
{
global $prli_update;
// Don't display this error as we're upgrading the thing... cmon
if(isset($_GET['action']) and $_GET['action'] == 'upgrade-plugin')
return;
if( $prli_update->pro_is_authorized() and
!$prli_update->pro_is_installed())
{
$prli_update->queue_update(true);
$inst_install_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=' . $prli_update->plugin_name, 'upgrade-plugin_' . $prli_update->plugin_name);
?>
<div class="error" style="padding-top: 5px; padding-bottom: 5px;"><?php printf(__('Your Pretty Link Pro installation isn\'t quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Pretty Link Pro%2$s', 'pretty-link'), '<a href="'.$inst_install_url.'">','</a>'); ?></div>
<?php
}
}
?>