mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-30 16:14:34 +01:00 
			
		
		
		
	* Added package store settings. * Added models. * Added generic package registry. * Added tests. * Added NuGet package registry. * Moved service index to api file. * Added NPM package registry. * Added Maven package registry. * Added PyPI package registry. * Summary is deprecated. * Changed npm name. * Sanitize project url. * Allow only scoped packages. * Added user interface. * Changed method name. * Added missing migration file. * Set page info. * Added documentation. * Added documentation links. * Fixed wrong error message. * Lint template files. * Fixed merge errors. * Fixed unit test storage path. * Switch to json module. * Added suggestions. * Added package webhook. * Add package api. * Fixed swagger file. * Fixed enum and comments. * Fixed NuGet pagination. * Print test names. * Added api tests. * Fixed access level. * Fix User unmarshal. * Added RubyGems package registry. * Fix lint. * Implemented io.Writer. * Added support for sha256/sha512 checksum files. * Improved maven-metadata.xml support. * Added support for symbol package uploads. * Added tests. * Added overview docs. * Added npm dependencies and keywords. * Added no-packages information. * Display file size. * Display asset count. * Fixed filter alignment. * Added package icons. * Formatted instructions. * Allow anonymous package downloads. * Fixed comments. * Fixed postgres test. * Moved file. * Moved models to models/packages. * Use correct error response format per client. * Use simpler search form. * Fixed IsProd. * Restructured data model. * Prevent empty filename. * Fix swagger. * Implemented user/org registry. * Implemented UI. * Use GetUserByIDCtx. * Use table for dependencies. * make svg * Added support for unscoped npm packages. * Add support for npm dist tags. * Added tests for npm tags. * Unlink packages if repository gets deleted. * Prevent user/org delete if a packages exist. * Use package unlink in repository service. * Added support for composer packages. * Restructured package docs. * Added missing tests. * Fixed generic content page. * Fixed docs. * Fixed swagger. * Added missing type. * Fixed ambiguous column. * Organize content store by sha256 hash. * Added admin package management. * Added support for sorting. * Add support for multiple identical versions/files. * Added missing repository unlink. * Added file properties. * make fmt * lint * Added Conan package registry. * Updated docs. * Unify package names. * Added swagger enum. * Use longer TEXT column type. * Removed version composite key. * Merged package and container registry. * Removed index. * Use dedicated package router. * Moved files to new location. * Updated docs. * Fixed JOIN order. * Fixed GROUP BY statement. * Fixed GROUP BY #2. * Added symbol server support. * Added more tests. * Set NOT NULL. * Added setting to disable package registries. * Moved auth into service. * refactor * Use ctx everywhere. * Added package cleanup task. * Changed packages path. * Added container registry. * Refactoring * Updated comparison. * Fix swagger. * Fixed table order. * Use token auth for npm routes. * Enabled ReverseProxy auth. * Added packages link for orgs. * Fixed anonymous org access. * Enable copy button for setup instructions. * Merge error * Added suggestions. * Fixed merge. * Handle "generic". * Added link for TODO. * Added suggestions. * Changed temporary buffer filename. * Added suggestions. * Apply suggestions from code review Co-authored-by: Thomas Boerger <thomas@webhippie.de> * Update docs/content/doc/packages/nuget.en-us.md Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> Co-authored-by: Thomas Boerger <thomas@webhippie.de>
		
			
				
	
	
		
			286 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			286 lines
		
	
	
		
			7.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2021 The Gitea Authors. All rights reserved.
 | |
| // Use of this source code is governed by a MIT-style
 | |
| // license that can be found in the LICENSE file.
 | |
| 
 | |
| package rubygems
 | |
| 
 | |
| import (
 | |
| 	"compress/gzip"
 | |
| 	"compress/zlib"
 | |
| 	"fmt"
 | |
| 	"io"
 | |
| 	"net/http"
 | |
| 	"strings"
 | |
| 
 | |
| 	packages_model "code.gitea.io/gitea/models/packages"
 | |
| 	"code.gitea.io/gitea/modules/context"
 | |
| 	packages_module "code.gitea.io/gitea/modules/packages"
 | |
| 	rubygems_module "code.gitea.io/gitea/modules/packages/rubygems"
 | |
| 	"code.gitea.io/gitea/routers/api/packages/helper"
 | |
| 	packages_service "code.gitea.io/gitea/services/packages"
 | |
| )
 | |
| 
 | |
| func apiError(ctx *context.Context, status int, obj interface{}) {
 | |
| 	helper.LogAndProcessError(ctx, status, obj, func(message string) {
 | |
| 		ctx.PlainText(status, message)
 | |
| 	})
 | |
| }
 | |
| 
 | |
| // EnumeratePackages serves the package list
 | |
