mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09: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>
		
			
				
	
	
		
			214 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			214 lines
		
	
	
		
			5.3 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 packages
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| 	"strings"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models/db"
 | |
| 
 | |
| 	"xorm.io/builder"
 | |
| )
 | |
| 
 | |
| func init() {
 | |
| 	db.RegisterModel(new(Package))
 | |
| }
 | |
| 
 | |
| var (
 | |
| 	// ErrDuplicatePackage indicates a duplicated package error
 | |
| 	ErrDuplicatePackage = errors.New("Package does exist already")
 | |
| 	// ErrPackageNotExist indicates a package not exist error
 | |
| 	ErrPackageNotExist = errors.New("Package does not exist")
 | |
| )
 | |
| 
 | |
| // Type of a package
 | |
| type Type string
 | |
| 
 | |
| // List of supported packages
 | |
| const (
 | |
| 	TypeComposer  Type = "composer"
 | |
| 	TypeConan     Type = "conan"
 | |
| 	TypeContainer Type = "container"
 | |
| 	TypeGeneric   Type = "generic"
 | |
| 	TypeNuGet     Type = "nuget"
 | |
| 	TypeNpm       Type = "npm"
 | |
| 	TypeMaven     Type = "maven"
 | |
| 	TypePyPI      Type = "pypi"
 | |
| 	TypeRubyGems  Type = "rubygems"
 | |
| )
 | |
| 
 | |
| // Name gets the name of the package type
 | |
| func (pt Type) Name() string {
 | |
| 	switch pt {
 | |
| 	case TypeComposer:
 | |
| 		return "Composer"
 | |
| 	case TypeConan:
 | |
| 		return "Conan"
 | |
| 	case TypeContainer:
 | |
| 		return "Container"
 | |
| 	case TypeGeneric:
 | |
| 		return "Generic"
 | |
| 	case TypeNuGet:
 | |
| 		return "NuGet"
 | |
| 	case TypeNpm:
 | |
| 		return "npm"
 | |
| 	case TypeMaven:
 | |
| 		return "Maven"
 | |
| 	case TypePyPI:
 | |
| 		return "PyPI"
 | |
| 	case TypeRubyGems:
 | |
| 		return "RubyGems"
 | |
| 	}
 | |
| 	panic(fmt.Sprintf("unknown package type: %s", string(pt)))
 | |
| }
 | |
| 
 | |
| // SVGName gets the name of the package type svg image
 | |
| func (pt Type) SVGName() string {
 | |
| 	switch pt {
 | |
| 	case TypeComposer:
 | |
| 		return "gitea-composer"
 | |
| 	case TypeConan:
 | |
| 		return "gitea-conan"
 | |
| 	case TypeContainer:
 | |
| 		return "octicon-container"
 | |
| 	case TypeGeneric:
 | |
| 		return "octicon-package"
 | |
| 	case TypeNuGet:
 | |
| 		return "gitea-nuget"
 | |
| 	case TypeNpm:
 | |
| 		return "gitea-npm"
 | |
| 	case TypeMaven:
 | |
| 		return "gitea-maven"
 | |
| 	case TypePyPI:
 | |
| 		return "gitea-python"
 | |
| 	case TypeRubyGems:
 | |
| 		return "gitea-rubygems"
 | |
| 	}
 | |
| 	panic(fmt.Sprintf("unknown package type: %s", string(pt)))
 | |
| }
 | |
| 
 | |
| // Package represents a package
 | |
| type Package struct {
 | |
| 	ID               int64  `xorm:"pk autoincr"`
 | |
| 	OwnerID          int64  `xorm:"UNIQUE(s) INDEX NOT NULL"`
 | |
| 	RepoID           int64  `xorm:"INDEX"`
 | |
| 	Type             Type   `xorm:"UNIQUE(s) INDEX NOT NULL"`
 | |
| 	Name             string `xorm:"NOT NULL"`
 | |
| 	LowerName        string `xorm:"UNIQUE(s) INDEX NOT NULL"`
 | |
| 	SemverCompatible bool   `xorm:"NOT NULL DEFAULT false"`
 | |
| }
 | |
| 
 | |
| // TryInsertPackage inserts a package. If a package exists already, ErrDuplicatePackage is returned
 | |
