diff options
author | KillyMXI | 2017-06-20 01:41:58 +0300 |
---|---|---|
committer | KillyMXI | 2017-06-20 01:41:58 +0300 |
commit | f3312679fa538122cd81e0e9a0a251ebb296b80e (patch) | |
tree | 767fb6d52e07f6c9a43bec79e1c8ddfeaae1861c /juick-api/src/main/java | |
parent | 894886e808cb8957e83c05921d2452421f1defd4 (diff) |
HttpUtils.downloadImage() takes additional argument,
one hardcoded path less
Diffstat (limited to 'juick-api/src/main/java')
-rw-r--r-- | juick-api/src/main/java/com/juick/api/controllers/Post.java | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/juick-api/src/main/java/com/juick/api/controllers/Post.java b/juick-api/src/main/java/com/juick/api/controllers/Post.java index 322587fb..0173cf04 100644 --- a/juick-api/src/main/java/com/juick/api/controllers/Post.java +++ b/juick-api/src/main/java/com/juick/api/controllers/Post.java @@ -70,13 +70,12 @@ public class Post { } body = body.replace("\r", StringUtils.EMPTY); - String attachmentFName = HttpUtils.receiveMultiPartFile(attach, env.getProperty("upload_tmp_dir", - "/var/www/juick.com/i/tmp/")); + String attachmentFName = HttpUtils.receiveMultiPartFile(attach, apiServer.tmpDir); if (StringUtils.isBlank(attachmentFName) && img != null && img.length() > 10) { try { URL imgUrl = new URL(img); - attachmentFName = HttpUtils.downloadImage(imgUrl); + attachmentFName = HttpUtils.downloadImage(imgUrl, apiServer.tmpDir); } catch (Exception e) { logger.error("DOWNLOAD ERROR", e); throw new HttpBadRequestException(); @@ -139,12 +138,11 @@ public class Post { throw new HttpForbiddenException(); } - String attachmentFName = HttpUtils.receiveMultiPartFile(attach, env.getProperty("upload_tmp_dir", - "/var/www/juick.com/i/tmp/")); + String attachmentFName = HttpUtils.receiveMultiPartFile(attach, apiServer.tmpDir); if (StringUtils.isBlank(attachmentFName) && img != null && img.length() > 10) { try { - attachmentFName = HttpUtils.downloadImage(new URL(img)); + attachmentFName = HttpUtils.downloadImage(new URL(img), apiServer.tmpDir); } catch (Exception e) { logger.error("DOWNLOAD ERROR", e); throw new HttpBadRequestException(); |