This repository has been archived by the owner on Oct 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathwc-api-dev-class.php
159 lines (146 loc) · 6.27 KB
/
wc-api-dev-class.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
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
<?php
/**
* WC API Dev
* Loads a development version of the WooCommerce REST API.
*/
class WC_API_Dev {
/**
* Current version of the API plugin.
*/
const CURRENT_VERSION = '1.0.0';
/**
* Minimum version needed to run this version of the API.
*/
const WC_MIN_VERSION = '3.0.0';
/**
* Class Instance.
*/
protected static $instance = null;
/**
* Constructor.
*/
public function __construct() {
add_action( 'woocommerce_init', array( $this, 'init' ) );
}
/**
* Loads API includes and registers routes.
*/
function init() {
if ( $this->is_woocommerce_valid() ) {
add_action( 'rest_api_init', array( $this, 'register_routes' ), 10 );
}
}
/**
* Makes sure WooCommerce is installed and up to date.
*/
public function is_woocommerce_valid() {
return (
class_exists( 'woocommerce' ) &&
version_compare(
get_option( 'woocommerce_db_version' ),
WC_API_Dev::WC_MIN_VERSION,
'>='
)
);
}
/**
* REST API includes.
* New endpoints/controllers can be added here.
*
* Controllers for the feature plugin are prefixed with WC_REST_DEV (rather than WC_REST)
* so that this plugin can play nice with the WooCommerce Core classes.
* They would be renamed on future sync to WooCommerce.
*/
public function includes() {
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-coupons-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-customer-downloads-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-customers-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-data-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-data-continents-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-data-countries-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-data-currencies-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-orders-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-order-notes-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-order-refunds-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-product-attribute-terms-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-product-attributes-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-product-categories-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-product-reviews-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-product-shipping-classes-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-product-tags-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-products-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-product-variations-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-report-sales-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-report-top-sellers-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-reports-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-settings-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-setting-options-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-shipping-zones-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-shipping-zone-locations-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-shipping-zone-methods-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-tax-classes-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-taxes-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-webhooks-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-system-status-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-system-status-tools-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-shipping-methods-controller.php' );
include_once( dirname( __FILE__ ) . '/api/class-wc-rest-dev-payment-gateways-controller.php' );
}
/**
* Register REST API routes.
*
* New endpoints/controllers can be added here.
*/
public function register_routes() {
$this->includes();
$controllers = array(
'WC_REST_Dev_Coupons_Controller',
'WC_REST_Dev_Customer_Downloads_Controller',
'WC_REST_Dev_Customers_Controller',
'WC_REST_Dev_Data_Controller',
'WC_REST_Dev_Data_Continents_Controller',
'WC_REST_Dev_Data_Countries_Controller',
'WC_REST_Dev_Data_Currencies_Controller',
'WC_REST_Dev_Order_Notes_Controller',
'WC_REST_Dev_Order_Refunds_Controller',
'WC_REST_Dev_Orders_Controller',
'WC_REST_Dev_Product_Attribute_Terms_Controller',
'WC_REST_Dev_Product_Attributes_Controller',
'WC_REST_Dev_Product_Categories_Controller',
'WC_REST_Dev_Product_Reviews_Controller',
'WC_REST_Dev_Product_Shipping_Classes_Controller',
'WC_REST_Dev_Product_Tags_Controller',
'WC_REST_Dev_Products_Controller',
'WC_REST_Dev_Product_Variations_Controller',
'WC_REST_Dev_Report_Sales_Controller',
'WC_REST_Dev_Report_Top_Sellers_Controller',
'WC_REST_Dev_Reports_Controller',
'WC_REST_Dev_Settings_Controller',
'WC_REST_Dev_Setting_Options_Controller',
'WC_REST_Dev_Shipping_Zones_Controller',
'WC_REST_Dev_Shipping_Zone_Locations_Controller',
'WC_REST_Dev_Shipping_Zone_Methods_Controller',
'WC_REST_Dev_Tax_Classes_Controller',
'WC_REST_Dev_Taxes_Controller',
'WC_REST_Dev_Webhooks_Controller',
'WC_REST_Dev_System_Status_Controller',
'WC_REST_Dev_System_Status_Tools_Controller',
'WC_REST_Dev_Shipping_Methods_Controller',
'WC_REST_Dev_Payment_Gateways_Controller',
);
foreach ( $controllers as $controller ) {
$this->$controller = new $controller();
$this->$controller->register_routes();
}
}
/**
* Class instance.
*/
public static function instance() {
if ( is_null( self::$instance ) ) {
self::$instance = new self();
}
return self::$instance;
}
}
WC_API_Dev::instance();