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

243 lines
6.2 KiB
PHP
Raw Normal View History

2019-09-28 11:39:55 +02:00
<?php
/**
2019-10-02 09:14:31 +02:00
* Define
2019-09-28 11:39:55 +02:00
* Note: only use for internal purpose.
*
* @package OpalJob
* @copyright Copyright (c) 2019, WpOpal <https://www.wpopal.com>
* @license https://opensource.org/licenses/gpl-license GNU Public License
* @since 1.0
*/
// 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 Job_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 Agency_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 = '/agency';
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() {
2019-10-02 09:52:28 +02:00
/**
* Get agency list.
*
* Call http://domain.com/wp-json/estate-api/v1/agency/list
*/
2019-10-02 09:14:31 +02:00
register_rest_route( $this->namespace, $this->base . '/list', [
'methods' => WP_REST_Server::READABLE,
'callback' => [ $this, 'get_list' ],
'permission_callback' => [ $this, 'validate_request' ],
] );
2019-10-02 09:52:28 +02:00
/**
* Get agency detail.
*
* Call http://domain.com/wp-json/estate-api/v1/agency/1
*/
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' ],
] );
2019-10-02 09:52:28 +02:00
/**
* Create a agency.
*
* Call http://domain.com/wp-json/estate-api/v1/agency/create
*/
2019-10-02 09:14:31 +02:00
register_rest_route( $this->namespace, $this->base . '/create', [
'methods' => 'GET',
'callback' => [ $this, 'create' ],
'permission_callback' => [ $this, 'validate_request' ],
] );
2019-10-02 09:52:28 +02:00
/**
* Edit a agency.
*
* Call http://domain.com/wp-json/estate-api/v1/agency/edit
*/
2019-10-02 09:14:31 +02:00
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:52:28 +02:00
* Delete a agency.
*
* Call http://domain.com/wp-json/estate-api/v1/agency/delete
2019-09-28 11:39:55 +02:00
*/
2019-10-02 09:52:28 +02:00
register_rest_route( $this->namespace, $this->base . '/delete', [
2019-10-02 09:14:31 +02:00
'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 agencies.
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 ) {
$agencies = [];
$error = [];
$agency = null;
if ( $agency == null ) {
$agencies['agencies'] = [];
2019-09-28 11:39:55 +02:00
2019-10-02 09:14:31 +02:00
$agency_list = get_posts( [
2019-09-28 11:39:55 +02:00
'post_type' => 'opalestate_agency',
'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 ( $agency_list ) {
$i = 0;
foreach ( $agency_list as $agency_info ) {
$agencies['agencies'][ $i ] = $this->get_agency_data( $agency_info );
$i++;
}
}
} else {
if ( get_post_type( $agency ) == 'opalestate_agency' ) {
$agency_info = get_post( $agency );
$agencies['agencies'][0] = $this->get_agency_data( $agency_info );
} else {
$error['error'] = sprintf(
/* translators: %s: agency */
esc_html__( 'Form %s not found!', 'opalestate-pro' ),
$agency
);
return $this->get_response( 404, $error );
}
}
$response['collection'] = $agencies['agencies'];
$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 Agency
*
* Based on request to get a agency.
*
* @return WP_REST_Response is json data
* @since 1.0
*
*/
public function get_detail( $request ) {
$response = [];
if ( $request['id'] > 0 ) {
$post = get_post( $request['id'] );
if ( $post && 'opalestate_agency' == get_post_type( $request['id'] ) ) {
$agency = $this->get_agency_data( $post );
$response['agency'] = $agency ? $agency : [];
$code = 200;
} else {
$code = 404;
$response['error'] = sprintf( esc_html__( 'Agency ID: %s does not exist!', 'opalestate-pro' ), $request['id'] );
}
} else {
$code = 404;
$response['error'] = sprintf( esc_html__( 'Invalid ID.', 'opalestate-pro' ), $request['id'] );
}
return $this->get_response( $code, $response );
}
/**
* The opalestate_agency post object, generate the data for the API output
*
* @param object $agency_info The Download Post Object
*
* @return array Array of post data to return back in the API
* @since 1.0
*
*/
public function get_agency_data( $agency_info ) {
$ouput = [];
$ouput['info']['id'] = $agency_info->ID;
$ouput['info']['slug'] = $agency_info->post_name;
$ouput['info']['title'] = $agency_info->post_title;
$ouput['info']['create_date'] = $agency_info->post_date;
$ouput['info']['modified_date'] = $agency_info->post_modified;
$ouput['info']['status'] = $agency_info->post_status;
$ouput['info']['link'] = html_entity_decode( $agency_info->guid );
$ouput['info']['content'] = $agency_info->post_content;
$ouput['info']['thumbnail'] = wp_get_attachment_url( get_post_thumbnail_id( $agency_info->ID ) );
$agency = new OpalEstate_Agency( $agency_info->ID );
$ouput['info']['featured'] = (int) $agency->is_featured();
$ouput['info']['email'] = get_post_meta( $agency_info->ID, OPALESTATE_AGENCY_PREFIX . 'email', true );
$ouput['info']['address'] = get_post_meta( $agency_info->ID, OPALESTATE_AGENCY_PREFIX . 'address', true );
$terms = wp_get_post_terms( $agency_info->ID, 'opalestate_agency_location' );
$ouput['info']['location'] = $terms && ! is_wp_error( $terms ) ? $terms : [];
$ouput['socials'] = $agency->get_socials();
return apply_filters( 'opalestate_api_agencies', $ouput );
}
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
}