-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from FantasyTeddy/local-test
Enable local test execution with `docker-compose`
- Loading branch information
Showing
5 changed files
with
140 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
version: "3" | ||
|
||
services: | ||
functions: | ||
image: supabase/edge-runtime:v1.30.0 | ||
ports: | ||
- "9000:9000" | ||
environment: | ||
JWT_SECRET: "37c304f8-51aa-419a-a1af-06154e63707a" | ||
VERIFY_JWT: "true" | ||
volumes: | ||
- ./supabase/functions:/home/deno/functions:Z | ||
command: | ||
- start | ||
- --main-service | ||
- /home/deno/functions/main | ||
restart: unless-stopped |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
import { serve } from 'https://deno.land/std@0.131.0/http/server.ts' | ||
import * as jose from 'https://deno.land/x/jose@v4.14.4/index.ts' | ||
|
||
console.log('main function started') | ||
|
||
const JWT_SECRET = Deno.env.get('JWT_SECRET') | ||
const VERIFY_JWT = Deno.env.get('VERIFY_JWT') === 'true' | ||
|
||
function getAuthToken(req: Request) { | ||
const authHeader = req.headers.get('authorization') | ||
if (!authHeader) { | ||
throw new Error('Missing authorization header') | ||
} | ||
const [bearer, token] = authHeader.split(' ') | ||
if (bearer !== 'Bearer') { | ||
throw new Error(`Auth header is not 'Bearer {token}'`) | ||
} | ||
return token | ||
} | ||
|
||
async function verifyJWT(jwt: string): Promise<boolean> { | ||
const encoder = new TextEncoder() | ||
const secretKey = encoder.encode(JWT_SECRET) | ||
try { | ||
await jose.jwtVerify(jwt, secretKey) | ||
} catch (err) { | ||
console.error(err) | ||
return false | ||
} | ||
return true | ||
} | ||
|
||
serve(async (req: Request) => { | ||
if (req.method !== 'OPTIONS' && VERIFY_JWT) { | ||
try { | ||
const token = getAuthToken(req) | ||
const isValidJWT = await verifyJWT(token) | ||
|
||
if (!isValidJWT) { | ||
return new Response(JSON.stringify({ msg: 'Invalid JWT' }), { | ||
status: 401, | ||
headers: { 'Content-Type': 'application/json' }, | ||
}) | ||
} | ||
} catch (e) { | ||
console.error(e) | ||
return new Response(JSON.stringify({ msg: e.toString() }), { | ||
status: 401, | ||
headers: { 'Content-Type': 'application/json' }, | ||
}) | ||
} | ||
} | ||
|
||
const url = new URL(req.url) | ||
const { pathname } = url | ||
const path_parts = pathname.split('/') | ||
const service_name = path_parts[1] | ||
|
||
if (!service_name || service_name === '') { | ||
const error = { msg: 'missing function name in request' } | ||
return new Response(JSON.stringify(error), { | ||
status: 400, | ||
headers: { 'Content-Type': 'application/json' }, | ||
}) | ||
} | ||
|
||
const servicePath = `/home/deno/functions/${service_name}` | ||
console.error(`serving the request with ${servicePath}`) | ||
|
||
const memoryLimitMb = 150 | ||
const workerTimeoutMs = 1 * 60 * 1000 | ||
const noModuleCache = false | ||
const importMapPath = null | ||
const envVarsObj = Deno.env.toObject() | ||
const envVars = Object.keys(envVarsObj).map((k) => [k, envVarsObj[k]]) | ||
|
||
try { | ||
const worker = await EdgeRuntime.userWorkers.create({ | ||
servicePath, | ||
memoryLimitMb, | ||
workerTimeoutMs, | ||
noModuleCache, | ||
importMapPath, | ||
envVars, | ||
}) | ||
return await worker.fetch(req) | ||
} catch (e) { | ||
const error = { msg: e.toString() } | ||
return new Response(JSON.stringify(error), { | ||
status: 500, | ||
headers: { 'Content-Type': 'application/json' }, | ||
}) | ||
} | ||
}) |