Mercurial > zeropaste
annotate app/controllers/pastes_controller.rb @ 222:9bc35555d3e3
Use external jquery instead of rails' builtin
Saves bandwidth and (hopefully) improves speed.
author | Edho Arief <edho@myconan.net> |
---|---|
date | Sun, 12 May 2013 12:38:03 +0900 |
parents | 186b4674bcbe |
children | 9998d8b6c524 |
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 |
73 | 3 |
74
48598fc65c20
Fixed comments on pastes_controller.
Edho Arief <edho@myconan.net>
parents:
73
diff
changeset
|
4 # GET /1 |
48598fc65c20
Fixed comments on pastes_controller.
Edho Arief <edho@myconan.net>
parents:
73
diff
changeset
|
5 # GET /1.txt |
2 | 6 def show |
212
186b4674bcbe
Add controller support for is_private flag
Edho Arief <edho@myconan.net>
parents:
211
diff
changeset
|
7 @paste = Paste.safe_find(params[:id]) |
2 | 8 |
77
2fb80ca710e0
Added cache control so it's cached by browser the first time loaded.
Edho Arief <edho@myconan.net>
parents:
75
diff
changeset
|
9 expires_in 1.year, :public => true |
2 | 10 respond_to do |format| |
11 format.html # show.html.erb | |
74
48598fc65c20
Fixed comments on pastes_controller.
Edho Arief <edho@myconan.net>
parents:
73
diff
changeset
|
12 format.txt # show.txt.erb |
2 | 13 end |
14 end | |
15 | |
74
48598fc65c20
Fixed comments on pastes_controller.
Edho Arief <edho@myconan.net>
parents:
73
diff
changeset
|
16 # GET / |
2 | 17 def new |
18 @paste = Paste.new | |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
19 @paste.set_paste_key |
10 | 20 begin |
21 @paste.paste = Paste.find(params[:base]).paste | |
22 rescue | |
23 end | |
2 | 24 |
25 respond_to do |format| | |
26 format.html # new.html.erb | |
27 end | |
28 end | |
29 | |
74
48598fc65c20
Fixed comments on pastes_controller.
Edho Arief <edho@myconan.net>
parents:
73
diff
changeset
|
30 # POST / |
2 | 31 # POST /pastes.json |
74
48598fc65c20
Fixed comments on pastes_controller.
Edho Arief <edho@myconan.net>
parents:
73
diff
changeset
|
32 # POST /pastes.txt |
2 | 33 def create |
211 | 34 if params[:paste] && params[:paste][:paste_gzip_base64] |
35 # 1. decode from base64 | |
36 # 2. create StringIO from decoded string | |
37 # 3. unzip and read the stream | |
38 params[:paste][:paste] = Zlib::GzipReader.new(StringIO.new(Base64.decode64(params[:paste][:paste_gzip_base64].delete))).read | |
69
be561c3967ee
Safety net to ignore invalid post requests.
Edho Arief <edho@myconan.net>
parents:
67
diff
changeset
|
39 end |
211 | 40 @paste = Paste.new(paste_params.merge(ip: request.remote_ip)) |
2 | 41 |
32
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
42 begin |
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
43 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
|
44 if @paste.save |
181 | 45 @fresh = true |
32
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
46 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
|
47 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
|
48 else |
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
49 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
|
50 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
|
51 end |
67
f7b7a39fb48c
Allow post in txt format pt. 2 (view and controller).
Edho Arief <edho@myconan.net>
parents:
53
diff
changeset
|
52 format.txt |
2 | 53 end |
32
59ef6698fa0d
Rescue from not unique error by redirecting to previously pasted paste.
Edho Arief <edho@myconan.net>
parents:
12
diff
changeset
|
54 rescue ActiveRecord::RecordNotUnique |
183
fc234f8cf3d9
Return on duplicate based on post format.
Edho Arief <edho@myconan.net>
parents:
181
diff
changeset
|
55 @paste = Paste.where(:ip => @paste.ip, :paste_hash => @paste.paste_hash).first |
fc234f8cf3d9
Return on duplicate based on post format.
Edho Arief <edho@myconan.net>
parents:
181
diff
changeset
|
56 respond_to do |format| |
fc234f8cf3d9
Return on duplicate based on post format.
Edho Arief <edho@myconan.net>
parents:
181
diff
changeset
|
57 format.html { redirect_to paste_path(@paste) } |
fc234f8cf3d9
Return on duplicate based on post format.
Edho Arief <edho@myconan.net>
parents:
181
diff
changeset
|
58 format.json { render :json => @paste } |
fc234f8cf3d9
Return on duplicate based on post format.
Edho Arief <edho@myconan.net>
parents:
181
diff
changeset
|
59 format.txt |
fc234f8cf3d9
Return on duplicate based on post format.
Edho Arief <edho@myconan.net>
parents:
181
diff
changeset
|
60 end |
2 | 61 end |
62 end | |
63 | |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
64 def destroy |
212
186b4674bcbe
Add controller support for is_private flag
Edho Arief <edho@myconan.net>
parents:
211
diff
changeset
|
65 @paste = Paste.safe_find(params[:id]) |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
66 if @paste.key == params[:paste][:key] |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
67 @paste.destroy |
191
4e409ac7082d
Also expires the page upon deletion.
Edho Arief <edho@myconan.net>
parents:
190
diff
changeset
|
68 expire_page :controller => 'pastes', :action => 'show', :id => @paste.id |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
69 flash[:notice] = "Paste ##{params[:id]} deleted" |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
70 redirect_to root_path |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
71 else |
190 | 72 flash[:error] = 'Incorrect deletion key' |
189
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
73 render :action => :show |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
74 end |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
75 end |
b4b7a29b70f6
Initial work for paste deletion.
Edho Arief <edho@myconan.net>
parents:
183
diff
changeset
|
76 |
211 | 77 private |
78 def paste_params | |
212
186b4674bcbe
Add controller support for is_private flag
Edho Arief <edho@myconan.net>
parents:
211
diff
changeset
|
79 params.require(:paste).permit(:paste, :is_private, :key) |
211 | 80 end |
2 | 81 end |