Files
Atay-Makhzan/modules/structs/issue.go
T

138 lines
3.9 KiB
Go
Raw Normal View History

2016-11-07 14:53:13 +01: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 18:21:34 +08:00
package structs
2016-11-07 14:53:13 +01:00
import (
2020-09-11 09:48:39 -05:00
"strings"
2016-11-07 14:53:13 +01:00
"time"
)
2016-11-29 09:09:17 +01:00
// StateType issue state type
2016-11-07 14:53:13 +01:00
type StateType string
const (
2016-11-29 09:09:17 +01:00
// StateOpen pr is opend
StateOpen StateType = "open"
// StateClosed pr is closed
StateClosed StateType = "closed"
// StateAll is all
StateAll StateType = "all"
2016-11-07 14:53:13 +01:00
)
2016-11-29 09:09:17 +01:00
// PullRequestMeta PR info if an issue is a PR
2016-11-07 14:53:13 +01:00
type PullRequestMeta struct {
HasMerged bool `json:"merged"`
Merged *time.Time `json:"merged_at"`
}
// RepositoryMeta basic repository information
type RepositoryMeta struct {
ID int64 `json:"id"`
Name string `json:"name"`
Owner string `json:"owner"`
FullName string `json:"full_name"`
}
2017-11-12 23:02:25 -08:00
// Issue represents an issue in a repository
// swagger:model
2016-11-07 14:53:13 +01:00
type Issue struct {
ID int64 `json:"id"`
URL string `json:"url"`
2020-01-08 17:10:34 -06:00
HTMLURL string `json:"html_url"`
Index int64 `json:"number"`
Poster *User `json:"user"`
OriginalAuthor string `json:"original_author"`
OriginalAuthorID int64 `json:"original_author_id"`
Title string `json:"title"`
Body string `json:"body"`
2020-12-13 11:34:11 +00:00
Ref string `json:"ref"`
Labels []*Label `json:"labels"`
Milestone *Milestone `json:"milestone"`
// deprecated
Assignee *User `json:"assignee"`
Assignees []*User `json:"assignees"`
2017-11-12 23:02:25 -08:00
// Whether the issue is open or closed
//
// type: string
// enum: open,closed
2018-03-06 02:22:16 +01:00
State StateType `json:"state"`
IsLocked bool `json:"is_locked"`
2018-03-06 02:22:16 +01:00
Comments int `json:"comments"`
2017-11-12 23:02:25 -08:00
// swagger:strfmt date-time
2018-03-06 02:22:16 +01:00
Created time.Time `json:"created_at"`
2017-11-12 23:02:25 -08:00
// swagger:strfmt date-time
2018-03-06 02:22:16 +01:00
Updated time.Time `json:"updated_at"`
2018-05-01 21:05:28 +02:00
// swagger:strfmt date-time
Closed *time.Time `json:"closed_at"`
// swagger:strfmt date-time
Deadline *time.Time `json:"due_date"`
2016-11-07 14:53:13 +01:00
PullRequest *PullRequestMeta `json:"pull_request"`
Repo *RepositoryMeta `json:"repository"`
2016-11-07 14:53:13 +01:00
}
2016-11-29 09:09:17 +01:00
// CreateIssueOption options to create one issue
2016-11-07 14:53:13 +01:00
type CreateIssueOption struct {
2017-11-12 23:02:25 -08:00
// required:true
2018-03-06 02:22:16 +01:00
Title string `json:"title" binding:"Required"`
Body string `json:"body"`
Ref string `json:"ref"`
// deprecated
2018-05-01 21:05:28 +02:00
Assignee string `json:"assignee"`
Assignees []string `json:"assignees"`
// swagger:strfmt date-time
Deadline *time.Time `json:"due_date"`
2017-11-12 23:02:25 -08:00
// milestone id
2018-03-06 02:22:16 +01:00
Milestone int64 `json:"milestone"`
2017-11-12 23:02:25 -08:00
// list of label ids
2018-03-06 02:22:16 +01:00
Labels []int64 `json:"labels"`
Closed bool `json:"closed"`
2016-11-07 14:53:13 +01:00
}
2017-11-12 23:02:25 -08:00
// EditIssueOption options for editing an issue
2016-11-07 14:53:13 +01:00
type EditIssueOption struct {
Title string `json:"title"`
Body *string `json:"body"`
Ref *string `json:"ref"`
// deprecated
Assignee *string `json:"assignee"`
Assignees []string `json:"assignees"`
Milestone *int64 `json:"milestone"`
State *string `json:"state"`
2018-05-01 21:05:28 +02:00
// swagger:strfmt date-time
2019-11-03 15:46:32 +01:00
Deadline *time.Time `json:"due_date"`
RemoveDeadline *bool `json:"unset_due_date"`
2016-11-07 14:53:13 +01:00
}
// EditDeadlineOption options for creating a deadline
type EditDeadlineOption struct {
// required:true
// swagger:strfmt date-time
Deadline *time.Time `json:"due_date"`
}
// IssueDeadline represents an issue deadline
// swagger:model
type IssueDeadline struct {
// swagger:strfmt date-time
Deadline *time.Time `json:"due_date"`
}
2020-09-11 09:48:39 -05:00
// IssueTemplate represents an issue template for a repository
// swagger:model
type IssueTemplate struct {
Name string `json:"name" yaml:"name"`
Title string `json:"title" yaml:"title"`
About string `json:"about" yaml:"about"`
Labels []string `json:"labels" yaml:"labels"`
Content string `json:"content" yaml:"-"`
FileName string `json:"file_name" yaml:"-"`
}
// Valid checks whether an IssueTemplate is considered valid, e.g. at least name and about
func (it IssueTemplate) Valid() bool {
return strings.TrimSpace(it.Name) != "" && strings.TrimSpace(it.About) != ""
}