1
1
mirror of https://github.com/r4sas/PBinCLI synced 2025-01-09 22:37:53 +00:00
PBinCLI/pbincli/utils.py
R4SAS 05c1938aa6
[codacy] except ValueError
Signed-off-by: R4SAS <r4sas@i2pmail.org>
2022-01-24 08:12:08 +03:00

44 lines
1000 B
Python

import json, ntpath, os, sys
class PBinCLIException(Exception):
pass
def PBinCLIError(message):
print("PBinCLI Error: {}".format(message), file=sys.stderr)
exit(1)
def path_leaf(path):
head, tail = ntpath.split(path)
return tail or ntpath.basename(head)
def check_readable(f):
# Checks if path exists and readable
if not os.path.exists(f) or not os.access(f, os.R_OK):
PBinCLIError("Error accessing path: {}".format(f))
def check_writable(f):
# Checks if path is writable
if not os.access(os.path.dirname(f) or ".", os.W_OK):
PBinCLIError("Path is not writable: {}".format(f))
def json_encode(s):
return json.dumps(s, separators=(',',':')).encode()
def validate_url_ending(s):
if not s.endswith('/'):
s = s + "/"
return s
def uri_validator(x):
from urllib.parse import urlparse
try:
result = urlparse(x)
return all([result.scheme, result.netloc])
except ValueError:
return False