protected function check_get_post_response($response, $post_obj, $context = 'view')
 {
     $response = json_ensure_response($response);
     $response_data = $response->get_data();
     $this->assertEquals($post_obj->ID, $response_data['ID']);
     $this->assertEquals($post_obj->post_name, $response_data['slug']);
     $this->assertEquals($post_obj->post_status, $response_data['status']);
     $this->assertEquals($post_obj->post_author, $response_data['author']);
     $this->assertArrayHasKey('parent', $response_data);
     $this->assertEquals(get_permalink($post_obj->ID), $response_data['link']);
     $this->assertEquals($post_obj->menu_order, $response_data['menu_order']);
     $this->assertEquals($post_obj->comment_status, $response_data['comment_status']);
     $this->assertEquals($post_obj->ping_status, $response_data['ping_status']);
     $this->assertEquals($post_obj->post_password, $response_data['password']);
     $this->assertEquals(is_sticky($post_obj->ID), $response_data['sticky']);
     // Check post parent.
     if ($post_obj->post_parent) {
         if (is_int($response_data['parent'])) {
             $this->assertEquals($post_obj->post_parent, $response_data['parent']);
         } else {
             $this->assertEquals($post_obj->post_parent, $response_data['parent']['ID']);
             $this->check_get_post_response($response_data['parent'], get_post($response_data['parent']['ID']), 'view-parent');
         }
     } else {
         $this->assertEmpty($response_data['parent']);
     }
     // Check post format.
     $post_format = get_post_format($post_obj->ID);
     if (empty($post_format)) {
         $this->assertEquals('standard', $response_data['format']);
     } else {
         $this->assertEquals(get_post_format($post_obj->ID), $response_data['format']);
     }
     // Check post dates.
     if ($post_obj->post_date_gmt === '0000-00-00 00:00:00') {
         $this->assertNull($response_data['date']);
         $this->assertNull($response_data['date_gmt']);
     } else {
         $this->assertEquals(json_mysql_to_rfc3339($post_obj->post_date), $response_data['date']);
         $this->assertEquals(json_mysql_to_rfc3339($post_obj->post_date_gmt), $response_data['date_gmt']);
     }
     if ($post_obj->post_modified_gmt === '0000-00-00 00:00:00') {
         $this->assertNull($response_data['modified']);
         $this->assertNull($response_data['modified_gmt']);
     } else {
         $this->assertEquals(json_mysql_to_rfc3339($post_obj->post_modified), $response_data['modified']);
         $this->assertEquals(json_mysql_to_rfc3339($post_obj->post_modified_gmt), $response_data['modified_gmt']);
     }
     // Check filtered values.
     $this->assertEquals(get_the_title($post_obj->ID), $response_data['title']);
     // TODO: apply content filter for more accurate testing.
     $this->assertEquals(wpautop($post_obj->post_content), $response_data['content']);
     // TODO: apply excerpt filter for more accurate testing.
     $this->assertEquals(wpautop($post_obj->post_excerpt), $response_data['excerpt']);
     $this->assertEquals($post_obj->guid, $response_data['guid']);
     if ($context === 'edit') {
         $this->assertEquals($post_obj->post_content, $response_data['content_raw']);
         $this->assertEquals($post_obj->post_excerpt, $response_data['excerpt_raw']);
     }
 }
 /**
  * Prepares post data for return in an XML-RPC object.
  *
  * @access protected
  *
  * @param array $post The unprepared post data
  * @param string $context The context for the prepared post. (view|view-revision|edit|embed|single-parent)
  * @return array The prepared post data
  */
 protected function prepare_post($post, $context = 'view')
 {
     // Holds the data for this post.
     $_post = array('ID' => (int) $post['ID']);
     $post_type = get_post_type_object($post['post_type']);
     if (!json_check_post_permission($post, 'read')) {
         return new WP_Error('json_user_cannot_read', __('Sorry, you cannot read this post.'), array('status' => 401));
     }
     $previous_post = null;
     if (!empty($GLOBALS['post'])) {
         $previous_post = $GLOBALS['post'];
     }
     $post_obj = get_post($post['ID']);
     // Don't allow unauthenticated users to read password-protected posts
     if (!empty($post['post_password'])) {
         if (!json_check_post_permission($post, 'edit')) {
             return new WP_Error('json_user_cannot_read', __('Sorry, you cannot read this post.'), array('status' => 403));
         }
         // Fake the correct cookie to fool post_password_required().
         // Without this, get_the_content() will give a password form.
         require_once ABSPATH . 'wp-includes/class-phpass.php';
         $hasher = new PasswordHash(8, true);
         $value = $hasher->HashPassword($post['post_password']);
         $_COOKIE['wp-postpass_' . COOKIEHASH] = wp_slash($value);
     }
     $GLOBALS['post'] = $post_obj;
     setup_postdata($post_obj);
     // prepare common post fields
     $post_fields = array('title' => get_the_title($post['ID']), 'status' => $post['post_status'], 'type' => $post['post_type'], 'author' => (int) $post['post_author'], 'content' => apply_filters('the_content', $post['post_content']), 'parent' => (int) $post['post_parent'], 'link' => get_permalink($post['ID']));
     $post_fields_extended = array('slug' => $post['post_name'], 'guid' => apply_filters('get_the_guid', $post['guid']), 'excerpt' => $this->prepare_excerpt($post['post_excerpt']), 'menu_order' => (int) $post['menu_order'], 'comment_status' => $post['comment_status'], 'ping_status' => $post['ping_status'], 'sticky' => $post['post_type'] === 'post' && is_sticky($post['ID']));
     $post_fields_raw = array('title_raw' => $post['post_title'], 'content_raw' => $post['post_content'], 'excerpt_raw' => $post['post_excerpt'], 'guid_raw' => $post['guid'], 'post_meta' => $this->handle_get_post_meta($post['ID']));
     // Dates
     $timezone = json_get_timezone();
     if ($post['post_date_gmt'] === '0000-00-00 00:00:00') {
         $post_fields['date'] = null;
         $post_fields_extended['date_tz'] = null;
         $post_fields_extended['date_gmt'] = null;
     } else {
         $post_date = WP_JSON_DateTime::createFromFormat('Y-m-d H:i:s', $post['post_date'], $timezone);
         $post_fields['date'] = json_mysql_to_rfc3339($post['post_date']);
         $post_fields_extended['date_tz'] = $post_date->format('e');
         $post_fields_extended['date_gmt'] = json_mysql_to_rfc3339($post['post_date_gmt']);
     }
     if ($post['post_modified_gmt'] === '0000-00-00 00:00:00') {
         $post_fields['modified'] = null;
         $post_fields_extended['modified_tz'] = null;
         $post_fields_extended['modified_gmt'] = null;
     } else {
         $modified_date = WP_JSON_DateTime::createFromFormat('Y-m-d H:i:s', $post['post_modified'], $timezone);
         $post_fields['modified'] = json_mysql_to_rfc3339($post['post_modified']);
         $post_fields_extended['modified_tz'] = $modified_date->format('e');
         $post_fields_extended['modified_gmt'] = json_mysql_to_rfc3339($post['post_modified_gmt']);
     }
     // Authorized fields
     // TODO: Send `Vary: Authorization` to clarify that the data can be
     // changed by the user's auth status
     if (json_check_post_permission($post, 'edit')) {
         $post_fields_extended['password'] = $post['post_password'];
     }
     // Consider future posts as published
     if ($post_fields['status'] === 'future') {
         $post_fields['status'] = 'publish';
     }
     // Fill in blank post format
     $post_fields['format'] = get_post_format($post['ID']);
     if (empty($post_fields['format'])) {
         $post_fields['format'] = 'standard';
     }
     if (0 === $post['post_parent']) {
         $post_fields['parent'] = null;
     }
     if (('view' === $context || 'view-revision' == $context) && 0 !== $post['post_parent']) {
         // Avoid nesting too deeply
         // This gives post + post-extended + meta for the main post,
         // post + meta for the parent and just meta for the grandparent
         $parent = get_post($post['post_parent'], ARRAY_A);
         $post_fields['parent'] = $this->prepare_post($parent, 'embed');
     }
     // Merge requested $post_fields fields into $_post
     $_post = array_merge($_post, $post_fields);
     // Include extended fields. We might come back to this.
     $_post = array_merge($_post, $post_fields_extended);
     if ('edit' === $context) {
         if (json_check_post_permission($post, 'edit')) {
             $_post = array_merge($_post, $post_fields_raw);
         } else {
             $GLOBALS['post'] = $previous_post;
             if ($previous_post) {
                 setup_postdata($previous_post);
             }
             return new WP_Error('json_cannot_edit', __('Sorry, you cannot edit this post'), array('status' => 403));
         }
     } elseif ('view-revision' == $context) {
         if (json_check_post_permission($post, 'edit')) {
             $_post = array_merge($_post, $post_fields_raw);
         } else {
             $GLOBALS['post'] = $previous_post;
             if ($previous_post) {
                 setup_postdata($previous_post);
             }
             return new WP_Error('json_cannot_view', __('Sorry, you cannot view this revision'), array('status' => 403));
         }
     }
     // Entity meta
     $links = array('self' => json_url('/posts/' . $post['ID']), 'author' => json_url('/users/' . $post['post_author']), 'collection' => json_url('/posts'));
     if ('view-revision' != $context) {
         $links['replies'] = json_url('/posts/' . $post['ID'] . '/comments');
         $links['version-history'] = json_url('/posts/' . $post['ID'] . '/revisions');
     }
     $_post['meta'] = array('links' => $links);
     if (!empty($post['post_parent'])) {
         $_post['meta']['links']['up'] = json_url('/posts/' . (int) $post['post_parent']);
     }
     $GLOBALS['post'] = $previous_post;
     if ($previous_post) {
         setup_postdata($previous_post);
     }
     return apply_filters('json_prepare_post', $_post, $post, $context);
 }
 /**
  * Prepares post data for return in an XML-RPC object.
  *
  * @access protected
  *
  * @param array $post The unprepared post data
  * @param string $context The context for the prepared post. (view|view-revision|edit|embed|single-parent)
  * @return array The prepared post data
  */
 protected function prepare_post($post, $context = 'view', $show_type = 'row')
 {
     // Holds the data for this post.
     $_post = array('ID' => (int) $post['ID']);
     $post_type = get_post_type_object($post['post_type']);
     if (!json_check_post_permission($post, 'read')) {
         return false;
     }
     $previous_post = null;
     if (!empty($GLOBALS['post'])) {
         $previous_post = $GLOBALS['post'];
     }
     $post_obj = get_post($post['ID']);
     // Don't allow unauthenticated users to read password-protected posts
     if (!empty($post['post_password'])) {
         if (!json_check_post_permission($post, 'edit')) {
             return false;
         }
         // Fake the correct cookie to fool post_password_required().
         // Without this, get_the_content() will give a password form.
         require_once ABSPATH . 'wp-includes/class-phpass.php';
         $hasher = new PasswordHash(8, true);
         $value = $hasher->HashPassword($post['post_password']);
         $_COOKIE['wp-postpass_' . COOKIEHASH] = wp_slash($value);
     }
     $GLOBALS['post'] = $post_obj;
     setup_postdata($post_obj);
     //comment num
     $comment_num = $this->comments->get_comments_num_by_post_id($_post['ID']);
     // prepare common post fields
     $post_content = '';
     if ($show_type == 'row') {
         $post_content = $post['post_content'];
     }
     $post_fields = array('title' => get_the_title($post['ID']), 'status' => $post['post_status'], 'type' => $post['post_type'], 'author' => (int) $post['post_author'], 'content' => apply_filters('the_content', $post_content), 'parent' => (int) $post['post_parent'], 'link' => get_json_url_posts_list($post['ID']));
     $post_fields_extended = array('excerpt' => $this->prepare_excerpt($post['post_excerpt']), 'comment_status' => $post['comment_status'], 'comment_num' => (int) $comment_num);
     $post_fields_raw = array();
     if ($show_type == 'row') {
         $post_fields_raw = array('title_raw' => $post['post_title'], 'content_raw' => $post['post_content'], 'excerpt_raw' => $post['post_excerpt'], 'guid_raw' => $post['guid']);
     }
     // Dates
     $timezone = json_get_timezone();
     if ($post['post_date_gmt'] === '0000-00-00 00:00:00') {
         $post_fields['date'] = null;
         $post_fields_extended['date_tz'] = null;
         $post_fields_extended['date_gmt'] = null;
     } else {
         $post_date = WP_JSON_DateTime::createFromFormat('Y-m-d H:i:s', $post['post_date'], $timezone);
         $post_fields['date'] = json_mysql_to_rfc3339($post['post_date']);
         $post_fields_extended['date_tz'] = $post_date->format('e');
         $post_fields_extended['date_gmt'] = json_mysql_to_rfc3339($post['post_date_gmt']);
     }
     if ($post['post_modified_gmt'] === '0000-00-00 00:00:00') {
         $post_fields['modified'] = null;
         $post_fields_extended['modified_tz'] = null;
         $post_fields_extended['modified_gmt'] = null;
     } else {
         $modified_date = WP_JSON_DateTime::createFromFormat('Y-m-d H:i:s', $post['post_modified'], $timezone);
         $post_fields['modified'] = json_mysql_to_rfc3339($post['post_modified']);
         $post_fields_extended['modified_tz'] = $modified_date->format('e');
         $post_fields_extended['modified_gmt'] = json_mysql_to_rfc3339($post['post_modified_gmt']);
     }
     // Authorized fields
     // TODO: Send `Vary: Authorization` to clarify that the data can be
     // changed by the user's auth status
     if (json_check_post_permission($post, 'edit')) {
         $post_fields_extended['password'] = $post['post_password'];
     }
     // Consider future posts as published
     if ($post_fields['status'] === 'future') {
         $post_fields['status'] = 'publish';
     }
     // Fill in blank post format
     $post_fields['format'] = get_post_format($post['ID']);
     if (empty($post_fields['format'])) {
         $post_fields['format'] = 'standard';
     }
     if (0 === $post['post_parent']) {
         $post_fields['parent'] = null;
     }
     if (('view' === $context || 'view-revision' == $context) && 0 !== $post['post_parent']) {
         // Avoid nesting too deeply
         // This gives post + post-extended + meta for the main post,
         // post + meta for the parent and just meta for the grandparent
         $parent = get_post($post['post_parent'], ARRAY_A);
         $post_fields['parent'] = $this->prepare_post($parent, 'embed');
     }
     // Merge requested $post_fields fields into $_post
     $_post = array_merge($_post, $post_fields);
     // Include extended fields. We might come back to this.
     $_post = array_merge($_post, $post_fields_extended);
     if ('edit' === $context) {
         if (json_check_post_permission($post, 'edit')) {
             $_post = array_merge($_post, $post_fields_raw);
         } else {
             $GLOBALS['post'] = $previous_post;
             if ($previous_post) {
                 setup_postdata($previous_post);
             }
             json_error(BigAppErr::$post['code'], "post id is not valid", $id);
         }
     } elseif ('view-revision' == $context) {
         if (json_check_post_permission($post, 'edit')) {
             $_post = array_merge($_post, $post_fields_raw);
         } else {
             $GLOBALS['post'] = $previous_post;
             if ($previous_post) {
                 setup_postdata($previous_post);
             }
             return false;
         }
     }
     // Entity meta
     $links = array('self' => get_json_url_posts_list($post['ID']), 'author' => get_json_url_users_get_user($post['post_author']), 'collection' => get_json_url_posts_list());
     if ('view-revision' != $context) {
         $links['replies'] = get_json_url_comments_get_comments($post['ID']);
         $links['version-history'] = get_json_url_post_get_revisions($post['ID']);
     }
     #$_post['meta'] = array( 'links' => $links );
     if (!empty($post['post_parent'])) {
         $_post['meta']['links']['up'] = get_json_url_posts_list((int) $post['post_parent']);
     }
     $GLOBALS['post'] = $previous_post;
     if ($previous_post) {
         setup_postdata($previous_post);
     }
     //控制发表评论状态
     if ($_post['comment_status'] == 'closed') {
         $comment_type = 0;
     } else {
         $comment_type = bigapp_core::check_comment_status();
         if ($comment_type == 0 && $_post['comment_status'] == 'open') {
             $comment_type = 1;
         }
     }
     $_post['comment_type'] = $comment_type;
     //浏览量次数
     $post_views = new WP_JSON_PostViews($this->server);
     $_post['views'] = $post_views->get_views_by_id($post['ID']);
     return apply_filters('json_prepare_post', $_post, $post, $context);
 }
 /**
  * Prepares comment data for returning as a JSON response.
  *
  * @param stdClass $comment Comment object
  * @param array $requested_fields Fields to retrieve from the comment
  * @param string $context Where is the comment being loaded?
  * @return array Comment data for JSON serialization
  */
 protected function prepare_comment($comment, $requested_fields = array('comment', 'meta'), $context = 'single')
 {
     $fields = array('ID' => (int) $comment->comment_ID, 'post' => (int) $comment->comment_post_ID);
     $post = (array) get_post($fields['post']);
     // Content
     $fields['content'] = apply_filters('comment_text', $comment->comment_content, $comment);
     // $fields['content_raw'] = $comment->comment_content;
     // Status
     switch ($comment->comment_approved) {
         case 'hold':
         case '0':
             $fields['status'] = 'hold';
             break;
         case 'approve':
         case '1':
             $fields['status'] = 'approved';
             break;
         case 'spam':
         case 'trash':
         default:
             $fields['status'] = $comment->comment_approved;
             break;
     }
     // Type
     $fields['type'] = apply_filters('get_comment_type', $comment->comment_type);
     if (empty($fields['type'])) {
         $fields['type'] = 'comment';
     }
     // Parent
     if (('single' === $context || 'single-parent' === $context) && (int) $comment->comment_parent) {
         $parent_fields = array('meta');
         if ($context === 'single') {
             $parent_fields[] = 'comment';
         }
         $parent = get_comment($comment->comment_parent);
         $fields['parent'] = $this->prepare_comment($parent, $parent_fields, 'single-parent');
     }
     // Parent
     $fields['parent'] = (int) $comment->comment_parent;
     // Author
     if ((int) $comment->user_id !== 0) {
         $fields['author'] = (int) $comment->user_id;
     } else {
         $fields['author'] = array('ID' => 0, 'name' => $comment->comment_author, 'URL' => $comment->comment_author_url, 'avatar' => json_get_avatar_url($comment->comment_author_email));
     }
     // Date
     $timezone = json_get_timezone();
     $comment_date = WP_JSON_DateTime::createFromFormat('Y-m-d H:i:s', $comment->comment_date, $timezone);
     $fields['date'] = json_mysql_to_rfc3339($comment->comment_date);
     $fields['date_tz'] = $comment_date->format('e');
     $fields['date_gmt'] = json_mysql_to_rfc3339($comment->comment_date_gmt);
     // Meta
     $meta = array('links' => array('up' => json_url(sprintf('/posts/%d', (int) $comment->comment_post_ID))));
     if (0 !== (int) $comment->comment_parent) {
         $meta['links']['in-reply-to'] = json_url(sprintf('/posts/%d/comments/%d', (int) $comment->comment_post_ID, (int) $comment->comment_parent));
     }
     if ('single' !== $context) {
         $meta['links']['self'] = json_url(sprintf('/posts/%d/comments/%d', (int) $comment->comment_post_ID, (int) $comment->comment_ID));
     }
     // Remove unneeded fields
     $data = array();
     if (in_array('comment', $requested_fields)) {
         $data = array_merge($data, $fields);
     }
     if (in_array('meta', $requested_fields)) {
         $data['meta'] = $meta;
     }
     return apply_filters('json_prepare_comment', $data, $comment, $context);
 }
