aboutsummaryrefslogtreecommitdiff
blob: e5fa14d7d1b9dcf48b1280ca107a9d8189f558d9 (plain)
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
#!/usr/bin/perl -wT
use strict;

use lib qw(. lib);

use Data::Dumper;
use Bugzilla;
use Bugzilla::Constants;
use Bugzilla::Util;
use Bugzilla::User;

my $cgi    = Bugzilla->cgi;
my $vars   = {};
my $myuser = Bugzilla->login(LOGIN_REQUIRED);
my $dbh    = Bugzilla->switch_to_shadow_db();
my ($query, $matchstr, $userid, $limit, $login_name);

print $cgi->header();

$matchstr = $cgi->param('matchstr');
$userid   = $cgi->param('userid');
$userid   = undef unless defined($userid) and $userid =~ /^\d+$/;
if (!defined($matchstr) and !defined($userid)) {
  print "No search parameters specified!<br/>\n";
  print "Put <tt>matchstr</tt> or <tt>userid</tt> in the URL parameters.<br/>\n";
  exit(0);
}
exit 0 if !defined($matchstr) and !defined($userid);

$limit = $cgi->param('limit');
$limit = 50 unless defined($limit) and $limit =~ /^\d+$/;

trick_taint($matchstr) if defined($matchstr);
trick_taint($userid)   if defined($userid);
trick_taint($limit);

$userid = $matchstr ? login_to_id($matchstr) : $userid;
$login_name = $matchstr ? $matchstr : Bugzilla::User->new($userid)->login;

if (!$userid || !$login_name) {
  print "Bad user!<br/>";
  exit(0);
}

$query = qq{
(SELECT
		bug_id,
		bug_when,
		fielddefs.name AS field
	FROM
		bugs_activity
		JOIN fielddefs ON bugs_activity.fieldid=fielddefs.id
	WHERE
		who=?
	ORDER BY
		bug_when DESC
	LIMIT $limit)
UNION
(SELECT
		bug_id,
		bug_when,
		'ZZcomment #' AS field
	FROM
		longdescs
	WHERE
		who=?
	ORDER BY
		bug_when DESC
	LIMIT $limit)
UNION
(SELECT
		bug_id,
		creation_ts AS bug_when,
		CONCAT('ZZattachment #', attach_id)  AS field
	FROM
		attachments
	WHERE
		submitter_id=?
	ORDER BY
		creation_ts DESC
	LIMIT $limit)
ORDER BY bug_when DESC
LIMIT $limit};
my $actions = $dbh->selectall_arrayref($query, {Slice => {}},
  ($userid, $userid, $userid),);

#print Dumper($vars);
printf "<h1>Custom User History: %s</h1>\n", $login_name;
print "<table>\n";
printf "<tr><th>login_name</th><td>%s</td></tr>\n", $login_name;
printf "<tr><th>userid</th><td>%s</td></tr>\n",     $userid;
print "</table>\n";

sub show_bug_url {
  return "/show_bug.cgi?id=" . shift;
}

print q{
<hr/>
<h2>Bug History</h2>
<table>
	<tr>
		<th>Timestamp</th>
		<th>BugID</th>
		<th>Field</th>
	</tr>
};
my $counter = 0;
foreach my $row (@$actions) {
  $counter++;
  my $url = show_bug_url($row->{'bug_id'});
  (
    my $message = qq{
		<tr>
			<td>$row->{'bug_when'}</td>
			<td><a href="${url}">$row->{'bug_id'}</a></td>
			<td>$row->{'field'}</td>
		</tr>
	}
  ) =~ s/^\t{1}//mg;
  print $message;
}
print qq{
</table>
History Done<br />
Limit=${limit}<br />
Count=${counter}<br />
};

$query = q{
SELECT
	p2.userid AS grantor_id,
	p1.userid AS grantee_id,
	p2.login_name AS grantor,
	p1.login_name AS grantee,
	profiles_when,
	oldvalue,
	newvalue
FROM
	profiles p1
	JOIN profiles_activity ON p1.userid=profiles_activity.userid
	JOIN profiles p2 ON p2.userid=who
WHERE
	FALSE
	OR p1.userid = ?
	OR p2.userid = ?
ORDER BY
	profiles_when};
$actions = $dbh->selectall_arrayref($query, {Slice => {}}, ($userid, $userid),);

