
- Complete NestJS TypeScript implementation with WebSocket support - Direct messaging (DM) and group chat functionality - End-to-end encryption with AES encryption and key pairs - Media file support (images, videos, audio, documents) up to 100MB - Push notifications with Firebase Cloud Messaging integration - Mention alerts and real-time typing indicators - User authentication with JWT and Passport - SQLite database with TypeORM entities and relationships - Comprehensive API documentation with Swagger/OpenAPI - File upload handling with secure access control - Online/offline status tracking and presence management - Message editing, deletion, and reply functionality - Notification management with automatic cleanup - Health check endpoint for monitoring - CORS configuration for cross-origin requests - Environment-based configuration management - Structured for Flutter SDK integration Features implemented: ✅ Real-time messaging with Socket.IO ✅ User registration and authentication ✅ Direct messages and group chats ✅ Media file uploads and management ✅ End-to-end encryption ✅ Push notifications ✅ Mention alerts ✅ Typing indicators ✅ Message read receipts ✅ Online status tracking ✅ File access control ✅ Comprehensive API documentation Ready for Flutter SDK development and production deployment.
22 lines
1.1 KiB
JavaScript
22 lines
1.1 KiB
JavaScript
"use strict";
|
|
// Call this function in a another function to find out the file from
|
|
// which that function was called from. (Inspects the v8 stack trace)
|
|
//
|
|
// Inspired by http://stackoverflow.com/questions/13227489
|
|
module.exports = function getCallerFile(position) {
|
|
if (position === void 0) { position = 2; }
|
|
if (position >= Error.stackTraceLimit) {
|
|
throw new TypeError('getCallerFile(position) requires position be less then Error.stackTraceLimit but position was: `' + position + '` and Error.stackTraceLimit was: `' + Error.stackTraceLimit + '`');
|
|
}
|
|
var oldPrepareStackTrace = Error.prepareStackTrace;
|
|
Error.prepareStackTrace = function (_, stack) { return stack; };
|
|
var stack = new Error().stack;
|
|
Error.prepareStackTrace = oldPrepareStackTrace;
|
|
if (stack !== null && typeof stack === 'object') {
|
|
// stack[0] holds this file
|
|
// stack[1] holds where this function was called
|
|
// stack[2] holds the file we're interested in
|
|
return stack[position] ? stack[position].getFileName() : undefined;
|
|
}
|
|
};
|
|
//# sourceMappingURL=index.js.map
|