Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4e2f587681 | |||
| 83857ce102 | |||
| c9d2da5aba | |||
| 0ee2728590 | |||
| a53f8f3023 | |||
| a1a6ef40b8 |
+2
-1
@@ -1,5 +1,6 @@
|
||||
/dist/
|
||||
/.env*
|
||||
/node_modules/
|
||||
/package-lock.json
|
||||
/config.ts
|
||||
/config/**
|
||||
!/config/example.config.yaml
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
# 25.12.0-alpha.1
|
||||
- New: configをTypeScriptファイルからyamlへ移行しました
|
||||
- Note: 新しいファイルパスはconfig/config.yamlです
|
||||
- New: それに伴って複数の依存関係が追加されました
|
||||
- Delete: また、examples/config.tsを削除しました
|
||||
- Note: ただし、互換性のためgitignoreは維持しています
|
||||
- New: package-lock.jsonをgitignoreから削除しました
|
||||
- New: import.meta.dirnameによるパスの安全性を確保しました
|
||||
- New: /miqのエイリアスを作成しました
|
||||
- Chg: tsconfig.json:20に末尾カンマを追加し統一しました
|
||||
- Fix: earthquakeNotice.tsで条件分岐が誤っていた問題を修正しました
|
||||
- Delete: 余分な型定義を削除しました
|
||||
- Delete: tsc-aliasによるresolveFullPathsが実装されているにもかかわらず.jsを使用したimportの.jsを削除しました
|
||||
|
||||
# 25.12.0-alpha.0
|
||||
- New: リリースノートを記録する方針を取り始めました
|
||||
- Change: tsc-aliasによるエイリアスインポートを導入しました
|
||||
- New: resolveFullPathsが有効です
|
||||
- Del: それに伴いインポートから末尾の.jsを削除しました
|
||||
- New: エイリアスに`@/`(`./src`)が追加されました
|
||||
- Change: config.d.tsの名称をconfigTypeからConfigへ変更しました
|
||||
- Change: config.d.tsの余分なinterface定義を1つのConfigとして再定義しました
|
||||
- Change: moduleResolutionをnodeからbundlerへ変更しました
|
||||
- Change: typeRootのsrc/typesを./src/typesへ変更しました
|
||||
- Change: 同一ファイルでの使用数が1つのみのインポートを静的インポートから動的インポートへ変更しました
|
||||
- Change: ディレクトリ構造を大幅に変更しました
|
||||
- Migrate: /src/wiatherId.tsを/src/constantsへ移動しました
|
||||
- Migrate: /scriptを/srcへ移動しました
|
||||
- Migrate: /typesを/src/typesへ移動しました
|
||||
- Migrate: /src/mailer.tsを/src/libへ移動しました
|
||||
- Migrate: /checksを/src/scriptsへ移動しました
|
||||
- Change: eventdayData.tsを単一のexport文のみに短縮しました
|
||||
- Delete: asciiart.txtの末尾に含まれている改行を削除しました
|
||||
- Delete: それに伴いasciiart.tsの改行を削除する正規表現を削除しました
|
||||
- Delete: package.jsonのscriptsからmainを削除しました
|
||||
- Delete: successExit.tsに含まれていたデバッグ用の関数を即時実行するコードを削除しました
|
||||
+1
-1
@@ -2,4 +2,4 @@
|
||||
## # # # # # # # # # # # # # # # # #
|
||||
# ## # # # # # # ####### # # # # # # # # ## # #
|
||||
# ## # # # # # # # # # # # # # # #
|
||||
# # ###### # ### ###### ####### ###### # # ###### ###### ######
|
||||
# # ###### # ### ###### ####### ###### # # ###### ###### ######
|
||||
@@ -1,9 +0,0 @@
|
||||
import * as fs from "fs";
|
||||
import { styleText } from "util";
|
||||
|
||||
export default function ConfigCheck() {
|
||||
if (!fs.existsSync("config.ts")) {
|
||||
console.log(styleText("red", "config.tsがありません"));
|
||||
process.exit();
|
||||
}
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
import PackagesIsExist from "./packagesExist.js";
|
||||
import PackagesCheck from "./packages.js";
|
||||
import ConfigCheck from "./config.js";
|
||||
import APICheck from "./api.js";
|
||||
import VersionCheck from "./version.js";
|
||||
import LegalCheck from "./legal.js";
|
||||
import config from "../config.js";
|
||||
|
||||
export default async function Check() {
|
||||
PackagesIsExist();
|
||||
PackagesCheck();
|
||||
ConfigCheck();
|
||||
if (config.debug === undefined) {
|
||||
LegalCheck()
|
||||
}
|
||||
await APICheck();
|
||||
await VersionCheck();
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
time:
|
||||
# 時報休止期間
|
||||
stopTimes:
|
||||
start: 23 # 開始
|
||||
stop: 6 # 停止
|
||||
|
||||
# 地震速報設定
|
||||
earthquake:
|
||||
reconnectTimes: 5000 # 再接続時間(ミリ秒)
|
||||
websocketUrl: "wss://api.p2pquake.net/v2/ws" # WebSocketのURL
|
||||
areasCsvUrl: "https://raw.githubusercontent.com/p2pquake/epsp-specifications/master/epsp-area.csv" # 対象地域CSVファイルのURL
|
||||
maxScaleMin: 30 # 地震発生の際の最低震度(10-70)
|
||||
|
||||
# 天気お知らせ設定
|
||||
weather:
|
||||
splitCount: 4 # 返信の分割数
|
||||
|
||||
# Make it a quote設定
|
||||
miq: true # 有効/無効
|
||||
|
||||
# 緊急時設定
|
||||
emergency:
|
||||
isEnabled: true # 緊急時のコンソール表示
|
||||
mail:
|
||||
isEnabled: true # 緊急時のメール送信
|
||||
host: "smtp.example.com" # SMTPサーバー
|
||||
port: 465 # SMTPポート
|
||||
user: "mailUser@example.com" # BOTメール送信元
|
||||
password: "mailPassword" # SMTPパスワード
|
||||
secure: false # SMTPsecure設定
|
||||
to: "admin@noticeuwuzu.example.com" # 緊急時メール送信先(配列可)
|
||||
|
||||
|
||||
# /report設定
|
||||
report:
|
||||
isEnabled: true # 有効/無効
|
||||
message: "" # 報告者へのメッセージ
|
||||
|
||||
# 規約等
|
||||
legal:
|
||||
terms: | # 利用規約
|
||||
利用規約
|
||||
privacy: | # プライバシーポリシー
|
||||
プライバシーポリシー
|
||||
|
||||
# 管理者情報設定
|
||||
admin:
|
||||
name: "あどみん" # BOT管理者名
|
||||
showMail: false # メールアドレスを公開するか(false:非公開/文字列:メールアドレス)
|
||||
panel: # 管理パネル
|
||||
isEnabled: true # 有効/無効
|
||||
port: 74919 # 配信ポート
|
||||
|
||||
# uwuzuサーバー設定
|
||||
uwuzu:
|
||||
apiToken: "TOKEN_EXAMPLE" # APIトークン
|
||||
host: "https://uwuzu.example.com" # サーバーホスト
|
||||
@@ -1,68 +0,0 @@
|
||||
import type { configTypes } from "types/config";
|
||||
|
||||
// READMEの設定項目を参照
|
||||
const config: configTypes = {
|
||||
// 時報設定
|
||||
time: {
|
||||
// 時報休止期間
|
||||
stopTimes: {
|
||||
start: 23, // 開始
|
||||
stop: 6, // 停止
|
||||
},
|
||||
},
|
||||
// 地震速報設定
|
||||
earthquake: {
|
||||
reconnectTimes: 5000, // 再接続時間(ミリ秒)
|
||||
websocketUrl: "wss://api.p2pquake.net/v2/ws", // WebSocketのURL
|
||||
areasCsvUrl: "https://raw.githubusercontent.com/p2pquake/epsp-specifications/master/epsp-area.csv", // 対象地域CSVファイルのURL
|
||||
maxScaleMin: 30, // 地震発生の際の最低震度(10-70)
|
||||
},
|
||||
// 天気お知らせ設定
|
||||
weather: {
|
||||
splitCount: 4, // 返信の分割数
|
||||
},
|
||||
// Make it a quote設定
|
||||
miq: true, // 有効/無効
|
||||
|
||||
// 緊急時設定
|
||||
emergency: {
|
||||
isEnabled: true, // 緊急時のコンソール表示
|
||||
mail: {
|
||||
isEnabled: true, // 緊急時のメール送信
|
||||
host: "smtp.example.com", // SMTPサーバー
|
||||
port: 465, // SMTPポート
|
||||
user: "mailUser@example.com", // BOTメール送信元
|
||||
password: "mailPassword", // SMTPパスワード
|
||||
secure: false, // SMTPsecure設定
|
||||
to: "admin@noticeuwuzu.example.com", // 緊急時メール送信先(配列可)
|
||||
},
|
||||
},
|
||||
// /report設定
|
||||
report: {
|
||||
isEnabled: true, // 有効/無効
|
||||
message: "", // 報告者へのメッセージ
|
||||
},
|
||||
// 規約等
|
||||
legal: {
|
||||
terms: `
|
||||
`, // 利用規約
|
||||
privacy: `
|
||||
`, // プライバシーポリシー
|
||||
},
|
||||
// 管理者情報設定
|
||||
admin: {
|
||||
name: "あどみん", // BOT管理者名
|
||||
showMail: false, // メールアドレスを公開するか(false:非公開/文字列:メールアドレス)
|
||||
panel: { // 管理パネル
|
||||
isEnabled: true, // 有効/無効
|
||||
port: 74919, // 配信ポート
|
||||
},
|
||||
},
|
||||
// uwuzuサーバー設定
|
||||
uwuzu: {
|
||||
apiToken: "TOKEN_EXAMPLE", // APIトークン
|
||||
host: "https://uwuzu.example.com", // サーバーホスト
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
@@ -1,63 +1,48 @@
|
||||
// 起動チェック
|
||||
import Check from "./checks/main.js";
|
||||
(async () => {
|
||||
await Check();
|
||||
})();
|
||||
(await import("@/scripts/checks/main")).default();
|
||||
(await import("@/scripts/successExit")).default();
|
||||
|
||||
// 定期実行読み込み
|
||||
import * as cron from "node-cron";
|
||||
|
||||
// 機能読み込み
|
||||
import timeNotice from "./scripts/timeNotice.js";
|
||||
import { weatherNotice } from "./scripts/weatherNotice.js";
|
||||
import earthquakeNotice from "./scripts/earthquakeNotice.js";
|
||||
import EventDays from "./scripts/eventday.js";
|
||||
import Commands from "./scripts/commands/main.js";
|
||||
|
||||
// その他機能
|
||||
import asciiArt from "./scripts/asciiart.js";
|
||||
asciiArt();
|
||||
import successExit from "./scripts/successExit.js";
|
||||
successExit();
|
||||
// アスキーアート
|
||||
(await import("@/scripts/asciiart")).default();
|
||||
|
||||
// 地震情報観測開始
|
||||
earthquakeNotice();
|
||||
(await import("@/scripts/earthquakeNotice")).default();
|
||||
|
||||
// 時報(1時間/1回)
|
||||
cron.schedule("0 * * * *", () => {
|
||||
timeNotice();
|
||||
// 定期実行
|
||||
import * as cron from "node-cron";
|
||||
|
||||
/// 時報(1時間毎)
|
||||
cron.schedule("0 * * * *", async () => {
|
||||
(await import("@/scripts/timeNotice")).default();
|
||||
});
|
||||
|
||||
// コマンド(10分/1回)
|
||||
cron.schedule("*/10 * * * *", () => {
|
||||
Commands();
|
||||
// コマンド(10分毎)
|
||||
cron.schedule("*/10 * * * *", async () => {
|
||||
(await import("@/scripts/commands/main")).default();
|
||||
});
|
||||
|
||||
// 祝日などお知らせ(毎日0:00)
|
||||
cron.schedule("0 0 * * *", () => {
|
||||
EventDays();
|
||||
// 祝日など(毎日0:00)
|
||||
cron.schedule("0 0 * * *", async () => {
|
||||
(await import("@/scripts/eventday")).default();
|
||||
});
|
||||
|
||||
// 天気お知らせ(毎日7:00)
|
||||
import { setTimeout } from "timers";
|
||||
cron.schedule("0 7 * * *", () => {
|
||||
setTimeout(() => {
|
||||
weatherNotice();
|
||||
}, 100);
|
||||
cron.schedule("0 7 * * *", async () => {
|
||||
(await import("@/scripts/weatherNotice")).weatherNotice();
|
||||
});
|
||||
|
||||
// 管理パネル
|
||||
import AdminPanel from "./panel/main.js";
|
||||
(async () => {
|
||||
await AdminPanel();
|
||||
})();
|
||||
await (await import("./panel/main")).default()
|
||||
|
||||
// 起動表示
|
||||
console.log("BOTサーバーが起動しました");
|
||||
|
||||
import config from "./config.js";
|
||||
import { styleText } from "util";
|
||||
if (config.debug !== undefined) {
|
||||
if ((await import("./config")).default.debug) {
|
||||
// TLSを任意に設定
|
||||
process.env.NODE_TLS_REJECT_UNAUTHORIZED = "0";
|
||||
console.log(styleText(["bgRed", "cyan", "bold"], "デバッグモードで起動中"));
|
||||
|
||||
console.log((await import("node:util")).styleText(
|
||||
["bgRed", "cyan", "bold"],
|
||||
"デバッグモードで起動中"
|
||||
));
|
||||
}
|
||||
|
||||
Generated
+3084
File diff suppressed because it is too large
Load Diff
+11
-7
@@ -1,15 +1,14 @@
|
||||
{
|
||||
"name": "notice-uwuzu",
|
||||
"version": "v25.8.10@uwuzu1.6.4",
|
||||
"tag": "v25.8.10",
|
||||
"version": "v25.8.11@uwuzu1.6.4",
|
||||
"tag": "v25.8.11",
|
||||
"description": "Notice Bot for uwuzu",
|
||||
"main": "dist/main.js",
|
||||
"scripts": {
|
||||
"start": "node .",
|
||||
"build": "tsc",
|
||||
"main": "tsc && node .",
|
||||
"build": "tsc && tsc-alias",
|
||||
"dev": "tsx main.ts",
|
||||
"clean": "tsc && node dist/scripts/clean/main.js"
|
||||
"clean": "npm run build && node dist/scripts/clean/main.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -45,16 +44,21 @@
|
||||
"@types/sharp": "^0.31.1",
|
||||
"@types/ws": "^8.18.1",
|
||||
"canvas": "^3.2.0",
|
||||
"chardet": "^2.1.1",
|
||||
"child_process": "^1.0.2",
|
||||
"date-fns": "^4.1.0",
|
||||
"esm-path": "git+https://gitea.last2014.com/last2014/esm-path.git#1.0.0",
|
||||
"express": "^5.1.0",
|
||||
"fs": "^0.0.1-security",
|
||||
"iconv-lite": "^0.7.0",
|
||||
"node-cron": "^4.1.1",
|
||||
"nodemailer": "^7.0.4",
|
||||
"sharp": "^0.34.3",
|
||||
"timers": "^0.1.1",
|
||||
"tsc-alias": "^1.8.16",
|
||||
"typescript": "^5.9.2",
|
||||
"ws": "^8.18.3"
|
||||
"ws": "^8.18.3",
|
||||
"yaml": "^2.8.2",
|
||||
"zod": "^4.1.13"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tsx": "^4.20.3"
|
||||
|
||||
+8
-16
@@ -1,15 +1,7 @@
|
||||
import express from "express";
|
||||
import * as os from "os";
|
||||
import config from "../config.js";
|
||||
import { NetworkInterfaceDetails } from "types/types";
|
||||
|
||||
// バックエンドルーティング
|
||||
import CommandExecute from "./route/command.js";
|
||||
import ueusePost from "./route/ueuse.js";
|
||||
import WeatherUeuse from "./route/weather.js";
|
||||
import API from "./route/api.js";
|
||||
import Token from "./route/token.js";
|
||||
import Debug from "./route/debug.js";
|
||||
import config from "../config";
|
||||
import { NetworkInterfaceDetails } from "@/types/types";
|
||||
|
||||
export default async function AdminPanel() {
|
||||
// 無効
|
||||
@@ -22,12 +14,12 @@ export default async function AdminPanel() {
|
||||
const port = config.admin.panel.port;
|
||||
|
||||
// ルーティング
|
||||
app.use(ueusePost);
|
||||
app.use(CommandExecute);
|
||||
app.use(WeatherUeuse);
|
||||
app.use(API);
|
||||
app.use(Token);
|
||||
app.use(Debug);
|
||||
app.use((await import("./route/ueuse")).default);
|
||||
app.use((await import("./route/command")).default);
|
||||
app.use((await import("./route/weather")).default);
|
||||
app.use((await import("./route/api")).default);
|
||||
app.use((await import("./route/token")).default);
|
||||
app.use((await import("./route/debug")).default);
|
||||
app.use(express.static("panel/public"));
|
||||
|
||||
app.listen(port, () => {
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
import express from "express";
|
||||
const API = express.Router();
|
||||
|
||||
import config from "../../config.js";
|
||||
import config from "../../config";
|
||||
|
||||
API.use(express.json());
|
||||
API.use(express.urlencoded({ extended: true }));
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import express from "express";
|
||||
const CommandExecute = express.Router();
|
||||
|
||||
import Commands from "../../scripts/commands/main.js";
|
||||
import Commands from "@/scripts/commands/main";
|
||||
|
||||
CommandExecute.post("/actions/command-execute", (req, res) => {
|
||||
try {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import express from "express";
|
||||
const Debug = express.Router();
|
||||
|
||||
import config from "../../config.js";
|
||||
import config from "../../config";
|
||||
|
||||
Debug.post("/actions/debug", (req, res, next) => {
|
||||
res.status(501)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import express from "express";
|
||||
const EventdayUeuse = express.Router();
|
||||
|
||||
import EventDays from "../../scripts/eventday.js";
|
||||
import EventDays from "@/scripts/eventday";
|
||||
|
||||
EventdayUeuse.post("/actions/eventday", (req, res) => {
|
||||
try {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import express from "express";
|
||||
const Token = express.Router();
|
||||
|
||||
import config from "../../config.js";
|
||||
import config from "../../config";
|
||||
|
||||
Token.post("/actions/token", (req, res, next) => {
|
||||
res.status(501)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import express from "express";
|
||||
const ueusePost = express.Router();
|
||||
|
||||
import config from "../../config.js";
|
||||
import config from "../../config";
|
||||
|
||||
ueusePost.use(express.json());
|
||||
ueusePost.use(express.urlencoded({ extended: true }));
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import express from "express";
|
||||
const WeatherUeuse = express.Router();
|
||||
|
||||
import { weatherNotice } from "../../scripts/weatherNotice.js";
|
||||
import { weatherNotice } from "@/scripts/weatherNotice";
|
||||
|
||||
WeatherUeuse.post("/actions/weather", (req, res) => {
|
||||
try {
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
import * as fs from "fs";
|
||||
|
||||
const version = JSON.parse(fs.readFileSync("package.json", "utf-8")).version;
|
||||
|
||||
export default function asciiArt() {
|
||||
console.log(fs.readFileSync("asciiart.txt", "utf-8").replace(/(\r?\n)$/, ''));
|
||||
console.log(`${version}\n`);
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
import logsDelete from "./logsDel.js";
|
||||
import packageLockJsonDelete from "./packageLockDel.js";
|
||||
import npmInstall from "./npmInstall.js";
|
||||
|
||||
logsDelete();
|
||||
packageLockJsonDelete();
|
||||
npmInstall();
|
||||
@@ -1,7 +0,0 @@
|
||||
import { ueuse } from "types/types";
|
||||
import { Reply } from "../main.js";
|
||||
import config from "../../../config.js";
|
||||
|
||||
export default function PrivacyPolicy(data: ueuse) {
|
||||
Reply(config.legal.privacy, data.uniqid);
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
import { ueuse } from "types/types";
|
||||
import { Reply } from "../main.js";
|
||||
import config from "../../../config.js";
|
||||
|
||||
export default function Terms(data: ueuse) {
|
||||
Reply(config.legal.terms, data.uniqid);
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
import { weatherReply } from "../weatherNotice.js";
|
||||
import { ueuse } from "types/types";
|
||||
|
||||
export default function Weather(data: ueuse) {
|
||||
weatherReply(data.uniqid);
|
||||
}
|
||||
@@ -1,9 +1,4 @@
|
||||
interface eventdaysValue {
|
||||
name: string;
|
||||
message: string;
|
||||
}
|
||||
|
||||
const eventdays = {
|
||||
export default {
|
||||
"01/01": {
|
||||
name: "元日",
|
||||
message: "はい年越した瞬間地球にいなかった~",
|
||||
@@ -65,6 +60,7 @@ const eventdays = {
|
||||
name: "大晦日",
|
||||
message: "大掃除!!大掃除!!",
|
||||
},
|
||||
} as { [key: string]: eventdaysValue };
|
||||
|
||||
export default eventdays;
|
||||
} as { [key: string]: {
|
||||
name: string;
|
||||
message: string;
|
||||
} };
|
||||
@@ -1,4 +1,4 @@
|
||||
export const cityList: Array<String> = [
|
||||
export const cityList = [
|
||||
"016010",
|
||||
"020010",
|
||||
"030010",
|
||||
@@ -0,0 +1,94 @@
|
||||
import * as z from "zod/v3";
|
||||
import { readFileSync } from "fs";
|
||||
import { autoDecode } from "@/lib/encode";
|
||||
import { getDirname } from "esm-path";
|
||||
import * as yaml from "yaml";
|
||||
|
||||
const schema = z.object({
|
||||
time: z.object({
|
||||
stopTimes: z.object({
|
||||
start: z.number().min(0).max(23),
|
||||
stop: z.number().min(0).max(23),
|
||||
}),
|
||||
}),
|
||||
earthquake: z.object({
|
||||
reconnectTimes: z.number().min(0),
|
||||
websocketUrl: z.string().url(),
|
||||
areasCsvUrl: z.string().url(),
|
||||
maxScaleMin: z.union([
|
||||
z.literal(-1),
|
||||
z.literal(10),
|
||||
z.literal(20),
|
||||
z.literal(30),
|
||||
z.literal(40),
|
||||
z.literal(45),
|
||||
z.literal(50),
|
||||
z.literal(55),
|
||||
z.literal(60),
|
||||
z.literal(70),
|
||||
]), // z.enum()は文字列のみ(https://github.com/colinhacks/zod/issues/338)
|
||||
}),
|
||||
weather: z.object({
|
||||
splitCount: z.number().min(1),
|
||||
}),
|
||||
miq: z.boolean(),
|
||||
emergency: z.union([z.object({
|
||||
isEnabled: z.literal(true),
|
||||
mail: z.union([z.object({
|
||||
isEnabled: z.literal(true),
|
||||
host: z.string(),
|
||||
port: z.number().min(0).max(65535),
|
||||
user: z.string(),
|
||||
password: z.string(),
|
||||
secure: z.boolean(),
|
||||
to: z.union([
|
||||
z.string(),
|
||||
z.array(z.string())
|
||||
]),
|
||||
}), z.object({
|
||||
isEnabled: z.literal(false),
|
||||
})]),
|
||||
}), z.object({
|
||||
isEnabled: z.literal(false),
|
||||
})]),
|
||||
report: z.union([z.object({
|
||||
isEnabled: z.literal(true),
|
||||
message: z.string(),
|
||||
}), z.object({
|
||||
isEnabled: z.literal(false),
|
||||
})]),
|
||||
legal: z.object({
|
||||
terms: z.string(),
|
||||
privacy: z.string(),
|
||||
}),
|
||||
admin: z.object({
|
||||
name: z.string(),
|
||||
showMail: z.union([
|
||||
z.string(),
|
||||
z.literal(false)
|
||||
]),
|
||||
panel: z.union([z.object({
|
||||
isEnabled: z.literal(true),
|
||||
port: z.number().min(0).max(65535),
|
||||
}), z.object({
|
||||
isEnabled: z.literal(false),
|
||||
})]),
|
||||
}),
|
||||
uwuzu: z.object({
|
||||
apiToken: z.string(),
|
||||
host: z.string(),
|
||||
}),
|
||||
debug: z.literal(true).optional(),
|
||||
});
|
||||
|
||||
const file = readFileSync(`${import.meta.dirname}/../../config/config.yaml`);
|
||||
const text = autoDecode(file);
|
||||
const configObj = yaml.parse(text);
|
||||
const parsed = schema.safeParse(configObj);
|
||||
|
||||
if (!parsed.success) {
|
||||
throw new Error("Config is invalid.")
|
||||
}
|
||||
|
||||
const config = parsed.data;
|
||||
export default config;
|
||||
@@ -0,0 +1,7 @@
|
||||
import { decode } from "iconv-lite";
|
||||
import { detect } from "chardet";
|
||||
|
||||
export function autoDecode(buffer: Buffer) {
|
||||
const encoding = detect(buffer) ?? "utf-8";
|
||||
return decode(buffer, encoding);
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
import config from "../config.js";
|
||||
import config from "@/lib/config";
|
||||
import * as nodemailer from "nodemailer";
|
||||
|
||||
import type SMTPTransport from "nodemailer/lib/smtp-transport";
|
||||
@@ -0,0 +1,8 @@
|
||||
import * as fs from "fs";
|
||||
|
||||
const version = JSON.parse(fs.readFileSync(`${import.meta.dirname}/../../package.json`, "utf-8")).version;
|
||||
|
||||
export default function asciiArt() {
|
||||
console.log(fs.readFileSync(`${import.meta.dirname}/../../asciiart.txt`, "utf-8"));
|
||||
console.log(`${version}\n`);
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
import { styleText } from "util";
|
||||
import config from "../config.js";
|
||||
import config from "@/lib/config";
|
||||
|
||||
export default async function APICheck() {
|
||||
try {
|
||||
@@ -0,0 +1,9 @@
|
||||
import * as fs from "fs";
|
||||
import { styleText } from "util";
|
||||
|
||||
export default function ConfigCheck() {
|
||||
if (!fs.existsSync(`${import.meta.dirname}/../../../config/config.yaml`)) {
|
||||
console.log(styleText("red", "config/config.yamlがありません"));
|
||||
process.exit();
|
||||
}
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
import config from "../config.js";
|
||||
import config from "@/lib/config";
|
||||
import { styleText } from "util";
|
||||
|
||||
export default function LegalCheck() {
|
||||
@@ -0,0 +1,18 @@
|
||||
import PackagesIsExist from "@/scripts/checks/packagesExist";
|
||||
import PackagesCheck from "@/scripts/checks/packages";
|
||||
import ConfigCheck from "@/scripts/checks/config";
|
||||
import APICheck from "@/scripts/checks/api";
|
||||
import VersionCheck from "@/scripts/checks/version";
|
||||
import LegalCheck from "@/scripts/checks/legal";
|
||||
import config from "@/lib/config";
|
||||
|
||||
export default async function Check() {
|
||||
PackagesIsExist();
|
||||
PackagesCheck();
|
||||
ConfigCheck();
|
||||
if (config.debug === undefined) {
|
||||
LegalCheck()
|
||||
}
|
||||
await APICheck();
|
||||
await VersionCheck();
|
||||
}
|
||||
@@ -3,13 +3,13 @@ import { styleText } from "util";
|
||||
|
||||
export default function PackagesCheck() {
|
||||
try {
|
||||
if (!fs.existsSync("package.json")) {
|
||||
if (!fs.existsSync(`${import.meta.dirname}/../../../package.json`)) {
|
||||
console.log(styleText("red", "package.jsonがありません。正規のリポジトリでgit pullを実行してください。"));
|
||||
process.exit();
|
||||
}
|
||||
|
||||
// package.json取得
|
||||
const packages = JSON.parse(fs.readFileSync("package.json", "utf-8"));
|
||||
const packages = JSON.parse(fs.readFileSync(`${import.meta.dirname}/../../../package.json`, "utf-8"));
|
||||
const dependencies = packages.dependencies;
|
||||
|
||||
const packageNames: Array<string> = [];
|
||||
@@ -31,7 +31,7 @@ export default function PackagesCheck() {
|
||||
const mismatchPackages: Array<string> = [];
|
||||
|
||||
packageNames.forEach((packageName) => {
|
||||
const packagePath = `node_modules/${packageName}/package.json`;
|
||||
const packagePath = `${import.meta.dirname}/../../../node_modules/${packageName}/package.json`;
|
||||
|
||||
if (fs.existsSync(packagePath)) {
|
||||
const modulePackage = JSON.parse(fs.readFileSync(packagePath, "utf-8"));
|
||||
@@ -3,7 +3,7 @@ import { styleText } from "util";
|
||||
|
||||
export default function PackagesIsExist() {
|
||||
try {
|
||||
if (!fs.existsSync("node_modules/.package-lock.json")) {
|
||||
if (!fs.existsSync(`${import.meta.dirname}/../../../node_modules/.package-lock.json`)) {
|
||||
console.log(styleText("red", `
|
||||
node_modules/.package-lock.jsonがありません。
|
||||
プロジェクト直下でnpm installを実行してください。
|
||||
@@ -1,25 +1,25 @@
|
||||
import config from "../config.js";
|
||||
import config from "@/lib/config";
|
||||
import { readFileSync, writeFileSync, existsSync } from "fs";
|
||||
|
||||
export default async function VersionCheck() {
|
||||
const packageJson = JSON.parse(readFileSync("package.json", "utf-8"));
|
||||
const packageJson = JSON.parse(readFileSync(`${import.meta.dirname}/../../../package.json`, "utf-8"));
|
||||
|
||||
// 初期化
|
||||
if (!existsSync("logs/version.txt")) {
|
||||
if (!existsSync(`${import.meta.dirname}/../../../logs/version.txt`)) {
|
||||
writeFileSync(
|
||||
"logs/version.txt",
|
||||
`${import.meta.dirname}/../../../logs/version.txt`,
|
||||
packageJson.version,
|
||||
"utf-8",
|
||||
);
|
||||
}
|
||||
|
||||
// 最終起動バージョン取得
|
||||
const oldVersion = readFileSync("logs/version.txt", "utf-8");
|
||||
const oldVersion = readFileSync(`${import.meta.dirname}/../../../logs/version.txt`, "utf-8");
|
||||
|
||||
if (oldVersion !== packageJson.version) {
|
||||
try {
|
||||
writeFileSync(
|
||||
"logs/version.txt",
|
||||
`${import.meta.dirname}/../../../logs/version.txt`,
|
||||
packageJson.version,
|
||||
"utf-8",
|
||||
);
|
||||
@@ -4,8 +4,8 @@ export default function logsDelete() {
|
||||
console.log("ログを削除中します");
|
||||
|
||||
try {
|
||||
unlinkSync("logs/boot.json");
|
||||
unlinkSync("logs/version.txt");
|
||||
unlinkSync(`${import.meta.dirname}/../../../logs/boot.json`);
|
||||
unlinkSync(`${import.meta.dirname}/../../../logs/version.txt`);
|
||||
|
||||
console.log("ログファイルを削除しました");
|
||||
console.log("----------------");
|
||||
@@ -0,0 +1,5 @@
|
||||
(await import("@/scripts/clean/logsDel")).default();
|
||||
(await import("@/scripts/clean/packageLockDel")).default();
|
||||
(await import("@/scripts/clean/npmInstall")).default();
|
||||
|
||||
export {};
|
||||
@@ -4,7 +4,7 @@ export default function packageLockJsonDelete() {
|
||||
console.log("package-lock.jsonを削除します");
|
||||
|
||||
try {
|
||||
unlinkSync("package-lock.json");
|
||||
unlinkSync(`${import.meta.dirname}/../../../package-lock.json`);
|
||||
|
||||
console.log("package-lock.jsonを削除しました");
|
||||
console.log("----------------");
|
||||
@@ -1,6 +1,6 @@
|
||||
import { meApi, ueuse } from "../../types/types";
|
||||
import config from "../../config.js";
|
||||
import { Reply } from "./main.js";
|
||||
import { meApi, ueuse } from "@/types/types";
|
||||
import config from "@/lib/config";
|
||||
import { Reply } from "@/scripts/commands/main";
|
||||
|
||||
export default async function Delete(data: ueuse) {
|
||||
const meReq = await fetch(`${config.uwuzu.host}/api/me/`, {
|
||||
@@ -1,6 +1,6 @@
|
||||
import { ueuse } from "types/types";
|
||||
import config from "../../config.js";
|
||||
import { Reply } from "./main.js";
|
||||
import { ueuse } from "@/types/types";
|
||||
import config from "@/lib/config";
|
||||
import { Reply } from "@/scripts/commands/main";
|
||||
|
||||
export default async function Follow(data: ueuse) {
|
||||
const followReq = await fetch(`${config.uwuzu.host}/api/users/follow`, {
|
||||
@@ -1,6 +1,6 @@
|
||||
import { ueuse } from "types/types";
|
||||
import { ueuse } from "@/types/types";
|
||||
import { readFileSync } from "fs";
|
||||
import { Reply } from "./main.js";
|
||||
import { Reply } from "@/scripts/commands/main";
|
||||
|
||||
const helpsMin = {
|
||||
"info": "このBOTについての概要を返信するコマンドです。",
|
||||
@@ -1,10 +1,8 @@
|
||||
import { ueuse } from "types/types";
|
||||
import { readFileSync } from "fs";
|
||||
import { Reply } from "./main.js";
|
||||
import config from "../../config.js";
|
||||
import { ueuse } from "@/types/types";
|
||||
import config from "@/lib/config";
|
||||
|
||||
export default async function Info(data: ueuse) {
|
||||
const packageJson = JSON.parse(readFileSync("package.json", "utf-8"));
|
||||
const packageJson = JSON.parse((await import("fs")).readFileSync("package.json", "utf-8"));
|
||||
const releaseUrl = `${packageJson.repository.url}/releases/tag/${packageJson.tag}`;
|
||||
|
||||
let editor = "";
|
||||
@@ -29,7 +27,7 @@ export default async function Info(data: ueuse) {
|
||||
isReport = "無効";
|
||||
}
|
||||
|
||||
const ueuse = await Reply(`
|
||||
const ueuse = await (await import("@/scripts/commands/main")).Reply(`
|
||||
【BOTについて】
|
||||
このBOTはオープンソースソフトウェアであるnoticeUwuzuを利用して運営されています。
|
||||
noticeUwuzuはApache License 2.0によって保護されています。
|
||||
@@ -0,0 +1,8 @@
|
||||
import { ueuse } from "@/types/types";
|
||||
|
||||
export default async function PrivacyPolicy(data: ueuse) {
|
||||
(await import("@/scripts/commands/main")).Reply(
|
||||
(await import("@/lib/config")).default.legal.privacy,
|
||||
data.uniqid
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import { ueuse } from "@/types/types";
|
||||
|
||||
export default async function Terms(data: ueuse) {
|
||||
(await import("@/scripts/commands/main")).Reply(
|
||||
(await import("@/lib/config")).default.legal.terms,
|
||||
data.uniqid
|
||||
);
|
||||
}
|
||||
@@ -1,28 +1,12 @@
|
||||
import * as fs from "fs";
|
||||
import config from "../../config.js";
|
||||
import type { ueuse } from "types/types";
|
||||
|
||||
const initialFile: Array<string> = [];
|
||||
|
||||
// コマンド読み込み
|
||||
import Info from "./info.js";
|
||||
import Help from "./help.js";
|
||||
import Follow from "./follow.js";
|
||||
import UnFollow from "./unfollow.js";
|
||||
import Weather from "./weather.js";
|
||||
import Report from "./report.js";
|
||||
import Terms from "./legal/terms.js"
|
||||
import PrivacyPolicy from "./legal/privacy.js";
|
||||
import Delete from "./delete.js";
|
||||
import MakeItAQuote from "./miq/main.js";
|
||||
import MiQPermission from "./miq/permission.js";
|
||||
import MiQAllow from "./miq/allow.js";
|
||||
import config from "@/lib/config";
|
||||
import type { ueuse } from "@/types/types";
|
||||
|
||||
// 初期化
|
||||
if (!fs.existsSync("data/alreadyCommands.json")) {
|
||||
fs.writeFileSync(
|
||||
"data/alreadyCommands.json",
|
||||
JSON.stringify(initialFile),
|
||||
JSON.stringify([]),
|
||||
"utf-8",
|
||||
);
|
||||
}
|
||||
@@ -162,40 +146,40 @@ export default async function Commands() {
|
||||
|
||||
switch (commandName) {
|
||||
case "info":
|
||||
Info(data);
|
||||
(await import("@/scripts/commands/info")).default(data);
|
||||
break;
|
||||
case "help":
|
||||
Help(data);
|
||||
(await import("@/scripts/commands/help")).default(data);
|
||||
break;
|
||||
case "legal terms":
|
||||
Terms(data);
|
||||
(await import("@/scripts/commands/legal/terms")).default(data);
|
||||
break;
|
||||
case "legal privacy":
|
||||
PrivacyPolicy(data);
|
||||
(await import("@/scripts/commands/legal/privacy")).default(data);
|
||||
break;
|
||||
case "report":
|
||||
Report(data);
|
||||
(await import("@/scripts/commands/report")).default(data);
|
||||
break;
|
||||
case "follow":
|
||||
Follow(data);
|
||||
(await import("@/scripts/commands/follow")).default(data);
|
||||
break;
|
||||
case "unfollow":
|
||||
UnFollow(data);
|
||||
(await import("@/scripts/commands/unfollow")).default(data);
|
||||
break;
|
||||
case "weather":
|
||||
Weather(data);
|
||||
(await import("@/scripts/commands/weather")).default(data);
|
||||
break;
|
||||
case "miq":
|
||||
MakeItAQuote(data);
|
||||
(await import("@/scripts/commands/miq/main")).default(data);
|
||||
break;
|
||||
case "miq permission":
|
||||
MiQPermission(data);
|
||||
(await import("@/scripts/commands/miq/permission")).default(data);
|
||||
break;
|
||||
case "miq allow":
|
||||
MiQAllow(data);
|
||||
(await import("@/scripts/commands/miq/allow")).default(data);
|
||||
break;
|
||||
case "delete":
|
||||
Delete(data);
|
||||
(await import("@/scripts/commands/delete")).default(data);
|
||||
break;
|
||||
default:
|
||||
const reply = await Reply(`
|
||||
@@ -1,9 +1,8 @@
|
||||
import { meApi, ueuse } from "../../../types/types";
|
||||
import { readFileSync } from "fs";
|
||||
import config from "../../../config.js";
|
||||
import { Reply } from "../main.js";
|
||||
import { Permission } from "./permission";
|
||||
import MiQ from "../../../miq/main.js";
|
||||
import { meApi, ueuse } from "@/types/types";
|
||||
import config from "@/lib/config";
|
||||
import { Reply } from "@/scripts/commands/main";
|
||||
import { Permission } from "@/scripts/commands/miq/permission";
|
||||
import MiQ from "miq/main";
|
||||
|
||||
export default async function MiQAllow(data: ueuse) {
|
||||
if (!config.miq) {
|
||||
@@ -22,7 +21,7 @@ export default async function MiQAllow(data: ueuse) {
|
||||
|
||||
// 権限一覧取得
|
||||
const permissions: { [user: string]: Permission } =
|
||||
JSON.parse(readFileSync("data/miqPermissions.json", "utf-8"));
|
||||
JSON.parse((await import("fs")).readFileSync("data/miqPermissions.json", "utf-8"));
|
||||
|
||||
if (permissions[data.account.userid] !== "consent") {
|
||||
console.log("MiQ許可制(許可制以外):", await Reply(`
|
||||
@@ -1,9 +1,7 @@
|
||||
import { ueuse } from "../../../types/types";
|
||||
import MiQ from "../../../miq/main.js";
|
||||
import config from "../../../config.js";
|
||||
import { Reply } from "../main.js";
|
||||
import { readFileSync, writeFileSync } from "fs";
|
||||
import { Permission } from "./permission";
|
||||
import { ueuse } from "@/types/types";
|
||||
import config from "@/lib/config";
|
||||
import { Reply } from "@/scripts/commands/main";
|
||||
import type { Permission } from "@/scripts/commands/miq/permission";
|
||||
|
||||
export default async function MakeItAQuote(data: ueuse) {
|
||||
if (!config.miq) {
|
||||
@@ -47,12 +45,12 @@ export default async function MakeItAQuote(data: ueuse) {
|
||||
|
||||
// 権限一覧取得
|
||||
const permissions: { [user: string]: Permission } =
|
||||
JSON.parse(readFileSync("data/miqPermissions.json", "utf-8"));
|
||||
JSON.parse((await import("fs")).readFileSync("data/miqPermissions.json", "utf-8"));
|
||||
|
||||
// 初期化
|
||||
if (permissions[ueuseData.account.userid] === undefined) {
|
||||
permissions[ueuseData.account.userid] = "consent";
|
||||
writeFileSync(
|
||||
(await import("fs")).writeFileSync(
|
||||
"data/miqPermissions.json",
|
||||
JSON.stringify(permissions),
|
||||
"utf-8"
|
||||
@@ -70,7 +68,10 @@ export default async function MakeItAQuote(data: ueuse) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (permissions[ueuseData.account.userid] === "consent") {
|
||||
if (
|
||||
permissions[ueuseData.account.userid] === "consent" &&
|
||||
data.account.userid !== ueuseData.account.userid
|
||||
) {
|
||||
console.log("MiQ(許可制):", await Reply(`
|
||||
生成元ユーズの投稿者が生成要求者を許可制に設定しています。
|
||||
このユーズにMake it a Quoteを使用するには、
|
||||
@@ -79,7 +80,7 @@ export default async function MakeItAQuote(data: ueuse) {
|
||||
return;
|
||||
}
|
||||
|
||||
const img = await MiQ({
|
||||
const img = await (await import("../../../../miq/main")).default({
|
||||
type: "Base64Data",
|
||||
color: color,
|
||||
text: ueuseData.text,
|
||||
@@ -1,11 +1,10 @@
|
||||
import { ueuse } from "../../../types/types";
|
||||
import { Reply } from "../main.js";
|
||||
import config from "../../../config.js";
|
||||
import { readFileSync, writeFileSync, existsSync } from "fs";
|
||||
import { ueuse } from "@/types/types";
|
||||
import { Reply } from "@/scripts/commands/main";
|
||||
import { writeFileSync } from "fs";
|
||||
|
||||
// 初期化
|
||||
const initialFile = {};
|
||||
if (!existsSync("data/miqPermissions.json")) {
|
||||
if (!(await import("fs")).existsSync("data/miqPermissions.json")) {
|
||||
writeFileSync(
|
||||
"data/miqPermissions.json",
|
||||
JSON.stringify(initialFile),
|
||||
@@ -25,7 +24,7 @@ const PermissionsNames: { [name: string]: string } = {
|
||||
}
|
||||
|
||||
export default async function MiQPermission(data: ueuse) {
|
||||
if (!config.miq) {
|
||||
if (!(await import("../../../../config")).default.miq) {
|
||||
await Reply(`
|
||||
BOT管理者によってMake it a quoteが無効化されています。
|
||||
そのため\`/miq\`はご利用いただけません。
|
||||
@@ -34,7 +33,7 @@ export default async function MiQPermission(data: ueuse) {
|
||||
}
|
||||
|
||||
const permissions: { [user: string]: string } =
|
||||
JSON.parse(readFileSync("data/miqPermissions.json", "utf-8"));
|
||||
JSON.parse((await import("fs")).readFileSync("data/miqPermissions.json", "utf-8"));
|
||||
|
||||
// 初期化
|
||||
if (permissions[data.account.userid] === undefined) {
|
||||
@@ -1,7 +1,6 @@
|
||||
import { ueuse } from "types/types";
|
||||
import { Reply } from "./main.js";
|
||||
import config from "../../config.js";
|
||||
import sendMail from "../../src/mailer.js";
|
||||
import { ueuse } from "@/types/types";
|
||||
import { Reply } from "@/scripts/commands/main";
|
||||
import config from "@/lib/config";
|
||||
|
||||
export default async function Report(data: ueuse) {
|
||||
if (
|
||||
@@ -40,7 +39,7 @@ export default async function Report(data: ueuse) {
|
||||
}
|
||||
|
||||
try {
|
||||
sendMail({
|
||||
(await import("@/lib/mailer")).default({
|
||||
to: config.emergency.mail.to,
|
||||
subject: "【報告】BOT利用者からの報告",
|
||||
text: `
|
||||
@@ -1,6 +1,6 @@
|
||||
import { ueuse } from "types/types";
|
||||
import config from "../../config.js";
|
||||
import { Reply } from "./main.js";
|
||||
import { ueuse } from "@/types/types";
|
||||
import config from "@/lib/config";
|
||||
import { Reply } from "@/scripts/commands/main";
|
||||
|
||||
export default async function UnFollow(data: ueuse) {
|
||||
const unfollowReq = await fetch(`${config.uwuzu.host}/api/users/unfollow`, {
|
||||
@@ -0,0 +1,6 @@
|
||||
import { weatherReply } from "@/scripts/weatherNotice";
|
||||
import { ueuse } from "@/types/types";
|
||||
|
||||
export default function Weather(data: ueuse) {
|
||||
weatherReply(data.uniqid);
|
||||
}
|
||||
@@ -1,7 +1,6 @@
|
||||
import WebSocket from "ws";
|
||||
import sendMail from "../src/mailer.js";
|
||||
|
||||
import config from "../config.js";
|
||||
import sendMail from "@/lib/mailer";
|
||||
import config from "@/lib/config";
|
||||
|
||||
class P2PEarthquakeClient {
|
||||
private ws: WebSocket | null = null;
|
||||
@@ -284,7 +283,7 @@ async function event(earthquakeInfo: any): Promise<void> {
|
||||
console.log("サーバーがダウンする可能性があります");
|
||||
|
||||
// メール送信
|
||||
if (config.emergency.isEnabled) {
|
||||
if (config.emergency.mail.isEnabled) {
|
||||
sendMail({
|
||||
to: config.emergency.mail.to,
|
||||
subject: "【警告】震度6強以上の地震を受信しました",
|
||||
@@ -1,6 +1,6 @@
|
||||
import { format } from "date-fns";
|
||||
import eventdays from "./eventdayData.js";
|
||||
import config from "../config.js";
|
||||
import eventdays from "@/constants/eventday";
|
||||
import config from "@/lib/config";
|
||||
|
||||
export default async function EventDays() {
|
||||
const now = format(new Date(), "MM/dd");
|
||||
@@ -1,8 +1,7 @@
|
||||
import * as fs from "fs";
|
||||
import { isAfter } from "date-fns";
|
||||
|
||||
import config from "../config.js";
|
||||
import sendMail from "../src/mailer.js";
|
||||
import config from "@/lib/config";
|
||||
import sendMail from "@/lib/mailer";
|
||||
|
||||
export default function successExit() {
|
||||
// 初期化
|
||||
@@ -56,5 +55,3 @@ export default function successExit() {
|
||||
fs.writeFileSync("logs/boot.json", JSON.stringify(iolog), "utf-8");
|
||||
});
|
||||
}
|
||||
|
||||
successExit();
|
||||
@@ -1,7 +1,6 @@
|
||||
import { format } from "date-fns";
|
||||
|
||||
import type * as types from "types/types";
|
||||
import config from "../config.js";
|
||||
import type * as types from "@/types/types";
|
||||
import config from "@/lib/config";
|
||||
|
||||
export default async function timeNotice() {
|
||||
// 停止時間
|
||||
@@ -1,8 +1,6 @@
|
||||
import { cityList } from "../src/weatherId.js";
|
||||
|
||||
import type * as types from "types/types";
|
||||
|
||||
import config from "../config.js";
|
||||
import { cityList } from "@/constants/weather";
|
||||
import type * as types from "@/types/types";
|
||||
import config from "@/lib/config";
|
||||
|
||||
export async function weatherNotice() {
|
||||
console.log("----------------");
|
||||
Vendored
+58
@@ -0,0 +1,58 @@
|
||||
export default interface Config {
|
||||
time: {
|
||||
stopTimes: {
|
||||
start: number;
|
||||
stop: number;
|
||||
};
|
||||
};
|
||||
earthquake: {
|
||||
reconnectTimes: number;
|
||||
websocketUrl: string;
|
||||
areasCsvUrl: string;
|
||||
maxScaleMin: number;
|
||||
};
|
||||
weather: {
|
||||
splitCount: number;
|
||||
};
|
||||
miq: boolean;
|
||||
|
||||
emergency: {
|
||||
isEnabled: true;
|
||||
mail: {
|
||||
isEnabled: true;
|
||||
host: string;
|
||||
port: number;
|
||||
user: string;
|
||||
password: string;
|
||||
secure: boolean;
|
||||
to: string | string[];
|
||||
} | {
|
||||
isEnabled: false;
|
||||
};
|
||||
} | {
|
||||
isEnabled: false;
|
||||
};
|
||||
report: {
|
||||
isEnabled: boolean;
|
||||
message: string;
|
||||
};
|
||||
legal: {
|
||||
terms: string;
|
||||
privacy: string;
|
||||
};
|
||||
admin: {
|
||||
name: string;
|
||||
showMail: string | false;
|
||||
panel: {
|
||||
isEnabled: true;
|
||||
port: number;
|
||||
} | {
|
||||
isEnabled: false;
|
||||
};
|
||||
};
|
||||
uwuzu: {
|
||||
apiToken: string;
|
||||
host: string;
|
||||
};
|
||||
debug?: true;
|
||||
}
|
||||
+8
-3
@@ -2,7 +2,7 @@
|
||||
"compilerOptions": {
|
||||
"target": "ES2024",
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "node",
|
||||
"moduleResolution": "bundler",
|
||||
"outDir": "./dist",
|
||||
"esModuleInterop": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
@@ -12,12 +12,17 @@
|
||||
"baseUrl": "./",
|
||||
"typeRoots": [
|
||||
"./node_modules/@types",
|
||||
"./types"
|
||||
"./src/types"
|
||||
],
|
||||
"paths": {
|
||||
"@/*": ["./src/*"],
|
||||
"miq": ["./miq/*"],
|
||||
"ws": ["./node_modules/ws/index.js"],
|
||||
"@types/ws": ["./node_modules/@types/ws/index.d.ts"]
|
||||
"@types/ws": ["./node_modules/@types/ws/index.d.ts"],
|
||||
},
|
||||
"removeComments": true,
|
||||
},
|
||||
"tsc-alias": {
|
||||
"resolveFullPaths": true,
|
||||
},
|
||||
}
|
||||
|
||||
Vendored
-87
@@ -1,87 +0,0 @@
|
||||
interface earthquakeTypes {
|
||||
reconnectTimes: number;
|
||||
websocketUrl: string;
|
||||
areasCsvUrl: string;
|
||||
maxScaleMin: number;
|
||||
}
|
||||
|
||||
interface weatherTypes {
|
||||
splitCount: number;
|
||||
}
|
||||
|
||||
interface stopsTypes {
|
||||
start: number;
|
||||
stop: number;
|
||||
}
|
||||
|
||||
interface timeTypes {
|
||||
stopTimes: stopsTypes;
|
||||
}
|
||||
|
||||
interface emergencyMailFullTypes {
|
||||
isEnabled: true;
|
||||
host: string;
|
||||
port: number;
|
||||
user: string;
|
||||
password: string;
|
||||
secure: boolean;
|
||||
to: string | string[];
|
||||
}
|
||||
|
||||
interface emergencyMailMinTypes {
|
||||
isEnabled: false;
|
||||
mail: undefined;
|
||||
}
|
||||
|
||||
interface emergencyFullTypes {
|
||||
isEnabled: true;
|
||||
mail: emergencyMailFullTypes | emergemcyMailMinTypes;
|
||||
}
|
||||
|
||||
interface emergencyMinTypes {
|
||||
isEnabled: false;
|
||||
}
|
||||
|
||||
interface reportTypes {
|
||||
isEnabled: boolean;
|
||||
message: string;
|
||||
}
|
||||
|
||||
interface legalTypes {
|
||||
terms: string;
|
||||
privacy: string;
|
||||
}
|
||||
|
||||
interface PanelFullTypes {
|
||||
isEnabled: true;
|
||||
port: number;
|
||||
}
|
||||
|
||||
interface PanelMinTypes {
|
||||
isEnabled: false;
|
||||
}
|
||||
|
||||
interface adminTypes {
|
||||
name: string;
|
||||
showMail: string | false;
|
||||
panel: PanelFullTypes | PanelMinTypes;
|
||||
}
|
||||
|
||||
interface uwuzuTypes {
|
||||
apiToken: string;
|
||||
host: string;
|
||||
}
|
||||
|
||||
export interface configTypes {
|
||||
time: timeTypes,
|
||||
earthquake: earthquakeTypes;
|
||||
weather: weatherTypes;
|
||||
miq: boolean;
|
||||
|
||||
emergency: emergencyFullTypes | emergencyMinTypes;
|
||||
report: reportTypes;
|
||||
legal: legalTypes;
|
||||
admin: adminTypes;
|
||||
uwuzu: uwuzuTypes;
|
||||
debug?: true;
|
||||
}
|
||||
Reference in New Issue
Block a user