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
|
#!/usr/bin/env python
import json
import re
from http.server import BaseHTTPRequestHandler
class MockGithubRequestHandler(BaseHTTPRequestHandler):
"""Small HTTP server used to mock out certain GitHub API routes that vault requests in the github auth method."""
def do_GET(self):
"""Dispatch GET requests to associated mock GitHub 'handlers'."""
self.send_response(200)
self.send_header("Content-Type", "application/json")
self.end_headers()
if "/orgs/" in self.path:
org = re.match(r"\/orgs\/(?P<org>\S+)", self.path)["org"]
self.do_organization(org)
elif self.path == "/user":
self.do_user()
elif self.path == "/user/orgs?per_page=100":
self.do_organizations_list()
elif self.path == "/user/teams?per_page=100":
self.do_team_list()
return
def log_message(self, format, *args):
"""Squelch any HTTP logging."""
return
def do_user(self):
"""Return the bare minimum GitHub user data needed for Vault's github auth method."""
response = {
"login": "hvac-dude",
"id": 1,
}
self.wfile.write(json.dumps(response).encode())
def do_organizations_list(self):
"""Return the bare minimum GitHub organization data needed for Vault's github auth method.
Only returns data if the request Authorization header has a contrived github token value of "valid-token".
"""
response = []
if self.headers.get("Authorization") == "Bearer valid-token":
response.append(
{
"login": "hvac",
"id": 1,
}
)
self.wfile.write(json.dumps(response).encode())
def do_organization(self, org):
response = {
"login": org,
"id": 1,
}
self.wfile.write(json.dumps(response).encode())
def do_team_list(self):
"""Return the bare minimum GitHub team data needed for Vault's github auth method.
Only returns data if the request Authorization header has a contrived github token value of "valid-token".
"""
response = []
if self.headers.get("Authorization") == "Bearer valid-token":
response.append(
{
"name": "hvac-team",
"slug": "hvac-team",
"organization": {
"id": 1,
},
}
)
self.wfile.write(json.dumps(response).encode())
|