summaryrefslogtreecommitdiffstats
path: root/emacs.d/nxhtml/tests/in/blorgit.rb
blob: 5ec40e54c024031d03673a0a74957bd6833de2b1 (plain)
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
# blorgit --- blogging with org-mode
require 'rubygems'
require 'sinatra'
require 'backend/rewrite_content_disposition'
require 'yaml'
$global_config ||= YAML.load(File.read(File.join(File.dirname(__FILE__), 'blorgit.yml')))
$blogs_dir  ||= File.expand_path($global_config[:blogs_dir])
$url_prefix ||= $global_config[:url_prefix]
require 'backend/init.rb'

# Configuration (http://sinatra.rubyforge.org/book.html#configuration)
#--------------------------------------------------------------------------------
use RewriteContentDisposition, {"org" => "attachment"}
set(:public, $blogs_dir)
enable(:static)
set(:app_file, __FILE__)
set(:haml, { :format => :html5, :attr_wrapper  => '"' })
set(:url_prefix, $url_prefix)
use_in_file_templates!
mime(:org, 'text/org')

# Routes (http://sinatra.rubyforge.org/book.html#routes)
#--------------------------------------------------------------------------------
get('/') do
  if config['index']
    redirect(path_for(config['index']))
  else
    "It seems you haven't yet configured a blogs directory.  Try"+
      " running <tt>rake new</tt> from the root. of your blorgit directory"
  end
end

post(/^\/.search/) do
  @query = params[:query]
  @results = Blog.search(params[:query])
  haml :results
end

get(/^\/\.edit\/(.*)?$/) do
  pass unless config['editable']
  path, format = split_format(params[:captures].first)
  if @blog = Blog.find(path)
    @title = @blog.title
    @files = (Blog.files(path) or [])
    haml :edit
  else
    "Nothing here to edit."
  end
end

get(/^\/(.*)?$/) do
  path, format = split_format(params[:captures].first)
  @files = (Blog.files(path) or [])
  @blog = Blog.find(path)
  if @blog or File.directory?(Blog.expand(path))
    if format == 'html'
      @title = @blog ? @blog.title : path
      haml :blog
    elsif @blog
      content_type(format)
      attachment extension(@blog.path, format)
      @blog.send("to_#{format}")
    else
      pass
    end
  elsif config['editable'] and extension(path, 'org').match(Blog.location_regexp)
    pass if path.match(/^\./)
    protected!
    @path = path
    haml :confirm_create
  else
    "Can't create a new page at #{path}"
  end
end

post(/^\/(.*)?$/) do
  path, format = split_format(params[:captures].first)
  @blog = Blog.find(path)
  if params[:comment]
    pass unless (@blog and config['commentable'])
    return "Sorry, review your math..." unless params[:checkout] == params[:captca]
    @blog.add_comment(Comment.build(2, params[:title], params[:author], params[:body]))
    @blog.save
    redirect(path_for(@blog))
  elsif config['editable']
    protected!
    if @blog and params[:edit]
      @blog.body = params[:body]
      @blog.change_log = params[:change_log] if params[:change_log]
      @blog.save
      redirect(path_for(@blog))
    elsif extension(path, 'org').match(Blog.location_regexp)
      @blog = Blog.new(:path => extension(path, 'org'),
                       :body => "# -*- mode: org -*-\n#+TITLE: #{File.basename(path)}\n#+OPTIONS: toc:nil ^:nil\n\n")
      @blog.save
      redirect(path_for(@blog))
    elsif path.match(/^\./)
      pass
    else
      "Can't create a new page at #{path}"
    end
  else
    pass
  end
end

# Helpers (http://sinatra.rubyforge.org/book.html#helpers)
#--------------------------------------------------------------------------------
helpers do
  def config
    $local_config_file ||= File.join($blogs_dir, '.blorgit.yml')
    $local_config ||= $global_config[:config].merge(File.exists?($local_config_file) ? YAML.load(File.read($local_config_file)) : {})
    config_file = File.join(File.dirname(File.join($blogs_dir, (params[:captures] ? params[:captures].first : ''))), '.blorgit.yml')
    $local_config.merge((File.exists?(config_file)) ? YAML.load(File.read(config_file)) : {})
  end

  def split_format(url) url.match(/(.+)\.(.+)/) ? [$1, $2] : [url, 'html'] end

  def path_for(path, opts ={})
    path = (path.class == Blog ? path.path : path)
    File.join(options.url_prefix, extension(path, (opts[:format] or nil)))
  end

  def show(blog, options={}) haml("%a{ :href => '#{path_for(blog)}' } #{blog.title}", :layout => false) end

  def comment(blog, parent_comment) end

  def extension(path, format = nil) (path.match(/^(.+)\..+$/) ? $1 : path)+(format ? "."+format : '') end

  def time_ago(from_time)
    distance_in_minutes = (((Time.now - from_time.to_time).abs)/60).round
    case distance_in_minutes
    when 0..1            then 'about a minute'
    when 2..44           then "#{distance_in_minutes} minutes"
    when 45..89          then 'about 1 hour'
    when 90..1439        then "about #{(distance_in_minutes.to_f / 60.0).round} hours"
    when 1440..2879      then '1 day'
    when 2880..43199     then "#{(distance_in_minutes / 1440).round} days"
    when 43200..86399    then 'about 1 month'
    when 86400..525599   then "#{(distance_in_minutes / 43200).round} months"
    when 525600..1051199 then 'about 1 year'
    else                      "over #{(distance_in_minutes / 525600).round} years"
    end
  end

  # from http://www.sinatrarb.com/faq.html#auth
  def protected!
    response['WWW-Authenticate'] = %(Basic realm="username and password required") and \
    throw(:halt, [401, "Not authorized\n"]) and \
    return unless ((not config['auth']) or authorized?)
  end

  def authorized?
    @auth ||=  Rack::Auth::Basic::Request.new(request.env)
    @auth.provided? && @auth.basic? && @auth.credentials && @auth.credentials == config['auth']
  end

