core&ui: only show code on contest record (#457)

pull/461/head
panda 2 years ago committed by GitHub
parent 865f30fe42
commit e92cbeb1ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,4 +1,4 @@
import { omit, throttle } from 'lodash';
import { omit, pick, throttle } from 'lodash';
import { FilterQuery, ObjectID } from 'mongodb';
import {
ContestNotAttendedError, ContestNotFoundError, ForbiddenError, PermissionError,
@ -141,6 +141,7 @@ class RecordDetailHandler extends ContestDetailBaseHandler {
// eslint-disable-next-line consistent-return
async get(domainId: string, rid: ObjectID, download = false) {
const rdoc = this.rdoc;
let canViewDetail = true;
if (rdoc.contest?.toString() === '000000000000000000000000') {
if (rdoc.uid !== this.user._id) throw new PermissionError(PERM.PERM_READ_RECORD_CODE);
} else if (rdoc.contest) {
@ -148,7 +149,8 @@ class RecordDetailHandler extends ContestDetailBaseHandler {
let canView = this.user.own(this.tdoc);
canView ||= contest.canShowRecord.call(this, this.tdoc);
canView ||= contest.canShowSelfRecord.call(this, this.tdoc, true) && rdoc.uid === this.user._id;
if (!canView) throw new PermissionError(rid);
if (!canView && rdoc.uid !== this.user._id) throw new PermissionError(rid);
canViewDetail = canView;
this.args.tid = this.tdoc.docId;
}
@ -178,7 +180,7 @@ class RecordDetailHandler extends ContestDetailBaseHandler {
this.response.template = 'record_detail.html';
this.response.body = {
udoc, rdoc, pdoc, tdoc: this.tdoc,
udoc, rdoc: canViewDetail ? rdoc : pick(rdoc, ['_id', 'lang', 'code']), pdoc, tdoc: this.tdoc,
};
}

@ -1,10 +1,14 @@
{% import "components/problem.html" as problem with context %}
{% extends "layout/basic.html" %}
{% block content %}
{{ set(UiContext, 'socketUrl', "record-detail-conn?domainId=" + rdoc.domainId + "&rid=" + rdoc._id) }}
{% if typeof(rdoc['status']) === 'number' %}
{{ set(UiContext, 'socketUrl', "record-detail-conn?domainId=" + rdoc.domainId + "&rid=" + rdoc._id) }}
{% endif %}
<div class="row">
<div class="medium-9 columns">
{% if typeof(rdoc['status']) === 'number' %}
{% include 'record_detail_status.html' %}
{% endif %}
{% if rdoc['code'] or rdoc.files.code %}
<div class="section">
<div class="section__header">
@ -90,7 +94,9 @@
<dd>{{ user.render_inline(judge_udoc, badge=false) }}</dd>
{% endif %}
</dl>
{% if typeof(rdoc['status']) === 'number' %}
{% include 'record_detail_summary.html' %}
{% endif %}
</div>
</div>
</div>

Loading…
Cancel
Save