X-Git-Url: https://git.mxchange.org/?p=friendica-addons.git;a=blobdiff_plain;f=blogger%2Fblogger.php;h=7c9e1c5d0b24d37ac3312933320d8784af52fd70;hp=df79d195245f8162760ec8ead84d92730b1f6124;hb=0afd633346b517894ff8e92c705bd5d052dd06a2;hpb=639a32fe19fb2b1943f9ac657ff86b658732b10e diff --git a/blogger/blogger.php b/blogger/blogger.php old mode 100755 new mode 100644 index df79d195..7c9e1c5d --- a/blogger/blogger.php +++ b/blogger/blogger.php @@ -1,179 +1,178 @@ ' - . t('Post to blogger') . ''; - } + if (!local_user()) { + return; + } + + $bl_post = PConfig::get(local_user(),'blogger','post'); + if (intval($bl_post) == 1) { + $bl_defpost = PConfig::get(local_user(),'blogger','post_by_default'); + $selected = ((intval($bl_defpost) == 1) ? ' checked="checked" ' : ''); + $b .= '
' + . t('Post to blogger') . '
'; + } } function blogger_settings(&$a,&$s) { - if(! local_user()) - return; + if (! local_user()) { + return; + } - /* Add our stylesheet to the page so we can make our settings look nice */ + /* Add our stylesheet to the page so we can make our settings look nice */ - $a->page['htmlhead'] .= '' . "\r\n"; + $a->page['htmlhead'] .= '' . "\r\n"; - /* Get the current state of our config variables */ + /* Get the current state of our config variables */ - $enabled = PConfig::get(local_user(),'blogger','post'); - $checked = (($enabled) ? ' checked="checked" ' : ''); - $css = (($enabled) ? '' : '-disabled'); + $enabled = PConfig::get(local_user(),'blogger','post'); + $checked = (($enabled) ? ' checked="checked" ' : ''); + $css = (($enabled) ? '' : '-disabled'); - $def_enabled = PConfig::get(local_user(),'blogger','post_by_default'); + $def_enabled = PConfig::get(local_user(),'blogger','post_by_default'); - $def_checked = (($def_enabled) ? ' checked="checked" ' : ''); + $def_checked = (($def_enabled) ? ' checked="checked" ' : ''); $bl_username = PConfig::get(local_user(), 'blogger', 'bl_username'); $bl_password = PConfig::get(local_user(), 'blogger', 'bl_password'); $bl_blog = PConfig::get(local_user(), 'blogger', 'bl_blog'); - - /* Add some HTML to the existing form */ - - $s .= ''; - $s .= '

'. t('Blogger Export').'

'; - $s .= '
'; - $s .= ''; - + /* Add some HTML to the existing form */ + $s .= ''; + $s .= '

'. t('Blogger Export').'

'; + $s .= '
'; + $s .= ''; } function blogger_settings_post(&$a,&$b) { - - if(x($_POST,'blogger-submit')) { - + if (x($_POST,'blogger-submit')) { PConfig::set(local_user(),'blogger','post',intval($_POST['blogger'])); PConfig::set(local_user(),'blogger','post_by_default',intval($_POST['bl_bydefault'])); PConfig::set(local_user(),'blogger','bl_username',trim($_POST['bl_username'])); PConfig::set(local_user(),'blogger','bl_password',trim($_POST['bl_password'])); PConfig::set(local_user(),'blogger','bl_blog',trim($_POST['bl_blog'])); - } - } function blogger_post_local(&$a,&$b) { - // This can probably be changed to allow editing by pointing to a different API endpoint - if($b['edit']) + if ($b['edit']) { return; + } - if((! local_user()) || (local_user() != $b['uid'])) + if (!local_user() || (local_user() != $b['uid'])) { return; + } - if($b['private'] || $b['parent']) + if ($b['private'] || $b['parent']) { return; + } - $bl_post = intval(PConfig::get(local_user(),'blogger','post')); + $bl_post = intval(PConfig::get(local_user(),'blogger','post')); $bl_enable = (($bl_post && x($_REQUEST,'blogger_enable')) ? intval($_REQUEST['blogger_enable']) : 0); - if($b['api_source'] && intval(PConfig::get(local_user(),'blogger','post_by_default'))) + if ($b['api_source'] && intval(PConfig::get(local_user(),'blogger','post_by_default'))) { $bl_enable = 1; + } + + if (!$bl_enable) { + return; + } - if(! $bl_enable) - return; + if (strlen($b['postopts'])) { + $b['postopts'] .= ','; + } - if(strlen($b['postopts'])) - $b['postopts'] .= ','; - $b['postopts'] .= 'blogger'; + $b['postopts'] .= 'blogger'; } function blogger_send(&$a,&$b) { + if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) { + return; + } - if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) - return; - - if(! strstr($b['postopts'],'blogger')) - return; - - if($b['parent'] != $b['id']) - return; + if (! strstr($b['postopts'],'blogger')) { + return; + } + if ($b['parent'] != $b['id']) { + return; + } $bl_username = xmlify(PConfig::get($b['uid'],'blogger','bl_username')); $bl_password = xmlify(PConfig::get($b['uid'],'blogger','bl_password')); $bl_blog = PConfig::get($b['uid'],'blogger','bl_blog'); - if($bl_username && $bl_password && $bl_blog) { + if ($bl_username && $bl_password && $bl_blog) { require_once('include/bbcode.php'); @@ -199,10 +198,10 @@ EOT; logger('blogger: data: ' . $xml, LOGGER_DATA); - if($bl_blog !== 'test') + if ($bl_blog !== 'test') { $x = post_url($bl_blog,$xml); - logger('posted to blogger: ' . (($x) ? $x : ''), LOGGER_DEBUG); + } + logger('posted to blogger: ' . (($x) ? $x : ''), LOGGER_DEBUG); } -} - +} \ No newline at end of file