Skip to content

Commit

Permalink
Merge pull request #23 from robinedwards/feature_addTicketId
Browse files Browse the repository at this point in the history
Feature add ticket
  • Loading branch information
martyzz1 authored Sep 2, 2024
2 parents f626445 + ac7cc87 commit dab2704
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 43 deletions.
74 changes: 33 additions & 41 deletions gitfeatures/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,29 @@
from six.moves import input

master_branch = os.environ.get("GITFEATURES_MASTER_BRANCH", "master")
seperator = os.environ.get("GITFEATURES_BRANCH_SEPERATOR", "_")
branch_seperator = os.environ.get("GITFEATURES_BRANCH_SEPERATOR", "_")
ticket_seperator = os.environ.get("GITFEATURES_TICKET_SEPERATOR", "_")
repo = os.environ.get("GITFEATURES_REPO", "github")
merge_strategy = os.environ.get("GITFEATURES_STRATEGY", "merge")
fork_pr_strategy = os.environ.get("GITFEATURES_FORK_PR_STRATEGY", "")
require_ticket_id = os.environ.get("GITFEATURES_REQUIRE_TICKETID", "false")


def _call(args):
try:
return check_output(args).decode("utf-8")
except CalledProcessError:
sys.exit(
__name__ + ": none zero exit status executing: " + " ".join(args)
) # noqa
sys.exit(__name__ + ": none zero exit status executing: " + " ".join(args)) # noqa


def _get_branch_name(prefix, name):
name = f"{prefix}{seperator}{name}"
return name
def _get_branch_name(prefix, name, ticket_id):
branch_name = f"{prefix}{branch_seperator}{name}"
if ticket_id:
branch_name = f"{prefix}{branch_seperator}{ticket_id}{ticket_seperator}{name}"
return branch_name


def new_feature(name, prefix):
def new_feature(name, prefix, ticket_id):
name = re.sub(r"\W", "_", name)
original_branch = _current_branch()
if original_branch != master_branch:
Expand All @@ -42,12 +44,10 @@ def new_feature(name, prefix):
sys.exit("Ok, Exiting") # noqa

_call(["git", "remote", "update", "origin"])
new_branch = _get_branch_name(prefix, name)
new_branch = _get_branch_name(prefix, name, ticket_id)

if _branch_exists(new_branch):
sys.exit(
__name__ + ": local or remote branch already exists: " + new_branch
) # noqa
sys.exit(__name__ + ": local or remote branch already exists: " + new_branch) # noqa

_call(["git", "checkout", "-b", new_branch])
_call(["git", "push", "-u", "origin", new_branch + ":" + new_branch])
Expand All @@ -64,15 +64,11 @@ def finish_feature(name, prefix):
branch = cur_branch
_call(["git", "checkout", master_branch])
else:
sys.exit(
__name__ + ": please provide a branch name if on {}".format(master_branch)
)
sys.exit(__name__ + ": please provide a branch name if on {}".format(master_branch))

_call(["git", "remote", "update", "origin"])

commits = _call(
["git", "log", "--oneline", branch, "^origin/{}".format(master_branch)]
)
commits = _call(["git", "log", "--oneline", branch, "^origin/{}".format(master_branch)])
if commits:
sys.exit(
__name__
Expand Down Expand Up @@ -145,14 +141,10 @@ def pullrequest(args):

# check its up to date with remote master if not pull
_call(["git", "remote", "update", "origin"])
commits = _call(
["git", "log", "--oneline", "^" + branch, "origin/{}".format(master_branch)]
)
commits = _call(["git", "log", "--oneline", "^" + branch, "origin/{}".format(master_branch)])
if commits:
print(
"Your branch is behind origin/{} so cannot be automatically {}d.".format(
master_branch, merge_strategy
)
"Your branch is behind origin/{} so cannot be automatically {}d.".format(master_branch, merge_strategy)
) # noqa
print(commits)
print(
Expand All @@ -166,15 +158,9 @@ def pullrequest(args):
_call(["git", "checkout", branch])
try:
print("git {} {}".format(merge_strategy, master_branch))
output = check_output(["git", merge_strategy, master_branch]).decode(
"utf-8"
)
output = check_output(["git", merge_strategy, master_branch]).decode("utf-8")
print(output)
print(
"Congratulations, successfully {}d {}".format(
merge_strategy, master_branch
)
)
print("Congratulations, successfully {}d {}".format(merge_strategy, master_branch))
except CalledProcessError as e:
if b"CONFLICT" in e.output:
err = (
Expand All @@ -200,9 +186,7 @@ def pullrequest(args):
print("name", name)
print("branch", branch)
url = _get_pullrequest_url(name, branch)
if (len(args) > 0 and args[0] == "--dry-run") or os.environ.get(
"CONSOLEONLY", False
): # noqa
if (len(args) > 0 and args[0] == "--dry-run") or os.environ.get("CONSOLEONLY", False): # noqa
print(url)
else:
webbrowser.open_new_tab(url)
Expand All @@ -216,9 +200,7 @@ def _get_pullrequest_url(name, branch):
else:
url = "https://github.com/" + name + "/pull/new/" + branch
elif repo == "bitbucket":
url = (
"https://bitbucket.org/" + name + "/pull-requests/new?t=1&source=" + branch
) # noqa
url = "https://bitbucket.org/" + name + "/pull-requests/new?t=1&source=" + branch # noqa
return url


Expand All @@ -241,7 +223,7 @@ def _get_branches(branch_type):
try:
branch_list = (
check_output(
f"git branch -r | grep -e '\/{branch_type}{seperator}\d\d\d\d\d\d\d\d'", # noqa
f"git branch -r | grep -e '\/{branch_type}{branch_seperator}\d\d\d\d\d\d\d\d'", # noqa
shell=True,
)
.decode("utf-8")
Expand All @@ -256,6 +238,7 @@ def _get_branches(branch_type):


def run(prefix, args):
print(prefix, args, require_ticket_id)
if len(args) and args[0].lower() == "new":
allowed_branch_types = ["releasecandidate", "stable", "release", "hotfix"]
if prefix in allowed_branch_types:
Expand All @@ -264,8 +247,17 @@ def run(prefix, args):
else:
name = str(datetime.date.today())
new_feature(name, prefix)
elif len(args) == 2:
new_feature(args[1], prefix)
elif len(args) >= 2:
if len(args) > 2:
ticket_id = args[2]
else:
ticket_id = None

if require_ticket_id == "true":
if len(args) < 3:
sys.exit("Usage: git %s new <%s_name> <ticket_id>" % (prefix, prefix))

new_feature(args[1], prefix, ticket_id)
else:
sys.exit("Usage: git %s new <%s_name>" % (prefix, prefix))
elif len(args) and args[0].lower() == "finish":
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.6
current_version = 0.1.7
commit = True
tag = True
message = :bookmark: [ci skip] Bump version: {current_version} → {new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="gitfeatures",
version="0.1.6",
version="0.1.7",
packages=["gitfeatures"],
license="MIT",
long_description=long_description,
Expand Down

0 comments on commit dab2704

Please sign in to comment.