diff options
author | friendica <info@friendica.com> | 2012-04-22 15:43:24 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-04-22 15:43:24 -0700 |
commit | c0dffa7442abdcaee8bcc2eb97a3ed71d60ce554 (patch) | |
tree | 74065ac9cbdc5ee0868497438279cedb5b29f496 /mod | |
parent | 3c6c5d4749852eaf8b4111cd2f18fe9c4d4ad71b (diff) | |
parent | 76aa9b3037a69d7d3be7e2f7c1416438a30dd577 (diff) | |
download | volse-hubzilla-c0dffa7442abdcaee8bcc2eb97a3ed71d60ce554.tar.gz volse-hubzilla-c0dffa7442abdcaee8bcc2eb97a3ed71d60ce554.tar.bz2 volse-hubzilla-c0dffa7442abdcaee8bcc2eb97a3ed71d60ce554.zip |
Merge pull request #258 from unary/api
api: add support for StatusNet-style media param to API
Diffstat (limited to 'mod')
-rw-r--r-- | mod/wall_upload.php | 38 |
1 files changed, 26 insertions, 12 deletions
diff --git a/mod/wall_upload.php b/mod/wall_upload.php index f341cc9cd..fa66561e8 100644 --- a/mod/wall_upload.php +++ b/mod/wall_upload.php @@ -5,19 +5,26 @@ require_once('Photo.php'); function wall_upload_post(&$a) { if($a->argc > 1) { - $nick = $a->argv[1]; - $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1", - dbesc($nick) - ); - if(! count($r)) - return; - + if(! x($_FILES,'media')) { + $nick = $a->argv[1]; + $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1", + dbesc($nick) + ); + + if(! count($r)) + return; + } + else { + $user_info = api_get_user($a); + $r = q("SELECT `user`.*, `contact`.`id` FROM `user` LEFT JOIN `contact` on `user`.`uid` = `contact`.`uid` WHERE `user`.`nickname` = '%s' AND `user`.`blocked` = 0 and `contact`.`self` = 1 LIMIT 1", + dbesc($user_info['screen_name']) + ); + } } else return; - $can_post = false; $visitor = 0; @@ -47,12 +54,19 @@ function wall_upload_post(&$a) { killme(); } - if(! x($_FILES,'userfile')) + if(! x($_FILES,'userfile') && ! x($_FILES,'media')) killme(); - $src = $_FILES['userfile']['tmp_name']; - $filename = basename($_FILES['userfile']['name']); - $filesize = intval($_FILES['userfile']['size']); + if(x($_FILES,'userfile')) { + $src = $_FILES['userfile']['tmp_name']; + $filename = basename($_FILES['userfile']['name']); + $filesize = intval($_FILES['userfile']['size']); + } + elseif(x($_FILES,'media')) { + $src = $_FILES['media']['tmp_name']; + $filename = basename($_FILES['media']['name']); + $filesize = intval($_FILES['media']['size']); + } $maximagesize = get_config('system','maximagesize'); |