Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | 4x 4x 4x 4x 4x 1x 1x 4x 1x 1x 4x 1x 1x 4x 1x 1x 4x 1x 1x | import {
withMiddlewares,
bootstrapNestJSMiddleware,
types,
} from '@npco/component-core';
import { Handler, Context } from 'aws-lambda';
import { AppModule } from '../appModule';
import {
DeviceUuidInputEvent,
DeviceMetricsInput,
DeviceSettings,
AppAccessContext,
} from '../types.d';
import {
logMiddleware,
accessTokenMiddleware,
checkDeviceStatusMiddleware,
} from '../middlewares';
import { DeviceService } from '../devices';
export const getDeviceUuidHandler: Handler = withMiddlewares(
(event: { args: { input: DeviceUuidInputEvent } }, context: Context) => {
const app = (context as types.AppContext).app;
return app.get(DeviceService).getDeviceUuid(event.args.input);
},
[bootstrapNestJSMiddleware(AppModule), logMiddleware],
);
export const createDeviceMetricsHandler: Handler = withMiddlewares(
(event: { args: { input: DeviceMetricsInput } }, context: Context) => {
const app = (context as types.AppContext).app;
return app.get(DeviceService).createDeviceMetrics(event.args.input);
},
[bootstrapNestJSMiddleware(AppModule), logMiddleware],
);
export const getDeviceSettingsHandler: Handler = withMiddlewares(
(event: { args: { deviceUuid: string } }, context: Context) => {
const app = (context as types.AppContext).app;
return app.get(DeviceService).getDeviceSettings(event.args.deviceUuid);
},
[
bootstrapNestJSMiddleware(AppModule),
logMiddleware,
accessTokenMiddleware,
checkDeviceStatusMiddleware,
],
);
export const updateDeviceSettingsHandler: Handler = withMiddlewares(
(event: { args: { deviceSettings: DeviceSettings } }, context: Context) => {
const app = (context as types.AppContext).app;
return app
.get(DeviceService)
.updateDeviceSettings(event.args.deviceSettings);
},
[
bootstrapNestJSMiddleware(AppModule),
logMiddleware,
accessTokenMiddleware,
checkDeviceStatusMiddleware,
],
);
export const onDeviceSettingsUpdateHandler: Handler = withMiddlewares(
(event: any, context: Context) => {
const { app, accessToken } = context as AppAccessContext;
return app.get(DeviceService).onDeviceSettingsUpdate(accessToken);
},
[
logMiddleware,
bootstrapNestJSMiddleware(AppModule),
accessTokenMiddleware,
checkDeviceStatusMiddleware,
],
);
|