]> git.mxchange.org Git - friendica-addons.git/blob - wppost/wppost.php
Merge pull request #388 from tobiasd/20161120-es
[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         $checked = (($enabled) ? ' checked="checked" ' : '');
60
61         $css = (($enabled) ? '' : '-disabled');
62
63         $def_enabled = get_pconfig(local_user(),'wppost','post_by_default');
64         $back_enabled = get_pconfig(local_user(),'wppost','backlink');
65         $shortcheck_enabled = get_pconfig(local_user(),'wppost','shortcheck');
66
67         $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
68         $back_checked = (($back_enabled) ? ' checked="checked" ' : '');
69         $shortcheck_checked = (($shortcheck_enabled) ? ' checked="checked" ' : '');
70
71         $wp_username = get_pconfig(local_user(), 'wppost', 'wp_username');
72         $wp_password = get_pconfig(local_user(), 'wppost', 'wp_password');
73         $wp_blog = get_pconfig(local_user(), 'wppost', 'wp_blog');
74
75
76     /* Add some HTML to the existing form */
77
78     $s .= '<span id="settings_wppost_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_wppost_expanded\'); openClose(\'settings_wppost_inflated\');">';
79     $s .= '<img class="connector'.$css.'" src="images/wordpress.png" /><h3 class="connector">'. t('Wordpress Export').'</h3>';
80     $s .= '</span>';
81     $s .= '<div id="settings_wppost_expanded" class="settings-block" style="display: none;">';
82     $s .= '<span class="fakelink" onclick="openClose(\'settings_wppost_expanded\'); openClose(\'settings_wppost_inflated\');">';
83     $s .= '<img class="connector'.$css.'" src="images/wordpress.png" /><h3 class="connector">'. t('Wordpress Export').'</h3>';
84     $s .= '</span>';
85     $s .= '<div id="wppost-enable-wrapper">';
86     $s .= '<label id="wppost-enable-label" for="wppost-checkbox">' . t('Enable WordPress Post Plugin') . '</label>';
87     $s .= '<input id="wppost-checkbox" type="checkbox" name="wppost" value="1" ' . $checked . '/>';
88     $s .= '</div><div class="clear"></div>';
89
90     $s .= '<div id="wppost-username-wrapper">';
91     $s .= '<label id="wppost-username-label" for="wppost-username">' . t('WordPress username') . '</label>';
92     $s .= '<input id="wppost-username" type="text" name="wp_username" value="' . $wp_username . '" />';
93     $s .= '</div><div class="clear"></div>';
94
95     $s .= '<div id="wppost-password-wrapper">';
96     $s .= '<label id="wppost-password-label" for="wppost-password">' . t('WordPress password') . '</label>';
97     $s .= '<input id="wppost-password" type="password" name="wp_password" value="' . $wp_password . '" />';
98     $s .= '</div><div class="clear"></div>';
99
100     $s .= '<div id="wppost-blog-wrapper">';
101     $s .= '<label id="wppost-blog-label" for="wppost-blog">' . t('WordPress API URL') . '</label>';
102     $s .= '<input id="wppost-blog" type="text" name="wp_blog" value="' . $wp_blog . '" />';
103     $s .= '</div><div class="clear"></div>';
104
105     $s .= '<div id="wppost-bydefault-wrapper">';
106     $s .= '<label id="wppost-bydefault-label" for="wppost-bydefault">' . t('Post to WordPress by default') . '</label>';
107     $s .= '<input id="wppost-bydefault" type="checkbox" name="wp_bydefault" value="1" ' . $def_checked . '/>';
108     $s .= '</div><div class="clear"></div>';
109
110     $s .= '<div id="wppost-backlink-wrapper">';
111     $s .= '<label id="wppost-backlink-label" for="wppost-backlink">' . t('Provide a backlink to the Friendica post') . '</label>';
112     $s .= '<input id="wppost-backlink" type="checkbox" name="wp_backlink" value="1" ' . $back_checked . '/>';
113     $s .= '</div><div class="clear"></div>';
114
115     $s .= '<div id="wppost-shortcheck-wrapper">';
116     $s .= '<label id="wppost-shortcheck-label" for="wppost-shortcheck">' . t("Don't post messages that are too short") . '</label>';
117     $s .= '<input id="wppost-shortcheck" type="checkbox" name="wp_shortcheck" value="1" '.$shortcheck_checked.'/>';
118     $s .= '</div><div class="clear"></div>';
119
120     /* provide a submit button */
121
122     $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="wppost-submit" name="wppost-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
123
124 }
125
126
127 function wppost_settings_post(&$a,&$b) {
128
129         if(x($_POST,'wppost-submit')) {
130
131                 set_pconfig(local_user(),'wppost','post',intval($_POST['wppost']));
132                 set_pconfig(local_user(),'wppost','post_by_default',intval($_POST['wp_bydefault']));
133                 set_pconfig(local_user(),'wppost','wp_username',trim($_POST['wp_username']));
134                 set_pconfig(local_user(),'wppost','wp_password',trim($_POST['wp_password']));
135                 set_pconfig(local_user(),'wppost','wp_blog',trim($_POST['wp_blog']));
136                 set_pconfig(local_user(),'wppost','backlink',trim($_POST['wp_backlink']));
137                 set_pconfig(local_user(),'wppost','shortcheck',trim($_POST['wp_shortcheck']));
138
139         }
140
141 }
142
143 function wppost_post_local(&$a,&$b) {
144
145         // This can probably be changed to allow editing by pointing to a different API endpoint
146
147         if($b['edit'])
148                 return;
149
150         if((! local_user()) || (local_user() != $b['uid']))
151                 return;
152
153         if($b['private'] || $b['parent'])
154                 return;
155
156     $wp_post   = intval(get_pconfig(local_user(),'wppost','post'));
157
158         $wp_enable = (($wp_post && x($_REQUEST,'wppost_enable')) ? intval($_REQUEST['wppost_enable']) : 0);
159
160         if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'wppost','post_by_default')))
161                 $wp_enable = 1;
162
163     if(! $wp_enable)
164        return;
165
166     if(strlen($b['postopts']))
167        $b['postopts'] .= ',';
168      $b['postopts'] .= 'wppost';
169 }
170
171
172
173
174 function wppost_send(&$a,&$b) {
175
176         if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
177                 return;
178
179         if(! strstr($b['postopts'],'wppost'))
180                 return;
181
182         if($b['parent'] != $b['id'])
183                 return;
184
185
186         $wp_username = xmlify(get_pconfig($b['uid'],'wppost','wp_username'));
187         $wp_password = xmlify(get_pconfig($b['uid'],'wppost','wp_password'));
188         $wp_blog = get_pconfig($b['uid'],'wppost','wp_blog');
189
190         if($wp_username && $wp_password && $wp_blog) {
191
192                 require_once('include/bbcode.php');
193                 require_once('include/html2plain.php');
194                 require_once('include/plaintext.php');
195
196                 $wptitle = trim($b['title']);
197
198                 if (intval(get_pconfig($b['uid'],'wppost','shortcheck'))) {
199                         // Checking, if its a post that is worth a blog post
200                         $postentry = false;
201                         $siteinfo = get_attached_data($b["body"]);
202
203                         // Is it a link to an aricle, a video or a photo?
204                         if (isset($siteinfo["type"]))
205                                 if (in_array($siteinfo["type"], array("link", "audio", "video", "photo")))
206                                         $postentry = true;
207
208                         // Does it have a title?
209                         if ($wptitle != "")
210                                 $postentry = true;
211
212                         // Is it larger than 500 characters?
213                         if (strlen($b['body']) > 500)
214                                 $postentry = true;
215
216                         if (!$postentry)
217                                 return;
218                 }
219
220                 // If the title is empty then try to guess
221                 if ($wptitle == '') {
222                         // Fetch information about the post
223                         $siteinfo = get_attached_data($b["body"]);
224                         if (isset($siteinfo["title"]))
225                                 $wptitle = $siteinfo["title"];
226
227                         // If no bookmark is found then take the first line
228                         if ($wptitle == '') {
229                                 // Remove the share element before fetching the first line
230                                 $title = trim(preg_replace("/\[share.*?\](.*?)\[\/share\]/ism","\n$1\n",$b['body']));
231
232                                 $title = html2plain(bbcode($title, false, false), 0, true)."\n";
233                                 $pos = strpos($title, "\n");
234                                 $trailer = "";
235                                 if (($pos == 0) or ($pos > 100)) {
236                                         $pos = 100;
237                                         $trailer = "...";
238                                 }
239
240                                 $wptitle = substr($title, 0, $pos).$trailer;
241                         }
242                 }
243
244                 $title = '<title>' . (($wptitle) ? $wptitle : t('Post from Friendica')) . '</title>';
245                 $post = bbcode($b['body'], false, false, 4);
246
247                 // If a link goes to youtube then remove the stuff around it. Wordpress detects youtube links and embeds it
248                 $post = preg_replace('/<a.*?href="(https?:\/\/www.youtube.com\/.*?)".*?>(.*?)<\/a>/ism',"\n$1\n",$post);
249                 $post = preg_replace('/<a.*?href="(https?:\/\/youtu.be\/.*?)".*?>(.*?)<\/a>/ism',"\n$1\n",$post);
250
251                 $post = $title.$post;
252
253                 $wp_backlink = intval(get_pconfig($b['uid'],'wppost','backlink'));
254                 if($wp_backlink && $b['plink'])
255                         $post .= EOL . EOL . '<a href="' . $b['plink'] . '">'
256                                 . t('Read the original post and comment stream on Friendica') . '</a>' . EOL . EOL;
257
258                 $post = xmlify($post);
259
260
261                 $xml = <<< EOT
262 <?xml version=\"1.0\" encoding=\"utf-8\"?>
263 <methodCall>
264   <methodName>blogger.newPost</methodName>
265   <params>
266     <param><value><string/></value></param>
267     <param><value><string/></value></param>
268     <param><value><string>$wp_username</string></value></param>
269     <param><value><string>$wp_password</string></value></param>
270     <param><value><string>$post</string></value></param>
271     <param><value><int>1</int></value></param>
272   </params>
273 </methodCall>
274
275 EOT;
276
277                 logger('wppost: data: ' . $xml, LOGGER_DATA);
278
279                 if($wp_blog !== 'test')
280                         $x = post_url($wp_blog,$xml);
281                 logger('posted to wordpress: ' . (($x) ? $x : ''), LOGGER_DEBUG);
282
283         }
284 }
285