X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=blogger%2Fblogger.php;h=050aaa7a1734cfb0d28dae387163f5ba139fe8bc;hb=96c41e56233765571870b56081efc366655bead4;hp=aa1b9add3120d5ee45712f91d3c8dbd21b19d503;hpb=94d3235df7a0ea626eebd34a30dc993aa3569e64;p=friendica-addons.git diff --git a/blogger/blogger.php b/blogger/blogger.php old mode 100755 new mode 100644 index aa1b9add..050aaa7a --- a/blogger/blogger.php +++ b/blogger/blogger.php @@ -1,172 +1,184 @@ ' - . t('Post to blogger') . ''; - } + $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'); +function blogger_settings(&$a, &$s) +{ + if (! local_user()) { + return; + } - $checked = (($enabled) ? ' checked="checked" ' : ''); + /* Add our stylesheet to the page so we can make our settings look nice */ - $def_enabled = get_pconfig(local_user(),'blogger','post_by_default'); + $a->page['htmlhead'] .= '' . "\r\n"; - $def_checked = (($def_enabled) ? ' checked="checked" ' : ''); + /* Get the current state of our config variables */ - $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'); + $enabled = PConfig::get(local_user(), 'blogger', 'post'); + $checked = (($enabled) ? ' checked="checked" ' : ''); + $css = (($enabled) ? '' : '-disabled'); + $def_enabled = PConfig::get(local_user(), 'blogger', 'post_by_default'); - /* Add some HTML to the existing form */ + $def_checked = (($def_enabled) ? ' checked="checked" ' : ''); - $s .= '
'; - $s .= '

' . t('Blogger Post Settings') . '

'; - $s .= '
'; - $s .= ''; - $s .= ''; - $s .= '
'; + $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'); - $s .= '
'; - $s .= ''; - $s .= ''; - $s .= '
'; + /* Add some HTML to the existing form */ + $s .= ''; + $s .= '

'. t('Blogger Export').'

'; + $s .= '
'; + $s .= ''; + $s .= '
'; + $s .= ''; + $s .= ''; + $s .= '
'; + /* provide a submit button */ + $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'])); - +function blogger_settings_post(&$a, &$b) +{ + 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) { - +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); + $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(strlen($b['postopts'])) - $b['postopts'] .= ','; - $b['postopts'] .= 'blogger'; -} - + if (!$bl_enable) { + return; + } + if (strlen($b['postopts'])) { + $b['postopts'] .= ','; + } + $b['postopts'] .= 'blogger'; +} -function blogger_send(&$a,&$b) { - if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) - return; - if(! strstr($b['postopts'],'blogger')) - return; - if($b['parent'] != $b['id']) - return; +function blogger_send(&$a, &$b) +{ + if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited'])) { + return; + } + if (! strstr($b['postopts'], 'blogger')) { + 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'); + if ($b['parent'] != $b['id']) { + return; + } - if($bl_username && $bl_password && $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) { require_once('include/bbcode.php'); $title = '' . (($b['title']) ? $b['title'] : t('Post from Friendica')) . ''; @@ -191,10 +203,10 @@ EOT; logger('blogger: data: ' . $xml, LOGGER_DATA); - if($bl_blog !== 'test') - $x = post_url($bl_blog,$xml); - logger('posted to blogger: ' . (($x) ? $x : ''), LOGGER_DEBUG); + if ($bl_blog !== 'test') { + $x = post_url($bl_blog, $xml); + } + logger('posted to blogger: ' . (($x) ? $x : ''), LOGGER_DEBUG); } } -