print qq{
<hr/>
<h2>Profile Activity</h2>
<h3>Applied to ${login_name}:</h3>
<table>
	<tr>
		<th>Timestamp</th>
		<th>Grantor</th>
		<th>Grantee</th>
		<th>Oldvalue</th>
		<th>Newvalue</th>
	</tr>
};
foreach my $row (@$actions) {
  next unless $row->{'grantee_id'} == $userid;
  (
    my $message = qq{
		<tr>
			<td>$row->{'profiles_when'}</td>
			<td>$row->{'grantor'}</td>
			<td>$row->{'grantee'}</td>
			<td>$row->{'oldvalue'}</td>
			<td>$row->{'newvalue'}</td>
		</tr>
	}
  ) =~ s/^\t{1}//mg;
  print $message;
}

print qq{
</table>

<h3>Applied by ${login_name}:</h3>
<table>
	<tr>
		<th>Timestamp</th>
		<th>Grantor</th>
		<th>Grantee</th>
		<th>Oldvalue</th>
		<th>Newvalue</th>
	</tr>
};
foreach my $row (@$actions) {
  next unless $row->{'grantor_id'} == $userid;
  (
    my $message = qq{
		<tr>
			<td>$row->{'profiles_when'}</td>
			<td>$row->{'grantor'}</td>
			<td>$row->{'grantee'}</td>
			<td>$row->{'oldvalue'}</td>
			<td>$row->{'newvalue'}</td>
		</tr>
	}
  ) =~ s/^\t{1}//mg;
  print $message;
}
print "</table>\n";

$query = q{
SELECT
	p1.userid AS watcher_id,
	p2.userid AS watched_id,
	p1.login_name AS watcher,
	p2.login_name AS watched
FROM
	profiles p1
	JOIN watch ON p1.userid=watch.watcher
	JOIN profiles p2 ON p2.userid=watch.watched
WHERE
	FALSE
	OR p1.userid = ?
	OR p2.userid = ?
ORDER BY
	watcher,watched
};
$actions = $dbh->selectall_arrayref($query, {Slice => {}}, ($userid, $userid),);
print "<hr/><h2>Watch status</h2>\n";
printf "<h3>Watchers of %s:</h3>\n", $login_name;
foreach my $row (@$actions) {
  printf "%s<br/>\n", $row->{'watcher'} if $row->{'watched_id'} == $userid;
}
printf "<br/>\n";

printf "<h3>Watched by %s:</h3>", $login_name;
foreach my $row (@$actions) {
  printf "%s<br/>\n", $row->{'watched'} if $row->{'watcher_id'} == $userid;
}
printf "<br/>\n";


$query = q{
SELECT
	at_time,
	user_id,
	profiles.login_name AS login_name,
	class,
	object_id,
	field
FROM
	audit_log
	LEFT JOIN profiles ON profiles.userid=audit_log.user_id
WHERE
	FALSE
	OR audit_log.user_id=?
	OR (audit_log.class = 'Bugzilla::User' AND audit_log.object_id=?)
ORDER BY
	at_time
};
my $audits
  = $dbh->selectall_arrayref($query, {Slice => {}}, ($userid, $userid),);

print qq{<hr/>
<h2>Audit log</h2>
<h3>Changes by ${login_name}:</h3>
<table>
	<tr>
		<th>Timestamp</th>
		<th>User</th>
		<th>Class/ID</th>
		<th>Field</th>
	</tr>
};
foreach my $row (@$audits) {
  next unless $row->{'user_id'} == $userid;
  (
    my $message = qq{
		<tr>
			<td><tt>$row->{'at_time'}</tt></td>
			<td><tt>$row->{'login_name'}</tt> ($row->{'user_id'})</td>
			<td><tt>$row->{'class'}/$row->{'object_id'}</tt></td>
			<td><tt>$row->{'field'}</tt></td>
		</tr>
	}
  ) =~ s/^\t{1}//mg;
  print $message;
}

print qq{
</table>

<h3>Changes to ${login_name}:</h3>
<table>
	<tr>
		<th>Timestamp</th>
		<th>User</th>
		<th>Class/ID</th>
		<th>Field</th>
	</tr>
};
foreach my $row (@$audits) {
  next
    unless $row->{'object_id'} == $userid && $row->{'class'} eq 'Bugzilla::User';
  (
    my $message = qq{
		<tr>
			<td><tt>$row->{'at_time'}</tt></td>
			<td><tt>$row->{'login_name'}</tt> ($row->{'user_id'})</td>
			<td><tt>$row->{'class'}/$row->{'object_id'}</tt></td>
			<td><tt>$row->{'field'}</tt></td>
		</tr>
	}
  ) =~ s/^\t{1}//mg;
  print $message;
}
print qq{
</table>
<hr/>
Done.<br/>
};