This repository was archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwp-ihomefinder-api.php
More file actions
187 lines (126 loc) · 3.79 KB
/
Copy pathwp-ihomefinder-api.php
File metadata and controls
187 lines (126 loc) · 3.79 KB
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
<?php
/**
* WP-iHomeFinder-Client-API (https://help.ihomefinder.com/customer/en/portal/articles/2772553-client-api?b_id=15845)
* https://www.idxhome.com/api/v1/docs.html
*
* @package WP-API-Libraries\WP-iHomeFinder-Client-API
*/
/*
* Plugin Name: WP iHomeFinder Client API
* Plugin URI: https://github.com/wp-api-libraries/wp-ihomefinder-api
* Description: Perform API requests to iHomeFinder in WordPress.
* Author: WP API Libraries
* Version: 1.0.0
* Author URI: https://wp-api-libraries.com
* GitHub Plugin URI: https://github.com/wp-api-libraries/wp-ihomefinder-api
* GitHub Branch: master
*/
/* Exit if accessed directly. */
if ( ! defined( 'ABSPATH' ) ) { exit; }
/* Check if class exists. */
if ( ! class_exists( 'IhomeFinderClientAPI' ) ) {
/**
* IhomeFinderClientAPI
*
*/
class IhomeFinderClientAPI {
/**
* BaseAPI Endpoint
*
* @var string
* @access protected
*/
protected $base_uri = 'https://www.idxhome.com/api/v1/';
/**
* Class constructor.
*
*/
public function __construct() {
}
/**
* Prepares API request.
*
* @param string $route API route to make the call to.
* @param array $args Arguments to pass into the API call.
* @param array $method HTTP Method to use for request.
* @return self Returns an instance of itself so it can be chained to the fetch method.
*/
protected function build_request( $route, $args = array(), $method = 'GET' ) {
// Start building query.
$this->args['method'] = $method;
$this->route = $route;
// Generate query string for GET requests.
if ( 'GET' === $method ) {
$this->route = add_query_arg( array_filter( $args ), $route );
} elseif ( 'application/json' === $this->args['headers']['Content-Type'] ) {
$this->args['body'] = wp_json_encode( $args );
} else {
$this->args['body'] = $args;
}
return $this;
}
/**
* Check if HTTP status code is a success.
*
* @param int $code HTTP status code.
* @return boolean True if status is within valid range.
*/
protected function is_status_ok( $code ) {
return ( 200 <= $code && 300 > $code );
}
/* CLIENT. */
public function get_client() {
return $this->build_request( 'client.json' )->fetch();
}
/* CLIENT BOARD. */
public function get_client_boards() {
}
public function get_client_board( $client_board_id ) {
}
/* BOARD. */
public function get_board( $board_id ) {
}
/* LISTINGS. */
public function get_listings() {
}
public function get_listing( $listing_id ) {
}
/* SUBSCRIBER. */
public function get_subscribers() {
}
public function get_subscriber() {
}
/* MARKET. */
public function get_markets() {
}
public function get_market( $market_id ) {
}
/* LISTING REPORT. */
public function get_listing_report( $listing_report_id ) {
}
/* OPEN HOME REPORT. */
public function get_open_home_report( $open_home_report_id ) {
}
/* MARKET REPORT. */
public function get_market_report( $market_report_id ) {
}
/* LISTING REPORT SUBSCRIPTION. */
public function get_listings_report_subscriptions( $listing_report_id ) {
}
public function get_listing_report_subscription( $listing_report_id, $listing_report_subscription_id ) {
}
/* OPEN HOME REPORT SUBSCRIPTION. */
/* MARKET REPORT SUBSCRIPTION. */
/* AGENT. */
/* OFFICE. */
/* MORE INFO REQUEST. */
/* SCHEDULE SHOWING REQUEST. */
/* CONTACT REQUEST. */
/* VALUATION REQUEST. */
/* EMAIL UPDATE SIGNUP REQUEST. */
/* PROPERTY ORGANIZER SIGNUP REQUEST. */
/* LISTING REPORT SIGNUP REQUEST. */
/* OPEN HOME REPORT SIGNUP REQUEST. */
/* MARKET REPORT SIGNUP REQUEST. */
}
}