Back to project page kitty-compass.
The source code is released under:
Apache License
If you think the Android project kitty-compass listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (C) 2013 Google Inc.// ww w . jav a 2s . c o m * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ package com.google.glassware; import com.google.api.client.auth.oauth2.Credential; import com.google.common.io.ByteStreams; import java.io.IOException; import java.io.InputStream; import java.util.logging.Logger; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * Allows logged in users to view their timeline item attachments by proxying * their app engine session to their OAuth session. * * @author Jenny Murphy - http://google.com/+JennyMurphy */ public class AttachmentProxyServlet extends HttpServlet { private static final Logger LOG = Logger.getLogger(AttachmentProxyServlet.class.getSimpleName()); @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { String attachmentId = req.getParameter("attachment"); String timelineItemId = req.getParameter("timelineItem"); if (attachmentId == null || timelineItemId == null) { LOG.warning("attempted to load image attachment with missing IDs"); resp.sendError(400); } // identify the viewing user Credential credential = AuthUtil.getCredential(req); // Get the content type String contentType = MirrorClient.getAttachmentContentType(credential, timelineItemId, attachmentId); // Get the attachment bytes InputStream attachmentInputStream = MirrorClient.getAttachmentInputStream(credential, timelineItemId, attachmentId); // Write it out resp.setContentType(contentType); ByteStreams.copy(attachmentInputStream, resp.getOutputStream()); } }