-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprli-api.php
More file actions
233 lines (210 loc) · 8.51 KB
/
prli-api.php
File metadata and controls
233 lines (210 loc) · 8.51 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
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
<?php
/**
* Pretty Link WordPress Plugin API
*/
/**
* Returns the API Version as a string.
*/
function prli_api_version()
{
return '1.3';
}
/**
* Create a Pretty Link for a long, ugly URL.
*
* @param string $target_url Required, it is the value of the Target URL you
* want the Pretty Link to redirect to
*
* @param string $slug Optional, slug for the Pretty Link (string that comes
* after the Pretty Link's slash) if this value isn't set
* then a random slug will be automatically generated.
*
* @param string $name Optional, name for the Pretty Link. If this value isn't
* set then the name will be the slug.
*
* @param string $description Optional, description for the Pretty Link.
*
* @param integer $group_id Optional, the group that this link will be placed in.
* If this value isn't set then the link will not be
* placed in a group.
*
* @param boolean $link_track_me Optional, If true the link will be tracked,
* if not set the default value (from the pretty
* link option page) will be used
*
* @param boolean $link_nofollow Optional, If true the nofollow attribute will
* be set for the link, if not set the default
* value (from the pretty link option page) will
* be used
*
* @param string $link_redirect_type Optional, valid values include '307', '301',
* 'prettybar', 'cloak' or 'pixel'
* if not set the default value (from the pretty
* link option page) will be used
*
* @return boolean / string The Full Pretty Link if Successful and false for Failure.
* This function will also set a global variable named
* $prli_pretty_slug which gives the slug of the link
* created if the link is successfully created -- it will
* set a variable named $prli_error_messages if the link
* was not successfully created.
*/
function prli_create_pretty_link( $target_url,
$slug = '',
$name = '',
$description = '',
$group_id = 0,
$track_me = '',
$nofollow = '',
$redirect_type = '',
$param_forwarding = '',
$param_struct = '' )
{
global $wpdb, $prli_link, $prli_blogurl;
global $prli_error_messages, $prli_pretty_link, $prli_pretty_slug, $prli_options;
$prli_error_messages = array();
$values = array();
$values['url'] = $target_url;
$values['slug'] = (($slug == '')?$prli_link->generateValidSlug():$slug);
$values['name'] = $name;
$values['description'] = $description;
$values['group_id'] = $group_id;
$values['redirect_type'] = (($redirect_type == '')?$prli_options->link_redirect_type:$redirect_type);
$values['nofollow'] = (($nofollow == '')?$prli_options->link_nofollow:$nofollow);
$values['track_me'] = (($track_me == '')?$prli_options->link_track_me:$track_me);
$values['param_forwarding'] = (($param_forwarding == '')?'off':$param_forwarding);
$values['param_struct'] = $param_struct;
// make array look like $_POST
if(empty($values['nofollow']) or !$values['nofollow'])
unset($values['nofollow']);
if(empty($values['track_me']) or !$values['track_me'])
unset($values['track_me']);
$prli_error_messages = $prli_link->validate( $values );
if( count($prli_error_messages) == 0 )
{
if( $id = $prli_link->create( $values ) )
return $id;
else
{
$prli_error_messages[] = "An error prevented your Pretty Link from being created";
return false;
}
}
else
return false;
}
function prli_update_pretty_link( $id,
$target_url = '',
$slug = '',
$name = -1,
$description = -1,
$group_id = '',
$track_me = '',
$nofollow = '',
$redirect_type = '',
$param_forwarding = '',
$param_struct = -1 )
{
global $wpdb, $prli_link, $prli_blogurl;
global $prli_error_messages, $prli_pretty_link, $prli_pretty_slug;
if(empty($id))
{
$prli_error_messages[] = "Pretty Link ID must be set for successful update.";
return false;
}
$record = $prli_link->getOne($id);
$prli_error_messages = array();
$values = array();
$values['id'] = $id;
$values['url'] = (($target_url == '')?$record->url:$target_url);
$values['slug'] = (($slug == '')?$record->slug:$slug);
$values['name'] = (($name == -1)?$record->name:$name);
$values['description'] = (($description == -1)?$record->description:$description);
$values['group_id'] = (($group_id == '')?$record->group_id:$group_id);
$values['redirect_type'] = (($redirect_type == '')?$record->redirect_type:$redirect_type);
$values['nofollow'] = (($nofollow == '')?$record->nofollow:$nofollow);
$values['track_me'] = (($track_me == '')?(int)$record->track_me:$track_me);
$values['param_forwarding'] = (($param_forwarding == '')?$record->param_forwarding:$param_forwarding);
$values['param_struct'] = (($param_struct == -1)?$record->param_struct:$param_struct);
// make array look like $_POST
if(empty($values['nofollow']) or !$values['nofollow'])
unset($values['nofollow']);
if(empty($values['track_me']) or !$values['track_me'])
unset($values['track_me']);
$prli_error_messages = $prli_link->validate( $values );
if( count($prli_error_messages) == 0 )
{
if( $prli_link->update( $id, $values ) )
return true;
else
{
$prli_error_messages[] = "An error prevented your Pretty Link from being created";
return false;
}
}
else
return false;
}
/**
* Get all the pretty link groups in an array suitable for creating a select box.
*
* @return bool (false if failure) | array A numerical array of associative arrays
* containing all the data about the pretty
* link groups.
*/
function prli_get_all_groups()
{
global $prli_group;
$groups = $prli_group->getAll('',' ORDER BY gr.name', ARRAY_A);
return $groups;
}
/**
* Get all the pretty links in an array suitable for creating a select box.
*
* @return bool (false if failure) | array A numerical array of associative arrays
* containing all the data about the pretty
* links.
*/
function prli_get_all_links()
{
global $prli_link;
$links = $prli_link->getAll('',' ORDER BY li.name', ARRAY_A);
return $links;
}
/**
* Gets a specific link from a slug and returns info about it in an array
*
* @return bool (false if failure) | array An associative array with all the
* data about the given pretty link.
*/
function prli_get_link_from_slug($slug, $return_type = OBJECT, $include_stats = false)
{
global $prli_link;
$link = $prli_link->getOneFromSlug($slug, $return_type, $include_stats);
return $link;
}
/**
* Gets a specific link from id and returns info about it in an array
*
* @return bool (false if failure) | array An associative array with all the
* data about the given pretty link.
*/
function prli_get_link($id, $return_type = OBJECT, $include_stats = false)
{
global $prli_link;
$link = $prli_link->getOne($id, $return_type, $include_stats);
return $link;
}
/**
* Gets the full pretty link url from an id
*
* @return bool (false if failure) | string the pretty link url
*/
function prli_get_pretty_link_url($id)
{
global $prli_link,$prli_blogurl;
if($pretty_link = $prli_link->getOne($id))
return "{$prli_blogurl}".PrliUtils::get_permalink_pre_slug_uri()."{$pretty_link->slug}";
return false;
}
?>