
- 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.
69 lines
1.8 KiB
JavaScript
Executable File
69 lines
1.8 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const rimraf = require('./')
|
|
|
|
const path = require('path')
|
|
|
|
const isRoot = arg => /^(\/|[a-zA-Z]:\\)$/.test(path.resolve(arg))
|
|
const filterOutRoot = arg => {
|
|
const ok = preserveRoot === false || !isRoot(arg)
|
|
if (!ok) {
|
|
console.error(`refusing to remove ${arg}`)
|
|
console.error('Set --no-preserve-root to allow this')
|
|
}
|
|
return ok
|
|
}
|
|
|
|
let help = false
|
|
let dashdash = false
|
|
let noglob = false
|
|
let preserveRoot = true
|
|
const args = process.argv.slice(2).filter(arg => {
|
|
if (dashdash)
|
|
return !!arg
|
|
else if (arg === '--')
|
|
dashdash = true
|
|
else if (arg === '--no-glob' || arg === '-G')
|
|
noglob = true
|
|
else if (arg === '--glob' || arg === '-g')
|
|
noglob = false
|
|
else if (arg.match(/^(-+|\/)(h(elp)?|\?)$/))
|
|
help = true
|
|
else if (arg === '--preserve-root')
|
|
preserveRoot = true
|
|
else if (arg === '--no-preserve-root')
|
|
preserveRoot = false
|
|
else
|
|
return !!arg
|
|
}).filter(arg => !preserveRoot || filterOutRoot(arg))
|
|
|
|
const go = n => {
|
|
if (n >= args.length)
|
|
return
|
|
const options = noglob ? { glob: false } : {}
|
|
rimraf(args[n], options, er => {
|
|
if (er)
|
|
throw er
|
|
go(n+1)
|
|
})
|
|
}
|
|
|
|
if (help || args.length === 0) {
|
|
// If they didn't ask for help, then this is not a "success"
|
|
const log = help ? console.log : console.error
|
|
log('Usage: rimraf <path> [<path> ...]')
|
|
log('')
|
|
log(' Deletes all files and folders at "path" recursively.')
|
|
log('')
|
|
log('Options:')
|
|
log('')
|
|
log(' -h, --help Display this usage info')
|
|
log(' -G, --no-glob Do not expand glob patterns in arguments')
|
|
log(' -g, --glob Expand glob patterns in arguments (default)')
|
|
log(' --preserve-root Do not remove \'/\' (default)')
|
|
log(' --no-preserve-root Do not treat \'/\' specially')
|
|
log(' -- Stop parsing flags')
|
|
process.exit(help ? 0 : 1)
|
|
} else
|
|
go(0)
|