Public/Get-JiraIssueCreateMetadata.ps1
function Get-JiraIssueCreateMetadata { <# .Synopsis Returns metadata required to create an issue in JIRA .DESCRIPTION This function returns metadata required to create an issue in JIRA - the fields that can be defined in the process of creating an issue. This can be used to identify custom fields in order to pass them to New-JiraIssue. This function is particularly useful when your JIRA instance includes custom fields that are marked as mandatory. The required fields can be identified from this See the examples for more details on this approach. .EXAMPLE Get-JiraIssueCreateMetadata -Project 'TEST' -IssueType 'Bug' This example returns the fields available when creating an issue of type Bug under project TEST. .EXAMPLE Get-JiraIssueCreateMetadata -Project 'JIRA' -IssueType 'Bug' | ? {$_.Required -eq $true} This example returns fields available when creating an issue of type Bug under the project Jira. It then uses Where-Object (aliased by the question mark) to filter only the fields that are required. .INPUTS This function does not accept pipeline input. .OUTPUTS This function outputs the JiraPS.Field objects that represent JIRA's create metadata. .NOTES This function requires either the -Credential parameter to be passed or a persistent JIRA session. See New-JiraSession for more details. If neither are supplied, this function will run with anonymous access to JIRA. #> [CmdletBinding()] param( # Project ID or key of the reference issue. [Parameter( Position = 0, Mandatory = $true )] [String] $Project, # Issue type ID or name. [Parameter( Position = 1, Mandatory = $true )] [String] $IssueType, # Path of the file with the configuration. [String] $ConfigFile, # Credentials to use to connect to JIRA. # If not specified, this function will use anonymous access. [Parameter(Mandatory = $false)] [System.Management.Automation.PSCredential] $Credential ) begin { Write-Debug "[Get-JiraIssueCreateMetadata] Reading server from config file" try { $server = Get-JiraConfigServer -ConfigFile $ConfigFile -ErrorAction Stop } catch { $err = $_ Write-Debug "[Get-JiraIssueCreateMetadata] Encountered an error reading the Jira server." throw $err } Write-Debug "[Get-JiraIssueCreateMetadata] Building URI for REST call based on parameters" $uri = "$server/rest/api/latest/issue/createmeta?" Write-Debug "[Get-JiraIssueCreateMetadata] Obtaining project ID for project [$Project]" $projectObj = Get-JiraProject -Project $Project -Credential $Credential if ($projectObj) { $projectId = $projectObj.Id $uri = "${uri}projectIds=$projectId&" } else { throw "No project was found for the given Project [$Project]. Use Get-JiraProject for more information on this issue." } Write-Debug "[Get-JiraIssueCreateMetadata] Obtaining issue type ID for issue type [$IssueType]" $issueTypeObj = Get-JiraIssueType -IssueType $IssueType -Credential $Credential if ($issueTypeObj) { $issueTypeId = $issueTypeObj.Id $uri = "${uri}issuetypeIds=$issueTypeId&" } else { throw "No issue types were found for the given IssueType [$IssueType]. Use Get-JiraIssueType for more information on this issue." } $uri = "${uri}expand=projects.issuetypes.fields" } process { Write-Debug "[Get-JiraIssueCreateMetadata] Preparing for blastoff!" $jiraResult = Invoke-JiraMethod -Method Get -URI $uri -Credential $Credential if ($jiraResult) { if (@($jiraResult.projects).Count -eq 0) { Write-Debug "[Get-JiraIssueCreateMetadata] No project results were found. Throwing exception." throw "No projects were found for the given project [$Project]. Use Get-JiraProject for more details." } elseif (@($jiraResult.projects).Count -gt 1) { Write-Debug "[Get-JiraIssueCreateMetadata] Multiple project results were found. Throwing exception." throw "Multiple projects were found for the given project [$Project]. Refine the parameters to return only one project." } # $projectId = $jiraResult.projects.id # $projectKey = $jiraResult.projects.key Write-Debug "[Get-JiraIssueCreateMetadata] Identified project key: [$Project]" if (@($jiraResult.projects.issuetypes) -eq 0) { Write-Debug "[Get-JiraIssueCreateMetadata] No issue type results were found. Throwing exception." throw "No issue types were found for the given issue type [$IssueType]. Use Get-JiraIssueType for more details." } elseif (@($jiraResult.projects.issuetypes).Count -gt 1) { Write-Debug "[Get-JiraIssueCreateMetadata] Multiple issue type results were found. Throwing exception." throw "Multiple issue types were found for the given issue type [$IssueType]. Refine the parameters to return only one issue type." } Write-Debug "[Get-JiraIssueCreateMetadata] Converting results to custom object" $obj = ConvertTo-JiraCreateMetaField -InputObject $jiraResult Write-Debug "Outputting results" Write-Output $obj # Write-Output $jiraResult } else { Write-Debug "[Get-JiraIssueCreateMetadata] No results were returned from JIRA." } } } |