47 lines
1.1 KiB
TypeScript
47 lines
1.1 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;
|
|
expression: string;
|
|
format?: string;
|
|
}
|
|
|
|
const validateRequest = (body: any): { value: CompileBody; error?: any } => {
|
|
return joi
|
|
.object({
|
|
syntax: joi.string().required(),
|
|
expression: joi.string().required(),
|
|
format: joi.string().optional()
|
|
})
|
|
.validate(body);
|
|
};
|
|
|
|
export async function compileExpressionHandler(req: Request, res: Response) {
|
|
const { error, value: body } = validateRequest(req.body);
|
|
|
|
if (error) {
|
|
res.status(400).json({ error: error.message });
|
|
} else {
|
|
try {
|
|
const michelsonCode = await new LigoCompiler().compileExpression(
|
|
body.syntax,
|
|
body.expression,
|
|
body.format || 'text'
|
|
);
|
|
|
|
res.send({ result: michelsonCode });
|
|
} catch (ex) {
|
|
if (ex instanceof CompilerError) {
|
|
res.status(400).json({ error: ex.message });
|
|
} else {
|
|
logger.error(ex);
|
|
res.sendStatus(500);
|
|
}
|
|
}
|
|
}
|
|
}
|