Updates
This commit is contained in:
parent
ea269c6459
commit
795a887678
@ -1,4 +1,4 @@
|
|||||||
FROM node:18-alpine3.14
|
FROM node:18-alpine3.18
|
||||||
RUN apk update && apk upgrade && sync
|
RUN apk update && apk upgrade && sync
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
WORKDIR /usr/app
|
WORKDIR /usr/app
|
||||||
|
46
src/index.ts
46
src/index.ts
@ -33,15 +33,12 @@ export type DataPoint = {
|
|||||||
value: number;
|
value: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let tempValue = 0.;
|
||||||
|
|
||||||
async function pullTempFromBackend() {
|
async function pullTempFromBackend() {
|
||||||
try {
|
try {
|
||||||
const response = await axios.get(
|
const response = await axios.get(
|
||||||
'https://sensors.mooreforge.com/api/teasense/',
|
process.env.TEASENSE_URL ?? ''
|
||||||
{
|
|
||||||
headers: {
|
|
||||||
Authorization: 'Basic Y2FyYW5tZWdpbDplOHl0cjl1dQ==',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
);
|
);
|
||||||
|
|
||||||
const result = response.data.reduce(
|
const result = response.data.reduce(
|
||||||
@ -57,25 +54,32 @@ async function pullTempFromBackend() {
|
|||||||
null,
|
null,
|
||||||
);
|
);
|
||||||
|
|
||||||
if (result && result.value >= 78.0) {
|
if (result?.value && result?.value >= parseInt(process.env.TEASENSE_TEMP ?? '100.0')) {
|
||||||
try {
|
tempValue = result?.value;
|
||||||
const resultStr = await messaging.send({
|
|
||||||
data: {
|
|
||||||
value: `${result?.value}`
|
|
||||||
},
|
|
||||||
topic: 'teasense',
|
|
||||||
});
|
|
||||||
console.log(resultStr);
|
|
||||||
} catch (e) {
|
|
||||||
console.error(e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(e);
|
console.error(e);
|
||||||
} finally {
|
} finally {
|
||||||
setTimeout(() => pullTempFromBackend(), 1000);
|
setTimeout(() => pullTempFromBackend(), 2000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pullTempFromBackend();
|
(async function () {
|
||||||
|
await pullTempFromBackend();
|
||||||
|
|
||||||
|
setInterval(async () => {
|
||||||
|
if (tempValue > 0.) {
|
||||||
|
try {
|
||||||
|
await messaging.send({
|
||||||
|
notification: {
|
||||||
|
body: `♨️ ${tempValue} C`,
|
||||||
|
},
|
||||||
|
topic: 'teasense',
|
||||||
|
});
|
||||||
|
} catch (e) {
|
||||||
|
console.error(e);
|
||||||
|
}
|
||||||
|
tempValue = 0.;
|
||||||
|
}
|
||||||
|
}, 5000);
|
||||||
|
})();
|
||||||
|
Loading…
Reference in New Issue
Block a user