67 lines
2.7 KiB
JavaScript
67 lines
2.7 KiB
JavaScript
|
|
"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.syncEntitlement = void 0;
|
||
|
|
const functions = __importStar(require("firebase-functions"));
|
||
|
|
const entitlementLogic_1 = require("./entitlementLogic");
|
||
|
|
/**
|
||
|
|
* Callable function that forces a re-sync of entitlements for the
|
||
|
|
* authenticated caller.
|
||
|
|
*
|
||
|
|
* Request body: { } (auth context supplies uid)
|
||
|
|
* Response: EntitlementState
|
||
|
|
*
|
||
|
|
* The client can invoke this after a purchase/restore or when local
|
||
|
|
* entitlement state appears stale. In production this should fetch the
|
||
|
|
* latest entitlement state from RevenueCat; for now it computes the
|
||
|
|
* state from the existing Firestore document and rewrites it, ensuring
|
||
|
|
* consistent field shapes.
|
||
|
|
*/
|
||
|
|
exports.syncEntitlement = functions.https.onCall(async (data, context) => {
|
||
|
|
var _a;
|
||
|
|
if (!((_a = context.auth) === null || _a === void 0 ? void 0 : _a.uid)) {
|
||
|
|
throw new functions.https.HttpsError('unauthenticated', 'Caller must be authenticated.');
|
||
|
|
}
|
||
|
|
const userId = context.auth.uid;
|
||
|
|
try {
|
||
|
|
const state = await (0, entitlementLogic_1.applyEntitlementSync)(userId);
|
||
|
|
return state;
|
||
|
|
}
|
||
|
|
catch (err) {
|
||
|
|
console.error('[syncEntitlement] failed:', err);
|
||
|
|
throw new functions.https.HttpsError('internal', 'Entitlement sync failed.');
|
||
|
|
}
|
||
|
|
});
|
||
|
|
//# sourceMappingURL=syncEntitlement.js.map
|