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
|
#!/bin/sh
# FILE: "/home/evmik/src/my_src/GradeBook/GradeBook.tcl"
# LAST MODIFICATION: "Wed, 15 Dec 2010 17:08:09 -0500 (evmik)"
# (C) 2010 by Eugeniy Mikhailov, <evgmik@gmail.com>
# $Id:$
# vim:set ft=tcl: \
exec tclsh "$0" "$@"
#load libtclsqlite3.so.0 Sqlite3
package require sqlite3
package require ncgi
package require md5
::ncgi::parse
# defaults
set sortCol LastName
set user guest
set password guest
# defaults end
# read cookies
set user [::ncgi::cookie user]
set sortCol [::ncgi::cookie sortCol]
set password [::ncgi::cookie password]
set action [::ncgi::value action none]
# end of read cookies
if { [catch {set script_name $env(SCRIPT_NAME)} errStat] } { set script_name unknown}
# ########################## procs begin #################################
proc dbg {msg {level 1}} {
if { $level <=2 } {
set fid [open log a+]
puts $fid $msg
close $fid
}
}
set dbfile "./testdb"
#set url_base
sqlite3 db $dbfile
proc CreatePasswordsTable {db} {
db eval {CREATE TABLE PasswordsTable(UserName text, PasswordHash text, GroupName text)}
set eval_str [list INSERT INTO PasswordsTable VALUES('instructor', '[::md5::md5 -hex qwerty]', 'instructor')]
db eval $eval_str
set eval_str [list INSERT INTO PasswordsTable VALUES('ta', '[::md5::md5 -hex qwerty]', 'ta')]
db eval $eval_str
set eval_str [list INSERT INTO PasswordsTable VALUES('jhn', '[::md5::md5 -hex qwerty]', 'student')]
db eval $eval_str
set eval_str [list INSERT INTO PasswordsTable VALUES('ale', '[::md5::md5 -hex qwerty]', 'student')]
db eval $eval_str
set eval_str [list INSERT INTO PasswordsTable VALUES('dan', '[::md5::md5 -hex qwerty]', 'student')]
db eval $eval_str
}
proc CreateGradesTable {db} {
db eval {CREATE TABLE GradesTable(FirstName text, LastName text, UserName text, HW01 real)}
set eval_str [list INSERT INTO GradesTable VALUES('John','Lname1', 'jhn', 7)]
db eval $eval_str
set eval_str [list INSERT INTO GradesTable VALUES('Ale','Lname2', 'ale', 5)]
db eval $eval_str
set eval_str [list INSERT INTO GradesTable VALUES('Dan','Lname3', 'dan', 3)]
db eval $eval_str
}
proc CreateAccessRightsTable {db} {
db eval {CREATE TABLE AccessRightsTable(GroupName text, sort integer, addcolumn integer, deletecolumn integer)}
db eval {INSERT INTO AccessRightsTable VALUES('instructor', 1, 1, 1)}
db eval {INSERT INTO AccessRightsTable VALUES('ta', 1, 1, 1)}
db eval {INSERT INTO AccessRightsTable VALUES('student', 1, 0, 0)}
# guest should have no rights make sure that 0 is evereywhere
db eval {INSERT INTO AccessRightsTable VALUES('guest', 0, 0, 0)}
}
proc htmlDBout {db {sort_col {}}} {
#set x [db eval {SELECT * FROM GradesTable ORDER BY a}]
#puts $x
global script_name
set defSortCol LastName
# testing for the existense of the sorting column
set eval_str [list SELECT * FROM GradesTable ORDER BY $sort_col]
set err [catch {db eval $eval_str } errStat]
if { $err } {
dbg $errStat 3
dbg "changing to default sorting column $defSortCol" 3
set sort_col $defSortCol
}
set show_header 1
if { $sort_col == {} } {
set sort_col LastName
}
# show the table with grades
set eval_str [list SELECT * FROM GradesTable ORDER BY $sort_col]
set err [catch {
db eval $eval_str v {
if { $show_header } {
set show_header 0
puts {<table border="1">}
puts "<tr>"
foreach col $v(*) {
puts -nonewline "<th><a href=$script_name?action=sort&sortCol=$col>$col</a></th>"
}
puts "</tr>"
puts "<tr>"
} else {
puts "<tr>"
}
foreach index $v(*) {
if { $index != "*" } {
puts -nonewline "<td>$v($index)</td>"
}
}
puts "</tr>"
}
} errStat ]
if { $err } {
dbg "we should never be here if $sortCol exist in the table" 1
dbg $errStat 1
}
puts "</table>"
}
proc htmlTop {permission_list} {
array set permission $permission_list
if { $permission(GroupName) == "guest" } {
askToLogin
} else {
LogOffOption
}
}
proc LogOffOption {} {
global user password script_name
puts "<div>"
puts "You are logged in as $user do you wish to "
puts "<a href=\"$script_name?action=logoff\">logoff</a>"
puts "</div>"
}
proc askToLogin {} {
global script_name
puts "Either you are here first time or you password and user name does not match. <br>"
puts "Please login <br>"
puts "<form name=\"input\" action=\"$script_name\" method=\"post\" />"
puts {Login: <input type="text" name="user"><br>}
puts {Password: <input type="password" name="password"><br>}
puts {<input type="hidden" name="action" value="logon"/>}
puts {<input type="submit" value="Submit" />}
puts {</form>}
}
proc CheckAccessRights { user password} {}
proc IsUserknown {} {return 1}
#proc SetLoginInfo {} {
#global user password
#set isAccessGranted [IsUserknown]
#if { $isAccessGranted } {
#dbg "access granted to user $user"
#}
#set access_rights [CheckAccessRights $user $password]
#}
proc LogMeOn {} {
global user password
set user [::ncgi::value user guest]
set password [::ncgi::value password guest]
dbg "Logging in and setting cookies"
::ncgi::setCookie -name user -value $user
::ncgi::setCookie -name password -value $password
}
proc LogMeOff {} {
dbg "Logging off"
global user password
set user guest
set password guest
::ncgi::setCookie -name user -value $user
::ncgi::setCookie -name password -value $password
}
proc SetSortColumn {} {
global sortCol
set sortCol [::ncgi::value sortCol LastName]
::ncgi::setCookie -name sortCol -value $sortCol
}
proc ChoseAction {action permission_list} {
array set permission $permission_list
dbg "requested action: $action" 3
switch $action {
sort {
if { $permission(sort) } { SetSortColumn }
}
default { }
}
}
proc AccessGroupRights {db user password } {
dbg "access rights check for user: $user"
set PasswordHash [::md5::md5 -hex $password]
set eval_str [list SELECT GroupName FROM PasswordsTable WHERE UserName='$user' AND PasswordHash='$PasswordHash']
db eval $eval_str group_name_array {}
set name_found [array names group_name_array -exact GroupName]
if { $name_found != ""} {
set group $group_name_array(GroupName);
} else {
set group guest
}
dbg "Detected group is $group"
set eval_str [list SELECT * FROM AccessRightsTable WHERE GroupName='$group']
db eval $eval_str permissions {}
array unset permissions {\*}
dbg "permissions for user $user belonging to the group $group are: [array get permissions]"
return [array get permissions]
}
proc htmlStudentGrades { db user } {
set defSortCol LastName
global script_name
set sort_col $defSortCol
set show_header 1
# show the table with grades
set eval_str [list SELECT * FROM GradesTable WHERE UserName='$user' ORDER BY $sort_col]
set err [catch {
db eval $eval_str v {
if { $show_header } {
set show_header 0
puts {<table border="1">}
puts "<tr>"
foreach col $v(*) {
puts -nonewline "<th>$col</th>"
}
puts "</tr>"
puts "<tr>"
} else {
puts "<tr>"
}
foreach index $v(*) {
if { $index != "*" } {
puts -nonewline "<td>$v($index)</td>"
}
}
puts "</tr>"
}
} errStat ]
if { $err } {
dbg "we should never be here if $sortCol and $user exist in the table" 1
dbg $errStat 1
}
puts "</table>"
}
proc htmlGradesTable {db permission_list sortCol user} {
array set permission $permission_list
switch $permission(GroupName) {
guest { }
student { htmlStudentGrades db $user}
ta { htmlDBout db $sortCol}
instructor {htmlDBout db $sortCol}
default { }
}
}
##################### end of procs ####################################
set timestamp [clock format [clock seconds] -format "%Y-%m-%dT%H:%M:%S"]
#CreatePasswordsTable db
#CreateGradesTable db
#CreateAccessRightsTable db
dbg [::ncgi::names] 4
# logon and logoff actions are granted to everyone
if { $action == "logon" } { LogMeOn }
if { $action == "logoff" } { LogMeOff }
dbg "Connection at $timestamp for user $user"
set permissions [AccessGroupRights db $user $password]
::ncgi::header
ChoseAction $action $permissions
htmlTop $permissions
htmlGradesTable db $permissions $sortCol $user
#htmlDBout db $sortCol
|