-
Notifications
You must be signed in to change notification settings - Fork 1
/
access_control.rb
executable file
·233 lines (205 loc) · 6.88 KB
/
access_control.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
#!/usr/bin/env ruby
############################################################################
# Copyright 2009,2010 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"
require "digest"
$d = Dudle.new
acusers = {}
File.open(".htdigest","r").each_line{|l|
user,realm = l.scan(/^(.*):(.*):.*$/).flatten
acusers[user] = realm
}
def write_htaccess(acusers)
File.open(".htaccess","w"){|htaccess|
if acusers.include?("admin")
htaccess << <<HTACCESS
<Files ~ "^(edit_columns|invite_participants|access_control|delete_poll).cgi$">
AuthType digest
AuthName "dudle"
AuthUserFile "#{File.expand_path(".").gsub('"','\\\\"')}/.htdigest"
Require user admin
ErrorDocument 401 #{$cgi.script_name.gsub(/[^\/]*\/[^\/]*$/,"")}authorization_required.cgi?user=admin&poll=#{CGI.escape($d.urlsuffix)}
</Files>
HTACCESS
end
if acusers.include?("participant")
htaccess << <<HTACCESS
AuthType digest
AuthName "dudle"
AuthUserFile "#{File.expand_path(".").gsub('"','\\\\"')}/.htdigest"
Require valid-user
ErrorDocument 401 #{$cgi.script_name.gsub(/[^\/]*\/[^\/]*$/,"")}authorization_required.cgi?user=participant&poll=#{CGI.escape($d.urlsuffix)}
HTACCESS
end
}
VCS.commit("Access Control changed")
unless acusers.empty?
$d.html.header["status"] = "REDIRECT"
$d.html.header["Cache-Control"] = "no-cache"
$d.html.header["Location"] = "access_control.cgi"
end
end
def add_to_htdigest(user,password)
File.open(".htdigest","a"){|f|
f << "#{user}:dudle:#{Digest::MD5.hexdigest("#{user}:dudle:#{password}")}\n"
}
end
def createform(userarray,hint,acusers)
usernamestr = _("Username:")
ret = <<FORM
<form id='ac_#{userarray[0]}' method='post' action='' >
<table class='settingstable'>
<tr>
<td class='label'>#{usernamestr}</td>
<td title="#{userarray[1]}">
#{userarray[0]}
<input type='hidden' name='ac_user' value='#{userarray[0]}' />
</td>
</tr>
FORM
passwdstr = _("Password")
repeatstr = _("repeat")
2.times{|i|
ret += <<PASS
<tr>
<td class='label'><label for='password#{i}'>#{passwdstr}#{i == 1 ? " (#{repeatstr})" : ""}:</label></td>
<td>
PASS
if acusers.include?(userarray[0])
ret += PASSWORDSTAR*14
else
ret += "<input id='password#{i}' size='6' value='' type='password' name='ac_password#{i}' />"
end
ret += "</td></tr>"
}
ret += <<FORM
<tr>
<td></td>
<td id='#{userarray[0]}hint' class='shorttextcolumn'>#{acusers.include?(userarray[0]) ? "" : hint}</td>
</tr>
<tr>
<td></td>
<td>
FORM
if acusers.include?(userarray[0])
if userarray[0] == "admin" && acusers.include?("participant")
ret += "<div class='shorttextcolumn'>" + _("You have to remove the participant user before you can remove the administrator.") + "</div>"
else
ret += "<input type='hidden' name='ac_delete_#{userarray[0]}' value='Delete' />"
ret += "<input type='submit' value='" + _("Delete") + "' />"
end
else
ret += "<input type='hidden' name='ac_create' value='Save' />"
ret += "<input type='submit' value='" + _("Save") + "' />"
end
ret += <<FORM
<input type='hidden' name='ac_activate' value='Activate' />
</td>
</tr>
</table>
</form>
FORM
ret
end
if $cgi.include?("ac_user")
user = $cgi["ac_user"]
if !(user =~ /^[\w]*$/)
# add user
usercreatenotice = "<div class='error'>" + _("Only letters and digits are allowed in the username.") + "</div>"
elsif $cgi["ac_password0"] != $cgi["ac_password1"]
usercreatenotice = "<div class='error'>" + _("Passwords did not match.") + "</div>"
else
if $cgi.include?("ac_create")
add_to_htdigest(user,$cgi["ac_password0"])
acusers[user] = true
write_htaccess(acusers)
end
# delete user
deleteuser = ""
acusers.each{|user,action|
if $cgi.include?("ac_delete_#{user}")
deleteuser = user
end
}
acusers.delete(deleteuser)
htdigest = []
File.open(".htdigest","r"){|file|
htdigest = file.readlines
}
File.open(".htdigest","w"){|f|
htdigest.each{|line|
f << line unless line =~ /^#{deleteuser}:/
}
}
write_htaccess(acusers)
end
end
$d.wizzard_redirect
if $d.html.header["status"] != "REDIRECT"
$d.html << "<h2>" + _("Change Access Control Settings") + "</h2>"
if acusers.empty? && $cgi["ac_activate"] != "Activate"
acstatus = ["red",_("not activated")]
acswitchbutton = "<input type='hidden' name='ac_activate' value='Activate' />"
acswitchbutton += "<input type='submit' value='" + _("Activate") + "' />"
else
if acusers.empty?
acstatus = ["blue",_("will be activated when at least an admin user is configured")]
acswitchbutton = "<input type='hidden' name='ac_activate' value='Deactivate' />"
acswitchbutton += "<input type='submit' value='" + _("Deactivate") + "' />"
else
acstatus = ["green", _("activated")]
acswitchbutton = "<div class='shorttextcolumn'>" + _("You have to remove all users before you can deactivate the access control settings.") + "</div>"
end
admincreatenotice = usercreatenotice || _("You will be asked for the password you entered here after pressing save!")
user = ["admin",
_("The user ‘admin’ has access to the vote as well as the configuration interface.")]
createform = createform(user,admincreatenotice,acusers)
if acusers.include?("admin")
participantcreatenotice = usercreatenotice || ""
user = ["participant",
_("The user ‘participant’ has only access to the vote interface.")]
createform += createform(user,participantcreatenotice,acusers)
end
end
acstr = _("Access control:")
$d.html << <<AC
<form id='ac' method='post' action='' >
<table class='settingstable'>
<tr>
<td>
#{acstr}
</td>
<td style='color: #{acstatus[0]}'>
#{acstatus[1]}
</td>
</tr>
<tr>
<td></td>
<td>
#{acswitchbutton}
</td>
</tr>
</table>
</form>
#{createform}
AC
end
$d.out
end