2023-11-13 12:34:43 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
#
|
|
|
|
# Copyright (c) 2017 PySSB contributors (see AUTHORS for more details)
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
|
|
# copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
2017-05-25 10:47:01 +00:00
|
|
|
from base64 import b64encode
|
2023-11-14 04:00:03 +00:00
|
|
|
from collections import OrderedDict, namedtuple
|
|
|
|
import datetime
|
2017-05-25 10:47:01 +00:00
|
|
|
from hashlib import sha256
|
|
|
|
|
|
|
|
from simplejson import dumps, loads
|
|
|
|
|
2017-08-05 16:21:14 +00:00
|
|
|
from ssb.util import tag
|
|
|
|
|
2023-11-01 04:04:43 +00:00
|
|
|
OrderedMsg = namedtuple("OrderedMsg", ("previous", "author", "sequence", "timestamp", "hash", "content"))
|
2017-05-25 10:47:01 +00:00
|
|
|
|
|
|
|
|
2017-08-05 16:21:14 +00:00
|
|
|
class NoPrivateKeyException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2017-05-25 10:47:01 +00:00
|
|
|
def to_ordered(data):
|
|
|
|
smsg = OrderedMsg(**data)
|
|
|
|
return OrderedDict((k, getattr(smsg, k)) for k in smsg._fields)
|
|
|
|
|
|
|
|
|
2018-02-04 21:17:38 +00:00
|
|
|
def get_millis_1970():
|
|
|
|
return int(datetime.datetime.utcnow().timestamp() * 1000)
|
|
|
|
|
|
|
|
|
2017-08-05 16:21:14 +00:00
|
|
|
class Feed(object):
|
|
|
|
def __init__(self, public_key):
|
|
|
|
self.public_key = public_key
|
|
|
|
|
|
|
|
@property
|
|
|
|
def id(self):
|
2023-11-01 04:04:43 +00:00
|
|
|
return tag(self.public_key).decode("ascii")
|
2017-08-05 16:21:14 +00:00
|
|
|
|
2017-08-06 10:16:22 +00:00
|
|
|
def sign(self, msg):
|
2023-11-01 04:04:43 +00:00
|
|
|
raise NoPrivateKeyException("Cannot use remote identity to sign (no private key!)")
|
2017-08-05 16:21:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
class LocalFeed(Feed):
|
|
|
|
def __init__(self, private_key):
|
|
|
|
self.private_key = private_key
|
|
|
|
|
|
|
|
@property
|
|
|
|
def public_key(self):
|
|
|
|
return self.private_key.verify_key
|
|
|
|
|
|
|
|
def sign(self, msg):
|
|
|
|
return self.private_key.sign(msg).signature
|
|
|
|
|
|
|
|
|
2017-05-25 10:47:01 +00:00
|
|
|
class Message(object):
|
2017-08-05 16:21:14 +00:00
|
|
|
def __init__(self, feed, content, signature, sequence=1, timestamp=None, previous=None):
|
|
|
|
self.feed = feed
|
2017-05-25 10:47:01 +00:00
|
|
|
self.content = content
|
2017-08-05 17:32:01 +00:00
|
|
|
|
|
|
|
if signature is None:
|
|
|
|
raise ValueError("signature can't be None")
|
2017-08-05 16:21:14 +00:00
|
|
|
self.signature = signature
|
|
|
|
|
2017-05-25 10:47:01 +00:00
|
|
|
self.previous = previous
|
2017-08-05 16:21:14 +00:00
|
|
|
if self.previous:
|
|
|
|
self.sequence = self.previous.sequence + 1
|
|
|
|
else:
|
|
|
|
self.sequence = sequence
|
|
|
|
|
2018-02-04 21:17:38 +00:00
|
|
|
self.timestamp = get_millis_1970() if timestamp is None else timestamp
|
2017-05-25 10:47:01 +00:00
|
|
|
|
|
|
|
@classmethod
|
2017-08-05 16:21:14 +00:00
|
|
|
def parse(cls, data, feed):
|
2017-05-25 10:47:01 +00:00
|
|
|
obj = loads(data, object_pairs_hook=OrderedDict)
|
2023-11-01 04:04:43 +00:00
|
|
|
msg = cls(feed, obj["content"], timestamp=obj["timestamp"])
|
2017-08-06 10:16:22 +00:00
|
|
|
return msg
|
2017-05-25 10:47:01 +00:00
|
|
|
|
2017-08-05 18:01:17 +00:00
|
|
|
def serialize(self, add_signature=True):
|
2023-11-01 04:04:43 +00:00
|
|
|
return dumps(self.to_dict(add_signature=add_signature), indent=2).encode("utf-8")
|
2017-08-05 18:01:17 +00:00
|
|
|
|
2017-05-25 10:47:01 +00:00
|
|
|
def to_dict(self, add_signature=True):
|
2023-11-01 04:04:43 +00:00
|
|
|
obj = to_ordered(
|
|
|
|
{
|
|
|
|
"previous": self.previous.key if self.previous else None,
|
|
|
|
"author": self.feed.id,
|
|
|
|
"sequence": self.sequence,
|
|
|
|
"timestamp": self.timestamp,
|
|
|
|
"hash": "sha256",
|
|
|
|
"content": self.content,
|
|
|
|
}
|
|
|
|
)
|
2017-05-25 10:47:01 +00:00
|
|
|
|
|
|
|
if add_signature:
|
2023-11-01 04:04:43 +00:00
|
|
|
obj["signature"] = self.signature
|
2017-05-25 10:47:01 +00:00
|
|
|
return obj
|
|
|
|
|
|
|
|
def verify(self, signature):
|
|
|
|
return self.signature == signature
|
|
|
|
|
|
|
|
@property
|
|
|
|
def hash(self):
|
2017-08-05 18:01:17 +00:00
|
|
|
hash = sha256(self.serialize()).digest()
|
2023-11-01 04:04:43 +00:00
|
|
|
return b64encode(hash).decode("ascii") + ".sha256"
|
2017-05-25 10:47:01 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def key(self):
|
2023-11-01 04:04:43 +00:00
|
|
|
return "%" + self.hash
|
2017-08-05 16:21:14 +00:00
|
|
|
|
|
|
|
|
|
|
|
class LocalMessage(Message):
|
|
|
|
def __init__(self, feed, content, signature=None, sequence=1, timestamp=None, previous=None):
|
2017-08-05 17:32:01 +00:00
|
|
|
self.feed = feed
|
|
|
|
self.content = content
|
|
|
|
|
|
|
|
self.previous = previous
|
|
|
|
if self.previous:
|
|
|
|
self.sequence = self.previous.sequence + 1
|
|
|
|
else:
|
|
|
|
self.sequence = sequence
|
|
|
|
|
2018-02-04 21:17:38 +00:00
|
|
|
self.timestamp = get_millis_1970() if timestamp is None else timestamp
|
2017-08-05 17:32:01 +00:00
|
|
|
|
2017-08-05 16:21:14 +00:00
|
|
|
if signature is None:
|
2017-08-05 17:32:01 +00:00
|
|
|
self.signature = self._sign()
|
|
|
|
else:
|
|
|
|
self.signature = signature
|
2017-08-05 16:21:14 +00:00
|
|
|
|
2017-08-05 17:32:01 +00:00
|
|
|
def _sign(self):
|
2017-08-05 16:21:14 +00:00
|
|
|
# ensure ordering of keys and indentation of 2 characters, like ssb-keys
|
2017-08-05 18:01:17 +00:00
|
|
|
data = self.serialize(add_signature=False)
|
2023-11-01 04:04:43 +00:00
|
|
|
return (b64encode(bytes(self.feed.sign(data))) + b".sig.ed25519").decode("ascii")
|