mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
52c4582f7b
Co-authored-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com>
57 lines
2.7 KiB
Python
57 lines
2.7 KiB
Python
# OAuth2 mock service
|
|
#
|
|
# Dovecot will query this service with the token it was provided.
|
|
# If the session for the token is valid, a response provides an attribute to perform a UserDB lookup on (default: email).
|
|
|
|
import json
|
|
import base64
|
|
from http.server import BaseHTTPRequestHandler, HTTPServer
|
|
|
|
# OAuth2.0 Bearer token (paste into https://jwt.io/ to check it's contents).
|
|
# You should never need to edit this unless you REALLY need to change the issuer.
|
|
token = "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwOi8vcHJvdmlkZXIuZXhhbXBsZS50ZXN0OjgwMDAvIiwic3ViIjoiODJjMWMzMzRkY2M2ZTMxMWFlNGFhZWJmZTk0NmM1ZTg1OGYwNTVhZmYxY2U1YTM3YWE3Y2M5MWFhYjE3ZTM1YyIsImF1ZCI6Im1haWxzZXJ2ZXIiLCJ1aWQiOiI4OU4zR0NuN1M1Y090WkZNRTVBeVhNbmxURFdVcnEzRmd4YWlyWWhFIn0.zuCytArbphhJn9XT_y9cBdGqDCNo68tBrtOwPIsuKNyF340SaOuZa0xarZofygytdDpLtYr56QlPTKImi-n1ZWrHkRZkwrQi5jQ-j_n2hEAL0vUToLbDnXYfc5q2w7z7X0aoCmiK8-fV7Kx4CVTM7riBgpElf6F3wNAIcX6R1ijUh6ISCL0XYsdogf8WUNZipXY-O4R7YHXdOENuOp3G48hWhxuUh9PsUqE5yxDwLsOVzCTqg9S5gxPQzF2eCN9J0I2XiIlLKvLQPIZ2Y_K7iYvVwjpNdgb4xhm9wuKoIVinYkF_6CwIzAawBWIDJAbix1IslkUPQMGbupTDtOgTiQ"
|
|
|
|
# This is the string the user-facing client (e.g. Roundcube) should send via IMAP to Dovecot.
|
|
# We include the user and the above token separated by '\1' chars as per the XOAUTH2 spec.
|
|
xoauth2 = base64.b64encode(f"user=user1@localhost.localdomain\1auth=Bearer {token}\1\1".encode("utf-8"))
|
|
# If changing the user above, use the new output from the below line with the contents of the AUTHENTICATE command in test/test-files/auth/imap-oauth2-auth.txt
|
|
print("XOAUTH2 string: " + str(xoauth2))
|
|
|
|
|
|
class HTTPRequestHandler(BaseHTTPRequestHandler):
|
|
def do_GET(self):
|
|
auth = self.headers.get("Authorization")
|
|
if auth is None:
|
|
self.send_response(401)
|
|
self.end_headers()
|
|
return
|
|
if len(auth.split()) != 2:
|
|
self.send_response(401)
|
|
self.end_headers()
|
|
return
|
|
auth = auth.split()[1]
|
|
# Valid session, respond with JSON containing the expected `email` claim to match as Dovecot username:
|
|
if auth == token:
|
|
self.send_response(200)
|
|
self.send_header('Content-Type', 'application/json')
|
|
self.end_headers()
|
|
self.wfile.write(json.dumps({
|
|
"email": "user1@localhost.localdomain",
|
|
"email_verified": True,
|
|
"sub": "82c1c334dcc6e311ae4aaebfe946c5e858f055aff1ce5a37aa7cc91aab17e35c"
|
|
}).encode("utf-8"))
|
|
else:
|
|
self.send_response(401)
|
|
self.end_headers()
|
|
|
|
server = HTTPServer(('', 80), HTTPRequestHandler)
|
|
print("Starting server", flush=True)
|
|
|
|
try:
|
|
server.serve_forever()
|
|
except KeyboardInterrupt:
|
|
print()
|
|
print("Received keyboard interrupt")
|
|
finally:
|
|
print("Exiting")
|