Compare commits
1 Commits
0.0.16
..
5ef019e2ba
| Author | SHA1 | Date | |
|---|---|---|---|
| 5ef019e2ba |
+1
-1
@@ -1 +1 @@
|
|||||||
1.3.6
|
1.3.13
|
||||||
|
|||||||
@@ -89,12 +89,12 @@ jobs:
|
|||||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@ef0c23189db33220a73022d8c29a27709d0df440 # 0.1.32
|
- uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@74d41d9bd9c243f295b53762681c714f3d24fd4c # 0.1.31
|
||||||
id: tag
|
id: tag
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GITEA_TOKEN }}
|
token: ${{ secrets.GITEA_TOKEN }}
|
||||||
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
||||||
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@47a1c635cfc76cfb4eeee3db0d0b89bf19007c7a # 0.2.3
|
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@f386e2570df6a796ba0a69865c89ea0c1a7109ab # 0.2.2
|
||||||
with:
|
with:
|
||||||
tag: ${{ steps.tag.outputs.new-tag }}
|
tag: ${{ steps.tag.outputs.new-tag }}
|
||||||
- name: Set output
|
- name: Set output
|
||||||
|
|||||||
+5
-24
@@ -1,13 +1,13 @@
|
|||||||
import type { Gotify } from "gotify";
|
import type { Gotify } from "gotify";
|
||||||
import type { Logger } from "pino";
|
import type { Logger } from "pino";
|
||||||
import type { TeamSpeak, TextMessageTargetMode } from "ts3-nodejs-library";
|
import type { TeamSpeak, TextMessageTargetMode } from "ts3-nodejs-library";
|
||||||
|
import type { GotifyConfig, Mode } from "./types";
|
||||||
import {
|
import {
|
||||||
ClientConnect,
|
ClientConnect,
|
||||||
ClientDisconnect,
|
ClientDisconnect,
|
||||||
ClientMoved,
|
ClientMoved,
|
||||||
TextMessage,
|
TextMessage,
|
||||||
} from "ts3-nodejs-library/lib/types/Events";
|
} from "ts3-nodejs-library/lib/types/Events";
|
||||||
import type { GotifyConfig, Mode } from "./types";
|
|
||||||
|
|
||||||
function resolveMessageTarget(target: TextMessageTargetMode): string {
|
function resolveMessageTarget(target: TextMessageTargetMode): string {
|
||||||
if (target === 1) {
|
if (target === 1) {
|
||||||
@@ -45,8 +45,6 @@ export function ts3gotifyFactory(
|
|||||||
gotifyConfig: GotifyConfig,
|
gotifyConfig: GotifyConfig,
|
||||||
logger: Logger
|
logger: Logger
|
||||||
) {
|
) {
|
||||||
let reconnectInProgress = false;
|
|
||||||
|
|
||||||
function sendNotification(message: string) {
|
function sendNotification(message: string) {
|
||||||
gotifyClient
|
gotifyClient
|
||||||
.send({
|
.send({
|
||||||
@@ -89,32 +87,15 @@ export function ts3gotifyFactory(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function reconnectWithBackoff() {
|
|
||||||
if (reconnectInProgress) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
reconnectInProgress = true;
|
|
||||||
logger.info("disconnected, trying to reconnect...");
|
|
||||||
|
|
||||||
try {
|
|
||||||
await ts3Client.reconnect(10, 2000);
|
|
||||||
logger.info("reconnected!");
|
|
||||||
} catch (error) {
|
|
||||||
const message = error instanceof Error ? error.message : String(error);
|
|
||||||
logger.error(`Error reconnecting to TS3 server: ${message}`);
|
|
||||||
} finally {
|
|
||||||
reconnectInProgress = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
ts3Client.on("close", async () => {
|
ts3Client.on("close", async () => {
|
||||||
await reconnectWithBackoff();
|
logger.info("disconnected, trying to reconnect...");
|
||||||
|
await ts3Client.reconnect(5, 1000);
|
||||||
|
logger.info("reconnected!");
|
||||||
});
|
});
|
||||||
|
|
||||||
ts3Client.on("error", (error: Error) => {
|
ts3Client.on("error", (error: Error) => {
|
||||||
logger.error(`Error connecting to TS3 server: ${error.message}`);
|
logger.error(`Error connecting to TS3 server: ${error.message}`);
|
||||||
reconnectWithBackoff();
|
process.exit(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|||||||
Reference in New Issue
Block a user