forked from radgeek/feedwordpress
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsyndicationdataqueries.class.php
138 lines (116 loc) · 4.2 KB
/
syndicationdataqueries.class.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
<?php
define('FEEDWORDPRESS_OPTIMIZE_IN_CLAUSES', get_option('feedwordpress_optimize_in_clauses', false));
class SyndicationDataQueries {
function SyndicationDataQueries () {
add_action('init', array($this, 'init'));
add_filter('query', array($this, 'optimize_in_clauses'));
add_action('parse_query', array($this, 'parse_query'), 10, 1);
add_filter('posts_search', array($this, 'posts_search'), 10, 2);
add_filter('posts_where', array($this, 'posts_where'), 10, 2);
add_filter('posts_fields', array($this, 'posts_fields'), 10, 2);
add_filter('posts_request', array($this, 'posts_request'), 10, 2);
}
function init () {
global $wp;
$wp->add_query_var('guid');
}
function optimize_in_clauses ($q) {
// This is kind of a dicey, low-level thing to do, and Christ,
// this is something WordPress should be doing on its own,
// so it's disabled by default. But you can enable it in
// Performance --> Optimize IN clauses
if (FEEDWORDPRESS_OPTIMIZE_IN_CLAUSES) :
if (preg_match_all('/ \s+ IN \s* \((\s*([0-9]+)\s*)\)/x', $q, $r, PREG_OFFSET_CAPTURE)) :
$from = 0; $nq = '';
foreach ($r[0] as $idx => $ref) :
$len = $ref[1] - $from;
$nq .= substr($q, $from, $len);
$nq .= ' = ' . $r[1][$idx][0];
$from = $ref[1] + strlen($ref[0]);
endforeach;
$q = $nq;
endif;
endif;
return $q;
}
function parse_query (&$q) {
if ($q->get('guid')) :
$q->is_single = false; // Causes nasty side-effects.
$q->is_singular = true; // Doesn't?
endif;
$ff = $q->get('fields');
if ($ff == '_synfresh' or $ff == '_synfrom') :
$q->query_vars['cache_results'] = false; // Not suitable.
endif;
} /* SyndicationDataQueries::parse_query () */
function pre_get_posts (&$q) {
//
}
function posts_request ($sql, &$query) {
if ($query->get('fields') == '_synfresh') :
FeedWordPress::diagnostic('feed_items:freshness:sql', "SQL: ".$sql);
endif;
return $sql;
}
function posts_search ($search, &$query) {
global $wpdb;
if ($guid = $query->get('guid')) :
if (strlen(trim($guid)) > 0) :
$seek = array($guid);
// MD5 hashes
if (preg_match('/^[0-9a-f]{32}$/i', $guid)) :
$seek[] = SyndicatedPost::normalize_guid_prefix().$guid;
endif;
// Invalid URIs, URIs that WordPress just doesn't like, and URIs
// that WordPress decides to munge.
$nGuid = SyndicatedPost::normalize_guid($guid);
if ($guid != $nGuid) :
$seek[] = $nGuid;
endif;
// Escape to prevent frak-ups, injections, etc.
$seek = array_map('esc_sql', $seek);
// Assemble
$guidMatch = "(guid = '".implode("') OR (guid = '", $seek)."')";
$search .= " AND ($guidMatch)";
endif;
endif;
if ($query->get('fields')=='_synfresh') :
// Ugly hack to ensure we ONLY check by guid in syndicated freshness
// checks -- for reasons of both performance and correctness. Pitch:
$search .= " -- '";
elseif ($query->get('fields')=='_synfrom') :
$search .= " AND ({$wpdb->postmeta}.meta_key = '".$query->get('meta_key')."' AND wp_postmeta.meta_value = '".$query->get('meta_value')."') -- '";
endif;
return $search;
} /* SyndicationDataQueries::posts_search () */
function posts_where ($where, &$q) {
global $wpdb;
// Ugly hack to ensure we ONLY check by guid in syndicated freshness
// checks -- for reasons of both performance and correctness. Catch:
if (strpos($where, " -- '") !== false) :
$bits = explode(" -- '", $where, 2);
$where = $bits[0];
endif;
if ($psn = $q->get('post_status__not')) :
$where .= " AND ({$wpdb->posts}.post_status <> '".$wpdb->escape($psn)."')";
endif;
return $where;
} /* SyndicationDataQueries::post_where () */
function posts_fields ($fields, &$query) {
global $wpdb;
if ($f = $query->get('fields')) :
switch ($f) :
case '_synfresh' :
$fields = "{$wpdb->posts}.ID, {$wpdb->posts}.guid, {$wpdb->posts}.post_modified_gmt, {$wpdb->posts}.post_name";
break;
case '_synfrom' :
$fields = "{$wpdb->posts}.ID, {$wpdb->posts}.guid, {$wpdb->posts}.post_title, {$wpdb->postmeta}.meta_value";
break;
default :
// Do nothing.
endswitch;
endif;
return $fields;
} /* SyndicationDataQueries::posts_fields () */
}
$SDQ = new SyndicationDataQueries;