This commit is contained in:
@@ -2,6 +2,7 @@ export const ROUTE_NAMES = {
|
|||||||
HOME: 'home',
|
HOME: 'home',
|
||||||
CREATE: 'create',
|
CREATE: 'create',
|
||||||
MANAGE_QR_CODE_READY: 'manage-qr-code-ready',
|
MANAGE_QR_CODE_READY: 'manage-qr-code-ready',
|
||||||
|
MANAGE_QR_CODE_CHAT: 'manage-qr-code-chat',
|
||||||
READ_QR_CODE: 'read-qr-code',
|
READ_QR_CODE: 'read-qr-code',
|
||||||
DONATE: 'donate',
|
DONATE: 'donate',
|
||||||
PUBLIC_CHAT: 'public-chat',
|
PUBLIC_CHAT: 'public-chat',
|
||||||
|
|||||||
@@ -19,6 +19,12 @@ const routes = [
|
|||||||
component: () => import('@/views/ManageQRCodeReadyView.vue'),
|
component: () => import('@/views/ManageQRCodeReadyView.vue'),
|
||||||
props: true,
|
props: true,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/manage/:qr_code_uri/chat/:chat',
|
||||||
|
name: ROUTE_NAMES.MANAGE_QR_CODE_CHAT,
|
||||||
|
component: () => import('@/views/ManageQRCodeChatView.vue'),
|
||||||
|
props: true,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/read/:qr_code_uri',
|
path: '/read/:qr_code_uri',
|
||||||
name: ROUTE_NAMES.READ_QR_CODE,
|
name: ROUTE_NAMES.READ_QR_CODE,
|
||||||
|
|||||||
@@ -0,0 +1,51 @@
|
|||||||
|
<template>
|
||||||
|
<div class="flex flex-col min-h-full">
|
||||||
|
<!-- Основной контент -->
|
||||||
|
<main class="flex-grow flex flex-col">
|
||||||
|
<section class="flex flex-col flex-grow max-w-prose w-full mx-auto">
|
||||||
|
<ChatComponent userRole="owner" :qr_code_uri="qr_code_uri" :chat="chat">
|
||||||
|
<template #endOfMessages="{ count }">
|
||||||
|
<!-- Уведомление, если гость отправил только одно сообщение -->
|
||||||
|
<div
|
||||||
|
v-if="count === 2"
|
||||||
|
class="flex flex-col items-center justify-center text-center bg-gray-50 border border-gray-200 rounded-lg shadow-md p-6 mt-6"
|
||||||
|
>
|
||||||
|
<p class="text-gray-700 font-medium text-lg">Ваше сообщение отправлено.</p>
|
||||||
|
<p class="text-gray-600 mt-2">
|
||||||
|
Вы можете написать ещё одно сообщение или подождать ответа.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<p class="mt-10 text-sm text-gray-500 text-center">
|
||||||
|
Хотите создать еще один QR‑код?
|
||||||
|
<a href="/create" class="underline">Создайте его здесь</a>.
|
||||||
|
</p>
|
||||||
|
<p class="mt-1 text-sm text-gray-500 text-center">
|
||||||
|
Сделайте НаСвязи удобнее. Мы будем рады вашей <RouterLink
|
||||||
|
to="/donate"
|
||||||
|
class="underline"
|
||||||
|
>поддержке</RouterLink
|
||||||
|
>.
|
||||||
|
</p>
|
||||||
|
</template>
|
||||||
|
</ChatComponent>
|
||||||
|
</section>
|
||||||
|
</main>
|
||||||
|
|
||||||
|
<!-- Футер -->
|
||||||
|
<!-- <footer class="bg-gray-100 text-center py-4 border-t text-sm text-gray-700">-->
|
||||||
|
<!-- <p><a href="/create" class="underline">Создайте свой QR‑код</a>.</p>-->
|
||||||
|
<!-- <p class="mt-1">-->
|
||||||
|
<!-- Сделайте НаСвязи удобнее. Будем рады вашей <a href="/donate" class="underline"-->
|
||||||
|
<!-- >поддержке</a-->
|
||||||
|
<!-- >.-->
|
||||||
|
<!-- </p>-->
|
||||||
|
<!-- </footer>-->
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
import type { MessageDocument } from '@hereconnect/types'
|
||||||
|
import ChatComponent from '@/components/ChatComponent.vue'
|
||||||
|
defineProps<{ qr_code_uri: MessageDocument['qr_code_uri']; chat: MessageDocument['chat'] }>()
|
||||||
|
</script>
|
||||||
@@ -1,44 +1,47 @@
|
|||||||
import type { BaseDocument } from './BaseDocument'
|
import type { BaseDocument } from "./BaseDocument";
|
||||||
|
|
||||||
export type ContactInfo = {
|
export type ContactInfo = {
|
||||||
name?: string
|
name?: string;
|
||||||
phone?: string
|
phone?: string;
|
||||||
email?: string
|
email?: string;
|
||||||
}
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Интерфейс для документа QR‑кода.
|
* Интерфейс для документа QR‑кода.
|
||||||
* Представляет QR‑код, созданный пользователем, и информацию о привязанном объекте.
|
* Представляет QR‑код, созданный пользователем, и информацию о привязанном объекте.
|
||||||
*/
|
*/
|
||||||
export interface QRCodeDocument extends BaseDocument {
|
export interface QRCodeDocument extends BaseDocument {
|
||||||
|
/** Идентификатор документа, в формате "qr_code:<uuid>" */
|
||||||
|
_id: string;
|
||||||
|
|
||||||
/** Тип документа, всегда 'qr_code' */
|
/** Тип документа, всегда 'qr_code' */
|
||||||
type: 'qr_code'
|
type: "qr_code";
|
||||||
|
|
||||||
/** Уникальный URL для настройки и взаимодействия */
|
/** Уникальный URL для настройки и взаимодействия */
|
||||||
uri: string
|
uri: string;
|
||||||
|
|
||||||
/** Ссылка на QR‑код */
|
/** Ссылка на QR‑код */
|
||||||
url: string
|
url: string;
|
||||||
|
|
||||||
/** Идентификатор пользователя, который создал QR‑код */
|
/** Идентификатор пользователя, который создал QR‑код */
|
||||||
user_uuid: string
|
user_uuid: string;
|
||||||
|
|
||||||
/** Идентификатор браузера, через который был создан QR-код */
|
/** Идентификатор браузера, через который был создан QR-код */
|
||||||
browser_uuid: string
|
browser_uuid: string;
|
||||||
|
|
||||||
/** Название объекта, для которого создан QR‑код, например "Мой автомобиль" */
|
/** Название объекта, для которого создан QR‑код, например "Мой автомобиль" */
|
||||||
name: string
|
name: string;
|
||||||
|
|
||||||
messageDeliveryMethod: 'telegram' | 'webPush'
|
messageDeliveryMethod: "telegram" | "webPush";
|
||||||
|
|
||||||
/** Тип объекта, для которого создан QR‑код, например "car" */
|
/** Тип объекта, для которого создан QR‑код, например "car" */
|
||||||
placement: 'car' | 'pet' | 'door' | 'store' | 'restaurant_table' | 'other'
|
placement: "car" | "pet" | "door" | "store" | "restaurant_table" | "other";
|
||||||
|
|
||||||
/** Доступные действия для гостей (например, ["send_message"]) */
|
/** Доступные действия для гостей (например, ["send_message"]) */
|
||||||
actions: string[]
|
actions: string[];
|
||||||
|
|
||||||
/** Предустановленное сообщение для гостей */
|
/** Предустановленное сообщение для гостей */
|
||||||
predefinedMessages?: string[]
|
predefinedMessages?: string[];
|
||||||
|
|
||||||
contactInfo?: ContactInfo
|
contactInfo?: ContactInfo;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import type {
|
|||||||
MessageDocument,
|
MessageDocument,
|
||||||
QRCodeDocument,
|
QRCodeDocument,
|
||||||
ServerSettingsDocument,
|
ServerSettingsDocument,
|
||||||
|
WebPushSubscriptionDocument,
|
||||||
} from "@hereconnect/types";
|
} from "@hereconnect/types";
|
||||||
|
|
||||||
export interface ServiceDoc {
|
export interface ServiceDoc {
|
||||||
@@ -26,6 +27,13 @@ export const qrDb = new PouchDB<QRCodeDocument>(`${process.env.API_URL}/qr`, {
|
|||||||
skip_setup: true,
|
skip_setup: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const webPushSubscriptionsDb = new PouchDB<WebPushSubscriptionDocument>(
|
||||||
|
`${process.env.API_URL}/web_push_subscriptions`,
|
||||||
|
{
|
||||||
|
skip_setup: true,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
export const { messagesDb, serviceDb } = (() => {
|
export const { messagesDb, serviceDb } = (() => {
|
||||||
const messagesDB = new PouchDB(messagesDbUrl, {
|
const messagesDB = new PouchDB(messagesDbUrl, {
|
||||||
skip_setup: true,
|
skip_setup: true,
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import webpush from "web-push";
|
import webpush from "web-push";
|
||||||
|
|
||||||
import { CouchDBChangesStream } from "couchdb-changes-stream";
|
import { CouchDBChangesStream } from "couchdb-changes-stream";
|
||||||
import { qrDb, messagesDbUrl } from "./dbs";
|
import { qrDb, messagesDbUrl, webPushSubscriptionsDb } from "./dbs";
|
||||||
import { setupVapidDetails } from "./setupVapidDetails";
|
import { setupVapidDetails } from "./setupVapidDetails";
|
||||||
import type { MessageDocument } from "@hereconnect/types";
|
import type { MessageDocument } from "@hereconnect/types";
|
||||||
import { ServiceSeqTracker } from "./serviceSeqTracker";
|
import { ServiceSeqTracker } from "./serviceSeqTracker";
|
||||||
@@ -36,9 +36,9 @@ const start = async () => {
|
|||||||
console.info("Service started from sequence", since);
|
console.info("Service started from sequence", since);
|
||||||
|
|
||||||
for await (const change of changesStream) {
|
for await (const change of changesStream) {
|
||||||
const { seq, doc } = change;
|
const { seq, doc: msgDoc } = change;
|
||||||
|
|
||||||
if (!doc) {
|
if (!msgDoc) {
|
||||||
console.error("Change missing document:", change);
|
console.error("Change missing document:", change);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@@ -46,28 +46,69 @@ const start = async () => {
|
|||||||
serviceSeqTracker.checkNextSeq(seq);
|
serviceSeqTracker.checkNextSeq(seq);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (doc.from === "guest") {
|
if (msgDoc.from === "guest") {
|
||||||
const qrDoc = await qrDb.get(`qr:${doc.qr_code_uri}`);
|
// send message to owner
|
||||||
|
const qrDoc = await qrDb.get(`qr_code:${msgDoc.qr_code_uri}`);
|
||||||
if (qrDoc.messageDeliveryMethod !== "webPush") {
|
if (qrDoc.messageDeliveryMethod !== "webPush") {
|
||||||
console.log(`Skip !webPush`);
|
console.log(`Skip !webPush`);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("FROM GUEST");
|
const { rows } = await webPushSubscriptionsDb.allDocs({
|
||||||
console.log(qrDoc.user_uuid);
|
startkey: `web_push_subscription:${qrDoc.user_uuid}:`,
|
||||||
console.log(qrDoc.browser_uuid);
|
endkey: `web_push_subscription:${qrDoc.user_uuid}:\uffff`,
|
||||||
} else if (doc.from === "owner") {
|
include_docs: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
if (rows.length === 0) {
|
||||||
|
console.log("NO SUBSCRIPTIONS");
|
||||||
|
}
|
||||||
|
|
||||||
|
for (const row of rows) {
|
||||||
|
const subscription = row.doc.subscription;
|
||||||
|
const topic = `chat-${msgDoc.qr_code_uri}-${msgDoc.chat}`;
|
||||||
|
const tag = `${topic}-${(new Date(msgDoc.created_at).getTime() - new Date(qrDoc.created_at).getTime()).toString(36)}`;
|
||||||
|
|
||||||
|
const options: NotificationOptions = {
|
||||||
|
icon: "/images/qr-code-logo-200x200.jpg",
|
||||||
|
body: msgDoc.body,
|
||||||
|
tag,
|
||||||
|
requireInteraction: true,
|
||||||
|
data: {
|
||||||
|
url: `/manage/${msgDoc.qr_code_uri}/chat/${msgDoc.chat}`,
|
||||||
|
payload: { tag },
|
||||||
|
},
|
||||||
|
} as const;
|
||||||
|
|
||||||
|
await webpush.sendNotification(
|
||||||
|
subscription,
|
||||||
|
JSON.stringify({
|
||||||
|
type: "notification",
|
||||||
|
notification: {
|
||||||
|
title: qrDoc.name,
|
||||||
|
options,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
{
|
||||||
|
urgency: "high",
|
||||||
|
topic,
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
console.log("sent");
|
||||||
|
}
|
||||||
|
} else if (msgDoc.from === "owner") {
|
||||||
console.log("FROM OWNER");
|
console.log("FROM OWNER");
|
||||||
} else {
|
} else {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(
|
console.log(
|
||||||
`Processed change: ${JSON.stringify({ _id: change.id, ref: doc._rev, seq: change.seq })}`,
|
`Processed change: ${JSON.stringify({ _id: change.id, ref: msgDoc._rev, seq: change.seq })}`,
|
||||||
);
|
);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(
|
console.error(
|
||||||
`Failed processing: ${JSON.stringify(error)} change: ${JSON.stringify({ id: doc._id, rev: doc._rev, seq: seq })}`,
|
`Failed processing: ${JSON.stringify(error)} change: ${JSON.stringify({ id: msgDoc._id, rev: msgDoc._rev, seq: seq })}`,
|
||||||
);
|
);
|
||||||
} finally {
|
} finally {
|
||||||
await serviceSeqTracker.saveSeq(seq);
|
await serviceSeqTracker.saveSeq(seq);
|
||||||
|
|||||||
@@ -16,7 +16,8 @@ export class ServiceSeqTracker {
|
|||||||
throw error; // Re-throw other errors
|
throw error; // Re-throw other errors
|
||||||
});
|
});
|
||||||
|
|
||||||
this.serviceDoc.lastSeq = 0;
|
// this.serviceDoc.lastSeq =
|
||||||
|
// "126-g1AAAACLeJzLYWBgYMpgTmHgzcvPy09JdcjLz8gvLskBCScyJNX___8_K4M50SUXKMCebGlpnmxpiq4Yh_Y8FiDJ0ACk_kNNsQKbYpSakphkYYKuJwsAb2YrPw";
|
||||||
|
|
||||||
return this.serviceDoc.lastSeq;
|
return this.serviceDoc.lastSeq;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user