Java tutorial
/* * Symphony - A modern community (forum/SNS/blog) platform written in Java. * Copyright (C) 2012-2016, b3log.org & hacpai.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.b3log.symphony.processor; import com.qiniu.storage.UploadManager; import com.qiniu.util.Auth; import java.io.FileOutputStream; import java.io.OutputStream; import java.util.UUID; import javax.inject.Inject; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import jodd.http.HttpRequest; import jodd.http.HttpResponse; import jodd.util.MimeTypes; import org.apache.commons.io.IOUtils; import org.apache.commons.lang.StringUtils; import org.b3log.latke.Keys; import org.b3log.latke.Latkes; import org.b3log.latke.logging.Level; import org.b3log.latke.logging.Logger; import org.b3log.latke.servlet.HTTPRequestContext; import org.b3log.latke.servlet.HTTPRequestMethod; import org.b3log.latke.servlet.annotation.After; import org.b3log.latke.servlet.annotation.Before; import org.b3log.latke.servlet.annotation.RequestProcessing; import org.b3log.latke.servlet.annotation.RequestProcessor; import org.b3log.latke.util.Requests; import org.b3log.symphony.model.Common; import org.b3log.symphony.processor.advice.LoginCheck; import org.b3log.symphony.processor.advice.stopwatch.StopwatchEndAdvice; import org.b3log.symphony.processor.advice.stopwatch.StopwatchStartAdvice; import org.b3log.symphony.service.OptionQueryService; import org.b3log.symphony.util.Symphonys; import org.json.JSONObject; /** * Fetch file and upload processor. * * <p> * <ul> * <li>Fetches the remote file and upload it (/fetch-upload), POST</li> * </ul> * </p> * * @author <a href="http://88250.b3log.org">Liang Ding</a> * @version 1.0.0.0, Jul 31, 2016 * @since 1.5.0 */ @RequestProcessor public class FetchUploadProcessor { /** * Logger. */ private static final Logger LOGGER = Logger.getLogger(FetchUploadProcessor.class); /** * Option query service. */ @Inject private OptionQueryService optionQueryService; /** * Fetches the remote file and upload it. * * @param context the specified context * @param request the specified request * @param response the specified response * @throws Exception exception */ @RequestProcessing(value = "/fetch-upload", method = HTTPRequestMethod.POST) @Before(adviceClass = { StopwatchStartAdvice.class, LoginCheck.class }) @After(adviceClass = { StopwatchEndAdvice.class }) public void fetchUpload(final HTTPRequestContext context, final HttpServletRequest request, final HttpServletResponse response) throws Exception { context.renderJSON(); JSONObject requestJSONObject; try { requestJSONObject = Requests.parseRequestJSONObject(request, response); request.setAttribute(Keys.REQUEST, requestJSONObject); } catch (final Exception e) { LOGGER.warn(e.getMessage()); return; } final String originalURL = requestJSONObject.optString(Common.URL); HttpResponse res = null; byte[] data; String contentType; try { final HttpRequest req = HttpRequest.get(originalURL); res = req.send(); if (HttpServletResponse.SC_OK != res.statusCode()) { return; } data = res.bodyBytes(); contentType = res.contentType(); } catch (final Exception e) { LOGGER.log(Level.ERROR, "Fetch file [url=" + originalURL + "] failed", e); return; } finally { if (null != res) { try { res.close(); } catch (final Exception e) { LOGGER.log(Level.ERROR, "Close response failed", e); } } } String suffix; String[] exts = MimeTypes.findExtensionsByMimeTypes(contentType, false); if (null != exts && 0 < exts.length) { suffix = exts[0]; } else { suffix = StringUtils.substringAfter(contentType, "/"); } final String fileName = UUID.randomUUID().toString().replace("-", "") + "." + suffix; if (Symphonys.getBoolean("qiniu.enabled")) { final Auth auth = Auth.create(Symphonys.get("qiniu.accessKey"), Symphonys.get("qiniu.secretKey")); final UploadManager uploadManager = new UploadManager(); uploadManager.put(data, "e/" + fileName, auth.uploadToken(Symphonys.get("qiniu.bucket")), null, contentType, false); context.renderJSONValue(Common.URL, Symphonys.get("qiniu.domain") + "/e/" + fileName); context.renderJSONValue("originalURL", originalURL); } else { final OutputStream output = new FileOutputStream(Symphonys.get("upload.dir") + fileName); IOUtils.write(data, output); IOUtils.closeQuietly(output); context.renderJSONValue(Common.URL, Latkes.getServePath() + "/upload/" + fileName); context.renderJSONValue("originalURL", originalURL); } context.renderTrueResult(); } }