Compare commits

..

3 Commits

5 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "notice-uwuzu",
"version": "v7.0.1(LTS)@uwuzu1.5.4",
"version": "v7.1.1(LTS)@uwuzu1.5.4",
"description": "Notice Bot for uwuzu",
"main": "dist/main.js",
"scripts": {
+2 -2
View File
@@ -2,7 +2,7 @@ import { ueuse } from "types/types.js";
import config from "../../config.js";
export default async function Follow(data: ueuse) {
const followReq = await fetch(`https://${config.uwuzu.host}/api/users/follow/`, {
const followReq = await fetch(`https://${config.uwuzu.host}/api/users/follow`, {
method: "POST",
body: JSON.stringify({
token: config.uwuzu.apiToken,
@@ -15,7 +15,7 @@ export default async function Follow(data: ueuse) {
console.log("フォロー: ", followRes);
const noticeReq = await fetch(`https://${config.uwuzu.host}/api/ueuse/create/`, {
const noticeReq = await fetch(`https://${config.uwuzu.host}/api/ueuse/create`, {
method: "POST",
body: JSON.stringify({
token: config.uwuzu.apiToken,
+5 -3
View File
@@ -57,14 +57,16 @@ function alreadyAdd(data: string) {
}
export default async function Commands() {
const mentions: Array<ueuse> = await (await fetch(
`https://${config.uwuzu.host}/api/ueuse/mentions/`, {
const mentionsReq = await fetch(
`https://${config.uwuzu.host}/api/ueuse/mentions`, {
method: "POST",
body: JSON.stringify({
token: config.uwuzu.apiToken,
}),
}
)).json();
);
const mentions: Array<ueuse> = await mentionsReq.json();
console.log("----------------");
console.log("コマンド処理");
+2 -2
View File
@@ -2,7 +2,7 @@ import { ueuse } from "types/types.js";
import config from "../../config.js";
export default async function UnFollow(data: ueuse) {
const unfollowReq = await fetch(`https://${config.uwuzu.host}/api/users/unfollow/`, {
const unfollowReq = await fetch(`https://${config.uwuzu.host}/api/users/unfollow`, {
method: "POST",
body: JSON.stringify({
token: config.uwuzu.apiToken,
@@ -14,7 +14,7 @@ export default async function UnFollow(data: ueuse) {
console.log("フォロー解除: ", unfollowRes);
const noticeReq = await fetch(`https://${config.uwuzu.host}/api/ueuse/create/`, {
const noticeReq = await fetch(`https://${config.uwuzu.host}/api/ueuse/create`, {
method: "POST",
body: JSON.stringify({
token: config.uwuzu.apiToken,
+2 -4
View File
@@ -2,7 +2,6 @@ import WebSocket from "ws";
import sendMail from "../src/mailer.js";
import config from "../config.js";
import { max } from "date-fns/fp";
class P2PEarthquakeClient {
private ws: WebSocket | null = null;
@@ -476,8 +475,7 @@ async function event(earthquakeInfo: any): Promise<void> {
}
async function ueuse(text: string) {
console.log(text);
/*const res = await fetch(`https://${config.uwuzu.host}/api/ueuse/create/`, {
const res = await fetch(`https://${config.uwuzu.host}/api/ueuse/create`, {
method: "POST",
body: JSON.stringify({
token: config.uwuzu.apiToken,
@@ -487,7 +485,7 @@ async function ueuse(text: string) {
const resData = await res.json();
console.log(`地震情報投稿:${JSON.stringify(resData)}`);*/
console.log(`地震情報投稿:${JSON.stringify(resData)}`);
}
export default function earthquakeNotice(): void {