]> git.mxchange.org Git - friendica-addons.git/blob - tumblr/tumblr.php
1b618a7ae3715dd7860693ebdc8e0dd648ff5077
[friendica-addons.git] / tumblr / tumblr.php
1 <?php
2 /**
3  * Name: Tumblr Post Connector
4  * Description: Post to Tumblr
5  * Version: 2.0
6  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
7  * Author: Michael Vogel <https://pirati.ca/profile/heluecht>
8  */
9
10 require_once __DIR__ . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'tumblroauth.php';
11
12 use Friendica\App;
13 use Friendica\Content\Text\BBCode;
14 use Friendica\Core\Config;
15 use Friendica\Core\Hook;
16 use Friendica\Core\L10n;
17 use Friendica\Core\Logger;
18 use Friendica\Core\Renderer;
19 use Friendica\Database\DBA;
20 use Friendica\DI;
21 use Friendica\Util\Strings;
22
23 function tumblr_install()
24 {
25         Hook::register('hook_fork',               'addon/tumblr/tumblr.php', 'tumblr_hook_fork');
26         Hook::register('post_local',              'addon/tumblr/tumblr.php', 'tumblr_post_local');
27         Hook::register('notifier_normal',         'addon/tumblr/tumblr.php', 'tumblr_send');
28         Hook::register('jot_networks',            'addon/tumblr/tumblr.php', 'tumblr_jot_nets');
29         Hook::register('connector_settings',      'addon/tumblr/tumblr.php', 'tumblr_settings');
30         Hook::register('connector_settings_post', 'addon/tumblr/tumblr.php', 'tumblr_settings_post');
31 }
32
33 function tumblr_uninstall()
34 {
35         Hook::unregister('hook_fork',               'addon/tumblr/tumblr.php', 'tumblr_hook_fork');
36         Hook::unregister('post_local',              'addon/tumblr/tumblr.php', 'tumblr_post_local');
37         Hook::unregister('notifier_normal',         'addon/tumblr/tumblr.php', 'tumblr_send');
38         Hook::unregister('jot_networks',            'addon/tumblr/tumblr.php', 'tumblr_jot_nets');
39         Hook::unregister('connector_settings',      'addon/tumblr/tumblr.php', 'tumblr_settings');
40         Hook::unregister('connector_settings_post', 'addon/tumblr/tumblr.php', 'tumblr_settings_post');
41 }
42
43 function tumblr_module()
44 {
45 }
46
47 function tumblr_content(App $a)
48 {
49         if (! local_user()) {
50                 notice(L10n::t('Permission denied.') . EOL);
51                 return '';
52         }
53
54         if (isset($a->argv[1])) {
55                 switch ($a->argv[1]) {
56                         case "connect":
57                                 $o = tumblr_connect($a);
58                                 break;
59
60                         case "callback":
61                                 $o = tumblr_callback($a);
62                                 break;
63
64                         default:
65                                 $o = print_r($a->argv, true);
66                                 break;
67                 }
68         } else {
69                 $o = tumblr_connect($a);
70         }
71
72         return $o;
73 }
74
75 function tumblr_addon_admin(App $a, &$o)
76 {
77         $t = Renderer::getMarkupTemplate( "admin.tpl", "addon/tumblr/" );
78
79         $o = Renderer::replaceMacros($t, [
80                 '$submit' => L10n::t('Save Settings'),
81                 // name, label, value, help, [extra values]
82                 '$consumer_key' => ['consumer_key', L10n::t('Consumer Key'),  Config::get('tumblr', 'consumer_key' ), ''],
83                 '$consumer_secret' => ['consumer_secret', L10n::t('Consumer Secret'),  Config::get('tumblr', 'consumer_secret' ), ''],
84         ]);
85 }
86
87 function tumblr_addon_admin_post(App $a)
88 {
89         $consumer_key    =       (!empty($_POST['consumer_key'])      ? Strings::escapeTags(trim($_POST['consumer_key']))   : '');
90         $consumer_secret =       (!empty($_POST['consumer_secret'])   ? Strings::escapeTags(trim($_POST['consumer_secret'])): '');
91
92         Config::set('tumblr', 'consumer_key',$consumer_key);
93         Config::set('tumblr', 'consumer_secret',$consumer_secret);
94
95         info(L10n::t('Settings updated.'). EOL);
96 }
97
98 function tumblr_connect(App $a)
99 {
100         // Start a session.  This is necessary to hold on to  a few keys the callback script will also need
101         session_start();
102
103         // Include the TumblrOAuth library
104         //require_once('addon/tumblr/tumblroauth/tumblroauth.php');
105
106         // Define the needed keys
107         $consumer_key = Config::get('tumblr', 'consumer_key');
108         $consumer_secret = Config::get('tumblr', 'consumer_secret');
109
110         // The callback URL is the script that gets called after the user authenticates with tumblr
111         // In this example, it would be the included callback.php
112         $callback_url = DI::baseUrl()->get()."/tumblr/callback";
113
114         // Let's begin.  First we need a Request Token.  The request token is required to send the user
115         // to Tumblr's login page.
116
117         // Create a new instance of the TumblrOAuth library.  For this step, all we need to give the library is our
118         // Consumer Key and Consumer Secret
119         $tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret);
120
121         // Ask Tumblr for a Request Token.  Specify the Callback URL here too (although this should be optional)
122         $request_token = $tum_oauth->getRequestToken($callback_url);
123
124         // Store the request token and Request Token Secret as out callback.php script will need this
125         $_SESSION['request_token'] = $token = $request_token['oauth_token'];
126         $_SESSION['request_token_secret'] = $request_token['oauth_token_secret'];
127
128         // Check the HTTP Code.  It should be a 200 (OK), if it's anything else then something didn't work.
129         switch ($tum_oauth->http_code) {
130                 case 200:
131                         // Ask Tumblr to give us a special address to their login page
132                         $url = $tum_oauth->getAuthorizeURL($token);
133
134                         // Redirect the user to the login URL given to us by Tumblr
135                         header('Location: ' . $url);
136
137                         /*
138                          * That's it for our side.  The user is sent to a Tumblr Login page and
139                          * asked to authroize our app.  After that, Tumblr sends the user back to
140                          * our Callback URL (callback.php) along with some information we need to get
141                          * an access token.
142                          */
143                         break;
144
145                 default:
146                         // Give an error message
147                         $o = 'Could not connect to Tumblr. Refresh the page or try again later.';
148         }
149
150         return $o;
151 }
152
153 function tumblr_callback(App $a)
154 {
155         // Start a session, load the library
156         session_start();
157         //require_once('addon/tumblr/tumblroauth/tumblroauth.php');
158
159         // Define the needed keys
160         $consumer_key = Config::get('tumblr', 'consumer_key');
161         $consumer_secret = Config::get('tumblr', 'consumer_secret');
162
163         // Once the user approves your app at Tumblr, they are sent back to this script.
164         // This script is passed two parameters in the URL, oauth_token (our Request Token)
165         // and oauth_verifier (Key that we need to get Access Token).
166         // We'll also need out Request Token Secret, which we stored in a session.
167
168         // Create instance of TumblrOAuth.
169         // It'll need our Consumer Key and Secret as well as our Request Token and Secret
170         $tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret, $_SESSION['request_token'], $_SESSION['request_token_secret']);
171
172         // Ok, let's get an Access Token. We'll need to pass along our oauth_verifier which was given to us in the URL.
173         $access_token = $tum_oauth->getAccessToken($_REQUEST['oauth_verifier']);
174
175         // We're done with the Request Token and Secret so let's remove those.
176         unset($_SESSION['request_token']);
177         unset($_SESSION['request_token_secret']);
178
179         // Make sure nothing went wrong.
180         if (200 == $tum_oauth->http_code) {
181                 // good to go
182         } else {
183                 return 'Unable to authenticate';
184         }
185
186         // What's next?  Now that we have an Access Token and Secret, we can make an API call.
187         DI::pConfig()->set(local_user(), "tumblr", "oauth_token", $access_token['oauth_token']);
188         DI::pConfig()->set(local_user(), "tumblr", "oauth_token_secret", $access_token['oauth_token_secret']);
189
190         $o = L10n::t("You are now authenticated to tumblr.");
191         $o .= '<br /><a href="' . DI::baseUrl()->get() . '/settings/connectors">' . L10n::t("return to the connector page") . '</a>';
192
193         return $o;
194 }
195
196 function tumblr_jot_nets(App $a, array &$jotnets_fields)
197 {
198         if (! local_user()) {
199                 return;
200         }
201
202         if (DI::pConfig()->get(local_user(),'tumblr','post')) {
203                 $jotnets_fields[] = [
204                         'type' => 'checkbox',
205                         'field' => [
206                                 'tumblr_enable',
207                                 L10n::t('Post to Tumblr'),
208                                 DI::pConfig()->get(local_user(),'tumblr','post_by_default')
209                         ]
210                 ];
211         }
212 }
213
214 function tumblr_settings(App $a, &$s)
215 {
216         if (! local_user()) {
217                 return;
218         }
219
220         /* Add our stylesheet to the page so we can make our settings look nice */
221
222         DI::page()['htmlhead'] .= '<link rel="stylesheet"  type="text/css" href="' . DI::baseUrl()->get() . '/addon/tumblr/tumblr.css' . '" media="all" />' . "\r\n";
223
224         /* Get the current state of our config variables */
225
226         $enabled = DI::pConfig()->get(local_user(), 'tumblr', 'post');
227         $checked = (($enabled) ? ' checked="checked" ' : '');
228         $css = (($enabled) ? '' : '-disabled');
229
230         $def_enabled = DI::pConfig()->get(local_user(), 'tumblr', 'post_by_default');
231
232         $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
233
234         /* Add some HTML to the existing form */
235
236         $s .= '<span id="settings_tumblr_inflated" class="settings-block fakelink" style="display: block;" onclick="openClose(\'settings_tumblr_expanded\'); openClose(\'settings_tumblr_inflated\');">';
237         $s .= '<img class="connector'.$css.'" src="images/tumblr.png" /><h3 class="connector">'. L10n::t('Tumblr Export').'</h3>';
238         $s .= '</span>';
239         $s .= '<div id="settings_tumblr_expanded" class="settings-block" style="display: none;">';
240         $s .= '<span class="fakelink" onclick="openClose(\'settings_tumblr_expanded\'); openClose(\'settings_tumblr_inflated\');">';
241         $s .= '<img class="connector'.$css.'" src="images/tumblr.png" /><h3 class="connector">'. L10n::t('Tumblr Export').'</h3>';
242         $s .= '</span>';
243
244         $s .= '<div id="tumblr-username-wrapper">';
245         $s .= '<a href="'.DI::baseUrl()->get().'/tumblr/connect">'.L10n::t("(Re-)Authenticate your tumblr page").'</a>';
246         $s .= '</div><div class="clear"></div>';
247
248         $s .= '<div id="tumblr-enable-wrapper">';
249         $s .= '<label id="tumblr-enable-label" for="tumblr-checkbox">' . L10n::t('Enable Tumblr Post Addon') . '</label>';
250         $s .= '<input type="hidden" name="tumblr" value="0"/>';
251         $s .= '<input id="tumblr-checkbox" type="checkbox" name="tumblr" value="1" ' . $checked . '/>';
252         $s .= '</div><div class="clear"></div>';
253
254         $s .= '<div id="tumblr-bydefault-wrapper">';
255         $s .= '<label id="tumblr-bydefault-label" for="tumblr-bydefault">' . L10n::t('Post to Tumblr by default') . '</label>';
256         $s .= '<input type="hidden" name="tumblr_bydefault" value="0"/>';
257         $s .= '<input id="tumblr-bydefault" type="checkbox" name="tumblr_bydefault" value="1" ' . $def_checked . '/>';
258         $s .= '</div><div class="clear"></div>';
259
260         $oauth_token = DI::pConfig()->get(local_user(), "tumblr", "oauth_token");
261         $oauth_token_secret = DI::pConfig()->get(local_user(), "tumblr", "oauth_token_secret");
262
263         $s .= '<div id="tumblr-page-wrapper">';
264
265         if (($oauth_token != "") && ($oauth_token_secret != "")) {
266                 $page = DI::pConfig()->get(local_user(), 'tumblr', 'page');
267                 $consumer_key = Config::get('tumblr', 'consumer_key');
268                 $consumer_secret = Config::get('tumblr', 'consumer_secret');
269
270                 $tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);
271
272                 $userinfo = $tum_oauth->get('user/info');
273
274                 $blogs = [];
275
276                 $s .= '<label id="tumblr-page-label" for="tumblr-page">' . L10n::t('Post to page:') . '</label>';
277                 $s .= '<select name="tumblr_page" id="tumblr-page">';
278                 foreach($userinfo->response->user->blogs as $blog) {
279                         $blogurl = substr(str_replace(["http://", "https://"], ["", ""], $blog->url), 0, -1);
280
281                         if ($page == $blogurl) {
282                                 $s .= "<option value='".$blogurl."' selected>".$blogurl."</option>";
283                         } else {
284                                 $s .= "<option value='".$blogurl."'>".$blogurl."</option>";
285                         }
286                 }
287
288                 $s .= "</select>";
289         } else {
290                 $s .= L10n::t("You are not authenticated to tumblr");
291         }
292
293         $s .= '</div><div class="clear"></div>';
294
295         /* provide a submit button */
296         $s .= '<div class="settings-submit-wrapper" ><input type="submit" id="tumblr-submit" name="tumblr-submit" class="settings-submit" value="' . L10n::t('Save Settings') . '" /></div></div>';
297 }
298
299 function tumblr_settings_post(App $a, array &$b)
300 {
301         if (!empty($_POST['tumblr-submit'])) {
302                 DI::pConfig()->set(local_user(), 'tumblr', 'post',            intval($_POST['tumblr']));
303                 DI::pConfig()->set(local_user(), 'tumblr', 'page',            $_POST['tumblr_page']);
304                 DI::pConfig()->set(local_user(), 'tumblr', 'post_by_default', intval($_POST['tumblr_bydefault']));
305         }
306 }
307
308 function tumblr_hook_fork(&$a, &$b)
309 {
310         if ($b['name'] != 'notifier_normal') {
311                 return;
312         }
313
314         $post = $b['data'];
315
316         if ($post['deleted'] || $post['private'] || ($post['created'] !== $post['edited']) ||
317                 !strstr($post['postopts'], 'tumblr') || ($post['parent'] != $post['id'])) {
318                 $b['execute'] = false;
319                 return;
320         }
321 }
322
323 function tumblr_post_local(App $a, array &$b)
324 {
325         // This can probably be changed to allow editing by pointing to a different API endpoint
326
327         if ($b['edit']) {
328                 return;
329         }
330
331         if (!local_user() || (local_user() != $b['uid'])) {
332                 return;
333         }
334
335         if ($b['private'] || $b['parent']) {
336                 return;
337         }
338
339         $tmbl_post   = intval(DI::pConfig()->get(local_user(), 'tumblr', 'post'));
340
341         $tmbl_enable = (($tmbl_post && !empty($_REQUEST['tumblr_enable'])) ? intval($_REQUEST['tumblr_enable']) : 0);
342
343         if ($b['api_source'] && intval(DI::pConfig()->get(local_user(), 'tumblr', 'post_by_default'))) {
344                 $tmbl_enable = 1;
345         }
346
347         if (!$tmbl_enable) {
348                 return;
349         }
350
351         if (strlen($b['postopts'])) {
352                 $b['postopts'] .= ',';
353         }
354
355         $b['postopts'] .= 'tumblr';
356 }
357
358
359
360
361 function tumblr_send(App $a, array &$b) {
362
363         if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
364                 return;
365         }
366
367         if (! strstr($b['postopts'],'tumblr')) {
368                 return;
369         }
370
371         if ($b['parent'] != $b['id']) {
372                 return;
373         }
374
375         // Dont't post if the post doesn't belong to us.
376         // This is a check for forum postings
377         $self = DBA::selectFirst('contact', ['id'], ['uid' => $b['uid'], 'self' => true]);
378         if ($b['contact-id'] != $self['id']) {
379                 return;
380         }
381
382         $oauth_token = DI::pConfig()->get($b['uid'], "tumblr", "oauth_token");
383         $oauth_token_secret = DI::pConfig()->get($b['uid'], "tumblr", "oauth_token_secret");
384         $page = DI::pConfig()->get($b['uid'], "tumblr", "page");
385         $tmbl_blog = 'blog/' . $page . '/post';
386
387         if ($oauth_token && $oauth_token_secret && $tmbl_blog) {
388                 $tag_arr = [];
389                 $tags = '';
390                 preg_match_all('/\#\[(.*?)\](.*?)\[/', $b['tag'], $matches, PREG_SET_ORDER);
391
392                 if (!empty($matches)) {
393                         foreach($matches as $mtch) {
394                                 $tag_arr[] = $mtch[2];
395                         }
396                 }
397
398                 if (count($tag_arr)) {
399                         $tags = implode(',', $tag_arr);
400                 }
401
402                 $title = trim($b['title']);
403
404                 $siteinfo = BBCode::getAttachedData($b["body"]);
405
406                 $params = [
407                         'state'  => 'published',
408                         'tags'   => $tags,
409                         'tweet'  => 'off',
410                         'format' => 'html',
411                 ];
412
413                 if (!isset($siteinfo["type"])) {
414                         $siteinfo["type"] = "";
415                 }
416
417                 if (($title == "") && isset($siteinfo["title"])) {
418                         $title = $siteinfo["title"];
419                 }
420
421                 if (isset($siteinfo["text"])) {
422                         $body = $siteinfo["text"];
423                 } else {
424                         $body = BBCode::removeShareInformation($b["body"]);
425                 }
426
427                 switch ($siteinfo["type"]) {
428                         case "photo":
429                                 $params['type']    = "photo";
430                                 $params['caption'] = BBCode::convert($body, false, 4);
431
432                                 if (isset($siteinfo["url"])) {
433                                         $params['link'] = $siteinfo["url"];
434                                 }
435
436                                 $params['source'] = $siteinfo["image"];
437                                 break;
438
439                         case "link":
440                                 $params['type']        = "link";
441                                 $params['title']       = $title;
442                                 $params['url']         = $siteinfo["url"];
443                                 $params['description'] = BBCode::convert($body, false, 4);
444                                 break;
445
446                         case "audio":
447                                 $params['type']         = "audio";
448                                 $params['external_url'] = $siteinfo["url"];
449                                 $params['caption']      = BBCode::convert($body, false, 4);
450                                 break;
451
452                         case "video":
453                                 $params['type']    = "video";
454                                 $params['embed']   = $siteinfo["url"];
455                                 $params['caption'] = BBCode::convert($body, false, 4);
456                                 break;
457
458                         default:
459                                 $params['type']  = "text";
460                                 $params['title'] = $title;
461                                 $params['body']  = BBCode::convert($b['body'], false, 4);
462                                 break;
463                 }
464
465                 if (isset($params['caption']) && (trim($title) != "")) {
466                         $params['caption'] = '<h1>'.$title."</h1>".
467                                                 "<p>".$params['caption']."</p>";
468                 }
469
470                 if (empty($params['caption']) && !empty($siteinfo["description"])) {
471                         $params['caption'] = BBCode::convert("[quote]" . $siteinfo["description"] . "[/quote]", false, 4);
472                 }
473
474                 $consumer_key = Config::get('tumblr','consumer_key');
475                 $consumer_secret = Config::get('tumblr','consumer_secret');
476
477                 $tum_oauth = new TumblrOAuth($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);
478
479                 // Make an API call with the TumblrOAuth instance.
480                 $x = $tum_oauth->post($tmbl_blog,$params);
481                 $ret_code = $tum_oauth->http_code;
482
483                 //print_r($params);
484                 if ($ret_code == 201) {
485                         Logger::log('tumblr_send: success');
486                 } elseif ($ret_code == 403) {
487                         Logger::log('tumblr_send: authentication failure');
488                 } else {
489                         Logger::log('tumblr_send: general error: ' . print_r($x,true));
490                 }
491         }
492 }
493