lesgo
Version:
Core framework for lesgo node.js serverless framework.
71 lines (70 loc) • 2.03 kB
JavaScript
var __awaiter =
(this && this.__awaiter) ||
function (thisArg, _arguments, P, generator) {
function adopt(value) {
return value instanceof P
? value
: new P(function (resolve) {
resolve(value);
});
}
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) {
try {
step(generator.next(value));
} catch (e) {
reject(e);
}
}
function rejected(value) {
try {
step(generator['throw'](value));
} catch (e) {
reject(e);
}
}
function step(result) {
result.done
? resolve(result.value)
: adopt(result.value).then(fulfilled, rejected);
}
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import { isEmpty, logger, validateFields } from '../../utils';
import { LesgoException } from '../../exceptions';
import getElastiCacheRedisClient from './getElastiCacheRedisClient';
const FILE = 'lesgo.services.ElastiCacheRedis.getRedisCache';
const getRedisCache = (key, clientOpts) =>
__awaiter(void 0, void 0, void 0, function* () {
const input = validateFields({ key }, [
{ key: 'key', type: 'string', required: true },
]);
const client = yield getElastiCacheRedisClient(clientOpts);
let resp;
try {
resp = yield client.get(input.key);
logger.debug(`${FILE}::RECEIVED_RESPONSE`, { resp, input });
} catch (err) {
throw new LesgoException(
'Failed to get redis cache',
`${FILE}::GET_ERROR`,
500,
{
err,
input,
clientOpts,
}
);
}
try {
if (isEmpty(resp) || !resp) return resp;
const data = JSON.parse(resp);
logger.debug(`${FILE}::DATA_IS_JSON`, { data });
return data;
} catch (e) {
logger.debug(`${FILE}::DATA_NOT_JSON`, { resp });
return resp;
}
});
export default getRedisCache;