-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlockEditorRestEndpoint_Plugin.php
More file actions
163 lines (129 loc) · 5.25 KB
/
Copy pathBlockEditorRestEndpoint_Plugin.php
File metadata and controls
163 lines (129 loc) · 5.25 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
<?php
include_once('BlockEditorRestEndpoint_LifeCycle.php');
class BlockEditorRestEndpoint_Plugin extends BlockEditorRestEndpoint_LifeCycle {
/**
* See: http://plugin.michael-simpson.com/?page_id=31
* @return array of option meta data.
*/
public function getOptionMetaData() {
// http://plugin.michael-simpson.com/?page_id=31
return array(
//'_version' => array('Installed Version'), // Leave this one commented-out. Uncomment to test upgrades.
'ATextInput' => array(__('Enter in some text', 'my-awesome-plugin')),
'AmAwesome' => array(__('I like this awesome plugin', 'my-awesome-plugin'), 'false', 'true'),
'CanDoSomething' => array(__('Which user role can do something', 'my-awesome-plugin'),
'Administrator', 'Editor', 'Author', 'Contributor', 'Subscriber', 'Anyone')
);
}
// protected function getOptionValueI18nString($optionValue) {
// $i18nValue = parent::getOptionValueI18nString($optionValue);
// return $i18nValue;
// }
protected function initOptions() {
$options = $this->getOptionMetaData();
if (!empty($options)) {
foreach ($options as $key => $arr) {
if (is_array($arr) && count($arr) > 0) {
$this->addOption($key, $arr[0]);
}
}
}
}
public function getPluginDisplayName() {
return 'Block Editor REST endpoint';
}
protected function getMainPluginFileName() {
return 'block-editor-rest-endpoint.php';
}
/**
* See: http://plugin.michael-simpson.com/?page_id=101
* Called by install() to create any database tables if needed.
* Best Practice:
* (1) Prefix all table names with $wpdb->prefix
* (2) make table names lower case only
* @return void
*/
protected function installDatabaseTables() {
// global $wpdb;
// $tableName = $this->prefixTableName('mytable');
// $wpdb->query("CREATE TABLE IF NOT EXISTS `$tableName` (
// `id` INTEGER NOT NULL");
}
/**
* See: http://plugin.michael-simpson.com/?page_id=101
* Drop plugin-created tables on uninstall.
* @return void
*/
protected function unInstallDatabaseTables() {
// global $wpdb;
// $tableName = $this->prefixTableName('mytable');
// $wpdb->query("DROP TABLE IF EXISTS `$tableName`");
}
/**
* Perform actions when upgrading from version X to version Y
* See: http://plugin.michael-simpson.com/?page_id=35
* @return void
*/
public function upgrade() {
}
public function addActionsAndFilters() {
// Add options administration page
// http://plugin.michael-simpson.com/?page_id=47
add_action('admin_menu', array(&$this, 'addSettingsSubMenuPage'));
// Example adding a script & style just for the options administration page
// http://plugin.michael-simpson.com/?page_id=47
// if (strpos($_SERVER['REQUEST_URI'], $this->getSettingsSlug()) !== false) {
// wp_enqueue_script('my-script', plugins_url('/js/my-script.js', __FILE__));
// wp_enqueue_style('my-style', plugins_url('/css/my-style.css', __FILE__));
// }
// Add Actions & Filters
// http://plugin.michael-simpson.com/?page_id=37
add_action('wp_footer', array(&$this, 'get_blocks_array'));
add_action('rest_api_init', array(&$this, 'provide_post_as_block'));
// Adding scripts & styles to all pages
// Examples:
// wp_enqueue_script('jquery');
// wp_enqueue_style('my-style', plugins_url('/css/my-style.css', __FILE__));
// wp_enqueue_script('my-script', plugins_url('/js/my-script.js', __FILE__));
// Register short codes
// http://plugin.michael-simpson.com/?page_id=39
// Register AJAX hooks
// http://plugin.michael-simpson.com/?page_id=41
}
public function provide_post_as_block()
{
register_rest_route( 'stiegi/v1', 'post/(?P<id>\d+)',array(
'methods' => 'GET',
'callback' => array(&$this, 'get_post')
));
}
function get_post($request) {
global $wpdb;
$id = $request['id'];
$post_content = $wpdb->get_results('SELECT post_content FROM ' . $wpdb->posts . ' WHERE post_type = "post" AND ID = ' . $id . ' LIMIT 10');
if (empty($post_content)) {
return new WP_Error( 'empty_post', 'there is no post with this id', array('status' => 404) );
}
$response = new WP_REST_Response($this->get_blocks_array($id));
$response->set_status(200);
return $response;
}
public function get_blocks_array($id)
{
global $wpdb;
$result = $wpdb->get_results('SELECT post_content FROM ' . $wpdb->posts . ' WHERE post_type = "post" AND ID = "' . $id . '" LIMIT 10');
$reg = '/<!--\swp:(.+?)\s-->\n(.*?)\n/';
preg_match_all($reg, $result[0]->post_content, $matches);
$output = array();
for ($x = 1; $x < count($matches); $x++) {
foreach($matches[$x] as $key => $match) {
$property_name = 'type';
if ($x === 2) {
$property_name = "content";
}
$output[$key][$property_name] = $match;
}
}
return $output;
}
}