mirror of
https://github.com/go-gitea/gitea.git
synced 2026-08-25 12:59:45 +09:00
## Summary
Replace `url.QueryEscape` with `url.PathEscape` when building
`dist.tarball` in the npm package registry. `QueryEscape` leaves `@`
unescaped, producing `dist.tarball` URLs like `@scope%2Fname` for scoped
packages — which npm clients cannot resolve. `PathEscape` produces the
RFC 3986 path-segment-safe encoding (`%40scope%2Fname`) that the npm
registry URL format requires.
## Reproduction
1. Publish a scoped npm package (`@scope/name@1.0.0`) to a Gitea package
registry.
2. Inspect the `dist.tarball` field in the metadata response.
3. Observe that the package name in the URL is `@scope%2Fname` instead
of `%40scope%2Fname`.
4. `npm install @scope/name` fails because npm rejects the malformed
tarball URL.
## Fix
One-line change in `routers/api/packages/npm/api.go`:
```diff
-Tarball: fmt.Sprintf("%s/%s/-/%s/%s", registryURL, url.QueryEscape(pd.Package.Name), url.PathEscape(pd.Version.Version), url.PathEscape(pd.Files[0].File.LowerName)),
+Tarball: fmt.Sprintf("%s/%s/-/%s/%s", registryURL, url.PathEscape(pd.Package.Name), url.PathEscape(pd.Version.Version), url.PathEscape(pd.Files[0].File.LowerName)),
```
## Tests
- `routers/api/packages/npm/api_test.go`: extended
`TestCreatePackageMetadataResponse` to use `Package.Name: "@scope/test"`
and added an `assert.Equal` on `Dist.Tarball` (per review feedback to
consolidate the test instead of adding a new one).
- `tests/integration/api_packages_npm_test.go`: switched three
`url.QueryEscape(packageName)` to `url.PathEscape(packageName)` to match
the new production encoding (lines 125, 126, 446). The `TestPackageNpm`
assert at line 219 against `pmv.Dist.Tarball` now passes for scoped
packages.
The unit test fails on `main` (excluding the `QueryEscape` →
`PathEscape` swap) and passes with the fix.
## Related
Closes #39060.
## Disclosure
This contribution was prepared with assistance from an AI coding
assistant (limited to language polishing in maintainer-facing messages).
The contributor reviewed and validated all changes, including the test
cases.
---------
Signed-off-by: Dmitriy Chudnyi <dmitriy@chudnyi.com>
Signed-off-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
54 lines
1.8 KiB
Go
54 lines
1.8 KiB
Go
// Copyright 2026 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package npm
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
packages_model "gitea.dev/models/packages"
|
|
user_model "gitea.dev/models/user"
|
|
npm_module "gitea.dev/modules/packages/npm"
|
|
"gitea.dev/modules/timeutil"
|
|
|
|
"github.com/hashicorp/go-version"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCreatePackageMetadataResponse(t *testing.T) {
|
|
descriptor := func(v string, publishedUnix int64) *packages_model.PackageDescriptor {
|
|
return &packages_model.PackageDescriptor{
|
|
Package: &packages_model.Package{Name: "@scope/test"},
|
|
Owner: &user_model.User{Name: "alice"},
|
|
Version: &packages_model.PackageVersion{Version: v, CreatedUnix: timeutil.TimeStamp(publishedUnix)},
|
|
SemVer: version.Must(version.NewVersion(v)),
|
|
Metadata: &npm_module.Metadata{Keywords: []string{"gitea"}},
|
|
Files: []*packages_model.PackageFileDescriptor{{
|
|
File: &packages_model.PackageFile{LowerName: "test-" + v + ".tgz"},
|
|
Blob: &packages_model.PackageBlob{},
|
|
}},
|
|
}
|
|
}
|
|
|
|
result := createPackageMetadataResponse("https://gitea.dev/api/packages/alice/npm", []*packages_model.PackageDescriptor{
|
|
descriptor("1.1.0", 1000),
|
|
descriptor("1.0.0", 2000),
|
|
})
|
|
|
|
assert.Equal(t, map[string]time.Time{
|
|
"1.0.0": time.Unix(2000, 0).UTC(),
|
|
"1.1.0": time.Unix(1000, 0).UTC(),
|
|
"created": time.Unix(1000, 0).UTC(),
|
|
"modified": time.Unix(2000, 0).UTC(),
|
|
}, result.Time)
|
|
assert.Equal(t, []npm_module.User{{Name: "alice"}}, result.Maintainers)
|
|
assert.Equal(t, []string{"gitea"}, result.Keywords)
|
|
assert.Equal(t, []string{"gitea"}, result.Versions["1.0.0"].Keywords)
|
|
assert.Equal(t, []npm_module.User{{Name: "alice"}}, result.Versions["1.0.0"].Maintainers)
|
|
assert.Equal(t,
|
|
"https://gitea.dev/api/packages/alice/npm/@scope%2Ftest/-/1.0.0/test-1.0.0.tgz",
|
|
result.Versions["1.0.0"].Dist.Tarball,
|
|
)
|
|
}
|