Documentation ¶
Index ¶
- Variables
- func All() []any
- type Application
- type ApplicationTag
- type Bucket
- type BucketOwner
- type BusinessService
- type Dependency
- type DependencyCyclicError
- type Fact
- type File
- type Identity
- type Import
- type ImportSummary
- type ImportTag
- type IssueType
- type JSON
- type JobFunction
- type Map
- type Metadata
- type Model
- type Project
- type Proxy
- type Review
- type RuleBundle
- type RuleSet
- type Setting
- type Stakeholder
- type StakeholderGroup
- type TTL
- type Tag
- type TagCategory
- type Task
- type TaskGroup
- type TaskReport
- type Ticket
- type Tracker
Constants ¶
This section is empty.
Variables ¶
View Source
var (
Settings = &settings.Settings
)
Functions ¶
Types ¶
type Application ¶
type Application struct { Model BucketOwner Name string `gorm:"index;unique;not null"` Description string Review *Review `gorm:"constraint:OnDelete:CASCADE"` Repository JSON `gorm:"type:json"` Binary string Facts []Fact `gorm:"constraint:OnDelete:CASCADE"` Comments string Tasks []Task `gorm:"constraint:OnDelete:CASCADE"` Tags []Tag `gorm:"many2many:ApplicationTags"` Identities []Identity `gorm:"many2many:ApplicationIdentity;constraint:OnDelete:CASCADE"` BusinessServiceID *uint `gorm:"index"` BusinessService *BusinessService }
type ApplicationTag ¶ added in v0.1.0
type ApplicationTag struct { ApplicationID uint `gorm:"primaryKey"` TagID uint `gorm:"primaryKey"` Source string `gorm:"primaryKey;not null"` Application Application `gorm:"constraint:OnDelete:CASCADE"` Tag Tag `gorm:"constraint:OnDelete:CASCADE"` }
ApplicationTag represents a row in the join table for the many-to-many relationship between Applications and Tags.
func (ApplicationTag) TableName ¶ added in v0.1.0
func (ApplicationTag) TableName() string
TableName must return "ApplicationTags" to ensure compatibility with the autogenerated join table name.
type BucketOwner ¶
func (*BucketOwner) BeforeCreate ¶
func (m *BucketOwner) BeforeCreate(db *gorm.DB) (err error)
func (*BucketOwner) HasBucket ¶ added in v0.1.0
func (m *BucketOwner) HasBucket() (b bool)
func (*BucketOwner) SetBucket ¶ added in v0.1.0
func (m *BucketOwner) SetBucket(id *uint)
type BusinessService ¶
type BusinessService struct { Model Name string `gorm:"index;unique;not null"` Description string Applications []Application `gorm:"constraint:OnDelete:SET NULL"` StakeholderID *uint `gorm:"index"` Stakeholder *Stakeholder }
type Dependency ¶
type Dependency struct { Model ToID uint `gorm:"index"` To *Application `gorm:"foreignKey:ToID;constraint:OnDelete:CASCADE"` FromID uint `gorm:"index"` From *Application `gorm:"foreignKey:FromID;constraint:OnDelete:CASCADE"` }
func (*Dependency) BeforeCreate ¶
func (r *Dependency) BeforeCreate(db *gorm.DB) (err error)
Validation Hook to avoid cyclic dependencies.
type DependencyCyclicError ¶
type DependencyCyclicError struct{}
Custom error type to allow API recognize Cyclic Dependency error and assign proper status code.
func (DependencyCyclicError) Error ¶
func (err DependencyCyclicError) Error() string
type Fact ¶ added in v0.1.0
type Fact struct { ApplicationID uint `gorm:"<-:create;primaryKey"` Key string `gorm:"<-:create;primaryKey"` Value JSON `gorm:"type:json;not null"` Application *Application }
type File ¶ added in v0.1.0
type Identity ¶
type Identity struct { Model Kind string `gorm:"not null"` Name string `gorm:"not null"` Description string User string Password string Key string Settings string Proxies []Proxy `gorm:"constraint:OnDelete:SET NULL"` }
Identity represents and identity with a set of credentials.
type Import ¶
type Import struct { Model Filename string ApplicationName string BusinessService string Comments string Dependency string DependencyDirection string Description string ErrorMessage string IsValid bool RecordType1 string ImportSummary ImportSummary ImportSummaryID uint `gorm:"index"` Processed bool ImportTags []ImportTag `gorm:"constraint:OnDelete:CASCADE"` BinaryGroup string BinaryArtifact string BinaryVersion string BinaryPackaging string RepositoryKind string RepositoryURL string RepositoryBranch string RepositoryPath string }
type ImportSummary ¶
type JobFunction ¶
type JobFunction struct { Model Username string Name string `gorm:"index;unique;not null"` Stakeholders []Stakeholder `gorm:"constraint:OnDelete:SET NULL"` }
type Model ¶
type Model struct { ID uint `gorm:"<-:create;primaryKey"` CreateTime time.Time `gorm:"<-:create;autoCreateTime"` CreateUser string `gorm:"<-:create"` UpdateUser string }
Model Base model.
type Proxy ¶
type Proxy struct { Model Enabled bool Kind string `gorm:"uniqueIndex"` Host string `gorm:"not null"` Port int Excluded JSON `gorm:"type:json"` IdentityID *uint `gorm:"index"` Identity *Identity }
Proxy configuration. kind = (http|https)
type RuleBundle ¶ added in v0.1.0
type RuleBundle struct { Model Kind string Name string `gorm:"uniqueIndex;not null"` Description string Custom bool Repository JSON `gorm:"type:json"` ImageID uint `gorm:"index" ref:"file"` Image *File IdentityID *uint `gorm:"index"` Identity *Identity RuleSets []RuleSet `gorm:"constraint:OnDelete:CASCADE"` }
RuleBundle - Analysis rules.
type RuleSet ¶ added in v0.1.0
type RuleSet struct { Model Name string `gorm:"uniqueIndex:RuleSetA;not null"` Description string Metadata JSON `gorm:"type:json"` RuleBundleID uint `gorm:"uniqueIndex:RuleSetA;not null"` RuleBundle *RuleBundle FileID *uint `gorm:"index" ref:"file"` File *File }
RuleSet - Analysis ruleset.
type Stakeholder ¶
type Stakeholder struct { Model Name string `gorm:"not null;"` Email string `gorm:"index;unique;not null"` Groups []StakeholderGroup `gorm:"many2many:StakeholderGroupStakeholder;constraint:OnDelete:CASCADE"` BusinessServices []BusinessService `gorm:"constraint:OnDelete:SET NULL"` JobFunctionID *uint `gorm:"index"` JobFunction *JobFunction }
type StakeholderGroup ¶
type StakeholderGroup struct { Model Name string `gorm:"index;unique;not null"` Username string Description string Stakeholders []Stakeholder `gorm:"many2many:StakeholderGroupStakeholder;constraint:OnDelete:CASCADE"` }
type TTL ¶
type TTL struct { Created int `json:"created,omitempty"` Pending int `json:"pending,omitempty"` Postponed int `json:"postponed,omitempty"` Running int `json:"running,omitempty"` Succeeded int `json:"succeeded,omitempty"` Failed int `json:"failed,omitempty"` }
TTL time-to-live.
type Tag ¶
type Tag struct { Model Name string `gorm:"uniqueIndex:tagA;not null"` Username string CategoryID uint `gorm:"uniqueIndex:tagA;index;not null"` Category TagCategory }
type TagCategory ¶ added in v0.1.0
type Task ¶
type Task struct { Model BucketOwner Name string `gorm:"index"` Addon string `gorm:"index"` Locator string `gorm:"index"` Priority int Image string Variant string Policy string TTL JSON Data JSON Started *time.Time Terminated *time.Time State string `gorm:"index"` Error string Pod string `gorm:"index"` Retries int Canceled bool Report *TaskReport `gorm:"constraint:OnDelete:CASCADE"` ApplicationID *uint Application *Application TaskGroupID *uint `gorm:"<-:create"` TaskGroup *TaskGroup }
type TaskGroup ¶
type TaskReport ¶
type Ticket ¶
type Ticket struct { Model // Kind of ticket in the external tracker. Kind string `gorm:"not null"` // Parent resource that this ticket should belong to in the tracker. (e.g. Jira project) Parent string `gorm:"not null"` // Custom fields to send to the tracker when creating the ticket Fields JSON `gorm:"type:json"` // Whether the last attempt to do something with the ticket reported an error Error bool // Error message, if any Message string // Whether the ticket was created in the external tracker Created bool // Reference id in external tracker Reference string // URL to ticket in external tracker Link string // Status of ticket in external tracker Status string LastUpdated time.Time Application *Application ApplicationID uint `gorm:"uniqueIndex:ticketA;not null"` Tracker *Tracker TrackerID uint `gorm:"uniqueIndex:ticketA;not null"` }
Click to show internal directories.
Click to hide internal directories.