1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158
|
from datetime import date, datetime
from base64 import b64encode
from string import ascii_letters as letters, digits
from sys import argv
from os import environ as env
from os.path import join, dirname, expanduser
from itertools import product
import json
import logging
import re
_LOGGER = logging.getLogger(__name__)
def read_config():
"""Read config from file."""
for directory, filename in product(
[
dirname(argv[0]),
expanduser("~"),
env.get("XDG_CONFIG_HOME", join(expanduser("~"), ".config")),
],
["voc.conf", ".voc.conf"],
):
try:
config = join(directory, filename)
_LOGGER.debug("checking for config file %s", config)
with open(config) as config:
return dict(
x.split(": ")
for x in config.read().strip().splitlines()
if not x.startswith("#")
)
except OSError:
continue
return {}
def obj_parser(obj):
"""Parse datetime."""
for key, val in obj.items():
try:
obj[key] = datetime.strptime(val, "%Y-%m-%dT%H:%M:%S%z")
except (TypeError, ValueError):
pass
return obj
def json_serialize(obj):
"""JSON serializer for objects not serializable by default json code"""
if isinstance(obj, (datetime, date)):
return obj.isoformat()
raise TypeError("Type %s not serializable" % type(obj))
def json_loads(s):
return json.loads(s, object_hook=obj_parser)
def find_path(src, path):
"""Simple navigation of a hierarchical dict structure using
XPATH-like syntax.
>>> find_path(dict(a=1), 'a')
1
>>> find_path(dict(a=1), '')
{'a': 1}
>>> find_path(dict(a=None), 'a')
>>> find_path(dict(a=1), 'b')
Traceback (most recent call last):
...
KeyError: 'b'
>>> find_path(dict(a=dict(b=1)), 'a.b')
1
>>> find_path(dict(a=dict(b=1)), 'a')
{'b': 1}
>>> find_path(dict(a=dict(b=1)), 'a.c')
Traceback (most recent call last):
...
KeyError: 'c'
"""
if not path:
return src
if isinstance(path, str):
path = path.split(".")
return find_path(src[path[0]], path[1:])
def is_valid_path(src, path):
"""
>>> is_valid_path(dict(a=1), 'a')
True
>>> is_valid_path(dict(a=1), '')
True
>>> is_valid_path(dict(a=1), None)
True
>>> is_valid_path(dict(a=1), 'b')
False
"""
try:
find_path(src, path)
return True
except KeyError:
return False
def owntracks_encrypt(msg, key):
try:
from libnacl import crypto_secretbox_KEYBYTES as keylen
from libnacl.secret import SecretBox as secret
key = key.encode("utf-8")
key = key[:keylen]
key = key.ljust(keylen, b"\0")
msg = msg.encode("utf-8")
ciphertext = secret(key).encrypt(msg)
ciphertext = b64encode(ciphertext)
ciphertext = ciphertext.decode("ascii")
return ciphertext
except ImportError:
exit("libnacl missing")
except OSError:
exit("libsodium missing")
def camel2slug(s):
"""Convert camelCase to camel_case.
>>> camel2slug('fooBar')
'foo_bar'
"""
return re.sub("([A-Z])", "_\\1", s).lower().lstrip("_")
def whitelisted(s, whitelist=letters + digits, substitute=""):
"""
>>> whitelisted("ab/cd#ef(gh")
'abcdefgh'
>>> whitelisted("ab/cd#ef(gh", substitute="_")
'ab_cd_ef_gh'
>>> whitelisted("ab/cd#ef(gh", substitute='')
'abcdefgh'
"""
return "".join(c if c in whitelist else substitute for c in s)
|