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