mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 02:23:41 +00:00
Improved timeout values/Posting local files
This commit is contained in:
parent
c7aac4178c
commit
34ee3b9a28
1 changed files with 11 additions and 1 deletions
|
@ -528,6 +528,9 @@ function twitter_post_hook(App $a, &$b)
|
||||||
|
|
||||||
$connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
|
$connection = new TwitterOAuth($ckey, $csecret, $otoken, $osecret);
|
||||||
|
|
||||||
|
// Set the timeout for upload to 15 seconds
|
||||||
|
$connection->setTimeouts(10, 15);
|
||||||
|
|
||||||
$max_char = 280;
|
$max_char = 280;
|
||||||
$msgarr = BBCode::toPlaintext($b, $max_char, true, 8);
|
$msgarr = BBCode::toPlaintext($b, $max_char, true, 8);
|
||||||
$msg = $msgarr["text"];
|
$msg = $msgarr["text"];
|
||||||
|
@ -549,7 +552,14 @@ function twitter_post_hook(App $a, &$b)
|
||||||
// and now tweet it :-)
|
// and now tweet it :-)
|
||||||
if (strlen($msg) && ($image != "")) {
|
if (strlen($msg) && ($image != "")) {
|
||||||
try {
|
try {
|
||||||
$media = $connection->upload('media/upload', ['media' => $image]);
|
$img_str = Network::fetchUrl($image);
|
||||||
|
|
||||||
|
$tempfile = tempnam(get_temppath(), 'cache');
|
||||||
|
file_put_contents($tempfile, $img_str);
|
||||||
|
|
||||||
|
$media = $connection->upload('media/upload', ['media' => $tempfile]);
|
||||||
|
|
||||||
|
unlink($tempfile);
|
||||||
|
|
||||||
$post = ['status' => $msg, 'media_ids' => $media->media_id_string];
|
$post = ['status' => $msg, 'media_ids' => $media->media_id_string];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue