-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli): Create Jira Alert Channels 🚨
Users now can create Jira Alert Channel Integrations via the CLI: ``` $ lacework integration create ? Choose an integration type to create: Jira Cloud Alert Channel â–¸ Name: example-jira-alert â–¸ Jira URL: mycompany.atlassian.net â–¸ Issue Type: Bug â–¸ Project Key: EXAMPLE â–¸ Username: [email protected] â–¸ API Token: ********************** â–¸ Alert Severity Level: High and above The integration was created. ``` Signed-off-by: Salim Afiune Maya <[email protected]>
- Loading branch information
Showing
2 changed files
with
212 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
// | ||
// Author:: Salim Afiune Maya (<[email protected]>) | ||
// Copyright:: Copyright 2020, Lacework Inc. | ||
// License:: Apache License, Version 2.0 | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
|
||
package cmd | ||
|
||
import ( | ||
"github.com/AlecAivazis/survey/v2" | ||
|
||
"github.com/lacework/go-sdk/api" | ||
) | ||
|
||
type jiraAlertChannelIntegrationSurvey struct { | ||
Name string | ||
Url string | ||
Issue string | ||
Project string | ||
Username string | ||
Token string | ||
Password string | ||
AlertSeverity string `survey:"alert_severity_level"` | ||
} | ||
|
||
func createJiraCloudAlertChannelIntegration() error { | ||
questions := []*survey.Question{ | ||
{ | ||
Name: "name", | ||
Prompt: &survey.Input{Message: "Name: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "url", | ||
Prompt: &survey.Input{Message: "Jira URL: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "issue", | ||
Prompt: &survey.Input{Message: "Issue Type: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "project", | ||
Prompt: &survey.Input{Message: "Project Key: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "username", | ||
Prompt: &survey.Input{Message: "Username: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "token", | ||
Prompt: &survey.Password{Message: "API Token: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "alert_severity_level", | ||
Prompt: &survey.Select{ | ||
Message: "Alert Severity Level: ", | ||
Options: []string{ | ||
"Critical", | ||
"High and above", | ||
"Medium and above", | ||
"Low and above", | ||
"All", | ||
}, | ||
}, | ||
Validate: survey.Required, | ||
}, | ||
} | ||
|
||
var answers jiraAlertChannelIntegrationSurvey | ||
err := survey.Ask(questions, &answers, | ||
survey.WithIcons(promptIconsFunc), | ||
) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
jira := api.NewJiraCloudAlertChannel(answers.Name, | ||
api.JiraAlertChannelData{ | ||
JiraUrl: answers.Url, | ||
IssueType: answers.Issue, | ||
ProjectID: answers.Project, | ||
Username: answers.Username, | ||
ApiToken: answers.Token, | ||
MinAlertSeverity: alertSeverityToEnum(answers.AlertSeverity), | ||
}, | ||
) | ||
|
||
return createJiraAlertChannelIntegration(jira) | ||
} | ||
|
||
func createJiraServerAlertChannelIntegration() error { | ||
questions := []*survey.Question{ | ||
{ | ||
Name: "name", | ||
Prompt: &survey.Input{Message: "Name: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "url", | ||
Prompt: &survey.Input{Message: "Jira URL: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "issue", | ||
Prompt: &survey.Input{Message: "Issue Type: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "project", | ||
Prompt: &survey.Input{Message: "Project Key: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "username", | ||
Prompt: &survey.Input{Message: "Username: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "password", | ||
Prompt: &survey.Password{Message: "Password: "}, | ||
Validate: survey.Required, | ||
}, | ||
{ | ||
Name: "alert_severity_level", | ||
Prompt: &survey.Select{ | ||
Message: "Alert Severity Level: ", | ||
Options: []string{ | ||
"Critical", | ||
"High and above", | ||
"Medium and above", | ||
"Low and above", | ||
"All", | ||
}, | ||
}, | ||
Validate: survey.Required, | ||
}, | ||
} | ||
|
||
var answers jiraAlertChannelIntegrationSurvey | ||
err := survey.Ask(questions, &answers, | ||
survey.WithIcons(promptIconsFunc), | ||
) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
jira := api.NewJiraServerAlertChannel(answers.Name, | ||
api.JiraAlertChannelData{ | ||
JiraUrl: answers.Url, | ||
IssueType: answers.Issue, | ||
ProjectID: answers.Project, | ||
Username: answers.Username, | ||
Password: answers.Password, | ||
MinAlertSeverity: alertSeverityToEnum(answers.AlertSeverity), | ||
}, | ||
) | ||
return createJiraAlertChannelIntegration(jira) | ||
} | ||
|
||
func createJiraAlertChannelIntegration(jira api.JiraAlertChannel) error { | ||
cli.StartProgress(" Creating integration...") | ||
_, err := cli.LwApi.Integrations.CreateJiraAlertChannel(jira) | ||
cli.StopProgress() | ||
return err | ||
} |