File size: 392 Bytes
5ae7e18
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const Router = require('koa-router')
const api = new Router()

const method = require('../methods')

const apiHandle = async (ctx) => {
  const methodWithExt = ctx.params[0].match(/(.*).(png|webp)/)
  if (methodWithExt) ctx.props.ext = methodWithExt[2]
  ctx.result = await method(methodWithExt ? methodWithExt[1] : ctx.params[0], ctx.props)
}

api.post('/', apiHandle)

module.exports = api