A website template with lots of features, built with ruby on rails.

uploads_controller.rb 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. class UploadsController < ApplicationController
  2. before_action :set_upload, only: [:show, :edit, :update, :destroy]
  3. # GET /uploads
  4. # GET /uploads.json
  5. def index
  6. @uploads = Upload.all
  7. end
  8. # GET /uploads/1
  9. # GET /uploads/1.json
  10. def show
  11. end
  12. # GET /uploads/new
  13. def new
  14. @upload = Upload.new
  15. end
  16. # GET /uploads/1/edit
  17. def edit
  18. end
  19. # POST /uploads
  20. # POST /uploads.json
  21. def create
  22. @upload = Upload.new(upload_params)
  23. respond_to do |format|
  24. if @upload.save
  25. format.html { redirect_to @upload, notice: 'Upload was successfully created.' }
  26. format.json { render action: 'show', status: :created, location: @upload }
  27. else
  28. format.html { render action: 'new' }
  29. format.json { render json: @upload.errors, status: :unprocessable_entity }
  30. end
  31. end
  32. end
  33. # PATCH/PUT /uploads/1
  34. # PATCH/PUT /uploads/1.json
  35. def update
  36. respond_to do |format|
  37. if @upload.update(upload_params)
  38. format.html { redirect_to @upload, notice: 'Upload was successfully updated.' }
  39. format.json { head :no_content }
  40. else
  41. format.html { render action: 'edit' }
  42. format.json { render json: @upload.errors, status: :unprocessable_entity }
  43. end
  44. end
  45. end
  46. # DELETE /uploads/1
  47. # DELETE /uploads/1.json
  48. def destroy
  49. @upload.destroy
  50. respond_to do |format|
  51. format.html { redirect_to admin_files_path }
  52. format.json { head :no_content }
  53. end
  54. end
  55. def upload
  56. @file = params[:file]
  57. @upload = Upload.create(:file => @file)
  58. @upload.title = @upload.file.to_s.split('/').last
  59. @upload.save
  60. render(json: {:url => @upload.file.to_s })
  61. end
  62. private
  63. # Use callbacks to share common setup or constraints between actions.
  64. def set_upload
  65. @upload = Upload.find(params[:id])
  66. end
  67. # Never trust parameters from the scary internet, only allow the white list through.
  68. def upload_params
  69. params.require(:upload).permit(:title, :file, :description, :file_tmp, :file_processing)
  70. end
  71. end