Example #5
0
 /**
  * Prepare post data
  *
  * @param array  $post    The unprepared post data
  * @param string $context The context for the prepared post. (view|view-revision|edit|embed|single-parent)
  *
  * @return array The prepared post data
  */
 protected function prepare_post($post, $context = 'view')
 {
     // Holds the data for this post.
     $_post = array('ID' => absint($post['ID']));
     if (!$this->check_read_permission($post)) {
         return new WP_Error('json_user_cannot_read', __('Sorry, you cannot read this post.'), array('status' => 401));
     }
     $post_obj = get_post($post['ID']);
     $GLOBALS['post'] = $post_obj;
     setup_postdata($post_obj);
     // Prepare common post fields
     $post_fields = array('title' => get_the_title($post['ID']), 'type' => $post['post_type'], 'link' => get_permalink($post['ID']));
     $post_fields_extended = array('slug' => $post['post_name'], 'avatar' => Helper::get_avatar_url($post['ID'], 512), 'excerpt' => $this->prepare_excerpt($post['post_excerpt']), 'content' => apply_filters('the_content', $post['post_content']), 'byline' => esc_html(get_post_meta($post['ID'], 'byline', true)));
     // Get connected company
     $companies = get_posts(array('connected_type' => 'hiring', 'connected_items' => $post, 'posts_per_page' => -1, 'suppress_filters' => false));
     $post_fields_extended['company'] = array('ID' => absint($companies[0]->ID), 'title' => get_the_title($companies[0]->ID), 'link' => get_permalink($companies[0]->ID), 'slug' => $companies[0]->post_name, 'excerpt' => $this->prepare_excerpt($companies[0]->post_excerpt), 'meta' => array('self' => json_url('/talents/' . $companies[0]->ID), 'collection' => json_url('/talents')));
     // Dates
     if ('0000-00-00 00:00:00' === $post['post_date_gmt']) {
         $post_fields['date'] = null;
         $post_fields_extended['date_gmt'] = null;
     } else {
         $post_fields['date'] = json_mysql_to_rfc3339($post['post_date']);
         $post_fields_extended['date_gmt'] = json_mysql_to_rfc3339($post['post_date_gmt']);
     }
     if ('0000-00-00 00:00:00' === $post['post_modified_gmt']) {
         $post_fields['modified'] = null;
         $post_fields_extended['modified_gmt'] = null;
     } else {
         $post_fields['modified'] = json_mysql_to_rfc3339($post['post_modified']);
         $post_fields_extended['modified_gmt'] = json_mysql_to_rfc3339($post['post_modified_gmt']);
     }
     // Merge requested $post_fields fields into $_post
     $_post = array_merge($_post, $post_fields);
     // Include extended fields. We might come back to this.
     $_post = array_merge($_post, $post_fields_extended);
     // Entity meta
     $links = array('self' => json_url('/jobs/' . $post['ID']), 'collection' => json_url('/jobs'));
     $_post['meta'] = array('links' => $links);
     return apply_filters('json_prepare_talent', $_post, $post, $context);
 }
