This repository has been archived by the owner on Mar 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
NPRAPIWordpress.php
666 lines (611 loc) · 30.5 KB
/
NPRAPIWordpress.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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
<?php
/**
* @file
*
* Defines a class for NPRML creation/transmission and retrieval/parsing
* Unlike NPRAPI class, NPRAPIDrupal is drupal-specific
*/
require_once( dirname( __FILE__ ) . '/NPRAPI.php' );
require_once( dirname( __FILE__ ) . '/nprml.php' );
/**
* Class NPRAPIWordpress
*/
class NPRAPIWordpress extends NPRAPI {
/**
* Makes HTTP request to NPR API.
*
* @param array $params
* Key/value pairs to be sent (within the request's query string).
*
*
* @param string $path
* The path part of the request URL (i.e., https://example.com/PATH).
*
* @param string $base
* The base URL of the request (i.e., HTTP://EXAMPLE.COM/path) with no trailing slash.
*/
function request( $params = array(), $path = 'query', $base = self::NPRAPI_PULL_URL ) {
$this->request->params = $params;
$this->request->path = $path;
$this->request->base = $base;
$queries = array();
foreach ( $this->request->params as $k => $v ) {
$queries[] = "$k=$v";
}
$request_url = $this->request->base . '/' . $this->request->path . '?' . implode('&', $queries);
$this->request->request_url = $request_url;
$this->query_by_url($request_url);
}
/**
*
* Query a single url. If there is not an API Key in the query string, append one, but otherwise just do a straight query
*
* @param string $url -- the full url to query.
*/
function query_by_url( $url ) {
//check to see if the API key is included, if not, add the one from the options
if ( ! stristr( $url, 'apiKey=' ) ) {
$url .= '&apiKey='. get_option( 'ds_npr_api_key' );
}
$this->request->request_url = $url;
//fill out the $this->request->param array so we can know what params were sent
$parsed_url = parse_url( $url );
if ( ! empty( $parsed_url['query'] ) ) {
$params = explode( '&', $parsed_url['query'] );
if ( ! empty( $params ) ){
foreach ( $params as $p ){
$attrs = explode( '=', $p );
$this->request->param[$attrs[0]] = $attrs[1];
}
}
}
$response = wp_remote_get( $url );
if ( !is_wp_error( $response ) ) {
$this->response = $response;
if ( $response['response']['code'] == self::NPRAPI_STATUS_OK ) {
if ( $response['body'] ) {
$this->xml = $response['body'];
} else {
$this->notice[] = __( 'No data available.' );
}
} else {
nprstory_show_message( 'An error occurred pulling your story from the NPR API. The API responded with message =' . $response['response']['message'], TRUE );
}
} else {
$error_text = '';
if ( ! empty( $response->errors['http_request_failed'][0] ) ) {
$error_text = '<br> HTTP Error response = '. $response->errors['http_request_failed'][0];
}
nprstory_show_message( 'Error pulling story for url='.$url . $error_text, TRUE );
nprstory_error_log( 'Error retrieving story for url='.$url );
}
}
/**
*
* This function will go through the list of stories in the object and check to see if there are updates
* available from the NPR API if the pubDate on the API is after the pubDate originally stored locally.
*
* @param bool $publish
* @return int|null $post_id or null
*/
function update_posts_from_stories( $publish = TRUE, $qnum = false ) {
$pull_post_type = get_option( 'ds_npr_pull_post_type' );
if ( empty( $pull_post_type ) ) {
$pull_post_type = 'post';
}
$post_id = null;
if ( ! empty( $this->stories ) ) {
$single_story = TRUE;
if ( sizeof( $this->stories ) > 1) {
$single_story = FALSE;
}
foreach ( $this->stories as $story ) {
$exists = new WP_Query(
array( 'meta_key' => NPR_STORY_ID_META_KEY,
'meta_value' => $story->id,
'post_type' => $pull_post_type,
'post_status' => 'any'
)
);
//set the mod_date and pub_date to now so that for a new story we will fail the test below and do the update
$post_mod_date = strtotime(date('Y-m-d H:i:s'));
$post_pub_date = $post_mod_date;
if ( $exists->found_posts ) {
$existing = $exists->post;
$post_id = $existing->ID;
$existing_status = $exists->posts[0]->post_status;
$post_mod_date_meta = get_post_meta( $existing->ID, NPR_LAST_MODIFIED_DATE_KEY );
if ( ! empty( $post_mod_date_meta[0] ) ) {
$post_mod_date = strtotime( $post_mod_date_meta[0] );
}
$post_pub_date_meta = get_post_meta( $existing->ID, NPR_PUB_DATE_META_KEY );
if ( ! empty( $post_pub_date_meta[0] ) ) {
$post_pub_date = strtotime($post_pub_date_meta[0]);
}
} else {
$existing = $existing_status = null;
}
//add the transcript
$story->body .= $this->get_transcript_body($story);
$story_date = new DateTime($story->storyDate->value);
$post_date = $story_date->format('Y-m-d H:i:s');
//set the story as draft, so we don't try ingesting it
$args = array(
'post_title' => $story->title,
'post_excerpt' => $story->teaser,
'post_content' => $story->body,
'post_status' => 'draft',
'post_type' => $pull_post_type,
'post_date' => $post_date,
);
if( false !== $qnum ) {
$args['tags_input'] = get_option('ds_npr_query_tags_'.$qnum);
}
//check the last modified date and pub date (sometimes the API just updates the pub date), if the story hasn't changed, just go on
if ( $post_mod_date != strtotime( $story->lastModifiedDate->value ) || $post_pub_date != strtotime( $story->pubDate->value ) ) {
$by_line = '';
$byline_link = '';
$multi_by_line = '';
//continue to save single byline into npr_byline as is, but also set multi to false
if ( isset( $story->byline->name->value ) ) { //fails if there are multiple bylines or no bylines
$by_line = $story->byline->name->value;
$multi_by_line = 0; //only single author, set multi to false
if ( ! empty( $story->byline->link ) ) {
$links = $story->byline->link;
if ( is_string( $links ) ) {
$byline_link = $links;
} else if ( is_array( $links ) ) {
foreach ( $links as $link ) {
if ( empty( $link->type ) ) {
continue;
}
if ( 'html' === $link->type ) {
$byline_link = $link->value;
}
}
} else if ( $links instanceof NPRMLElement && ! empty( $links->value ) ) {
$byline_link = $links->value;
}
}
}
//construct delimited string if there are multiple bylines
if ( ! empty( $story->byline ) ) {
$i = 0;
foreach ( (array) $story->byline as $single ) {
if ( ! empty( $single->name->value ) ) {
if ( $i == 0 ) {
$multi_by_line .= $single->name->value; //builds multi byline string without delimiter on first pass
} else {
$multi_by_line .= '|' . $single->name->value; //builds multi byline string with delimiter
}
$by_line = $single->name->value; //overwrites so as to save just the last byline for previous single byline themes
}
if ( ! empty( $single->link ) ) {
foreach( (array) $single->link as $link ) {
if ( empty( $link->type ) ) {
continue;
}
if ( 'html' === $link->type ) {
$byline_link = $link->value; //overwrites so as to save just the last byline link for previous single byline themes
$multi_by_line .= '~' . $link->value; //builds multi byline string links
}
}
}
$i++;
}
}
//set the meta RETRIEVED so when we publish the post, we dont' try ingesting it
$metas = array(
NPR_STORY_ID_META_KEY => $story->id,
NPR_API_LINK_META_KEY => $story->link['api']->value,
NPR_HTML_LINK_META_KEY => $story->link['html']->value,
//NPR_SHORT_LINK_META_KEY => $story->link['short']->value,
NPR_STORY_CONTENT_META_KEY => $story->body,
NPR_BYLINE_META_KEY => $by_line,
NPR_BYLINE_LINK_META_KEY => $byline_link,
NPR_MULTI_BYLINE_META_KEY => $multi_by_line,
NPR_RETRIEVED_STORY_META_KEY => 1,
NPR_PUB_DATE_META_KEY => $story->pubDate->value,
NPR_STORY_DATE_MEATA_KEY => $story->storyDate->value,
NPR_LAST_MODIFIED_DATE_KEY => $story->lastModifiedDate->value,
);
//get audio
if ( isset($story->audio) ) {
$mp3_array = array();
$m3u_array = array();
foreach ( (array) $story->audio as $n => $audio ) {
if ( ! empty( $audio->format->mp3['mp3']) && $audio->permissions->download->allow == 'true' ) {
if ($audio->format->mp3['mp3']->type == 'mp3' ) {
$mp3_array[] = $audio->format->mp3['mp3']->value;
}
if ($audio->format->mp3['m3u']->type == 'm3u' ) {
$m3u_array[] = $audio->format->mp3['m3u']->value;
}
}
}
$metas[NPR_AUDIO_META_KEY] = implode( ',', $mp3_array );
$metas[NPR_AUDIO_M3U_META_KEY] = implode( ',', $m3u_array );
}
if ( $existing ) {
$created = false;
$args[ 'ID' ] = $existing->ID;
} else {
$created = true;
}
/**
* Filters the $args passed to wp_insert_post()
*
* Allow a site to modify the $args passed to wp_insert_post() prior to post being inserted.
*
* @since 1.7
*
* @param array $args Parameters passed to wp_insert_post()
* @param int $post_id Post ID or NULL if no post ID.
* @param NPRMLEntity $story Story object created during import
* @param bool $created true if not pre-existing, false otherwise
*/
$args = apply_filters( 'npr_pre_insert_post', $args, $post_id, $story, $created );
$post_id = wp_insert_post( $args );
//now that we have an id, we can add images
//this is the way WP seems to do it, but we couldn't call media_sideload_image or media_ because that returned only the URL
//for the attachment, and we want to be able to set the primary image, so we had to use this method to get the attachment ID.
if ( ! empty( $story->image ) && is_array( $story->image ) && count( $story->image ) ) {
//are there any images saved for this post, probably on update, but no sense looking of the post didn't already exist
if ( $existing ) {
$image_args = array(
'order'=> 'ASC',
'post_mime_type' => 'image',
'post_parent' => $post_id,
'post_status' => null,
'post_type' => 'attachment',
'post_date' => $post_date,
);
$attached_images = get_children( $image_args );
}
foreach ( (array) $story->image as $image ) {
$image_url = '';
//check the <enlargement> and then the crops, in this order "enlargement", "standard" if they don't exist, just get the image->src
if ( ! empty( $image->enlargement ) ) {
$image_url = $image->enlargement->src;
} else {
if ( ! empty( $image->crop ) && is_array( $image->crop ) ) {
foreach ( $image->crop as $crop ) {
if ( empty( $crop->type ) ) {
continue;
}
if ( 'enlargement' === $crop->type ) {
$image_url = $crop->src;
}
}
if ( empty( $image_url ) ) {
foreach ( $image->crop as $crop ) {
if ( empty( $crop->type ) ) {
continue;
}
if ( 'standard' === $crop->type ) {
$image_url = $crop->src;
}
}
}
}
}
if ( empty( $image_url ) && ! empty( $image->src ) ) {
$image_url = $image->src;
}
nprstory_error_log( 'Got image from: ' . $image_url );
// Download file to temp location
$tmp = download_url( $image_url );
// Set variables for storage
// fix file filename for query strings
preg_match( '/[^\?]+\.(jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG)/', $image_url, $matches );
$file_array['name'] = basename( $matches[0] );
$file_array['tmp_name'] = $tmp;
$file_OK = TRUE;
// If error storing temporarily, unlink
if ( is_wp_error( $tmp ) ) {
@unlink($file_array['tmp_name']);
$file_array['tmp_name'] = '';
$file_OK = FALSE;
}
// do the validation and storage stuff
$id = media_handle_sideload( $file_array, $post_id, $image->title->value );
// If error storing permanently, unlink
if ( is_wp_error($id) ) {
@unlink( $file_array['tmp_name'] );
$file_OK = FALSE;
} else {
$image_post = get_post( $id );
if ( ! empty( $attached_images ) ) {
foreach( $attached_images as $att_image ) {
//see if the filename is very similar
$att_guid = explode( '.', $att_image->guid );
//so if the already attached image name is part of the name of the file
//coming in, ignore the new/temp file, it's probably the same
if ( strstr ( $image_post->guid, $att_guid[0] ) ) {
@unlink( $file_array['tmp_name'] );
wp_delete_attachment( $id );
$file_OK = FALSE;
}
}
}
}
//set the primary image
if ( $image->type == 'primary' && $file_OK ) {
add_post_meta( $post_id, '_thumbnail_id', $id, true );
//get any image meta data and attatch it to the image post
$image_metas = array(
NPR_IMAGE_CREDIT_META_KEY =>$image->producer->value,
NPR_IMAGE_AGENCY_META_KEY =>$image->provider->value,
NPR_IMAGE_CAPTION_META_KEY =>$image->caption->value,
);
foreach ( $image_metas as $k => $v ) {
update_post_meta( $post_id, $k, $v );
}
}
}
}
/**
* Filters the post meta before series of update_post_meta() calls
*
* Allow a site to modify the post meta values prior to
* passing each element via update_post_meta().
*
* @since 1.7
*
* @param array $metas Array of key/value pairs to be updated
* @param int $post_id Post ID or NULL if no post ID.
* @param NPRMLEntity $story Story object created during import
* @param bool $created true if not pre-existing, false otherwise
*/
$metas = apply_filters( 'npr_pre_update_post_metas', $metas, $post_id, $story, $created );
foreach ( $metas as $k => $v ) {
update_post_meta( $post_id, $k, $v );
}
$args = array(
'post_title' => $story->title,
'post_content' => $story->body,
'post_excerpt' => $story->teaser,
'post_type' => $pull_post_type,
'ID' => $post_id,
'post_date' => $post_date,
);
//set author
if ( ! empty( $by_line ) ) {
$userQuery = new WP_User_Query( array(
'search' => trim( $by_line ),
'search_columns' => array(
'nickname'
)
)
);
$user_results = $userQuery->get_results();
if ( count( $user_results ) == 1 && isset( $user_results[0]->data->ID) ) {
$args['post_author'] = $user_results[0]->data->ID;
}
}
//now set the status
if ( ! $existing ) {
if ( $publish ) {
$args['post_status'] = 'publish';
} else {
$args['post_status'] = 'draft';
}
} else {
//if the post existed, save its status
$args['post_status'] = $existing_status;
}
/**
* Filters the $args passed to wp_insert_post() used to update
*
* Allow a site to modify the $args passed to wp_insert_post() prior to post being updated.
*
* @since 1.7
*
* @param array $args Parameters passed to wp_insert_post()
* @param int $post_id Post ID or NULL if no post ID.
* @param NPRMLEntity $story Story object created during import
*/
$args = apply_filters( 'npr_pre_update_post', $args, $post_id, $story );
$post_id = wp_insert_post( $args );
}
//set categories for story
$category_ids = array();
if ( isset( $story->parent ) ) {
if ( is_array( $story->parent ) ) {
foreach ( $story->parent as $parent ) {
if ( isset( $parent->type ) && 'category' === $parent->type ) {
/**
* Filters term name prior to lookup of terms
*
* Allow a site to modify the terms looked-up before adding them to list of categories.
*
* @since 1.7
*
* @param string $term_name Name of term
* @param int $post_id Post ID or NULL if no post ID.
* @param NPRMLEntity $story Story object created during import
*/
$term_name = apply_filters( 'npr_resolve_category_term', $parent->title->value, $post_id, $story );
$category_id = get_cat_ID( $term_name );
if ( ! empty( $category_id ) ) {
$category_ids[] = $category_id;
}
}
}
} elseif ( isset( $story->parent->type ) && $story->parent->type === 'category') {
/*
* Filters term name prior to lookup of terms
*
* Allow a site to modify the terms looked-up before adding them to list of categories.
*
* @since 1.7
*
* @param string $term_name Name of term
* @param int $post_id Post ID or NULL if no post ID.
* @param NPRMLEntity $story Story object created during import
*/
$term_name = apply_filters('npr_resolve_category_term', $story->parent->title->value, $post_id, $story );
$category_id = get_cat_ID( $term_name );
if ( ! empty( $category_id) ) {
$category_ids[] = $category_id;
}
}
}
/*
* Filters category_ids prior to setting assigning to the post.
*
* Allow a site to modify category IDs before assigning to the post.
*
* @since 1.7
*
* @param int[] $category_ids Array of Category IDs to assign to post identified by $post_id
* @param int $post_id Post ID or NULL if no post ID.
* @param NPRMLEntity $story Story object created during import
*/
$category_ids = apply_filters( 'npr_pre_set_post_categories', $category_ids, $post_id, $story );
if ( 0 < count( $category_ids ) && is_integer( $post_id ) ) {
wp_set_post_categories( $post_id, $category_ids );
}
}
if ( $single_story ) {
return isset( $post_id ) ? $post_id : 0;
}
}
return null;
}
/**
* Create NPRML from wordpress post.
*
* @param object $post
* A wordpress post.
*
* @return string
* An NPRML string.
*/
function create_NPRML( $post ) {
//using some old helper code
return nprstory_to_nprml( $post );
}
/**
* This function will send the push request to the NPR API to add/update a story.
*
* @see NPRAPI::send_request()
*
* @param string $nprml
* @param int $post_ID
*/
function send_request ( $nprml, $post_ID ) {
$error_text = '';
$org_id = get_option( 'ds_npr_api_org_id' );
if ( ! empty( $org_id ) ) {
$url = add_query_arg( array(
'orgId' => $org_id,
'apiKey' => get_option( 'ds_npr_api_key' )
), get_option( 'ds_npr_api_push_url' ) . '/story' );
nprstory_error_log( 'Sending nprml = ' . $nprml );
$result = wp_remote_post( $url, array( 'body' => $nprml ) );
if ( ! is_wp_error( $result ) ) {
if ( $result['response']['code'] == 200 ) {
$body = wp_remote_retrieve_body( $result );
if ( $body ) {
$response_xml = simplexml_load_string( $body );
$npr_story_id = (string) $response_xml->list->story['id'];
update_post_meta( $post_ID, NPR_STORY_ID_META_KEY, $npr_story_id );
} else {
error_log( 'Error returned from NPR Story API with status code 200 OK but failed wp_remote_retrieve_body: ' . print_r( $result, true ) ); // debug use
}
} else {
$error_text = '';
if ( ! empty( $result['response']['message'] ) ) {
$error_text = 'Error pushing story with post_id = '. $post_ID .' for url='.$url . ' HTTP Error response = '. $result['response']['message'];
}
$body = wp_remote_retrieve_body( $result );
if ( $body ) {
$response_xml = simplexml_load_string( $body );
$error_text .= ' API Error Message = ' . $response_xml->message->text;
}
error_log('Error returned from NPR Story API with status code other than 200 OK: ' . $error_text); // debug use
}
} else {
$error_text = 'WP_Error returned when sending story with post_ID ' . $post_ID . ' for url ' . $url . ' to NPR Story API:'. $result->get_error_message();
error_log( $error_text ); // debug use
}
} else {
$error_text = 'OrgID was not set when tried to push post_ID ' . $post_ID . ' to the NPR Story API.';
error_log ( $error_text ); // debug use
}
// Add errors to the post that you just tried to push
if ( ! empty( $error_text ) ) {
update_post_meta( $post_ID, NPR_PUSH_STORY_ERROR, $error_text );
}
else {
delete_post_meta( $post_ID, NPR_PUSH_STORY_ERROR );
}
}
/**
*
* Because wordpress doesn't offer a method=DELETE for wp_remote_post, we needed to write a curl version to send delete
* requests to the NPR API
*
* @param $api_id
*/
function send_delete( $api_id ) {
$url = add_query_arg( array(
'orgId' => get_option( 'ds_npr_api_org_id' ),
'apiKey' => get_option( 'ds_npr_api_key' ),
'id' => $api_id
), get_option( 'ds_npr_api_push_url' ) . '/story' );
//wp doesn't let me do a wp_remote_post with method=DELETE so we have to make our own curl request. fun
//a lot of this code came from WP's class-http object
//$result = wp_remote_post( $url, array( 'method' => 'DELETE' ) );
$handle = curl_init();
curl_setopt( $handle, CURLOPT_CUSTOMREQUEST, 'DELETE' );
curl_setopt( $handle, CURLOPT_URL, $url );
curl_setopt( $handle, CURLOPT_RETURNTRANSFER, TRUE );
curl_exec( $handle );
curl_close( $handle );
}
/**
*
* This function will check a story to see if there are transcripts that should go with it, if there are
* we'll return the transcript as one big strang with Transcript at the top and each paragraph separated by <p>
*
* @param string $story
* @return string
*/
function get_transcript_body( $story ) {
$transcript_body = "";
if ( ! empty( $story->transcript ) && is_array( $story->transcript ) ) {
foreach ( $story->transcript as $transcript ) {
if ( empty( $transcript->link ) ) {
continue;
}
foreach ( (array) $transcript->link as $link ) {
if ( ! isset( $link->type ) || 'api' !== $link->type ) {
continue;
}
$response = wp_remote_get( $link->value );
if ( is_wp_error( $response ) ) {
/**
* @var WP_Error $response
*/
$code = $response->get_error_code();
$message = $response->get_error_message();
$message = sprintf( 'Error requesting story transcript via API URL: %s (%s [%d])', $link->value, $message, $code );
error_log( $message );
continue;
}
$body_xml = simplexml_load_string( $response[ 'body' ] );
if ( empty( $body_xml->paragraph ) || ! is_array( $body_xml->paragraph ) ) {
continue;
}
$transcript_body .= "<p><strong>Transcript :</strong></p>";
foreach ( $body_xml->paragraph as $paragraph ) {
$transcript_body .= '<p>' . ( strip_tags( $paragraph ) ) . '</p>';
}
}
}
}
return $transcript_body;
}
}