Bumped v release; files are now served properly

This commit is contained in:
Jef Roosens 2022-01-31 21:14:43 +01:00
parent 3c0b7156c1
commit 8a0beffbe2
Signed by untrusted user: Jef Roosens
GPG key ID: 955C0660072F691F
5 changed files with 11 additions and 10 deletions

View file

@ -44,9 +44,8 @@ fn (r &Repo) sync() ? {
C.archive_write_add_filter_gzip(a_files)
C.archive_write_set_format_pax_restricted(a_files)
// TODO add symlink to .tar.gz version
db_path := os.join_path_single(r.repo_dir, 'repo.db')
files_path := os.join_path_single(r.repo_dir, 'repo.files')
db_path := os.join_path_single(r.repo_dir, 'vieter.db.tar.gz')
files_path := os.join_path_single(r.repo_dir, 'vieter.files.tar.gz')
C.archive_write_open_filename(a_db, &char(db_path.str))
C.archive_write_open_filename(a_files, &char(files_path.str))

View file

@ -27,7 +27,7 @@ fn is_pkg_name(s string) bool {
['/health'; get]
pub fn (mut app App) healthcheck() web.Result {
return app.text('Healthy')
return app.text('Healthy')
}
// get_root handles a GET request for a file on the root
@ -35,10 +35,12 @@ pub fn (mut app App) healthcheck() web.Result {
fn (mut app App) get_root(filename string) web.Result {
mut full_path := ''
if is_pkg_name(filename) {
full_path = os.join_path_single(app.repo.pkg_dir, filename)
if filename.ends_with('.db') || filename.ends_with('.files') {
full_path = os.join_path_single(app.repo.repo_dir, '${filename}.tar.gz')
} else if filename.ends_with('.db.tar.gz') || filename.ends_with('.files.tar.gz') {
full_path = os.join_path_single(app.repo.repo_dir, '$filename')
} else {
full_path = os.join_path_single(app.repo.repo_dir, filename)
full_path = os.join_path_single(app.repo.pkg_dir, filename)
}
return app.file(full_path)

View file

@ -262,7 +262,6 @@ pub fn (mut ctx Context) file(f_path string) Result {
if ctx.done {
return Result{}
}
ctx.done = true
if !os.is_file(f_path) {
return ctx.not_found()