Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use a variable but a function for IsProd because of a slight performance ↵ | Lunny Xiao | 2021-10-20 | 1 | -1/+1 |
| | | | | increment (#17368) | ||||
* | Avatar refactor, move avatar code from `models` to `models.avatars`, remove ↵ | wxiaoguang | 2021-10-06 | 2 | -15/+32 |
| | | | | | | | | | | | | | | | | duplicated code (#17123) Why this refactor The goal is to move most files from `models` package to `models.xxx` package. Many models depend on avatar model, so just move this first. And the existing logic is not clear, there are too many function like `AvatarLink`, `RelAvatarLink`, `SizedRelAvatarLink`, `SizedAvatarLink`, `MakeFinalAvatarURL`, `HashedAvatarLink`, etc. This refactor make everything clear: * user.AvatarLink() * user.AvatarLinkWithSize(size) * avatars.GenerateEmailAvatarFastLink(email, size) * avatars.GenerateEmailAvatarFinalLink(email, size) And many duplicated code are deleted in route handler, the handler and the model share the same avatar logic now. | ||||
* | Add ETag header (#15370) | KN4CK3R | 2021-04-12 | 2 | -9/+176 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | * Add ETag header. * Comply with RFC 7232. * Moved logic into httpcache.go * Changed name. * Lint * Implemented If-None-Match list. * Fixed missing header on * * Removed weak etag support. * Removed * support. * Added unit test. * Lint Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: techknowlogick <techknowlogick@gitea.io> | ||||
* | Use IsProd instead of testing if it's equal. (#14336) | Lunny Xiao | 2021-01-14 | 1 | -1/+1 |
| | | | | Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: zeripath <art27@cantab.net> | ||||
* | HTTP cache rework and enable caching for storage assets (#13569) | silverwind | 2020-11-17 | 1 | -0/+59 |
This enabled HTTP time-based cache for storage assets, primarily avatars. I have not observed If-Modified-Since from browsers during tests but I guess it's good to support regardless. It introduces a new generic httpcache module that can handle both time-based and etag-based caching. Additionally, manifest.json and robots.txt are now also cachable. |