]> git.mxchange.org Git - friendica.git/commitdiff
honour "post to xxx network by default" when using API
authorFriendika <info@friendika.com>
Sun, 14 Aug 2011 11:26:41 +0000 (04:26 -0700)
committerFriendika <info@friendika.com>
Sun, 14 Aug 2011 11:26:41 +0000 (04:26 -0700)
addon/facebook/facebook.php
addon/statusnet/statusnet.php
addon/twitter/twitter.php
mod/item.php

index af98298346f3002d8f20a0b8f5d044ca2f0da056..47e7691e46a952ebfe26f37611f6dd618326c3a8 100644 (file)
@@ -530,6 +530,13 @@ function facebook_post_hook(&$a,&$b) {
                        $fb_enable = (($fb_post && x($_POST,'facebook_enable')) ? intval($_POST['facebook_enable']) : 0);
                        $fb_token  = get_pconfig(local_user(),'facebook','access_token');
 
+                       // if API is used, default to the chosen settings
+                       if($_POST['api_source'] && intval(get_pconfig(local_user(),'facebook','post_by_default')))
+                               $fb_enable = 1;
+
+
+
+
                        logger('facebook: $fb_post: ' . $fb_post . ' $fb_enable: ' . $fb_enable . ' $fb_token: ' . $fb_token,LOGGER_DEBUG); 
 
                        // post to facebook if it's a public post and we've ticked the 'post to Facebook' box, 
index b18eac2b8651409468ec99d09a578dbf3240958d..2ce4b7eabf0edbc0253087a6ff22afd14c54c0b6 100644 (file)
@@ -374,6 +374,9 @@ function statusnet_post_hook(&$a,&$b) {
 
                        $statusnet_post = get_pconfig(local_user(),'statusnet','post');
                        $statusnet_enable = (($statusnet_post && x($_POST,'statusnet_enable')) ? intval($_POST['statusnet_enable']) : 0);
+                       // if API is used, default to the chosen settings
+                       if($_POST['api_source'] && intval(get_pconfig(local_user(),'statusnet','post_by_default')))
+                               $statusnet_enable = 1;
 
                        if($statusnet_enable && $statusnet_post) {
                                require_once('include/bbcode.php');     
index c3fbc3e648677d3dc3d5575ca63755f0647d142c..b1c8a0a897a3b388663b39d82f1ba7d452a8a9a9 100644 (file)
@@ -225,6 +225,10 @@ function twitter_post_hook(&$a,&$b) {
                        $twitter_post = intval(get_pconfig(local_user(),'twitter','post'));
                        $twitter_enable = (($twitter_post && x($_POST,'twitter_enable')) ? intval($_POST['twitter_enable']) : 0);
 
+                       // if API is used, default to the chosen settings
+                       if($_POST['api_source'] && intval(get_pconfig(local_user(),'twitter','post_by_default')))
+                               $twitter_enable = 1;
+
                        if($twitter_post && $twitter_enable) {
                                logger('Posting to Twitter', LOGGER_DEBUG);
                                require_once('library/twitteroauth.php');
index 62c1d4a873b512280b1aa544ef17302a9c511c3e..cc4e1e1a84b5b9a5b1ac4b43dae7f2dc8eafbfc3 100644 (file)
@@ -178,6 +178,20 @@ function item_post(&$a) {
        
                $pubmail_enable    = ((x($_POST,'pubmail_enable') && intval($_POST['pubmail_enable']) && (! $private)) ? 1 : 0);
 
+               // if using the API, we won't see pubmail_enable - figure out if it should be set
+
+               if($api_source && $profile_uid && $profile_uid == local_user()) {
+                       $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
+                       if(! $mail_disabled) {
+                               $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d AND `server` != '' LIMIT 1",
+                                       intval(local_user())
+                               );
+                               if(count($r) && intval($r[0]['pubmail']))
+                                       $pubmail_enabled = true;
+                       }
+               }
+
+
                if(! strlen($body)) {
                        info( t('Empty post discarded.') . EOL );
                        if(x($_POST,'return'))