File size: 6,857 Bytes
5d3c01b | 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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | #!/usr/bin/env node
/**
* Upstash-compatible Redis REST proxy.
* Translates REST URL paths to raw Redis commands via redis npm package.
*
* Supports:
* GET /{command}/{arg1}/{arg2}/... β Redis command
* POST / β JSON body ["COMMAND", "arg1", ...]
* POST /pipeline β JSON body [["CMD1",...], ["CMD2",...]]
* POST /multi-exec β JSON body [["CMD1",...], ["CMD2",...]]
*
* Env:
* REDIS_URL - Redis connection string (default: redis://redis:6379)
* SRH_TOKEN - Bearer token for auth (default: none)
* PORT - Listen port (default: 80)
*/
import http from 'node:http';
import crypto from 'node:crypto';
import { createClient } from 'redis';
const REDIS_URL = process.env.SRH_CONNECTION_STRING || process.env.REDIS_URL || 'redis://redis:6379';
const TOKEN = process.env.SRH_TOKEN || '';
const PORT = parseInt(process.env.PORT || '80', 10);
// Redact userinfo before a connection string ever reaches stdout β REDIS_URL
// carries the Redis password (SRH_CONNECTION_STRING: redis://:<password>@host:port)
// and docker logs are readable by anyone with docker/compose access.
function maskRedisUrl(rawUrl) {
try {
const parsed = new URL(rawUrl);
if (parsed.password) parsed.password = '***';
if (parsed.username) parsed.username = '***';
return parsed.toString();
} catch {
return '<unparsable redis URL>';
}
}
const client = createClient({ url: REDIS_URL });
client.on('error', (err) => console.error('Redis error:', err.message));
await client.connect();
console.log(`Connected to Redis at ${maskRedisUrl(REDIS_URL)}`);
function checkAuth(req) {
if (!TOKEN) return true;
const auth = req.headers.authorization || '';
const prefix = 'Bearer ';
if (!auth.startsWith(prefix)) return false;
const provided = auth.slice(prefix.length);
if (provided.length !== TOKEN.length) return false;
return crypto.timingSafeEqual(Buffer.from(provided), Buffer.from(TOKEN));
}
// Command safety: allowlist of expected Redis commands.
// Blocks dangerous operations like FLUSHALL, CONFIG SET, EVAL, DEBUG, SLAVEOF.
const ALLOWED_COMMANDS = new Set([
'GET', 'SET', 'DEL', 'MGET', 'MSET', 'SCAN',
'TTL', 'EXPIRE', 'PEXPIRE', 'EXISTS', 'TYPE',
'HGET', 'HSET', 'HDEL', 'HGETALL', 'HMGET', 'HMSET', 'HKEYS', 'HVALS', 'HEXISTS', 'HLEN',
'LPUSH', 'RPUSH', 'LPOP', 'RPOP', 'LRANGE', 'LLEN', 'LTRIM',
'SADD', 'SREM', 'SMEMBERS', 'SISMEMBER', 'SCARD',
'ZADD', 'ZREM', 'ZRANGE', 'ZRANGEBYSCORE', 'ZREVRANGE', 'ZSCORE', 'ZCARD', 'ZRANDMEMBER',
'GEOADD', 'GEOSEARCH', 'GEOPOS', 'GEODIST',
'INCR', 'DECR', 'INCRBY', 'DECRBY',
'PING', 'ECHO', 'INFO', 'DBSIZE',
'PUBLISH', 'SUBSCRIBE',
'SETNX', 'SETEX', 'PSETEX', 'GETSET',
'APPEND', 'STRLEN',
]);
async function runCommand(args) {
const cmd = args[0].toUpperCase();
if (!ALLOWED_COMMANDS.has(cmd)) {
throw new Error(`Command not allowed: ${cmd}`);
}
const cmdArgs = args.slice(1);
return client.sendCommand([cmd, ...cmdArgs.map(String)]);
}
const MAX_BODY_BYTES = 1024 * 1024; // 1 MB
async function readBody(req) {
const chunks = [];
let totalLength = 0;
for await (const chunk of req) {
totalLength += chunk.length;
if (totalLength > MAX_BODY_BYTES) {
req.destroy();
throw new Error('Request body too large');
}
chunks.push(chunk);
}
return Buffer.concat(chunks).toString();
}
const server = http.createServer(async (req, res) => {
res.setHeader('content-type', 'application/json');
if (!checkAuth(req)) {
res.writeHead(401);
res.end(JSON.stringify({ error: 'Unauthorized' }));
return;
}
try {
// POST / β single command
if (req.method === 'POST' && (req.url === '/' || req.url === '')) {
const body = JSON.parse(await readBody(req));
const result = await runCommand(body);
res.writeHead(200);
res.end(JSON.stringify({ result }));
return;
}
// POST /pipeline β batch commands
if (req.method === 'POST' && req.url === '/pipeline') {
const commands = JSON.parse(await readBody(req));
const results = [];
for (const cmd of commands) {
try {
const result = await runCommand(cmd);
results.push({ result });
} catch (err) {
results.push({ error: err.message });
}
}
res.writeHead(200);
res.end(JSON.stringify(results));
return;
}
// POST /multi-exec β transaction
if (req.method === 'POST' && req.url === '/multi-exec') {
const commands = JSON.parse(await readBody(req));
const multi = client.multi();
for (const cmd of commands) {
const cmdName = cmd[0].toUpperCase();
if (!ALLOWED_COMMANDS.has(cmdName)) {
res.writeHead(403);
res.end(JSON.stringify({ error: `Command not allowed: ${cmdName}` }));
return;
}
multi.sendCommand(cmd.map(String));
}
const results = await multi.exec();
res.writeHead(200);
res.end(JSON.stringify(results.map((r) => ({ result: r }))));
return;
}
// GET / β welcome
if (req.method === 'GET' && (req.url === '/' || req.url === '')) {
res.writeHead(200);
res.end('"Welcome to Serverless Redis HTTP!"');
return;
}
// GET /{command}/{args...} β REST style
if (req.method === 'GET') {
const pathname = new URL(req.url, 'http://localhost').pathname;
const parts = pathname.slice(1).split('/').map(decodeURIComponent);
if (parts.length === 0 || !parts[0]) {
res.writeHead(400);
res.end(JSON.stringify({ error: 'No command specified' }));
return;
}
const result = await runCommand(parts);
res.writeHead(200);
res.end(JSON.stringify({ result }));
return;
}
// POST /{command}/{args...} β Upstash-compatible path-based POST
// Used by setCachedJson(): POST /set/<key>/<value>/EX/<ttl>
if (req.method === 'POST') {
const pathname = new URL(req.url, 'http://localhost').pathname;
const parts = pathname.slice(1).split('/').map(decodeURIComponent);
if (parts.length === 0 || !parts[0]) {
res.writeHead(400);
res.end(JSON.stringify({ error: 'No command specified' }));
return;
}
const result = await runCommand(parts);
res.writeHead(200);
res.end(JSON.stringify({ result }));
return;
}
// OPTIONS
if (req.method === 'OPTIONS') {
res.writeHead(204);
res.end();
return;
}
res.writeHead(404);
res.end(JSON.stringify({ error: 'Not found' }));
} catch (err) {
res.writeHead(500);
res.end(JSON.stringify({ error: err.message }));
}
});
server.listen(PORT, '0.0.0.0', () => {
console.log(`Redis REST proxy listening on 0.0.0.0:${PORT}`);
});
|