53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import joi from '@hapi/joi';
|
|
import { Request, Response } from 'express';
|
|
|
|
import { CompilerError, LigoCompiler } from '../ligo-compiler';
|
|
import { logger } from '../logger';
|
|
|
|
interface CompileBody {
|
|
syntax: string;
|
|
code: string;
|
|
entrypoint: string;
|
|
storage: string;
|
|
format?: string;
|
|
}
|
|
|
|
const validateRequest = (body: any): { value: CompileBody; error?: any } => {
|
|
return joi
|
|
.object({
|
|
syntax: joi.string().required(),
|
|
code: joi.string().required(),
|
|
entrypoint: joi.string().required(),
|
|
storage: joi.string().required(),
|
|
format: joi.string().optional()
|
|
})
|
|
.validate(body);
|
|
};
|
|
|
|
export async function compileStorageHandler(req: Request, res: Response) {
|
|
const { error, value: body } = validateRequest(req.body);
|
|
|
|
if (error) {
|
|
res.status(400).json({ error: error.message });
|
|
} else {
|
|
try {
|
|
const michelsonStorage = await new LigoCompiler().compileStorage(
|
|
body.syntax,
|
|
body.code,
|
|
body.entrypoint,
|
|
body.format || 'text',
|
|
body.storage
|
|
);
|
|
|
|
res.send({ result: michelsonStorage });
|
|
} catch (ex) {
|
|
if (ex instanceof CompilerError) {
|
|
res.status(400).json({ error: ex.message });
|
|
} else {
|
|
logger.error(ex);
|
|
res.sendStatus(500);
|
|
}
|
|
}
|
|
}
|
|
}
|