-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhive.rb
executable file
·1153 lines (845 loc) · 27.1 KB
/
hive.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
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/usr/bin/env ruby
require 'base64'
require 'bcrypt'
require 'erubis'
require 'escape_utils'
require 'fileutils'
require 'hive_markup'
require 'ipaddr'
require 'json'
require 'logger'
require 'net/https'
require 'openssl'
require 'resolv'
require 'sequel'
require 'tilt/erubis'
require 'sinatra/base'
require 'timeout'
Encoding.default_external = 'UTF-8'
module Hive
class BBS < Sinatra::Base
VERSION = '0.5.3'
Dir.glob("#{settings.root}/helpers/*.rb").each { |f| require f }
if settings.test?
env_sfx = '_test'
else
env_sfx = ''
end
DB = Sequel.connect(eval(
File.open("#{settings.root}/config/db#{env_sfx}.rb", 'r') { |f| f.read }
)
)
if settings.development?
DB.logger = Logger.new($stdout)
end
CONFIG = eval(
File.open("#{settings.root}/config/config.rb", 'r') { |f| f.read }
)
STRINGS = eval(
File.open("#{settings.root}/i18n/#{CONFIG[:locale]}.rb", 'r') { |f| f.read }
)
TRIP_KEY = File.binread("#{settings.root}/config/trip.key")
LOGGER = Logger.new("#{settings.root}/log/error.log", 524288)
set :erb, :engine_class => Erubis::FastEruby
set :files_dir, "#{settings.public_folder}/files#{env_sfx}"
set :tmp_dir, "#{settings.root}/tmp#{env_sfx}"
set :protection, false
ASSETS = {}
RACK_TEMPFILES = 'rack.tempfiles'.freeze
after '/post' do
if env[RACK_TEMPFILES]
env[RACK_TEMPFILES].each do |tmp|
tmp.close! if tmp
end
end
end
get '/' do
@boards = DB[:boards].all
erb :index
end
get %r{/([-_0-9a-z]+)/([0-9]+)?} do |slug, page|
@board = DB[:boards].where(:slug => slug).first
halt 404 if !@board
@board_cfg = get_board_config(@board)
threads_per_page = cfg(:threads_per_page, @board_cfg)
offset = nil
@current_page = nil
@total_pages = nil
if threads_per_page
thread_count = DB[:threads].where(:board_id => @board[:id]).count
thread_count = 1 if thread_count == 0
if !page
page = 1
else
page = page.to_i
if page > 1
offset = (page - 1) * threads_per_page
elsif page == 1
redirect to("/#{@board[:slug]}/"), 301
else
halt 404
end
end
@total_pages = (thread_count / threads_per_page.to_f).ceil
halt 404 if page > @total_pages
@current_page = page
elsif page
halt 404
end
@threads = DB[:threads]
.reverse_order(:pinned, :updated_on)
.where(:board_id => @board[:id])
.limit(threads_per_page)
.offset(offset)
.all
erb :board
end
get %r{/([-_0-9a-z]+)/read/([0-9]+)} do |slug, num|
@board = DB[:boards].first(:slug => slug)
halt 404 if !@board
@thread = DB[:threads].first(:board_id => @board[:id], :num => num.to_i)
halt 404 if !@thread
@posts = DB[:posts].where(:thread_id => @thread[:id]).all
@board_cfg = get_board_config(@board)
erb :read
end
post '/markup' do
content_type :json
comment = params['comment'].to_s
data = if comment.empty?
comment
else
Markup.render(comment)
end
{ status: 'success', data: data }.to_json
end
post '/post' do
validate_referrer
validate_honeypot
board = DB[:boards].where(:slug => params['board'].to_s).first
failure t(:bad_board) if !board
@board_cfg = get_board_config(board)
verify_captcha if cfg(:captcha, @board_cfg)
now = Time.now.utc.to_i
thread_num = params['thread'].to_i
is_new_thread = thread_num == 0
#
# Ban checks
#
ip_addr = IPAddr.new(request.ip)
if ip_addr.ipv6?
if ip_addr.ipv4_compat? || ip_addr.ipv4_mapped?
ip_addr = ip_addr.native
else
ip_addr = ip_addr.mask(64)
end
end
ip_addr = Sequel::SQL::Blob.new(ip_addr.hton)
if DB[:bans].first(Sequel.lit('ip = ? AND active = ?', ip_addr, true))
redirect '/banned'
end
#
# Author
#
author = params['author'].to_s
tripcode = command = nil
if author.empty?
author = nil
else
if author.include?('#')
author, tripcode, command = author.split('#', 3)
end
author.gsub!(/[^[:print:]]/u, '')
author.strip!
if !author.empty? && author != cfg(:anon, @board_cfg)
if /[^\u0000-\uffff]/u =~ author
failure t(:invalid_chars)
end
if author.length > cfg(:author_length)
failure t(:name_too_long)
end
author = EscapeUtils.escape_html(author)
else
author = nil
end
end
if tripcode
if tripcode.empty?
tripcode = nil
else
tripcode = make_tripcode(tripcode)
end
end
#
# Comment
#
comment = params['comment'].to_s
if /[^\u0000-\uffff]/u =~ comment
failure t(:invalid_chars)
end
if comment.lines.count > cfg(:comment_lines)
failure t(:comment_too_long)
end
if comment.length > cfg(:comment_length)
failure t(:comment_too_long)
end
comment = Markup.render(comment)
#comment.gsub!(/[^[:print:]]/u, '')
if comment.empty? || !(/[[:graph:]]/u =~ comment)
comment = nil
end
#
# Title
#
if is_new_thread
title = params['title'].to_s
title.strip!
title.gsub!(/[^[:print:]]/u, '')
if title.empty?
failure t(:title_empty)
end
if /[^\u0000-\uffff]/u =~ title
failure t(:invalid_chars)
end
if title.length > cfg(:title_length)
failure t(:title_too_long)
end
title = EscapeUtils.escape_html(title)
else
thread = DB[:threads].first(:board_id => board[:id], :num => thread_num)
if !thread
failure t(:bad_thread)
end
end
#
# Files
#
if cfg(:file_uploads, @board_cfg)
if file = params['tegaki']
file = file.to_s
if file.size > cfg(:tegaki_data_limit, @board_cfg)
failure t(:file_size_too_big)
end
file = decode_tegaki_upload(file)
else
file = params['file']
end
else
file = nil
end
if has_file = file.is_a?(Hash)
tmp_thumb_path = nil
file_hash = OpenSSL::Digest::MD5.file(file[:tempfile].path).hexdigest
if is_new_thread
if DB[:posts].first(:file_hash => file_hash, :num => 1)
failure t(:dup_file_thread)
end
else
failure t(:dup_file_reply) if DB[:posts].select(1)
.first(:file_hash => file_hash, :thread_id => thread[:id])
end
file_ext = file[:filename].scan(/\.([a-z0-9]+$)/i).flatten.join.downcase
tmp_thumb_path =
"#{settings.tmp_dir}/#{board[:id]}_#{thread_num}_#{file_hash}.jpg"
file_meta =
if file_ext == 'webm'
process_file_ffmpeg(file[:tempfile], tmp_thumb_path)
else
process_file_imagemagick(file[:tempfile], tmp_thumb_path)
end
elsif !comment
failure t(:comment_empty)
end
begin
capcode = nil
if command && !command.empty?
command.sub!(/^capcode_/, '')
if capcode = t(:user_trips)[command]
user = get_user_session
unless user && user_has_level?(user, command.to_sym)
failure t(:cmd_forbidden)
end
author = nil
tripcode = capcode
end
end
if !capcode
if cfg(:forced_anon, @board_cfg)
author = tripcode = nil
end
validate_cooldowns(is_new_thread)
end
DB.transaction do
if is_new_thread
board = DB[:boards].for_update.where(id: board[:id]).first
DB[:boards]
.where(:id => board[:id])
.update(:thread_count => Sequel.+(:thread_count, 1))
thread = {}
thread[:board_id] = board[:id]
thread[:num] = board[:thread_count] + 1
thread[:created_on] = now
thread[:updated_on] = now
thread[:title] = title
thread[:id] = DB[:threads].insert(thread)
thread[:post_count] = 1
else
thread = DB[:threads].for_update.where(id: thread[:id]).first
if thread[:locked] > 0
failure t(:thread_locked)
end
if thread[:post_count] >= cfg(:post_limit, @board_cfg)
failure t(:thread_full)
end
new_vals = {
:post_count => Sequel.+(:post_count, 1)
}
if !params['sage']
new_vals[:updated_on] = now
end
DB[:threads].where(:id => thread[:id]).update(new_vals)
thread[:post_count] += 1
end
post = {}
post[:board_id] = board[:id]
post[:thread_id] = thread[:id]
post[:num] = thread[:post_count]
post[:created_on] = now
post[:author] = author
post[:tripcode] = tripcode
post[:ip] = request.ip
post[:comment] = comment
meta = {}
if file
post[:file_hash] = file_hash
file_meta[:spoiler] = true if params['spoiler']
meta[:file] = file_meta
end
if capcode
meta[:capcode] = true
end
post[:meta] = meta.to_json unless meta.empty?
DB[:posts].insert(post)
files_dest_dir = "#{settings.files_dir}/#{board[:id]}/#{thread[:id]}"
if is_new_thread
FileUtils.mkdir(files_dest_dir)
end
if has_file
dest_file = "#{files_dest_dir}/#{file_hash}.#{file_meta[:ext]}"
FileUtils.mv(
tmp_thumb_path,
"#{files_dest_dir}/t_#{file_hash}.jpg"
)
tmp_thumb_path = nil
FileUtils.cp(
file[:tempfile].path,
dest_file
)
File.chmod(0644, dest_file)
end
end
ensure
FileUtils.rm_f(tmp_thumb_path) if tmp_thumb_path
end
thread_limit = cfg(:thread_limit, @board_cfg)
if is_new_thread && thread_limit &&
DB[:threads].where(board_id: board[:id]).count > thread_limit
overflow = DB[:threads]
.select(:id, :board_id, :num)
.where(:board_id => board[:id])
.reverse_order(:pinned, :updated_on)
.limit(nil, cfg(:thread_limit, @board_cfg))
.all
delete_threads(overflow) unless overflow.empty?
end
@thread = thread
@board = board
erb :post
end
get '/report/:slug/:thread_num/:post_num' do
failure t(:cannot_report) unless cfg(:post_reporting)
now = Time.now.utc.to_i
throttle = now - cfg(:delay_report)
ip_addr = request.ip
if DB[:reports].select(1).reverse_order(:id)
.first(Sequel.lit('ip = ? AND created_on > ?', ip_addr, throttle))
failure t(:fast_report)
end
erb :report
end
post '/report/:slug/:thread_num/:post_num' do
failure t(:cannot_report) unless cfg(:post_reporting)
validate_referrer
validate_honeypot
verify_captcha if cfg(:reporting_captcha)
slug = params[:slug].to_s
thread_num = params[:thread_num].to_i
post_num = params[:post_num].to_i
cat = params['category'].to_s
post = get_post_by_path(slug, thread_num, post_num)
failure t(:bad_post) unless post
if !cfg(:report_categories).empty?
failure t(:bad_report_cat) unless score = cfg(:report_categories)[cat]
else
cat = ''
score = 1
end
ip_addr = request.ip
if DB[:reports].first(Sequel.lit('ip = ? AND post_id = ?', ip_addr, post[:id]))
failure t(:duplicate_report)
end
now = Time.now.utc.to_i
throttle = now - cfg(:delay_report)
if DB[:reports].select(1).reverse_order(:id)
.first(Sequel.lit('ip = ? AND created_on > ?', ip_addr, throttle))
failure t(:fast_report)
end
DB[:reports].insert({
board_id: post[:board_id],
thread_id: post[:thread_id],
post_id: post[:id],
created_on: now,
ip: ip_addr,
score: score,
category: cat
})
success t(:done)
end
post '/manage/posts/delete' do
validate_csrf_token
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :mod)
slug = params['board'].to_s
thread_num = params['thread'].to_i
post_num = params['post'].to_i
file_only = !!params['file_only']
if slug.empty? || thread_num.zero? || post_num.zero?
bad_request
end
board = DB[:boards].first(:slug => slug)
failure t(:bad_board) unless board
thread = DB[:threads].first(:board_id => board[:id], :num => thread_num)
failure t(:bad_thread) unless thread
if post_num == 1 && !file_only
delete_threads([thread])
else
post = DB[:posts]
.select(:id, :board_id, :thread_id, :num, :file_hash, :meta)
.first(:thread_id => thread[:id], :num => post_num)
failure t(:bad_post) unless post
delete_replies([post], file_only)
end
success t(:done), "#{board[:slug]}/read/#{thread[:num]}"
end
post '/manage/threads/flags' do
validate_csrf_token
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :mod)
slug = params['board'].to_s
thread_num = params['thread'].to_i
flag = params['flag'].to_s
value = params['value'].to_i
if slug.empty? || thread_num.zero? || flag.empty?
bad_request
end
if !['pinned', 'locked'].include?(flag) || value < 0
bad_request
end
board = DB[:boards].first(:slug => slug)
failure t(:bad_board) unless board
thread = DB[:threads].first(:board_id => board[:id], :num => thread_num)
failure t(:bad_thread) unless thread
DB[:threads].where(:id => thread[:id]).update({ flag.to_sym => value })
success t(:done), "#{board[:slug]}/read/#{thread[:num]}"
end
get '/banned' do
ip_addr = IPAddr.new(request.ip)
if ip_addr.ipv6?
if ip_addr.ipv4_compat? || ip_addr.ipv4_mapped?
ip_addr = ip_addr.native
else
ip_addr = ip_addr.mask(64)
end
end
ip_addr = Sequel::SQL::Blob.new(ip_addr.hton)
now = Time.now.utc.to_i
@bans = DB[:bans]
.where(:ip => ip_addr, :active => true)
.reverse_order(:id)
.all
DB[:bans]
.where(Sequel.lit('ip = ? AND active = ? AND expires_on <= ?', ip_addr, true, now))
.update(:active => false)
end
erb :banned
end
get '/manage/bans/create/:slug/:thread_num/:post_num' do
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :mod)
@slug = params[:slug].to_s
@thread_num = params[:thread_num].to_i
@post_num = params[:post_num].to_i
@post = get_post_by_path(@slug, @thread_num, @post_num)
failure t(:bad_post) unless @post
erb :manage_bans_edit
end
get '/manage/bans/update/:id' do
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :mod)
@ban = DB[:bans]
.select_all(:bans)
.select_append(Sequel[:c][:username].as(:creator_name), Sequel[:u][:username].as(:updater_name))
.left_join(Sequel.as(:users, :c), :id => Sequel[:bans][:created_by])
.left_join(Sequel.as(:users, :u), :id => Sequel[:bans][:updated_by])
.first(Sequel[:bans][:id] => params[:id].to_i)
halt 404 if !@ban
erb :manage_bans_edit
end
post '/manage/bans/update' do
validate_csrf_token
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :mod)
now = Time.now.utc.to_i
# Expiration
duration = params['duration'].to_i
# Reason
reason = params['reason'].to_s.strip
failure t(:empty_ban_reason) if reason.empty?
reason = EscapeUtils.escape_html(reason)
# Info
info = params['info'].to_s.strip
if info.empty?
info = nil
else
info = EscapeUtils.escape_html(info)
end
ban = {
:duration => duration,
:reason => reason,
:info => info,
}
if params['id']
ban_id = params['id'].to_i
target_ban = DB[:bans].select(:created_on, :active).first(:id => ban_id)
failure t(:invalid_ban_id) unless target_ban
active = !!params['active']
if target_ban[:active] != active
ban[:active] = active
end
ban[:expires_on] = ban_duration_ts(target_ban[:created_on], duration)
ban[:updated_by] = user[:id]
DB[:bans].where(:id => ban_id).update(ban)
else
slug = params['board'].to_s
thread_num = params['thread'].to_i
post_num = params['post'].to_i
post = get_post_by_path(slug, thread_num, post_num)
failure t(:bad_post) unless post
ip_addr = IPAddr.new(post[:ip])
if ip_addr.ipv6?
if ip_addr.ipv4_compat? || ip_addr.ipv4_mapped?
ip_addr = ip_addr.native
else
ip_addr = ip_addr.mask(64)
end
end
post[:slug] = slug
post[:thread_num] = thread_num
if post_num == 1
post[:title] = DB[:threads]
.where(:id => post[:thread_id])
.get(:title)
end
ban[:ip] = Sequel::SQL::Blob.new(ip_addr.hton)
ban[:post] = post.to_json
ban[:created_by] = user[:id]
ban[:created_on] = now
ban[:expires_on] = ban_duration_ts(now, duration)
ban_id = DB[:bans].insert(ban)
end
success(t(:done), request.path + "/#{ban_id}")
end
get '/manage/bans' do
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :mod)
dataset = DB[:bans]
.select_all(:bans)
.select_append(:username)
.left_join(:users, :id => :id)
.reverse_order(Sequel[:bans][:id])
if params['q']
@ip = params['q'].to_s
begin
ip_addr = IPAddr.new(@ip)
rescue
failure t(:invalid_ip)
end
if ip_addr.ipv6?
if ip_addr.ipv4_compat? || ip_addr.ipv4_mapped?
ip_addr = ip_addr.native
else
ip_addr = ip_addr.mask(64)
end
end
ip_addr = Sequel::SQL::Blob.new(ip_addr.hton)
dataset = dataset.where(:ip => ip_addr)
else
@ip = nil
dataset = dataset.limit(50)
end
@bans = dataset.all
erb :manage_bans
end
get '/manage' do
if (@user = get_user_session) && user_has_level?(@user, :mod)
erb :manage
else
redirect '/manage/auth'
end
end
get '/manage/auth' do
@csrf = random_base64bytes(8)
response.set_cookie('auth_csrf',
value: @csrf,
path: '/manage/auth',
secure: cfg(:secure_cookies)
)
erb :manage_login
end
post '/manage/auth' do
validate_csrf_token('auth_csrf')
user = authenticate_user(params['username'], params['password'])
old_sid = request.cookies['sid'].to_s
new_sid = random_base64bytes(64)
if !old_sid.empty?
DB[:sessions].where(:sid => old_sid).delete
end
now = Time.now.utc.to_i
DB[:sessions].where(Sequel.lit('created_on <= ?', now - cfg(:auth_ttl))).delete
DB[:sessions].where(Sequel.lit('updated_on <= ?', now - cfg(:auth_idle))).delete
DB[:sessions].insert({
sid: hash_session_id(new_sid),
user_id: user[:id],
ip: request.ip,
created_on: now,
updated_on: now
})
set_session_cookies(new_sid)
redirect '/manage'
end
post '/manage/logout' do
validate_csrf_token
sid = request.cookies['sid'].to_s
redirect '/' if sid.empty?
DB[:sessions].where(:sid => sid).delete
clear_session_cookies
redirect '/'
end
get '/manage/reports' do
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :mod)
@posts = DB[:reports]
.select(
:post_id,
Sequel.function(:count, :score).as(:total),
Sequel.function(:sum, :score).as(:score)
)
.group(:post_id)
.reverse_order(:score)
.from_self(:alias => :reports)
.select_all(:reports, :posts)
.select_append(
Sequel[:threads][:title],
Sequel[:threads][:post_count],
Sequel[:threads][:num].as(:thread_num),
Sequel[:boards][:slug]
)
.inner_join(:posts, :id => :post_id)
.inner_join(:threads, :id => :thread_id)
.inner_join(:boards, :id => :board_id)
.all
erb :manage_reports
end
post '/manage/reports/delete' do
validate_csrf_token
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :mod)
post_id = params['post_id'].to_i
failure t(:bad_request) if post_id.zero?
DB[:reports].where(:post_id => post_id).delete
success t(:done)
end
get '/manage/boards' do
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :admin)
@boards = DB[:boards].all
erb :manage_boards
end
get %r{/manage/boards/(create|update)(?:/([0-9]+))?} do |action, board_id|
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :admin)
if action == 'update'
@board = DB[:boards].first(:id => board_id.to_i)
failure t(:bad_board) unless @board
end
erb :manage_boards_edit
end
post %r{/manage/boards/(create|update)} do |action|
validate_csrf_token
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :admin)
slug = params['slug'].to_s
title = params['title'].to_s
config = params['config'].to_s
failure t(:bad_slug) unless /\A[-_a-z0-9]+\z/ =~ slug
failure t(:bad_title) if title.empty?
if config.empty?
config = nil
else
begin
config = JSON.parse(config).to_json
rescue JSON::JSONError => e
failure t(:bad_config_json)
end
end
board = {
slug: slug,
title: EscapeUtils.escape_html(title),
config: config
}
if action == 'update'
affected = DB[:boards].where(:id => params['id'].to_i).update(board)
failure t(:bad_board) unless affected > 0
else
board[:created_on] = Time.now.utc.to_i
DB.transaction do
board_id = DB[:boards].insert(board)
unless File.directory?(settings.files_dir)
FileUtils.mkdir settings.files_dir
end
FileUtils.mkdir "#{settings.files_dir}/#{board_id}"
end
end
success t(:done), '/manage/boards'
end
post '/manage/boards/delete' do
validate_csrf_token
forbidden unless user = get_user_session
forbidden unless user_has_level?(user, :admin)
conf = params['confirm_keyword'].to_s
if conf.empty? || conf != t(:confirm_keyword)
failure t(:bad_confirm_keyword)
end
board = DB[:boards].first(:id => params['id'].to_i)
failure t(:bad_board) unless board
DB.transaction(:rollback => :reraise) do