forked from al3x/git-wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-wiki.rb
executable file
·189 lines (154 loc) · 4.05 KB
/
git-wiki.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
#!/usr/bin/env ruby
require 'fileutils'
require 'environment'
require 'sinatra/lib/sinatra'
get('/') { redirect "/#{HOMEPAGE}" }
# page paths
get '/:page' do
@page = Page.new(params[:page])
@page.tracked? ? show(:show, @page.name) : redirect('/e/' + @page.name)
end
get '/:page/raw' do
@page = Page.new(params[:page])
@page.raw_body
end
get '/:page/append' do
@page = Page.new(params[:page])
@page.body = @page.raw_body + "\n\n" + params[:text]
redirect '/' + @page.name
end
get '/e/:page' do
@page = Page.new(params[:page])
show :edit, "Editing #{@page.name}"
end
post '/e/:page' do
@page = Page.new(params[:page])
@page.update(params[:body], params[:message])
redirect '/' + @page.name
end
post '/eip/:page' do
@page = Page.new(params[:page])
@page.update(params[:body])
@page.body
end
get '/h/:page' do
@page = Page.new(params[:page])
show :history, "History of #{@page.name}"
end
get '/h/:page/:rev' do
@page = Page.new(params[:page], params[:rev])
show :show, "#{@page.name} (version #{params[:rev]})"
end
get '/d/:page/:rev' do
@page = Page.new(params[:page])
show :delta, "Diff of #{@page.name}"
end
# application paths (/a/ namespace)
get '/a/list' do
pages = $repo.log.first.gtree.children
@pages = pages.select { |f,bl| f[0,1] != '_'}.sort.map { |name, blob| Page.new(name) } rescue []
show(:list, 'Listing pages')
end
get '/a/patch/:page/:rev' do
@page = Page.new(params[:page])
header 'Content-Type' => 'text/x-diff'
header 'Content-Disposition' => 'filename=patch.diff'
@page.delta(params[:rev])
end
get '/a/tarball' do
header 'Content-Type' => 'application/x-gzip'
header 'Content-Disposition' => 'filename=archive.tgz'
archive = $repo.archive('HEAD', nil, :format => 'tgz', :prefix => 'wiki/')
File.open(archive).read
end
get '/a/branches' do
@branches = $repo.branches
show :branches, "Branches List"
end
get '/a/branch/:branch' do
$repo.checkout(params[:branch])
redirect '/' + HOMEPAGE
end
get '/a/history' do
@history = $repo.log
show :branch_history, "Branch History"
end
get '/a/revert_branch/:sha' do
$repo.with_temp_index do
$repo.read_tree params[:sha]
$repo.checkout_index
$repo.commit('reverted branch')
end
redirect '/a/history'
end
get '/a/merge_branch/:branch' do
$repo.merge(params[:branch])
redirect '/' + HOMEPAGE
end
get '/a/delete_branch/:branch' do
$repo.branch(params[:branch]).delete
redirect '/a/branches'
end
post '/a/new_branch' do
$repo.branch(params[:branch]).create
$repo.checkout(params[:branch])
if params[:type] == 'blank'
# clear out the branch
$repo.chdir do
Dir.glob("*").each do |f|
File.unlink(f)
$repo.remove(f)
end
touchfile
$repo.commit('clean branch start')
end
end
redirect '/a/branches'
end
post '/a/new_remote' do
$repo.add_remote(params[:branch_name], params[:branch_url])
$repo.fetch(params[:branch_name])
redirect '/a/branches'
end
get '/a/search' do
@search = params[:search]
@grep = $repo.grep(@search)
show :search, 'Search Results'
end
# file upload attachments
get '/a/file/upload/:page' do
@page = Page.new(params[:page])
show :attach, 'Attach File for ' + @page.name
end
post '/a/file/upload/:page' do
@page = Page.new(params[:page])
@page.save_file(params[:file], params[:name])
redirect '/e/' + @page.name
end
get '/a/file/delete/:page/:file.:ext' do
@page = Page.new(params[:page])
@page.delete_file(params[:file] + '.' + params[:ext])
redirect '/e/' + @page.name
end
get '/_attachment/:page/:file.:ext' do
@page = Page.new(params[:page])
send_file(File.join(@page.attach_dir, params[:file] + '.' + params[:ext]))
end
# support methods
def page_url(page)
"#{request.env["rack.url_scheme"]}://#{request.env["HTTP_HOST"]}/#{page}"
end
private
def show(template, title)
@title = title
erb(template)
end
def touchfile
# adds meta file to repo so we have somthing to commit initially
$repo.chdir do
f = File.new(".meta", "w+")
f.puts($repo.current_branch)
f.close
$repo.add('.meta')
end
end