Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-11-16feat: handle extra headers when serving from compressed zip archivefeistel
Related to https://gitlab.com/gitlab-org/gitlab-pages/-/issues/466 Changelog: added
2021-11-08style: uppercase sha256feistel
SHA is an initialism. See https://github.com/golang/go/wiki/CodeReviewComments#initialisms
2021-11-08refactor: read and use file_sha256 as cache key for zip VFSfeistel
Now that the Rails API is serving the archive file_sha256 in the lookup response, we can move away from using the base URL as the key to cache the archive. Changelog: change
2021-09-09refactor: move away from ioutil (deprecated)feistel
2021-03-01Use actual structs in Config struct instead of pointers to themBalasankar "Balu" C
Signed-off-by: Balasankar "Balu" C <balasankarc@autistici.org>
2021-02-08Add test for file outside allowedPathsJaime Martinez
(cherry picked from commit b519027459919125c5227fcb60519bdd18b4c780)
2021-02-08Refactor http client usage in httprageJaime Martinez
Moves the http.Client initialization inside the `httprange` package to the zip VFS. This makes the type `Resource` depend on an http.Client that needs to be passed on initialization. It also makes the zip VFS initialize the client. It's possible to reconfigure it to register a file protocol by calling vfs.Reconfigure explicitly.
2020-11-30Remove default configJaime Martinez
Add todo to reconfigure other vfs
2020-11-30Call reconfigure explicitlyJaime Martinez
2020-11-30Add Reconfigure to serving and VFS interfacesJaime Martinez
2020-11-30Use sync.Once instead of checking for nilJaime Martinez
2020-11-30Increase time for flaky testJaime Martinez
Cleanup
2020-11-30Move flag definition to mainJaime Martinez
Add zip config to appConfig
2020-11-30Log zip configJaime Martinez
2020-11-30Move zip flags to configJaime Martinez
2020-11-30Add default configJaime Martinez
Use DefaultConfig as global
2020-11-30Add zip config flagsJaime Martinez
Adds a config package with specific zip configuration structure that can be shared between packages.
2020-10-27Properly handle processing failures with `5xx`Kamil Trzciński
Prior to this change ALL processing failures unrelated to "file missing" would return `404`. This is inaccurate. Processing failures are failure of GitLab Pages and `500` should be returned in such cases.
2020-10-13Fix support for archives without directory structureKamil Trzciński
In case of archives that do not store directories we would fail to automatically serve `index.html` for a `/` type of request. This makes us create directories when traversing the file list. ``` Archive: public-without-dirs.zip Length Date Time Name --------- ---------- ----- ---- 40 2020-09-15 02:47 public/subdir/hello.html 14 2020-09-15 03:35 public/subdir/2bp3Qzs9CCW7cGnxhghdavZ2bJDTzvu2mrj6O8Yqjm3YMRozRZULxBBKzJXCK16GlsvO1GlbCyONf2LTCndJU9cIr5T3PLDN7XnfG00lEmf9DWHPXiAbbi0v8ioSjnoTqdyjELVKuhsGRGxeV9RptLMyGnbpJx1w2uECiUQSHrRVQNuq2xoHLlk30UAmis1EhGXP5kKprzHxuavsKMdT4XRP0d79tie4tjqtfRsP4y60hmNS1vSujrxzhDa 33 2020-09-15 02:47 public/subdir/linked.html 31 2020-09-15 02:47 public/404.html 33 2020-09-15 02:47 public/index.html 258 2020-10-13 12:40 public/bad_symlink.html 18 2020-10-13 12:40 public/symlink.html ```
2020-09-25Apply suggestions from reviewJaime Martinez
2020-09-24Use same metric but with labelsJaime Martinez
2020-09-24Add Name to the VFS interface to use with metricsJaime Martinez
2020-09-24Rebase from base branchJaime Martinez
Add vfs.VFS implementation for zip Fix build errors Clean zip vfs Add tests for Root Add zip serving metric Return a zip.Instance() when source == zip Add simple acceptance test for zip serving Use correct contents No need to start testServer in go routine