core/source/logic/notification_kinds/email.ts

160 lines
3.1 KiB
TypeScript
Raw Permalink Normal View History

2024-07-02 15:02:35 +02:00
/*
Copyright 2016-2024 'Christian Fraß, Christian Neubauer, Martin Springwald GbR'
<info@greenscale.de>
»heimdall« is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
»heimdall« is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with »heimdall«. If not, see <http://www.gnu.org/licenses/>.
*/
2023-07-27 17:37:45 +02:00
namespace _heimdall.notification_kinds.email
{
/**
*/
function parameters_schema(
) : _heimdall.helpers.json_schema.type_schema
{
return {
"type": "object",
"additionalProperties": false,
"properties": {
"access": {
"type": "object",
"additionalProperties": false,
"properties": {
"host": {
"type": "string"
},
"port": {
"type": "integer"
},
"username": {
"type": "string"
},
"password": {
"type": "string"
}
},
"required": [
"host",
"port",
"username",
"password"
]
},
"sender": {
"type": "string"
},
"receivers": {
"type": "array",
"items": {
"type": "string"
}
},
"tags": {
"description": "list of strings, which will be placed in the e-mail subject",
"type": "array",
"items": {
"type": "string"
},
"default": []
}
},
"required": [
"access",
"sender",
"receivers"
]
};
}
/**
*/
function normalize_order_node(
node : any
) : any
{
return Object.assign(
{
},
node
);
}
/**
*/
async function notify(
parameters : any,
name : string,
check : type_check,
state : type_item_state,
info : any
) : Promise<void>
{
2023-07-27 18:17:54 +02:00
const nm_nodemailer = require("nodemailer");
2023-07-27 17:37:45 +02:00
2023-07-27 18:17:54 +02:00
const now : Date = new Date(Date.now());
2023-07-27 17:37:45 +02:00
const transporter = nm_nodemailer.createTransport(
{
"host": parameters.access.host,
"port": parameters.access.port,
"secure": true,
"auth": {
"user": parameters.access.username,
"pass": parameters.access.password,
}
}
);
const send_result = await transporter.sendMail(
{
"from": parameters.sender,
"to": parameters.receivers.join(","),
"subject": lib_plankton.string.coin(
"{{tags}} {{title}}",
{
"tags": (
parameters.tags
.concat([_heimdall.condition_show(state.condition)])
2023-07-27 18:17:54 +02:00
.map(tag => lib_plankton.string.coin("[{{tag}}]", {"tag": tag.toUpperCase()}))
2023-07-27 17:37:45 +02:00
.join(" ")
),
"title": check.name,
}
),
"text": JSON.stringify(info, undefined, "\t"),
"headers": {
2023-07-27 18:17:54 +02:00
"Date": now.toUTCString(),
2023-07-27 17:37:45 +02:00
}
}
);
2023-07-27 18:17:54 +02:00
2023-07-27 17:37:45 +02:00
return Promise.resolve<void>(undefined);
}
/**
*/
2023-08-03 08:34:33 +02:00
register_implementation(
"email",
{
2023-07-27 17:37:45 +02:00
"parameters_schema": parameters_schema,
"normalize_order_node": normalize_order_node,
"notify": notify,
2023-08-03 08:34:33 +02:00
}
);
2023-07-27 17:37:45 +02:00
}