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