2022-05-19 08:20:11 +02:00
|
|
|
module models
|
|
|
|
|
|
|
|
import time
|
|
|
|
|
|
|
|
pub struct BuildLog {
|
|
|
|
pub:
|
|
|
|
id int [primary; sql: serial]
|
|
|
|
repo_id int [nonull]
|
|
|
|
start_time time.Time [nonull]
|
|
|
|
end_time time.Time [nonull]
|
|
|
|
arch string [nonull]
|
|
|
|
exit_code int [nonull]
|
|
|
|
}
|
|
|
|
|
|
|
|
// str returns a string representation.
|
|
|
|
pub fn (bl &BuildLog) str() string {
|
|
|
|
mut parts := [
|
|
|
|
'id: $bl.id',
|
|
|
|
'repo id: $bl.repo_id',
|
|
|
|
'start time: $bl.start_time',
|
|
|
|
'end time: $bl.end_time',
|
|
|
|
'arch: $bl.arch',
|
|
|
|
'exit code: $bl.exit_code',
|
|
|
|
]
|
|
|
|
str := parts.join('\n')
|
|
|
|
|
|
|
|
return str
|
|
|
|
}
|
2022-05-19 22:43:38 +02:00
|
|
|
|
|
|
|
[params]
|
|
|
|
pub struct BuildLogFilter {
|
|
|
|
pub mut:
|
|
|
|
limit u64 = 25
|
|
|
|
offset u64
|
|
|
|
repo int
|
|
|
|
before time.Time
|
|
|
|
after time.Time
|
|
|
|
exit_codes_whitelist []u8
|
|
|
|
exit_codes_blacklist []u8
|
|
|
|
arch string
|
|
|
|
}
|