2017-04-07 19:13:00 +00:00
|
|
|
from urllib.error import URLError
|
2017-04-04 09:51:37 +00:00
|
|
|
import urllib.request as url
|
|
|
|
from hashlib import sha256
|
|
|
|
import json
|
|
|
|
|
|
|
|
|
2017-04-07 19:13:00 +00:00
|
|
|
class BBJ(object):
|
2017-04-04 09:51:37 +00:00
|
|
|
"""
|
|
|
|
A python implementation to the BBJ api: all of its endpoints are
|
|
|
|
mapped to native methods, it maps error responses to exceptions, and
|
|
|
|
it includes helper functions for several common patterns.
|
|
|
|
|
|
|
|
It should be noted that endpoints utilizing usermaps are returned as
|
|
|
|
tuples, where [0] is the value and [1] is the usermap dictionary.
|
|
|
|
Methods who do this will mention it in their documentation.
|
|
|
|
You can call them like `threads, usermap = bbj.thread_index()`
|
|
|
|
|
|
|
|
__init__ can take a host string and a port value (which can be
|
2017-04-05 22:18:12 +00:00
|
|
|
either int or str). It defaults to "127.0.0.1" and 7099, expanding
|
|
|
|
out to http://127.0.0.1:7099/.
|
2017-04-04 09:51:37 +00:00
|
|
|
|
|
|
|
Standard library exceptions are used, but several new attributes are
|
|
|
|
attached to them before raising: .code, .description, and .body.
|
|
|
|
code and description map the same values returned by the api. body
|
|
|
|
is the raw error object. Classes are mapped as follows:
|
|
|
|
|
|
|
|
0, 1, 2: ChildProcessError
|
|
|
|
3: ValueError
|
|
|
|
4: UserWarning
|
|
|
|
5: ConnectionRefusedError
|
|
|
|
|
|
|
|
attributes can be accessed as follows:
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = bbj.endpoint():
|
|
|
|
except UserWarning as e:
|
|
|
|
assert e.code == 4
|
|
|
|
print(e.description)
|
|
|
|
# want the raw error object? thats weird, but whatever.
|
|
|
|
return e.body
|
|
|
|
|
|
|
|
See the offical API error documentation for more details.
|
|
|
|
"""
|
2017-04-05 22:18:12 +00:00
|
|
|
def __init__(self, host="127.0.0.1", port=7099):
|
2017-04-07 19:13:00 +00:00
|
|
|
"""
|
|
|
|
Optionally takes port and host as kwargs. It will immediately
|
|
|
|
try to resolve a connection to the server, if its down, it
|
|
|
|
raises a URLError.
|
|
|
|
|
|
|
|
Important attributes:
|
|
|
|
.base is a string url for which all requests go to. It is
|
|
|
|
constructed on instantiation and the standalone host/port
|
|
|
|
are not stored.
|
|
|
|
|
|
|
|
.user_{name,auth} can be None, or strings of the username
|
|
|
|
and the authorization hash, respectively. When both values
|
|
|
|
are present (ie both resolve to True in a boolean context),
|
|
|
|
the request method sends this info with all its requests
|
|
|
|
and the user is effectively "logged in".
|
|
|
|
|
|
|
|
.send_auth, defaulting to True, determines whether to send
|
|
|
|
authorization information when it is available (see above).
|
|
|
|
If you set this to False, anonymous network usage is
|
|
|
|
guaranteed.
|
|
|
|
"""
|
2017-04-04 09:51:37 +00:00
|
|
|
self.base = "http://{}:{}/api/%s".format(host, port)
|
2017-04-05 18:09:38 +00:00
|
|
|
self.user_name = self.user_auth = None
|
2017-04-04 09:51:37 +00:00
|
|
|
self.send_auth = True
|
2017-04-07 19:13:00 +00:00
|
|
|
try:
|
|
|
|
self("get_me")
|
|
|
|
except URLError:
|
|
|
|
raise URLError("Cannot connect to %s (is the server down?)" % self.base[0:-2])
|
2017-04-04 09:51:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
2017-04-07 19:13:00 +00:00
|
|
|
"""
|
|
|
|
Calling the network object itself is exactly the same as calling
|
|
|
|
it's .request() method.
|
|
|
|
"""
|
2017-04-04 09:51:37 +00:00
|
|
|
return self.request(*args, **kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
def request(self, endpoint, **params):
|
2017-04-07 19:13:00 +00:00
|
|
|
"""
|
|
|
|
Takes the string endpoint, and a variable number of kwargs
|
|
|
|
to pass into the request body. The parameters required will
|
|
|
|
vary by endpoint, and if they are wrong, ValueError will be
|
|
|
|
raised.
|
|
|
|
|
|
|
|
However, one kwarg is magical here: no_auth. If you include
|
|
|
|
this, its not sent with the request, it just disables the
|
|
|
|
sending of auth info when it is available (for more info,
|
|
|
|
read __init__'s documentation).
|
|
|
|
|
|
|
|
You don't have to use this method yourself, the other methods
|
|
|
|
must use this as a base though.
|
|
|
|
|
|
|
|
See raise_exception() for details on how this function reacts
|
|
|
|
to various failure conditions.
|
|
|
|
"""
|
2017-04-04 09:51:37 +00:00
|
|
|
headers = {"Content-Type": "application/json"}
|
|
|
|
if params.get("no_auth"):
|
|
|
|
params.pop("no_auth")
|
|
|
|
|
|
|
|
elif all([self.send_auth, self.user_name, self.user_auth]):
|
|
|
|
headers.update({"User": self.user_name, "Auth": self.user_auth})
|
|
|
|
|
|
|
|
data = bytes(json.dumps(params), "utf8")
|
|
|
|
request = url.Request(
|
|
|
|
self.base % endpoint,
|
|
|
|
data=data,
|
|
|
|
headers=headers)
|
|
|
|
|
|
|
|
try:
|
|
|
|
with url.urlopen(request) as _r:
|
|
|
|
response = _r.read()
|
|
|
|
except url.HTTPError as e:
|
|
|
|
response = e.file.read()
|
|
|
|
value = json.loads(str(response, "utf8"))
|
|
|
|
|
|
|
|
if value and value.get("error"):
|
|
|
|
self.raise_exception(value["error"])
|
|
|
|
|
|
|
|
return value
|
|
|
|
|
|
|
|
|
|
|
|
def raise_exception(self, error_object):
|
|
|
|
"""
|
2017-04-07 19:13:00 +00:00
|
|
|
Takes an API error opbject and raises the appropriate exception,
|
|
|
|
attaching the code and description to the object. The classes
|
|
|
|
are mapped to the codes as follows:
|
|
|
|
|
|
|
|
0, 1, 2: ChildProcessError (internal server, http, and json errors)
|
|
|
|
3: ValueError (invalid endpoint arguments)
|
|
|
|
4: UserWarning (illegal values provided by user, not a real "error")
|
|
|
|
5: ConnectionRefusedError (authorizations declined)
|
|
|
|
|
|
|
|
To capture a code and description in your client:
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = bbj.endpoint():
|
|
|
|
except UserWarning as e:
|
|
|
|
assert e.code == 4
|
|
|
|
print(e.description)
|
|
|
|
# want the raw error object? thats weird, but whatever.
|
|
|
|
return e.body
|
2017-04-04 09:51:37 +00:00
|
|
|
"""
|
|
|
|
description = error_object["description"]
|
|
|
|
code = error_object["code"]
|
|
|
|
if code in [0, 1, 2]:
|
|
|
|
e = ChildProcessError(description)
|
|
|
|
elif code == 3:
|
|
|
|
e = ValueError(description)
|
|
|
|
elif code == 4:
|
|
|
|
e = UserWarning(description)
|
|
|
|
elif code == 5:
|
|
|
|
e = ConnectionRefusedError(description)
|
|
|
|
e.code, e.description, e.body = code, description, error_object
|
|
|
|
raise e
|
|
|
|
|
|
|
|
|
|
|
|
def validate(self, key, value, exception=AssertionError):
|
|
|
|
"""
|
|
|
|
Uses the server's db_sanity_check method to verify the validty
|
2017-04-07 19:13:00 +00:00
|
|
|
of `value` by `key`. If it is invalid, kwarg exception (default
|
2017-04-04 09:51:37 +00:00
|
|
|
AssertionError) is raised with the exception containing the
|
2017-04-05 18:09:38 +00:00
|
|
|
attribute .description as the server's reason. Exception can
|
2017-04-07 19:13:00 +00:00
|
|
|
be a False value to just return boolean False.
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
|
|
|
|
# this will fail bacause the server wont allow newlines in usernames.
|
|
|
|
try:
|
|
|
|
bbj.validate("user_name", "des\nvox")
|
|
|
|
except AssertionError as e:
|
|
|
|
print(e.description)
|
|
|
|
|
|
|
|
# or you can handle it as a boolean like this:
|
|
|
|
is_okay = bbj.validate("title", "teacups and roses <3", exception=None)
|
2017-04-04 09:51:37 +00:00
|
|
|
"""
|
|
|
|
response = self(
|
|
|
|
"db_sanity_check",
|
|
|
|
no_auth=True,
|
|
|
|
key=key,
|
|
|
|
value=value
|
|
|
|
)
|
|
|
|
|
|
|
|
if not response["data"]["bool"]:
|
2017-04-05 18:09:38 +00:00
|
|
|
if not exception:
|
|
|
|
return False
|
2017-04-04 09:51:37 +00:00
|
|
|
description = response["data"]["description"]
|
|
|
|
error = exception(description)
|
|
|
|
error.description = description
|
|
|
|
raise error
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def validate_all(self, keys_and_values, exception=AssertionError):
|
|
|
|
"""
|
2017-04-07 19:13:00 +00:00
|
|
|
Takes a single iterable object as its argument, containing
|
|
|
|
assertions to make, and applies `validate` to each pair.
|
|
|
|
See `validate` for full details. This method also takes
|
|
|
|
the kwarg `exception`, and passes it to validate.
|
|
|
|
|
|
|
|
Returns a list containing each response from validate. Under
|
|
|
|
successful circumstances, each element will be True. If you
|
|
|
|
specify exception=None, then the elements can contain false
|
|
|
|
as well.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
values = [
|
|
|
|
("title", "the wea\nther sucks"),
|
|
|
|
("body", "rain is gross lmao")
|
|
|
|
]
|
|
|
|
|
|
|
|
try:
|
|
|
|
bbj.validate_all(values)
|
|
|
|
except AssertionError as e:
|
|
|
|
print(e.description)
|
|
|
|
|
|
|
|
# as booleans:
|
|
|
|
validated = bbj.validate_all(values, exception=None)
|
|
|
|
# => [False, True]
|
|
|
|
assert all(validated)
|
2017-04-04 09:51:37 +00:00
|
|
|
|
2017-04-07 19:13:00 +00:00
|
|
|
"""
|
|
|
|
return [
|
|
|
|
self.validate(key, value, exception) for key, value in keys_and_values
|
|
|
|
]
|
2017-04-04 09:51:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
def set_credentials(self, user_name, user_auth, hash_auth=True, check_validity=True):
|
|
|
|
"""
|
|
|
|
Internalizes user_name and user_auth. Unless hash_auth=False is
|
|
|
|
specified, user_auth is assumed to be an unhashed password
|
|
|
|
string and it gets hashed with sha256. If you want to handle
|
|
|
|
hashing yourself, make sure to disable that.
|
|
|
|
|
|
|
|
Unless check_validity is set to false, the new credentials are
|
|
|
|
sent to the server and a ConnectionRefusedError is raised if
|
|
|
|
they do not match server authentication data. ValueError is
|
|
|
|
raised if the credentials contain illegal values, or the
|
2017-04-07 19:13:00 +00:00
|
|
|
specified user is not registered. If you need to differentiate
|
|
|
|
the two, using the method `user_is_registered` might be more
|
|
|
|
your speed.
|
|
|
|
|
|
|
|
On success, True is returned and the values are set. Subsequent
|
|
|
|
requests will now be authorized for the user (see request()'s
|
|
|
|
documentation for details on how to override this behavior
|
|
|
|
when necessary)
|
|
|
|
|
|
|
|
Examples:
|
|
|
|
try:
|
|
|
|
bbj.set_credentials("desvox", "i has sandvich")
|
|
|
|
except ConnectionRefusedError:
|
|
|
|
# bad auth info
|
|
|
|
except ValueError:
|
|
|
|
# paramter validation failed or the user is not registered
|
|
|
|
|
|
|
|
# you can handle hashing yourself if you want
|
|
|
|
password = input("Enter your password:")
|
|
|
|
bbj.set_credentials(
|
|
|
|
"desvox",
|
|
|
|
sha256(bytes(password, "utf8")).hexdigest(),
|
|
|
|
hash_auth=False
|
|
|
|
)
|
2017-04-04 09:51:37 +00:00
|
|
|
"""
|
|
|
|
if hash_auth:
|
|
|
|
user_auth = sha256(bytes(user_auth, "utf8")).hexdigest()
|
|
|
|
|
|
|
|
if check_validity and not self.validate_credentials(user_name, user_auth):
|
2017-04-05 18:09:38 +00:00
|
|
|
self.user_auth = self.user_name = None
|
2017-04-04 09:51:37 +00:00
|
|
|
raise ConnectionRefusedError("Auth and User do not match")
|
|
|
|
|
|
|
|
self.user_auth = user_auth
|
|
|
|
self.user_name = user_name
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2017-04-07 19:13:00 +00:00
|
|
|
def validate_credentials(self, user_name, user_auth, exception=True):
|
2017-04-04 09:51:37 +00:00
|
|
|
"""
|
|
|
|
Pings the server to check that user_name can be authenticated with
|
|
|
|
user_auth. Raises ConnectionRefusedError if they cannot. Raises
|
|
|
|
ValueError if the credentials contain illegal values.
|
2017-04-07 19:13:00 +00:00
|
|
|
|
|
|
|
Alternatively, you can specify exception=False to just return a
|
|
|
|
boolean False if the credentials are incorrect. Will still raise
|
|
|
|
a ValueError if the parameters are illegal.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
# this method DOES NOT take a password string. it must be hashed.
|
|
|
|
try: validate_credentials("desvox", hashed_password)
|
|
|
|
except ConnectionRefusedError:
|
|
|
|
...
|
|
|
|
except ValueError:
|
|
|
|
...
|
|
|
|
|
|
|
|
# as a boolean:
|
|
|
|
is_okay = bbj.validate_credentials("desvox", hashed_password, exception=False)
|
2017-04-04 09:51:37 +00:00
|
|
|
"""
|
|
|
|
self.validate_all([
|
|
|
|
("user_name", user_name),
|
|
|
|
("auth_hash", user_auth)
|
|
|
|
], ValueError)
|
2017-04-07 19:13:00 +00:00
|
|
|
try:
|
|
|
|
response = self("check_auth",
|
|
|
|
no_auth=True,
|
|
|
|
target_user=user_name,
|
|
|
|
target_hash=user_auth
|
|
|
|
)
|
|
|
|
return response["data"]
|
|
|
|
|
|
|
|
except ConnectionRefusedError as e:
|
|
|
|
if exception:
|
|
|
|
raise e
|
|
|
|
return False
|
2017-04-04 09:51:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
def user_is_registered(self, user_name):
|
|
|
|
"""
|
|
|
|
Returns True or False whether user_name is registered
|
|
|
|
into the system.
|
|
|
|
"""
|
2017-04-05 18:09:38 +00:00
|
|
|
response = self(
|
2017-04-04 09:51:37 +00:00
|
|
|
"user_is_registered",
|
|
|
|
no_auth=True,
|
|
|
|
target_user=user_name
|
2017-04-05 18:09:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
return response["data"]
|
2017-04-04 09:51:37 +00:00
|
|
|
|
|
|
|
|
2017-04-05 21:33:25 +00:00
|
|
|
|
2017-04-05 18:09:38 +00:00
|
|
|
def user_register(self, user_name, user_auth, hash_auth=True, set_as_user=True):
|
2017-04-04 09:51:37 +00:00
|
|
|
"""
|
|
|
|
Register user_name into the system with user_auth. Unless hash_auth
|
|
|
|
is set to false, user_auth should be a password string.
|
2017-04-05 18:09:38 +00:00
|
|
|
|
2017-04-07 19:13:00 +00:00
|
|
|
When set_as_user is True, the newly registered user is internalized
|
2017-04-05 18:09:38 +00:00
|
|
|
and subsequent uses of the object will be authorized for them.
|
2017-04-07 19:13:00 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
|
|
|
|
try:
|
|
|
|
bbj.user_register("desvox", "sandvich")
|
|
|
|
except UserWarning as e:
|
|
|
|
# show this to users. always.
|
|
|
|
print(e.description)
|
|
|
|
|
|
|
|
# the object is now also set for this user...
|
|
|
|
assert bbj.get_me()["user_name"] == "desvox"
|
|
|
|
# ...unless you call it like this:
|
|
|
|
# bbj.user_register("desvox", "sandvich", set_as_user=False)
|
2017-04-04 09:51:37 +00:00
|
|
|
"""
|
2017-04-05 18:09:38 +00:00
|
|
|
if hash_auth:
|
|
|
|
user_auth = sha256(bytes(user_auth, "utf8")).hexdigest()
|
|
|
|
|
2017-04-07 19:13:00 +00:00
|
|
|
response = self("user_register",
|
2017-04-05 18:09:38 +00:00
|
|
|
no_auth=True,
|
|
|
|
user_name=user_name,
|
|
|
|
auth_hash=user_auth
|
|
|
|
)["data"]
|
|
|
|
|
|
|
|
assert all([
|
|
|
|
user_auth == response["auth_hash"],
|
|
|
|
user_name == response["user_name"]
|
|
|
|
])
|
|
|
|
|
|
|
|
if set_as_user:
|
|
|
|
self.user_name = user_name
|
|
|
|
self.user_auth = user_auth
|
|
|
|
|
|
|
|
return response
|
2017-04-04 09:51:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
def thread_index(self):
|
|
|
|
"""
|
|
|
|
Returns a tuple where [0] is a list of all threads ordered by
|
|
|
|
most recently interacted, and [1] is a usermap object.
|
2017-04-07 19:13:00 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
threads, usermap = bbj.thread_index()
|
|
|
|
for thread in threads:
|
|
|
|
author_id = thread["author"]
|
|
|
|
print(usermap[author_id]["user_name"])
|
2017-04-04 09:51:37 +00:00
|
|
|
"""
|
|
|
|
response = self("thread_index")
|
|
|
|
return response["data"], response["usermap"]
|
2017-04-05 18:09:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
def thread_load(self, thread_id):
|
|
|
|
"""
|
|
|
|
Returns a tuple where [0] is a thread object and [1] is a usermap object.
|
2017-04-07 19:13:00 +00:00
|
|
|
|
|
|
|
Example:
|
|
|
|
thread, usermap = bbj.thread_load(some_id)
|
|
|
|
for message in thread["messages"]:
|
|
|
|
author_id = message["author"]
|
|
|
|
print(usermap[author_id]["user_name"])
|
|
|
|
print(message["body"])
|
2017-04-05 18:09:38 +00:00
|
|
|
"""
|
|
|
|
response = self("thread_load", thread_id=thread_id)
|
|
|
|
return response["data"], response["usermap"]
|