mirror of
https://github.com/daylinmorgan/task.mk.git
synced 2024-11-09 19:13:14 -06:00
feat: add confirmation prompt
This commit is contained in:
parent
ea85b2378e
commit
253832af89
6 changed files with 65 additions and 15 deletions
|
@ -17,6 +17,7 @@ Current Features:
|
||||||
- ANSI escape code support (including NO_COLOR)
|
- ANSI escape code support (including NO_COLOR)
|
||||||
- formatted help output
|
- formatted help output
|
||||||
- custom print function
|
- custom print function
|
||||||
|
- confirmation prompt
|
||||||
|
|
||||||
Depends on `GNU Make`, obviously and `Python >=3.7`.
|
Depends on `GNU Make`, obviously and `Python >=3.7`.
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ from pathlib import Path
|
||||||
|
|
||||||
import jinja2
|
import jinja2
|
||||||
|
|
||||||
py_script_names = ["help", "ansi", "info", "print-ansi", "vars"]
|
py_script_names = ["help", "ansi", "info", "print-ansi", "vars","confirm"]
|
||||||
|
|
||||||
|
|
||||||
def get_jinja_env():
|
def get_jinja_env():
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
# ---- [buitlin recipes] ---- #
|
# ---- [buitlin recipes] ---- #
|
||||||
|
|
||||||
|
|
||||||
## h, help | show this help
|
## h, help | show this help
|
||||||
.PHONY: help h
|
.PHONY: help h
|
||||||
help h:
|
help h:
|
||||||
|
@ -29,6 +28,8 @@ _print-ansi:
|
||||||
tprint = $(call py,info_py,$(1))
|
tprint = $(call py,info_py,$(1))
|
||||||
tprint-sh = $(call pysh,info_py,$(1))
|
tprint-sh = $(call pysh,info_py,$(1))
|
||||||
|
|
||||||
|
tconfirm = $(call py,confirm_py,$(1))
|
||||||
|
|
||||||
_update-task.mk:
|
_update-task.mk:
|
||||||
$(call tprint,Updating task.mk)
|
$(call tprint,Updating task.mk)
|
||||||
curl https://raw.githubusercontent.com/daylinmorgan/task.mk/main/task.mk -o .task.mk
|
curl https://raw.githubusercontent.com/daylinmorgan/task.mk/main/task.mk -o .task.mk
|
||||||
|
|
23
src/confirm.py
Normal file
23
src/confirm.py
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
#% extends "py-script.mk" %#
|
||||||
|
#% block name %#confirm#% endblock %#
|
||||||
|
#% block script %#
|
||||||
|
|
||||||
|
import sys
|
||||||
|
##- '$(ansi_py)' -##
|
||||||
|
|
||||||
|
def confirm():
|
||||||
|
"""
|
||||||
|
Ask user to enter Y or N (case-insensitive).
|
||||||
|
:return: True if the answer is Y.
|
||||||
|
:rtype: bool
|
||||||
|
"""
|
||||||
|
answer = ""
|
||||||
|
while answer not in ["y", "n"]:
|
||||||
|
answer = input(f"""$(2) {a.b_red}[Y/n]{a.end} """).lower()
|
||||||
|
return answer == "y"
|
||||||
|
|
||||||
|
if confirm():
|
||||||
|
sys.exit(0)
|
||||||
|
else:
|
||||||
|
sys.exit(1)
|
||||||
|
#% endblock %#
|
|
@ -13,16 +13,16 @@ create_string = $(subst $(\n),\n,$(call escape_shellstring,$(call escape_printf,
|
||||||
ifdef DEBUG
|
ifdef DEBUG
|
||||||
define _debug_runner
|
define _debug_runner
|
||||||
@printf "$(1) Script:\n"
|
@printf "$(1) Script:\n"
|
||||||
@printf -- "<---------------->\n"
|
@printf -- "<----------------------------------->\n"
|
||||||
@printf "$(call create_string,$(3))\n"
|
@printf "$(call create_string,$(3))\n"
|
||||||
@printf -- "<---------------->\n"
|
@printf -- "<----------------------------------->\n"
|
||||||
@printf "$(call create_string,$(3))" | $(2)
|
@printf "$(call create_string,$(3))" | $(2)
|
||||||
endef
|
endef
|
||||||
py = $(call _debug_runner,Python,python3,$($(1)))
|
py = $(call _debug_runner,Python,python3,$($(1)))
|
||||||
tbash = $(call _debug_runner,Bash,bash,$($(1)))
|
tbash = $(call _debug_runner,Bash,bash,$($(1)))
|
||||||
else
|
else
|
||||||
py = @printf "$(call create_string,$($(1)))" | python3
|
py = @python3 <(printf "$(call create_string,$($(1)))")
|
||||||
tbash = @printf "$(call create_string,$($(1)))" | bash
|
tbash = @bash <(printf "$(call create_string,$($(1)))")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
pysh = printf "$(call create_string,$($(1)))" | python3
|
pysh = python3 <(printf "$(call create_string,$($(1)))")
|
||||||
|
|
39
task.mk
39
task.mk
|
@ -1,7 +1,7 @@
|
||||||
# }> [github.com/daylinmorgan/task.mk] <{ #
|
# }> [github.com/daylinmorgan/task.mk] <{ #
|
||||||
# Copyright (c) 2022 Daylin Morgan
|
# Copyright (c) 2022 Daylin Morgan
|
||||||
# MIT License
|
# MIT License
|
||||||
# version: 22.9.14
|
# version: v22.9.14-dev
|
||||||
#
|
#
|
||||||
# task.mk should be included at the bottom of your Makefile.
|
# task.mk should be included at the bottom of your Makefile.
|
||||||
# See below for the standard configuration options that should be set prior to including this file.
|
# See below for the standard configuration options that should be set prior to including this file.
|
||||||
|
@ -27,7 +27,6 @@ endef
|
||||||
|
|
||||||
# ---- [buitlin recipes] ---- #
|
# ---- [buitlin recipes] ---- #
|
||||||
|
|
||||||
|
|
||||||
## h, help | show this help
|
## h, help | show this help
|
||||||
.PHONY: help h
|
.PHONY: help h
|
||||||
help h:
|
help h:
|
||||||
|
@ -56,6 +55,8 @@ _print-ansi:
|
||||||
tprint = $(call py,info_py,$(1))
|
tprint = $(call py,info_py,$(1))
|
||||||
tprint-sh = $(call pysh,info_py,$(1))
|
tprint-sh = $(call pysh,info_py,$(1))
|
||||||
|
|
||||||
|
tconfirm = $(call py,confirm_py,$(1))
|
||||||
|
|
||||||
_update-task.mk:
|
_update-task.mk:
|
||||||
$(call tprint,Updating task.mk)
|
$(call tprint,Updating task.mk)
|
||||||
curl https://raw.githubusercontent.com/daylinmorgan/task.mk/main/task.mk -o .task.mk
|
curl https://raw.githubusercontent.com/daylinmorgan/task.mk/main/task.mk -o .task.mk
|
||||||
|
@ -77,19 +78,19 @@ create_string = $(subst $(\n),\n,$(call escape_shellstring,$(call escape_printf,
|
||||||
ifdef DEBUG
|
ifdef DEBUG
|
||||||
define _debug_runner
|
define _debug_runner
|
||||||
@printf "$(1) Script:\n"
|
@printf "$(1) Script:\n"
|
||||||
@printf -- "<---------------->\n"
|
@printf -- "<----------------------------------->\n"
|
||||||
@printf "$(call create_string,$(3))\n"
|
@printf "$(call create_string,$(3))\n"
|
||||||
@printf -- "<---------------->\n"
|
@printf -- "<----------------------------------->\n"
|
||||||
@printf "$(call create_string,$(3))" | $(2)
|
@printf "$(call create_string,$(3))" | $(2)
|
||||||
endef
|
endef
|
||||||
py = $(call _debug_runner,Python,python3,$($(1)))
|
py = $(call _debug_runner,Python,python3,$($(1)))
|
||||||
tbash = $(call _debug_runner,Bash,bash,$($(1)))
|
tbash = $(call _debug_runner,Bash,bash,$($(1)))
|
||||||
else
|
else
|
||||||
py = @printf "$(call create_string,$($(1)))" | python3
|
py = @python3 <(printf "$(call create_string,$($(1)))")
|
||||||
tbash = @printf "$(call create_string,$($(1)))" | bash
|
tbash = @bash <(printf "$(call create_string,$($(1)))")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
pysh = printf "$(call create_string,$($(1)))" | python3
|
pysh = python3 <(printf "$(call create_string,$($(1)))")
|
||||||
|
|
||||||
# ---- [python scripts] ---- #
|
# ---- [python scripts] ---- #
|
||||||
|
|
||||||
|
@ -325,3 +326,27 @@ print()
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define confirm_py
|
||||||
|
|
||||||
|
|
||||||
|
import sys
|
||||||
|
$(ansi_py)
|
||||||
|
|
||||||
|
def confirm():
|
||||||
|
"""
|
||||||
|
Ask user to enter Y or N (case-insensitive).
|
||||||
|
:return: True if the answer is Y.
|
||||||
|
:rtype: bool
|
||||||
|
"""
|
||||||
|
answer = ""
|
||||||
|
while answer not in ["y", "n"]:
|
||||||
|
answer = input(f"""$(2) {a.b_red}[Y/n]{a.end} """).lower()
|
||||||
|
return answer == "y"
|
||||||
|
|
||||||
|
if confirm():
|
||||||
|
sys.exit(0)
|
||||||
|
else:
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
endef
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue