forked from bpiwowar/papercite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
papercite.php
executable file
·493 lines (391 loc) · 14.3 KB
/
papercite.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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
<?php
/*
Plugin Name: papercite
Plugin URI: http://www.bpiwowar.net/papercite
Description: papercite enables to add BibTeX entries formatted as HTML in wordpress pages and posts. The input data is the bibtex text file and the output is HTML.
Version: 0.3.1
Author: Benjamin Piwowarski
Author URI: http://www.bpiwowar.net
*/
/* Copyright 2010 Benjamin Piwowarski (email: benjamin in the domain bpiwowar <DOT> net)
Contributors:
- Stefan Aiche: group by year option
- Łukasz Radliński: bug fixes & handling polish characters
Sergio Andreozzi has written bib2html on which papercite is based
Contributors (bib2html):
- Cristiana Bolchini: cleaner bibtex presentation
- Patrick Maué: remote bibliographies managed by citeulike.org or bibsonomy.org
- Nemo: more characters on key
- Marco Loregian: inverting bibtex and html
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Options
include("papercite_options.php");
class Papercite {
static $option_names = array("format", "timeout", "file", "bibshow_template", "bibtex_template");
var $parse = false;
// List of publications for those citations
var $bibshows = array();
// Our caches (bibtex files and formats)
var $cache = array();
// Array of arrays of current citations
var $cites = array();
// Global replacements for cited keys
var $keys = array();
var $keyValues = array();
// bibshow options stack
var $bibshow_options = array();
var $bibshow_tpl_options = array();
// Global counter for unique references of each
// displayed citation (used by bibshow)
var $citesCounter = 0;
// Global counter for unique reference of each
// displayed citation
var $counter = 0;
/** Returns filename of cached version of given url
* @param url The URL
* @param timeout The timeout of the cache
*/
function getCached($url, $timeout = 3600) {
// check if cached file exists
$name = strtolower(preg_replace("@[/:]@","_",$url));
$dir = dirname(__FILE__) . "/cache";
$file = "$dir/$name.bib";
// check if file date exceeds 60 minutes
if (! (file_exists($file) && (filemtime($file) + $timeout > time()))) {
// not returned yet, grab new version
// since wordpress 2.7, we can use the wp_remote_get function
if (function_exists("wp_remote_get")) {
$body = wp_remote_retrieve_body(wp_remote_get($url));
if ($body) {
$f=fopen($file,"wb");
fwrite($f,$body);
fclose($f);
} else return NULL;
}
else {
$f=fopen($file,"wb");
fwrite($f,file_get_contents($url));
fclose($f);
}
if (!$f) echo "Failed to write file " . $file . " - check directory permission according to your Web server privileges.";
}
return $file;
}
/**
* Init is called before the first callback
*/
function init() {
}
/**
* Check the different paths where papercite data can be stored
* and return the first match, starting by the preferred ones
* @return either false (no match), or an array with the full
* path and the URL
*/
static function getDataFile($relfile) {
global $wpdb;
// Multi-site case
if (is_multisite()) {
$subpath = '/blogs.dir/'. $wpdb->blogid . "/files/papercite-data/$relfile";
$path = WP_CONTENT_DIR . $subpath;
if (file_exists($path))
return array($path, WP_CONTENT_URL.$subpath);
}
if (file_exists(WP_CONTENT_DIR . "/papercite-data/$relfile"))
return array(WP_CONTENT_DIR . "/papercite-data/$relfile", WP_CONTENT_URL . "/papercite-data/$relfile");
if (file_exists(WP_PLUGIN_DIR . "/papercite/$relfile"))
return array(WP_PLUGIN_DIR . "/papercite/$relfile", WP_PLUGIN_URL . "/papercite/$relfile");
}
/**
* Check if a matching file exists, and add it to the bibtex if so
* @param The key
* @param
*/
function checkFiles(&$entry, $types) {
$id = strtolower(preg_replace("@[/:]@", "-", $entry["cite"]));
foreach($types as &$type) {
$file = papercite::getDataFile("$type[0]/$id.$type[1]");
if ($file) {
$entry[$type[0]] = $file[1];
}
}
}
/**
* Get the bibtex data from an URI
*/
function getData($biburi) {
// (1) get the context
if (!$this->cache[$biburi]) {
if (strpos($biburi, "http://") === 0)
$bibFile = $this->getCached($biburi);
else {
$bibFile = $this->getDataFile("bib/$biburi");
}
if (!$bibFile || !file_exists($bibFile[0])) {
return NULL;
}
$bibFile = $bibFile[0];
// (2) Parse the BibTeX
if (file_exists($bibFile)) {
$data = file_get_contents($bibFile);
if (!empty($data)) {
$this->_parser = new Structures_BibTex(array('removeCurlyBraces' => true, 'extractAuthors' => true));
$this->_parser->loadString($data);
$stat = $this->_parser->parse();
if ( !$stat ) {
return $stat;
}
$this->cache[$biburi] = $this->_parser->data;
}
}
// --- Add custom fields
foreach($this->cache[$biburi] as &$entry) {
$this->checkFiles($entry, array(array("pdf", "pdf")));
$entry['firstauthor'] = $entry['author'][0];
}
// print_r($this->cache[$biburi]);
}
return $this->cache[$biburi];
}
/**
* Main entry point: Handles a match in the post
*/
function process(&$matches) {
$debug = false;
// --- Initialisation ---
// Includes once
include_once("bib2tpl/bibtex_converter.php");
// Get the options
$command = $matches[1];
// Get all the options pairs and store them
// in the $options array
$options_pairs = array();
preg_match_all("/\s*(?:([\w-_]+)=(\S+))(\s+|$)/", $matches[2], $options_pairs, PREG_SET_ORDER);
// Set preferences, by order of increasing priority
// (0) Set in
// (1) From the preferences
// (2) From the custom fields
// (3) From the general options
$options = array("format" => "ieee", "group" => "none", "order" => "desc", "sort" => "none", "key_format" => "numeric",
"bibtex_template" => "default-bibtex", "bibshow_template" => "default-bibshow");
if ($command == "bibtex")
$options["sort"] = "year";
// Get general preferences
if (!$this->pOptions)
$this->pOptions = &get_option('papercite_options');
foreach(self::$option_names as &$name) {
if ($this->pOptions)
if (array_key_exists($name, $this->pOptions) && sizeof($this->pOptions[$name]) > 0) {
$options[$name] = $this->pOptions[$name];
}
$custom_field = get_post_custom_values("papercite_$name");
if (sizeof($custom_field) > 0)
$options[$name] = $custom_field[0];
}
// Gets the options from the command
foreach($options_pairs as $x) {
if ($x[1] == "template") {
// Special case of template: should overwrite the corresponding command template
$options["${command}_$x[1]"] = $x[2];
} else
$options[$x[1]] = $x[2];
}
// --- Compatibility issues
if (array_key_exists("groupByYear", $options) && (strtoupper($options["groupByYear"]) == "TRUE")) {
$options["group"] = "year";
$options["group_order"] = "desc";
}
$tplOptions = array(
"anonymous-whole" => true, // for compatibility in the output
"group" => $options["group"], "group-order" => $options["group_order"],
"sort" => $options["sort"], "order" => $options["order"],
"key_format" => $options["key_format"]);
$data = null;
// --- Process the commands ---
switch($command) {
/*
"bibtext" command
*/
case "bibtex":
// --- Filter the data
$entries = $this->getData($options["file"]);
if (!$entries) return "<span style='color: red'>[Could not find the bibliography file(s)]</span>";
if (array_key_exists('key', $options)) {
// Select only specified entries
$keys = split(",", $options["key"]);
$a = array();
$n = 0;
foreach($entries as $entry) {
if (in_array($entry["cite"], $keys)) {
$a[] = $entry;
$n = $n + 1;
// We found everything, early break
if ($n == sizeof($keys)) break;
}
}
$entries = $a;
} else {
// Based on the entry types
$allow = $options["allow"];
$deny = $options["deny"];
if ($allow || $deny) {
$allow = $allow ? split(",",$allow) : false;
$deny = $deny ? split(",", $deny) : false;
$entries2 = $entries;
$entries = array();
foreach($entries2 as &$entry) {
$t = $entry["entrytype"];
if ((!$allow || in_array($t, $allow)) && (!$deny || !in_array($t, $deny))) {
$entries[] = $entry;
}
}
}
}
return $this->showEntries($entries, $tplOptions, false, $this->getTemplate($options["bibtex_template"], $options["format"]));
/*
bibshow / bibcite commands
*/
case "bibshow":
$data = $this->getData($options["file"]);
if (!$data) return "<span style='color: red'>[Could not find the bibliography file(s)]</span>";
$refs = array();
foreach($data as &$entry) {
$key = $entry["cite"];
$refs[$key] = &$entry;
}
$this->bibshow_tpl_options[] = $tplOptions;
$this->bibshow_options[] = $options;
array_push($this->bibshows, &$refs);
$this->cites[] = array();
break;
// Just cite
case "bibcite":
if (sizeof($this->bibshows) == 0)
return "[<span title=\"Unkown reference: $key\">?</span>]";
$key = $options["key"];
$refs = &$this->bibshows[sizeof($this->bibshows)-1];
$cites = &$this->cites[sizeof($this->cites)-1];
// First, get the corresponding entry
if (array_key_exists($key, $refs)) {
$num = $cites[$key];
// Did we already cite this?
if (!$num) {
// no, register this
$id = "BIBCITE%%%" . $this->citesCounter;
$this->citesCounter++;
$num = sizeof($cites);
$cites[$key] = array($num, $id);
}
return "[$id]";
}
return "[<span title=\"Unkown reference: $key\">?</span>]";
case "/bibshow":
// select from cites
if (sizeof($this->bibshows) == 0) return "";
// Remove the array from the stack
$data = &array_pop($this->bibshows);
$cites = &array_pop($this->cites);
$tplOptions = &array_pop($this->bibshow_tpl_options);
$options = &array_pop($this->bibshow_options);
$refs = array();
// Order the citations according to citation order
// (might be re-ordered latter)
foreach($data as $key => &$entry) {
$num = $cites[$key];
if ($num) {
$refs[$num[0]] = $entry;
$refs[$num[0]]["pKey"] = $num[1];
}
}
return $this->showEntries($refs, $tplOptions, true, $this->getTemplate($options["bibshow_template"], $options["format"]));
default:
return "[error in papercite: unhandled]";
}
}
function &getTemplate($mainTpl, $formatTpl) {
$mainFile = papercite::getDataFile("/tpl/$mainTpl.tpl");
$formatFile = papercite::getDataFile("/format/$formatTpl.tpl");
$main = file_get_contents($mainFile[0]);
$format = file_get_contents($formatFile[0]);
$template = str_replace("@#entry@", $format, $main);
return $template;
}
/**
* Show a set of entries
* @param refs An array of references
* @param options The options to pass to bib2tpl
* @param getKeys Keep track of the keys for a final substitution
*/
function showEntries(&$refs, &$options, $getKeys, &$template) {
$bib2tpl = new BibtexConverter($options);
$bib2tpl->setGlobal("WP_PLUGIN_URL", WP_PLUGIN_URL);
foreach($refs as &$entry)
$entry["papercite_id"] = $this->counter++;
$r = $bib2tpl->display($refs, $template);
if ($getKeys) {
foreach($refs as &$group)
foreach($group as &$ref) {
$this->keys[] = $ref["pKey"];
$this->keyValues[] = $ref["key"];
}
}
// Return, removing newlines
// return "<div style='color: blue'>". print_r($options, true) . "</div>" . str_replace("\n", " ", $r["text"]);
return str_replace("\n", " ", $r["text"]);
}
}
// -------------------- Interface with WordPress
// --- Head of the HTML ----
function papercite_head() {
if (!function_exists('wp_enqueue_script')) {
// In case there is no wp_enqueue_script function (WP < 2.6), we load the javascript ourselves
echo "\n" . '<script src="'. get_bloginfo('wpurl') . '/wp-content/plugins/papercite/js/jquery.js" type="text/javascript"></script>' . "\n";
echo '<script src="'. get_bloginfo('wpurl') . '/wp-content/plugins/papercite/js/papercite.js" type="text/javascript"></script>' . "\n";
}
}
// --- Initialise papercite ---
function papercite_init() {
global $papercite;
if (function_exists('wp_enqueue_script')) {
wp_register_script('papercite', get_bloginfo('wpurl') . '/wp-content/plugins/papercite/js/papercite.js', array('jquery'));
wp_enqueue_script('papercite');
}
// Register and enqueue the stylesheet
wp_register_style('papercite_css', WP_PLUGIN_URL . '/papercite/papercite.css' );
wp_enqueue_style('papercite_css');
$papercite = new Papercite();
}
// --- Callback function ----
function papercite_cb($myContent) {
// Init
$papercite = &$GLOBALS["papercite"];
$papercite->init();
// (1) First phase - handles everything but bibcite keys
$text = preg_replace_callback("/\[\s*((?:\/)bibshow|bibshow|bibcite|bibtex)(?:\s+([^[]+))?]/",
array($papercite, "process"), $myContent);
// (2) Handles custom keys in bibshow and return
return str_replace($papercite->keys, $papercite->keyValues, $text);
}
function papercite_row_cb($data, $file) {
if ($file == "papercite/papercite.php") {
$data[] = "<a href='" . WP_PLUGIN_URL . "/papercite/documentation/index.html'>Documentation</a>";
}
return $data;
}
// --- Add the different handlers to WordPress ---
add_action('init', 'papercite_init');
add_action('wp_head', 'papercite_head');
add_filter('the_content', 'papercite_cb',1);
add_filter('plugin_row_meta', 'papercite_row_cb',1,2);
?>