]> git.mxchange.org Git - friendica-addons.git/blob - wppost/wppost.php
Merge remote branch 'upstream/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 .= '<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>';
81
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>';
86
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>';
91
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>';
96
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>';
101
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 . '/>';
105
106     $s .= '</div><div class="clear"></div>';
107
108     /* provide a submit button */
109
110     $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="wppost-submit" name="wppost-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
111
112 }
113
114
115 function wppost_settings_post(&$a,&$b) {
116
117         if(x($_POST,'wppost-submit')) {
118
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']));
125
126         }
127
128 }
129
130 function wppost_post_local(&$a,&$b) {
131
132         // This can probably be changed to allow editing by pointing to a different API endpoint
133
134         if($b['edit'])
135                 return;
136
137         if((! local_user()) || (local_user() != $b['uid']))
138                 return;
139
140         if($b['private'] || $b['parent'])
141                 return;
142
143     $wp_post   = intval(get_pconfig(local_user(),'wppost','post'));
144
145         $wp_enable = (($wp_post && x($_REQUEST,'wppost_enable')) ? intval($_REQUEST['wppost_enable']) : 0);
146
147         if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'wppost','post_by_default')))
148                 $wp_enable = 1;
149
150     if(! $wp_enable)
151        return;
152
153     if(strlen($b['postopts']))
154        $b['postopts'] .= ',';
155      $b['postopts'] .= 'wppost';
156 }
157
158
159
160
161 function wppost_send(&$a,&$b) {
162
163     if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
164         return;
165
166     if(! strstr($b['postopts'],'wppost'))
167         return;
168
169     if($b['parent'] != $b['id'])
170         return;
171
172
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');
176
177         if($wp_username && $wp_password && $wp_blog) {
178
179                 require_once('include/bbcode.php');
180                 require_once('include/html2plain.php');
181
182                 // If the title is empty then try to guess
183                 if ($b['title'] == '') {
184                         // Take the description from the bookmark
185                         if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches))
186                                 $b['title'] = $matches[2];
187
188                         // If no bookmark is found then take the first line
189                         if ($b['title'] == '') {
190                                 $title = html2plain(bbcode($b['body']), 0, true);
191                                 $pos = strpos($title, "\n");
192                                 if (($pos == 0) or ($pos > 60))
193                                         $pos = 60;
194
195                                 $b['title'] = substr($title, 0, $pos);
196                         }
197                 }
198
199                 $title = '<title>' . (($b['title']) ? $b['title'] : t('Post from Friendica')) . '</title>';
200                 $post = $title . bbcode($b['body']);
201
202                 $wp_backlink = intval(get_pconfig($b['uid'],'wppost','backlink'));
203                 if($wp_backlink && $b['plink'])
204                         $post .= EOL . EOL . '<a href="' . $b['plink'] . '">' 
205                                 . t('Read the original post and comment stream on Friendica') . '</a>' . EOL . EOL;
206
207                 $post = xmlify($post);
208
209
210                 $xml = <<< EOT
211 <?xml version=\"1.0\" encoding=\"utf-8\"?>
212 <methodCall>
213   <methodName>blogger.newPost</methodName>
214   <params>
215     <param><value><string/></value></param>
216     <param><value><string/></value></param>
217     <param><value><string>$wp_username</string></value></param>
218     <param><value><string>$wp_password</string></value></param>
219     <param><value><string>$post</string></value></param>
220     <param><value><int>1</int></value></param>
221   </params>
222 </methodCall>
223
224 EOT;
225
226                 logger('wppost: data: ' . $xml, LOGGER_DATA);
227
228                 if($wp_blog !== 'test')
229                         $x = post_url($wp_blog,$xml);
230                 logger('posted to wordpress: ' . (($x) ? $x : ''), LOGGER_DEBUG);
231
232         }
233 }
234