Quit if twitter addon is not configured

This commit is contained in:
Michael 2018-01-30 18:52:06 +00:00
parent d67ac814e7
commit 633c54d642
1 changed files with 6 additions and 0 deletions

View File

@ -158,6 +158,12 @@ function twitter_follow(App $a, &$contact)
$otoken = PConfig::get($uid, 'twitter', 'oauthtoken');
$osecret = PConfig::get($uid, 'twitter', 'oauthsecret');
// If the addon is not configured (general or for this user) quit here
if (empty($ckey) || empty($csecret) || empty($otoken) || empty($osecret)) {
$contact = false;
return;
}
$connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
$connection->post('friendships/create', ['screen_name' => $nickname]);