|
@@ -14,12 +14,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
"""
|
|
|
Define the CLI interface for pwman3 and the helper functions
|
|
|
"""
|
|
|
-from __future__ import print_function
|
|
|
+
|
|
|
import subprocess as sp
|
|
|
import getpass
|
|
|
import sys
|
|
@@ -120,108 +120,15 @@ def text_to_mcclipboard(text): # pragma: no cover
|
|
|
print (e, "\nExecuting pbcoy failed...")
|
|
|
|
|
|
|
|
|
-def open_url(link, macosx=False, ):
|
|
|
+def open_url(link, macosx=False,):
|
|
|
"""
|
|
|
launch xdg-open or open in MacOSX with url
|
|
|
"""
|
|
|
- uopen = "xdg-open "
|
|
|
- if macosx:
|
|
|
- uopen = "open "
|
|
|
- try:
|
|
|
- sp.call(uopen + link, shell=True, stdout=sp.PIPE, stderr=sp.PIPE)
|
|
|
- except OSError as e:
|
|
|
- print("Executing open_url failed with:\n", e)
|
|
|
-
|
|
|
-
|
|
|
-def get_terminal_size():
|
|
|
- """ getTerminalSize()
|
|
|
- - get width and height of console
|
|
|
- - works on linux,os x,windows,cygwin(windows)
|
|
|
- originally retrieved from:
|
|
|
- http://stackoverflow.com/questions/566746/how-to-get-\
|
|
|
- console-window-width-in-python
|
|
|
- """
|
|
|
- current_os = platform.system()
|
|
|
- tuple_xy = None
|
|
|
- if current_os == 'Windows':
|
|
|
- tuple_xy = _get_terminal_size_windows()
|
|
|
- if tuple_xy is None:
|
|
|
- tuple_xy = _get_terminal_size_tput()
|
|
|
-
|
|
|
- if current_os in ['Linux', 'Darwin'] or current_os.startswith('CYGWIN'):
|
|
|
- tuple_xy = _get_terminal_size_linux()
|
|
|
- if tuple_xy is None:
|
|
|
- tuple_xy = (80, 25)
|
|
|
- return tuple_xy
|
|
|
-
|
|
|
-
|
|
|
-def _get_terminal_size_windows():
|
|
|
- try:
|
|
|
- from ctypes import windll, create_string_buffer
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- h = windll.kernel32.GetStdHandle(-12)
|
|
|
- csbi = create_string_buffer(22)
|
|
|
- res = windll.kernel32.GetConsoleScreenBufferInfo(h, csbi)
|
|
|
- if res:
|
|
|
- (bufx, bufy, curx, cury, wattr,
|
|
|
- left, top, right, bottom,
|
|
|
- maxx, maxy) = struct.unpack("hhhhHhhhhhh", csbi.raw)
|
|
|
- sizex = right - left + 1
|
|
|
- sizey = bottom - top + 1
|
|
|
- return sizex, sizey
|
|
|
- except:
|
|
|
- pass
|
|
|
-
|
|
|
-
|
|
|
-def _get_terminal_size_tput():
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+ import webbrowser
|
|
|
try:
|
|
|
- cols = int(sp.check_call(shlex.split('tput cols')))
|
|
|
- rows = int(sp.check_call(shlex.split('tput lines')))
|
|
|
- return (cols, rows)
|
|
|
- except:
|
|
|
- pass
|
|
|
-
|
|
|
-
|
|
|
-def _get_terminal_size_linux():
|
|
|
- def ioctl_GWINSZ(fd):
|
|
|
- try:
|
|
|
- import fcntl
|
|
|
- import termios
|
|
|
- cr = struct.unpack('hh',
|
|
|
- fcntl.ioctl(fd, termios.TIOCGWINSZ, '1234'))
|
|
|
- return cr
|
|
|
- except:
|
|
|
- pass
|
|
|
- cr = ioctl_GWINSZ(0) or ioctl_GWINSZ(1) or ioctl_GWINSZ(2)
|
|
|
- if not cr:
|
|
|
- try:
|
|
|
- fd = os.open(os.ctermid(), os.O_RDONLY)
|
|
|
- cr = ioctl_GWINSZ(fd)
|
|
|
- os.close(fd)
|
|
|
- except:
|
|
|
- pass
|
|
|
- if not cr:
|
|
|
- try:
|
|
|
- cr = (os.environ['LINES'], os.environ['COLUMNS'])
|
|
|
- except:
|
|
|
- return None
|
|
|
- return int(cr[1]), int(cr[0])
|
|
|
-
|
|
|
-
|
|
|
-def gettermsize():
|
|
|
- if sys.stdout.isatty():
|
|
|
- s = struct.pack("HHHH", 0, 0, 0, 0)
|
|
|
- f = sys.stdout.fileno()
|
|
|
- x = fcntl.ioctl(f, termios.TIOCGWINSZ, s)
|
|
|
- rows, cols, width, height = struct.unpack("HHHH", x)
|
|
|
- return rows, cols
|
|
|
- else:
|
|
|
- return 40, 80
|
|
|
+ webbrowser.open(link)
|
|
|
+ except webbrowser.Error as E:
|
|
|
+ print("Executing open_url failed with:\n", e)
|
|
|
|
|
|
|
|
|
def getinput(question, default="", reader=raw_input,
|