Skip to content
Extraits de code Groupes Projets
photos_controller.rb 3,2 ko
Newer Older
Raphael's avatar
Raphael a validé
#   Copyright (c) 2010, Diaspora Inc.  This file is
Raphael's avatar
Raphael a validé
#   licensed under the Affero General Public License version 3.  See
#   the COPYRIGHT file.
Raphael's avatar
Raphael a validé
class PhotosController < ApplicationController
  before_filter :authenticate_user!

  respond_to :html
  respond_to :json, :only => :show
Raphael's avatar
Raphael a validé
  def create
    album = Album.find_by_id params[:album_id]

      ######################## dealing with local files #############
      # get file name
      file_name = params[:qqfile]
      # get file content type
      att_content_type = (request.content_type.to_s == "") ? "application/octet-stream" : request.content_type.to_s
      # create temporal file
      begin
        file = Tempfile.new(file_name, {:encoding =>  'BINARY'})
        file.print request.raw_post.force_encoding('BINARY')
      rescue RuntimeError => e
        raise e unless e.message.include?('cannot generate tempfile')
        file = Tempfile.new(file_name) # Ruby 1.8 compatibility
        file.print request.raw_post
      end
      # put data into this file from raw post request

      # create several required methods for this temporal file
      Tempfile.send(:define_method, "content_type") {return att_content_type}
      Tempfile.send(:define_method, "original_filename") {return file_name}

      ##############

Jamie Wilkinson's avatar
Jamie Wilkinson a validé
      params[:user_file] = file

      data = clean_hash(params)

      @photo = current_user.post(:photo, data)

      respond_to do |format|
        format.json{render(:layout => false , :json => {"success" => true, "data" => @photo}.to_json )}
      end
    rescue TypeError
      message = I18n.t 'photos.create.type_error'
      respond_with :location => album, :error => message

    rescue CarrierWave::IntegrityError
      message = I18n.t 'photos.create.integrity_error'
      respond_with :location => album, :error => message

      message = I18n.t 'photos.create.runtime_error'
      respond_with :location => album, :error => message
Raphael's avatar
Raphael a validé
  end
Raphael's avatar
Raphael a validé
  def new
    @photo = Photo.new
    @album = current_user.album_by_id(params[:album_id])
Daniel Vincent Grippi's avatar
Daniel Vincent Grippi a validé
    render :partial => 'new_photo'
Raphael's avatar
Raphael a validé
  end
Raphael's avatar
Raphael a validé
  def destroy
    @photo = current_user.find_visible_post_by_id params[:id]

Raphael's avatar
Raphael a validé
    @photo.destroy
    flash[:notice] = I18n.t 'photos.destroy.notice'
    respond_with :location => @photo.album
Raphael's avatar
Raphael a validé
  end
Raphael's avatar
Raphael a validé
  def show
    @photo = current_user.find_visible_post_by_id params[:id]
maxwell's avatar
maxwell a validé
    @album = @photo.album
Raphael's avatar
Raphael a validé
  end
    @photo = current_user.find_visible_post_by_id params[:id]

    redirect_to @photo unless current_user.owns? @album
    @photo = current_user.find_visible_post_by_id params[:id]

    data = clean_hash(params)

danielvincent's avatar
danielvincent a validé
    if current_user.update_post( @photo, data[:photo] )
      flash[:notice] = I18n.t 'photos.update.notice'
      respond_with @photo
    else
      flash[:error] = I18n.t 'photos.update.error'
      render :action => :edit
    end

  private
  def clean_hash(params)
    if params[:photo]
      return {
        :photo => {
          :caption   => params[:photo][:caption],
        }
      }
    else
      return{
        :album_id  => params[:album_id],
        :user_file => params[:user_file]
      }
    end
Raphael's avatar
Raphael a validé
end