c572fcfe04
Rename the Go module path from code.gitea.io/gitea to git.mokoconsulting.tech/MokoConsulting/MokoGitea across the entire codebase. Scope: - go.mod module declaration - 2,235 Go source files (import paths) - Dockerfile WORKDIR and COPY paths - Swagger API templates - golangci.yml linter config External dependencies (code.gitea.io/gitea-vet, code.gitea.io/sdk/gitea, gitea.com/gitea/act, etc.) are intentionally NOT renamed — they are separate upstream modules. Closes #132 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
63 lines
2.3 KiB
Go
63 lines
2.3 KiB
Go
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package structs
|
|
|
|
import (
|
|
"time"
|
|
|
|
"git.mokoconsulting.tech/MokoConsulting/MokoGitea/modules/commitstatus"
|
|
)
|
|
|
|
// CommitStatus holds a single status of a single Commit
|
|
type CommitStatus struct {
|
|
// ID is the unique identifier for the commit status
|
|
ID int64 `json:"id"`
|
|
// State represents the status state (pending, success, error, failure)
|
|
State commitstatus.CommitStatusState `json:"status"`
|
|
// TargetURL is the URL to link to for more details
|
|
TargetURL string `json:"target_url"`
|
|
// Description provides a brief description of the status
|
|
Description string `json:"description"`
|
|
// URL is the API URL for this status
|
|
URL string `json:"url"`
|
|
// Context is the unique context identifier for the status
|
|
Context string `json:"context"`
|
|
// Creator is the user who created the status
|
|
Creator *User `json:"creator"`
|
|
// swagger:strfmt date-time
|
|
Created time.Time `json:"created_at"`
|
|
// swagger:strfmt date-time
|
|
Updated time.Time `json:"updated_at"`
|
|
}
|
|
|
|
// CombinedStatus holds the combined state of several statuses for a single commit
|
|
type CombinedStatus struct {
|
|
// State is the overall combined status state
|
|
State commitstatus.CommitStatusState `json:"state"`
|
|
// SHA is the commit SHA this status applies to
|
|
SHA string `json:"sha"`
|
|
// TotalCount is the total number of statuses
|
|
TotalCount int `json:"total_count"`
|
|
// Statuses contains all individual commit statuses
|
|
Statuses []*CommitStatus `json:"statuses"`
|
|
// Repository is the repository this status belongs to
|
|
Repository *Repository `json:"repository"`
|
|
// CommitURL is the API URL for the commit
|
|
CommitURL string `json:"commit_url"`
|
|
// URL is the API URL for this combined status
|
|
URL string `json:"url"`
|
|
}
|
|
|
|
// CreateStatusOption holds the information needed to create a new CommitStatus for a Commit
|
|
type CreateStatusOption struct {
|
|
// State represents the status state to set (pending, success, error, failure)
|
|
State commitstatus.CommitStatusState `json:"state"`
|
|
// TargetURL is the URL to link to for more details
|
|
TargetURL string `json:"target_url"`
|
|
// Description provides a brief description of the status
|
|
Description string `json:"description"`
|
|
// Context is the unique context identifier for the status
|
|
Context string `json:"context"`
|
|
}
|