2022-03-30 10:42:47 +02:00
// Copyright 2021 The Gitea Authors. All rights reserved.
2022-11-27 19:20:29 +01:00
// SPDX-License-Identifier: MIT
2022-03-30 10:42:47 +02:00
package packages
import (
"context"
"strconv"
"strings"
"code.gitea.io/gitea/models/db"
2024-03-02 16:42:31 +01:00
"code.gitea.io/gitea/modules/optional"
2022-03-30 10:42:47 +02:00
"code.gitea.io/gitea/modules/timeutil"
2022-04-06 03:32:09 +02:00
"code.gitea.io/gitea/modules/util"
2022-03-30 10:42:47 +02:00
"xorm.io/builder"
)
2022-04-06 03:32:09 +02:00
// ErrDuplicatePackageVersion indicates a duplicated package version error
2022-12-31 12:49:37 +01:00
var ErrDuplicatePackageVersion = util . NewAlreadyExistErrorf ( "package version already exists" )
2022-03-30 10:42:47 +02:00
func init ( ) {
db . RegisterModel ( new ( PackageVersion ) )
}
// PackageVersion represents a package version
type PackageVersion struct {
ID int64 ` xorm:"pk autoincr" `
PackageID int64 ` xorm:"UNIQUE(s) INDEX NOT NULL" `
CreatorID int64 ` xorm:"NOT NULL DEFAULT 0" `
Version string ` xorm:"NOT NULL" `
LowerVersion string ` xorm:"UNIQUE(s) INDEX NOT NULL" `
CreatedUnix timeutil . TimeStamp ` xorm:"created INDEX NOT NULL" `
IsInternal bool ` xorm:"INDEX NOT NULL DEFAULT false" `
2022-11-03 08:28:46 +01:00
MetadataJSON string ` xorm:"metadata_json LONGTEXT" `
2022-03-30 10:42:47 +02:00
DownloadCount int64 ` xorm:"NOT NULL DEFAULT 0" `
}
// GetOrInsertVersion inserts a version. If the same version exist already ErrDuplicatePackageVersion is returned
func GetOrInsertVersion ( ctx context . Context , pv * PackageVersion ) ( * PackageVersion , error ) {
e := db . GetEngine ( ctx )
2024-01-19 12:37:10 +01:00
existing := & PackageVersion { }
2022-03-30 10:42:47 +02:00
2024-01-19 12:37:10 +01:00
has , err := e . Where ( builder . Eq {
"package_id" : pv . PackageID ,
"lower_version" : pv . LowerVersion ,
} ) . Get ( existing )
2022-03-30 10:42:47 +02:00
if err != nil {
return nil , err
}
if has {
2024-01-19 12:37:10 +01:00
return existing , ErrDuplicatePackageVersion
2022-03-30 10:42:47 +02:00
}
if _ , err = e . Insert ( pv ) ; err != nil {
return nil , err
}
return pv , nil
}
// UpdateVersion updates a version
func UpdateVersion ( ctx context . Context , pv * PackageVersion ) error {
_ , err := db . GetEngine ( ctx ) . ID ( pv . ID ) . Update ( pv )
return err
}
// IncrementDownloadCounter increments the download counter of a version
func IncrementDownloadCounter ( ctx context . Context , versionID int64 ) error {
_ , err := db . GetEngine ( ctx ) . Exec ( "UPDATE `package_version` SET `download_count` = `download_count` + 1 WHERE `id` = ?" , versionID )
return err
}
// GetVersionByID gets a version by id
func GetVersionByID ( ctx context . Context , versionID int64 ) ( * PackageVersion , error ) {
pv := & PackageVersion { }
has , err := db . GetEngine ( ctx ) . ID ( versionID ) . Get ( pv )
if err != nil {
return nil , err
}
if ! has {
return nil , ErrPackageNotExist
}
return pv , nil
}
// GetVersionByNameAndVersion gets a version by name and version number
func GetVersionByNameAndVersion ( ctx context . Context , ownerID int64 , packageType Type , name , version string ) ( * PackageVersion , error ) {
return getVersionByNameAndVersion ( ctx , ownerID , packageType , name , version , false )
}
// GetInternalVersionByNameAndVersion gets a version by name and version number
func GetInternalVersionByNameAndVersion ( ctx context . Context , ownerID int64 , packageType Type , name , version string ) ( * PackageVersion , error ) {
return getVersionByNameAndVersion ( ctx , ownerID , packageType , name , version , true )
}
func getVersionByNameAndVersion ( ctx context . Context , ownerID int64 , packageType Type , name , version string , isInternal bool ) ( * PackageVersion , error ) {
2022-04-06 03:32:09 +02:00
pvs , _ , err := SearchVersions ( ctx , & PackageSearchOptions {
OwnerID : ownerID ,
Type : packageType ,
Name : SearchValue {
ExactMatch : true ,
Value : name ,
} ,
Version : SearchValue {
ExactMatch : true ,
Value : version ,
} ,
2024-03-02 16:42:31 +01:00
IsInternal : optional . Some ( isInternal ) ,
2022-04-06 03:32:09 +02:00
Paginator : db . NewAbsoluteListOptions ( 0 , 1 ) ,
} )
2022-03-30 10:42:47 +02:00
if err != nil {
return nil , err
}
2022-04-06 03:32:09 +02:00
if len ( pvs ) == 0 {
2022-03-30 10:42:47 +02:00
return nil , ErrPackageNotExist
}
2022-04-06 03:32:09 +02:00
return pvs [ 0 ] , nil
2022-03-30 10:42:47 +02:00
}
// GetVersionsByPackageType gets all versions of a specific type
func GetVersionsByPackageType ( ctx context . Context , ownerID int64 , packageType Type ) ( [ ] * PackageVersion , error ) {
2022-04-06 03:32:09 +02:00
pvs , _ , err := SearchVersions ( ctx , & PackageSearchOptions {
2022-07-27 03:59:10 +02:00
OwnerID : ownerID ,
Type : packageType ,
2024-03-02 16:42:31 +01:00
IsInternal : optional . Some ( false ) ,
2022-04-06 03:32:09 +02:00
} )
return pvs , err
2022-03-30 10:42:47 +02:00
}
// GetVersionsByPackageName gets all versions of a specific package
func GetVersionsByPackageName ( ctx context . Context , ownerID int64 , packageType Type , name string ) ( [ ] * PackageVersion , error ) {
2022-04-06 03:32:09 +02:00
pvs , _ , err := SearchVersions ( ctx , & PackageSearchOptions {
OwnerID : ownerID ,
Type : packageType ,
Name : SearchValue {
ExactMatch : true ,
Value : name ,
} ,
2024-03-02 16:42:31 +01:00
IsInternal : optional . Some ( false ) ,
2022-04-06 03:32:09 +02:00
} )
return pvs , err
2022-03-30 10:42:47 +02:00
}
// DeleteVersionByID deletes a version by id
func DeleteVersionByID ( ctx context . Context , versionID int64 ) error {
_ , err := db . GetEngine ( ctx ) . ID ( versionID ) . Delete ( & PackageVersion { } )
return err
}
// HasVersionFileReferences checks if there are associated files
func HasVersionFileReferences ( ctx context . Context , versionID int64 ) ( bool , error ) {
return db . GetEngine ( ctx ) . Get ( & PackageFile {
VersionID : versionID ,
} )
}
2022-04-06 03:32:09 +02:00
// SearchValue describes a value to search
// If ExactMatch is true, the field must match the value otherwise a LIKE search is performed.
type SearchValue struct {
Value string
ExactMatch bool
}
2022-10-23 03:18:15 +02:00
type VersionSort = string
const (
SortNameAsc VersionSort = "name_asc"
SortNameDesc VersionSort = "name_desc"
SortVersionAsc VersionSort = "version_asc"
SortVersionDesc VersionSort = "version_desc"
SortCreatedAsc VersionSort = "created_asc"
SortCreatedDesc VersionSort = "created_desc"
)
2022-03-30 10:42:47 +02:00
// PackageSearchOptions are options for SearchXXX methods
2023-05-02 18:31:35 +02:00
// All fields optional and are not used if they have their default value (nil, "", 0)
2022-03-30 10:42:47 +02:00
type PackageSearchOptions struct {
2022-04-06 03:32:09 +02:00
OwnerID int64
RepoID int64
Type Type
PackageID int64
Name SearchValue // only results with the specific name are found
Version SearchValue // only results with the specific version are found
Properties map [ string ] string // only results are found which contain all listed version properties with the specific value
2024-03-02 16:42:31 +01:00
IsInternal optional . Option [ bool ]
HasFileWithName string // only results are found which are associated with a file with the specific name
HasFiles optional . Option [ bool ] // only results are found which have associated files
2022-10-23 03:18:15 +02:00
Sort VersionSort
2022-03-30 10:42:47 +02:00
db . Paginator
}
2023-08-14 04:50:55 +02:00
func ( opts * PackageSearchOptions ) ToConds ( ) builder . Cond {
2022-07-14 09:22:09 +02:00
cond := builder . NewCond ( )
2024-03-02 16:42:31 +01:00
if opts . IsInternal . Has ( ) {
2023-05-02 18:31:35 +02:00
cond = builder . Eq {
2024-03-02 16:42:31 +01:00
"package_version.is_internal" : opts . IsInternal . Value ( ) ,
2023-05-02 18:31:35 +02:00
}
2022-07-14 09:22:09 +02:00
}
2022-03-30 10:42:47 +02:00
if opts . OwnerID != 0 {
cond = cond . And ( builder . Eq { "package.owner_id" : opts . OwnerID } )
}
if opts . RepoID != 0 {
cond = cond . And ( builder . Eq { "package.repo_id" : opts . RepoID } )
}
if opts . Type != "" && opts . Type != "all" {
cond = cond . And ( builder . Eq { "package.type" : opts . Type } )
}
if opts . PackageID != 0 {
cond = cond . And ( builder . Eq { "package.id" : opts . PackageID } )
}
2022-04-06 03:32:09 +02:00
if opts . Name . Value != "" {
if opts . Name . ExactMatch {
cond = cond . And ( builder . Eq { "package.lower_name" : strings . ToLower ( opts . Name . Value ) } )
} else {
cond = cond . And ( builder . Like { "package.lower_name" , strings . ToLower ( opts . Name . Value ) } )
}
2022-03-30 10:42:47 +02:00
}
2022-04-06 03:32:09 +02:00
if opts . Version . Value != "" {
if opts . Version . ExactMatch {
cond = cond . And ( builder . Eq { "package_version.lower_version" : strings . ToLower ( opts . Version . Value ) } )
} else {
cond = cond . And ( builder . Like { "package_version.lower_version" , strings . ToLower ( opts . Version . Value ) } )
}
2022-03-30 10:42:47 +02:00
}
if len ( opts . Properties ) != 0 {
var propsCond builder . Cond = builder . Eq {
"package_property.ref_type" : PropertyTypeVersion ,
}
propsCond = propsCond . And ( builder . Expr ( "package_property.ref_id = package_version.id" ) )
propsCondBlock := builder . NewCond ( )
for name , value := range opts . Properties {
propsCondBlock = propsCondBlock . Or ( builder . Eq {
"package_property.name" : name ,
"package_property.value" : value ,
} )
}
propsCond = propsCond . And ( propsCondBlock )
cond = cond . And ( builder . Eq {
strconv . Itoa ( len ( opts . Properties ) ) : builder . Select ( "COUNT(*)" ) . Where ( propsCond ) . From ( "package_property" ) ,
} )
}
2022-04-06 03:32:09 +02:00
if opts . HasFileWithName != "" {
fileCond := builder . Expr ( "package_file.version_id = package_version.id" ) . And ( builder . Eq { "package_file.lower_name" : strings . ToLower ( opts . HasFileWithName ) } )
cond = cond . And ( builder . Exists ( builder . Select ( "package_file.id" ) . From ( "package_file" ) . Where ( fileCond ) ) )
}
2024-03-02 16:42:31 +01:00
if opts . HasFiles . Has ( ) {
2022-06-20 12:02:49 +02:00
filesCond := builder . Exists ( builder . Select ( "package_file.id" ) . From ( "package_file" ) . Where ( builder . Expr ( "package_file.version_id = package_version.id" ) ) )
2022-04-06 03:32:09 +02:00
2024-03-02 16:42:31 +01:00
if ! opts . HasFiles . Value ( ) {
2022-04-06 03:32:09 +02:00
filesCond = builder . Not { filesCond }
}
cond = cond . And ( filesCond )
}
2022-03-30 10:42:47 +02:00
return cond
}
func ( opts * PackageSearchOptions ) configureOrderBy ( e db . Engine ) {
switch opts . Sort {
2022-10-23 03:18:15 +02:00
case SortNameAsc :
2022-03-30 10:42:47 +02:00
e . Asc ( "package.name" )
2022-10-23 03:18:15 +02:00
case SortNameDesc :
2022-03-30 10:42:47 +02:00
e . Desc ( "package.name" )
2022-10-23 03:18:15 +02:00
case SortVersionDesc :
2022-03-30 10:42:47 +02:00
e . Desc ( "package_version.version" )
2022-10-23 03:18:15 +02:00
case SortVersionAsc :
2022-03-30 10:42:47 +02:00
e . Asc ( "package_version.version" )
2022-10-23 03:18:15 +02:00
case SortCreatedAsc :
2022-03-30 10:42:47 +02:00
e . Asc ( "package_version.created_unix" )
default :
e . Desc ( "package_version.created_unix" )
}
2023-10-29 15:14:47 +01:00
// Sort by id for stable order with duplicates in the other field
e . Asc ( "package_version.id" )
2022-03-30 10:42:47 +02:00
}
// SearchVersions gets all versions of packages matching the search options
func SearchVersions ( ctx context . Context , opts * PackageSearchOptions ) ( [ ] * PackageVersion , int64 , error ) {
sess := db . GetEngine ( ctx ) .
2023-08-14 04:50:55 +02:00
Where ( opts . ToConds ( ) ) .
2022-03-30 10:42:47 +02:00
Table ( "package_version" ) .
Join ( "INNER" , "package" , "package.id = package_version.package_id" )
opts . configureOrderBy ( sess )
if opts . Paginator != nil {
sess = db . SetSessionPagination ( sess , opts )
}
pvs := make ( [ ] * PackageVersion , 0 , 10 )
count , err := sess . FindAndCount ( & pvs )
return pvs , count , err
}
// SearchLatestVersions gets the latest version of every package matching the search options
func SearchLatestVersions ( ctx context . Context , opts * PackageSearchOptions ) ( [ ] * PackageVersion , int64 , error ) {
2023-08-14 04:50:55 +02:00
cond := opts . ToConds ( ) .
2022-03-30 10:42:47 +02:00
And ( builder . Expr ( "pv2.id IS NULL" ) )
2022-12-14 10:16:01 +01:00
joinCond := builder . Expr ( "package_version.package_id = pv2.package_id AND (package_version.created_unix < pv2.created_unix OR (package_version.created_unix = pv2.created_unix AND package_version.id < pv2.id))" )
2024-03-02 16:42:31 +01:00
if opts . IsInternal . Has ( ) {
joinCond = joinCond . And ( builder . Eq { "pv2.is_internal" : opts . IsInternal . Value ( ) } )
2022-12-14 10:16:01 +01:00
}
2022-03-30 10:42:47 +02:00
sess := db . GetEngine ( ctx ) .
Table ( "package_version" ) .
2022-12-14 10:16:01 +01:00
Join ( "LEFT" , "package_version pv2" , joinCond ) .
2022-03-30 10:42:47 +02:00
Join ( "INNER" , "package" , "package.id = package_version.package_id" ) .
Where ( cond )
opts . configureOrderBy ( sess )
if opts . Paginator != nil {
sess = db . SetSessionPagination ( sess , opts )
}
pvs := make ( [ ] * PackageVersion , 0 , 10 )
count , err := sess . FindAndCount ( & pvs )
return pvs , count , err
}
2022-11-09 07:34:27 +01:00
2022-11-20 15:08:38 +01:00
// ExistVersion checks if a version matching the search options exist
func ExistVersion ( ctx context . Context , opts * PackageSearchOptions ) ( bool , error ) {
return db . GetEngine ( ctx ) .
2023-08-14 04:50:55 +02:00
Where ( opts . ToConds ( ) ) .
2022-11-20 15:08:38 +01:00
Table ( "package_version" ) .
Join ( "INNER" , "package" , "package.id = package_version.package_id" ) .
Exist ( new ( PackageVersion ) )
}
2022-11-09 07:34:27 +01:00
// CountVersions counts all versions of packages matching the search options
func CountVersions ( ctx context . Context , opts * PackageSearchOptions ) ( int64 , error ) {
return db . GetEngine ( ctx ) .
2023-08-14 04:50:55 +02:00
Where ( opts . ToConds ( ) ) .
2022-11-09 07:34:27 +01:00
Table ( "package_version" ) .
Join ( "INNER" , "package" , "package.id = package_version.package_id" ) .
Count ( new ( PackageVersion ) )
}