]> git.mxchange.org Git - friendica-addons.git/blob - wppost/wppost.php
Merge pull request #54 from mexon/upstream
[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
64     $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
65
66         $wp_username = get_pconfig(local_user(), 'wppost', 'wp_username');
67         $wp_password = get_pconfig(local_user(), 'wppost', 'wp_password');
68         $wp_blog = get_pconfig(local_user(), 'wppost', 'wp_blog');
69
70
71     /* Add some HTML to the existing form */
72
73     $s .= '<div class="settings-block">';
74     $s .= '<h3>' . t('WordPress Post Settings') . '</h3>';
75     $s .= '<div id="wppost-enable-wrapper">';
76     $s .= '<label id="wppost-enable-label" for="wppost-checkbox">' . t('Enable WordPress Post Plugin') . '</label>';
77     $s .= '<input id="wppost-checkbox" type="checkbox" name="wppost" value="1" ' . $checked . '/>';
78     $s .= '</div><div class="clear"></div>';
79
80     $s .= '<div id="wppost-username-wrapper">';
81     $s .= '<label id="wppost-username-label" for="wppost-username">' . t('WordPress username') . '</label>';
82     $s .= '<input id="wppost-username" type="text" name="wp_username" value="' . $wp_username . '" />';
83     $s .= '</div><div class="clear"></div>';
84
85     $s .= '<div id="wppost-password-wrapper">';
86     $s .= '<label id="wppost-password-label" for="wppost-password">' . t('WordPress password') . '</label>';
87     $s .= '<input id="wppost-password" type="password" name="wp_password" value="' . $wp_password . '" />';
88     $s .= '</div><div class="clear"></div>';
89
90     $s .= '<div id="wppost-blog-wrapper">';
91     $s .= '<label id="wppost-blog-label" for="wppost-blog">' . t('WordPress API URL') . '</label>';
92     $s .= '<input id="wppost-blog" type="text" name="wp_blog" value="' . $wp_blog . '" />';
93     $s .= '</div><div class="clear"></div>';
94
95     $s .= '<div id="wppost-bydefault-wrapper">';
96     $s .= '<label id="wppost-bydefault-label" for="wppost-bydefault">' . t('Post to WordPress by default') . '</label>';
97     $s .= '<input id="wppost-bydefault" type="checkbox" name="wp_bydefault" value="1" ' . $def_checked . '/>';
98
99     $s .= '<div id="wppost-backlink-wrapper">';
100     $s .= '<label id="wppost-backlink-label" for="wppost-backlink">' . t('Provide a backlink to the Friendica post') . '</label>';
101     $s .= '<input id="wppost-backlink" type="checkbox" name="wp_backlink" value="1" ' . $def_checked . '/>';
102
103     $s .= '</div><div class="clear"></div>';
104
105     /* provide a submit button */
106
107     $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="wppost-submit" name="wppost-submit" class="settings-submit" value="' . t('Submit') . '" /></div></div>';
108
109 }
110
111
112 function wppost_settings_post(&$a,&$b) {
113
114         if(x($_POST,'wppost-submit')) {
115
116                 set_pconfig(local_user(),'wppost','post',intval($_POST['wppost']));
117                 set_pconfig(local_user(),'wppost','post_by_default',intval($_POST['wp_bydefault']));
118                 set_pconfig(local_user(),'wppost','wp_username',trim($_POST['wp_username']));
119                 set_pconfig(local_user(),'wppost','wp_password',trim($_POST['wp_password']));
120                 set_pconfig(local_user(),'wppost','wp_blog',trim($_POST['wp_blog']));
121                 set_pconfig(local_user(),'wppost','backlink',trim($_POST['wp_backlink']));
122
123         }
124
125 }
126
127 function wppost_post_local(&$a,&$b) {
128
129         // This can probably be changed to allow editing by pointing to a different API endpoint
130
131         if($b['edit'])
132                 return;
133
134         if((! local_user()) || (local_user() != $b['uid']))
135                 return;
136
137         if($b['private'] || $b['parent'])
138                 return;
139
140     $wp_post   = intval(get_pconfig(local_user(),'wppost','post'));
141
142         $wp_enable = (($wp_post && x($_REQUEST,'wppost_enable')) ? intval($_REQUEST['wppost_enable']) : 0);
143
144         if($_REQUEST['api_source'] && intval(get_pconfig(local_user(),'wppost','post_by_default')))
145                 $wp_enable = 1;
146
147     if(! $wp_enable)
148        return;
149
150     if(strlen($b['postopts']))
151        $b['postopts'] .= ',';
152      $b['postopts'] .= 'wppost';
153 }
154
155
156
157
158 function wppost_send(&$a,&$b) {
159
160     if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
161         return;
162
163     if(! strstr($b['postopts'],'wppost'))
164         return;
165
166     if($b['parent'] != $b['id'])
167         return;
168
169
170         $wp_username = xmlify(get_pconfig($b['uid'],'wppost','wp_username'));
171         $wp_password = xmlify(get_pconfig($b['uid'],'wppost','wp_password'));
172         $wp_blog = get_pconfig($b['uid'],'wppost','wp_blog');
173
174         if($wp_username && $wp_password && $wp_blog) {
175
176                 require_once('include/bbcode.php');
177                 require_once('include/html2plain.php');
178
179                 // If the title is empty then try to guess
180                 if ($b['title'] == '') {
181                         // Take the description from the bookmark
182                         if(preg_match("/\[bookmark\=([^\]]*)\](.*?)\[\/bookmark\]/is",$b['body'],$matches))
183                                 $b['title'] = $matches[2];
184
185                         // If no bookmark is found then take the first line
186                         if ($b['title'] == '') {
187                                 $title = html2plain(bbcode($b['body']), 0, true);
188                                 $pos = strpos($title, "\n");
189                                 if (($pos == 0) or ($pos > 60))
190                                         $pos = 60;
191
192                                 $b['title'] = substr($title, 0, $pos);
193                         }
194                 }
195
196                 $title = '<title>' . (($b['title']) ? $b['title'] : t('Post from Friendica')) . '</title>';
197                 $post = $title . bbcode($b['body']);
198
199                 $wp_backlink = intval(get_pconfig($b['uid'],'wppost','backlink'));
200                 if($wp_backlink && $b['plink'])
201                         $post .= EOL . EOL . '<a href="' . $b['plink'] . '">' 
202                                 . t('Read the original post and comment stream on Friendica') . '</a>' . EOL . EOL;
203
204                 $post = xmlify($post);
205
206
207                 $xml = <<< EOT
208 <?xml version=\"1.0\" encoding=\"utf-8\"?>
209 <methodCall>
210   <methodName>blogger.newPost</methodName>
211   <params>
212     <param><value><string/></value></param>
213     <param><value><string/></value></param>
214     <param><value><string>$wp_username</string></value></param>
215     <param><value><string>$wp_password</string></value></param>
216     <param><value><string>$post</string></value></param>
217     <param><value><int>1</int></value></param>
218   </params>
219 </methodCall>
220
221 EOT;
222
223                 logger('wppost: data: ' . $xml, LOGGER_DATA);
224
225                 if($wp_blog !== 'test')
226                         $x = post_url($wp_blog,$xml);
227                 logger('posted to wordpress: ' . (($x) ? $x : ''), LOGGER_DEBUG);
228
229         }
230 }
231