forked from kohler/hotcrp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manualassign.php
323 lines (281 loc) · 12.9 KB
/
manualassign.php
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
321
322
323
<?php
// manualassign.php -- HotCRP chair's paper assignment page
// Copyright (c) 2006-2020 Eddie Kohler; see LICENSE.
require_once("src/initweb.php");
require_once("src/papersearch.php");
if (!$Me->is_manager())
$Me->escape();
$Me->add_overrides(Contact::OVERRIDE_CONFLICT);
// request cleaning
$tOpt = PaperSearch::manager_search_types($Me);
if (!$Qreq->t || !isset($tOpt[$Qreq->t])) {
reset($tOpt);
$Qreq->t = key($tOpt);
}
if (!$Qreq->q || trim($Qreq->q) == "(All)")
$Qreq->q = "";
$Qreq->allow_a("p", "pap");
if (!$Qreq->p && $Qreq->pap) {
$Qreq->p = $Qreq->pap;
}
if (is_string($Qreq->p)) {
$Qreq->p = preg_split('/\s+/', $Qreq->p);
}
$reviewer = $Me;
if (isset($Qreq->reviewer)) {
foreach ($Conf->full_pc_members() as $pcm) {
if (strcasecmp($pcm->email, $Qreq->reviewer) == 0
|| (string) $pcm->contactId === $Qreq->reviewer) {
$reviewer = $pcm;
break;
}
}
}
if (!($reviewer->roles & Contact::ROLE_PC)) {
$reviewer = null;
}
$Qreq->rev_round = (string) $Conf->sanitize_round_name($Qreq->rev_round);
function saveAssignments($qreq, $reviewer) {
global $Conf, $Me, $Now;
$round_number = null;
$rcid = $reviewer->contactId;
$pids = [];
foreach ($qreq as $k => $v) {
if (str_starts_with($k, "assrev")
&& str_ends_with($k, "u" . $rcid)) {
$pids[] = intval(substr($k, 6));
}
}
$confset = $Conf->conflict_types();
$assignments = [];
foreach ($Me->paper_set($pids, ["reviewSignatures" => true]) as $row) {
$name = "assrev" . $row->paperId . "u" . $rcid;
if (!isset($qreq[$name])
|| ($assrev = cvtint($qreq[$name], null)) === null) {
continue;
}
$ct = $row->conflict_type($reviewer);
$rt = $row->review_type($reviewer);
if (!$Me->can_administer($row)
|| Conflict::is_author($ct)) {
continue;
}
if ($assrev < 0) {
$newct = Conflict::is_conflicted($ct) ? $ct : Conflict::PINNED;
} else {
$newct = Conflict::is_conflicted($ct) ? 0 : $ct;
}
if ($ct !== $newct) {
$assignments[] = [$row->paperId, $reviewer->email, "conflict", "", $confset->unparse_assignment($newct)];
}
$newrt = max($assrev, 0);
if ($rt !== $newrt
&& ($newrt == 0 || $reviewer->can_accept_review_assignment_ignore_conflict($row))) {
$assignments[] = [$row->paperId, $reviewer->email, ReviewInfo::unparse_assigner_action($newrt), $qreq->rev_round];
}
}
if (!empty($assignments)) {
$text = "paper,email,action,round,conflicttype\n";
foreach ($assignments as $line) {
$text .= join(",", $line) . "\n";
}
error_log($text);
$aset = new AssignmentSet($Me);
$aset->parse($text);
$aset->execute(true);
}
$Conf->self_redirect($qreq);
}
if ($Qreq->update && $reviewer && $Qreq->post_ok()) {
saveAssignments($Qreq, $reviewer);
} else if ($Qreq->update) {
Conf::msg_error("You need to select a reviewer.");
}
$Conf->header("Assignments", "assignpc", ["subtitle" => "Manual"]);
echo '<div class="psmode">',
'<div class="papmode"><a href="', $Conf->hoturl("autoassign"), '">Automatic</a></div>',
'<div class="papmode active"><a href="', $Conf->hoturl("manualassign"), '">Manual</a></div>',
'<div class="papmode"><a href="', $Conf->hoturl("conflictassign"), '">Conflicts</a></div>',
'<div class="papmode"><a href="', $Conf->hoturl("bulkassign"), '">Bulk update</a></div>',
'</div><hr class="c">';
// Help list
echo '<div class="helpside"><div class="helpinside">
Assignment methods:
<ul><li><a href="', $Conf->hoturl("autoassign"), '">Automatic</a></li>
<li><a href="', $Conf->hoturl("manualassign"), '" class="q"><strong>Manual by PC member</strong></a></li>
<li><a href="', $Conf->hoturl("assign"), '">Manual by paper</a></li>
<li><a href="', $Conf->hoturl("conflictassign"), '">Potential conflicts</a></li>
<li><a href="', $Conf->hoturl("bulkassign"), '">Bulk update</a></li>
</ul>
<hr class="hr">
<p>Types of PC review:</p>
<dl><dt>', review_type_icon(REVIEW_PRIMARY), ' Primary</dt><dd>Mandatory review</dd>
<dt>', review_type_icon(REVIEW_SECONDARY), ' Secondary</dt><dd>May be delegated to external reviewers</dd>
<dt>', review_type_icon(REVIEW_PC), ' Optional</dt><dd>May be declined</dd>
<dt>', review_type_icon(REVIEW_META), ' Metareview</dt><dd>Can view all other reviews before completing their own</dd></dl>
<hr class="hr">
<dl><dt>Potential conflicts</dt><dd>Matches between PC member collaborators and paper authors, or between PC member and paper authors or collaborators</dd>
<dt>Preference</dt><dd><a href="', $Conf->hoturl("reviewprefs"), '">Review preference</a></dd>
<dt>Topic score</dt><dd>High value means PC member has interest in many paper topics</dd>
<dt>Desirability</dt><dd>High values mean many PC members want to review the paper</dd>
</dl><p>Click a heading to sort.</div></div>';
if ($reviewer) {
echo "<h2 style=\"margin-top:1em\">Assignments for ", $Me->reviewer_html_for($reviewer), ($reviewer->affiliation ? " (" . htmlspecialchars($reviewer->affiliation) . ")" : ""), "</h2>\n";
} else {
echo "<h2 style=\"margin-top:1em\">Assignments by PC member</h2>\n";
}
// Change PC member
echo "<table><tr><td><div class=\"assignpc_pcsel\">",
Ht::form(hoturl("manualassign"), array("method" => "get", "id" => "selectreviewerform"));
Ht::stash_script('hiliter_children("#selectreviewerform")');
$result = $Conf->qe_raw("select ContactInfo.contactId, count(reviewId)
from ContactInfo
left join PaperReview on (PaperReview.contactId=ContactInfo.contactId and PaperReview.reviewType>=" . REVIEW_SECONDARY . ")
where roles!=0 and (roles&" . Contact::ROLE_PC . ")!=0
group by ContactInfo.contactId");
$rev_count = [];
while (($row = $result->fetch_row())) {
$rev_count[$row[0]] = $row[1];
}
$rev_opt = array();
if (!$reviewer) {
$rev_opt[0] = "(Select a PC member)";
}
$textarg = ["lastFirst" => $Conf->sort_by_last];
foreach ($Conf->pc_members() as $pc) {
$rev_opt[$pc->email] = Text::name_html($pc, $textarg) . " ("
. plural(get($rev_count, $pc->contactId, 0), "assignment") . ")";
}
echo "<table><tr><td><strong>PC member:</strong> </td>",
"<td>", Ht::select("reviewer", $rev_opt, $reviewer ? $reviewer->email : 0), "</td></tr>",
"<tr><td colspan=\"2\"><hr class=\"g\"></td></tr>\n";
// Paper selection
echo "<tr><td>Paper selection: </td><td>",
Ht::entry("q", $Qreq->q,
["id" => "manualassignq", "size" => 40, "placeholder" => "(All)",
"title" => "Paper numbers or search terms"]),
" in ";
if (count($tOpt) > 1) {
echo Ht::select("t", $tOpt, $Qreq->t);
} else {
echo join("", $tOpt);
}
echo "</td></tr>\n",
"<tr><td colspan=\"2\"><hr class=\"g\">\n";
echo '<tr><td colspan="2"><div class="aab aabr">',
'<div class="aabut">', Ht::submit("Go", ["class" => "btn-primary"]), '</div>',
'</div></td></tr>',
"</table>\n</form></div></td></tr></table>\n";
function show_element($pl, $name, $text, $sepclass = "", $id = null, $post = "") {
return '<li class="checki' . ($sepclass ? " $sepclass" : "")
. '"><span class="checkc">'
. Ht::checkbox("show$name", 1, $pl->showing($name), ["class" => "uich js-plinfo ignore-diff", "id" => $id ? : "show$name"])
. "</span>" . Ht::label($text) . $post . '</li>';
}
function show_elements($pl) {
$show_data = array();
if ($pl->has("abstract")) {
$show_data[] = show_element($pl, "abstract", "Abstract");
}
if (!$pl->conf->subBlindAlways()) {
$show_data[] = show_element($pl, "au", "Authors");
} else if ($pl->user->is_manager()) {
$show_data[] = show_element($pl, "anonau", "Authors (deblinded)", "", "showau",
Ht::checkbox("showau", 1, $pl->showing("anonau"), ["id" => "showau_hidden", "class" => "uich js-plinfo hidden ignore-diff"]));
}
if (!$pl->conf->subBlindAlways() || $pl->user->is_manager()) {
$show_data[] = show_element($pl, "aufull", "Full author info", "fx10");
}
if ($pl->user->is_manager() && !$pl->conf->subBlindAlways() && !$pl->conf->subBlindNever()) {
$show_data[] = show_element($pl, "anonau", "Deblinded authors", "fx10");
}
if ($pl->conf->has_topics()) {
$show_data[] = show_element($pl, "topics", "Topics");
}
$show_data[] = show_element($pl, "tags", "Tags");
return $show_data;
}
// Current PC member information
if ($reviewer) {
// search outline from old CRP, done here in a very different way
$hlsearch = [];
foreach ($reviewer->aucollab_matchers() as $matcher) {
$text = "match:\"" . str_replace("\"", "", $matcher->nameaff_text()) . "\"";
$hlsearch[] = "au" . $text;
if (!$matcher->nonauthor && $Conf->setting("sub_collab"))
$hlsearch[] = "co" . $text;
}
// Topic links
$interest = [[], []];
foreach ($reviewer->topic_interest_map() as $topic => $ti) {
$interest[$ti > 0 ? 1 : 0][$topic] = $ti;
}
if (!empty($interest[1])) {
echo '<div class="f-i"><label>High-interest topics</label>',
$Conf->topic_set()->unparse_list_html(array_keys($interest[1]), $interest[1]),
"</div>";
}
if (!empty($interest[0])) {
echo '<div class="f-i"><label>Low-interest topics</label>',
$Conf->topic_set()->unparse_list_html(array_keys($interest[0]), $interest[0]),
"</div>";
}
// Conflict information
if ($reviewer->collaborators()) {
echo '<div class="f-i"><label>Collaborators</label>';
$cos = [];
foreach (explode("\n", $reviewer->collaborators()) as $co) {
if ($co !== "")
$cos[] = htmlspecialchars(trim($co));
}
echo join("; ", $cos), '</div>';
}
$show = " show:au" . ($Conf->setting("sub_collab") ? " show:co" : "");
echo '<div class="f-i">',
'<a href="', hoturl("search", "q=" . urlencode(join(" OR ", $hlsearch) . " OR conf:" . $reviewer->email . $show) . '&linkto=assign&reviewer=' . urlencode($reviewer->email)),
'">Search for current and potential conflicts</a></div>';
// main assignment form
$search = new PaperSearch($Me, [
"t" => $Qreq->t, "q" => $Qreq->q, "reviewer" => $reviewer,
"pageurl" => $Conf->hoturl_site_relative_raw("manualassign")
]);
if (!empty($hlsearch)) {
$search->set_field_highlighter_query(join(" OR ", $hlsearch));
}
$pl = new PaperList("reviewAssignment", $search, ["sort" => true, "display" => "show:topics show:reviewers"], $Qreq);
echo Ht::form($Conf->hoturl_post("manualassign", ["reviewer" => $reviewer->email, "sort" => $Qreq->sort]), ["class" => "has-fold " . ($pl->showing("au") || $pl->showing("anonau") ? "fold10o" : "fold10c") . " assignpc ignore-diff"]),
Ht::hidden("t", $Qreq->t),
Ht::hidden("q", $Qreq->q);
$rev_rounds = $Conf->round_selector_options(false);
$expected_round = $Conf->assignment_round_option(false);
echo '<div id="searchform">';
if (count($rev_rounds) > 1) {
echo '<div class="entryi"><label for="assrevround">Review round</label><div class="entry">',
Ht::select("rev_round", $rev_rounds, $Qreq->rev_round ? : $expected_round, ["id" => "assrevround", "class" => "ignore-diff"]), ' <span class="barsep">·</span> ';
} else if ($expected_round !== "unnamed") {
echo '<div class="entryi"><label>Review round</label><div class="entry">',
$expected_round, ' <span class="barsep">·</span> ';
} else {
echo '<div class="entryi"><label></label><div class="entry">';
}
echo '<label class="d-inline-block checki"><span class="checkc">',
Ht::checkbox("autosave", false, true, ["id" => "assrevimmediate", "class" => "ignore-diff uich js-assignment-autosave"]),
'</span>Automatically save assignments</label></div></div>';
$show_data = show_elements($pl);
if (!empty($show_data)) {
echo '<div class="entryi"><label>Show</label>',
'<ul class="entry inline">', join('', $show_data), '</ul></div>';
}
echo '<div class="entryi autosave-hidden hidden"><label></label><div class="entry">',
Ht::submit("update", "Save assignments", ["class" => "btn-primary btn big"]), '</div></div>';
echo '</div>';
$pl->set_table_id_class("foldpl", "pltable-fullw");
echo $pl->table_html(["nofooter" => true, "list" => true]);
echo '<div class="aab aabr aabig"><div class="aabut">',
Ht::submit("update", "Save assignments", ["class" => "btn-primary"]),
"</div></div></form>\n";
Ht::stash_script('hiliter_children("form.assignpc");$("#assrevimmediate").trigger("change");'
. "$(\"#showau\").on(\"change\", function () { foldup.call(this, null, {n:10}) })");
}
echo '<hr class="c" />';
$Conf->footer();