-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathQStatskeeper.pm
227 lines (184 loc) · 5.01 KB
/
QStatskeeper.pm
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
#!/usr/bin/env perl
# SPDX-FileCopyrightText: 2021 Pragmatic Software <[email protected]>
# SPDX-License-Identifier: MIT
package QStatskeeper;
use warnings;
use strict;
use DBI;
use Carp qw(shortmess);
my $debug = 0;
sub new {
my ($class, %conf) = @_;
my $self = bless {}, $class;
$self->initialize(%conf);
return $self;
}
sub initialize {
my ($self, %conf) = @_;
$self->{filename} = $conf{filename} // 'qstats.sqlite';
}
sub begin {
my $self = shift;
print STDERR "Opening QStats SQLite database: $self->{filename}\n" if $debug;
$self->{dbh} = DBI->connect("dbi:SQLite:dbname=$self->{filename}", "", "", { RaiseError => 1, PrintError => 0 }) or die $DBI::errstr;
eval {
$self->{dbh}->do(<< 'SQL');
CREATE TABLE IF NOT EXISTS QStats (
id INTEGER PRIMARY KEY,
asked_count INTEGER DEFAULT 0,
last_asked NUMERIC DEFAULT 0,
last_touched NUMERIC DEFAULT 0,
correct INTEGER DEFAULT 0,
last_correct_time NUMERIC DEFAULT 0,
last_correct_nick TEXT COLLATE NOCASE DEFAULT NULL,
wrong INTEGER DEFAULT 0,
wrong_streak INTEGER DEFAULT 0,
highest_wrong_streak INTEGER DEFAULT 0,
hints INTEGER DEFAULT 0,
quickest_answer_time NUMERIC DEFAULT 0,
quickest_answer_date NUMERIC DEFAULT 0,
quickest_answer_nick TEXT COLLATE NOCASE DEFAULT NULL,
longest_answer_time NUMERIC DEFAULT 0,
longest_answer_date NUMERIC DEFAULT 0,
longest_answer_nick TEXT COLLATE NOCASE DEFAULT NULL,
average_answer_time NUMERIC DEFAULT 0
)
SQL
$self->{dbh}->do(<< 'SQL');
CREATE TABLE IF NOT EXISTS WrongAnswers (
id INTEGER,
answer TEXT NOT NULL COLLATE NOCASE,
nick TEXT NOT NULL COLLATE NOCASE,
count INTEGER DEFAULT 1
)
SQL
};
print STDERR $@ if $@;
}
sub end {
my $self = shift;
print STDERR "Closing QStats SQLite database\n" if $debug;
if(exists $self->{dbh} and defined $self->{dbh}) {
$self->{dbh}->disconnect();
delete $self->{dbh};
}
}
sub find_question {
my ($self, $id) = @_;
my $exists = eval {
my $sth = $self->{dbh}->prepare('SELECT 1 FROM QStats WHERE id = ?');
$sth->bind_param(1, $id);
$sth->execute();
return $sth->fetchrow_hashref();
};
print STDERR $@ if $@;
return $exists;
}
sub add_question {
my ($self, $id) = @_;
eval {
my $sth = $self->{dbh}->prepare('INSERT OR IGNORE INTO QStats (id) VALUES (?)');
$sth->bind_param(1, $id);
$sth->execute();
};
print STDERR $@ if $@;
}
sub get_question_data {
my ($self, $id, @columns) = @_;
$self->add_question($id);
my $qdata = eval {
my $sql = 'SELECT ';
if(not @columns) {
$sql .= '*';
} else {
my $comma = '';
foreach my $column (@columns) {
$sql .= "$comma$column";
$comma = ', ';
}
}
$sql .= ' FROM QStats WHERE id = ?';
my $sth = $self->{dbh}->prepare($sql);
$sth->bind_param(1, $id);
$sth->execute();
return $sth->fetchrow_hashref();
};
print STDERR $@ if $@;
return $qdata;
}
sub update_question_data {
my ($self, $id, $data) = @_;
eval {
my $sql = 'UPDATE QStats SET ';
my $comma = '';
foreach my $key (keys %$data) {
$sql .= "$comma$key = ?";
$comma = ', ';
}
$sql .= ' WHERE id = ?';
my $sth = $self->{dbh}->prepare($sql);
my $param = 1;
foreach my $key (keys %$data) {
$sth->bind_param($param++, $data->{$key});
}
$sth->bind_param($param, $id);
$sth->execute();
};
print STDERR $@ if $@;
}
sub get_wrong_answers {
my ($self, $id) = @_;
my $answers = eval {
my $sth = $self->{dbh}->prepare("SELECT * FROM WrongAnswers WHERE id = ?");
$sth->bind_param(1, $id);
$sth->execute();
return $sth->fetchall_arrayref({});
};
print STDERR $@ if $@;
return $answers;
}
sub add_wrong_answer {
my ($self, $id, $answer, $nick) = @_;
$answer = lc $answer;
$answer =~ s/^\s+|\s+$//g;
my $answers = $self->get_wrong_answers($id);
my $found_ans;
foreach my $ans (@$answers) {
if ($ans->{answer} eq $answer) {
$found_ans = $ans;
last;
}
}
if (not $found_ans) {
eval {
my $sth = $self->{dbh}->prepare("INSERT INTO WrongAnswers (id, answer, nick) VALUES (?, ?, ?)");
$sth->bind_param(1, $id);
$sth->bind_param(2, $answer);
$sth->bind_param(3, $nick);
$sth->execute();
};
print STDERR $@ if $@;
} else {
$found_ans->{count}++;
eval {
my $sth = $self->{dbh}->prepare("UPDATE WrongAnswers SET count = ?, nick = ? WHERE id = ? AND answer = ?");
$sth->bind_param(1, $found_ans->{count});
$sth->bind_param(2, $nick);
$sth->bind_param(3, $id);
$sth->bind_param(4, $answer);
$sth->execute();
};
print STDERR $@ if $@;
}
}
sub get_all_questions {
my ($self) = @_;
my $qdatas = eval {
my $sth = $self->{dbh}->prepare('SELECT * FROM QStats');
$sth->execute();
return $sth->fetchall_arrayref({});
};
print STDERR $@ if $@;
return $qdatas;
}
1;