UNPKG

@dazejs/framework

Version:

Daze.js - A powerful web framework for Node.js

78 lines 3.1 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; var __rest = (this && this.__rest) || function (s, e) { var t = {}; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]]; } return t; }; Object.defineProperty(exports, "__esModule", { value: true }); const redis = __importStar(require("redis")); const util_1 = require("util"); class RedisSessionStore { constructor(app) { this.app = app; this.redisConfig = this.getRedisConfigure(); } getRedisConfigure() { const config = this.app.get('config'); const connectionName = config.get('session.connection', 'session'); const _a = config.get(`database.${connectionName}`, {}), { type } = _a, options = __rest(_a, ["type"]); return type === 'redis' ? options : {}; } get client() { if (!this._client) { this._client = redis.createClient(this.redisConfig); } return this._client; } async get(id) { const getAsync = (0, util_1.promisify)(this.client.get).bind(this.client); const res = await getAsync(id); if (!res) return null; return JSON.parse(res); } async set(id, sess, maxAge) { const max = typeof maxAge === 'number' ? maxAge : 1000 * 60 * 60 * 24; const val = JSON.stringify(sess); const setAsync = (0, util_1.promisify)(this.client.set).bind(this.client); const res = await setAsync(id, val, 'PX', max); return res; } async destroy(id) { const delAsync = (0, util_1.promisify)(this.client.del).bind(this.client); const res = await delAsync(id); return res; } } exports.default = RedisSessionStore; module.exports = RedisSessionStore; //# sourceMappingURL=redis.js.map