forked from bellthomas/Wordpress_PostController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass.postcontroller.php
273 lines (237 loc) · 7.47 KB
/
class.postcontroller.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
<?php
/**
* Wrapper Class to create/manage/update Wordpress posts and pages.
*
* @author Harri Bell-Thomas <[email protected]>
* @created January, 2014
* @version 1.0.0
* @license Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0)
* @license url : http://creativecommons.org/licenses/by-sa/3.0/
*/
if (!isset($wp_rewrite))
$wp_rewrite = new WP_Rewrite();
class PostController {
// Variables for Post Data
public $PC_title;
public $PC_type;
public $PC_content;
public $PC_category;
public $PC_template;
public $PC_slug;
public $PC_auth_id;
public $PC_status = "publish";
// Variables for Post Updating
public $PC_current_post;
public $PC_current_post_id;
public $PC_current_post_permalink;
// Error Array
public $PC_errors;
// Creation functions
public function create() {
if(isset($this->PC_title) ) {
if ($this->PC_type == 'page')
$post = get_page_by_title( $this->PC_title, 'OBJECT', $this->PC_type );
else
$post = get_page_by_title( $this->PC_title, 'OBJECT', $this->PC_type );
$post_data = array(
'post_title' => wp_strip_all_tags($this->PC_title),
'post_name' => $this->PC_slug,
'post_content' => $this->PC_content,
'post_status' => $this->PC_status,
'post_type' => $this->PC_type,
'post_author' => $this->PC_auth_id,
'post_category' => $this->PC_category,
'page_template' => $this->PC_template
);
if(!isset($post)){
$this->PC_current_post_id = wp_insert_post( $post_data, $error_obj );
$this->PC_current_post = get_post((integer)$this->PC_current_post_id, 'OBJECT');
$this->PC_current_post_permalink = get_permalink((integer)$this->PC_current_post_id);
return $error_obj;
}
else {
$this->update();
$this->errors[] = 'That page already exists. Try updating instead. Control passed to the update() function.';
return FALSE;
}
}
else {
$this->errors[] = 'Title has not been set.';
return FALSE;
}
}
// SET POST'S TITLE
public function set_title($name){
$this->PC_title = $name;
return $this->PC_title;
}
// SET POST'S TYPE
public function set_type($type){
$this->PC_type = $type;
return $this->PC_type;
}
// SET POST'S CONTENT
public function set_content($content){
$this->PC_content = $content;
return $this->PC_content;
}
// SET POST'S AUTHOR ID
public function set_author_id($auth_id){
$this->PC_auth_id = $auth_id;
return $this->PC_auth_id;
}
// SET POST'S STATE
public function set_post_state($content){
$this->PC_status = $content;
return $this->PC_status;
}
// SET POST SLUG
public function set_post_slug($slug){
$args = array('name' => $slug);
$posts_query = get_posts( $args );
if( !get_posts( $args ) && !get_page_by_path( $this->PC_slug ) ) {
$this->PC_slug = $slug;
return $this->PC_slug;
}
else {
$this->errors[] = 'Slug already in use.';
return FALSE;
}
}
// SET PAGE TEMPLATE
public function set_page_template($content){
if ($this->PC_type == "page") {
$this->PC_template = $content;
return $this->PC_template;
}
else {
$this->errors[] = 'You can only use template for pages.';
return FALSE;
}
}
// ADD CATEGORY IDs TO THE CATEGORIES ARRAY
public function add_category($IDs){
if(is_array($IDs)) {
foreach ($IDs as $id) {
if (is_int($id)) {
$this->PC_category[] = $id;
} else {
$this->errors[] = '<b>' .$id . '</b> is not a valid integer input.';
return FALSE;
}
}
} else {
$this->errors[] = 'Input specified in not a valid array.';
return FALSE;
}
}
// Search for Post function
public function search($by, $data){
switch ($by) {
case 'id' :
if(is_integer($data) && get_post((integer)$data) !== NULL) {
$this->PC_current_post = get_post((integer)$data, 'OBJECT');
$this->PC_current_post_id = (integer)$data;
$this->PC_current_post_permalink = get_permalink((integer)$data);
return TRUE;
} else {
$this->errors[] = 'No post found with that ID.';
return FALSE;
}
break;
case 'title' :
$post = get_page_by_title($data);
$id = $post->ID;
if(is_integer($id) && get_post((integer)$id) !== NULL) {
$this->PC_current_post = get_post((integer)$id, 'OBJECT');
$this->PC_current_post_id = (integer)$id;
$this->PC_current_post_permalink = get_permalink((integer)$id);
return TRUE;
} else {
$this->errors[] = 'No post found with that title.';
return FALSE;
}
break;
case 'slug' :
$args = array('name' => $data, 'max_num_posts' => 1);
$posts_query = get_posts( $args );
if( $posts_query )
$id = $posts_query[0]->ID;
else
$this->errors[] = 'No post found with that slug.';
if(is_integer($id) && get_post((integer)$id) !== NULL) {
$this->PC_current_post = get_post((integer)$id, 'OBJECT');
$this->PC_current_post_id = (integer)$id;
$this->PC_current_post_permalink = get_permalink((integer)$id);
return TRUE;
} else {
$this->errors[] = 'No post found with that slug.';
return FALSE;
}
break;
default:
$this->errors[] = 'No post found.';
return FALSE;
break;
}
}
// Update Post
public function update(){
if (isset($this->PC_current_post_id)) {
// Declare ID of Post to be updated
$PC_post['ID'] = $this->PC_current_post_id;
// Declare ID of Post to be updated
if (isset($this->PC_title) && $this->PC_title !== $this->PC_current_post->post_title)
$PC_post['post_title'] = $this->PC_title;
if (isset($this->PC_type) && $this->PC_type !== $this->PC_current_post->post_type)
$PC_post['post_type'] = $this->PC_type;
if (isset($this->PC_auth_id) && $this->PC_auth_id !== $this->PC_current_post->post_type)
$PC_post['post_author'] = $this->PC_auth_id;
if (isset($this->PC_status) && $this->PC_status !== $this->PC_current_post->post_status)
$PC_post['post_status'] = $this->PC_status;
if (isset($this->PC_category) && $this->PC_category !== $this->PC_current_post->post_category)
$PC_post['post_category'] = $this->PC_category;
if (isset($this->PC_template) && $this->PC_template !== $this->PC_current_post->page_template && ($PC_post['post_type'] == 'page' || $this->PC_current_post->post_type == 'page'))
$PC_post['page_template'] = $this->PC_template;
if (isset($this->PC_slug) && $this->PC_slug !== $this->PC_current_post->post_name) {
$args = array('name' => $this->PC_slug);
if( !get_posts( $args ) && !get_page_by_path( $this->PC_slug ) )
$PC_post['post_name'] = $this->PC_slug;
else
$errors[] = 'Slug Defined is Not Unique';
}
if (isset($this->PC_content) && $this->PC_content !== $this->PC_status->post_content )
$PC_post['post_content'] = $this->PC_content;
wp_update_post( $PC_post );
}
return($errors);
}
// General functions
public function get_content(){
if (isset($this->PC_status->post_content ) )
return $this->PC_status->post_content;
}
public function get_var($name){
$name = 'PC_'.$name;
if (isset($this->$name))
return $this->$name;
}
public function unset_all(){
foreach (get_class_vars(get_class($this)) as $name => $default)
$this->$name = $default;
}
public function __toString() {
return 'Use the PrettyPrint function to return the contents of this Object. E.g;<pre>$my_post->PrettyPrintAll();</pre>';
}
public function PrettyPrint($data){
echo "<pre>";
print_r($data);
echo "</pre>";
}
public function PrettyPrintAll(){
echo "<pre>";
print_r($this);
echo "</pre>";
}
}
?>