2026-06-30 18:14:52 -05:00
|
|
|
|
"use strict";
|
|
|
|
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
|
|
|
|
if (k2 === undefined) k2 = k;
|
|
|
|
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
|
|
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
|
|
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
|
|
|
|
}
|
|
|
|
|
|
Object.defineProperty(o, k2, desc);
|
|
|
|
|
|
}) : (function(o, m, k, k2) {
|
|
|
|
|
|
if (k2 === undefined) k2 = k;
|
|
|
|
|
|
o[k2] = m[k];
|
|
|
|
|
|
}));
|
|
|
|
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
|
|
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
|
|
|
|
}) : function(o, v) {
|
|
|
|
|
|
o["default"] = v;
|
|
|
|
|
|
});
|
|
|
|
|
|
var __importStar = (this && this.__importStar) || (function () {
|
|
|
|
|
|
var ownKeys = function(o) {
|
|
|
|
|
|
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
|
|
|
|
var ar = [];
|
|
|
|
|
|
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
|
|
|
|
return ar;
|
|
|
|
|
|
};
|
|
|
|
|
|
return ownKeys(o);
|
|
|
|
|
|
};
|
|
|
|
|
|
return function (mod) {
|
|
|
|
|
|
if (mod && mod.__esModule) return mod;
|
|
|
|
|
|
var result = {};
|
|
|
|
|
|
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
|
|
|
|
__setModuleDefault(result, mod);
|
|
|
|
|
|
return result;
|
|
|
|
|
|
};
|
|
|
|
|
|
})();
|
|
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
|
|
exports.onDateHistoryCreated = void 0;
|
|
|
|
|
|
const functions = __importStar(require("firebase-functions"));
|
|
|
|
|
|
const admin = __importStar(require("firebase-admin"));
|
|
|
|
|
|
const quietHours_1 = require("../notifications/quietHours");
|
2026-06-30 23:45:42 -05:00
|
|
|
|
const pruneTokens_1 = require("../notifications/pruneTokens");
|
2026-06-30 18:14:52 -05:00
|
|
|
|
/**
|
|
|
|
|
|
* Fires when a date is logged as completed (`couples/{coupleId}/date_history/{dateId}` created). Nudges
|
|
|
|
|
|
* the OTHER partner (not the one who logged it) to add their reflection — so the reflect→reveal loop
|
|
|
|
|
|
* starts even if the logger doesn't reflect right away. Gated on `notifPartnerAnswered` + quiet hours.
|
|
|
|
|
|
*/
|
|
|
|
|
|
exports.onDateHistoryCreated = functions.firestore
|
|
|
|
|
|
.document('couples/{coupleId}/date_history/{dateId}')
|
|
|
|
|
|
.onCreate(async (snap, context) => {
|
|
|
|
|
|
var _a, _b, _c, _d, _e;
|
|
|
|
|
|
const { coupleId, dateId } = context.params;
|
|
|
|
|
|
const db = admin.firestore();
|
|
|
|
|
|
const addedBy = (_a = snap.data()) === null || _a === void 0 ? void 0 : _a.addedBy;
|
|
|
|
|
|
const coupleDoc = await db.collection('couples').doc(coupleId).get();
|
|
|
|
|
|
if (!coupleDoc.exists)
|
|
|
|
|
|
return;
|
|
|
|
|
|
const userIds = ((_c = (_b = coupleDoc.data()) === null || _b === void 0 ? void 0 : _b.userIds) !== null && _c !== void 0 ? _c : []);
|
|
|
|
|
|
const partnerId = userIds.find((u) => u !== addedBy);
|
|
|
|
|
|
if (!partnerId)
|
|
|
|
|
|
return;
|
|
|
|
|
|
const partnerUserDoc = await db.collection('users').doc(partnerId).get();
|
|
|
|
|
|
if (((_d = partnerUserDoc.data()) === null || _d === void 0 ? void 0 : _d.notifPartnerAnswered) === false)
|
|
|
|
|
|
return;
|
|
|
|
|
|
const title = 'You went on a date 💜';
|
|
|
|
|
|
const body = 'Reflect on it together while it’s fresh.';
|
|
|
|
|
|
await db.collection('users').doc(partnerId).collection('notification_queue').add({
|
|
|
|
|
|
type: 'date_logged', title, body, read: false, createdAt: admin.firestore.FieldValue.serverTimestamp(),
|
|
|
|
|
|
});
|
|
|
|
|
|
if ((0, quietHours_1.recipientInQuietHours)(partnerUserDoc.data()))
|
|
|
|
|
|
return;
|
|
|
|
|
|
const tokens = [];
|
|
|
|
|
|
const legacy = (_e = partnerUserDoc.data()) === null || _e === void 0 ? void 0 : _e.fcmToken;
|
|
|
|
|
|
if (typeof legacy === 'string' && legacy.length > 0)
|
|
|
|
|
|
tokens.push(legacy);
|
|
|
|
|
|
const tokenSnap = await db.collection('users').doc(partnerId).collection('fcmTokens').get();
|
|
|
|
|
|
tokenSnap.docs.forEach((d) => {
|
|
|
|
|
|
var _a;
|
|
|
|
|
|
const t = (_a = d.data()) === null || _a === void 0 ? void 0 : _a.token;
|
|
|
|
|
|
if (typeof t === 'string' && t.length > 0 && !tokens.includes(t))
|
|
|
|
|
|
tokens.push(t);
|
|
|
|
|
|
});
|
|
|
|
|
|
if (tokens.length === 0)
|
|
|
|
|
|
return;
|
|
|
|
|
|
const payload = {
|
|
|
|
|
|
notification: { title, body },
|
|
|
|
|
|
data: { type: 'date_logged', couple_id: coupleId, date_id: dateId },
|
|
|
|
|
|
};
|
|
|
|
|
|
const results = await Promise.allSettled(tokens.map((token) => admin.messaging().send(Object.assign(Object.assign({}, payload), { token, android: { notification: { channelId: 'partner_activity' } } }))));
|
|
|
|
|
|
results.forEach((r, i) => {
|
|
|
|
|
|
if (r.status === 'rejected')
|
|
|
|
|
|
console.warn(`[onDateHistoryCreated] FCM failed for ${tokens[i]}:`, r.reason);
|
|
|
|
|
|
});
|
2026-06-30 23:45:42 -05:00
|
|
|
|
await (0, pruneTokens_1.pruneDeadTokens)(db, partnerId, tokens, results);
|
2026-06-30 18:14:52 -05:00
|
|
|
|
});
|
|
|
|
|
|
//# sourceMappingURL=onDateHistoryCreated.js.map
|