Documentation ¶
Index ¶
- type AuthToken
- type DetailedResult
- type Link
- type Links
- type Preset
- type Project
- type ProjectCreateResult
- type Query
- type Report
- type ReportStatus
- type ReportStatusResponse
- type Result
- type ResultsStatistics
- type Scan
- type ScanStatus
- type ScanStatusDetail
- type SourceSettingsLink
- type Status
- type System
- type SystemInstance
- func (sys *SystemInstance) CreateBranch(projectID int, branchName string) int
- func (sys *SystemInstance) CreateProject(projectName string, teamID string) (ProjectCreateResult, error)
- func (sys *SystemInstance) DownloadReport(reportID int) ([]byte, error)
- func (sys *SystemInstance) FilterPresetByID(presets []Preset, presetID int) Preset
- func (sys *SystemInstance) FilterPresetByName(presets []Preset, presetName string) Preset
- func (sys *SystemInstance) FilterProjectByName(projects []Project, projectName string) Project
- func (sys *SystemInstance) FilterTeamByID(teams []Team, teamID string) Team
- func (sys *SystemInstance) FilterTeamByName(teams []Team, teamName string) Team
- func (sys *SystemInstance) GetPresets() []Preset
- func (sys *SystemInstance) GetProjectByID(projectID int) (Project, error)
- func (sys *SystemInstance) GetProjects() ([]Project, error)
- func (sys *SystemInstance) GetProjectsByNameAndTeam(projectName, teamID string) ([]Project, error)
- func (sys *SystemInstance) GetReportStatus(reportID int) (ReportStatusResponse, error)
- func (sys *SystemInstance) GetResults(scanID int) ResultsStatistics
- func (sys *SystemInstance) GetScanStatusAndDetail(scanID int) (string, ScanStatusDetail)
- func (sys *SystemInstance) GetScans(projectID int) ([]ScanStatus, error)
- func (sys *SystemInstance) GetTeams() []Team
- func (sys *SystemInstance) RequestNewReport(scanID int, reportType string) (Report, error)
- func (sys *SystemInstance) ScanProject(projectID int, isIncremental, isPublic, forceScan bool) (Scan, error)
- func (sys *SystemInstance) UpdateProjectConfiguration(projectID int, presetID int, engineConfigurationID string) error
- func (sys *SystemInstance) UpdateProjectExcludeSettings(projectID int, excludeFolders string, excludeFiles string) error
- func (sys *SystemInstance) UploadProjectSourceCode(projectID int, zipFile string) error
- type Team
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthToken ¶
type AuthToken struct { TokenType string `json:"token_type"` AccessToken string `json:"access_token"` ExpiresIn int `json:"expires_in"` }
AuthToken - Structure to store OAuth2 token
type DetailedResult ¶
type DetailedResult struct { XMLName xml.Name `xml:"CxXMLResults"` InitiatorName string `xml:"InitiatorName,attr"` ScanID string `xml:"ScanId,attr"` Owner string `xml:"Owner,attr"` ProjectID string `xml:"ProjectId,attr"` ProjectName string `xml:"ProjectName,attr"` TeamFullPathOnReportDate string `xml:"TeamFullPathOnReportDate,attr"` DeepLink string `xml:"DeepLink,attr"` ScanStart string `xml:"ScanStart,attr"` Preset string `xml:"Preset,attr"` ScanTime string `xml:"ScanTime,attr"` LinesOfCodeScanned string `xml:"LinesOfCodeScanned,attr"` FilesScanned string `xml:"FilesScanned,attr"` ReportCreationTime string `xml:"ReportCreationTime,attr"` Team string `xml:"Team,attr"` CheckmarxVersion string `xml:"CheckmarxVersion,attr"` ScanType string `xml:"ScanType,attr"` SourceOrigin string `xml:"SourceOrigin,attr"` Visibility string `xml:"Visibility,attr"` Queries []Query `xml:"Query"` }
DetailedResult - DetailedResult Structure
type Preset ¶
type Preset struct { ID int `json:"id"` Name string `json:"name"` OwnerName string `json:"ownerName"` Link Link `json:"link"` }
Preset - Project's Preset
type Project ¶
type Project struct { ID int `json:"id"` TeamID string `json:"teamId"` Name string `json:"name"` IsPublic bool `json:"isPublic"` SourceSettingsLink SourceSettingsLink `json:"sourceSettingsLink"` Link Link `json:"link"` }
Project - Project Structure
type ProjectCreateResult ¶
ProjectCreateResult - ProjectCreateResult Structure
type ReportStatus ¶
ReportStatus - ReportStatus Structure
type ReportStatusResponse ¶
type ReportStatusResponse struct { Location string `json:"location"` ContentType string `json:"contentType"` Status ReportStatus `json:"status"` }
ReportStatusResponse - ReportStatusResponse Structure
type Result ¶
type Result struct { XMLName xml.Name `xml:"Result"` State string `xml:"state,attr"` Severity string `xml:"Severity,attr"` FalsePositive string `xml:"FalsePositive,attr"` }
Result - Result Structure
type ResultsStatistics ¶
type ResultsStatistics struct { High int `json:"highSeverity"` Medium int `json:"mediumSeverity"` Low int `json:"lowSeverity"` Info int `json:"infoSeverity"` }
ResultsStatistics - ResultsStatistics Structure
type ScanStatus ¶
type ScanStatus struct { ID int `json:"id"` Link Link `json:"link"` Status Status `json:"status"` ScanType string `json:"scanType"` Comment string `json:"comment"` IsIncremental bool `json:"isIncremental"` }
ScanStatus - ScanStatus Structure
type ScanStatusDetail ¶
ScanStatusDetail - ScanStatusDetail Structure
type SourceSettingsLink ¶
type SourceSettingsLink struct { Type string `json:"type"` Rel string `json:"rel"` URI string `json:"uri"` }
SourceSettingsLink - SourceSettingsLink Structure
type Status ¶
type Status struct { ID int `json:"id"` Name string `json:"name"` Details ScanStatusDetail `json:"details"` }
Status - Status Structure
type System ¶
type System interface { FilterPresetByName(presets []Preset, presetName string) Preset FilterPresetByID(presets []Preset, presetID int) Preset FilterProjectByName(projects []Project, projectName string) Project FilterTeamByName(teams []Team, teamName string) Team FilterTeamByID(teams []Team, teamID string) Team DownloadReport(reportID int) ([]byte, error) GetReportStatus(reportID int) (ReportStatusResponse, error) RequestNewReport(scanID int, reportType string) (Report, error) GetResults(scanID int) ResultsStatistics GetScanStatusAndDetail(scanID int) (string, ScanStatusDetail) GetScans(projectID int) ([]ScanStatus, error) ScanProject(projectID int, isIncremental, isPublic, forceScan bool) (Scan, error) UpdateProjectConfiguration(projectID int, presetID int, engineConfigurationID string) error UpdateProjectExcludeSettings(projectID int, excludeFolders string, excludeFiles string) error UploadProjectSourceCode(projectID int, zipFile string) error CreateProject(projectName string, teamID string) (ProjectCreateResult, error) CreateBranch(projectID int, branchName string) int GetPresets() []Preset GetProjectByID(projectID int) (Project, error) GetProjectsByNameAndTeam(projectName, teamID string) ([]Project, error) GetProjects() ([]Project, error) GetTeams() []Team }
System is the interface abstraction of a specific SystemIns
type SystemInstance ¶
type SystemInstance struct {
// contains filtered or unexported fields
}
SystemInstance is the client communicating with the Checkmarx backend
func NewSystemInstance ¶
func NewSystemInstance(client piperHttp.Uploader, serverURL, username, password string) (*SystemInstance, error)
NewSystemInstance returns a new Checkmarx client for communicating with the backend
func (*SystemInstance) CreateBranch ¶
func (sys *SystemInstance) CreateBranch(projectID int, branchName string) int
CreateBranch creates a branch of an existing project in the Checkmarx backend
func (*SystemInstance) CreateProject ¶
func (sys *SystemInstance) CreateProject(projectName string, teamID string) (ProjectCreateResult, error)
CreateProject creates a new project in the Checkmarx backend
func (*SystemInstance) DownloadReport ¶
func (sys *SystemInstance) DownloadReport(reportID int) ([]byte, error)
DownloadReport downloads the report addressed by reportID and returns the XML contents
func (*SystemInstance) FilterPresetByID ¶
func (sys *SystemInstance) FilterPresetByID(presets []Preset, presetID int) Preset
FilterPresetByID filters a preset by its name
func (*SystemInstance) FilterPresetByName ¶
func (sys *SystemInstance) FilterPresetByName(presets []Preset, presetName string) Preset
FilterPresetByName filters a preset by its name
func (*SystemInstance) FilterProjectByName ¶
func (sys *SystemInstance) FilterProjectByName(projects []Project, projectName string) Project
FilterProjectByName filters a project by its name
func (*SystemInstance) FilterTeamByID ¶
func (sys *SystemInstance) FilterTeamByID(teams []Team, teamID string) Team
FilterTeamByID filters a team by its ID
func (*SystemInstance) FilterTeamByName ¶
func (sys *SystemInstance) FilterTeamByName(teams []Team, teamName string) Team
FilterTeamByName filters a team by its name
func (*SystemInstance) GetPresets ¶
func (sys *SystemInstance) GetPresets() []Preset
GetPresets loads the preset values defined in the Checkmarx backend
func (*SystemInstance) GetProjectByID ¶
func (sys *SystemInstance) GetProjectByID(projectID int) (Project, error)
GetProjectByID returns the project addressed by projectID from the Checkmarx backend which the user has access to
func (*SystemInstance) GetProjects ¶
func (sys *SystemInstance) GetProjects() ([]Project, error)
GetProjects returns the projects defined in the Checkmarx backend which the user has access to
func (*SystemInstance) GetProjectsByNameAndTeam ¶
func (sys *SystemInstance) GetProjectsByNameAndTeam(projectName, teamID string) ([]Project, error)
GetProjectsByNameAndTeam returns the project addressed by projectID from the Checkmarx backend which the user has access to
func (*SystemInstance) GetReportStatus ¶
func (sys *SystemInstance) GetReportStatus(reportID int) (ReportStatusResponse, error)
GetReportStatus returns the status of the report generation process
func (*SystemInstance) GetResults ¶
func (sys *SystemInstance) GetResults(scanID int) ResultsStatistics
GetResults returns the results of the scan addressed by scanID
func (*SystemInstance) GetScanStatusAndDetail ¶
func (sys *SystemInstance) GetScanStatusAndDetail(scanID int) (string, ScanStatusDetail)
GetScanStatusAndDetail returns the status of the scan addressed by scanID
func (*SystemInstance) GetScans ¶
func (sys *SystemInstance) GetScans(projectID int) ([]ScanStatus, error)
GetScans returns all scan status on the project addressed by projectID
func (*SystemInstance) GetTeams ¶
func (sys *SystemInstance) GetTeams() []Team
GetTeams returns the teams the user is assigned to
func (*SystemInstance) RequestNewReport ¶
func (sys *SystemInstance) RequestNewReport(scanID int, reportType string) (Report, error)
RequestNewReport triggers the generation of a report for a specific scan addressed by scanID
func (*SystemInstance) ScanProject ¶
func (sys *SystemInstance) ScanProject(projectID int, isIncremental, isPublic, forceScan bool) (Scan, error)
ScanProject triggers a scan on the project addressed by projectID
func (*SystemInstance) UpdateProjectConfiguration ¶
func (sys *SystemInstance) UpdateProjectConfiguration(projectID int, presetID int, engineConfigurationID string) error
UpdateProjectConfiguration updates the configuration of the project addressed by projectID
func (*SystemInstance) UpdateProjectExcludeSettings ¶
func (sys *SystemInstance) UpdateProjectExcludeSettings(projectID int, excludeFolders string, excludeFiles string) error
UpdateProjectExcludeSettings updates the exclude configuration of the project
func (*SystemInstance) UploadProjectSourceCode ¶
func (sys *SystemInstance) UploadProjectSourceCode(projectID int, zipFile string) error
UploadProjectSourceCode zips and uploads the project sources for scanning