]> git.mxchange.org Git - friendica-addons.git/blob - wppost/wppost.php
Merge pull request #177 from annando/master
[friendica-addons.git] / wppost / wppost.php
1 <?php
2
3 /**
4  * Name: WordPress Post Connector
5  * Description: Post to WordPress (or anything else which uses blogger XMLRPC API)
6  * Version: 1.0
7  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
8  */
9
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');
16
17 }
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');
24
25         // obsolete - remove
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');
29
30 }
31
32
33 function wppost_jot_nets(&$a,&$b) {
34     if(! local_user())
35         return;
36
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>';
43     }
44 }
45
46
47 function wppost_settings(&$a,&$s) {
48
49     if(! local_user())
50         return;
51
52     /* Add our stylesheet to the page so we can make our settings look nice */
53
54     $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/wppost/wppost.css' . '" media="all" />' . "\r\n";
55
56     /* Get the current state of our config variables */
57
58     $enabled = get_pconfig(local_user(),'wppost','post');
59
60     $checked = (($enabled) ? ' checked="checked" ' : '');
61
62     $def_enabled = get_pconfig(local_user(),'wppost','post_by_default');
63     $back_enabled = get_pconfig(local_user(),'wppost','backlink');
64
65     $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
66     $back_checked = (($back_enabled) ? ' checked="checked" ' : '');
67
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');
71
72
73     /* Add some HTML to the existing form */
74
75     $s .= '<span id="settings_wppost_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_wppost_expanded\'); openClose(\'settings_wppost_inflated\');">';
76     $s .= '<h3>' . t('WordPress Post Settings') . '</h3>';
77     $s .= '</span>';
78     $s .= '<div id="settings_wppost_expanded" class="settings-block" style="display: none;">';
79     $s .= '<span class="fakelink" onclick="openClose(\'settings_wppost_expanded\'); openClose(\'settings_wppost_inflated\');">';
80     $s .= '<h3>' . t('WordPress Post Settings') . '</h3>';
81     $s .= '</span>';
82     $s .= '<div id="wppost-enable-wrapper">';
83     $s .= '<label id="wppost-enable-label" for="wppost-checkbox">' . t('Enable WordPress Post Plugin') . '</label>';
84     $s .= '<input id="wppost-checkbox" type="checkbox" name="wppost" value="1" ' . $checked . '/>';
85     $s .= '</div><div class="clear"></div>';
86
87     $s .= '<div id="wppost-username-wrapper">';
88     $s .= '<label id="wppost-username-label" for="wppost-username">' . t('WordPress username') . '</label>';
89     $s .= '<input id="wppost-username" type="text" name="wp_username" value="' . $wp_username . '" />';
90     $s .= '</div><div class="clear"></div>';
91
92     $s .= '<div id="wppost-password-wrapper">';
93     $s .= '<label id="wppost-password-label" for="wppost-password">' . t('WordPress password') . '</label>';
94     $s .= '<input id="wppost-password" type="password" name="wp_password" value="' . $wp_password . '" />';
95     $s .= '</div><div class="clear"></div>';
96
97     $s .= '<div id="wppost-blog-wrapper">';
98     $s .= '<label id="wppost-blog-label" for="wppost-blog">' . t('WordPress API URL') . '</label>';
99     $s .= '<input id="wppost-blog" type="text" name="wp_blog" value="' . $wp_blog . '" />';
100     $s .= '</div><div class="clear"></div>';
101
102     $s .= '<div id="wppost-bydefault-wrapper">';
103     $s .= '<label id="wppost-bydefault-label" for="wppost-bydefault">' . t('Post to WordPress by default') . '</label>';
104     $s .= '<input id="wppost-bydefault" type="checkbox" name="wp_bydefault" value="1" ' . $def_checked . '/>';
105     $s .= '</div><div class="clear"></div>';
106
107     $s .= '<div id="wppost-backlink-wrapper">';
108     $s .= '<label id="wppost-backlink-label" for="wppost-backlink">' . t('Provide a backlink to the Friendica post') . '</label>';
109     $s .= '<input id="wppost-backlink" type="checkbox" name="wp_backlink" value="1" ' . $back_checked . '/>';
110
111     $s .= '</div><div class="clear"></div>';
112
113     /* provide a submit button */
114
115     $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="wppost-submit" name="wppost-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
116
117 }
118
119
120 function wppost_settings_post(&$a,&$b) {
121
122         if(x($_POST,'wppost-submit')) {
123
124                 set_pconfig(local_user(),'wppost','post',intval($_POST['wppost']));
125                 set_pconfig(local_user(),'wppost','post_by_default',intval($_POST['wp_bydefault']));
126                 set_pconfig(local_user(),'wppost','wp_username',trim($_POST['wp_username']));
127                 set_pconfig(local_user(),'wppost','wp_password',trim($_POST['wp_password']));
128                 set_pconfig(local_user(),'wppost','wp_blog',trim($_POST['wp_blog']));
129                 set_pconfig(local_user(),'wppost','backlink',trim($_POST['wp_backlink']));
130
131         }
132
133 }
134
135 function wppost_post_local(&$a,&$b) {
136
137         // This can probably be changed to allow editing by pointing to a different API endpoint
138
139         if($b['edit'])
140                 return;
141
142         if((! local_user()) || (local_user() != $b['uid']))
143                 return;
144
145         if($b['private'] || $b['parent'])
146                 return;
147
148     $wp_post   = intval(get_pconfig(local_user(),'wppost','post'));
149
150         $wp_enable = (($wp_post && x($_REQUEST,'wppost_enable')) ? intval($_REQUEST['wppost_enable']) : 0);
151
152         if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'wppost','post_by_default')))
153                 $wp_enable = 1;
154
155     if(! $wp_enable)
156        return;
157
158     if(strlen($b['postopts']))
159        $b['postopts'] .= ',';
160      $b['postopts'] .= 'wppost';
161 }
162
163
164
165
166 function wppost_send(&$a,&$b) {
167
168     if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
169         return;
170
171     if(! strstr($b['postopts'],'wppost'))
172         return;
173
174     if($b['parent'] != $b['id'])
175         return;
176
177
178         $wp_username = xmlify(get_pconfig($b['uid'],'wppost','wp_username'));
179         $wp_password = xmlify(get_pconfig($b['uid'],'wppost','wp_password'));
180         $wp_blog = get_pconfig($b['uid'],'wppost','wp_blog');
181
182         if($wp_username && $wp_password && $wp_blog) {
183
184                 require_once('include/bbcode.php');
185                 require_once('include/html2plain.php');
186
187                 $wptitle = trim($b['title']);
188
189                 // If the title is empty then try to guess
190                 if ($wptitle == '') {
191                         // Take the description from the bookmark
192                         if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches))
193                                 $wptitle = $matches[2];
194
195                         // If no bookmark is found then take the first line
196                         if ($wptitle == '') {
197                                 // Remove the share element before fetching the first line
198                                 $title = trim(preg_replace("/\[share.*?\](.*?)\[\/share\]/ism","\n$1\n",$b['body']));
199
200                                 $title = html2plain(bbcode($title, false, false), 0, true)."\n";
201                                 $pos = strpos($title, "\n");
202                                 $trailer = "";
203                                 if (($pos == 0) or ($pos > 100)) {
204                                         $pos = 100;
205                                         $trailer = "...";
206                                 }
207
208                                 $wptitle = substr($title, 0, $pos).$trailer;
209                         }
210                 }
211
212                 $title = '<title>' . (($wptitle) ? $wptitle : t('Post from Friendica')) . '</title>';
213                 $post = bbcode($b['body'], false, false, 4);
214
215                 // If a link goes to youtube then remove the stuff around it. Wordpress detects youtube links and embeds it
216                 $post = preg_replace('/<a.*?href="(https?:\/\/www.youtube.com\/.*?)".*?>(.*?)<\/a>/ism',"\n$1\n",$post);
217                 $post = preg_replace('/<a.*?href="(https?:\/\/youtu.be\/.*?)".*?>(.*?)<\/a>/ism',"\n$1\n",$post);
218
219                 $post = $title.$post;
220
221                 $wp_backlink = intval(get_pconfig($b['uid'],'wppost','backlink'));
222                 if($wp_backlink && $b['plink'])
223                         $post .= EOL . EOL . '<a href="' . $b['plink'] . '">'
224                                 . t('Read the original post and comment stream on Friendica') . '</a>' . EOL . EOL;
225
226                 $post = xmlify($post);
227
228
229                 $xml = <<< EOT
230 <?xml version=\"1.0\" encoding=\"utf-8\"?>
231 <methodCall>
232   <methodName>blogger.newPost</methodName>
233   <params>
234     <param><value><string/></value></param>
235     <param><value><string/></value></param>
236     <param><value><string>$wp_username</string></value></param>
237     <param><value><string>$wp_password</string></value></param>
238     <param><value><string>$post</string></value></param>
239     <param><value><int>1</int></value></param>
240   </params>
241 </methodCall>
242
243 EOT;
244
245                 logger('wppost: data: ' . $xml, LOGGER_DATA);
246
247                 if($wp_blog !== 'test')
248                         $x = post_url($wp_blog,$xml);
249                 logger('posted to wordpress: ' . (($x) ? $x : ''), LOGGER_DEBUG);
250
251         }
252 }
253