2016-11-07 08:53:13 -05: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.
|
|
|
|
|
2019-05-11 06:21:34 -04:00
|
|
|
package structs
|
2016-11-07 08:53:13 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2017-11-13 02:02:25 -05:00
|
|
|
// PullRequest represents a pull request
|
2016-11-07 08:53:13 -05:00
|
|
|
type PullRequest struct {
|
|
|
|
ID int64 `json:"id"`
|
2017-02-22 18:53:33 -05:00
|
|
|
URL string `json:"url"`
|
2016-11-07 08:53:13 -05:00
|
|
|
Index int64 `json:"number"`
|
|
|
|
Poster *User `json:"user"`
|
|
|
|
Title string `json:"title"`
|
|
|
|
Body string `json:"body"`
|
|
|
|
Labels []*Label `json:"labels"`
|
|
|
|
Milestone *Milestone `json:"milestone"`
|
|
|
|
Assignee *User `json:"assignee"`
|
2018-05-01 15:05:28 -04:00
|
|
|
Assignees []*User `json:"assignees"`
|
2016-11-07 08:53:13 -05:00
|
|
|
State StateType `json:"state"`
|
|
|
|
Comments int `json:"comments"`
|
|
|
|
|
2016-11-29 03:09:17 -05:00
|
|
|
HTMLURL string `json:"html_url"`
|
|
|
|
DiffURL string `json:"diff_url"`
|
|
|
|
PatchURL string `json:"patch_url"`
|
2016-11-07 08:53:13 -05:00
|
|
|
|
2018-03-05 20:22:16 -05:00
|
|
|
Mergeable bool `json:"mergeable"`
|
|
|
|
HasMerged bool `json:"merged"`
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:strfmt date-time
|
2016-11-07 08:53:13 -05:00
|
|
|
Merged *time.Time `json:"merged_at"`
|
|
|
|
MergedCommitID *string `json:"merge_commit_sha"`
|
|
|
|
MergedBy *User `json:"merged_by"`
|
2016-11-29 03:09:17 -05:00
|
|
|
|
|
|
|
Base *PRBranchInfo `json:"base"`
|
|
|
|
Head *PRBranchInfo `json:"head"`
|
|
|
|
MergeBase string `json:"merge_base"`
|
2017-04-27 05:29:46 -04:00
|
|
|
|
2018-05-01 15:05:28 -04:00
|
|
|
// swagger:strfmt date-time
|
|
|
|
Deadline *time.Time `json:"due_date"`
|
|
|
|
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:strfmt date-time
|
2017-04-27 05:29:46 -04:00
|
|
|
Created *time.Time `json:"created_at"`
|
2017-11-13 02:02:25 -05:00
|
|
|
// swagger:strfmt date-time
|
2017-04-27 05:29:46 -04:00
|
|
|
Updated *time.Time `json:"updated_at"`
|
2018-05-01 15:05:28 -04:00
|
|
|
// swagger:strfmt date-time
|
|
|
|
Closed *time.Time `json:"closed_at"`
|
2016-11-29 03:09:17 -05:00
|
|
|
}
|
|
|
|
|
2017-11-13 02:02:25 -05:00
|
|
|
// PRBranchInfo information about a branch
|
2016-11-29 03:09:17 -05:00
|
|
|
type PRBranchInfo struct {
|
|
|
|
Name string `json:"label"`
|
|
|
|
Ref string `json:"ref"`
|
|
|
|
Sha string `json:"sha"`
|
|
|
|
RepoID int64 `json:"repo_id"`
|
|
|
|
Repository *Repository `json:"repo"`
|
|
|
|
}
|
|
|
|
|
2017-11-13 02:02:25 -05:00
|
|
|
// ListPullRequestsOptions options for listing pull requests
|
2016-11-29 03:09:17 -05:00
|
|
|
type ListPullRequestsOptions struct {
|
|
|
|
Page int `json:"page"`
|
|
|
|
State string `json:"state"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreatePullRequestOption options when creating a pull request
|
|
|
|
type CreatePullRequestOption struct {
|
2018-05-16 10:01:55 -04:00
|
|
|
Head string `json:"head" binding:"Required"`
|
|
|
|
Base string `json:"base" binding:"Required"`
|
|
|
|
Title string `json:"title" binding:"Required"`
|
|
|
|
Body string `json:"body"`
|
|
|
|
Assignee string `json:"assignee"`
|
|
|
|
Assignees []string `json:"assignees"`
|
|
|
|
Milestone int64 `json:"milestone"`
|
|
|
|
Labels []int64 `json:"labels"`
|
2018-05-01 15:05:28 -04:00
|
|
|
// swagger:strfmt date-time
|
2018-05-16 10:01:55 -04:00
|
|
|
Deadline *time.Time `json:"due_date"`
|
2016-11-29 03:09:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// EditPullRequestOption options when modify pull request
|
|
|
|
type EditPullRequestOption struct {
|
2018-05-16 10:01:55 -04:00
|
|
|
Title string `json:"title"`
|
|
|
|
Body string `json:"body"`
|
|
|
|
Assignee string `json:"assignee"`
|
|
|
|
Assignees []string `json:"assignees"`
|
|
|
|
Milestone int64 `json:"milestone"`
|
|
|
|
Labels []int64 `json:"labels"`
|
|
|
|
State *string `json:"state"`
|
2018-05-01 15:05:28 -04:00
|
|
|
// swagger:strfmt date-time
|
2019-11-03 09:46:32 -05:00
|
|
|
Deadline *time.Time `json:"due_date"`
|
|
|
|
RemoveDeadline *bool `json:"unset_due_date"`
|
2016-11-29 03:09:17 -05:00
|
|
|
}
|