| func EnumeratePackages(ctx *context.Context) {
 | |
| 	packages, err := packages_model.GetVersionsByPackageType(ctx, ctx.Package.Owner.ID, packages_model.TypeRubyGems)
 | |
| 	if err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	enumeratePackages(ctx, "specs.4.8", packages)
 | |
| }
 | |
| 
 | |
| // EnumeratePackagesLatest serves the list of the lastest version of every package
 | |
| func EnumeratePackagesLatest(ctx *context.Context) {
 | |
| 	pvs, _, err := packages_model.SearchLatestVersions(ctx, &packages_model.PackageSearchOptions{
 | |
| 		OwnerID: ctx.Package.Owner.ID,
 | |
| 		Type:    string(packages_model.TypeRubyGems),
 | |
| 	})
 | |
| 	if err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	enumeratePackages(ctx, "latest_specs.4.8", pvs)
 | |
| }
 | |
| 
 | |
| // EnumeratePackagesPreRelease is not supported and serves an empty list
 | |
| func EnumeratePackagesPreRelease(ctx *context.Context) {
 | |
| 	enumeratePackages(ctx, "prerelease_specs.4.8", []*packages_model.PackageVersion{})
 | |
| }
 | |
| 
 | |
| func enumeratePackages(ctx *context.Context, filename string, pvs []*packages_model.PackageVersion) {
 | |
| 	pds, err := packages_model.GetPackageDescriptors(ctx, pvs)
 | |
| 	if err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	specs := make([]interface{}, 0, len(pds))
 | |
| 	for _, p := range pds {
 | |
| 		specs = append(specs, []interface{}{
 | |
| 			p.Package.Name,
 | |
| 			&rubygems_module.RubyUserMarshal{
 | |
| 				Name:  "Gem::Version",
 | |
| 				Value: []string{p.Version.Version},
 | |
| 			},
 | |
| 			p.Metadata.(*rubygems_module.Metadata).Platform,
 | |
| 		})
 | |
| 	}
 | |
| 
 | |
| 	ctx.SetServeHeaders(filename + ".gz")
 | |
| 
 | |
| 	zw := gzip.NewWriter(ctx.Resp)
 | |
| 	defer zw.Close()
 | |
| 
 | |
| 	zw.Name = filename
 | |
| 
 | |
| 	if err := rubygems_module.NewMarshalEncoder(zw).Encode(specs); err != nil {
 | |
| 		ctx.ServerError("Download file failed", err)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // ServePackageSpecification serves the compressed Gemspec file of a package
 | |
| func ServePackageSpecification(ctx *context.Context) {
 | |
| 	filename := ctx.Params("filename")
 | |
| 
 | |
| 	if !strings.HasSuffix(filename, ".gemspec.rz") {
 | |
| 		apiError(ctx, http.StatusNotImplemented, nil)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	pvs, err := packages_model.GetVersionsByFilename(ctx, ctx.Package.Owner.ID, packages_model.TypeRubyGems, filename[:len(filename)-10]+"gem")
 | |
| 	if err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if len(pvs) != 1 {
 | |
| 		apiError(ctx, http.StatusNotFound, nil)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	pd, err := packages_model.GetPackageDescriptor(ctx, pvs[0])
 | |
| 	if err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.SetServeHeaders(filename)
 | |
| 
 | |
| 	zw := zlib.NewWriter(ctx.Resp)
 | |
| 	defer zw.Close()
 | |
| 
 | |
| 	metadata := pd.Metadata.(*rubygems_module.Metadata)
 | |
| 
 | |
| 	// create a Ruby Gem::Specification object
 | |
| 	spec := &rubygems_module.RubyUserDef{
 | |
| 		Name: "Gem::Specification",
 | |
| 		Value: []interface{}{
 | |
| 			"3.2.3", // @rubygems_version
 | |
| 			4,       // @specification_version,
 | |
| 			pd.Package.Name,
 | |
| 			&rubygems_module.RubyUserMarshal{
 | |
| 				Name:  "Gem::Version",
 | |
| 				Value: []string{pd.Version.Version},
 | |
| 			},
 | |
| 			nil,               // date
 | |
| 			metadata.Summary,  // @summary
 | |
| 			nil,               // @required_ruby_version
 | |
| 			nil,               // @required_rubygems_version
 | |
| 			metadata.Platform, // @original_platform
 | |
| 			[]interface{}{},   // @dependencies
 | |
| 			nil,               // rubyforge_project
 | |
| 			"",                // @email
 | |
| 			metadata.Authors,
 | |
| 			metadata.Description,
 | |
| 			metadata.ProjectURL,
 | |
| 			true,              // has_rdoc
 | |
| 			metadata.Platform, // @new_platform
 | |
| 			nil,
 | |
| 			metadata.Licenses,
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	if err := rubygems_module.NewMarshalEncoder(zw).Encode(spec); err != nil {
 | |
| 		ctx.ServerError("Download file failed", err)
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // DownloadPackageFile serves the content of a package
 | |
| func DownloadPackageFile(ctx *context.Context) {
 | |
| 	filename := ctx.Params("filename")
 | |
| 
 | |
| 	pvs, err := packages_model.GetVersionsByFilename(ctx, ctx.Package.Owner.ID, packages_model.TypeRubyGems, filename)
 | |
| 	if err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	if len(pvs) != 1 {
 | |
| 		apiError(ctx, http.StatusNotFound, nil)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	s, pf, err := packages_service.GetFileStreamByPackageVersion(
 | |
| 		ctx,
 | |
| 		pvs[0],
 | |
| 		&packages_service.PackageFileInfo{
 | |
| 			Filename: filename,
 | |
| 		},
 | |
| 	)
 | |
| 	if err != nil {
 | |
| 		if err == packages_model.ErrPackageFileNotExist {
 | |
| 			apiError(ctx, http.StatusNotFound, err)
 | |
| 			return
 | |
| 		}
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 	defer s.Close()
 | |
| 
 | |
| 	ctx.ServeStream(s, pf.Name)
 | |
| }
 | |
| 
 | |
| // UploadPackageFile adds a file to the package. If the package does not exist, it gets created.
 | |
| func UploadPackageFile(ctx *context.Context) {
 | |
| 	upload, close, err := ctx.UploadStream()
 | |
| 	if err != nil {
 | |
| 		apiError(ctx, http.StatusBadRequest, err)
 | |
| 		return
 | |
| 	}
 | |
| 	if close {
 | |
| 		defer upload.Close()
 | |
| 	}
 | |
| 
 | |
| 	buf, err := packages_module.CreateHashedBufferFromReader(upload, 32*1024*1024)
 | |
| 	if err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 	defer buf.Close()
 | |
| 
 | |
| 	rp, err := rubygems_module.ParsePackageMetaData(buf)
 | |
| 	if err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 	if _, err := buf.Seek(0, io.SeekStart); err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	var filename string
 | |
| 	if rp.Metadata.Platform == "" || rp.Metadata.Platform == "ruby" {
 | |
| 		filename = strings.ToLower(fmt.Sprintf("%s-%s.gem", rp.Name, rp.Version))
 | |
| 	} else {
 | |
| 		filename = strings.ToLower(fmt.Sprintf("%s-%s-%s.gem", rp.Name, rp.Version, rp.Metadata.Platform))
 | |
| 	}
 | |
| 
 | |
| 	_, _, err = packages_service.CreatePackageAndAddFile(
 | |
| 		&packages_service.PackageCreationInfo{
 | |
| 			PackageInfo: packages_service.PackageInfo{
 | |
| 				Owner:       ctx.Package.Owner,
 | |
| 				PackageType: packages_model.TypeRubyGems,
 | |
| 				Name:        rp.Name,
 | |
| 				Version:     rp.Version,
 | |
| 			},
 | |
| 			SemverCompatible: true,
 | |
| 			Creator:          ctx.Doer,
 | |
| 			Metadata:         rp.Metadata,
 | |
| 		},
 | |
| 		&packages_service.PackageFileCreationInfo{
 | |
| 			PackageFileInfo: packages_service.PackageFileInfo{
 | |
| 				Filename: filename,
 | |
| 			},
 | |
| 			Data:   buf,
 | |
| 			IsLead: true,
 | |
| 		},
 | |
| 	)
 | |
| 	if err != nil {
 | |
| 		if err == packages_model.ErrDuplicatePackageVersion {
 | |
| 			apiError(ctx, http.StatusBadRequest, err)
 | |
| 			return
 | |
| 		}
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	ctx.Status(http.StatusCreated)
 | |
| }
 | |
| 
 | |
| // DeletePackage deletes a package
 | |
| func DeletePackage(ctx *context.Context) {
 | |
| 	// Go populates the form only for POST, PUT and PATCH requests
 | |
| 	if err := ctx.Req.ParseMultipartForm(32 << 20); err != nil {
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 		return
 | |
| 	}
 | |
| 	packageName := ctx.FormString("gem_name")
 | |
| 	packageVersion := ctx.FormString("version")
 | |
| 
 | |
| 	err := packages_service.RemovePackageVersionByNameAndVersion(
 | |
| 		ctx.Doer,
 | |
| 		&packages_service.PackageInfo{
 | |
| 			Owner:       ctx.Package.Owner,
 | |
| 			PackageType: packages_model.TypeRubyGems,
 | |
| 			Name:        packageName,
 | |
| 			Version:     packageVersion,
 | |
| 		},
 | |
| 	)
 | |
| 	if err != nil {
 | |
| 		if err == packages_model.ErrPackageNotExist {
 | |
| 			apiError(ctx, http.StatusNotFound, err)
 | |
| 			return
 | |
| 		}
 | |
| 		apiError(ctx, http.StatusInternalServerError, err)
 | |
| 	}
 | |
| }
 |