123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- class UploadsController < ApplicationController
- before_action :set_upload, only: [:show, :edit, :update, :destroy]
-
-
- def index
- @uploads = Upload.all
- end
-
-
- def show
- end
-
- def new
- @upload = Upload.new
- end
-
- def edit
- end
-
-
- def create
- @upload = Upload.new(upload_params)
- respond_to do |format|
- if @upload.save
- format.html { redirect_to @upload, notice: 'Upload was successfully created.' }
- format.json { render action: 'show', status: :created, location: @upload }
- else
- format.html { render action: 'new' }
- format.json { render json: @upload.errors, status: :unprocessable_entity }
- end
- end
- end
-
-
- def update
- respond_to do |format|
- if @upload.update(upload_params)
- format.html { redirect_to @upload, notice: 'Upload was successfully updated.' }
- format.json { head :no_content }
- else
- format.html { render action: 'edit' }
- format.json { render json: @upload.errors, status: :unprocessable_entity }
- end
- end
- end
-
-
- def destroy
- @upload.destroy
- respond_to do |format|
- format.html { redirect_to admin_files_path }
- format.json { head :no_content }
- end
- end
-
- def upload
- @file = params[:file]
- @upload = Upload.create(:file => @file)
- @upload.title = @upload.file.to_s.split('/').last
- @upload.save
- render(json: {:url => @upload.file.to_s })
- end
- private
-
- def set_upload
- @upload = Upload.find(params[:id])
- end
-
- def upload_params
- params.require(:upload).permit(:title, :file, :description)
- end
- end
|