- added type-hints for `App`
- added curly braces + spaces for better readability
- avoided to use deprecated x(), replaced with empty()
- converted multi single-line comment to single multi-line comment
- opening curly brace behind a function/method/class belongs into next line
This commit is contained in:
Roland Häder 2018-07-29 19:42:22 +02:00
parent 93fb5a6151
commit f9784d7095
No known key found for this signature in database
GPG Key ID: B72F8185C6C7BD78
2 changed files with 153 additions and 121 deletions

View File

@ -53,13 +53,13 @@ class TumblrOAuth {
/**
* construct TumblrOAuth object
*/
function __construct($consumer_key, $consumer_secret, $oauth_token = NULL, $oauth_token_secret = NULL) {
function __construct($consumer_key, $consumer_secret, $oauth_token = null, $oauth_token_secret = null) {
$this->sha1_method = new OAuthSignatureMethod_HMAC_SHA1();
$this->consumer = new OAuthConsumer($consumer_key, $consumer_secret);
if (!empty($oauth_token) && !empty($oauth_token_secret)) {
$this->token = new OAuthConsumer($oauth_token, $oauth_token_secret);
} else {
$this->token = NULL;
$this->token = null;
}
}
@ -69,7 +69,7 @@ class TumblrOAuth {
*
* @returns a key/value array containing oauth_token and oauth_token_secret
*/
function getRequestToken($oauth_callback = NULL) {
function getRequestToken($oauth_callback = null) {
$parameters = array();
if (!empty($oauth_callback)) {
$parameters['oauth_callback'] = $oauth_callback;
@ -191,7 +191,7 @@ class TumblrOAuth {
*
* @return API results
*/
function http($url, $method, $postfields = NULL) {
function http($url, $method, $postfields = null) {
$this->http_info = array();
$ci = curl_init();
/* Curl settings */

View File

@ -9,6 +9,7 @@
require_once __DIR__ . DIRECTORY_SEPARATOR . 'library' . DIRECTORY_SEPARATOR . 'tumblroauth.php';
use Friendica\App;
use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\Config;
@ -16,15 +17,17 @@ use Friendica\Core\L10n;
use Friendica\Core\PConfig;
use Friendica\Database\DBA;
function tumblr_install() {
function tumblr_install()
{
Addon::registerHook('post_local', 'addon/tumblr/tumblr.php', 'tumblr_post_local');
Addon::registerHook('notifier_normal', 'addon/tumblr/tumblr.php', 'tumblr_send');
Addon::registerHook('jot_networks', 'addon/tumblr/tumblr.php', 'tumblr_jot_nets');
Addon::registerHook('connector_settings', 'addon/tumblr/tumblr.php', 'tumblr_settings');
Addon::registerHook('connector_settings_post', 'addon/tumblr/tumblr.php', 'tumblr_settings_post');
}
function tumblr_uninstall() {
function tumblr_uninstall()
{
Addon::unregisterHook('post_local', 'addon/tumblr/tumblr.php', 'tumblr_post_local');
Addon::unregisterHook('notifier_normal', 'addon/tumblr/tumblr.php', 'tumblr_send');
Addon::unregisterHook('jot_networks', 'addon/tumblr/tumblr.php', 'tumblr_jot_nets');
@ -32,34 +35,40 @@ function tumblr_uninstall() {
Addon::unregisterHook('connector_settings_post', 'addon/tumblr/tumblr.php', 'tumblr_settings_post');
}
function tumblr_module() {}
function tumblr_content(&$a) {
function tumblr_module()
{
}
function tumblr_content(App $a)
{
if (! local_user()) {
notice(L10n::t('Permission denied.') . EOL);
return '';
}
if (isset($a->argv[1]))
if (isset($a->argv[1])) {
switch ($a->argv[1]) {
case "connect":
$o = tumblr_connect($a);
break;
case "callback":
$o = tumblr_callback($a);
break;
default:
$o = print_r($a->argv, true);
break;
}
else
} else {
$o = tumblr_connect($a);
}
return $o;
}
function tumblr_addon_admin(&$a, &$o){
function tumblr_addon_admin(App $a, &$o)
{
$t = get_markup_template( "admin.tpl", "addon/tumblr/" );
$o = replace_macros($t, [
@ -70,15 +79,19 @@ function tumblr_addon_admin(&$a, &$o){
]);
}
function tumblr_addon_admin_post(&$a){
$consumer_key = ((x($_POST,'consumer_key')) ? notags(trim($_POST['consumer_key'])) : '');
$consumer_secret = ((x($_POST,'consumer_secret')) ? notags(trim($_POST['consumer_secret'])): '');
function tumblr_addon_admin_post(App $a)
{
$consumer_key = ((!empty($_POST['consumer_key'])) ? notags(trim($_POST['consumer_key'])) : '');
$consumer_secret = ((!empty($_POST['consumer_secret'])) ? notags(trim($_POST['consumer_secret'])): '');
Config::set('tumblr', 'consumer_key',$consumer_key);
Config::set('tumblr', 'consumer_secret',$consumer_secret);
info(L10n::t('Settings updated.'). EOL);
}
function tumblr_connect($a) {
function tumblr_connect(App $a)
{
// Start a session. This is necessary to hold on to a few keys the callback script will also need
session_start();
@ -116,21 +129,24 @@ function tumblr_connect($a) {
// Redirect the user to the login URL given to us by Tumblr
header('Location: ' . $url);
// That's it for our side. The user is sent to a Tumblr Login page and
// asked to authroize our app. After that, Tumblr sends the user back to
// our Callback URL (callback.php) along with some information we need to get
// an access token.
/*
* That's it for our side. The user is sent to a Tumblr Login page and
* asked to authroize our app. After that, Tumblr sends the user back to
* our Callback URL (callback.php) along with some information we need to get
* an access token.
*/
break;
default:
// Give an error message
$o = 'Could not connect to Tumblr. Refresh the page or try again later.';
}
return($o);
return $o;
}
function tumblr_callback($a) {
function tumblr_callback(App $a)
{
// Start a session, load the library
session_start();
//require_once('addon/tumblr/tumblroauth/tumblroauth.php');
@ -159,7 +175,7 @@ function tumblr_callback($a) {
if (200 == $tum_oauth->http_code) {
// good to go
} else {
return('Unable to authenticate');
return 'Unable to authenticate';
}
// What's next? Now that we have an Access Token and Secret, we can make an API call.
@ -168,14 +184,18 @@ function tumblr_callback($a) {
$o = L10n::t("You are now authenticated to tumblr.");
$o .= '<br /><a href="'.$a->get_baseurl().'/settings/connectors">'.L10n::t("return to the connector page").'</a>';
return($o);
return $o;
}
function tumblr_jot_nets(&$a,&$b) {
if(! local_user())
function tumblr_jot_nets(App $a, &$b)
{
if (! local_user()) {
return;
}
$tmbl_post = PConfig::get(local_user(), 'tumblr', 'post');
if (intval($tmbl_post) == 1) {
$tmbl_defpost = PConfig::get(local_user(), 'tumblr', 'post_by_default');
$selected = ((intval($tmbl_defpost) == 1) ? ' checked="checked" ' : '');
@ -184,11 +204,11 @@ function tumblr_jot_nets(&$a,&$b) {
}
}
function tumblr_settings(&$a,&$s) {
if(! local_user())
function tumblr_settings(App $a, &$s)
{
if (! local_user()) {
return;
}
/* Add our stylesheet to the page so we can make our settings look nice */
@ -232,8 +252,8 @@ function tumblr_settings(&$a,&$s) {
$oauth_token_secret = PConfig::get(local_user(), "tumblr", "oauth_token_secret");
$s .= '<div id="tumblr-page-wrapper">';
if (($oauth_token != "") && ($oauth_token_secret != "")) {
if (($oauth_token != "") && ($oauth_token_secret != "")) {
$page = PConfig::get(local_user(), 'tumblr', 'page');
$consumer_key = Config::get('tumblr', 'consumer_key');
$consumer_secret = Config::get('tumblr', 'consumer_secret');
@ -248,38 +268,36 @@ function tumblr_settings(&$a,&$s) {
$s .= '<select name="tumblr_page" id="tumblr-page">';
foreach($userinfo->response->user->blogs as $blog) {
$blogurl = substr(str_replace(["http://", "https://"], ["", ""], $blog->url), 0, -1);
if ($page == $blogurl)
if ($page == $blogurl) {
$s .= "<option value='".$blogurl."' selected>".$blogurl."</option>";
else
} else {
$s .= "<option value='".$blogurl."'>".$blogurl."</option>";
}
}
$s .= "</select>";
} else
} else {
$s .= L10n::t("You are not authenticated to tumblr");
}
$s .= '</div><div class="clear"></div>';
/* provide a submit button */
$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>';
}
function tumblr_settings_post(&$a,&$b) {
if(x($_POST,'tumblr-submit')) {
function tumblr_settings_post(App $a, array &$b)
{
if (!empty($_POST['tumblr-submit'])) {
PConfig::set(local_user(), 'tumblr', 'post', intval($_POST['tumblr']));
PConfig::set(local_user(), 'tumblr', 'page', $_POST['tumblr_page']);
PConfig::set(local_user(), 'tumblr', 'post_by_default', intval($_POST['tumblr_bydefault']));
}
}
}
function tumblr_post_local(&$a, &$b) {
function tumblr_post_local(App $a, array &$b)
{
// This can probably be changed to allow editing by pointing to a different API endpoint
if ($b['edit']) {
@ -296,7 +314,7 @@ function tumblr_post_local(&$a, &$b) {
$tmbl_post = intval(PConfig::get(local_user(), 'tumblr', 'post'));
$tmbl_enable = (($tmbl_post && x($_REQUEST,'tumblr_enable')) ? intval($_REQUEST['tumblr_enable']) : 0);
$tmbl_enable = (($tmbl_post && !empty($_REQUEST['tumblr_enable'])) ? intval($_REQUEST['tumblr_enable']) : 0);
if ($b['api_source'] && intval(PConfig::get(local_user(), 'tumblr', 'post_by_default'))) {
$tmbl_enable = 1;
@ -316,7 +334,7 @@ function tumblr_post_local(&$a, &$b) {
function tumblr_send(&$a,&$b) {
function tumblr_send(App $a, array &$b) {
if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) {
return;
@ -345,15 +363,17 @@ function tumblr_send(&$a,&$b) {
if ($oauth_token && $oauth_token_secret && $tmbl_blog) {
$tag_arr = [];
$tags = '';
$x = preg_match_all('/\#\[(.*?)\](.*?)\[/',$b['tag'],$matches,PREG_SET_ORDER);
preg_match_all('/\#\[(.*?)\](.*?)\[/', $b['tag'], $matches, PREG_SET_ORDER);
if($x) {
if (!empty($matches)) {
foreach($matches as $mtch) {
$tag_arr[] = $mtch[2];
}
}
if(count($tag_arr))
if (count($tag_arr)) {
$tags = implode(',', $tag_arr);
}
$title = trim($b['title']);
@ -363,45 +383,54 @@ function tumblr_send(&$a,&$b) {
'state' => 'published',
'tags' => $tags,
'tweet' => 'off',
'format' => 'html'];
'format' => 'html',
];
if (!isset($siteinfo["type"]))
if (!isset($siteinfo["type"])) {
$siteinfo["type"] = "";
}
if (($title == "") && isset($siteinfo["title"]))
if (($title == "") && isset($siteinfo["title"])) {
$title = $siteinfo["title"];
}
if (isset($siteinfo["text"]))
if (isset($siteinfo["text"])) {
$body = $siteinfo["text"];
else
} else {
$body = BBCode::removeShareInformation($b["body"]);
}
switch ($siteinfo["type"]) {
case "photo":
$params['type'] = "photo";
$params['caption'] = BBCode::convert($body, false, 4);
if (isset($siteinfo["url"]))
if (isset($siteinfo["url"])) {
$params['link'] = $siteinfo["url"];
}
$params['source'] = $siteinfo["image"];
break;
case "link":
$params['type'] = "link";
$params['title'] = $title;
$params['url'] = $siteinfo["url"];
$params['description'] = BBCode::convert($body, false, 4);
break;
case "audio":
$params['type'] = "audio";
$params['external_url'] = $siteinfo["url"];
$params['caption'] = BBCode::convert($body, false, 4);
break;
case "video":
$params['type'] = "video";
$params['embed'] = $siteinfo["url"];
$params['caption'] = BBCode::convert($body, false, 4);
break;
default:
$params['type'] = "text";
$params['title'] = $title;
@ -409,12 +438,14 @@ function tumblr_send(&$a,&$b) {
break;
}
if (isset($params['caption']) && (trim($title) != ""))
if (isset($params['caption']) && (trim($title) != "")) {
$params['caption'] = '<h1>'.$title."</h1>".
"<p>".$params['caption']."</p>";
}
if (empty($params['caption']))
if (empty($params['caption'])) {
$params['caption'] = BBCode::convert("[quote]" . $siteinfo["description"] . "[/quote]", false, 4);
}
$consumer_key = Config::get('tumblr','consumer_key');
$consumer_secret = Config::get('tumblr','consumer_secret');
@ -424,14 +455,15 @@ function tumblr_send(&$a,&$b) {
// Make an API call with the TumblrOAuth instance.
$x = $tum_oauth->post($tmbl_blog,$params);
$ret_code = $tum_oauth->http_code;
//print_r($params);
if($ret_code == 201)
if ($ret_code == 201) {
logger('tumblr_send: success');
elseif($ret_code == 403)
} elseif ($ret_code == 403) {
logger('tumblr_send: authentication failure');
else
} else {
logger('tumblr_send: general error: ' . print_r($x,true));
}
}
}