-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathproblem.go
313 lines (246 loc) · 9.12 KB
/
problem.go
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
package kilonova
import (
"log/slog"
"time"
"github.com/KiloProjects/kilonova/internal/config"
"github.com/shopspring/decimal"
)
var (
DefaultSourceSize = config.GenFlag[int]("behavior.problem.default_source_size", 30000, "Default maximum source code size for problems")
ErrAttachmentExists = Statusf(400, "Attachment with that name already exists!")
)
type ScoringType string
const (
ScoringTypeNone ScoringType = ""
ScoringTypeMaxSub ScoringType = "max_submission"
ScoringTypeSumSubtasks ScoringType = "sum_subtasks"
ScoringTypeICPC ScoringType = "acm-icpc"
)
type Problem struct {
ID int `json:"id"`
CreatedAt time.Time `json:"created_at"`
Name string `json:"name"`
TestName string `json:"test_name"`
DefaultPoints decimal.Decimal `json:"default_points"`
Visible bool `json:"visible"`
VisibleTests bool `json:"visible_tests"`
// Limit stuff
TimeLimit float64 `json:"time_limit"`
MemoryLimit int `json:"memory_limit"`
SourceSize int `json:"source_size"`
SourceCredits string `json:"source_credits"`
// Used only for leaderboard scoring right now
ScoreScale decimal.Decimal `json:"score_scale"`
// Eval stuff
ConsoleInput bool `json:"console_input"`
ScorePrecision int32 `json:"score_precision"`
PublishedAt *time.Time `json:"published_at"`
ScoringStrategy ScoringType `json:"scoring_strategy"`
}
func (pb *Problem) LogValue() slog.Value {
if pb == nil {
return slog.Value{}
}
return slog.GroupValue(slog.Int("id", pb.ID), slog.String("name", pb.Name))
}
type StatementVariant struct {
// Language, ie. ro/en
Language string `json:"lang"`
// Format, ie. pdf/md/etc.
Format string `json:"format"`
// Type, ie. normal/short/llm/etc.
Type string `json:"type"`
// Private is true if the attachment for this statement variant is private.
// it may be private if it's currently being worked on.
Private bool `json:"public"`
LastUpdatedAt time.Time `json:"last_updated_at"`
}
// Used for comparing in templates if the right option is selected.
func (sv *StatementVariant) Equals(other *StatementVariant) bool {
return sv.Language == other.Language && sv.Format == other.Format && sv.Type == other.Type
}
type ScoredProblem struct {
Problem
ScoreUserID *int `json:"score_user_id"`
MaxScore *decimal.Decimal `json:"max_score"`
// For showing the published/unpublished label on front page
IsEditor bool `json:"is_editor"`
}
// ProblemFilter is the struct with all filterable fields on the problem
// It also provides a Limit and Offset field, for pagination
// This list might be expanded as time goes on
type ProblemFilter struct {
ID *int `json:"id"`
IDs []int `json:"ids"`
ConsoleInput *bool `json:"console_input"`
Visible *bool `json:"visible"`
Name *string `json:"name"`
FuzzyName *string `json:"name_fuzzy"`
// DeepListID - the list ID in which to search recursively for problems
DeepListID *int `json:"deep_list_id"`
// EditorUserID filter marks if the user is part of the *editors* of the problem
// Note that it excludes factors like admin or contest editor, it's just the editors in the access section.
EditorUserID *int `json:"editor_user_id"`
Tags []*TagGroup `json:"tags"`
Look bool `json:"-"`
LookEditor bool `json:"-"`
LookFullyVisible bool `json:"-"`
LookingUser *UserBrief `json:"-"`
// Should be "en" or "ro", if non-nil
Language *string `json:"lang"`
// Check problems that have attachment with that ID
// Currently used for logging statement changes
AttachmentID *int `json:"-"`
// Used for getting problems for MOSS
ContestID *int `json:"-"`
UnsolvedBy *int `json:"unsolved_by"`
SolvedBy *int `json:"solved_by"`
AttemptedBy *int `json:"attempted_by"`
// Unassociated filter ensures that all returned problems are not "bound" to a problem list
Unassociated bool `json:"-"`
// This is actually not used during filtering in DB, it's used by (*api.API).searchProblems
ScoreUserID *int `json:"score_user_id"`
Limit int `json:"limit"`
Offset int `json:"offset"`
Ordering string `json:"ordering"`
Descending bool `json:"descending"`
}
type ProblemUpdate struct {
Name *string `json:"name"`
TestName *string `json:"test_name"`
DefaultPoints *decimal.Decimal `json:"default_points"`
ScoreScale *decimal.Decimal `json:"score_scale"`
TimeLimit *float64 `json:"time_limit"`
MemoryLimit *int `json:"memory_limit"`
SourceSize *int `json:"source_size"`
SourceCredits *string `json:"source_credits"`
ConsoleInput *bool `json:"console_input"`
Visible *bool `json:"visible"`
VisibleTests *bool `json:"visible_tests"`
ScorePrecision *int32 `json:"score_precision"`
ScoringStrategy ScoringType `json:"scoring_strategy"`
}
type Attachment struct {
ID int `json:"id"`
CreatedAt time.Time `json:"created_at"`
Visible bool `json:"visible"`
Private bool `json:"private"`
Exec bool `json:"exec"`
LastUpdatedAt time.Time `json:"last_updated_at"`
LastUpdatedBy *int `json:"last_updated_by"`
Name string `json:"name"`
// Data []byte `json:"data,omitempty"`
Size int `json:"data_size"`
}
// Should be used only for interacting with db from sudoapi
type AttachmentFilter struct {
ID *int
IDs []int
ProblemID *int
BlogPostID *int
Visible *bool
Private *bool
Exec *bool
Name *string
Limit int
Offset int
}
type AttachmentUpdate struct {
Visible *bool `json:"visible"`
Private *bool `json:"private"`
Exec *bool `json:"exec"`
Name *string `json:"name"`
}
type ProblemEvalSettings struct {
// Files to be included during compilation, but not in the compile command
HeaderFiles []string `json:"header_files"`
// List of all grader files detected in attachments. Further processing is required to filter by language on evaluation
GraderFiles []string `json:"grader_files"`
// If problem has custom checker, this is non-empty
CheckerName string `json:"has_checker"`
// If problem has custom checker that is marked as legacy
LegacyChecker bool `json:"legacy_checker"`
// Stores the list of languages that are allowed to be submitted based on existing attachments
LanguageWhitelist []string `json:"lang_whitelist"`
}
type ProblemChecklist struct {
ProblemID int `json:"problem_id" db:"problem_id"`
HasSourceCredits bool `json:"has_source_credits" db:"has_source"`
NumPDF int `json:"num_pdf_files" db:"num_pdf"`
NumMarkdown int `json:"num_md_files" db:"num_md"`
NumTests int `json:"num_tests" db:"num_tests"`
NumSubtasks int `json:"num_subtasks" db:"num_subtasks"`
NumAuthorTags int `json:"num_author_tags" db:"num_authors"`
NumOtherTags int `json:"num_other_tags" db:"num_other_tags"`
NumSolutions int `json:"num_sols" db:"num_sols"`
}
type ResourceType string
const (
ResourceTypeNone ResourceType = ""
ResourceTypeEditorial ResourceType = "editorial"
ResourceTypeVideo ResourceType = "video"
ResourceTypeSolution ResourceType = "solution"
ResourceTypeArticle ResourceType = "article"
ResourceTypeOther ResourceType = "other"
)
type ExternalResource struct {
ID int `json:"id" db:"id"`
CreatedAt time.Time `json:"created_at" db:"created_at"`
Name string `json:"name" db:"name"`
Description string `json:"description" db:"description"`
URL string `json:"url" db:"url"`
Language string `json:"language" db:"language"`
Visible bool `json:"visible" db:"visible"`
Accepted bool `json:"accepted" db:"accepted"`
ProposedBy *int `json:"proposed_by" db:"proposed_by"`
Type ResourceType `json:"type" db:"type"`
ProblemID int `json:"problem_id" db:"problem_id"`
Position int `json:"position" db:"position"`
}
func (r *ExternalResource) LogValue() slog.Value {
if r == nil {
return slog.Value{}
}
return slog.GroupValue(slog.String("name", r.Name), slog.Any("type", r.Type), slog.Int("pbid", r.ProblemID))
}
type ExternalResourceFilter struct {
ID *int `json:"id"`
ProblemID *int `json:"problem_id"`
Type ResourceType `json:"type"`
Language *string `json:"language"`
Visible *bool `json:"visible"`
Accepted *bool `json:"accepted"`
ProposedBy *int `json:"proposed_by"`
Look bool `json:"-"`
LookingUser *UserBrief `json:"-"`
Ordering string `json:"ordering"`
Descending bool `json:"descending"`
Limit int `json:"limit"`
Offset int `json:"offset"`
}
type ExternalResourceUpdate struct {
Name *string `json:"name"`
Description *string `json:"description"`
URL *string `json:"url"`
Language *string `json:"language"`
Visible *bool `json:"visible"`
Accepted *bool `json:"accepted"`
Type ResourceType `json:"type"`
Position *int `json:"position"`
}
func (t ResourceType) FontAwesomeIcon() string {
switch t {
case ResourceTypeEditorial:
return "fa-book"
case ResourceTypeVideo:
return "fa-film"
case ResourceTypeSolution:
return "fa-file-circle-check"
case ResourceTypeArticle:
return "fa-newspaper"
case ResourceTypeOther:
return "fa-file-circle-question"
default:
return "fa-file-lines"
}
}