Opal-Estate-Pro/inc/api/v1/agent.php

233 lines
6.0 KiB
PHP
Raw Normal View History

2019-09-28 11:39:55 +02:00
<?php
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
2019-10-02 09:14:31 +02:00
2019-09-28 11:39:55 +02:00
/**
2019-10-02 09:14:31 +02:00
* @class Agent_Api
2019-09-28 11:39:55 +02:00
*
* @since 1.0.0
* @package Opal_Job
* @subpackage Opal_Job/controllers
*/
2019-10-02 09:14:31 +02:00
class Agent_Api extends Base_Api {
2019-09-28 11:39:55 +02:00
/**
* The unique identifier of the route resource.
*
* @since 1.0.0
* @access public
2019-10-02 09:14:31 +02:00
* @var string $base .
2019-09-28 11:39:55 +02:00
*/
public $base = '/agent';
2019-10-02 09:14:31 +02:00
/**
2019-09-28 11:39:55 +02:00
* Register Routes
*
* Register all CURD actions with POST/GET/PUT and calling function for each
*
2019-10-02 09:14:31 +02:00
* @return avoid
2019-09-28 11:39:55 +02:00
* @since 1.0
*
*/
2019-10-02 09:14:31 +02:00
public function register_routes() {
/**
* Get list of agents.
*
* Call http://domain.com/wp-json/estate-api/v1/agent/list
*/
register_rest_route( $this->namespace, $this->base . '/list', [
'methods' => WP_REST_Server::READABLE,
'callback' => [ $this, 'get_list' ],
'permission_callback' => [ $this, 'validate_request' ],
] );
2019-09-28 11:39:55 +02:00
/**
2019-10-02 09:14:31 +02:00
* Get agent detail.
*
* Call http://domain.com/wp-json/estate-api/v1/agent/1
2019-09-28 11:39:55 +02:00
*/
2019-10-02 09:14:31 +02:00
register_rest_route( $this->namespace, $this->base . '/(?P<id>\d+)', [
'methods' => WP_REST_Server::READABLE,
'callback' => [ $this, 'get_detail' ],
'permission_callback' => [ $this, 'validate_request' ],
] );
/**
* Create a agent.
*
* Call http://domain.com/wp-json/estate-api/v1/agent/create
*/
register_rest_route( $this->namespace, $this->base . '/create', [
'methods' => 'GET',
'callback' => [ $this, 'create' ],
'permission_callback' => [ $this, 'validate_request' ],
] );
/**
* Edit a agent.
*
* Call http://domain.com/wp-json/estate-api/v1/agent/edit
*/
register_rest_route( $this->namespace, $this->base . '/edit', [
'methods' => 'GET',
'callback' => [ $this, 'edit' ],
] );
2019-09-28 11:39:55 +02:00
2019-10-02 09:14:31 +02:00
/**
* Delete a agent.
*
* Call http://domain.com/wp-json/estate-api/v1/agent/delete
*/
register_rest_route( $this->namespace, $this->base . '/delete', [
'methods' => 'GET',
'callback' => [ $this, 'delete' ],
'permission_callback' => [ $this, 'validate_request' ],
] );
}
2019-09-28 11:39:55 +02:00
/**
2019-10-02 09:14:31 +02:00
* Get List Of agents.
2019-09-28 11:39:55 +02:00
*
* Based on request to get collection
*
2019-10-02 09:14:31 +02:00
* @return WP_REST_Response is json data
2019-09-28 11:39:55 +02:00
* @since 1.0
*
*/
2019-10-02 09:14:31 +02:00
public function get_list( $request ) {
$agents = [];
$error = [];
$agent = null;
2019-09-28 11:39:55 +02:00
if ( $agent == null ) {
2019-10-02 09:14:31 +02:00
$agents['agents'] = [];
2019-09-28 11:39:55 +02:00
2019-10-02 09:14:31 +02:00
$agent_list = get_posts( [
2019-09-28 11:39:55 +02:00
'post_type' => 'opalestate_agent',
'posts_per_page' => $this->per_page(),
'suppress_filters' => true,
2019-10-02 09:14:31 +02:00
'paged' => $this->get_paged(),
] );
2019-09-28 11:39:55 +02:00
2019-10-02 09:14:31 +02:00
if ( $agent_list ) {
2019-09-28 11:39:55 +02:00
$i = 0;
2019-10-02 09:14:31 +02:00
foreach ( $agent_list as $agent_info ) {
2019-09-28 11:39:55 +02:00
$agents['agents'][ $i ] = $this->get_agent_data( $agent_info );
2019-10-02 09:14:31 +02:00
$i++;
2019-09-28 11:39:55 +02:00
}
}
} else {
2019-10-02 09:14:31 +02:00
if ( get_post_type( $agent ) == 'opalestate_agent' ) {
2019-09-28 11:39:55 +02:00
$agent_info = get_post( $agent );
$agents['agents'][0] = $this->get_agent_data( $agent_info );
} else {
$error['error'] = sprintf(
2019-10-02 09:14:31 +02:00
/* translators: %s: agent */
2019-09-28 11:39:55 +02:00
esc_html__( 'Form %s not found!', 'opalestate-pro' ),
$agent
);
2019-10-02 09:14:31 +02:00
return $this->get_response( 404, $error );
2019-09-28 11:39:55 +02:00
}
}
2019-10-02 09:14:31 +02:00
$response['collection'] = $agents['agents'];
$response['pages'] = 4;
$response['current'] = 1;
2019-09-28 11:39:55 +02:00
return $this->get_response( 200, $response );
}
/**
2019-10-02 09:14:31 +02:00
* Get Agent
2019-09-28 11:39:55 +02:00
*
2019-10-02 09:14:31 +02:00
* Based on request to get a agent.
2019-09-28 11:39:55 +02:00
*
2019-10-02 09:14:31 +02:00
* @return WP_REST_Response is json data
* @since 1.0
2019-09-28 11:39:55 +02:00
*
*/
2019-10-02 09:14:31 +02:00
public function get_detail( $request ) {
$response = [];
if ( $request['id'] > 0 ) {
$post = get_post( $request['id'] );
if ( $post && 'opalestate_agent' == get_post_type( $request['id'] ) ) {
$agent = $this->get_agent_data( $post );
$response['agent'] = $agent ? $agent : [];
$code = 200;
} else {
$code = 404;
$response['error'] = sprintf( esc_html__( 'Agent ID: %s does not exist!', 'opalestate-pro' ), $request['id'] );
}
} else {
$code = 404;
$response['error'] = sprintf( esc_html__( 'Invalid ID.', 'opalestate-pro' ), $request['id'] );
}
2019-09-28 11:39:55 +02:00
2019-10-02 09:14:31 +02:00
return $this->get_response( $code, $response );
}
2019-09-28 11:39:55 +02:00
2019-10-02 09:14:31 +02:00
/**
* The opalestate_agent post object, generate the data for the API output
*
* @param object $agent_info The Download Post Object
*
* @return array Array of post data to return back in the API
* @since 1.0
*
*/
public function get_agent_data( $agent_info ) {
$ouput = [];
2019-09-28 11:39:55 +02:00
$ouput['info']['id'] = $agent_info->ID;
$ouput['info']['slug'] = $agent_info->post_name;
$ouput['info']['title'] = $agent_info->post_title;
$ouput['info']['create_date'] = $agent_info->post_date;
$ouput['info']['modified_date'] = $agent_info->post_modified;
$ouput['info']['status'] = $agent_info->post_status;
$ouput['info']['link'] = html_entity_decode( $agent_info->guid );
$ouput['info']['content'] = $agent_info->post_content;
$ouput['info']['thumbnail'] = wp_get_attachment_url( get_post_thumbnail_id( $agent_info->ID ) );
$agent = new OpalEstate_Agent( $agent_info->ID );
2019-10-02 09:14:31 +02:00
$ouput['info']['featured'] = (int) $agent->is_featured();
$ouput['info']['email'] = get_post_meta( $agent_info->ID, OPALESTATE_AGENT_PREFIX . 'email', true );
$ouput['info']['address'] = get_post_meta( $agent_info->ID, OPALESTATE_AGENT_PREFIX . 'address', true );
2019-09-28 11:39:55 +02:00
2019-10-02 09:14:31 +02:00
$terms = wp_get_post_terms( $agent_info->ID, 'opalestate_agent_location' );
$ouput['info']['location'] = $terms && ! is_wp_error( $terms ) ? $terms : [];
$ouput['socials'] = $agent->get_socials();
$ouput['levels'] = wp_get_post_terms( $agent_info->ID, 'opalestate_agent_level' );
2019-09-28 11:39:55 +02:00
return apply_filters( 'opalestate_api_agents', $ouput );
}
2019-10-02 09:14:31 +02:00
2019-09-28 11:39:55 +02:00
/**
* Delete job
*
* Based on request to get collection
*
2019-10-02 09:14:31 +02:00
* @return WP_REST_Response is json data
2019-09-28 11:39:55 +02:00
* @since 1.0
*
*/
2019-10-02 09:14:31 +02:00
public function delete() {
2019-09-28 11:39:55 +02:00
}
2019-10-02 09:14:31 +02:00
public function reviews() {
2019-09-28 11:39:55 +02:00
}
2019-10-02 09:14:31 +02:00
public function categories() {
2019-09-28 11:39:55 +02:00
}
2019-10-02 09:14:31 +02:00
public function tags() {
2019-09-28 11:39:55 +02:00
}
2019-10-02 09:14:31 +02:00
}