Use short form array syntax everywhere
[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.1
7  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
8  */
9
10 use Friendica\Core\PConfig;
11
12 function wppost_install() {
13     register_hook('post_local',           'addon/wppost/wppost.php', 'wppost_post_local');
14     register_hook('notifier_normal',      'addon/wppost/wppost.php', 'wppost_send');
15     register_hook('jot_networks',         'addon/wppost/wppost.php', 'wppost_jot_nets');
16     register_hook('connector_settings',      'addon/wppost/wppost.php', 'wppost_settings');
17     register_hook('connector_settings_post', 'addon/wppost/wppost.php', 'wppost_settings_post');
18
19 }
20 function wppost_uninstall() {
21     unregister_hook('post_local',       'addon/wppost/wppost.php', 'wppost_post_local');
22     unregister_hook('notifier_normal',  'addon/wppost/wppost.php', 'wppost_send');
23     unregister_hook('jot_networks',     'addon/wppost/wppost.php', 'wppost_jot_nets');
24     unregister_hook('connector_settings',      'addon/wppost/wppost.php', 'wppost_settings');
25     unregister_hook('connector_settings_post', 'addon/wppost/wppost.php', 'wppost_settings_post');
26
27         // obsolete - remove
28     unregister_hook('post_local_end',   'addon/wppost/wppost.php', 'wppost_send');
29     unregister_hook('plugin_settings',  'addon/wppost/wppost.php', 'wppost_settings');
30     unregister_hook('plugin_settings_post',  'addon/wppost/wppost.php', 'wppost_settings_post');
31
32 }
33
34
35 function wppost_jot_nets(&$a,&$b) {
36     if(! local_user())
37         return;
38
39     $wp_post = PConfig::get(local_user(),'wppost','post');
40     if(intval($wp_post) == 1) {
41         $wp_defpost = PConfig::get(local_user(),'wppost','post_by_default');
42         $selected = ((intval($wp_defpost) == 1) ? ' checked="checked" ' : '');
43         $b .= '<div class="profile-jot-net"><input type="checkbox" name="wppost_enable" ' . $selected . ' value="1" /> '
44             . t('Post to Wordpress') . '</div>';
45     }
46 }
47
48
49 function wppost_settings(&$a,&$s) {
50
51         if(! local_user())
52                 return;
53
54         /* Add our stylesheet to the page so we can make our settings look nice */
55
56         $a->page['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . $a->get_baseurl() . '/addon/wppost/wppost.css' . '" media="all" />' . "\r\n";
57
58         /* Get the current state of our config variables */
59
60         $enabled = PConfig::get(local_user(),'wppost','post');
61         $checked = (($enabled) ? ' checked="checked" ' : '');
62
63         $css = (($enabled) ? '' : '-disabled');
64
65         $def_enabled = PConfig::get(local_user(),'wppost','post_by_default');
66         $back_enabled = PConfig::get(local_user(),'wppost','backlink');
67         $shortcheck_enabled = PConfig::get(local_user(),'wppost','shortcheck');
68
69         $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
70         $back_checked = (($back_enabled) ? ' checked="checked" ' : '');
71         $shortcheck_checked = (($shortcheck_enabled) ? ' checked="checked" ' : '');
72
73         $wp_username = PConfig::get(local_user(), 'wppost', 'wp_username');
74         $wp_password = PConfig::get(local_user(), 'wppost', 'wp_password');
75         $wp_blog = PConfig::get(local_user(), 'wppost', 'wp_blog');
76         $wp_backlink_text = PConfig::get(local_user(), 'wppost', 'wp_backlink_text');
77
78
79     /* Add some HTML to the existing form */
80
81     $s .= '<span id="settings_wppost_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_wppost_expanded\'); openClose(\'settings_wppost_inflated\');">';
82     $s .= '<img class="connector'.$css.'" src="images/wordpress.png" /><h3 class="connector">'. t('Wordpress Export').'</h3>';
83     $s .= '</span>';
84     $s .= '<div id="settings_wppost_expanded" class="settings-block" style="display: none;">';
85     $s .= '<span class="fakelink" onclick="openClose(\'settings_wppost_expanded\'); openClose(\'settings_wppost_inflated\');">';
86     $s .= '<img class="connector'.$css.'" src="images/wordpress.png" /><h3 class="connector">'. t('Wordpress Export').'</h3>';
87     $s .= '</span>';
88     $s .= '<div id="wppost-enable-wrapper">';
89     $s .= '<label id="wppost-enable-label" for="wppost-checkbox">' . t('Enable WordPress Post Plugin') . '</label>';
90     $s .= '<input id="wppost-checkbox" type="checkbox" name="wppost" value="1" ' . $checked . '/>';
91     $s .= '</div><div class="clear"></div>';
92
93     $s .= '<div id="wppost-username-wrapper">';
94     $s .= '<label id="wppost-username-label" for="wppost-username">' . t('WordPress username') . '</label>';
95     $s .= '<input id="wppost-username" type="text" name="wp_username" value="' . $wp_username . '" />';
96     $s .= '</div><div class="clear"></div>';
97
98     $s .= '<div id="wppost-password-wrapper">';
99     $s .= '<label id="wppost-password-label" for="wppost-password">' . t('WordPress password') . '</label>';
100     $s .= '<input id="wppost-password" type="password" name="wp_password" value="' . $wp_password . '" />';
101     $s .= '</div><div class="clear"></div>';
102
103     $s .= '<div id="wppost-blog-wrapper">';
104     $s .= '<label id="wppost-blog-label" for="wppost-blog">' . t('WordPress API URL') . '</label>';
105     $s .= '<input id="wppost-blog" type="text" name="wp_blog" value="' . $wp_blog . '" />';
106     $s .= '</div><div class="clear"></div>';
107
108     $s .= '<div id="wppost-bydefault-wrapper">';
109     $s .= '<label id="wppost-bydefault-label" for="wppost-bydefault">' . t('Post to WordPress by default') . '</label>';
110     $s .= '<input id="wppost-bydefault" type="checkbox" name="wp_bydefault" value="1" ' . $def_checked . '/>';
111     $s .= '</div><div class="clear"></div>';
112
113     $s .= '<div id="wppost-backlink-wrapper">';
114     $s .= '<label id="wppost-backlink-label" for="wppost-backlink">' . t('Provide a backlink to the Friendica post') . '</label>';
115     $s .= '<input id="wppost-backlink" type="checkbox" name="wp_backlink" value="1" ' . $back_checked . '/>';
116     $s .= '</div><div class="clear"></div>';
117     $s .= '<div id="wppost-backlinktext-wrapper">';
118     $s .= '<label id="wppost-backlinktext-label" for="wp_backlink_text">' . t('Text for the backlink, e.g. Read the original post and comment stream on Friendica.') . '</label>';
119     $s .= '<input id="wppost-backlinktext" type="text" name="wp_backlink_text" value="'. $wp_backlink_text.'" ' . $wp_backlink_text . '/>';
120     $s .= '</div><div class="clear"></div>';
121
122     $s .= '<div id="wppost-shortcheck-wrapper">';
123     $s .= '<label id="wppost-shortcheck-label" for="wppost-shortcheck">' . t("Don't post messages that are too short") . '</label>';
124     $s .= '<input id="wppost-shortcheck" type="checkbox" name="wp_shortcheck" value="1" '.$shortcheck_checked.'/>';
125     $s .= '</div><div class="clear"></div>';
126
127     /* provide a submit button */
128
129     $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="wppost-submit" name="wppost-submit" class="settings-submit" value="' . t('Save Settings') . '" /></div></div>';
130
131 }
132
133
134 function wppost_settings_post(&$a,&$b) {
135
136         if(x($_POST,'wppost-submit')) {
137
138                 PConfig::set(local_user(),'wppost','post',intval($_POST['wppost']));
139                 PConfig::set(local_user(),'wppost','post_by_default',intval($_POST['wp_bydefault']));
140                 PConfig::set(local_user(),'wppost','wp_username',trim($_POST['wp_username']));
141                 PConfig::set(local_user(),'wppost','wp_password',trim($_POST['wp_password']));
142                 PConfig::set(local_user(),'wppost','wp_blog',trim($_POST['wp_blog']));
143                 PConfig::set(local_user(),'wppost','backlink',trim($_POST['wp_backlink']));
144                 PConfig::set(local_user(),'wppost','shortcheck',trim($_POST['wp_shortcheck']));
145                 $wp_backlink_text = notags(trim($_POST['wp_backlink_text']));
146                 $wp_backlink_text = bbcode($wp_backlink_text, false, false, 8);
147                 $wp_backlink_text = html2plain($wp_backlink_text, 0, true);
148                 PConfig::set(local_user(),'wppost','wp_backlink_text', $wp_backlink_text);
149
150         }
151
152 }
153
154 function wppost_post_local(&$a, &$b) {
155
156         // This can probably be changed to allow editing by pointing to a different API endpoint
157
158         if ($b['edit']) {
159                 return;
160         }
161
162         if (!local_user() || (local_user() != $b['uid'])) {
163                 return;
164         }
165
166         if ($b['private'] || $b['parent']) {
167                 return;
168         }
169
170         $wp_post   = intval(PConfig::get(local_user(),'wppost','post'));
171
172         $wp_enable = (($wp_post && x($_REQUEST,'wppost_enable')) ? intval($_REQUEST['wppost_enable']) : 0);
173
174         if ($b['api_source'] && intval(PConfig::get(local_user(),'wppost','post_by_default'))) {
175                 $wp_enable = 1;
176         }
177
178         if (!$wp_enable) {
179                 return;
180         }
181
182         if (strlen($b['postopts'])) {
183                 $b['postopts'] .= ',';
184         }
185
186         $b['postopts'] .= 'wppost';
187 }
188
189
190
191
192 function wppost_send(&$a,&$b) {
193
194         if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
195                 return;
196         }
197
198         if(! strstr($b['postopts'],'wppost')) {
199                 return;
200         }
201
202         if($b['parent'] != $b['id']) {
203                 return;
204         }
205
206         // Dont't post if the post doesn't belong to us.
207         // This is a check for forum postings
208         $self = dba::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
209         if ($b['contact-id'] != $self['id']) {
210                 return;
211         }
212
213         $wp_username = xmlify(PConfig::get($b['uid'],'wppost','wp_username'));
214         $wp_password = xmlify(PConfig::get($b['uid'],'wppost','wp_password'));
215         $wp_blog = PConfig::get($b['uid'],'wppost','wp_blog');
216         $wp_backlink_text = PConfig::get($b['uid'],'wppost','wp_backlink_text');
217         if ($wp_backlink_text == '') {
218                 $wp_backlink_text = t('Read the orig­i­nal post and com­ment stream on Friendica');
219         }
220
221         if($wp_username && $wp_password && $wp_blog) {
222
223                 require_once('include/bbcode.php');
224                 require_once('include/html2plain.php');
225                 require_once('include/plaintext.php');
226
227                 $wptitle = trim($b['title']);
228
229                 if (intval(PConfig::get($b['uid'],'wppost','shortcheck'))) {
230                         // Checking, if its a post that is worth a blog post
231                         $postentry = false;
232                         $siteinfo = get_attached_data($b["body"]);
233
234                         // Is it a link to an aricle, a video or a photo?
235                         if (isset($siteinfo["type"])) {
236                                 if (in_array($siteinfo["type"], ["link", "audio", "video", "photo"])) {
237                                         $postentry = true;
238                                 }
239                         }
240
241                         // Does it have a title?
242                         if ($wptitle != "") {
243                                 $postentry = true;
244                         }
245
246                         // Is it larger than 500 characters?
247                         if (strlen($b['body']) > 500) {
248                                 $postentry = true;
249                         }
250
251                         if (!$postentry) {
252                                 return;
253                         }
254                 }
255
256                 // If the title is empty then try to guess
257                 if ($wptitle == '') {
258                         // Fetch information about the post
259                         $siteinfo = get_attached_data($b["body"]);
260                         if (isset($siteinfo["title"])) {
261                                 $wptitle = $siteinfo["title"];
262                         }
263
264                         // If no bookmark is found then take the first line
265                         if ($wptitle == '') {
266                                 // Remove the share element before fetching the first line
267                                 $title = trim(preg_replace("/\[share.*?\](.*?)\[\/share\]/ism","\n$1\n",$b['body']));
268
269                                 $title = html2plain(bbcode($title, false, false), 0, true)."\n";
270                                 $pos = strpos($title, "\n");
271                                 $trailer = "";
272                                 if (($pos == 0) || ($pos > 100)) {
273                                         $pos = 100;
274                                         $trailer = "...";
275                                 }
276
277                                 $wptitle = substr($title, 0, $pos).$trailer;
278                         }
279                 }
280
281                 $title = '<title>' . (($wptitle) ? $wptitle : t('Post from Friendica')) . '</title>';
282                 $post = bbcode($b['body'], false, false, 4);
283
284                 // If a link goes to youtube then remove the stuff around it. Wordpress detects youtube links and embeds it
285                 $post = preg_replace('/<a.*?href="(https?:\/\/www.youtube.com\/.*?)".*?>(.*?)<\/a>/ism',"\n$1\n",$post);
286                 $post = preg_replace('/<a.*?href="(https?:\/\/youtu.be\/.*?)".*?>(.*?)<\/a>/ism',"\n$1\n",$post);
287
288                 $post = $title.$post;
289
290                 $wp_backlink = intval(PConfig::get($b['uid'],'wppost','backlink'));
291                 if($wp_backlink && $b['plink']) {
292                         $post .= EOL . EOL . '<a href="' . $b['plink'] . '">'
293                                 . $wp_backlink_text . '</a>' . EOL . EOL;
294                 }
295
296                 $post = xmlify($post);
297
298
299                 $xml = <<< EOT
300 <?xml version=\"1.0\" encoding=\"utf-8\"?>
301 <methodCall>
302   <methodName>blogger.newPost</methodName>
303   <params>
304     <param><value><string/></value></param>
305     <param><value><string/></value></param>
306     <param><value><string>$wp_username</string></value></param>
307     <param><value><string>$wp_password</string></value></param>
308     <param><value><string>$post</string></value></param>
309     <param><value><int>1</int></value></param>
310   </params>
311 </methodCall>
312
313 EOT;
314
315                 logger('wppost: data: ' . $xml, LOGGER_DATA);
316
317                 if($wp_blog !== 'test') {
318                         $x = post_url($wp_blog,$xml);
319                 }
320                 logger('posted to wordpress: ' . (($x) ? $x : ''), LOGGER_DEBUG);
321
322         }
323 }