X-Git-Url: https://git.mxchange.org/?p=friendica-addons.git;a=blobdiff_plain;f=blogger%2Fblogger.php;h=7c9e1c5d0b24d37ac3312933320d8784af52fd70;hp=17124b37eb6be55e59e71c6223353253785cec2c;hb=0afd633346b517894ff8e92c705bd5d052dd06a2;hpb=e97a64a73525569faa6070db344efeb26acaa140 diff --git a/blogger/blogger.php b/blogger/blogger.php old mode 100755 new mode 100644 index 17124b37..7c9e1c5d --- a/blogger/blogger.php +++ b/blogger/blogger.php @@ -1,177 +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; - - /* Add our stylesheet to the page so we can make our settings look nice */ - - $a->page['htmlhead'] .= '' . "\r\n"; - - /* Get the current state of our config variables */ - - $enabled = get_pconfig(local_user(),'blogger','post'); - - $checked = (($enabled) ? ' checked="checked" ' : ''); + if (! local_user()) { + return; + } - $def_enabled = get_pconfig(local_user(),'blogger','post_by_default'); + /* Add our stylesheet to the page so we can make our settings look nice */ - $def_checked = (($def_enabled) ? ' checked="checked" ' : ''); + $a->page['htmlhead'] .= '' . "\r\n"; - $bl_username = get_pconfig(local_user(), 'blogger', 'bl_username'); - $bl_password = get_pconfig(local_user(), 'blogger', 'bl_password'); - $bl_blog = get_pconfig(local_user(), 'blogger', 'bl_blog'); + /* Get the current state of our config variables */ + $enabled = PConfig::get(local_user(),'blogger','post'); + $checked = (($enabled) ? ' checked="checked" ' : ''); + $css = (($enabled) ? '' : '-disabled'); - /* Add some HTML to the existing form */ + $def_enabled = PConfig::get(local_user(),'blogger','post_by_default'); - $s .= ''; - $s .= '

'. t('Blogger Export').'

'; - $s .= '
'; - $s .= ''; } function blogger_settings_post(&$a,&$b) { - - if(x($_POST,'blogger-submit')) { - - set_pconfig(local_user(),'blogger','post',intval($_POST['blogger'])); - set_pconfig(local_user(),'blogger','post_by_default',intval($_POST['bl_bydefault'])); - set_pconfig(local_user(),'blogger','bl_username',trim($_POST['bl_username'])); - set_pconfig(local_user(),'blogger','bl_password',trim($_POST['bl_password'])); - set_pconfig(local_user(),'blogger','bl_blog',trim($_POST['bl_blog'])); - + 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(get_pconfig(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($_REQUEST['api_source'] && intval(get_pconfig(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(get_pconfig($b['uid'],'blogger','bl_username')); - $bl_password = xmlify(get_pconfig($b['uid'],'blogger','bl_password')); - $bl_blog = get_pconfig($b['uid'],'blogger','bl_blog'); + $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'); @@ -197,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