Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to slack_sdk and add support to ignore users and send files #428

Merged
merged 8 commits into from
Mar 19, 2021
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ Config.py is where all of your non-sensitive settings should go. This includes
- `ENABLE_INTERNAL_ENCRYPTION`: the option to turn off internal encryption (not recommended, but you can do it.)
- `PROXY_URL`: Proxy server to use, consider exporting it as `WILL_PROXY_URL` environment variable, if it contains sensitive information
- `ACL`: Define arbitrary groups of users which can be used to restrict access to certain Will commands. See [access control](plugins/builtins/#access-control) for details.
- `IGNORED_USERS`: A list of Slack userids which should be ignored. Particularly useful to prevent bots from talking to each other. Slack only.
- and all of your non-sensitive plugin settings.


Expand Down
2 changes: 1 addition & 1 deletion will/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "2.1.3"
VERSION = "2.2.0"
66 changes: 34 additions & 32 deletions will/backends/encryption/aes.py
Original file line number Diff line number Diff line change
@@ -1,65 +1,67 @@
'Encrypt stored data'

import binascii
import base64
import codecs
import dill as pickle
import hashlib
import logging
from Crypto.Cipher import AES
import random
import os
import traceback

import dill as pickle
from Crypto.Cipher import AES

from will import settings
from will.backends.encryption.base import WillBaseEncryptionBackend

# pylint: disable=no-member

BS = 16
key = hashlib.sha256(settings.SECRET_KEY.encode("utf-8")).digest()


def pad(s):
s = "%s%s" % (s.decode("utf-8"), ((BS - len(s) % BS) * "~"))
return s
def pad(s: bytes) -> str:
'''Ensure the data to be encrypted has sufficient padding.
Arbitrarily adding ~ to the end, so your message better not end with ~.'''
return "%s%s" % (s.decode("utf-8"), ((BS - len(s) % BS) * "~"))


def unpad(s):
while s.endswith(str.encode("~")):
s = s[:-1]
return s
def unpad(s: bytes) -> bytes:
'Removes all ~ on the end of the message.'
return s.rstrip(b'~')


class AESEncryption(WillBaseEncryptionBackend):

@classmethod
def encrypt_to_b64(cls, raw):
'AES encryption backend'
@staticmethod
def encrypt_to_b64(raw):
'encrypt and b64-encode data'
try:
enc = binascii.b2a_base64(pickle.dumps(raw, -1))
if settings.ENABLE_INTERNAL_ENCRYPTION:
iv = binascii.b2a_hex(os.urandom(8))
cipher = AES.new(key, AES.MODE_CBC, iv)
enc = binascii.b2a_base64(cipher.encrypt(pad(enc)))
return "%s/%s" % (iv.decode("utf-8"), enc.decode("utf-8"))
else:
return enc
except:
logging.critical("Error preparing message for the wire: \n%s" % traceback.format_exc())
return enc
except Exception:
logging.exception("Error preparing message for the wire: \n%s", raw)
return None

@classmethod
def decrypt_from_b64(cls, raw_enc):
@staticmethod
def decrypt_from_b64(enc):
'decrypt b64-encoded data'
try:
BrianGallew marked this conversation as resolved.
Show resolved Hide resolved
if settings.ENABLE_INTERNAL_ENCRYPTION:
iv = raw_enc[:BS]
enc = raw_enc[BS+1:]
if b'/' in enc and enc.index(b'/') == BS:
iv = enc[:BS]
encrypted_data = enc[BS+1:]
cipher = AES.new(key, AES.MODE_CBC, iv)
enc = unpad(cipher.decrypt(binascii.a2b_base64(enc)))
return pickle.loads(binascii.a2b_base64(enc))
decrypted_data = unpad(cipher.decrypt(binascii.a2b_base64(encrypted_data)))
return pickle.loads(binascii.a2b_base64(decrypted_data))
except (KeyboardInterrupt, SystemExit):
pass
except:
logging.warn("Error decrypting. Attempting unencrypted load to ease migration.")
return pickle.loads(binascii.a2b_base64(raw_enc))
except Exception:
logging.debug("Error decrypting. Attempting unencrypted load to ease migration.")
return pickle.loads(binascii.a2b_base64(enc))


def bootstrap(settings):
return AESEncryption(settings)
def bootstrap(encryption_settings):
'Returns the encryption module'
return AESEncryption(encryption_settings)
5 changes: 5 additions & 0 deletions will/backends/io_adapters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ def normalize_incoming_event(self, event):

def handle_incoming_event(self, event):
try:
user_id = event.get('user')
if user_id in getattr(settings, 'IGNORED_USERS', list()):
logging.debug('Ignored %s, %s', user_id, event)
return

m = self.normalize_incoming_event(event)
if m:
self.pubsub.publish("message.incoming", m, reference_message=m)
Expand Down
Loading