aboutsummaryrefslogtreecommitdiffstats
path: root/services/context/api.go
Commit message (Collapse)AuthorAgeFilesLines
* Enable addtional linters (#34085)TheFox0x72 days1-5/+6
| | | | | | | | enable mirror, usestdlibbars and perfsprint part of: https://github.com/go-gitea/gitea/issues/34083 --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Move git references checking to gitrepo packages to reduce expose of ↵Lunny Xiao2025-03-151-2/+2
| | | | repository path (#33891)
* Refactor cache-control (#33861)wxiaoguang2025-03-131-1/+1
| | | And fix #21391
* Fix git empty check and HEAD request (#33690)wxiaoguang2025-02-241-0/+5
|
* Refactor error system (#33626)wxiaoguang2025-02-171-5/+11
|
* Refactor error system (#33610)wxiaoguang2025-02-161-34/+28
|
* Feature: Support workflow event dispatch via API (#33545)wxiaoguang2025-02-111-0/+3
| | | | | | | | | Fix: https://github.com/go-gitea/gitea/issues/31765 (Re-open #32059) --------- Co-authored-by: Bence Santha <git@santha.eu> Co-authored-by: Bence Sántha <7604637+bencurio@users.noreply.github.com> Co-authored-by: Christopher Homberger <christopher.homberger@web.de>
* Fix "redirect link" handling (#33440)wxiaoguang2025-01-311-1/+1
| | | | | | | `a%2fb` should not redirect to `a/b` --------- Co-authored-by: delvh <dev.lh@web.de>
* Fix raw file API ref handling (#33172)wxiaoguang2025-01-101-2/+1
| | | Fix #33164 and add more tests
* [Feature] Private README.md for organization (#32872)Chai-Shi2024-12-311-1/+1
| | | | | | | | Implemented #29503 --------- Co-authored-by: Ben Chang <ben_chang@htc.com> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Refactor request context (#32956)wxiaoguang2024-12-241-20/+8
| | | | | | | | | | | Introduce RequestContext: is a short-lived context that is used to store request-specific data. RequestContext could be used to clean form tmp files, close context git repo, and do some tracing in the future. Then a lot of legacy code could be removed or improved. For example: most `ctx.Repo.GitRepo.Close()` could be removed because the git repo could be closed when the request is done.
* Refactor RepoRefByType (#32413)wxiaoguang2024-11-051-19/+2
| | | | | 1. clarify the "filepath" could(should) contain "{ref}" 2. remove unclear RepoRefLegacy and RepoRefAny, use RepoRefUnknown to guess 3. by the way, avoid using AppURL
* Fix bug when a token is given public only (#32204)Lunny Xiao2024-10-081-3/+4
|
* Refactor names (#31405)wxiaoguang2024-06-191-2/+2
| | | | | | | This PR only does "renaming": * `Route` should be `Router` (and chi router is also called "router") * `Params` should be `PathParam` (to distingush it from URL query param, and to match `FormString`) * Use lower case for private functions to avoid exposing or abusing
* Refactor cache and disable go-chi cache (#30417)wxiaoguang2024-04-131-5/+3
| | | use built-in cache package to wrap external go-chi cache package
* Move context from modules to services (#29440)Lunny Xiao2024-02-271-0/+408
Since `modules/context` has to depend on `models` and many other packages, it should be moved from `modules/context` to `services/context` according to design principles. There is no logic code change on this PR, only move packages. - Move `code.gitea.io/gitea/modules/context` to `code.gitea.io/gitea/services/context` - Move `code.gitea.io/gitea/modules/contexttest` to `code.gitea.io/gitea/services/contexttest` because of depending on context - Move `code.gitea.io/gitea/modules/upload` to `code.gitea.io/gitea/services/context/upload` because of depending on context