-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcustomize-feed.php
417 lines (351 loc) · 12 KB
/
customize-feed.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
<?php
/**
* Customize the feed for a specific podcast. Insert the podcast data stored in term meta.
*
* @package tenup_podcasting
*/
namespace tenup_podcasting;
use function tenup_podcasting\transcripts\get_transcript_link_from_post;
/**
* Add an itunes podcasting header.
*/
function xmlns() {
echo "\n\t" . 'xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"' . "\n";
}
add_action( 'rss2_ns', __NAMESPACE__ . '\xmlns' );
/**
* Get the current term, verifying that is has a term_id.
*
* @return object WP_Term or false if not a term feed.
*/
function get_the_term() {
$queried_object = get_queried_object();
if ( ! $queried_object || ! $queried_object->term_id ) {
return false;
}
return $queried_object;
}
/**
* Adjust the title for podcasting feeds.
*
* @param string $output The feed title.
*
* @return string The adjusted feed title.
*/
function bloginfo_rss_name( $output ) {
$term = get_the_term();
if ( ! $term ) {
return $output;
}
$title = get_term_meta( $term->term_id, 'podcasting_title', true );
if ( empty( $title ) ) {
$title = get_bloginfo( 'name' );
$output = "$title » {$term->name}";
} else {
$output = $title;
}
return apply_filters( 'simple_podcasting_feed_title', $output, $term );
}
add_filter( 'wp_title_rss', __NAMESPACE__ . '\bloginfo_rss_name' );
// Don't show audio widgets in the feed.
add_filter( 'wp_audio_shortcode', '__return_empty_string', 999 );
/**
* Sets the podcast language and description in the feed to the values in the term edit screen.
*
* @param string $output The value being displayed.
* @param string $requested The item that was requested.
*
* @return mixed
*/
function bloginfo_rss( $output, $requested ) {
$term = get_the_term();
if ( ! $term ) {
return $output;
}
if ( 'language' === $requested ) {
$lang = get_term_meta( $term->term_id, 'podcasting_language', true );
if ( $lang ) {
$lang = str_replace( '_', '-', $lang );
$output = $lang;
}
}
if ( 'description' === $requested ) {
$summary = get_term_meta( $term->term_id, 'podcasting_summary', true );
if ( empty( $summary ) ) {
$summary = get_bloginfo( 'description' );
}
if ( ! empty( $summary ) ) {
$output = '<![CDATA[' . $summary . ']]>';
}
}
return $output;
}
add_filter( 'bloginfo_rss', __NAMESPACE__ . '\bloginfo_rss', 10, 2 );
/**
* Add podcasting details to the feed header.
*/
function feed_head() {
$term = get_the_term();
if ( ! $term ) {
return;
}
$subtitle = get_term_meta( $term->term_id, 'podcasting_subtitle', true );
if ( empty( $subtitle ) ) {
$subtitle = get_bloginfo( 'description' );
}
if ( ! empty( $subtitle ) ) {
echo '<itunes:subtitle>' . esc_html( wp_strip_all_tags( $subtitle ) ) . "</itunes:subtitle>\n";
}
$author = get_term_meta( $term->term_id, 'podcasting_talent_name', true );
if ( ! empty( $author ) ) {
echo '<itunes:author>' . esc_html( wp_strip_all_tags( $author ) ) . "</itunes:author>\n";
}
echo '<itunes:owner>';
if ( ! empty( $author ) ) {
echo '<itunes:name>' . esc_html( wp_strip_all_tags( $author ) ) . "</itunes:name>\n";
}
$podcasting_email = get_term_meta( $term->term_id, 'podcasting_email', true );
$email = ! empty( $podcasting_email ) ? $podcasting_email : get_bloginfo( 'admin_email' );
if ( ! empty( $email ) ) {
echo '<itunes:email>' . esc_html( wp_strip_all_tags( $email ) ) . "</itunes:email>\n";
}
echo '</itunes:owner>';
$copyright = get_term_meta( $term->term_id, 'podcasting_copyright', true );
if ( ! empty( $copyright ) ) {
echo '<copyright>' . esc_html( wp_strip_all_tags( $copyright ) ) . "</copyright>\n";
}
$explicit = get_term_meta( $term->term_id, 'podcasting_explicit', true );
echo '<itunes:explicit>';
if ( empty( $explicit ) ) {
echo 'no';
} else {
echo esc_html( $explicit );
}
echo "</itunes:explicit>\n";
$image = get_term_meta( $term->term_id, 'podcasting_image', true );
if ( ! empty( $image ) ) {
echo "<itunes:image href='" . esc_url( wp_get_attachment_url( $image ) ) . "' />\n";
}
$keywords = get_term_meta( $term->term_id, 'podcasting_keywords', true );
if ( ! empty( $keywords ) ) {
echo '<itunes:keywords>' . esc_html( $keywords ) . "</itunes:keywords>\n";
}
$type_of_show = get_term_meta( $term->term_id, 'podcasting_type_of_show', true );
if ( $type_of_show && '0' !== $type_of_show ) {
echo '<itunes:type>' . esc_html( $type_of_show ) . "</itunes:type>\n";
}
generate_categories();
}
add_action( 'rss2_head', __NAMESPACE__ . '\feed_head' );
/**
* Output the feed for a single podcast.
*/
function feed_item() {
global $post;
$term = get_the_term();
if ( ! $term ) {
return false;
}
$feed_item = array(
'author' => get_option( 'podcasting_talent_name' ),
'explicit' => get_post_meta( $post->ID, 'podcast_explicit', true ),
'captioned' => get_post_meta( $post->ID, 'podcast_captioned', true ),
'keywords' => '',
'image' => '',
'summary' => '',
'subtitle' => '',
'duration' => get_post_meta( $post->ID, 'podcast_duration', true ),
'season' => get_post_meta( $post->ID, 'podcast_season_number', true ),
'episode' => get_post_meta( $post->ID, 'podcast_episode_number', true ),
'episodeType' => get_post_meta( $post->ID, 'podcast_episode_type', true ),
'transcript' => get_post_meta( $post->ID, 'podcast_transcript', true ),
);
if ( empty( $feed_item['author'] ) ) {
$feed_item['author'] = get_the_author();
}
// fall back to the podcast setting.
if ( empty( $feed_item['explicit'] ) ) {
$feed_item['explicit'] = get_term_meta( $term->term_id, 'podcasting_explicit', true );
}
// "no" explicit by default
if ( empty( $feed_item['explicit'] ) ) {
$feed_item['explicit'] = 'no';
}
// Add the featured image if available.
if ( has_post_thumbnail( $post->ID ) ) {
$feed_item['image'] = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' );
if ( ! empty( $feed_item['image'] ) && is_array( $feed_item['image'] ) ) {
$feed_item['image'] = $feed_item['image'][0];
}
}
if ( has_excerpt() ) {
$feed_item['summary'] = get_the_excerpt();
} else {
$feed_item['summary'] = get_term_meta( $term->term_id, 'podcasting_summary', true );
}
$feed_item['summary'] = apply_filters( 'the_excerpt_rss', $feed_item['summary'] );
$feed_item['subtitle'] = wp_trim_words( $feed_item['summary'], 10, '…' );
/**
* Filter podcasting feed item data
*
* @since 1.3.0
*
* @param array $feed_item {
* Item data to filter.
*
* @type string $author Podcast author.
* @type string $explicit Explicit content (yes|no|clean).
* @type string $captioned Closed Captioned ("1"|"0"). Optional.
* @type string $keywords Episode keywords. Optional.
* @type string $image Episode image. Optional.
* @type string $summary Episode summary.
* @type string $subtitle Episode subtitle.
* @type string $duration Episode duration (HH:MM). Optional.
* @type string $season Season number Optional.
* @type string $episode Episode number Optional.
* @type string $episodeType Episode type Optional.
* }
* @param int $post->ID Podcast episode post ID.
* @param int $term->term_id Podcast term ID.
*/
$feed_item = apply_filters( 'simple_podcasting_feed_item', $feed_item, $post->ID, $term->term_id );
// Output enclosure if it's not present in the post
$enclosure = get_post_meta( $post->ID, 'enclosure', true );
if ( empty( $enclosure ) ) {
display_rss_enclosure( $post );
}
// Output all custom RSS tags.
echo '<itunes:author>' . esc_html( $feed_item['author'] ) . "</itunes:author>\n";
echo '<itunes:explicit>' . esc_html( $feed_item['explicit'] ) . "</itunes:explicit>\n";
if ( $feed_item['captioned'] ) {
echo "<itunes:isClosedCaptioned>Yes</itunes:isClosedCaptioned>\n";
}
if ( ! empty( $feed_item['image'] ) ) {
echo "<itunes:image href='" . esc_url( $feed_item['image'] ) . "' />\n";
}
if ( ! empty( $feed_item['keywords'] ) ) {
echo '<itunes:keywords>' . esc_html( $feed_item['keywords'] ) . "</itunes:keywords>\n";
}
echo '<itunes:subtitle>' . esc_html( $feed_item['subtitle'] ) . "</itunes:subtitle>\n";
if ( ! empty( $feed_item['duration'] ) ) {
echo '<itunes:duration>' . esc_html( $feed_item['duration'] ) . "</itunes:duration>\n";
}
if ( ! empty( $feed_item['season'] ) ) {
echo '<itunes:season>' . esc_html( $feed_item['season'] ) . "</itunes:season>\n";
}
if ( ! empty( $feed_item['episode'] ) ) {
echo '<itunes:episode>' . esc_html( $feed_item['episode'] ) . "</itunes:episode>\n";
}
if ( ! empty( $feed_item['episodeType'] ) && 'none' !== $feed_item['episodeType'] ) {
echo '<itunes:episodeType>' . esc_html( $feed_item['episodeType'] ) . "</itunes:episodeType>\n";
}
if ( ! empty( $feed_item['transcript'] ) && '' !== $feed_item['transcript'] ) {
echo '<podcast:transcript>' . esc_url( get_transcript_link_from_post( $post ) ) . "</podcast:transcript>\n";
}
}
add_action( 'rss2_item', __NAMESPACE__ . '\feed_item' );
/**
* Displays the enclosure feed for podcasts.
*
* @param WP_Post $post The post object.
*
* @return void
*/
function display_rss_enclosure( $post ) {
$podcast_url = get_post_meta( $post->ID, 'podcast_url', true );
$podcast_filesize = get_post_meta( $post->ID, 'podcast_filesize', true );
$podcast_mime = get_post_meta( $post->ID, 'podcast_mime', true );
if ( ! empty( $podcast_url ) ) {
$enclosure = "<enclosure url='" .
esc_url( str_replace( 'https://', 'http://', $podcast_url ) ) .
"' length='" .
esc_attr( $podcast_filesize ) .
"' type='" .
esc_attr( $podcast_mime ) .
"' />\n";
echo wp_kses(
$enclosure,
array(
'enclosure' => array(
'url' => array(),
'length' => array(),
'type' => array(),
),
)
);
}
}
/**
* Generate the category elements from the given option (e.g. podcasting_category_1).
*/
function generate_categories() {
$term = get_the_term();
if ( ! $term ) {
return false;
}
$categories[] = get_term_meta( $term->term_id, 'podcasting_category_1', true );
$categories[] = get_term_meta( $term->term_id, 'podcasting_category_2', true );
$categories[] = get_term_meta( $term->term_id, 'podcasting_category_3', true );
$categories = array_filter( $categories );
$reduced_categories = array();
foreach ( $categories as $category ) {
$category = explode( ':', $category );
if ( ! isset( $reduced_categories[ $category[0] ] ) ) {
$reduced_categories[ $category[0] ] = array();
}
if ( ! empty( $category[1] ) ) {
$reduced_categories[ $category[0] ][] = $category[1];
}
}
$categories = get_podcasting_categories();
foreach ( $reduced_categories as $parent => $subs ) {
if ( ! isset( $categories[ $parent ] ) ) {
continue;
}
if ( empty( $subs ) ) {
echo '<itunes:category text="' . esc_attr( $categories[ $parent ]['name'] ) . "\" />\n";
} else {
echo '<itunes:category text="' . esc_attr( $categories[ $parent ]['name'] ) . "\">\n";
foreach ( $subs as $sub ) {
if ( ! isset( $categories[ $parent ]['subcategories'][ $sub ] ) ) {
continue;
}
echo "\t<itunes:category text=\"" . esc_attr( $categories[ $parent ]['subcategories'][ $sub ] ) . "\" />\n";
}
echo "</itunes:category>\n";
}
}
}
/**
* Ensure the excerpt is actually used for the excerpt.
*
* @param string $output The excerpt.
*
* @return string The filtered excerpt.
*/
function empty_rss_excerpt( $output ) {
$excerpt = get_the_excerpt();
if ( empty( $excerpt ) ) {
return '';
}
return $output;
}
// Run it super late after any other filters may have inserted something.
add_filter( 'the_excerpt_rss', __NAMESPACE__ . '\empty_rss_excerpt', 1000 );
/**
* Filter the feed query.
* - Default items listed on the feed to 250.
*
* @param WP_Query $query The WP_Query instance.
* @return void
*/
function pre_get_posts( $query ) {
// do nothing if not the feed query.
if ( ! $query->is_feed() ) {
return;
}
$per_page = apply_filters( 'simple_podcasting_episodes_per_page', PODCASTING_ITEMS_PER_PAGE );
$query->set( 'posts_per_rss', $per_page );
}
// Filter the feed query.
add_action( 'pre_get_posts', __NAMESPACE__ . '\pre_get_posts', 10, 1 );