From 017a2eaa334296a3c16c62084edb6c67605c64c7 Mon Sep 17 00:00:00 2001 From: Hoang Huu Date: Tue, 19 Nov 2019 16:34:42 +0700 Subject: [PATCH] Update API. --- inc/api/v1/agency.php | 70 +++++++++++++++++++++++++++++++++++++++++++ inc/api/v1/agent.php | 65 +++++++++++++++++++++++++++++++++++++--- 2 files changed, 131 insertions(+), 4 deletions(-) diff --git a/inc/api/v1/agency.php b/inc/api/v1/agency.php index 22f7f36c..fe8d9cde 100755 --- a/inc/api/v1/agency.php +++ b/inc/api/v1/agency.php @@ -188,11 +188,18 @@ class Opalestate_Agency_Api extends Opalestate_Base_API { $ouput['featured'] = $agency->is_featured(); $ouput['trusted'] = $agency->get_trusted(); $ouput['email'] = $agency->get_meta( 'email' ); + $ouput['website'] = $agency->get_meta( 'website' ); + $ouput['phone'] = $agency->get_meta( 'phone' ); + $ouput['mobile'] = $agency->get_meta( 'mobile' ); + $ouput['fax'] = $agency->get_meta( 'fax' ); $ouput['address'] = $agency->get_meta( 'address' ); $ouput['map'] = $agency->get_meta( 'map' ); $terms = wp_get_post_terms( $agency_info->ID, 'opalestate_agency_location' ); $ouput['location'] = $terms && ! is_wp_error( $terms ) ? $terms : []; $ouput['socials'] = $agency->get_socials(); + $properties = $this->get_properties( $agency_info->ID ); + $ouput['listing_count'] = count( $properties ); + $ouput['listings'] = $properties; return apply_filters( 'opalestate_api_agencies', $ouput ); } @@ -283,4 +290,67 @@ class Opalestate_Agency_Api extends Opalestate_Base_API { return $params; } + + /** + * Get agent listings. + * + * @param int $id Agency ID. + * @return array + */ + public function get_properties( $id ) { + $properties = []; + if ( $id > 0 ) { + $post = get_post( $id ); + if ( $post && $this->post_type == get_post_type( $id ) ) { + $user_id = get_post_meta( $id, OPALESTATE_AGENCY_PREFIX . 'user_id', true ); + $agents = get_post_meta( $id, OPALESTATE_AGENCY_PREFIX . 'team', true ); + + if ( $user_id ) { + $author = [ $user_id ]; + $agents = get_post_meta( $id, OPALESTATE_AGENCY_PREFIX . 'team', true ); + + if ( is_array( $agents ) ) { + $author = array_merge( $author, $agents ); + } + + $args = [ + 'post_type' => 'opalestate_property', + 'author__in' => $author, + 'posts_per_page' => -1, + ]; + } else { + $args = [ + 'post_type' => 'opalestate_property', + 'posts_per_page' => -1, + ]; + $args['meta_query'] = [ 'relation' => 'OR' ]; + array_push( $args['meta_query'], [ + 'key' => OPALESTATE_PROPERTY_PREFIX . 'agency', + 'value' => $id, + 'compare' => '=', + ] ); + + if ( $agents ) { + array_push( $args['meta_query'], [ + 'key' => OPALESTATE_PROPERTY_PREFIX . 'agent', + 'value' => $agents, + ] ); + } + } + + $property_list = get_posts( $args ); + + if ( $property_list ) { + $i = 0; + foreach ( $property_list as $property_info ) { + $properties[ $i ] = opalestate_api_get_property_data( $property_info ); + $i++; + } + } + + } + } + + return $properties; + } } diff --git a/inc/api/v1/agent.php b/inc/api/v1/agent.php index f7fd33b7..a574133e 100755 --- a/inc/api/v1/agent.php +++ b/inc/api/v1/agent.php @@ -246,13 +246,22 @@ class Opalestate_Agent_Api extends Opalestate_Base_API { $ouput['featured'] = $agent->is_featured(); $ouput['trusted'] = $agent->get_trusted(); $ouput['email'] = $agent->get_meta( 'email' ); + $ouput['website'] = $agent->get_meta( 'website' ); + $ouput['phone'] = $agent->get_meta( 'phone' ); + $ouput['mobile'] = $agent->get_meta( 'mobile' ); + $ouput['fax'] = $agent->get_meta( 'fax' ); + $ouput['job'] = $agent->get_meta( 'job' ); + $ouput['company'] = $agent->get_meta( 'company' ); $ouput['address'] = $agent->get_meta( 'address' ); $ouput['map'] = $agent->get_meta( 'map' ); - $terms = wp_get_post_terms( $agent_info->ID, 'opalestate_agent_location' ); - $ouput['location'] = $terms && ! is_wp_error( $terms ) ? $terms : []; - $ouput['socials'] = $agent->get_socials(); - $ouput['levels'] = wp_get_post_terms( $agent_info->ID, 'opalestate_agent_level' ); + $terms = wp_get_post_terms( $agent_info->ID, 'opalestate_agent_location' ); + $ouput['location'] = $terms && ! is_wp_error( $terms ) ? $terms : []; + $ouput['socials'] = $agent->get_socials(); + $ouput['levels'] = wp_get_post_terms( $agent_info->ID, 'opalestate_agent_level' ); + $properties = $this->get_properties( $agent_info->ID ); + $ouput['listing_count'] = count( $properties ); + $ouput['listing'] = $properties; return apply_filters( 'opalestate_api_agents', $ouput ); } @@ -267,4 +276,52 @@ class Opalestate_Agent_Api extends Opalestate_Base_API { return $params; } + + /** + * Get agent listings. + * + * @param int $id Agent ID + * @return array + */ + public function get_properties( $id ) { + $properties = []; + if ( $id > 0 ) { + $post = get_post( $id ); + if ( $post && $this->post_type == get_post_type( $id ) ) { + + $user_id = get_post_meta( $id, OPALESTATE_AGENT_PREFIX . 'user_id', true ); + + $args = [ + 'post_type' => 'opalestate_property', + 'posts_per_page' => -1, + 'post__not_in' => [ $id ], + 'post_status' => 'publish', + ]; + + $args['meta_query'] = [ 'relation' => 'AND' ]; + + if ( $user_id ) { + $args['author'] = $user_id; + } else { + array_push( $args['meta_query'], [ + 'key' => OPALESTATE_PROPERTY_PREFIX . 'agent', + 'value' => $id, + 'compare' => '=', + ] ); + } + + $property_list = get_posts( $args ); + + if ( $property_list ) { + $i = 0; + foreach ( $property_list as $property_info ) { + $properties[ $i ] = opalestate_api_get_property_data( $property_info ); + $i++; + } + } + } + } + + return $properties; + } }