Example #6
0
 /**
  * Prepare post data
  *
  * @param array  $post    The unprepared post data
  * @param string $context The context for the prepared post. (view|view-revision|edit|embed|single-parent)
  *
  * @return array The prepared post data
  */
 protected function prepare_post($post, $context = 'view')
 {
     // Holds the data for this post.
     $_post = array('ID' => absint($post['ID']));
     if (!$this->check_read_permission($post)) {
         return new WP_Error('json_user_cannot_read', __('Sorry, you cannot read this post.'), array('status' => 401));
     }
     $post_obj = get_post($post['ID']);
     $GLOBALS['post'] = $post_obj;
     setup_postdata($post_obj);
     // Fetch our talent meta
     $talent_meta = Helper::get_talent_meta($post_obj);
     // Prepare common post fields
     $post_fields = array('title' => get_the_title($post['ID']), 'type' => $post['post_type'], 'link' => get_permalink($post['ID']));
     $post_fields_extended = array('slug' => $post['post_name'], 'avatar' => Helper::get_avatar_url($post['ID'], 512), 'excerpt' => $this->prepare_excerpt($post['post_excerpt']), 'content' => apply_filters('the_content', $post['post_content']), 'byline' => esc_html(get_post_meta($post['ID'], 'byline', true)), 'job' => (string) get_post_meta($post['ID'], 'job', true), 'wordpress_vip' => 1 == get_post_meta($post['ID'], 'wordpress_vip', true) ? true : false, 'location' => $talent_meta['map'], 'score' => $talent_meta['score'], 'social' => $talent_meta['social'], 'badges' => $talent_meta['profile']['badges'], 'contributions' => array('codex' => array('count' => $talent_meta['codex_count']), 'props' => array('count' => $talent_meta['changeset_count']), 'core' => $talent_meta['contributions']), 'plugins' => $talent_meta['plugins'], 'themes' => $talent_meta['themes']);
     // A person can't be a WordPress.com VIP
     if ('person' === $post['post_type']) {
         unset($post_fields_extended['wordpress_vip']);
     }
     if ('company' === $post['post_type']) {
         // Company itself has no job
         unset($post_fields_extended['job']);
         // Find connected team members
         $people = get_posts(array('connected_type' => 'team', 'connected_items' => $post, 'posts_per_page' => -1, 'suppress_filters' => false));
         /** @var \WP_Post $person */
         foreach ($people as $person) {
             // Fetch our talent meta
             $person_meta = Helper::get_talent_meta($person);
             $post_fields_extended['team'][] = array('ID' => absint($person->ID), 'title' => get_the_title($person->ID), 'type' => $person->post_type, 'link' => get_permalink($person->ID), 'slug' => $person->post_name, 'avatar' => Helper::get_avatar_url($person, 512), 'excerpt' => $this->prepare_excerpt($person->post_excerpt), 'byline' => esc_html(get_post_meta($person->ID, 'byline', true)), 'job' => (string) get_post_meta($person->ID, 'job', true), 'location' => $person_meta['map'], 'score' => $person_meta['score'], 'meta' => array('self' => json_url('/talents/' . $person->ID), 'collection' => json_url('/talents')));
         }
     }
     // Company itself has no job
     unset($post_fields_extended['job']);
     // Find connected team members
     $products = get_posts(array('connected_type' => 'product_owner', 'connected_items' => $post, 'posts_per_page' => -1, 'suppress_filters' => false));
     /** @var \WP_Post $product */
     foreach ($products as $product) {
         $thumbnail = '';
         if (has_post_thumbnail($product)) {
             $image = wp_get_attachment_image_src(get_post_thumbnail_id($product), 'large');
             if ($image) {
                 $thumbnail = $image[0];
             }
         }
         $post_fields_extended['products'][] = array('ID' => absint($product->ID), 'title' => get_the_title($product->ID), 'link' => get_permalink($product->ID), 'slug' => $product->post_name, 'image' => $thumbnail, 'excerpt' => $this->prepare_excerpt($product->post_excerpt), 'byline' => esc_html(get_post_meta($product->ID, 'byline', true)), 'meta' => array('self' => json_url('/products/' . $product->ID), 'collection' => json_url('/products')));
     }
     // Find connected jobs
     $jobs = get_posts(array('connected_type' => 'hiring', 'connected_items' => $post, 'posts_per_page' => -1, 'suppress_filters' => false));
     /** @var \WP_Post $job */
     foreach ($jobs as $job) {
         $post_fields_extended['jobs'][] = array('ID' => absint($job->ID), 'title' => get_the_title($job->ID), 'link' => get_permalink($job->ID), 'slug' => $job->post_name, 'excerpt' => $this->prepare_excerpt($job->post_excerpt), 'meta' => array('self' => json_url('/jobs/' . $job->ID), 'collection' => json_url('/jobs')));
     }
     // Dates
     if ('0000-00-00 00:00:00' === $post['post_date_gmt']) {
         $post_fields['date'] = null;
         $post_fields_extended['date_gmt'] = null;
     } else {
         $post_fields['date'] = json_mysql_to_rfc3339($post['post_date']);
         $post_fields_extended['date_gmt'] = json_mysql_to_rfc3339($post['post_date_gmt']);
     }
     if ('0000-00-00 00:00:00' === $post['post_modified_gmt']) {
         $post_fields['modified'] = null;
         $post_fields_extended['modified_gmt'] = null;
     } else {
         $post_fields['modified'] = json_mysql_to_rfc3339($post['post_modified']);
         $post_fields_extended['modified_gmt'] = json_mysql_to_rfc3339($post['post_modified_gmt']);
     }
     // Merge requested $post_fields fields into $_post
     $_post = array_merge($_post, $post_fields);
     // Include extended fields. We might come back to this.
     $_post = array_merge($_post, $post_fields_extended);
     // Entity meta
     $links = array('self' => json_url('/talents/' . $post['ID']), 'collection' => json_url('/talents'));
     $_post['meta'] = array('links' => $links);
     return apply_filters('json_prepare_talent', $_post, $post, $context);
 }