| func TryInsertPackage(ctx context.Context, p *Package) (*Package, error) {
 | |
| 	e := db.GetEngine(ctx)
 | |
| 
 | |
| 	key := &Package{
 | |
| 		OwnerID:   p.OwnerID,
 | |
| 		Type:      p.Type,
 | |
| 		LowerName: p.LowerName,
 | |
| 	}
 | |
| 
 | |
| 	has, err := e.Get(key)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if has {
 | |
| 		return key, ErrDuplicatePackage
 | |
| 	}
 | |
| 	if _, err = e.Insert(p); err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return p, nil
 | |
| }
 | |
| 
 | |
| // SetRepositoryLink sets the linked repository
 | |
| func SetRepositoryLink(ctx context.Context, packageID, repoID int64) error {
 | |
| 	_, err := db.GetEngine(ctx).ID(packageID).Cols("repo_id").Update(&Package{RepoID: repoID})
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // UnlinkRepositoryFromAllPackages unlinks every package from the repository
 | |
| func UnlinkRepositoryFromAllPackages(ctx context.Context, repoID int64) error {
 | |
| 	_, err := db.GetEngine(ctx).Where("repo_id = ?", repoID).Cols("repo_id").Update(&Package{})
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // GetPackageByID gets a package by id
 | |
| func GetPackageByID(ctx context.Context, packageID int64) (*Package, error) {
 | |
| 	p := &Package{}
 | |
| 
 | |
| 	has, err := db.GetEngine(ctx).ID(packageID).Get(p)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if !has {
 | |
| 		return nil, ErrPackageNotExist
 | |
| 	}
 | |
| 	return p, nil
 | |
| }
 | |
| 
 | |
| // GetPackageByName gets a package by name
 | |
| func GetPackageByName(ctx context.Context, ownerID int64, packageType Type, name string) (*Package, error) {
 | |
| 	var cond builder.Cond = builder.Eq{
 | |
| 		"package.owner_id":   ownerID,
 | |
| 		"package.type":       packageType,
 | |
| 		"package.lower_name": strings.ToLower(name),
 | |
| 	}
 | |
| 
 | |
| 	p := &Package{}
 | |
| 
 | |
| 	has, err := db.GetEngine(ctx).
 | |
| 		Where(cond).
 | |
| 		Get(p)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if !has {
 | |
| 		return nil, ErrPackageNotExist
 | |
| 	}
 | |
| 	return p, nil
 | |
| }
 | |
| 
 | |
| // GetPackagesByType gets all packages of a specific type
 | |
| func GetPackagesByType(ctx context.Context, ownerID int64, packageType Type) ([]*Package, error) {
 | |
| 	var cond builder.Cond = builder.Eq{
 | |
| 		"package.owner_id": ownerID,
 | |
| 		"package.type":     packageType,
 | |
| 	}
 | |
| 
 | |
| 	ps := make([]*Package, 0, 10)
 | |
| 	return ps, db.GetEngine(ctx).
 | |
| 		Where(cond).
 | |
| 		Find(&ps)
 | |
| }
 | |
| 
 | |
| // DeletePackagesIfUnreferenced deletes a package if there are no associated versions
 | |
| func DeletePackagesIfUnreferenced(ctx context.Context) error {
 | |
| 	in := builder.
 | |
| 		Select("package_version.package_id").
 | |
| 		From("package").
 | |
| 		Join("LEFT", "package_version", "package_version.package_id = package.id").
 | |
| 		Where(builder.Expr("package_version.id IS NULL"))
 | |
| 
 | |
| 	_, err := db.GetEngine(ctx).
 | |
| 		Where(builder.In("package.id", in)).
 | |
| 		Delete(&Package{})
 | |
| 
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // HasOwnerPackages tests if a user/org has packages
 | |
| func HasOwnerPackages(ctx context.Context, ownerID int64) (bool, error) {
 | |
| 	return db.GetEngine(ctx).Where("owner_id = ?", ownerID).Exist(&Package{})
 | |
| }
 | |
| 
 | |
| // HasRepositoryPackages tests if a repository has packages
 | |
| func HasRepositoryPackages(ctx context.Context, repositoryID int64) (bool, error) {
 | |
| 	return db.GetEngine(ctx).Where("repo_id = ?", repositoryID).Exist(&Package{})
 | |
| }
 |