This repository has been archived by the owner on Dec 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wp-yext-live-api.php
119 lines (91 loc) · 2.24 KB
/
wp-yext-live-api.php
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
<?php
/**
* WP Yext Live API (http://developer.yext.com/docs/)
*
* @package WP-Yext-API
*/
/*
* Plugin Name: WP Yext Live API
* Plugin URI: https://github.com/wp-api-libraries/wp-yext-api
* Description: Perform API requests to Yext Live 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-yext-api
* GitHub Branch: master
*/
/* Exit if accessed directly */
if ( ! defined( 'ABSPATH' ) ) { exit; }
if ( ! class_exists( 'YextLiveAPI' ) ) {
/**
* YextLiveAPI Class.
*/
class YextLiveAPI {
/**
* API Key.
*
* @var string
*/
static private $api_key;
/**
* Account ID.
*
* @var string
*/
static private $account_id;
/**
* BaseAPI Endpoint
*
* @var string
* @access protected
*/
protected $base_uri = 'https://api.yext.com';
/**
* __construct function.
*
* @access public
* @param mixed $api_key API Key.
* @return void
*/
public function __construct( $api_key, $account_id ) {
static::$api_key = $api_key;
}
/**
* Fetch the request from the API.
*
* @access private
* @param mixed $request Request URL.
* @return $body Body.
*/
private function fetch( $request ) {
$response = wp_remote_get( $request );
$code = wp_remote_retrieve_response_code( $response );
if ( 200 !== $code ) {
return new WP_Error( 'response-error', sprintf( __( 'Server response code: %d', 'wp-zendesk-helpcenter-api' ), $code ) );
}
$body = wp_remote_retrieve_body( $response );
return json_decode( $body );
}
/* LIVE API. */
public function get_menu( $list_id ) {
}
public function get_bios() {
// https://liveapi.yext.com/v2/accounts/{accountId}/bios/{listId}
}
public function get_products() {
}
public function get_events() {
}
public function get_language_profile() {
// https://liveapi.yext.com/v2/accounts/{accountId}/locations/{locationId}/profiles/{languageCode}
}
public function get_all_location_languages() {
}
public function get_location() {
}
public function get_locations() {
}
public function get_locations_geosearch() {
}
}
}