This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
commentpress-core.php
449 lines (272 loc) · 9.46 KB
/
commentpress-core.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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
<?php /*
--------------------------------------------------------------------------------
Plugin Name: CommentPress Core
Plugin URI: http://www.futureofthebook.org/commentpress/
Description: CommentPress allows readers to comment paragraph by paragraph in the margins of a text. You can use it to annotate, gloss, workshop, debate and more!
Author: Institute for the Future of the Book
Version: 3.4
Author URI: http://www.futureofthebook.org
--------------------------------------------------------------------------------
Special thanks to:
Eddie Tejeda @ http://www.visudo.com for Commentpress 2.0
Mark James for the icons: http://www.famfamfam.com/lab/icons/silk/
--------------------------------------------------------------------------------
*/
// -----------------------------------------------------------------------------
// No need to edit below this line
// -----------------------------------------------------------------------------
// set version
define( 'COMMENTPRESS_VERSION', '3.4' );
// store reference to this file
if ( !defined( 'COMMENTPRESS_PLUGIN_FILE' ) ) {
define( 'COMMENTPRESS_PLUGIN_FILE', __FILE__ );
}
// store URL to this plugin's directory
if ( !defined( 'COMMENTPRESS_PLUGIN_URL' ) ) {
define( 'COMMENTPRESS_PLUGIN_URL', plugin_dir_url( COMMENTPRESS_PLUGIN_FILE ) );
}
// store PATH to this plugin's directory
if ( !defined( 'COMMENTPRESS_PLUGIN_PATH' ) ) {
define( 'COMMENTPRESS_PLUGIN_PATH', plugin_dir_path( COMMENTPRESS_PLUGIN_FILE ) );
}
/*
--------------------------------------------------------------------------------
Begin by establishing Plugin Context
--------------------------------------------------------------------------------
NOTE: force-activated context is now deprecated
--------------------------------------------------------------------------------
*/
// test for multisite location
if ( basename( dirname( COMMENTPRESS_PLUGIN_FILE ) ) == 'mu-plugins' ) {
// directory-based forced activation
if ( !defined( 'COMMENTPRESS_PLUGIN_CONTEXT' ) ) {
define( 'COMMENTPRESS_PLUGIN_CONTEXT', 'mu_forced' );
}
// test for multisite
} elseif ( is_multisite() ) {
// check if our plugin is one of those activated sitewide
$this_plugin = plugin_basename( COMMENTPRESS_PLUGIN_FILE );
// unfortunately, is_plugin_active_for_network() is not yet available so
// we have to do this manually...
// get sitewide plugins
$active_plugins = (array) get_site_option( 'active_sitewide_plugins' );
// is the plugin network activated?
if ( isset( $active_plugins[ $this_plugin ] ) ) {
// yes, network activated
if ( !defined( 'COMMENTPRESS_PLUGIN_CONTEXT' ) ) {
define( 'COMMENTPRESS_PLUGIN_CONTEXT', 'mu_sitewide' );
}
} else {
// optional activation per blog in multisite
if ( !defined( 'COMMENTPRESS_PLUGIN_CONTEXT' ) ) {
define( 'COMMENTPRESS_PLUGIN_CONTEXT', 'mu_optional' );
}
}
} else {
// single user install
if ( !defined( 'COMMENTPRESS_PLUGIN_CONTEXT' ) ) {
define( 'COMMENTPRESS_PLUGIN_CONTEXT', 'standard' );
}
}
//print_r( COMMENTPRESS_PLUGIN_CONTEXT ); die();
/*
--------------------------------------------------------------------------------
Misc Utility Functions
--------------------------------------------------------------------------------
*/
/**
* @description: utility to check for presence of vital files
* @param string $filename the name of the CommentPress Core Plugin file
* @return string $filepath absolute path to file
* @todo:
*
*/
function commentpress_file_is_present( $filename ) {
// define path to our requested file
$filepath = COMMENTPRESS_PLUGIN_PATH . $filename;
// is our class definition present?
if ( !is_file( $filepath ) ) {
// oh no!
die( 'CommentPress Core Error: file "'.$filepath.'" is missing from the plugin directory.' );
}
// --<
return $filepath;
}
/**
* @description: utility to include the core plugin
* @todo:
*
*/
function commentpress_include_core() {
// do we have our class?
if ( !class_exists( 'CommentpressCore' ) ) {
// define filename
$_file = 'commentpress-core/class_commentpress.php';
// get path
$_file_path = commentpress_file_is_present( $_file );
// we're fine, include class definition
require_once( $_file_path );
}
}
/**
* @description: utility to activate the core plugin
* @todo:
*
*/
function commentpress_activate_core() {
// declare as global
global $commentpress_core;
// do we have it already?
if ( is_null( $commentpress_core ) ) {
// instantiate it
$commentpress_core = new CommentpressCore;
}
}
/**
* @description: utility to activate the ajax plugin
* @todo:
*
*/
function commentpress_activate_ajax() {
// define filename
$_file = 'commentpress-ajax/cp-ajax-comments.php';
// get path
$_file_path = commentpress_file_is_present( $_file );
// we're fine, include ajax file
require_once( $_file_path );
}
/**
* shortcut for debugging
*/
function _cpdie( $var ) {
print '<pre>';
print_r( $var );
print '</pre>';
die();
}
/**
* @description: utility to add link to settings page
* @todo:
*
*/
function commentpress_plugin_action_links( $links, $file ) {
// add settings link
if ( $file == plugin_basename( dirname( __FILE__ ).'/commentpress-core.php' ) ) {
$links[] = '<a href="options-general.php?page=commentpress_admin">'.__( 'Settings', 'commentpress-plugin' ).'</a>';
}
// --<
return $links;
}
// add filter for the above
add_filter( 'plugin_action_links', 'commentpress_plugin_action_links', 10, 2 );
/**
* @description: get WP plugin reference by name (since we never know for sure what the enclosing
* directory is called)
* @todo:
*
*/
function commentpress_find_plugin_by_name( $plugin_name = '' ) {
// kick out if no param supplied
if ( $plugin_name == '' ) { return false; }
// init path
$path_to_plugin = false;
// get plugins
$plugins = get_plugins();
//print_r( $plugins ); die();
// because the key is the path to the plugin file, we have to find the
// key by iterating over the values (which are arrays) to find the
// plugin with the name we want. Doh!
foreach( $plugins AS $key => $plugin ) {
// is it ours?
if ( $plugin['Name'] == $plugin_name ) {
// now get the key, which is our path
$path_to_plugin = $key;
break;
}
}
// --<
return $path_to_plugin;
}
/**
* @description: test if the old pre-3.4 Commentpress plugin is active
* @todo:
*
*/
function commentpress_is_legacy_plugin_active() {
// assume not
$active = false;
// get old options
$old = get_option( 'cp_options', array() );
// test if we have a existing pre-3.4 Commentpress instance
if ( is_array( $old ) AND count( $old ) > 0 ) {
// if we have "special pages", then the plugin must be active on this blog
// NB: do we need to check is_plugin_active() as well (or instead)?
if ( isset( $old[ 'cp_special_pages' ] ) ) {
// set flag
$active = true;
}
}
// --<
return $active;
}
/*
--------------------------------------------------------------------------------
NOTE: in multisite, child themes are registered as broken if the plugin is not
network-enabled. Make sure child themes have instructions.
--------------------------------------------------------------------------------
There are further complex issues when in Multisite:
First scenario:
* if the plugin is NOT initially network-enabled
* but it IS enabled on one or more blogs on the network
* and the plugin in THEN network-enabled
Second scenario:
* if the plugin IS initially network-enabled
* and it IS activated on one or more blogs on the network
* and the plugin in THEN network-disabled
If installs stick to one or the other, then all works as expected.
--------------------------------------------------------------------------------
*/
// register our themes directory
register_theme_directory( plugin_dir_path( COMMENTPRESS_PLUGIN_FILE ) . 'themes' );
/*
--------------------------------------------------------------------------------
Include Standalone
--------------------------------------------------------------------------------
*/
commentpress_include_core();
/*
--------------------------------------------------------------------------------
Init Standalone
--------------------------------------------------------------------------------
*/
// only activate if in standard or mu_optional context
if ( COMMENTPRESS_PLUGIN_CONTEXT == 'standard' OR COMMENTPRESS_PLUGIN_CONTEXT == 'mu_optional' ) {
// CommentPress Core
commentpress_activate_core();
// access global
global $commentpress_core;
//print_r( $commentpress_core ); die();
// activation
register_activation_hook( COMMENTPRESS_PLUGIN_FILE, array( $commentpress_core, 'activate' ) );
// deactivation
register_deactivation_hook( COMMENTPRESS_PLUGIN_FILE, array( $commentpress_core, 'deactivate' ) );
// uninstall uses the 'uninstall.php' method
// see: http://codex.wordpress.org/Function_Reference/register_uninstall_hook
// AJAX Commenting
commentpress_activate_ajax();
}
/*
--------------------------------------------------------------------------------
Init Multisite
--------------------------------------------------------------------------------
*/
// have we activated network-wide?
if ( COMMENTPRESS_PLUGIN_CONTEXT == 'mu_sitewide' ) {
// activate multisite plugin
// define filename
$_file = 'commentpress-multisite/commentpress-mu.php';
// get path
$_file_path = commentpress_file_is_present( $_file );
// we're fine, include class definition
require_once( $_file_path );
}