diff --git a/server/index.js b/server/index.js index 1aac349..66c5022 100644 --- a/server/index.js +++ b/server/index.js @@ -9,6 +9,7 @@ const routePictures = require('./route/pictures'); const route35c3 = require('./route/35c3'); const routeCalendar = require('./route/calendar'); const routeCBeamRPC = require('./route/cbeamRpc'); +const routeMatelight = require('./route/matelight'); const app = new Koa(); const router = new Router(); @@ -17,6 +18,7 @@ route35c3(router); routePictures(router); routeCalendar(router); routeCBeamRPC(router); +routeMatelight(router); app .use(Cors()) diff --git a/server/route/matelight.js b/server/route/matelight.js new file mode 100644 index 0000000..5182724 --- /dev/null +++ b/server/route/matelight.js @@ -0,0 +1,19 @@ +require('isomorphic-fetch'); + +module.exports = (router) => { + router.post('/matelight/:command', async (ctx) => { + const { command } = ctx.params; + const res = await fetch(`http://matelight.cbrp3.c-base.org/api/${command}`); + ctx.assert((res.status === 200), res.status); + const body = await res.json(); + ctx.body = body; + }); + router.post('/matelight/:command/:argument', async (ctx) => { + console.log(ctx) + const { command, argument } = ctx.params; + const res = await fetch(`http://matelight.cbrp3.c-base.org/api/${command}/${argument}`); + ctx.assert((res.status === 200), res.status); + const body = await res.json(); + ctx.body = body; + }); +};