2020-08-17 05:07:38 +02:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2022-11-27 19:20:29 +01:00
// SPDX-License-Identifier: MIT
2020-08-17 05:07:38 +02:00
2022-03-29 16:16:31 +02:00
package project
2020-08-17 05:07:38 +02:00
import (
2022-03-29 16:16:31 +02:00
"context"
2020-08-17 05:07:38 +02:00
"fmt"
2021-09-19 13:49:59 +02:00
"code.gitea.io/gitea/models/db"
2023-01-20 12:42:33 +01:00
repo_model "code.gitea.io/gitea/models/repo"
user_model "code.gitea.io/gitea/models/user"
"code.gitea.io/gitea/modules/log"
2020-08-17 05:07:38 +02:00
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/timeutil"
"code.gitea.io/gitea/modules/util"
"xorm.io/builder"
)
type (
2023-02-11 09:12:41 +01:00
// BoardConfig is used to identify the type of board that is being created
BoardConfig struct {
2022-03-29 16:16:31 +02:00
BoardType BoardType
2020-08-17 05:07:38 +02:00
Translation string
}
2023-02-11 09:12:41 +01:00
// CardConfig is used to identify the type of board card that is being used
CardConfig struct {
CardType CardType
Translation string
}
2022-03-29 16:16:31 +02:00
// Type is used to identify the type of project in question and ownership
Type uint8
2020-08-17 05:07:38 +02:00
)
const (
2022-03-29 16:16:31 +02:00
// TypeIndividual is a type of project board that is owned by an individual
TypeIndividual Type = iota + 1
2020-08-17 05:07:38 +02:00
2022-03-29 16:16:31 +02:00
// TypeRepository is a project that is tied to a repository
TypeRepository
2020-08-17 05:07:38 +02:00
2022-03-29 16:16:31 +02:00
// TypeOrganization is a project that is tied to an organisation
TypeOrganization
2020-08-17 05:07:38 +02:00
)
2022-03-29 16:16:31 +02:00
// ErrProjectNotExist represents a "ProjectNotExist" kind of error.
type ErrProjectNotExist struct {
ID int64
RepoID int64
}
// IsErrProjectNotExist checks if an error is a ErrProjectNotExist
func IsErrProjectNotExist ( err error ) bool {
_ , ok := err . ( ErrProjectNotExist )
return ok
}
func ( err ErrProjectNotExist ) Error ( ) string {
return fmt . Sprintf ( "projects does not exist [id: %d]" , err . ID )
}
2022-10-18 07:50:37 +02:00
func ( err ErrProjectNotExist ) Unwrap ( ) error {
return util . ErrNotExist
}
2022-03-29 16:16:31 +02:00
// ErrProjectBoardNotExist represents a "ProjectBoardNotExist" kind of error.
type ErrProjectBoardNotExist struct {
BoardID int64
}
// IsErrProjectBoardNotExist checks if an error is a ErrProjectBoardNotExist
func IsErrProjectBoardNotExist ( err error ) bool {
_ , ok := err . ( ErrProjectBoardNotExist )
return ok
}
func ( err ErrProjectBoardNotExist ) Error ( ) string {
return fmt . Sprintf ( "project board does not exist [id: %d]" , err . BoardID )
}
2022-10-18 07:50:37 +02:00
func ( err ErrProjectBoardNotExist ) Unwrap ( ) error {
return util . ErrNotExist
}
2020-08-17 05:07:38 +02:00
// Project represents a project board
type Project struct {
2023-01-20 12:42:33 +01:00
ID int64 ` xorm:"pk autoincr" `
Title string ` xorm:"INDEX NOT NULL" `
Description string ` xorm:"TEXT" `
OwnerID int64 ` xorm:"INDEX" `
Owner * user_model . User ` xorm:"-" `
RepoID int64 ` xorm:"INDEX" `
Repo * repo_model . Repository ` xorm:"-" `
CreatorID int64 ` xorm:"NOT NULL" `
IsClosed bool ` xorm:"INDEX" `
2022-03-29 16:16:31 +02:00
BoardType BoardType
2023-02-11 09:12:41 +01:00
CardType CardType
2022-03-29 16:16:31 +02:00
Type Type
2020-08-17 05:07:38 +02:00
RenderedContent string ` xorm:"-" `
CreatedUnix timeutil . TimeStamp ` xorm:"INDEX created" `
UpdatedUnix timeutil . TimeStamp ` xorm:"INDEX updated" `
ClosedDateUnix timeutil . TimeStamp
}
2023-01-20 12:42:33 +01:00
func ( p * Project ) LoadOwner ( ctx context . Context ) ( err error ) {
if p . Owner != nil {
return nil
}
p . Owner , err = user_model . GetUserByID ( ctx , p . OwnerID )
return err
}
func ( p * Project ) LoadRepo ( ctx context . Context ) ( err error ) {
if p . RepoID == 0 || p . Repo != nil {
return nil
}
p . Repo , err = repo_model . GetRepositoryByID ( ctx , p . RepoID )
return err
}
2023-02-06 19:09:18 +01:00
// Link returns the project's relative URL.
2023-01-20 12:42:33 +01:00
func ( p * Project ) Link ( ) string {
if p . OwnerID > 0 {
err := p . LoadOwner ( db . DefaultContext )
if err != nil {
log . Error ( "LoadOwner: %v" , err )
return ""
}
2023-01-23 22:51:18 +01:00
return fmt . Sprintf ( "%s/-/projects/%d" , p . Owner . HomeLink ( ) , p . ID )
2023-01-20 12:42:33 +01:00
}
if p . RepoID > 0 {
err := p . LoadRepo ( db . DefaultContext )
if err != nil {
log . Error ( "LoadRepo: %v" , err )
return ""
}
2023-01-23 22:51:18 +01:00
return fmt . Sprintf ( "%s/projects/%d" , p . Repo . Link ( ) , p . ID )
2023-01-20 12:42:33 +01:00
}
return ""
}
2023-03-19 13:44:48 +01:00
func ( p * Project ) IconName ( ) string {
if p . IsRepositoryProject ( ) {
return "octicon-project"
}
return "octicon-project-symlink"
}
2023-01-20 12:42:33 +01:00
func ( p * Project ) IsOrganizationProject ( ) bool {
return p . Type == TypeOrganization
}
2023-03-19 13:44:48 +01:00
func ( p * Project ) IsRepositoryProject ( ) bool {
return p . Type == TypeRepository
}
2021-09-19 13:49:59 +02:00
func init ( ) {
db . RegisterModel ( new ( Project ) )
}
2023-02-11 09:12:41 +01:00
// GetBoardConfig retrieves the types of configurations project boards could have
func GetBoardConfig ( ) [ ] BoardConfig {
return [ ] BoardConfig {
2022-03-29 16:16:31 +02:00
{ BoardTypeNone , "repo.projects.type.none" } ,
{ BoardTypeBasicKanban , "repo.projects.type.basic_kanban" } ,
{ BoardTypeBugTriage , "repo.projects.type.bug_triage" } ,
2020-08-17 05:07:38 +02:00
}
}
2023-02-11 09:12:41 +01:00
// GetCardConfig retrieves the types of configurations project board cards could have
func GetCardConfig ( ) [ ] CardConfig {
return [ ] CardConfig {
{ CardTypeTextOnly , "repo.projects.card_type.text_only" } ,
{ CardTypeImagesAndText , "repo.projects.card_type.images_and_text" } ,
}
}
2022-03-29 16:16:31 +02:00
// IsTypeValid checks if a project type is valid
func IsTypeValid ( p Type ) bool {
2020-08-17 05:07:38 +02:00
switch p {
2023-03-17 14:07:23 +01:00
case TypeIndividual , TypeRepository , TypeOrganization :
2020-08-17 05:07:38 +02:00
return true
default :
return false
}
}
2022-03-29 16:16:31 +02:00
// SearchOptions are options for GetProjects
type SearchOptions struct {
2023-01-20 12:42:33 +01:00
OwnerID int64
2020-08-17 05:07:38 +02:00
RepoID int64
Page int
IsClosed util . OptionalBool
2023-07-12 07:22:17 +02:00
OrderBy db . SearchOrderBy
2022-03-29 16:16:31 +02:00
Type Type
2020-08-17 05:07:38 +02:00
}
2023-01-20 12:42:33 +01:00
func ( opts * SearchOptions ) toConds ( ) builder . Cond {
cond := builder . NewCond ( )
if opts . RepoID > 0 {
cond = cond . And ( builder . Eq { "repo_id" : opts . RepoID } )
}
2020-08-17 05:07:38 +02:00
switch opts . IsClosed {
case util . OptionalBoolTrue :
cond = cond . And ( builder . Eq { "is_closed" : true } )
case util . OptionalBoolFalse :
cond = cond . And ( builder . Eq { "is_closed" : false } )
}
if opts . Type > 0 {
cond = cond . And ( builder . Eq { "type" : opts . Type } )
}
2023-01-20 12:42:33 +01:00
if opts . OwnerID > 0 {
cond = cond . And ( builder . Eq { "owner_id" : opts . OwnerID } )
}
return cond
}
// CountProjects counts projects
func CountProjects ( ctx context . Context , opts SearchOptions ) ( int64 , error ) {
return db . GetEngine ( ctx ) . Where ( opts . toConds ( ) ) . Count ( new ( Project ) )
}
2023-07-12 07:22:17 +02:00
func GetSearchOrderByBySortType ( sortType string ) db . SearchOrderBy {
switch sortType {
case "oldest" :
return db . SearchOrderByOldest
case "recentupdate" :
return db . SearchOrderByRecentUpdated
case "leastupdate" :
return db . SearchOrderByLeastUpdated
default :
return db . SearchOrderByNewest
}
}
2023-01-20 12:42:33 +01:00
// FindProjects returns a list of all projects that have been created in the repository
func FindProjects ( ctx context . Context , opts SearchOptions ) ( [ ] * Project , int64 , error ) {
2023-07-12 07:22:17 +02:00
e := db . GetEngine ( ctx ) . Where ( opts . toConds ( ) ) . OrderBy ( opts . OrderBy . String ( ) )
2023-01-20 12:42:33 +01:00
projects := make ( [ ] * Project , 0 , setting . UI . IssuePagingNum )
2020-08-17 05:07:38 +02:00
if opts . Page > 0 {
e = e . Limit ( setting . UI . IssuePagingNum , ( opts . Page - 1 ) * setting . UI . IssuePagingNum )
}
2023-02-24 06:18:52 +01:00
count , err := e . FindAndCount ( & projects )
return projects , count , err
2020-08-17 05:07:38 +02:00
}
// NewProject creates a new Project
func NewProject ( p * Project ) error {
2022-03-29 16:16:31 +02:00
if ! IsBoardTypeValid ( p . BoardType ) {
p . BoardType = BoardTypeNone
2020-08-17 05:07:38 +02:00
}
2023-02-11 09:12:41 +01:00
if ! IsCardTypeValid ( p . CardType ) {
p . CardType = CardTypeTextOnly
}
2022-03-29 16:16:31 +02:00
if ! IsTypeValid ( p . Type ) {
2022-12-31 12:49:37 +01:00
return util . NewInvalidArgumentErrorf ( "project type is not valid" )
2020-08-17 05:07:38 +02:00
}
2022-11-12 21:18:50 +01:00
ctx , committer , err := db . TxContext ( db . DefaultContext )
2021-11-21 16:41:00 +01:00
if err != nil {
2020-08-17 05:07:38 +02:00
return err
}
2021-11-21 16:41:00 +01:00
defer committer . Close ( )
2020-08-17 05:07:38 +02:00
2021-11-21 16:41:00 +01:00
if err := db . Insert ( ctx , p ) ; err != nil {
2020-08-17 05:07:38 +02:00
return err
}
2023-01-20 12:42:33 +01:00
if p . RepoID > 0 {
if _ , err := db . Exec ( ctx , "UPDATE `repository` SET num_projects = num_projects + 1 WHERE id = ?" , p . RepoID ) ; err != nil {
return err
}
2020-08-17 05:07:38 +02:00
}
2022-03-29 16:16:31 +02:00
if err := createBoardsForProjectsType ( ctx , p ) ; err != nil {
2020-08-17 05:07:38 +02:00
return err
}
2021-11-21 16:41:00 +01:00
return committer . Commit ( )
2020-08-17 05:07:38 +02:00
}
// GetProjectByID returns the projects in a repository
2022-05-20 16:08:52 +02:00
func GetProjectByID ( ctx context . Context , id int64 ) ( * Project , error ) {
2020-08-17 05:07:38 +02:00
p := new ( Project )
2022-05-20 16:08:52 +02:00
has , err := db . GetEngine ( ctx ) . ID ( id ) . Get ( p )
2020-08-17 05:07:38 +02:00
if err != nil {
return nil , err
} else if ! has {
return nil , ErrProjectNotExist { ID : id }
}
return p , nil
}
// UpdateProject updates project properties
2022-05-20 16:08:52 +02:00
func UpdateProject ( ctx context . Context , p * Project ) error {
2023-02-11 09:12:41 +01:00
if ! IsCardTypeValid ( p . CardType ) {
p . CardType = CardTypeTextOnly
}
2022-05-20 16:08:52 +02:00
_ , err := db . GetEngine ( ctx ) . ID ( p . ID ) . Cols (
2020-08-17 05:07:38 +02:00
"title" ,
"description" ,
2023-02-11 09:12:41 +01:00
"card_type" ,
2020-08-17 05:07:38 +02:00
) . Update ( p )
return err
}
2022-05-20 16:08:52 +02:00
func updateRepositoryProjectCount ( ctx context . Context , repoID int64 ) error {
if _ , err := db . GetEngine ( ctx ) . Exec ( builder . Update (
2020-08-17 05:07:38 +02:00
builder . Eq {
"`num_projects`" : builder . Select ( "count(*)" ) . From ( "`project`" ) .
Where ( builder . Eq { "`project`.`repo_id`" : repoID } .
2022-03-29 16:16:31 +02:00
And ( builder . Eq { "`project`.`type`" : TypeRepository } ) ) ,
2020-08-17 05:07:38 +02:00
} ) . From ( "`repository`" ) . Where ( builder . Eq { "id" : repoID } ) ) ; err != nil {
return err
}
2022-05-20 16:08:52 +02:00
if _ , err := db . GetEngine ( ctx ) . Exec ( builder . Update (
2020-08-17 05:07:38 +02:00
builder . Eq {
"`num_closed_projects`" : builder . Select ( "count(*)" ) . From ( "`project`" ) .
Where ( builder . Eq { "`project`.`repo_id`" : repoID } .
2022-03-29 16:16:31 +02:00
And ( builder . Eq { "`project`.`type`" : TypeRepository } ) .
2020-08-17 05:07:38 +02:00
And ( builder . Eq { "`project`.`is_closed`" : true } ) ) ,
} ) . From ( "`repository`" ) . Where ( builder . Eq { "id" : repoID } ) ) ; err != nil {
return err
}
return nil
}
// ChangeProjectStatusByRepoIDAndID toggles a project between opened and closed
func ChangeProjectStatusByRepoIDAndID ( repoID , projectID int64 , isClosed bool ) error {
2022-11-12 21:18:50 +01:00
ctx , committer , err := db . TxContext ( db . DefaultContext )
2021-11-21 16:41:00 +01:00
if err != nil {
2020-08-17 05:07:38 +02:00
return err
}
2021-11-21 16:41:00 +01:00
defer committer . Close ( )
2020-08-17 05:07:38 +02:00
p := new ( Project )
2022-03-29 16:16:31 +02:00
has , err := db . GetEngine ( ctx ) . ID ( projectID ) . Where ( "repo_id = ?" , repoID ) . Get ( p )
2020-08-17 05:07:38 +02:00
if err != nil {
return err
} else if ! has {
return ErrProjectNotExist { ID : projectID , RepoID : repoID }
}
2022-03-29 16:16:31 +02:00
if err := changeProjectStatus ( ctx , p , isClosed ) ; err != nil {
2020-08-17 05:07:38 +02:00
return err
}
2021-11-21 16:41:00 +01:00
return committer . Commit ( )
2020-08-17 05:07:38 +02:00
}
// ChangeProjectStatus toggle a project between opened and closed
func ChangeProjectStatus ( p * Project , isClosed bool ) error {
2022-11-12 21:18:50 +01:00
ctx , committer , err := db . TxContext ( db . DefaultContext )
2021-11-21 16:41:00 +01:00
if err != nil {
2020-08-17 05:07:38 +02:00
return err
}
2021-11-21 16:41:00 +01:00
defer committer . Close ( )
2020-08-17 05:07:38 +02:00
2022-03-29 16:16:31 +02:00
if err := changeProjectStatus ( ctx , p , isClosed ) ; err != nil {
2020-08-17 05:07:38 +02:00
return err
}
2021-11-21 16:41:00 +01:00
return committer . Commit ( )
2020-08-17 05:07:38 +02:00
}
2022-03-29 16:16:31 +02:00
func changeProjectStatus ( ctx context . Context , p * Project , isClosed bool ) error {
2020-08-17 05:07:38 +02:00
p . IsClosed = isClosed
p . ClosedDateUnix = timeutil . TimeStampNow ( )
2022-05-20 16:08:52 +02:00
count , err := db . GetEngine ( ctx ) . ID ( p . ID ) . Where ( "repo_id = ? AND is_closed = ?" , p . RepoID , ! isClosed ) . Cols ( "is_closed" , "closed_date_unix" ) . Update ( p )
2020-08-17 05:07:38 +02:00
if err != nil {
return err
}
if count < 1 {
return nil
}
2022-05-20 16:08:52 +02:00
return updateRepositoryProjectCount ( ctx , p . RepoID )
2020-08-17 05:07:38 +02:00
}
2022-12-10 03:46:31 +01:00
// DeleteProjectByID deletes a project from a repository. if it's not in a database
// transaction, it will start a new database transaction
func DeleteProjectByID ( ctx context . Context , id int64 ) error {
2023-01-08 02:34:58 +01:00
return db . WithTx ( ctx , func ( ctx context . Context ) error {
2022-12-10 03:46:31 +01:00
p , err := GetProjectByID ( ctx , id )
if err != nil {
if IsErrProjectNotExist ( err ) {
return nil
}
return err
2020-08-17 05:07:38 +02:00
}
2022-12-10 03:46:31 +01:00
if err := deleteProjectIssuesByProjectID ( ctx , id ) ; err != nil {
return err
}
2020-08-17 05:07:38 +02:00
2022-12-10 03:46:31 +01:00
if err := deleteBoardByProjectID ( ctx , id ) ; err != nil {
return err
}
2020-08-17 05:07:38 +02:00
2022-12-10 03:46:31 +01:00
if _ , err = db . GetEngine ( ctx ) . ID ( p . ID ) . Delete ( new ( Project ) ) ; err != nil {
return err
}
2020-08-17 05:07:38 +02:00
2022-12-10 03:46:31 +01:00
return updateRepositoryProjectCount ( ctx , p . RepoID )
} )
2020-08-17 05:07:38 +02:00
}
2022-07-14 09:22:09 +02:00
2022-12-03 03:48:26 +01:00
func DeleteProjectByRepoID ( ctx context . Context , repoID int64 ) error {
2022-07-14 09:22:09 +02:00
switch {
2023-03-07 11:51:06 +01:00
case setting . Database . Type . IsSQLite3 ( ) :
2022-07-14 09:22:09 +02:00
if _ , err := db . GetEngine ( ctx ) . Exec ( "DELETE FROM project_issue WHERE project_issue.id IN (SELECT project_issue.id FROM project_issue INNER JOIN project WHERE project.id = project_issue.project_id AND project.repo_id = ?)" , repoID ) ; err != nil {
return err
}
if _ , err := db . GetEngine ( ctx ) . Exec ( "DELETE FROM project_board WHERE project_board.id IN (SELECT project_board.id FROM project_board INNER JOIN project WHERE project.id = project_board.project_id AND project.repo_id = ?)" , repoID ) ; err != nil {
return err
}
if _ , err := db . GetEngine ( ctx ) . Table ( "project" ) . Where ( "repo_id = ? " , repoID ) . Delete ( & Project { } ) ; err != nil {
return err
}
2023-03-07 11:51:06 +01:00
case setting . Database . Type . IsPostgreSQL ( ) :
2022-07-14 09:22:09 +02:00
if _ , err := db . GetEngine ( ctx ) . Exec ( "DELETE FROM project_issue USING project WHERE project.id = project_issue.project_id AND project.repo_id = ? " , repoID ) ; err != nil {
return err
}
if _ , err := db . GetEngine ( ctx ) . Exec ( "DELETE FROM project_board USING project WHERE project.id = project_board.project_id AND project.repo_id = ? " , repoID ) ; err != nil {
return err
}
if _ , err := db . GetEngine ( ctx ) . Table ( "project" ) . Where ( "repo_id = ? " , repoID ) . Delete ( & Project { } ) ; err != nil {
return err
}
default :
if _ , err := db . GetEngine ( ctx ) . Exec ( "DELETE project_issue FROM project_issue INNER JOIN project ON project.id = project_issue.project_id WHERE project.repo_id = ? " , repoID ) ; err != nil {
return err
}
if _ , err := db . GetEngine ( ctx ) . Exec ( "DELETE project_board FROM project_board INNER JOIN project ON project.id = project_board.project_id WHERE project.repo_id = ? " , repoID ) ; err != nil {
return err
}
if _ , err := db . GetEngine ( ctx ) . Table ( "project" ) . Where ( "repo_id = ? " , repoID ) . Delete ( & Project { } ) ; err != nil {
return err
}
}
return updateRepositoryProjectCount ( ctx , repoID )
}