2016-08-25 01:18:56 +03:00
// Copyright 2016 The Gogs 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 repo
import (
2016-08-25 02:05:56 +03:00
"time"
2016-11-11 12:39:44 +03:00
api "code.gitea.io/sdk/gitea"
2016-08-25 01:18:56 +03:00
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/models"
"code.gitea.io/gitea/modules/context"
2016-08-25 01:18:56 +03:00
)
2016-11-24 10:04:31 +03:00
// ListMilestones list all the milestones for a repository
2016-08-25 01:18:56 +03:00
func ListMilestones ( ctx * context . APIContext ) {
2016-08-25 02:05:56 +03:00
milestones , err := models . GetMilestonesByRepoID ( ctx . Repo . Repository . ID )
2016-08-25 01:18:56 +03:00
if err != nil {
2016-08-25 02:05:56 +03:00
ctx . Error ( 500 , "GetMilestonesByRepoID" , err )
2016-08-25 01:18:56 +03:00
return
}
apiMilestones := make ( [ ] * api . Milestone , len ( milestones ) )
for i := range milestones {
2016-08-25 02:05:56 +03:00
apiMilestones [ i ] = milestones [ i ] . APIFormat ( )
2016-08-25 01:18:56 +03:00
}
ctx . JSON ( 200 , & apiMilestones )
}
2016-11-24 10:04:31 +03:00
// GetMilestone get a milestone for a repository
2016-08-25 01:18:56 +03:00
func GetMilestone ( ctx * context . APIContext ) {
2016-08-25 02:05:56 +03:00
milestone , err := models . GetMilestoneByRepoID ( ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":id" ) )
2016-08-25 01:18:56 +03:00
if err != nil {
if models . IsErrMilestoneNotExist ( err ) {
ctx . Status ( 404 )
} else {
2016-08-25 02:05:56 +03:00
ctx . Error ( 500 , "GetMilestoneByRepoID" , err )
2016-08-25 01:18:56 +03:00
}
return
}
2016-08-25 02:05:56 +03:00
ctx . JSON ( 200 , milestone . APIFormat ( ) )
2016-08-25 01:18:56 +03:00
}
2016-11-24 10:04:31 +03:00
// CreateMilestone create a milestone for a repository
2016-08-25 01:18:56 +03:00
func CreateMilestone ( ctx * context . APIContext , form api . CreateMilestoneOption ) {
if form . Deadline == nil {
defaultDeadline , _ := time . ParseInLocation ( "2006-01-02" , "9999-12-31" , time . Local )
form . Deadline = & defaultDeadline
}
milestone := & models . Milestone {
RepoID : ctx . Repo . Repository . ID ,
Name : form . Title ,
Content : form . Description ,
Deadline : * form . Deadline ,
}
if err := models . NewMilestone ( milestone ) ; err != nil {
ctx . Error ( 500 , "NewMilestone" , err )
return
}
2016-08-25 02:05:56 +03:00
ctx . JSON ( 201 , milestone . APIFormat ( ) )
2016-08-25 01:18:56 +03:00
}
2016-11-24 10:04:31 +03:00
// EditMilestone modify a milestone for a repository
2016-08-25 01:18:56 +03:00
func EditMilestone ( ctx * context . APIContext , form api . EditMilestoneOption ) {
2016-08-25 02:05:56 +03:00
milestone , err := models . GetMilestoneByRepoID ( ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":id" ) )
2016-08-25 01:18:56 +03:00
if err != nil {
if models . IsErrMilestoneNotExist ( err ) {
ctx . Status ( 404 )
} else {
2016-08-25 02:05:56 +03:00
ctx . Error ( 500 , "GetMilestoneByRepoID" , err )
2016-08-25 01:18:56 +03:00
}
return
}
if len ( form . Title ) > 0 {
milestone . Name = form . Title
}
2016-08-25 02:05:56 +03:00
if form . Description != nil {
milestone . Content = * form . Description
2016-08-25 01:18:56 +03:00
}
2016-08-25 02:05:56 +03:00
if form . Deadline != nil && ! form . Deadline . IsZero ( ) {
2016-08-25 01:18:56 +03:00
milestone . Deadline = * form . Deadline
}
2016-08-25 02:05:56 +03:00
2016-08-25 01:18:56 +03:00
if err := models . UpdateMilestone ( milestone ) ; err != nil {
ctx . Handle ( 500 , "UpdateMilestone" , err )
return
}
2016-08-25 02:05:56 +03:00
ctx . JSON ( 200 , milestone . APIFormat ( ) )
2016-08-25 01:18:56 +03:00
}
2016-11-24 10:04:31 +03:00
// DeleteMilestone delete a milestone for a repository
2016-08-25 01:18:56 +03:00
func DeleteMilestone ( ctx * context . APIContext ) {
2016-08-25 02:05:56 +03:00
if err := models . DeleteMilestoneByRepoID ( ctx . Repo . Repository . ID , ctx . ParamsInt64 ( ":id" ) ) ; err != nil {
ctx . Error ( 500 , "DeleteMilestoneByRepoID" , err )
2016-08-25 01:18:56 +03:00
return
}
ctx . Status ( 204 )
}