Package org.springframework.security.oauth.examples.sparklr.mvc

Source Code of org.springframework.security.oauth.examples.sparklr.mvc.PhotoController

package org.springframework.security.oauth.examples.sparklr.mvc;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Collection;
import java.util.Iterator;

import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.security.oauth.examples.sparklr.PhotoInfo;
import org.springframework.security.oauth.examples.sparklr.PhotoService;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;

/**
* Controller for managing the lists of controllers for a person.
*
* @author Ryan Heaton
* @author Dave Syer
*/
@Controller
public class PhotoController {

  private PhotoService photoService;

  @RequestMapping(value = "/photos", params = "format=json")
  @ResponseBody
  public ResponseEntity<String> getJsonPhotos(@RequestParam(required = false) String callback) throws Exception {
    Collection<PhotoInfo> photos = photoService.getPhotosForCurrentUser();
    StringBuilder out = new StringBuilder();
    if (callback != null) {
      out.append(callback);
      out.append("( ");
    }
    out.append("{ \"photos\" : [ ");
    Iterator<PhotoInfo> photosIt = photos.iterator();
    while (photosIt.hasNext()) {
      PhotoInfo photo = photosIt.next();
      out.append(String.format("{ \"id\" : \"%s\" , \"name\" : \"%s\" }", photo.getId(), photo.getName()));
      if (photosIt.hasNext()) {
        out.append(" , ");
      }
    }
    out.append("] }");
    if (callback != null) {
      out.append(" )");
    }
    HttpHeaders headers = new HttpHeaders();
    headers.set("Content-Type", "application/json");
    return new ResponseEntity<String>(out.toString(), headers, HttpStatus.OK);
  }

  @RequestMapping(value = "/photos", params = "format=xml")
  @ResponseBody
  public ResponseEntity<String> getXmlPhotos() throws Exception {
    Collection<PhotoInfo> photos = photoService.getPhotosForCurrentUser();
    StringBuilder out = new StringBuilder();
    out.append("<photos>");
    for (PhotoInfo photo : photos) {
      out.append(String.format("<photo id=\"%s\" name=\"%s\"/>", photo.getId(), photo.getName()));
    }
    out.append("</photos>");
    HttpHeaders headers = new HttpHeaders();
    headers.set("Content-Type", "application/xml");
    return new ResponseEntity<String>(out.toString(), headers, HttpStatus.OK);
  }

  @RequestMapping("/photos/{photoId}")
  public ResponseEntity<byte[]> getPhoto(@PathVariable("photoId") String id) throws IOException {
    InputStream photo = photoService.loadPhoto(id);
    if (photo == null) {
      return new ResponseEntity<byte[]>(HttpStatus.NOT_FOUND);
    } else {
      ByteArrayOutputStream out = new ByteArrayOutputStream();
      byte[] buffer = new byte[1024];
      int len = photo.read(buffer);
      while (len >= 0) {
        out.write(buffer, 0, len);
        len = photo.read(buffer);
      }
      HttpHeaders headers = new HttpHeaders();
      headers.set("Content-Type", "image/jpeg");
      return new ResponseEntity<byte[]>(out.toByteArray(), headers, HttpStatus.OK);
    }
  }

  public void setPhotoService(PhotoService photoService) {
    this.photoService = photoService;
  }

}
TOP

Related Classes of org.springframework.security.oauth.examples.sparklr.mvc.PhotoController

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.