Mercurial > zeropaste
annotate app/controllers/pastes_controller.rb @ 48:f649b46fca4f
Cache all the things! Or just the show page.
| author | Edho Arief <edho@myconan.net> |
|---|---|
| date | Thu, 04 Oct 2012 03:05:43 +0700 |
| parents | 59ef6698fa0d |
| children | c09020fc73f5 |
| rev | line source |
|---|---|
| 2 | 1 class PastesController < ApplicationController |
|
48
f649b46fca4f
Cache all the things! Or just the show page.
Edho Arief <edho@myconan.net>
parents:
32
diff
changeset
|
2 caches_page :show |
| 2 | 3 # GET /pastes/1 |
| 4 # GET /pastes/1.json | |
| 5 def show | |
| 6 @paste = Paste.find(params[:id]) | |
| 7 | |
| 8 respond_to do |format| | |
| 9 format.html # show.html.erb | |
| 7 | 10 format.txt # show.html.erb |
| 2 | 11 end |
| 12 end | |
| 13 | |
| 14 # GET /pastes/new | |
| 15 # GET /pastes/new.json | |
| 16 def new | |
| 17 @paste = Paste.new | |
| 10 | 18 begin |
| 19 @paste.paste = Paste.find(params[:base]).paste | |
| 20 rescue | |
| 21 nil | |
| 22 end | |
| 2 | 23 |
| 24 respond_to do |format| | |
| 25 format.html # new.html.erb | |
| 26 format.json { render :json => @paste } | |
| 27 end | |
| 28 end | |
| 29 | |
| 30 # POST /pastes | |
| 31 # POST /pastes.json | |
| 32 def create | |
| 33 @paste = Paste.new | |
| 34 @paste.paste = params[:paste][:paste] | |
| 35 @paste.ip = request.remote_ip | |
| 36 | |
|
32
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
37 begin |
|
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
38 respond_to do |format| |
|
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
39 if @paste.save |
|
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
40 format.html { redirect_to @paste, :notice => 'Paste was successfully created.' } |
|
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
41 format.json { render :json => @paste, :status => :created, :location => @paste } |
|
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
42 else |
|
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
43 format.html { render :action => "new" } |
|
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
44 format.json { render :json => @paste.errors, :status => :unprocessable_entity } |
|
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
45 end |
| 2 | 46 end |
|
32
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
47 rescue ActiveRecord::RecordNotUnique |
|
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
48 redirect_to paste_path(Paste.where(:ip => @paste.ip, :paste_hash => @paste.paste_hash).first) |
| 2 | 49 end |
| 50 end | |
| 51 | |
| 52 end |
