2022-01-09 09:29:11 +01:00
|
|
|
module main
|
|
|
|
|
2022-01-09 21:45:48 +01:00
|
|
|
import web
|
2022-01-09 09:29:11 +01:00
|
|
|
import os
|
2022-01-09 21:45:48 +01:00
|
|
|
import io
|
2022-01-13 21:47:14 +01:00
|
|
|
import repo
|
2022-01-09 09:29:11 +01:00
|
|
|
|
|
|
|
const port = 8000
|
2022-01-09 22:18:04 +01:00
|
|
|
|
2022-01-11 18:19:41 +01:00
|
|
|
const buf_size = 1_000_000
|
2022-01-09 09:29:11 +01:00
|
|
|
|
2022-01-12 16:31:27 +01:00
|
|
|
const db_name = 'pieter.db'
|
2022-01-09 22:30:07 +01:00
|
|
|
|
2022-01-09 09:29:11 +01:00
|
|
|
struct App {
|
2022-01-09 21:45:48 +01:00
|
|
|
web.Context
|
2022-01-11 16:08:11 +01:00
|
|
|
pub:
|
2022-01-11 21:01:09 +01:00
|
|
|
api_key string [required; web_global]
|
2022-01-19 21:24:46 +01:00
|
|
|
dl_dir string [required; web_global]
|
2022-01-11 16:08:11 +01:00
|
|
|
pub mut:
|
2022-01-11 21:01:09 +01:00
|
|
|
repo repo.Repo [required; web_global]
|
2022-01-09 09:29:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
[noreturn]
|
|
|
|
fn exit_with_message(code int, msg string) {
|
|
|
|
eprintln(msg)
|
|
|
|
exit(code)
|
|
|
|
}
|
|
|
|
|
2022-01-09 22:18:04 +01:00
|
|
|
fn reader_to_file(mut reader io.BufferedReader, length int, path string) ? {
|
2022-01-09 21:45:48 +01:00
|
|
|
mut file := os.create(path) ?
|
|
|
|
defer {
|
|
|
|
file.close()
|
|
|
|
}
|
2022-01-09 17:44:47 +01:00
|
|
|
|
2022-01-09 21:45:48 +01:00
|
|
|
mut buf := []byte{len: buf_size}
|
2022-01-09 22:18:04 +01:00
|
|
|
mut bytes_left := length
|
2022-01-09 17:44:47 +01:00
|
|
|
|
2022-01-09 21:45:48 +01:00
|
|
|
// Repeat as long as the stream still has data
|
2022-01-09 22:18:04 +01:00
|
|
|
for bytes_left > 0 {
|
2022-01-09 21:45:48 +01:00
|
|
|
// TODO check if just breaking here is safe
|
2022-01-09 22:18:04 +01:00
|
|
|
bytes_read := reader.read(mut buf) or { break }
|
|
|
|
bytes_left -= bytes_read
|
2022-01-09 17:44:47 +01:00
|
|
|
|
2022-01-09 21:45:48 +01:00
|
|
|
mut to_write := bytes_read
|
2022-01-09 17:44:47 +01:00
|
|
|
|
2022-01-09 21:45:48 +01:00
|
|
|
for to_write > 0 {
|
|
|
|
// TODO don't just loop infinitely here
|
2022-01-09 22:18:04 +01:00
|
|
|
bytes_written := file.write(buf[bytes_read - to_write..bytes_read]) or { continue }
|
2022-01-09 21:45:48 +01:00
|
|
|
|
|
|
|
to_write = to_write - bytes_written
|
2022-01-09 17:44:47 +01:00
|
|
|
}
|
2022-01-09 10:36:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-13 19:20:14 +01:00
|
|
|
fn main() {
|
2022-02-17 22:00:46 +01:00
|
|
|
if os.args.len == 1 {
|
|
|
|
exit_with_message(1, 'No action provided.')
|
|
|
|
}
|
|
|
|
|
|
|
|
match os.args[1] {
|
|
|
|
'server' { server() }
|
|
|
|
'build' { build() }
|
|
|
|
else { exit_with_message(1, 'Unknown action: ${os.args[1]}') }
|
|
|
|
}
|
2022-01-13 19:20:14 +01:00
|
|
|
}
|