4 * Name: WordPress Post Connector
5 * Description: Post to WordPress (or anything else which uses blogger XMLRPC API)
7 * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
10 function wppost_install() {
11 register_hook('post_local', 'addon/wppost/wppost.php', 'wppost_post_local');
12 register_hook('notifier_normal', 'addon/wppost/wppost.php', 'wppost_send');
13 register_hook('jot_networks', 'addon/wppost/wppost.php', 'wppost_jot_nets');
14 register_hook('connector_settings', 'addon/wppost/wppost.php', 'wppost_settings');
15 register_hook('connector_settings_post', 'addon/wppost/wppost.php', 'wppost_settings_post');
18 function wppost_uninstall() {
19 unregister_hook('post_local', 'addon/wppost/wppost.php', 'wppost_post_local');
20 unregister_hook('notifier_normal', 'addon/wppost/wppost.php', 'wppost_send');
21 unregister_hook('jot_networks', 'addon/wppost/wppost.php', 'wppost_jot_nets');
22 unregister_hook('connector_settings', 'addon/wppost/wppost.php', 'wppost_settings');
23 unregister_hook('connector_settings_post', 'addon/wppost/wppost.php', 'wppost_settings_post');
26 unregister_hook('post_local_end', 'addon/wppost/wppost.php', 'wppost_send');
27 unregister_hook('plugin_settings', 'addon/wppost/wppost.php', 'wppost_settings');
28 unregister_hook('plugin_settings_post', 'addon/wppost/wppost.php', 'wppost_settings_post');
33 function wppost_jot_nets(&$a,&$b) {
37 $wp_post = get_pconfig(local_user(),'wppost','post');
38 if(intval($wp_post) == 1) {
39 $wp_defpost = get_pconfig(local_user(),'wppost','post_by_default');
40 $selected = ((intval($wp_defpost) == 1) ? ' checked="checked" ' : '');
41 $b .= '<div class="profile-jot-net"><input type="checkbox" name="wppost_enable" ' . $selected . ' value="1" /> '
42 . t('Post to Wordpress') . '</div>';
47 function wppost_settings(&$a,&$s) {
52 /* Add our stylesheet to the page so we can make our settings look nice */
54 $a->page['htmlhead'] .= '<link rel="stylesheet" type="text/css" href="' . $a->get_baseurl() . '/addon/wppost/wppost.css' . '" media="all" />' . "\r\n";
56 /* Get the current state of our config variables */
58 $enabled = get_pconfig(local_user(),'wppost','post');
60 $checked = (($enabled) ? ' checked="checked" ' : '');
62 $def_enabled = get_pconfig(local_user(),'wppost','post_by_default');
63 $back_enabled = get_pconfig(local_user(),'wppost','backlink');
65 $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
66 $back_checked = (($back_enabled) ? ' checked="checked" ' : '');
68 $wp_username = get_pconfig(local_user(), 'wppost', 'wp_username');
69 $wp_password = get_pconfig(local_user(), 'wppost', 'wp_password');
70 $wp_blog = get_pconfig(local_user(), 'wppost', 'wp_blog');
73 /* Add some HTML to the existing form */
75 $s .= '<div class="settings-block">';
76 $s .= '<h3>' . t('WordPress Post Settings') . '</h3>';
77 $s .= '<div id="wppost-enable-wrapper">';
78 $s .= '<label id="wppost-enable-label" for="wppost-checkbox">' . t('Enable WordPress Post Plugin') . '</label>';
79 $s .= '<input id="wppost-checkbox" type="checkbox" name="wppost" value="1" ' . $checked . '/>';
80 $s .= '</div><div class="clear"></div>';
82 $s .= '<div id="wppost-username-wrapper">';
83 $s .= '<label id="wppost-username-label" for="wppost-username">' . t('WordPress username') . '</label>';
84 $s .= '<input id="wppost-username" type="text" name="wp_username" value="' . $wp_username . '" />';
85 $s .= '</div><div class="clear"></div>';
87 $s .= '<div id="wppost-password-wrapper">';
88 $s .= '<label id="wppost-password-label" for="wppost-password">' . t('WordPress password') . '</label>';
89 $s .= '<input id="wppost-password" type="password" name="wp_password" value="' . $wp_password . '" />';
90 $s .= '</div><div class="clear"></div>';
92 $s .= '<div id="wppost-blog-wrapper">';
93 $s .= '<label id="wppost-blog-label" for="wppost-blog">' . t('WordPress API URL') . '</label>';
94 $s .= '<input id="wppost-blog" type="text" name="wp_blog" value="' . $wp_blog . '" />';
95 $s .= '</div><div class="clear"></div>';
97 $s .= '<div id="wppost-bydefault-wrapper">';
98 $s .= '<label id="wppost-bydefault-label" for="wppost-bydefault">' . t('Post to WordPress by default') . '</label>';
99 $s .= '<input id="wppost-bydefault" type="checkbox" name="wp_bydefault" value="1" ' . $def_checked . '/>';
100 $s .= '</div><div class="clear"></div>';
102 $s .= '<div id="wppost-backlink-wrapper">';
103 $s .= '<label id="wppost-backlink-label" for="wppost-backlink">' . t('Provide a backlink to the Friendica post') . '</label>';
104 $s .= '<input id="wppost-backlink" type="checkbox" name="wp_backlink" value="1" ' . $back_checked . '/>';
106 $s .= '</div><div class="clear"></div>';
108 /* provide a submit button */
110 $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="wppost-submit" name="wppost-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
115 function wppost_settings_post(&$a,&$b) {
117 if(x($_POST,'wppost-submit')) {
119 set_pconfig(local_user(),'wppost','post',intval($_POST['wppost']));
120 set_pconfig(local_user(),'wppost','post_by_default',intval($_POST['wp_bydefault']));
121 set_pconfig(local_user(),'wppost','wp_username',trim($_POST['wp_username']));
122 set_pconfig(local_user(),'wppost','wp_password',trim($_POST['wp_password']));
123 set_pconfig(local_user(),'wppost','wp_blog',trim($_POST['wp_blog']));
124 set_pconfig(local_user(),'wppost','backlink',trim($_POST['wp_backlink']));
130 function wppost_post_local(&$a,&$b) {
132 // This can probably be changed to allow editing by pointing to a different API endpoint
137 if((! local_user()) || (local_user() != $b['uid']))
140 if($b['private'] || $b['parent'])
143 $wp_post = intval(get_pconfig(local_user(),'wppost','post'));
145 $wp_enable = (($wp_post && x($_REQUEST,'wppost_enable')) ? intval($_REQUEST['wppost_enable']) : 0);
147 if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'wppost','post_by_default')))
153 if(strlen($b['postopts']))
154 $b['postopts'] .= ',';
155 $b['postopts'] .= 'wppost';
161 function wppost_send(&$a,&$b) {
163 if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
166 if(! strstr($b['postopts'],'wppost'))
169 if($b['parent'] != $b['id'])
173 $wp_username = xmlify(get_pconfig($b['uid'],'wppost','wp_username'));
174 $wp_password = xmlify(get_pconfig($b['uid'],'wppost','wp_password'));
175 $wp_blog = get_pconfig($b['uid'],'wppost','wp_blog');
177 if($wp_username && $wp_password && $wp_blog) {
179 require_once('include/bbcode.php');
180 require_once('include/html2plain.php');
182 $wptitle = trim($b['title']);
184 // If the title is empty then try to guess
185 if ($wptitle == '') {
186 // Take the description from the bookmark
187 if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches))
188 $wptitle = $matches[2];
190 // If no bookmark is found then take the first line
191 if ($wptitle == '') {
192 $title = html2plain(bbcode($b['body']), 0, true);
193 $pos = strpos($title, "\n");
194 if (($pos == 0) or ($pos > 60))
197 $wptitle = substr($title, 0, $pos);
201 $title = '<title>' . (($wptitle) ? $wptitle : t('Post from Friendica')) . '</title>';
202 $post = $title . bbcode($b['body']);
204 $wp_backlink = intval(get_pconfig($b['uid'],'wppost','backlink'));
205 if($wp_backlink && $b['plink'])
206 $post .= EOL . EOL . '<a href="' . $b['plink'] . '">'
207 . t('Read the original post and comment stream on Friendica') . '</a>' . EOL . EOL;
209 $post = xmlify($post);
213 <?xml version=\"1.0\" encoding=\"utf-8\"?>
215 <methodName>blogger.newPost</methodName>
217 <param><value><string/></value></param>
218 <param><value><string/></value></param>
219 <param><value><string>$wp_username</string></value></param>
220 <param><value><string>$wp_password</string></value></param>
221 <param><value><string>$post</string></value></param>
222 <param><value><int>1</int></value></param>
228 logger('wppost: data: ' . $xml, LOGGER_DATA);
230 if($wp_blog !== 'test')
231 $x = post_url($wp_blog,$xml);
232 logger('posted to wordpress: ' . (($x) ? $x : ''), LOGGER_DEBUG);