2015-08-18 08:46:52 +00:00
|
|
|
# CLI support for JIRA interaction
|
2012-12-03 05:59:05 +00:00
|
|
|
#
|
2015-08-18 08:46:52 +00:00
|
|
|
# Setup:
|
|
|
|
# Add a .jira-url file in the base of your project
|
|
|
|
# You can also set $JIRA_URL in your .zshrc or put .jira-url in your home directory
|
|
|
|
# A .jira-url in the current directory takes precedence.
|
|
|
|
# The same goes with .jira-prefix and $JIRA_PREFIX.
|
2012-12-03 05:59:05 +00:00
|
|
|
#
|
2015-08-18 08:46:52 +00:00
|
|
|
# For example:
|
|
|
|
# cd to/my/project
|
|
|
|
# echo "https://name.jira.com" >> .jira-url
|
|
|
|
#
|
|
|
|
# Variables:
|
|
|
|
# $JIRA_RAPID_BOARD - set to "true" if you use Rapid Board
|
|
|
|
# $JIRA_DEFAULT_ACTION - action to do when `jira` is called witn no args
|
|
|
|
# defaults to "new"
|
|
|
|
# $JIRA_NAME - Your JIRA username. Used as default for assigned/reported
|
|
|
|
# $JIRA_PREFIX - Prefix added to issue ID arguments
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Usage:
|
|
|
|
# jira # Performs the default action
|
|
|
|
# jira new # opens a new issue
|
|
|
|
# jira reported [username]
|
|
|
|
# jira assigned [username]
|
|
|
|
# jira dashboard
|
|
|
|
# jira ABC-123 # Opens an existing issue
|
|
|
|
# jira ABC-123 m # Opens an existing issue for adding a comment
|
|
|
|
|
|
|
|
: ${JIRA_DEFAULT_ACTION:=new}
|
|
|
|
|
|
|
|
function jira() {
|
|
|
|
local action=${1:=$JIRA_DEFAULT_ACTION}
|
|
|
|
|
|
|
|
local jira_url jira_prefix
|
|
|
|
if [[ -f .jira-url ]]; then
|
2012-12-03 05:59:05 +00:00
|
|
|
jira_url=$(cat .jira-url)
|
2015-08-18 08:46:52 +00:00
|
|
|
elif [[ -f ~/.jira-url ]]; then
|
2012-12-03 05:59:05 +00:00
|
|
|
jira_url=$(cat ~/.jira-url)
|
2015-08-18 08:46:52 +00:00
|
|
|
elif [[ -n "${JIRA_URL}" ]]; then
|
2015-07-06 20:00:53 +00:00
|
|
|
jira_url=${JIRA_URL}
|
2012-09-29 05:41:30 +00:00
|
|
|
else
|
2015-07-13 20:08:18 +00:00
|
|
|
jira_url_help
|
2014-08-19 14:42:39 +00:00
|
|
|
return 1
|
2012-12-03 05:59:05 +00:00
|
|
|
fi
|
|
|
|
|
2015-08-18 08:46:52 +00:00
|
|
|
if [[ -f .jira-prefix ]]; then
|
2014-07-15 13:22:24 +00:00
|
|
|
jira_prefix=$(cat .jira-prefix)
|
2015-08-18 08:46:52 +00:00
|
|
|
elif [[ -f ~/.jira-prefix ]]; then
|
2014-07-15 13:22:24 +00:00
|
|
|
jira_prefix=$(cat ~/.jira-prefix)
|
2015-08-18 08:46:52 +00:00
|
|
|
elif [[ -n "${JIRA_PREFIX}" ]]; then
|
2015-07-06 20:00:53 +00:00
|
|
|
jira_prefix=${JIRA_PREFIX}
|
2014-07-15 13:22:24 +00:00
|
|
|
else
|
|
|
|
jira_prefix=""
|
|
|
|
fi
|
|
|
|
|
2015-08-18 08:46:52 +00:00
|
|
|
|
|
|
|
if [[ $action == "new" ]]; then
|
2012-12-03 05:59:05 +00:00
|
|
|
echo "Opening new issue"
|
2015-08-04 22:32:57 +00:00
|
|
|
open_command "${jira_url}/secure/CreateIssue!default.jspa"
|
2015-08-18 08:46:52 +00:00
|
|
|
elif [[ "$action" == "assigned" || "$action" == "reported" ]]; then
|
2014-08-19 14:42:39 +00:00
|
|
|
jira_query $@
|
2015-08-18 08:46:52 +00:00
|
|
|
elif [[ "$action" == "dashboard" ]]; then
|
|
|
|
echo "Opening dashboard"
|
|
|
|
open_command "${jira_url}/secure/Dashboard.jspa"
|
2015-07-07 18:03:58 +00:00
|
|
|
else
|
2015-08-18 08:46:52 +00:00
|
|
|
# Anything that doesn't match a special action is considered an issue name
|
|
|
|
local issue_arg=$action
|
|
|
|
local issue="${jira_prefix}${issue_arg}"
|
|
|
|
local url_fragment=''
|
2014-06-22 01:10:53 +00:00
|
|
|
if [[ "$2" == "m" ]]; then
|
2015-08-18 08:46:52 +00:00
|
|
|
url_fragment="#add-comment"
|
|
|
|
echo "Add comment to issue #$issue"
|
2014-06-22 01:10:53 +00:00
|
|
|
else
|
2015-08-18 08:46:52 +00:00
|
|
|
echo "Opening issue #$issue"
|
2014-06-22 01:10:53 +00:00
|
|
|
fi
|
2015-07-07 16:50:23 +00:00
|
|
|
if [[ "$JIRA_RAPID_BOARD" == "true" ]]; then
|
2015-08-18 08:46:52 +00:00
|
|
|
open_command "${jira_url}/issues/${issue}${url_fragment}"
|
2014-06-22 01:10:53 +00:00
|
|
|
else
|
2015-08-18 08:46:52 +00:00
|
|
|
open_command "${jira_url}/browse/${issue}${url_fragment}"
|
2014-06-22 01:10:53 +00:00
|
|
|
fi
|
2012-09-29 05:41:30 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2015-08-18 08:46:52 +00:00
|
|
|
function jira_url_help() {
|
2015-07-13 20:08:18 +00:00
|
|
|
cat << EOF
|
|
|
|
JIRA url is not specified anywhere.
|
2015-07-29 20:58:22 +00:00
|
|
|
Valid options, in order of precedence:
|
2015-07-13 20:08:18 +00:00
|
|
|
.jira-url file
|
2015-07-29 20:58:22 +00:00
|
|
|
\$HOME/.jira-url file
|
2015-07-13 20:08:18 +00:00
|
|
|
JIRA_URL environment variable
|
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
2015-08-18 08:46:52 +00:00
|
|
|
function jira_query() {
|
2015-07-07 18:26:00 +00:00
|
|
|
local verb="$1"
|
2015-08-18 08:46:52 +00:00
|
|
|
local jira_name lookup preposition query
|
|
|
|
if [[ "${verb}" == "reported" ]]; then
|
2015-07-07 17:56:22 +00:00
|
|
|
lookup=reporter
|
|
|
|
preposition=by
|
2015-08-18 08:46:52 +00:00
|
|
|
elif [[ "${verb}" == "assigned" ]]; then
|
2015-07-07 17:56:22 +00:00
|
|
|
lookup=assignee
|
|
|
|
preposition=to
|
|
|
|
else
|
2015-08-18 08:46:52 +00:00
|
|
|
echo "not a valid lookup: $verb" >&2
|
2015-07-07 17:56:22 +00:00
|
|
|
return 1
|
|
|
|
fi
|
2015-08-18 08:46:52 +00:00
|
|
|
jira_name=${2:=$JIRA_NAME}
|
|
|
|
if [[ -z $jira_name ]]; then
|
|
|
|
echo "JIRA_NAME not specified" >&2
|
2015-07-07 17:56:22 +00:00
|
|
|
return 1
|
|
|
|
fi
|
2015-08-18 08:46:52 +00:00
|
|
|
|
2015-07-07 17:56:22 +00:00
|
|
|
echo "Browsing issues ${verb} ${preposition} ${jira_name}"
|
2015-08-18 08:46:52 +00:00
|
|
|
query="${lookup}+%3D+%22${jira_name}%22+AND+resolution+%3D+unresolved+ORDER+BY+priority+DESC%2C+created+ASC"
|
|
|
|
open_command "${jira_url}/secure/IssueNavigator.jspa?reset=true&jqlQuery=${query}"
|
2014-08-19 14:42:39 +00:00
|
|
|
}
|
|
|
|
|