end

# HAML Templates (http://haml.hamptoncatlin.com/)
#--------------------------------------------------------------------------------
__END__
@@ layout
!!!
%html
  %head
    %meta{'http-equiv' => "content-type", :content => "text/html;charset=UTF-8"}
    :javascript
      function toggle(item) {
        el = document.getElementById(item);
        if(el.style.display == "none") { document.getElementById(item).style.display = "block" }
        else { document.getElementById(item).style.display = "none" }
        }
    - if config['favicon']
      %link{:rel => "icon", :type => "image/x-icon", :href => path_for(config['favicon'], :format => 'ico')}
    %link{:rel => "stylesheet", :type => "text/css", :href => path_for(config['style'], :format => 'css')}
    %title= "#{config['title']}: #{@title}"
  %body
    #container
      #titlebar= render(:haml, :titlebar, :layout => false)
      #insides
        #sidebar= render(:haml, :sidebar, :locals => { :files => @files }, :layout => false)
        #contents= yield

@@ titlebar
#title_pre
#title
  %a{ :href => path_for(''), :title => 'home' }= config['title']
#title_post
#search= haml :search, :layout => false
- if @blog
  #actions
    %ul
      - if config['editable']
        %li
          %a{ :href => path_for(File.join(".edit", @blog.path)), :title => "edit #{@title}" } edit
      %li
        %a{ :href => path_for(@blog, :format => 'org'), :title => 'download as org-mode' } .org
      %li
        %a{ :href => path_for(@blog, :format => 'tex'), :title => 'download as LaTeX' } .tex
      %li
        %a{ :href => path_for(@blog, :format => 'pdf'), :title => 'download as PDF' } .pdf
#title_separator

@@ sidebar
- if (config['recent'] and (config['recent'] > 0))
  #recent= haml :recent, :layout => false
- if (config['dir_list'] and @files)
  #dir= haml :dir, :locals => { :files => files }, :layout => false

@@ search
%form{ :action => path_for('.search'), :method => :post, :id => :search }
  %ul
    %li
      %input{ :id => :query, :name => :query, :type => :text, :size => 12 }
    %li
      %input{ :id => :search, :name => :search, :value => :search, :type => :submit }

@@ recent
%label Recent
%ul
  - Blog.all.sort_by(&:ctime).reverse[(0..(config['recent'] - 1))].each do |blog|
    %li
      %a{ :href => path_for(blog)}= blog.title

@@ dir
%label Directory
%ul
  - files.each do |file|
    %li
      %a{ :href => path_for(file) + (File.directory?(Blog.expand(file)) ? "/" : "") }= File.basename(file)

@@ results
#results_list
  %h1
    Search Results for
    %em= "/" + @query + "/"
  %ul
    - @results.sort_by{ |b,h| -h }.each do |blog, hits|
      %li
        %a{ :href => path_for(blog) }= blog.name
        = "(#{hits})"

@@ edit
%h1= "Edit #{@title}"
%form{ :action => path_for(@blog), :method => :post, :id => :comment_form }
  %textarea{ :id => :body, :name => :body, :rows => 28, :cols => 82 }= @blog.body
  %br
  Change log:
  %input{ :id => :change_log, :name => :change_log, :type => :text }
  %input{ :id => :submit, :name => :edit, :value => :update, :type => :submit }
  %a{ :href => path_for(@blog) } Cancel

@@ blog
- if @blog
  #blog_body= @blog.to_html
  - if (config['commentable'] and (not @blog.commentable == 'disabled'))
    #comments= render(:haml, :comments, :locals => {:comments => @blog.comments, :commentable => @blog.commentable}, :layout => false)
- else
  #dir= haml :dir, :locals => { :files => @files }, :layout => false

@@ comments
#existing_commment
  %label= "Comments (#{comments.size})"
  %ul
  - comments.each do |comment|
    %li
      %ul
        %li
          %label title
          = comment.title
        %li
          %label author
          = comment.author
        %li
          %label date
          = time_ago(comment.date) + " ago"
        %li
          %label comment
          %div= Blog.string_to_html(comment.body)
- unless commentable == 'closed'
  #new_comment
    %label{ :onclick => "toggle('comment_form');"} Post a new Comment
    %form{ :action => path_for(@blog), :method => :post, :id => :comment_form, :style => 'display:none' }
      - equation = "#{rand(10)} #{['+', '*', '-'].sort_by{rand}.first} #{rand(10)}"
      %ul
        %li
          %label name
          %input{ :id => :author, :name => :author, :type => :text }
        %li
          %label title
          %input{ :id => :title, :name => :title, :type => :text, :size => 36 }
        %li
          %label comment
          %textarea{ :id => :body, :name => :body, :rows => 8, :cols => 68 }
        %li
          %input{ :id => :checkout, :name => :checkout, :type => :hidden, :value => eval(equation) }
          %span
          %p to protect against spam, please answer the following
          = equation + " = "
          %input{ :id => :captca, :name => :captca, :type => :text, :size => 4 }
        %li
          %input{ :id => :submit, :name => :comment, :value => :comment, :type => :submit }

@@ confirm_create
%form{ :action => path_for(@path), :method => 'post', :id => 'creation_form'}
  %label
    Create a new page at
    %em= @path
    ?
  %input{ :id => 'submit', :name => 'submit', :value => 'create', :type => 'submit' }
  %a{ :href => path_for('/') } cancel