-
Notifications
You must be signed in to change notification settings - Fork 67
/
delete_poll.rb
executable file
·131 lines (119 loc) · 4.58 KB
/
delete_poll.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
#!/usr/bin/env ruby
# coding: utf-8
############################################################################
# Copyright 2009-2019 Benjamin Kellermann #
# #
# This file is part of Dudle. #
# #
# Dudle is free software: you can redistribute it and/or modify it under #
# the terms of the GNU Affero General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# Dudle is distributed in the hope that it will be useful, but WITHOUT ANY #
# WARRANTY; without even the implied warranty of MERCHANTABILITY or #
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public #
# License for more details. #
# #
# You should have received a copy of the GNU Affero General Public License #
# along with dudle. If not, see <http://www.gnu.org/licenses/>. #
############################################################################
if __FILE__ == $0
load "../dudle.rb"
$d = Dudle.new
require "fileutils"
QUESTIONS = [ "phahqu3Uib4neiRi",
_("Yes, I know what I am doing!"),
_("I hate these stupid entry fields."),
_("I am aware of the consequences."),
_("Please delete this poll.")]
userconfirm = CGI.escapeHTML($cgi["confirm"].strip)
if $cgi.include?("confirmnumber")
confirm = $cgi["confirmnumber"].to_i
if userconfirm == QUESTIONS[confirm]
Dir.chdir("..")
if $conf.examples.collect{|e| e[:url] }.include?($d.urlsuffix)
deleteconfirmstr = _("Example polls cannot be deleted.")
accidentstr = _("You should never see this text.")
else
FileUtils.cp_r($d.urlsuffix, "/tmp/#{$d.urlsuffix}.#{rand(9999999)}")
FileUtils.rm_r($d.urlsuffix)
if $cgi.include?("return")
$d.html.header["status"] = "REDIRECT"
$d.html.header["Cache-Control"] = "no-cache"
$d.html.header["Location"] = $conf.siteurl + $cgi["return"]
$d.out
exit
end
deleteconfirmstr = _("The poll was deleted successfully!")
accidentstr = _("If this was done by accident, please contact the administrator of the system. The poll can be recovered for an indeterminate amount of time; it could already be too late.")
end
nextthingsstr = _("You can now")
homepagestr = _("Return to DuD-Poll home and schedule a new poll")
wikipediastr = _("Browse Wikipedia")
searchstr = _("Search for something on the Internet")
$d.html << %{
<p class='textcolumn'>
#{deleteconfirmstr}
</p>
<p class='textcolumn'>
#{accidentstr}
</p>
<div class='textcolumn'>
#{nextthingsstr}
<ul>
<li><a href='../'>#{homepagestr}</a></li>
<li><a href='http://wikipedia.org'>#{wikipediastr}</a></li>
<li><a href='https://duckduckgo.com'>#{searchstr}</a></li>
</ul>
</div>
}
$d.out
exit
else
hint = %{
<table id='warningtable' style='background:rgb(225,225,225)'>
<tr>
<td style='text-align:right'>
}
hint += _("To delete the poll, you have to type:")
hint += %{
</td>
<td class='warning' style='text-align:left'>#{QUESTIONS[confirm]}</td>
</tr>
<tr>
<td style='text-align:right'>
}
hint += _("but you typed:")
hint += %{
</td>
<td class='warning' style='text-align:left'>#{userconfirm}</td>
</tr>
</table>
}
end
else
confirm = rand(QUESTIONS.size()-1) +1
end
$d.html << "<h2>" + _("Delete this poll") + "</h2>"
$d.html << "<p>" + _("You want to delete the poll named") + " <b>#{CGI.escapeHTML($d.table.name)}</b>.<br />"
$d.html << _("This is an irreversible action!") + "<br />"
$d.html << _("If you are sure that you want to permanently remove this poll, please type the following sentence into the form: %{question}") % {:question => QUESTIONS[confirm]}
$d.html << "</p>"
deletestr = _("Delete")
deleteform = _("Delete form")
$d.html << %{
#{hint}
<form method='post' action='' accept-charset='utf-8'>
<table class='settingstable'>
<td class='label'><label id="deleteform" for="confirm">#{deleteform}:</label></td>
<td>
<input type='hidden' name='confirmnumber' value="#{confirm}" />
<input size='30' type='text' aria-labelledby='deleteform' id ='confirm' name='confirm' value="#{userconfirm}" />
<input type='submit' value="#{deletestr}" />
</td>
</table>
</form>
}
$d.out
end