-
Notifications
You must be signed in to change notification settings - Fork 0
/
filterbubbler.php
289 lines (243 loc) · 7.57 KB
/
filterbubbler.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
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
<?php
/*
Plugin Name: FilterBubbler Plugin
Description: This plug-in makes your WordPress site into an FilterBubbler repository for corpora and recipes
Author: Brainfood
Author URI: http://www.brainfood.com
*/
defined( 'ABSPATH' ) or die( 'No direct access allowed' );
/**
* Register custom post types for FilterBubbler
*/
add_action( 'init', 'filterbubbler_cpt' );
function filterbubbler_cpt() {
// Register the classification post type
register_post_type( 'fb_corpus', array(
'labels' => array(
'name' => 'Corpura',
'singular_name' => 'Corpus',
),
'description' => 'Corpura for FilterBubbler',
'public' => true,
'menu_position' => 20,
'supports' => array( 'title', 'editor', 'custom-fields' )
));
// Register the classification post type
register_post_type( 'fb_classification', array(
'labels' => array(
'name' => 'Classifications',
'singular_name' => 'Classification',
),
'description' => 'Classifications for FilterBubbler',
'public' => true,
'menu_position' => 20,
'supports' => array( 'title', 'editor', 'custom-fields' )
));
// Register the recipe post type
register_post_type( 'fb_recipe', array(
'labels' => array(
'name' => 'Recipes',
'singular_name' => 'Recipe',
),
'description' => 'Recipes for FilterBubbler',
'public' => true,
'menu_position' => 20,
'supports' => array( 'title', 'editor', 'custom-fields' )
));
}
// Bind functions to REST calls
add_action( 'rest_api_init', function () {
register_rest_route( 'filterbubbler/v1', '/classification', array(
'methods' => 'GET',
'callback' => 'fb_list_classifications',
) );
register_rest_route( 'filterbubbler/v1', '/classification/(?P<corpus>\w+)', array(
'methods' => 'GET',
'callback' => 'fb_list_classifications',
) );
register_rest_route( 'filterbubbler/v1', '/corpus', array(
'methods' => 'GET',
'callback' => 'fb_list_corpura',
) );
register_rest_route( 'filterbubbler/v1', '/corpus/(?P<corpus>\w+)', array(
'methods' => 'GET',
'callback' => 'fb_list_classifications',
) );
register_rest_route( 'filterbubbler/v1', '/corpus', array(
'methods' => 'POST',
'callback' => 'fb_create_corpus',
) );
register_rest_route( 'filterbubbler/v1', '/classification', array(
'methods' => 'POST',
'callback' => 'fb_create_classification',
) );
register_rest_route( 'filterbubbler/v1', '/corpus/(?P<corpus>\w+)', array(
'methods' => 'POST',
'callback' => 'fb_create_classification',
) );
register_rest_route( 'filterbubbler/v1', '/recipe', array(
'methods' => 'GET',
'callback' => 'fb_get_recipes',
) );
} );
/**
* Get a list of corpura
*
* @param array $data Options for the function.
* @return string|null corpora names,
* or null if none.
*/
function fb_list_corpura( $data ) {
$corpus_posts = get_posts(array(
'post_type' => 'fb_corpus',
'orderby' => 'title'
));
$corpura = array();
foreach ($corpus_posts as $post) {
array_push($corpura, array('name' => $post->post_name, 'description' => $post->post_content));
}
return new WP_REST_Response($corpura, 200);
}
/**
* Read a corpus
*
* @param array $data Options for the function.
* @return string|null corpora names,
* or null if none.
*/
function fb_read_corpus( $data ) {
$corpus_posts = get_posts(array(
'post_type' => 'fb_corpus',
'orderby' => 'title',
'post_title' => $data['id']
));
$corpura = array();
foreach ($corpus_posts as $post) {
array_push($corpura, array('name' => $post->post_name, 'description' => $post->post_content));
}
return new WP_REST_Response($corpura, 200);
}
/**
* Create a new corpura
*
* @param array $data Options for the function.
* @return string|null corpora names,
* or null if none.
*/
function fb_create_corpus( $data ) {
$corpus_name = strtolower(wp_strip_all_tags($data['title']));
$corpus_description = wp_strip_all_tags($data['description']);
if (fb_corpus_exists($corpus_name)) {
return new WP_Error( 'code', 'Corpus '.$corpus_name.' already exists');
}
// Create post object
$post = array(
'post_type' => 'fb_corpus',
'post_title' => wp_strip_all_tags($data['title']),
'post_name' => $corpus_name,
'post_content' => $corpus_description,
'post_status' => 'publish'
);
// Insert the post into the database
$post_id = wp_insert_post( $post );
return new WP_REST_Response(array(
'id' => $post_id,
), 200);
}
/**
* Get a list of classifications
*
* @param array $data Options for the function.
* @return string|null corpora names,
* or null if none.
*/
function fb_list_classifications( $data ) {
$corpura_posts = get_posts(array(
'post_type' => 'fb_classification',
'orderby' => 'title'
));
$corpura = array();
foreach($corpura_posts as $post) {
array_push($corpura, array(
'url' => get_post_meta($post->ID, 'url', true),
'classification' => get_post_meta($post->ID, 'classification', true),
));
}
return new WP_REST_Response(array(
'corpus' => $data['corpus'],
'classifications' => $corpura,
), 200);
}
/**
* Create a new classification
*
* @param array $data Options for the function.
* @return string|null corpora names,
* or null if none.
*/
function fb_create_classification( $data ) {
$corpus = strtolower(wp_strip_all_tags($data['corpus']));
$classification = strtolower(wp_strip_all_tags($data['classification']));
$url = wp_strip_all_tags($data['url']);
if (!fb_corpus_exists($corpus)) {
return new WP_Error( 'code', 'Unknown corpus '.$corpus);
}
if (fb_classification_exists($corpus, $url, $classification)) {
return new WP_Error( 'code', 'Classification '.$classification.' already exists for '.$corpus);
}
// Create post object
$post = array(
'post_type' => 'fb_classification',
'post_title' => $corpus.','.$url.','.$classification,
'post_name' => sha1($corpus.$url.$classification),
'post_status' => 'publish',
'meta_input' => array(
'corpus' => $corpus,
'url' => $url,
'classification' => $classification
)
);
// Insert the post into the database
$post_id = wp_insert_post( $post );
return new WP_REST_Response(array(
'id' => $post_id,
), 200);
}
/**
* Get a list of recipes
*
* @param array $data Options for the function.
* @return string|null corpora names,
* or null if none.
*/
function fb_get_recipes( $data ) {
// Stub
$recipe_posts = get_posts(array(
'post_type' => 'fb_recipe',
'orderby' => 'title'
));
$recipes = array();
foreach($recipe_posts as $post) {
array_push($recipes, json_decode($post->post_content));
}
return new WP_REST_Response($recipes, 200);
return null;
}
/**
* Basic support functions
*/
/**
* Check if a corpura exists
*/
function fb_corpus_exists($name) {
$corpura = get_posts(array(
'post_type' => 'fb_corpus',
'name' => $name
));
return count($corpura) > 0;
}
/**
* Check if a classification exists
*/
function fb_classification_exists($corpus, $url, $classification) {
$classifications = get_posts(array(
'post_type' => 'fb_classification',
'name' => sha1($corpus.$url.$classification),
));
return count($classifications) > 0;
}
?>