
- 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.
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
import * as C from './constant';
|
|
|
|
var padStart = function padStart(string, length, pad) {
|
|
var s = String(string);
|
|
if (!s || s.length >= length) return string;
|
|
return "" + Array(length + 1 - s.length).join(pad) + string;
|
|
};
|
|
|
|
var padZoneStr = function padZoneStr(instance) {
|
|
var negMinutes = -instance.utcOffset();
|
|
var minutes = Math.abs(negMinutes);
|
|
var hourOffset = Math.floor(minutes / 60);
|
|
var minuteOffset = minutes % 60;
|
|
return "" + (negMinutes <= 0 ? '+' : '-') + padStart(hourOffset, 2, '0') + ":" + padStart(minuteOffset, 2, '0');
|
|
};
|
|
|
|
var monthDiff = function monthDiff(a, b) {
|
|
// function from moment.js in order to keep the same result
|
|
if (a.date() < b.date()) return -monthDiff(b, a);
|
|
var wholeMonthDiff = (b.year() - a.year()) * 12 + (b.month() - a.month());
|
|
var anchor = a.clone().add(wholeMonthDiff, C.M);
|
|
var c = b - anchor < 0;
|
|
var anchor2 = a.clone().add(wholeMonthDiff + (c ? -1 : 1), C.M);
|
|
return +(-(wholeMonthDiff + (b - anchor) / (c ? anchor - anchor2 : anchor2 - anchor)) || 0);
|
|
};
|
|
|
|
var absFloor = function absFloor(n) {
|
|
return n < 0 ? Math.ceil(n) || 0 : Math.floor(n);
|
|
};
|
|
|
|
var prettyUnit = function prettyUnit(u) {
|
|
var special = {
|
|
M: C.M,
|
|
y: C.Y,
|
|
w: C.W,
|
|
d: C.D,
|
|
D: C.DATE,
|
|
h: C.H,
|
|
m: C.MIN,
|
|
s: C.S,
|
|
ms: C.MS,
|
|
Q: C.Q
|
|
};
|
|
return special[u] || String(u || '').toLowerCase().replace(/s$/, '');
|
|
};
|
|
|
|
var isUndefined = function isUndefined(s) {
|
|
return s === undefined;
|
|
};
|
|
|
|
export default {
|
|
s: padStart,
|
|
z: padZoneStr,
|
|
m: monthDiff,
|
|
a: absFloor,
|
|
p: prettyUnit,
|
|
u: isUndefined
|
|
}; |