Spaces:
Runtime error
Runtime error
Commit ·
272dfc6
0
Parent(s):
Initial commit: updated chat app
Browse files- .env.example +21 -0
- .gitignore +8 -0
- Caddyfile +22 -0
- FEATURES.md +300 -0
- GETTING-STARTED.md +220 -0
- IMPLEMENTATION-COMPLETE.md +323 -0
- MOBILE-CONNECT-FIX.md +117 -0
- PHONE-TESTING.md +235 -0
- QUICKSTART.sh +57 -0
- RAILWAY-DEPLOY.md +182 -0
- README-UPDATES.md +329 -0
- README.md +387 -0
- SETUP-GUIDE.md +268 -0
- UPDATE-SUMMARY.md +274 -0
- add-firewall-rule.ps1 +28 -0
- client.js +688 -0
- index.html +928 -0
- init-db.js +94 -0
- mobile-connect.ps1 +83 -0
- package-lock.json +1906 -0
- package.json +24 -0
- railway.json +11 -0
- render.yaml +11 -0
- server.js +676 -0
- setup-https.ps1 +80 -0
.env.example
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
PORT=3000
|
| 2 |
+
HOST=0.0.0.0
|
| 3 |
+
NODE_ENV=development
|
| 4 |
+
|
| 5 |
+
# MongoDB Connection
|
| 6 |
+
MONGODB_URI=mongodb://localhost:27017/discord-app
|
| 7 |
+
|
| 8 |
+
# JWT Secret
|
| 9 |
+
JWT_SECRET=your_super_secret_jwt_key_change_this_in_production
|
| 10 |
+
|
| 11 |
+
# File uploads
|
| 12 |
+
MAX_FILE_SIZE=52428800
|
| 13 |
+
|
| 14 |
+
# CORS
|
| 15 |
+
CORS_ORIGIN=*
|
| 16 |
+
|
| 17 |
+
# SSL/HTTPS (optional)
|
| 18 |
+
SSL_PFX_PATH=
|
| 19 |
+
SSL_PFX_PASSPHRASE=
|
| 20 |
+
SSL_KEY_PATH=
|
| 21 |
+
SSL_CERT_PATH=
|
.gitignore
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
node_modules/
|
| 2 |
+
certs/
|
| 3 |
+
*.pfx
|
| 4 |
+
*.pem
|
| 5 |
+
*.key
|
| 6 |
+
*.cer
|
| 7 |
+
.env
|
| 8 |
+
.DS_Store
|
Caddyfile
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Example Caddyfile for self-hosting with automatic HTTPS
|
| 2 |
+
# Replace 'yourdomain.duckdns.org' with your actual domain
|
| 3 |
+
|
| 4 |
+
yourdomain.duckdns.org {
|
| 5 |
+
reverse_proxy localhost:3000
|
| 6 |
+
|
| 7 |
+
# Optional: Enable compression
|
| 8 |
+
encode gzip
|
| 9 |
+
|
| 10 |
+
# Optional: Add security headers
|
| 11 |
+
header {
|
| 12 |
+
Strict-Transport-Security "max-age=31536000; includeSubDomains"
|
| 13 |
+
X-Content-Type-Options "nosniff"
|
| 14 |
+
X-Frame-Options "SAMEORIGIN"
|
| 15 |
+
Referrer-Policy "strict-origin-when-cross-origin"
|
| 16 |
+
}
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
# Alternative: Use with custom domain
|
| 20 |
+
# example.com {
|
| 21 |
+
# reverse_proxy localhost:3000
|
| 22 |
+
# }
|
FEATURES.md
ADDED
|
@@ -0,0 +1,300 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Discord-Like Chat App - Features
|
| 2 |
+
|
| 3 |
+
## 🎯 Core Features Implemented
|
| 4 |
+
|
| 5 |
+
### 1. User Authentication & Profiles
|
| 6 |
+
- ✅ **Registration System** - Create new account with email/password/username
|
| 7 |
+
- ✅ **Login System** - Persistent login with JWT tokens
|
| 8 |
+
- ✅ **Profile Management** - Edit username, bio, and avatar
|
| 9 |
+
- ✅ **Profile Viewing** - View other users' profiles
|
| 10 |
+
- ✅ **Online Status** - Real-time online/offline status tracking
|
| 11 |
+
- ✅ **Permanent Accounts** - All data saved to MongoDB
|
| 12 |
+
|
| 13 |
+
### 2. Real-Time Messaging
|
| 14 |
+
- ✅ **Text Channels** - #general and more
|
| 15 |
+
- ✅ **Voice Channels** - Voice Chat support
|
| 16 |
+
- ✅ **Real-Time Messages** - Socket.IO powered messaging
|
| 17 |
+
- ✅ **Message History** - Persisted in database
|
| 18 |
+
- ✅ **Typing Indicators** - See who's typing
|
| 19 |
+
- ✅ **Timestamps** - Auto-formatted message times
|
| 20 |
+
- ✅ **Online Members List** - See who's online in sidebar
|
| 21 |
+
|
| 22 |
+
### 3. Media Sharing
|
| 23 |
+
- ✅ **Image Upload** - Share PNG, JPG, GIF, WebP
|
| 24 |
+
- ✅ **Video Upload** - Share MP4, WebM, etc
|
| 25 |
+
- ✅ **Media Preview** - Inline image/video display
|
| 26 |
+
- ✅ **Max File Size** - 50MB limit
|
| 27 |
+
- ✅ **Base64 Encoding** - Direct message attachment
|
| 28 |
+
|
| 29 |
+
### 4. Friends System
|
| 30 |
+
- ✅ **Add Friends** - Send friend requests
|
| 31 |
+
- ✅ **Friend Requests** - Accept/reject requests
|
| 32 |
+
- ✅ **Friends List** - View all friends with status
|
| 33 |
+
- ✅ **Online Indicators** - Green dot for online
|
| 34 |
+
- ✅ **Persistent Storage** - Friends saved to database
|
| 35 |
+
|
| 36 |
+
### 5. Shop & Economy System
|
| 37 |
+
- ✅ **Virtual Currency** - 1000 starting coins
|
| 38 |
+
- ✅ **Shop Items** - Browse purchasable items
|
| 39 |
+
- ✅ **Purchase Items** - Spend coins to buy
|
| 40 |
+
- ✅ **Inventory** - View purchased items
|
| 41 |
+
- ✅ **Item Categories** - Badges, profiles, themes, etc
|
| 42 |
+
- ✅ **Price Display** - Shows cost and balance
|
| 43 |
+
|
| 44 |
+
### 6. UI/UX Features
|
| 45 |
+
- ✅ **Discord-Inspired Theme** - Dark mode with purple accents
|
| 46 |
+
- ✅ **Responsive Design** - Works on all devices
|
| 47 |
+
- ✅ **Sidebar Navigation** - Easy channel switching
|
| 48 |
+
- ✅ **Profile Panel** - Slide-in profile editor
|
| 49 |
+
- ✅ **Modal Windows** - Friends and shop modals
|
| 50 |
+
- ✅ **Animations** - Smooth transitions
|
| 51 |
+
- ✅ **Scrollbars** - Custom styled scrollbars
|
| 52 |
+
- ✅ **Mobile Responsive** - Mobile-friendly layout
|
| 53 |
+
|
| 54 |
+
### 7. Backend Architecture
|
| 55 |
+
- ✅ **Express.js Server** - RESTful API
|
| 56 |
+
- ✅ **Socket.IO** - Real-time communication
|
| 57 |
+
- ✅ **MongoDB** - Document database
|
| 58 |
+
- ✅ **Mongoose** - Database ORM
|
| 59 |
+
- ✅ **JWT Authentication** - Secure tokens
|
| 60 |
+
- ✅ **BCrypt** - Password hashing
|
| 61 |
+
- ✅ **CORS** - Cross-origin support
|
| 62 |
+
- ✅ **Environment Variables** - Configuration management
|
| 63 |
+
|
| 64 |
+
## 📊 Data Models
|
| 65 |
+
|
| 66 |
+
### User Model
|
| 67 |
+
```javascript
|
| 68 |
+
{
|
| 69 |
+
username: String (unique),
|
| 70 |
+
email: String (unique),
|
| 71 |
+
password: String (hashed),
|
| 72 |
+
avatar: String,
|
| 73 |
+
bio: String,
|
| 74 |
+
status: 'online' | 'offline' | 'away',
|
| 75 |
+
friends: [User],
|
| 76 |
+
blockedUsers: [User],
|
| 77 |
+
coins: Number,
|
| 78 |
+
createdAt: Date
|
| 79 |
+
}
|
| 80 |
+
```
|
| 81 |
+
|
| 82 |
+
### Channel Model
|
| 83 |
+
```javascript
|
| 84 |
+
{
|
| 85 |
+
channelId: String,
|
| 86 |
+
name: String,
|
| 87 |
+
type: 'text' | 'voice',
|
| 88 |
+
description: String,
|
| 89 |
+
isPrivate: Boolean,
|
| 90 |
+
members: [User],
|
| 91 |
+
createdBy: User,
|
| 92 |
+
createdAt: Date
|
| 93 |
+
}
|
| 94 |
+
```
|
| 95 |
+
|
| 96 |
+
### Message Model
|
| 97 |
+
```javascript
|
| 98 |
+
{
|
| 99 |
+
messageId: String,
|
| 100 |
+
channelId: String,
|
| 101 |
+
sender: User,
|
| 102 |
+
senderUsername: String,
|
| 103 |
+
content: String,
|
| 104 |
+
mediaType: 'text' | 'image' | 'video' | 'emoji',
|
| 105 |
+
mediaUrl: String,
|
| 106 |
+
timestamp: Date,
|
| 107 |
+
reactions: [{ emoji, users }]
|
| 108 |
+
}
|
| 109 |
+
```
|
| 110 |
+
|
| 111 |
+
### Shop Item Model
|
| 112 |
+
```javascript
|
| 113 |
+
{
|
| 114 |
+
itemId: String,
|
| 115 |
+
name: String,
|
| 116 |
+
description: String,
|
| 117 |
+
price: Number,
|
| 118 |
+
category: String,
|
| 119 |
+
image: String,
|
| 120 |
+
createdAt: Date
|
| 121 |
+
}
|
| 122 |
+
```
|
| 123 |
+
|
| 124 |
+
### Friend Request Model
|
| 125 |
+
```javascript
|
| 126 |
+
{
|
| 127 |
+
from: User,
|
| 128 |
+
to: User,
|
| 129 |
+
status: 'pending' | 'accepted' | 'rejected',
|
| 130 |
+
createdAt: Date
|
| 131 |
+
}
|
| 132 |
+
```
|
| 133 |
+
|
| 134 |
+
## 🔌 Socket.IO Events
|
| 135 |
+
|
| 136 |
+
### Emit (Client → Server)
|
| 137 |
+
- `join` - User joins with authentication
|
| 138 |
+
- `join channel` - User joins a specific channel
|
| 139 |
+
- `leave channel` - User leaves a channel
|
| 140 |
+
- `send message` - Send text/media message
|
| 141 |
+
- `typing` - User is typing
|
| 142 |
+
- `stop typing` - User stopped typing
|
| 143 |
+
- `start voice call` - Initiate voice call
|
| 144 |
+
|
| 145 |
+
### Listen (Server → Client)
|
| 146 |
+
- `users update` - Online users list
|
| 147 |
+
- `message` - New message received
|
| 148 |
+
- `user typing` - Someone is typing
|
| 149 |
+
- `user stop typing` - Someone stopped typing
|
| 150 |
+
- `voice call started` - Voice call initiated
|
| 151 |
+
|
| 152 |
+
## 📡 API Endpoints
|
| 153 |
+
|
| 154 |
+
### Authentication
|
| 155 |
+
- `POST /api/register` - Create new account
|
| 156 |
+
- `POST /api/login` - Login with email/password
|
| 157 |
+
|
| 158 |
+
### Profile
|
| 159 |
+
- `GET /api/profile/:userId` - Get user profile
|
| 160 |
+
- `PUT /api/profile` - Update own profile
|
| 161 |
+
|
| 162 |
+
### Friends
|
| 163 |
+
- `POST /api/friends/request` - Send friend request
|
| 164 |
+
- `GET /api/friends/requests` - Get pending requests
|
| 165 |
+
- `POST /api/friends/accept` - Accept request
|
| 166 |
+
- `GET /api/friends` - Get friends list
|
| 167 |
+
|
| 168 |
+
### Shop
|
| 169 |
+
- `GET /api/shop` - Get all shop items
|
| 170 |
+
- `POST /api/shop/buy` - Purchase item
|
| 171 |
+
- `GET /api/inventory` - Get user inventory
|
| 172 |
+
|
| 173 |
+
### Channels
|
| 174 |
+
- `POST /api/channels` - Create new channel
|
| 175 |
+
- `GET /api/channels` - Get accessible channels
|
| 176 |
+
|
| 177 |
+
## 🎨 UI Sections
|
| 178 |
+
|
| 179 |
+
### 1. Authentication Page
|
| 180 |
+
- Login form with email/password
|
| 181 |
+
- Registration toggle
|
| 182 |
+
- Form validation
|
| 183 |
+
- Error messages
|
| 184 |
+
|
| 185 |
+
### 2. Main Chat Interface
|
| 186 |
+
- **Left Guild Sidebar** (72px)
|
| 187 |
+
- Chat button
|
| 188 |
+
- Friends button
|
| 189 |
+
- Shop button
|
| 190 |
+
|
| 191 |
+
- **Channel Sidebar** (240px)
|
| 192 |
+
- Channel list
|
| 193 |
+
- Channel indicator
|
| 194 |
+
- Channel icons
|
| 195 |
+
|
| 196 |
+
- **Main Chat Area**
|
| 197 |
+
- Chat header with title
|
| 198 |
+
- Messages display
|
| 199 |
+
- Online members indicator
|
| 200 |
+
- Message input
|
| 201 |
+
|
| 202 |
+
- **Right Members Sidebar** (240px)
|
| 203 |
+
- Online members list
|
| 204 |
+
- Status indicators
|
| 205 |
+
|
| 206 |
+
- **Profile Panel** (Slide-in)
|
| 207 |
+
- Profile info
|
| 208 |
+
- Edit buttons
|
| 209 |
+
- Bio editor
|
| 210 |
+
- Tabs: Profile, Inventory
|
| 211 |
+
|
| 212 |
+
- **Friends Modal**
|
| 213 |
+
- Friend requests
|
| 214 |
+
- Friends list
|
| 215 |
+
- Status indicators
|
| 216 |
+
|
| 217 |
+
- **Shop Modal**
|
| 218 |
+
- Item list
|
| 219 |
+
- Coin display
|
| 220 |
+
- Purchase buttons
|
| 221 |
+
- Item categories
|
| 222 |
+
|
| 223 |
+
## 🛡️ Security Features
|
| 224 |
+
|
| 225 |
+
### Password Security
|
| 226 |
+
- BCrypt hashing with salt rounds
|
| 227 |
+
- Minimum password requirements
|
| 228 |
+
- Secure password comparison
|
| 229 |
+
|
| 230 |
+
### Authentication
|
| 231 |
+
- JWT tokens with expiration
|
| 232 |
+
- Token stored in localStorage
|
| 233 |
+
- Authorization headers on API calls
|
| 234 |
+
|
| 235 |
+
### Database
|
| 236 |
+
- MongoDB connection with credentials
|
| 237 |
+
- Query parameterization
|
| 238 |
+
- Input validation
|
| 239 |
+
|
| 240 |
+
### API
|
| 241 |
+
- CORS configuration
|
| 242 |
+
- Request body size limits
|
| 243 |
+
- Rate limiting ready
|
| 244 |
+
|
| 245 |
+
## 🚀 Performance Optimizations
|
| 246 |
+
|
| 247 |
+
- Socket.IO namespaces for scalability
|
| 248 |
+
- Message batching in channel history
|
| 249 |
+
- Lazy loading of user profiles
|
| 250 |
+
- Image optimization with base64
|
| 251 |
+
- Efficient database queries with indexes
|
| 252 |
+
- Client-side caching
|
| 253 |
+
|
| 254 |
+
## 🔄 Workflow Examples
|
| 255 |
+
|
| 256 |
+
### User Registration
|
| 257 |
+
1. User fills in registration form
|
| 258 |
+
2. Submit → API /register
|
| 259 |
+
3. Password hashed with BCrypt
|
| 260 |
+
4. User saved to MongoDB
|
| 261 |
+
5. JWT token generated
|
| 262 |
+
6. Token stored in localStorage
|
| 263 |
+
7. Auto-login and connect to Socket.IO
|
| 264 |
+
|
| 265 |
+
### Sending a Message
|
| 266 |
+
1. User types message
|
| 267 |
+
2. Click send or press Enter
|
| 268 |
+
3. Message emitted via Socket.IO
|
| 269 |
+
4. Server saves to database
|
| 270 |
+
5. Message broadcast to channel
|
| 271 |
+
6. All connected users receive
|
| 272 |
+
7. Message rendered in chat
|
| 273 |
+
|
| 274 |
+
### Purchasing Item
|
| 275 |
+
1. User browses shop
|
| 276 |
+
2. Click "Buy" button
|
| 277 |
+
3. Server checks coins
|
| 278 |
+
4. Deduct coins from account
|
| 279 |
+
5. Add item to inventory
|
| 280 |
+
6. Update user in database
|
| 281 |
+
7. Refresh UI with new balance
|
| 282 |
+
|
| 283 |
+
## 📱 Responsive Breakpoints
|
| 284 |
+
|
| 285 |
+
- **Desktop**: 1200px+ (4 columns)
|
| 286 |
+
- **Tablet**: 768px - 1199px (3 columns)
|
| 287 |
+
- **Mobile**: < 768px (2 columns, sidebar toggles)
|
| 288 |
+
|
| 289 |
+
## 🎯 Summary
|
| 290 |
+
|
| 291 |
+
This Discord-like application provides a complete real-time communication platform with:
|
| 292 |
+
- Persistent user accounts
|
| 293 |
+
- Real-time messaging
|
| 294 |
+
- Media sharing capabilities
|
| 295 |
+
- Social features (friends, status)
|
| 296 |
+
- Economy system (shop, coins, inventory)
|
| 297 |
+
- Professional UI/UX
|
| 298 |
+
- Scalable backend architecture
|
| 299 |
+
|
| 300 |
+
All data is persisted in MongoDB, making accounts permanent across sessions!
|
GETTING-STARTED.md
ADDED
|
@@ -0,0 +1,220 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 🚀 Getting Started - Step by Step
|
| 2 |
+
|
| 3 |
+
## Prerequisites
|
| 4 |
+
- Node.js (https://nodejs.org/) - Download LTS version
|
| 5 |
+
- MongoDB - Either local or cloud (MongoDB Atlas)
|
| 6 |
+
|
| 7 |
+
## Step 1: Prepare Your Environment
|
| 8 |
+
|
| 9 |
+
### Install Node.js Dependencies
|
| 10 |
+
Open PowerShell in your project folder and run:
|
| 11 |
+
```powershell
|
| 12 |
+
npm install
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
This installs all required packages:
|
| 16 |
+
- express (web framework)
|
| 17 |
+
- socket.io (real-time communication)
|
| 18 |
+
- mongoose (database ORM)
|
| 19 |
+
- jsonwebtoken (authentication)
|
| 20 |
+
- bcryptjs (password hashing)
|
| 21 |
+
- And more...
|
| 22 |
+
|
| 23 |
+
## Step 2: Set Up MongoDB
|
| 24 |
+
|
| 25 |
+
### Option A: Local MongoDB
|
| 26 |
+
1. Download MongoDB Community Edition: https://www.mongodb.com/try/download/community
|
| 27 |
+
2. Install it (use default settings)
|
| 28 |
+
3. MongoDB will start automatically
|
| 29 |
+
4. Your connection string: `mongodb://localhost:27017/discord-app`
|
| 30 |
+
|
| 31 |
+
### Option B: MongoDB Atlas (Cloud)
|
| 32 |
+
1. Go to https://www.mongodb.com/cloud/atlas
|
| 33 |
+
2. Sign up for free account
|
| 34 |
+
3. Create a cluster
|
| 35 |
+
4. Click "Connect"
|
| 36 |
+
5. Copy the connection string
|
| 37 |
+
6. Replace `<password>` with your password
|
| 38 |
+
|
| 39 |
+
## Step 3: Configure Environment
|
| 40 |
+
|
| 41 |
+
1. Edit the `.env` file in your project root:
|
| 42 |
+
```
|
| 43 |
+
PORT=3000
|
| 44 |
+
MONGODB_URI=mongodb://localhost:27017/discord-app
|
| 45 |
+
JWT_SECRET=MySecretKey123!
|
| 46 |
+
```
|
| 47 |
+
|
| 48 |
+
2. Replace `MONGODB_URI` with your MongoDB connection string
|
| 49 |
+
|
| 50 |
+
## Step 4: Initialize Database (Optional)
|
| 51 |
+
|
| 52 |
+
Add sample shop items:
|
| 53 |
+
```powershell
|
| 54 |
+
npm run init-db
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
This creates default shop items in your database.
|
| 58 |
+
|
| 59 |
+
## Step 5: Start the Server
|
| 60 |
+
|
| 61 |
+
### Development (with auto-reload):
|
| 62 |
+
```powershell
|
| 63 |
+
npm run dev
|
| 64 |
+
```
|
| 65 |
+
|
| 66 |
+
### Production:
|
| 67 |
+
```powershell
|
| 68 |
+
npm start
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
You should see:
|
| 72 |
+
```
|
| 73 |
+
╔═══════════════════════════════════════╗
|
| 74 |
+
║ 🚀 Discord-Like Server Running ║
|
| 75 |
+
║ ║
|
| 76 |
+
║ 📡 Local: http://localhost:3000 ║
|
| 77 |
+
║ ✨ Status: Online & Ready ║
|
| 78 |
+
╚═══════════════════════════════════════╝
|
| 79 |
+
```
|
| 80 |
+
|
| 81 |
+
## Step 6: Access the App
|
| 82 |
+
|
| 83 |
+
Open your browser and go to:
|
| 84 |
+
```
|
| 85 |
+
http://localhost:3000
|
| 86 |
+
```
|
| 87 |
+
|
| 88 |
+
## First Time Account Setup
|
| 89 |
+
|
| 90 |
+
1. **Click "Register"** (first time)
|
| 91 |
+
2. Enter:
|
| 92 |
+
- Username (e.g., "john_doe")
|
| 93 |
+
- Email (e.g., "john@example.com")
|
| 94 |
+
- Password (minimum 6 characters)
|
| 95 |
+
3. Click "Create Account"
|
| 96 |
+
4. You're logged in! 🎉
|
| 97 |
+
|
| 98 |
+
## Test the Features
|
| 99 |
+
|
| 100 |
+
### 1. Send Messages
|
| 101 |
+
- Type in the message box
|
| 102 |
+
- Press Enter to send
|
| 103 |
+
- Messages appear in real-time
|
| 104 |
+
|
| 105 |
+
### 2. Upload Media
|
| 106 |
+
- Click the attachment icon (📎)
|
| 107 |
+
- Select an image or video
|
| 108 |
+
- It appears in the chat
|
| 109 |
+
|
| 110 |
+
### 3. Profile
|
| 111 |
+
- Click profile icon (top right)
|
| 112 |
+
- Edit username and bio
|
| 113 |
+
- Click "Save Profile"
|
| 114 |
+
|
| 115 |
+
### 4. Friends
|
| 116 |
+
- Click Friends icon (👥)
|
| 117 |
+
- See online members
|
| 118 |
+
- Accept friend requests
|
| 119 |
+
|
| 120 |
+
### 5. Shop
|
| 121 |
+
- Click Shop icon (🏪)
|
| 122 |
+
- Browse items for sale
|
| 123 |
+
- Buy with coins (1000 starting coins)
|
| 124 |
+
- Check inventory in profile
|
| 125 |
+
|
| 126 |
+
## Troubleshooting
|
| 127 |
+
|
| 128 |
+
### Port 3000 Already In Use
|
| 129 |
+
Change in `.env`:
|
| 130 |
+
```
|
| 131 |
+
PORT=8080
|
| 132 |
+
```
|
| 133 |
+
|
| 134 |
+
### MongoDB Connection Error
|
| 135 |
+
1. Make sure MongoDB is running
|
| 136 |
+
2. Check MONGODB_URI in .env is correct
|
| 137 |
+
3. If using local: `mongod` command starts it
|
| 138 |
+
4. If using Atlas: Check connection string has correct password
|
| 139 |
+
|
| 140 |
+
### App Won't Load
|
| 141 |
+
1. Check server is running (see console output)
|
| 142 |
+
2. Check localhost:3000 is being accessed
|
| 143 |
+
3. Press Ctrl+F5 to hard refresh browser
|
| 144 |
+
4. Check browser console (F12) for errors
|
| 145 |
+
|
| 146 |
+
### Can't Upload Files
|
| 147 |
+
1. Check file size < 50MB
|
| 148 |
+
2. Try PNG or JPG (not all formats supported)
|
| 149 |
+
3. Clear browser cache
|
| 150 |
+
4. Check file type (image/* or video/*)
|
| 151 |
+
|
| 152 |
+
## File Structure
|
| 153 |
+
|
| 154 |
+
```
|
| 155 |
+
📁 message-app/
|
| 156 |
+
├── 📄 server.js ← Backend (API & WebSockets)
|
| 157 |
+
├── 📄 client.js ← Frontend JavaScript
|
| 158 |
+
├── 📄 index.html ← Frontend HTML/CSS
|
| 159 |
+
├── 📄 package.json ← Dependencies list
|
| 160 |
+
├── 📄 .env ← Configuration (you create this)
|
| 161 |
+
├── 📄 init-db.js ← Database initializer
|
| 162 |
+
├── 📄 SETUP-GUIDE.md ← Detailed setup guide
|
| 163 |
+
├── 📄 FEATURES.md ← Features documentation
|
| 164 |
+
└── 📄 README.md ← Original readme
|
| 165 |
+
```
|
| 166 |
+
|
| 167 |
+
## Command Reference
|
| 168 |
+
|
| 169 |
+
```powershell
|
| 170 |
+
npm install # Install dependencies
|
| 171 |
+
npm start # Start production server
|
| 172 |
+
npm run dev # Start dev server (auto-reload)
|
| 173 |
+
npm run init-db # Add sample shop items
|
| 174 |
+
npm run https # Setup HTTPS (if needed)
|
| 175 |
+
```
|
| 176 |
+
|
| 177 |
+
## Environment Variables
|
| 178 |
+
|
| 179 |
+
In `.env` file:
|
| 180 |
+
```env
|
| 181 |
+
PORT=3000 # Server port
|
| 182 |
+
MONGODB_URI=mongodb://... # Database URL
|
| 183 |
+
JWT_SECRET=your_secret_key # JWT signature key
|
| 184 |
+
CORS_ORIGIN=* # Allowed origins
|
| 185 |
+
NODE_ENV=development # dev or production
|
| 186 |
+
```
|
| 187 |
+
|
| 188 |
+
## Next Steps
|
| 189 |
+
|
| 190 |
+
### To Customize:
|
| 191 |
+
1. Edit colors in `index.html` (CSS variables in :root)
|
| 192 |
+
2. Add more channels in `client.js` (showChannel function)
|
| 193 |
+
3. Add more shop items (modify init-db.js)
|
| 194 |
+
4. Change server name: Edit sidebar header in HTML
|
| 195 |
+
|
| 196 |
+
### To Deploy:
|
| 197 |
+
1. Use Heroku, Railway, or Render
|
| 198 |
+
2. Set environment variables in hosting platform
|
| 199 |
+
3. Use MongoDB Atlas (not local)
|
| 200 |
+
4. Add HTTPS certificates
|
| 201 |
+
5. Update CORS_ORIGIN to your domain
|
| 202 |
+
|
| 203 |
+
### To Extend:
|
| 204 |
+
- Add direct messaging
|
| 205 |
+
- Add voice/video (WebRTC)
|
| 206 |
+
- Add message reactions
|
| 207 |
+
- Add roles and permissions
|
| 208 |
+
- Add server administration
|
| 209 |
+
|
| 210 |
+
## Getting Help
|
| 211 |
+
|
| 212 |
+
1. Check SETUP-GUIDE.md for detailed instructions
|
| 213 |
+
2. Check FEATURES.md for feature list
|
| 214 |
+
3. Check browser console (F12) for errors
|
| 215 |
+
4. Check server console output
|
| 216 |
+
5. Try resetting browser cache (Ctrl+Shift+Delete)
|
| 217 |
+
|
| 218 |
+
---
|
| 219 |
+
|
| 220 |
+
**Enjoy your Discord-like chat application! 🎉**
|
IMPLEMENTATION-COMPLETE.md
ADDED
|
@@ -0,0 +1,323 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ✅ Discord-Like Chat Application - Implementation Complete
|
| 2 |
+
|
| 3 |
+
## 📋 Summary of What Was Built
|
| 4 |
+
|
| 5 |
+
You now have a fully functional Discord-like chat application with all the features you requested!
|
| 6 |
+
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
## ✨ Features Implemented
|
| 10 |
+
|
| 11 |
+
### ✅ User Authentication & Persistent Accounts
|
| 12 |
+
- **Registration**: Create accounts with email/password/username
|
| 13 |
+
- **Login**: Secure login with JWT tokens
|
| 14 |
+
- **Permanent Storage**: All accounts saved to MongoDB
|
| 15 |
+
- **Password Security**: Bcrypt password hashing
|
| 16 |
+
|
| 17 |
+
### ✅ User Profiles with Editing
|
| 18 |
+
- **Profile Management**: Edit username, bio, and avatar
|
| 19 |
+
- **Profile Viewing**: See other users' profiles
|
| 20 |
+
- **Status Tracking**: Online/offline status
|
| 21 |
+
- **Persistent Data**: Profile changes saved permanently
|
| 22 |
+
|
| 23 |
+
### ✅ Real-Time Messaging
|
| 24 |
+
- **Text Channels**: #general channel for chat
|
| 25 |
+
- **Voice Channels**: Voice chat support
|
| 26 |
+
- **Real-Time Updates**: Socket.IO powered instant messaging
|
| 27 |
+
- **Message History**: All messages saved to database
|
| 28 |
+
- **Message Timestamps**: Auto-formatted time display
|
| 29 |
+
|
| 30 |
+
### ✅ Media Sharing (Photos & Videos)
|
| 31 |
+
- **Image Upload**: PNG, JPG, GIF, WebP support
|
| 32 |
+
- **Video Upload**: MP4, WebM, and more
|
| 33 |
+
- **Media Preview**: Images and videos display inline
|
| 34 |
+
- **File Handling**: Up to 50MB file size
|
| 35 |
+
- **Direct Attachment**: Send files as message attachments
|
| 36 |
+
|
| 37 |
+
### ✅ Friends System
|
| 38 |
+
- **Add Friends**: Send friend requests
|
| 39 |
+
- **Accept/Reject**: Manage friend requests
|
| 40 |
+
- **Friends List**: View all friends with online status
|
| 41 |
+
- **Status Indicators**: Green dot for online users
|
| 42 |
+
- **Persistent Relationships**: Friends saved in database
|
| 43 |
+
|
| 44 |
+
### ✅ Shop System
|
| 45 |
+
- **Virtual Currency**: Start with 1000 coins
|
| 46 |
+
- **Shop Items**: Browse and purchase items
|
| 47 |
+
- **Purchase System**: Spend coins to buy items
|
| 48 |
+
- **Inventory**: View all purchased items
|
| 49 |
+
- **Item Persistence**: Purchases saved to database
|
| 50 |
+
- **6 Default Items**: Pre-loaded shop items
|
| 51 |
+
|
| 52 |
+
### ✅ Voice Channels
|
| 53 |
+
- **Voice Channel List**: Dedicated voice channel
|
| 54 |
+
- **Channel Management**: Easy switching between channels
|
| 55 |
+
- **Member List**: See who's in each channel
|
| 56 |
+
- **Voice Ready**: Architecture for WebRTC integration
|
| 57 |
+
|
| 58 |
+
### ✅ Professional Discord-Like UI
|
| 59 |
+
- **Dark Theme**: Modern Discord-inspired dark design
|
| 60 |
+
- **Sidebar Navigation**: Easy channel and guild access
|
| 61 |
+
- **Members Sidebar**: See online users
|
| 62 |
+
- **Profile Panel**: Slide-in profile editor
|
| 63 |
+
- **Shop Modal**: Beautiful shop interface
|
| 64 |
+
- **Friends Modal**: Friends management interface
|
| 65 |
+
- **Responsive Design**: Works on desktop, tablet, mobile
|
| 66 |
+
|
| 67 |
+
### ✅ Backend Architecture
|
| 68 |
+
- **Express.js**: RESTful API server
|
| 69 |
+
- **Socket.IO**: Real-time WebSocket communication
|
| 70 |
+
- **MongoDB**: Persistent data storage
|
| 71 |
+
- **JWT Authentication**: Secure token-based auth
|
| 72 |
+
- **Bcrypt**: Password hashing
|
| 73 |
+
- **Mongoose**: Database ORM with schemas
|
| 74 |
+
|
| 75 |
+
---
|
| 76 |
+
|
| 77 |
+
## 📁 Files Created/Modified
|
| 78 |
+
|
| 79 |
+
### Core Application Files
|
| 80 |
+
- **server.js** - Complete backend with authentication, profiles, shops, friends, channels, messages, and Socket.IO
|
| 81 |
+
- **client.js** - Full frontend with all features, UI management, API calls
|
| 82 |
+
- **index.html** - Comprehensive Discord-like UI with all sections
|
| 83 |
+
|
| 84 |
+
### Configuration Files
|
| 85 |
+
- **package.json** - Updated with all dependencies (mongoose, jwt, bcrypt, multer, etc.)
|
| 86 |
+
- **.env** - Environment configuration template
|
| 87 |
+
- **.env.example** - Example environment variables
|
| 88 |
+
|
| 89 |
+
### Database & Setup
|
| 90 |
+
- **init-db.js** - Database initialization script that adds sample shop items
|
| 91 |
+
- **SETUP-GUIDE.md** - Comprehensive setup documentation
|
| 92 |
+
- **GETTING-STARTED.md** - Step-by-step quick start guide
|
| 93 |
+
- **FEATURES.md** - Complete feature documentation with data models
|
| 94 |
+
|
| 95 |
+
### Helper Files
|
| 96 |
+
- **QUICKSTART.sh** - Quick start shell script
|
| 97 |
+
|
| 98 |
+
---
|
| 99 |
+
|
| 100 |
+
## 🎯 Key Technologies Used
|
| 101 |
+
|
| 102 |
+
### Frontend
|
| 103 |
+
- HTML5 with semantic structure
|
| 104 |
+
- CSS3 with CSS variables for theming
|
| 105 |
+
- Vanilla JavaScript (no frameworks needed!)
|
| 106 |
+
- Socket.IO client library
|
| 107 |
+
- Font Awesome icons
|
| 108 |
+
|
| 109 |
+
### Backend
|
| 110 |
+
- Node.js runtime
|
| 111 |
+
- Express.js web framework
|
| 112 |
+
- Socket.IO for real-time communication
|
| 113 |
+
- MongoDB database
|
| 114 |
+
- Mongoose ODM
|
| 115 |
+
- JWT for authentication
|
| 116 |
+
- Bcryptjs for password hashing
|
| 117 |
+
- Multer for file uploads (ready to use)
|
| 118 |
+
|
| 119 |
+
### Database
|
| 120 |
+
- MongoDB (can use local or MongoDB Atlas cloud)
|
| 121 |
+
- Persistent collections for Users, Messages, Channels, etc.
|
| 122 |
+
|
| 123 |
+
---
|
| 124 |
+
|
| 125 |
+
## 🚀 How to Get Started
|
| 126 |
+
|
| 127 |
+
### 1. Install Dependencies
|
| 128 |
+
```bash
|
| 129 |
+
npm install
|
| 130 |
+
```
|
| 131 |
+
|
| 132 |
+
### 2. Configure MongoDB
|
| 133 |
+
Edit `.env` file and set your MongoDB connection:
|
| 134 |
+
```env
|
| 135 |
+
MONGODB_URI=mongodb://localhost:27017/discord-app
|
| 136 |
+
JWT_SECRET=your_secret_key_here
|
| 137 |
+
```
|
| 138 |
+
|
| 139 |
+
### 3. Start MongoDB (if using local)
|
| 140 |
+
```bash
|
| 141 |
+
mongod
|
| 142 |
+
```
|
| 143 |
+
|
| 144 |
+
### 4. Initialize Database (optional)
|
| 145 |
+
```bash
|
| 146 |
+
npm run init-db
|
| 147 |
+
```
|
| 148 |
+
This adds 6 default shop items to your database.
|
| 149 |
+
|
| 150 |
+
### 5. Start the Server
|
| 151 |
+
```bash
|
| 152 |
+
npm start
|
| 153 |
+
```
|
| 154 |
+
|
| 155 |
+
### 6. Open Browser
|
| 156 |
+
Navigate to `http://localhost:3000`
|
| 157 |
+
|
| 158 |
+
### 7. Create Account & Login
|
| 159 |
+
Register with email/password/username and start chatting!
|
| 160 |
+
|
| 161 |
+
---
|
| 162 |
+
|
| 163 |
+
## 📊 Data Models
|
| 164 |
+
|
| 165 |
+
Your application uses these MongoDB collections:
|
| 166 |
+
|
| 167 |
+
1. **Users** - Store user accounts, profiles, coins, friends
|
| 168 |
+
2. **Channels** - Text and voice channels
|
| 169 |
+
3. **Messages** - All messages with media support
|
| 170 |
+
4. **ShopItems** - Store inventory items
|
| 171 |
+
5. **Inventory** - User purchases and items
|
| 172 |
+
6. **FriendRequests** - Pending friend requests
|
| 173 |
+
|
| 174 |
+
All data is persisted permanently in MongoDB!
|
| 175 |
+
|
| 176 |
+
---
|
| 177 |
+
|
| 178 |
+
## 🔌 What's Connected
|
| 179 |
+
|
| 180 |
+
### API Endpoints (15 total)
|
| 181 |
+
- Authentication: /api/register, /api/login
|
| 182 |
+
- Profiles: /api/profile
|
| 183 |
+
- Friends: /api/friends/*
|
| 184 |
+
- Shop: /api/shop/*
|
| 185 |
+
- Channels: /api/channels
|
| 186 |
+
|
| 187 |
+
### Socket.IO Events (8 events)
|
| 188 |
+
- User joining with authentication
|
| 189 |
+
- Channel joining/leaving
|
| 190 |
+
- Message sending
|
| 191 |
+
- Typing indicators
|
| 192 |
+
- Voice calls
|
| 193 |
+
|
| 194 |
+
All real-time powered by Socket.IO!
|
| 195 |
+
|
| 196 |
+
---
|
| 197 |
+
|
| 198 |
+
## ✅ Checklist of Your Requests
|
| 199 |
+
|
| 200 |
+
- ✅ **Profile & Edit** - Complete profile management system
|
| 201 |
+
- ✅ **Save Profiles** - Not erased, persisted in MongoDB
|
| 202 |
+
- ✅ **Login System** - Email/password authentication
|
| 203 |
+
- ✅ **Permanent Accounts** - All data saved to database
|
| 204 |
+
- ✅ **Send Everything** - Text, photos, videos, emojis
|
| 205 |
+
- ✅ **Shop** - Full shop system with currency
|
| 206 |
+
- ✅ **Friends Section** - Complete friends system
|
| 207 |
+
- ✅ **Voice Channels** - Channels ready for voice
|
| 208 |
+
- ✅ **Not Just Emojis** - Full media and file support
|
| 209 |
+
- ✅ **Similar to Discord** - UI/UX matches Discord style
|
| 210 |
+
|
| 211 |
+
---
|
| 212 |
+
|
| 213 |
+
## 🎮 Test Features
|
| 214 |
+
|
| 215 |
+
Try these to see everything working:
|
| 216 |
+
|
| 217 |
+
1. **Create 2 Accounts** - Test login persistence
|
| 218 |
+
2. **Edit Profile** - Change username/bio and refresh (saved!)
|
| 219 |
+
3. **Send Messages** - Type and send in #general
|
| 220 |
+
4. **Upload Image** - Click 📎 and upload a photo
|
| 221 |
+
5. **Upload Video** - Upload a video file
|
| 222 |
+
6. **Add Friend** - Send friend request from another account
|
| 223 |
+
7. **Browse Shop** - See 6 default items
|
| 224 |
+
8. **Buy Item** - Purchase with coins
|
| 225 |
+
9. **Check Inventory** - View purchased items in profile
|
| 226 |
+
|
| 227 |
+
---
|
| 228 |
+
|
| 229 |
+
## 🔒 Security Features
|
| 230 |
+
|
| 231 |
+
- Passwords hashed with bcrypt
|
| 232 |
+
- JWT tokens for authentication
|
| 233 |
+
- CORS configured
|
| 234 |
+
- Database connection secure
|
| 235 |
+
- Environment variables for secrets
|
| 236 |
+
|
| 237 |
+
---
|
| 238 |
+
|
| 239 |
+
## 🌐 Deployment Ready
|
| 240 |
+
|
| 241 |
+
Your app is ready to deploy to:
|
| 242 |
+
- Heroku
|
| 243 |
+
- Railway
|
| 244 |
+
- Render
|
| 245 |
+
- AWS
|
| 246 |
+
- DigitalOcean
|
| 247 |
+
|
| 248 |
+
Just set environment variables and connect to MongoDB Atlas!
|
| 249 |
+
|
| 250 |
+
---
|
| 251 |
+
|
| 252 |
+
## 📚 Documentation
|
| 253 |
+
|
| 254 |
+
Check these files for detailed info:
|
| 255 |
+
|
| 256 |
+
1. **GETTING-STARTED.md** - Step-by-step setup guide
|
| 257 |
+
2. **SETUP-GUIDE.md** - Comprehensive documentation
|
| 258 |
+
3. **FEATURES.md** - All features with data models
|
| 259 |
+
4. **server.js** - Well-commented backend code
|
| 260 |
+
5. **client.js** - Well-commented frontend code
|
| 261 |
+
|
| 262 |
+
---
|
| 263 |
+
|
| 264 |
+
## 🎯 Next Steps (Optional Enhancements)
|
| 265 |
+
|
| 266 |
+
If you want to add more features:
|
| 267 |
+
|
| 268 |
+
1. **Direct Messages** - Private 1-on-1 chat
|
| 269 |
+
2. **Message Reactions** - React with emojis
|
| 270 |
+
3. **Voice/Video Calls** - WebRTC integration
|
| 271 |
+
4. **Roles & Permissions** - Admin system
|
| 272 |
+
5. **Message Editing** - Edit sent messages
|
| 273 |
+
6. **Custom Emojis** - Upload custom emoji pack
|
| 274 |
+
7. **Notifications** - Sound/browser notifications
|
| 275 |
+
8. **Pinned Messages** - Pin important messages
|
| 276 |
+
9. **Message Search** - Search through messages
|
| 277 |
+
10. **User Moderation** - Ban/kick users
|
| 278 |
+
|
| 279 |
+
---
|
| 280 |
+
|
| 281 |
+
## 🆘 Need Help?
|
| 282 |
+
|
| 283 |
+
### Common Issues
|
| 284 |
+
|
| 285 |
+
**MongoDB won't connect?**
|
| 286 |
+
- Make sure MongoDB is running (mongod command)
|
| 287 |
+
- Check connection string in .env
|
| 288 |
+
|
| 289 |
+
**Port already in use?**
|
| 290 |
+
- Change PORT in .env to 8080 or other number
|
| 291 |
+
|
| 292 |
+
**Files not uploading?**
|
| 293 |
+
- Check file size < 50MB
|
| 294 |
+
- Try common formats (PNG, JPG, MP4)
|
| 295 |
+
|
| 296 |
+
**Account data not saving?**
|
| 297 |
+
- Verify MongoDB connection
|
| 298 |
+
- Check .env MONGODB_URI is correct
|
| 299 |
+
|
| 300 |
+
---
|
| 301 |
+
|
| 302 |
+
## 🎉 You're All Set!
|
| 303 |
+
|
| 304 |
+
Your Discord-like chat application is complete with:
|
| 305 |
+
- ✅ User authentication & permanent accounts
|
| 306 |
+
- ✅ Editable profiles
|
| 307 |
+
- ✅ Real-time messaging
|
| 308 |
+
- ✅ Photo & video sharing
|
| 309 |
+
- ✅ Friends system
|
| 310 |
+
- ✅ Shop with economy
|
| 311 |
+
- ✅ Voice channels
|
| 312 |
+
- ✅ Beautiful UI
|
| 313 |
+
- ✅ Scalable backend
|
| 314 |
+
|
| 315 |
+
**Everything requested has been implemented!**
|
| 316 |
+
|
| 317 |
+
Now just:
|
| 318 |
+
1. Run `npm install`
|
| 319 |
+
2. Set up MongoDB
|
| 320 |
+
3. Run `npm start`
|
| 321 |
+
4. Visit `http://localhost:3000`
|
| 322 |
+
|
| 323 |
+
Enjoy your app! 🚀
|
MOBILE-CONNECT-FIX.md
ADDED
|
@@ -0,0 +1,117 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 📱 Complete Guide to Connect from Mobile Phone
|
| 2 |
+
|
| 3 |
+
## Step 1: Check Your Phone's Network
|
| 4 |
+
|
| 5 |
+
**On your phone:**
|
| 6 |
+
1. Open Settings → Wi-Fi
|
| 7 |
+
2. Look at which Wi-Fi network you're connected to
|
| 8 |
+
3. **Write down the Wi-Fi name (SSID)**
|
| 9 |
+
|
| 10 |
+
**On your PC:**
|
| 11 |
+
1. Open Settings → Network & Internet → Wi-Fi
|
| 12 |
+
2. Look at which Wi-Fi network you're connected to
|
| 13 |
+
3. **Make sure it's the EXACT SAME Wi-Fi as your phone**
|
| 14 |
+
|
| 15 |
+
⚠️ **IMPORTANT:** If they're on different Wi-Fi networks, connect your phone to the **same Wi-Fi** as your PC first!
|
| 16 |
+
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
## Step 2: Find Your PC's Wi-Fi IP
|
| 20 |
+
|
| 21 |
+
Run this in PowerShell:
|
| 22 |
+
|
| 23 |
+
```powershell
|
| 24 |
+
$wifiIP = (Get-NetIPConfiguration | Where-Object {$_.IPv4DefaultGateway -ne $null} | Select-Object -ExpandProperty IPv4Address).IPAddress
|
| 25 |
+
Write-Host "Your PC's Wi-Fi IP: $wifiIP"
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
Write down that IP. Example: `10.46.20.218`
|
| 29 |
+
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
+
## Step 3: Kill Old Server and Start Fresh
|
| 33 |
+
|
| 34 |
+
```powershell
|
| 35 |
+
cd C:\Users\dell\Downloads\message
|
| 36 |
+
taskkill /F /IM node.exe 2>$null
|
| 37 |
+
Start-Sleep -Seconds 2
|
| 38 |
+
|
| 39 |
+
# Set environment variables
|
| 40 |
+
$env:SSL_PFX_PATH = (Resolve-Path ".\certs\lan-localhost.pfx").Path
|
| 41 |
+
$env:SSL_PFX_PASSPHRASE = "123456"
|
| 42 |
+
$env:PORT = "3001"
|
| 43 |
+
$env:HOST = "0.0.0.0"
|
| 44 |
+
|
| 45 |
+
# Start server
|
| 46 |
+
npm start
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
Wait for this message to appear:
|
| 50 |
+
```
|
| 51 |
+
✓ Real-time messaging
|
| 52 |
+
✓ Online users tracking
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
---
|
| 56 |
+
|
| 57 |
+
## Step 4: Connect from Phone
|
| 58 |
+
|
| 59 |
+
**On your phone browser:**
|
| 60 |
+
1. Open: `https://YOUR_WIFI_IP:3001`
|
| 61 |
+
- Replace `YOUR_WIFI_IP` with the IP from Step 2
|
| 62 |
+
- Example: `https://10.46.20.218:3001`
|
| 63 |
+
|
| 64 |
+
2. You'll see certificate warning:
|
| 65 |
+
- Click "Advanced"
|
| 66 |
+
- Click "Proceed to 10.46.20.218" (or whatever your IP is)
|
| 67 |
+
|
| 68 |
+
3. **You should now see the chat app!**
|
| 69 |
+
|
| 70 |
+
---
|
| 71 |
+
|
| 72 |
+
## If Still Not Working - Troubleshooting
|
| 73 |
+
|
| 74 |
+
### Check 1: Are you on the SAME Wi-Fi?
|
| 75 |
+
```powershell
|
| 76 |
+
# Run on PC
|
| 77 |
+
ipconfig | findstr "Wi-Fi" -A 5
|
| 78 |
+
|
| 79 |
+
# Phone: Settings → Wi-Fi → see network name
|
| 80 |
+
# They must match!
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
### Check 2: Is server actually listening?
|
| 84 |
+
```powershell
|
| 85 |
+
netstat -ano | findstr ":3001"
|
| 86 |
+
# Should show: TCP 0.0.0.0:3001 0.0.0.0:0 LISTENING
|
| 87 |
+
```
|
| 88 |
+
|
| 89 |
+
### Check 3: Firewall again (run as Admin)
|
| 90 |
+
```powershell
|
| 91 |
+
New-NetFirewallRule -DisplayName "Chat App HTTP" -Direction Inbound -LocalPort 3001 -Protocol TCP -Action Allow -Profile Any
|
| 92 |
+
```
|
| 93 |
+
|
| 94 |
+
### Check 4: Can you ping your PC from phone?
|
| 95 |
+
On phone, open a command app and try:
|
| 96 |
+
```
|
| 97 |
+
ping YOUR_PC_WIFI_IP
|
| 98 |
+
```
|
| 99 |
+
If you get "Timeout" or "Unreachable", the networks aren't connected.
|
| 100 |
+
|
| 101 |
+
---
|
| 102 |
+
|
| 103 |
+
## Nuclear Option - Try HTTP (Temporary Testing)
|
| 104 |
+
|
| 105 |
+
If HTTPS still fails, test with plain HTTP first:
|
| 106 |
+
|
| 107 |
+
```powershell
|
| 108 |
+
cd C:\Users\dell\Downloads\message
|
| 109 |
+
taskkill /F /IM node.exe 2>$null
|
| 110 |
+
$env:PORT = "3001"
|
| 111 |
+
npm start
|
| 112 |
+
```
|
| 113 |
+
|
| 114 |
+
Then on phone browser try: `http://10.46.20.218:3001` (no HTTPS)
|
| 115 |
+
|
| 116 |
+
If HTTP works but HTTPS doesn't, it's a certificate issue (easier to fix).
|
| 117 |
+
If even HTTP doesn't work, it's a network/firewall issue.
|
PHONE-TESTING.md
ADDED
|
@@ -0,0 +1,235 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Phone Testing Guide
|
| 2 |
+
|
| 3 |
+
This guide explains how to test your Discord-like chat app on your phone during development and after deployment.
|
| 4 |
+
|
| 5 |
+
## Option 1: Local Network Testing (Same WiFi)
|
| 6 |
+
|
| 7 |
+
Use this to test your app during development while running on your PC.
|
| 8 |
+
|
| 9 |
+
### Prerequisites
|
| 10 |
+
- Your PC and phone must be on the **same WiFi network**
|
| 11 |
+
- Your development server must be running (`npm start`)
|
| 12 |
+
|
| 13 |
+
### Steps
|
| 14 |
+
|
| 15 |
+
1. **Find Your PC's Local IP Address**
|
| 16 |
+
|
| 17 |
+
**On Windows:**
|
| 18 |
+
- Open PowerShell
|
| 19 |
+
- Run:
|
| 20 |
+
```powershell
|
| 21 |
+
ipconfig
|
| 22 |
+
```
|
| 23 |
+
- Look for "IPv4 Address" under your WiFi adapter
|
| 24 |
+
- It will look like: `192.168.x.x` or `10.x.x.x`
|
| 25 |
+
- Example: `192.168.1.100`
|
| 26 |
+
- **Note the IP address**
|
| 27 |
+
|
| 28 |
+
2. **Access Your App on Phone**
|
| 29 |
+
|
| 30 |
+
- On your phone, open any browser (Chrome, Safari, Edge)
|
| 31 |
+
- In the address bar, type:
|
| 32 |
+
```
|
| 33 |
+
http://YOUR_PC_IP:3000
|
| 34 |
+
```
|
| 35 |
+
- Replace `YOUR_PC_IP` with your actual IP (e.g., `http://192.168.1.100:3000`)
|
| 36 |
+
- Press Enter
|
| 37 |
+
|
| 38 |
+
3. **Test the App**
|
| 39 |
+
|
| 40 |
+
- You should see the login page
|
| 41 |
+
- Register a new account
|
| 42 |
+
- Test all features:
|
| 43 |
+
- Send messages
|
| 44 |
+
- Upload photos/videos
|
| 45 |
+
- Change profile picture
|
| 46 |
+
- Add friends
|
| 47 |
+
- Buy shop items
|
| 48 |
+
- Check online status
|
| 49 |
+
|
| 50 |
+
### Troubleshooting Local Testing
|
| 51 |
+
|
| 52 |
+
**"Can't connect to server"**
|
| 53 |
+
- Ensure PC and phone are on same WiFi
|
| 54 |
+
- Check firewall isn't blocking port 3000:
|
| 55 |
+
```powershell
|
| 56 |
+
netstat -ano | findstr :3000
|
| 57 |
+
```
|
| 58 |
+
- Restart your development server
|
| 59 |
+
|
| 60 |
+
**"Page won't load but shows connection error"**
|
| 61 |
+
- Verify the IP address is correct:
|
| 62 |
+
- Run `ipconfig` again and double-check
|
| 63 |
+
- Try pinging your PC from phone: `ping YOUR_PC_IP`
|
| 64 |
+
|
| 65 |
+
**"Connection to localhost:3000 failed"**
|
| 66 |
+
- Make sure you're using your IP address, NOT `localhost`
|
| 67 |
+
- `localhost` only works on the same device
|
| 68 |
+
|
| 69 |
+
## Option 2: Testing Your Live Railway App
|
| 70 |
+
|
| 71 |
+
Once deployed to Railway, test from anywhere (including mobile data).
|
| 72 |
+
|
| 73 |
+
### Steps
|
| 74 |
+
|
| 75 |
+
1. **Get Your Railway URL**
|
| 76 |
+
- Go to Railway dashboard
|
| 77 |
+
- Click on your app service
|
| 78 |
+
- Copy the URL (looks like: `your-app-abc123.railway.app`)
|
| 79 |
+
|
| 80 |
+
2. **Access on Phone**
|
| 81 |
+
- Open browser on any phone
|
| 82 |
+
- Type: `https://your-app-abc123.railway.app`
|
| 83 |
+
- Register and test
|
| 84 |
+
|
| 85 |
+
### Benefits
|
| 86 |
+
- Works on mobile data (not just WiFi)
|
| 87 |
+
- Works on any network worldwide
|
| 88 |
+
- No need for PC to be running
|
| 89 |
+
|
| 90 |
+
## Option 3: Using ngrok (Advanced)
|
| 91 |
+
|
| 92 |
+
Use ngrok if you want a public URL for your local server without deploying to Railway.
|
| 93 |
+
|
| 94 |
+
### Steps
|
| 95 |
+
|
| 96 |
+
1. **Download ngrok**
|
| 97 |
+
- Go to https://ngrok.com/download
|
| 98 |
+
- Download for Windows
|
| 99 |
+
- Extract the file
|
| 100 |
+
|
| 101 |
+
2. **Connect ngrok (need account)**
|
| 102 |
+
- Sign up at https://ngrok.com
|
| 103 |
+
- Get your auth token
|
| 104 |
+
- Open PowerShell in ngrok folder
|
| 105 |
+
- Run: `.\ngrok config add-authtoken YOUR_TOKEN`
|
| 106 |
+
|
| 107 |
+
3. **Start ngrok**
|
| 108 |
+
- Make sure your server is running (`npm start`)
|
| 109 |
+
- In new PowerShell window, run:
|
| 110 |
+
```powershell
|
| 111 |
+
.\ngrok http 3000
|
| 112 |
+
```
|
| 113 |
+
- You'll see a URL like: `https://1a2b3c4d5e6f.ngrok.io`
|
| 114 |
+
|
| 115 |
+
4. **Test from Phone**
|
| 116 |
+
- Open browser on phone
|
| 117 |
+
- Type: `https://1a2b3c4d5e6f.ngrok.io`
|
| 118 |
+
- It will work anywhere!
|
| 119 |
+
|
| 120 |
+
## Phone Testing Checklist
|
| 121 |
+
|
| 122 |
+
- [ ] Registration works
|
| 123 |
+
- [ ] Login works
|
| 124 |
+
- [ ] Can see profile
|
| 125 |
+
- [ ] Can update username and bio
|
| 126 |
+
- [ ] Can upload profile picture
|
| 127 |
+
- [ ] Can add friends
|
| 128 |
+
- [ ] Can accept friend requests
|
| 129 |
+
- [ ] Can send messages to friends (shows in their chat)
|
| 130 |
+
- [ ] Can send images/videos
|
| 131 |
+
- [ ] Messages display correctly on phone
|
| 132 |
+
- [ ] Can scroll through messages
|
| 133 |
+
- [ ] Profile picture shows in messages
|
| 134 |
+
- [ ] Shop items display
|
| 135 |
+
- [ ] Can buy shop items
|
| 136 |
+
- [ ] Coins display and decrease
|
| 137 |
+
- [ ] Inventory shows purchased items
|
| 138 |
+
- [ ] Online/offline status updates
|
| 139 |
+
- [ ] Can logout and login again
|
| 140 |
+
|
| 141 |
+
## Performance Tips for Phone Testing
|
| 142 |
+
|
| 143 |
+
1. **Responsive Design**
|
| 144 |
+
- Test on different phone sizes
|
| 145 |
+
- Check if layout breaks on small screens
|
| 146 |
+
- Try in portrait and landscape mode
|
| 147 |
+
|
| 148 |
+
2. **Network Speed**
|
| 149 |
+
- Test on slower WiFi to simulate mobile data
|
| 150 |
+
- See how app handles slow connections
|
| 151 |
+
- Check if media uploads are optimized
|
| 152 |
+
|
| 153 |
+
3. **Battery**
|
| 154 |
+
- Socket.IO connections may drain battery
|
| 155 |
+
- Test app doesn't stay connected when not active
|
| 156 |
+
- Monitor background processes
|
| 157 |
+
|
| 158 |
+
## Mobile Optimization Tips
|
| 159 |
+
|
| 160 |
+
If you notice issues during phone testing:
|
| 161 |
+
|
| 162 |
+
1. **Scrolling feels slow**
|
| 163 |
+
- See if messages container needs `overflow-y: auto`
|
| 164 |
+
- Consider virtual scrolling for long message lists
|
| 165 |
+
|
| 166 |
+
2. **Images too large**
|
| 167 |
+
- Compress images before upload
|
| 168 |
+
- Resize images on client before sending
|
| 169 |
+
|
| 170 |
+
3. **Layout broken on small screens**
|
| 171 |
+
- Add mobile media queries to CSS
|
| 172 |
+
- Test with `max-width: 320px` for small phones
|
| 173 |
+
|
| 174 |
+
4. **Touchscreen issues**
|
| 175 |
+
- Increase button sizes (at least 44x44px recommended)
|
| 176 |
+
- Add `touch-action: manipulation` to avoid double-tap delays
|
| 177 |
+
|
| 178 |
+
## Example Testing Scenario
|
| 179 |
+
|
| 180 |
+
1. **On PC:**
|
| 181 |
+
- Start development server: `npm start`
|
| 182 |
+
- Find IP: `ipconfig` → note the IPv4 address
|
| 183 |
+
- Example: `192.168.1.50`
|
| 184 |
+
|
| 185 |
+
2. **On Phone:**
|
| 186 |
+
- WiFi should be same as PC
|
| 187 |
+
- Open browser
|
| 188 |
+
- Type: `http://192.168.1.50:3000`
|
| 189 |
+
- See login page ✓
|
| 190 |
+
|
| 191 |
+
3. **User Story Testing:**
|
| 192 |
+
- Register as "Alice" on PC
|
| 193 |
+
- Register as "Bob" on phone
|
| 194 |
+
- Alice sends friend request to Bob
|
| 195 |
+
- Bob accepts on phone
|
| 196 |
+
- Alice sends message on PC
|
| 197 |
+
- Bob sees message on phone
|
| 198 |
+
- Bob sends reply on phone
|
| 199 |
+
- Alice sees reply on PC ✓
|
| 200 |
+
|
| 201 |
+
## Debugging Phone Issues
|
| 202 |
+
|
| 203 |
+
If something isn't working:
|
| 204 |
+
|
| 205 |
+
1. **Check browser console:**
|
| 206 |
+
- On phone, open developer tools (long-press → Inspect)
|
| 207 |
+
- Look for JavaScript errors
|
| 208 |
+
- Report errors here when creating issues
|
| 209 |
+
|
| 210 |
+
2. **Check network tab:**
|
| 211 |
+
- See if API calls are failing
|
| 212 |
+
- Monitor WebSocket (Socket.IO) connection
|
| 213 |
+
- Check response times for media uploads
|
| 214 |
+
|
| 215 |
+
3. **Try on different browser:**
|
| 216 |
+
- Try Chrome, Safari, Edge, Firefox
|
| 217 |
+
- Some features may have browser-specific issues
|
| 218 |
+
|
| 219 |
+
## Capture Feedback
|
| 220 |
+
|
| 221 |
+
When testing on phone, note:
|
| 222 |
+
- Do message timestamps make sense?
|
| 223 |
+
- Are buttons easy to tap?
|
| 224 |
+
- Does scrolling feel smooth?
|
| 225 |
+
- Are profile pictures showing?
|
| 226 |
+
- Do error messages help understand problems?
|
| 227 |
+
|
| 228 |
+
Document any issues and fix them in the web version!
|
| 229 |
+
|
| 230 |
+
## Next Steps
|
| 231 |
+
|
| 232 |
+
- After fixing issues found via phone testing, commit changes: `git add . && git commit -m "Fix mobile responsiveness"`
|
| 233 |
+
- Push to GitHub: `git push`
|
| 234 |
+
- Railway automatically redeploys
|
| 235 |
+
- Test again on phone to verify fixes
|
QUICKSTART.sh
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
# Quick Start Guide
|
| 3 |
+
|
| 4 |
+
echo "🚀 Discord-Like Chat App - Quick Start"
|
| 5 |
+
echo "======================================"
|
| 6 |
+
echo ""
|
| 7 |
+
|
| 8 |
+
# Check Node.js
|
| 9 |
+
if ! command -v node &> /dev/null; then
|
| 10 |
+
echo "❌ Node.js is not installed. Please install from https://nodejs.org/"
|
| 11 |
+
exit 1
|
| 12 |
+
fi
|
| 13 |
+
|
| 14 |
+
echo "✅ Node.js: $(node --version)"
|
| 15 |
+
echo "✅ npm: $(npm --version)"
|
| 16 |
+
echo ""
|
| 17 |
+
|
| 18 |
+
# Check MongoDB
|
| 19 |
+
if ! command -v mongod &> /dev/null; then
|
| 20 |
+
echo "⚠️ MongoDB not found in PATH"
|
| 21 |
+
echo " Make sure MongoDB is running separately!"
|
| 22 |
+
echo " Start MongoDB with: mongod"
|
| 23 |
+
echo ""
|
| 24 |
+
fi
|
| 25 |
+
|
| 26 |
+
echo "📦 Step 1: Installing dependencies..."
|
| 27 |
+
npm install
|
| 28 |
+
|
| 29 |
+
echo ""
|
| 30 |
+
echo "🗄️ Step 2: Setting up database..."
|
| 31 |
+
echo " Make sure MongoDB is running on localhost:27017"
|
| 32 |
+
echo " Or update MONGODB_URI in .env file"
|
| 33 |
+
echo ""
|
| 34 |
+
|
| 35 |
+
echo "📝 Step 3: Configuration"
|
| 36 |
+
echo " - Create/Update .env file"
|
| 37 |
+
echo " - Set MongoDB connection string"
|
| 38 |
+
echo " - Set JWT_SECRET for security"
|
| 39 |
+
echo ""
|
| 40 |
+
|
| 41 |
+
echo "🌱 Step 4: Initialize Database (optional)"
|
| 42 |
+
echo " Run: npm run init-db"
|
| 43 |
+
echo " This adds sample shop items"
|
| 44 |
+
echo ""
|
| 45 |
+
|
| 46 |
+
echo "🎮 Step 5: Start the server"
|
| 47 |
+
echo " Development: npm run dev"
|
| 48 |
+
echo " Production: npm start"
|
| 49 |
+
echo ""
|
| 50 |
+
|
| 51 |
+
echo "🌐 Step 6: Open browser"
|
| 52 |
+
echo " Visit: http://localhost:3000"
|
| 53 |
+
echo ""
|
| 54 |
+
|
| 55 |
+
echo "======================================"
|
| 56 |
+
echo "✨ Setup complete! Follow the 5 steps above to get started."
|
| 57 |
+
echo ""
|
RAILWAY-DEPLOY.md
ADDED
|
@@ -0,0 +1,182 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Deploying to Railway
|
| 2 |
+
|
| 3 |
+
This guide will help you deploy your Discord-like chat app to Railway for free hosting.
|
| 4 |
+
|
| 5 |
+
## Prerequisites
|
| 6 |
+
|
| 7 |
+
- GitHub account
|
| 8 |
+
- Railway account (sign up at https://railway.app)
|
| 9 |
+
- Node.js and Git installed locally
|
| 10 |
+
|
| 11 |
+
## Step 1: Push Your Code to GitHub
|
| 12 |
+
|
| 13 |
+
1. **Create a new repository on GitHub**
|
| 14 |
+
- Go to https://github.com/new
|
| 15 |
+
- Create a repository called `discord-chat-app`
|
| 16 |
+
- Don't add README, .gitignore, or license
|
| 17 |
+
|
| 18 |
+
2. **Push your local code**
|
| 19 |
+
```powershell
|
| 20 |
+
# Initialize git if not already done
|
| 21 |
+
git init
|
| 22 |
+
|
| 23 |
+
# Add all files
|
| 24 |
+
git add .
|
| 25 |
+
|
| 26 |
+
# Commit
|
| 27 |
+
git commit -m "Initial commit: Discord-like chat app"
|
| 28 |
+
|
| 29 |
+
# Add remote (replace USERNAME with your GitHub username)
|
| 30 |
+
git remote add origin https://github.com/USERNAME/discord-chat-app.git
|
| 31 |
+
|
| 32 |
+
# Push to GitHub
|
| 33 |
+
git branch -M main
|
| 34 |
+
git push -u origin main
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## Step 2: Set Up MongoDB Atlas (Cloud Database)
|
| 38 |
+
|
| 39 |
+
1. **Create MongoDB Atlas account**
|
| 40 |
+
- Go to https://www.mongodb.com/cloud/atlas
|
| 41 |
+
- Sign up and verify email
|
| 42 |
+
- Create an organization (any name)
|
| 43 |
+
- Create a project (e.g., "chat-app")
|
| 44 |
+
|
| 45 |
+
2. **Create a cluster**
|
| 46 |
+
- Choose "Build a Database"
|
| 47 |
+
- Select the free tier (M0 Sandbox)
|
| 48 |
+
- Choose a cloud provider and region (AWS us-east-1 recommended)
|
| 49 |
+
- Click "Create" and wait a few minutes
|
| 50 |
+
|
| 51 |
+
3. **Create a database user**
|
| 52 |
+
- Go to "Database Access" in left sidebar
|
| 53 |
+
- Click "Add New Database User"
|
| 54 |
+
- Choose "Password" authentication
|
| 55 |
+
- Username: `chatapp`
|
| 56 |
+
- Password: Create a strong password (save it!)
|
| 57 |
+
- Default Privileges: "Read and write to any database"
|
| 58 |
+
- Click "Add User"
|
| 59 |
+
|
| 60 |
+
4. **Allow network access**
|
| 61 |
+
- Go to "Network Access" in left sidebar
|
| 62 |
+
- Click "Add IP Address"
|
| 63 |
+
- Click "Allow Access from Anywhere" (for Railway)
|
| 64 |
+
- Or add `0.0.0.0/0`
|
| 65 |
+
- Click "Confirm"
|
| 66 |
+
|
| 67 |
+
5. **Get your connection string**
|
| 68 |
+
- Go to "Databases" and click "Connect"
|
| 69 |
+
- Choose "Drivers"
|
| 70 |
+
- Select Node.js driver
|
| 71 |
+
- Copy the connection string
|
| 72 |
+
- Example: `mongodb+srv://chatapp:password@cluster0.xxxxx.mongodb.net/discord-app?retryWrites=true&w=majority`
|
| 73 |
+
|
| 74 |
+
## Step 3: Set Up Railway Project
|
| 75 |
+
|
| 76 |
+
1. **Log in to Railway**
|
| 77 |
+
- Go to https://railway.app
|
| 78 |
+
- Click "Login"
|
| 79 |
+
- Authorize with GitHub
|
| 80 |
+
|
| 81 |
+
2. **Create new project**
|
| 82 |
+
- Click "New Project"
|
| 83 |
+
- Select "Deploy from GitHub repo"
|
| 84 |
+
- Search for your repository
|
| 85 |
+
- Select your `discord-chat-app` repo
|
| 86 |
+
- Click "Deploy Now"
|
| 87 |
+
|
| 88 |
+
3. **Wait for build**
|
| 89 |
+
- Railway will automatically build and deploy
|
| 90 |
+
- This takes 2-3 minutes
|
| 91 |
+
- You can see logs in real-time
|
| 92 |
+
|
| 93 |
+
## Step 4: Configure Environment Variables
|
| 94 |
+
|
| 95 |
+
1. **Add environment variables in Railway**
|
| 96 |
+
- After deployment, click on your service
|
| 97 |
+
- Go to "Variables" tab
|
| 98 |
+
- Add the following variables:
|
| 99 |
+
|
| 100 |
+
```
|
| 101 |
+
NODE_ENV=production
|
| 102 |
+
PORT=3000
|
| 103 |
+
MONGODB_URI=mongodb+srv://chatapp:PASSWORD@cluster0.xxxxx.mongodb.net/discord-app?retryWrites=true&w=majority
|
| 104 |
+
JWT_SECRET=your_secret_key_here_make_it_long_and_random_12345
|
| 105 |
+
CORS_ORIGIN=*
|
| 106 |
+
```
|
| 107 |
+
|
| 108 |
+
Replace:
|
| 109 |
+
- `PASSWORD` with your MongoDB password
|
| 110 |
+
- `cluster0.xxxxx` with your actual MongoDB cluster
|
| 111 |
+
- `your_secret_key_here_make_it_long_and_random_12345` with a random string (generate one at https://randomkeygen.com/)
|
| 112 |
+
|
| 113 |
+
2. **Save variables**
|
| 114 |
+
- Railway automatically redeploys when variables change
|
| 115 |
+
- Wait for deployment to complete
|
| 116 |
+
|
| 117 |
+
## Step 5: Get Your Live URL
|
| 118 |
+
|
| 119 |
+
1. **Find your deployment URL**
|
| 120 |
+
- In Railway dashboard, click on your service
|
| 121 |
+
- Look for "Deployments" tab
|
| 122 |
+
- Your URL will be something like: `your-app-xxxx.railway.app`
|
| 123 |
+
- Copy this URL
|
| 124 |
+
|
| 125 |
+
2. **Test your app**
|
| 126 |
+
- Open `https://your-app-xxxx.railway.app` in browser
|
| 127 |
+
- You should see the login page
|
| 128 |
+
- Register an account and test features
|
| 129 |
+
|
| 130 |
+
## Step 6: Phone Testing on Same WiFi
|
| 131 |
+
|
| 132 |
+
See [PHONE-TESTING.md](PHONE-TESTING.md) for instructions on testing with your phone.
|
| 133 |
+
|
| 134 |
+
## Troubleshooting
|
| 135 |
+
|
| 136 |
+
### App stuck in building
|
| 137 |
+
- Check logs in Railway dashboard
|
| 138 |
+
- Make sure `package.json` has a valid `scripts.start` command
|
| 139 |
+
- Verify `server.js` exists in project root
|
| 140 |
+
|
| 141 |
+
### MongoDB connection error
|
| 142 |
+
- Double-check connection string in MongoDB Atlas
|
| 143 |
+
- Verify IP address is allowed in Network Access
|
| 144 |
+
- Confirm password is correct (special characters need URL encoding)
|
| 145 |
+
|
| 146 |
+
### Port already in use
|
| 147 |
+
- Railway automatically assigns ports
|
| 148 |
+
- Don't hardcode port in `.listen()` - use `process.env.PORT || 3000`
|
| 149 |
+
|
| 150 |
+
### CORS errors
|
| 151 |
+
- Set `CORS_ORIGIN=*` in environment variables
|
| 152 |
+
- Or set it to your specific domain
|
| 153 |
+
|
| 154 |
+
## Production Tips
|
| 155 |
+
|
| 156 |
+
1. **Keep your JWT_SECRET secure** - change it if deployed accidentally publicly
|
| 157 |
+
2. **Monitor MongoDB usage** - free tier has 5GB storage
|
| 158 |
+
3. **Enable Railway notifications** - get alerts for deployment failures
|
| 159 |
+
4. **Keep sensitive data in environment variables**, never in code
|
| 160 |
+
5. **Use HTTPS** - Railway provides free SSL certificates
|
| 161 |
+
|
| 162 |
+
## Updating Your App
|
| 163 |
+
|
| 164 |
+
To deploy new changes:
|
| 165 |
+
|
| 166 |
+
```powershell
|
| 167 |
+
# Make your changes locally
|
| 168 |
+
# Then commit and push to GitHub
|
| 169 |
+
|
| 170 |
+
git add .
|
| 171 |
+
git commit -m "Add new feature"
|
| 172 |
+
git push
|
| 173 |
+
|
| 174 |
+
# Railway automatically deploys on GitHub push
|
| 175 |
+
# Check the Deployments tab to see status
|
| 176 |
+
```
|
| 177 |
+
|
| 178 |
+
## Support & Resources
|
| 179 |
+
|
| 180 |
+
- Railway Docs: https://docs.railway.app
|
| 181 |
+
- MongoDB Atlas: https://docs.atlas.mongodb.com
|
| 182 |
+
- Node.js Deployment: https://nodejs.org/en/docs/guides/nodejs-web-app-without-framework/
|
README-UPDATES.md
ADDED
|
@@ -0,0 +1,329 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 🚀 Your Discord-Like Chat App - NOW WITH DMs, Profile Pictures & Deployment!
|
| 2 |
+
|
| 3 |
+
## What's New
|
| 4 |
+
|
| 5 |
+
Your app has been completely upgraded! Here's what changed:
|
| 6 |
+
|
| 7 |
+
### ✅ Changes Made
|
| 8 |
+
|
| 9 |
+
1. **Direct Messages Only** - Removed public "general" channel
|
| 10 |
+
- Chat sidebar now shows your friends list
|
| 11 |
+
- Click any friend to open private DM
|
| 12 |
+
- Only chat with friends (can't accidentally message strangers)
|
| 13 |
+
|
| 14 |
+
2. **Profile Picture Upload** - Personalize your profile
|
| 15 |
+
- New button in Profile section: "Upload Profile Picture"
|
| 16 |
+
- Select any image from your device
|
| 17 |
+
- Picture shows in your messages and profile
|
| 18 |
+
- Updates instantly
|
| 19 |
+
|
| 20 |
+
3. **Better Scrolling** - Smooth, mobile-friendly message scrolling
|
| 21 |
+
- Auto-scroll to newest messages
|
| 22 |
+
- Smooth animations instead of instant jumps
|
| 23 |
+
- Touch-friendly momentum scrolling on phones
|
| 24 |
+
- Pretty custom scrollbars
|
| 25 |
+
|
| 26 |
+
4. **Deployment Ready** - Complete guides for going live
|
| 27 |
+
- **RAILWAY-DEPLOY.md** - Deploy for FREE to Railway
|
| 28 |
+
- **PHONE-TESTING.md** - Test on your phone while developing
|
| 29 |
+
|
| 30 |
+
## How to Get Started
|
| 31 |
+
|
| 32 |
+
### Step 1: Run the App Locally
|
| 33 |
+
|
| 34 |
+
```powershell
|
| 35 |
+
# Install dependencies
|
| 36 |
+
npm install
|
| 37 |
+
|
| 38 |
+
# Start the server
|
| 39 |
+
npm start
|
| 40 |
+
|
| 41 |
+
# Open browser: http://localhost:3000
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
Verify everything works:
|
| 45 |
+
- Register as a new user
|
| 46 |
+
- Update your profile with an image
|
| 47 |
+
- Send messages to your friends
|
| 48 |
+
|
| 49 |
+
### Step 2: Test on Your Phone
|
| 50 |
+
|
| 51 |
+
While app is running on PC:
|
| 52 |
+
|
| 53 |
+
1. Find your PC's IP address:
|
| 54 |
+
```powershell
|
| 55 |
+
ipconfig
|
| 56 |
+
```
|
| 57 |
+
Look for "IPv4 Address" - should be like `192.168.1.100`
|
| 58 |
+
|
| 59 |
+
2. On your phone, go to:
|
| 60 |
+
```
|
| 61 |
+
http://YOUR_PC_IP:3000
|
| 62 |
+
```
|
| 63 |
+
Example: `http://192.168.1.100:3000`
|
| 64 |
+
|
| 65 |
+
3. Test features on phone:
|
| 66 |
+
- Send messages
|
| 67 |
+
- Upload profile picture
|
| 68 |
+
- Send images
|
| 69 |
+
- Check if scrolling feels smooth
|
| 70 |
+
|
| 71 |
+
See [PHONE-TESTING.md](PHONE-TESTING.md) for detailed instructions.
|
| 72 |
+
|
| 73 |
+
### Step 3: Deploy to Railway (Optional)
|
| 74 |
+
|
| 75 |
+
When ready to go live:
|
| 76 |
+
|
| 77 |
+
1. Push your code to GitHub
|
| 78 |
+
2. Connect to Railway
|
| 79 |
+
3. Add MongoDB Atlas for database
|
| 80 |
+
4. Deploy with one click
|
| 81 |
+
5. Share your URL with friends!
|
| 82 |
+
|
| 83 |
+
Full instructions in [RAILWAY-DEPLOY.md](RAILWAY-DEPLOY.md)
|
| 84 |
+
|
| 85 |
+
## What the App Does Now
|
| 86 |
+
|
| 87 |
+
### For Users
|
| 88 |
+
|
| 89 |
+
**Messaging:**
|
| 90 |
+
- Only chat with friends (cannot message strangers)
|
| 91 |
+
- Send text, images, videos
|
| 92 |
+
- See who's online/offline
|
| 93 |
+
- Typing indicators show when friend is typing
|
| 94 |
+
|
| 95 |
+
**Profile:**
|
| 96 |
+
- Upload unique profile picture
|
| 97 |
+
- Update username and bio
|
| 98 |
+
- See your coins balance
|
| 99 |
+
- Check inventory of items bought
|
| 100 |
+
|
| 101 |
+
**Friends:**
|
| 102 |
+
- Send/receive friend requests
|
| 103 |
+
- See friend status (online/offline)
|
| 104 |
+
- Click friend to open DM
|
| 105 |
+
- Add/remove friends
|
| 106 |
+
|
| 107 |
+
**Shop:**
|
| 108 |
+
- Buy cosmetic items with coins
|
| 109 |
+
- Spend coins on badges, borders, themes
|
| 110 |
+
- View inventory of purchases
|
| 111 |
+
- Limited free coins to start
|
| 112 |
+
|
| 113 |
+
## File Changes
|
| 114 |
+
|
| 115 |
+
**Modified:**
|
| 116 |
+
- ✏️ `server.js` - Added DM routes and Socket.IO handlers
|
| 117 |
+
- ✏️ `client.js` - Updated UI for DMs, added profile image upload
|
| 118 |
+
- ✏️ `index.html` - New DM interface, profile image button, better scrolling
|
| 119 |
+
|
| 120 |
+
**New Documentation:**
|
| 121 |
+
- 📄 `RAILWAY-DEPLOY.md` - 42-step deployment guide
|
| 122 |
+
- 📄 `PHONE-TESTING.md` - Mobile testing instructions
|
| 123 |
+
- 📄 `UPDATE-SUMMARY.md` - Technical changes details
|
| 124 |
+
|
| 125 |
+
**Existing (Unchanged):**
|
| 126 |
+
- ✓ `.env.example` - Still valid
|
| 127 |
+
- ✓ `init-db.js` - Initializes shop items
|
| 128 |
+
- ✓ `package.json` - Dependencies fixed from before
|
| 129 |
+
- ✓ `All other docs` - Setup guides still apply
|
| 130 |
+
|
| 131 |
+
## Testing Checklist
|
| 132 |
+
|
| 133 |
+
After changes, verify these work:
|
| 134 |
+
|
| 135 |
+
- [ ] Can register and login
|
| 136 |
+
- [ ] Profile shows correct username
|
| 137 |
+
- [ ] Can upload profile picture
|
| 138 |
+
- [ ] Profile picture shows in messages
|
| 139 |
+
- [ ] Friends list appears in sidebar
|
| 140 |
+
- [ ] Can click friend to open DM
|
| 141 |
+
- [ ] Can send and receive messages
|
| 142 |
+
- [ ] Can send images/videos
|
| 143 |
+
- [ ] Messages scroll smoothly
|
| 144 |
+
- [ ] Online status updates
|
| 145 |
+
- [ ] Typing indicator appears
|
| 146 |
+
- [ ] Shop still works
|
| 147 |
+
- [ ] Coins display correctly
|
| 148 |
+
- [ ] Can buy items
|
| 149 |
+
- [ ] Logout works
|
| 150 |
+
|
| 151 |
+
## Quick Reference
|
| 152 |
+
|
| 153 |
+
### Key URLs
|
| 154 |
+
|
| 155 |
+
- **Local (PC):** `http://localhost:3000`
|
| 156 |
+
- **Local Network (Phone):** `http://YOUR_PC_IP:3000`
|
| 157 |
+
- **Deployed (Railway):** `https://your-app-xxxx.railway.app`
|
| 158 |
+
|
| 159 |
+
### API Endpoints (Developers)
|
| 160 |
+
|
| 161 |
+
**New endpoints:**
|
| 162 |
+
- `POST /api/profile/upload` - Upload profile image
|
| 163 |
+
- `GET /api/dms/:friendId` - Get messages with friend
|
| 164 |
+
- `POST /api/dms` - Send message
|
| 165 |
+
|
| 166 |
+
**Working as before:**
|
| 167 |
+
- `POST /api/register`, `/api/login` - Auth
|
| 168 |
+
- `GET/PUT /api/profile` - User profile
|
| 169 |
+
- `GET/POST /api/friends/*` - Friend operations
|
| 170 |
+
- `GET/POST /api/shop/*` - Shop operations
|
| 171 |
+
- `GET /api/inventory` - User inventory
|
| 172 |
+
|
| 173 |
+
### Socket.IO Events (WebSocket)
|
| 174 |
+
|
| 175 |
+
**Emit (Send):**
|
| 176 |
+
```javascript
|
| 177 |
+
socket.emit('join dm', friendId); // Open chat with friend
|
| 178 |
+
socket.emit('send dm', { ... }); // Send message
|
| 179 |
+
socket.emit('dm typing', friendId); // Tell friend you're typing
|
| 180 |
+
socket.emit('dm stop typing', friendId); // Tell friend you stopped typing
|
| 181 |
+
```
|
| 182 |
+
|
| 183 |
+
**Listen (Receive):**
|
| 184 |
+
```javascript
|
| 185 |
+
socket.on('dm message', (data) => {}); // Receive message
|
| 186 |
+
socket.on('users update', (users) => {}); // Online users list
|
| 187 |
+
socket.on('dm user typing', (data) => {}); // Friend is typing
|
| 188 |
+
socket.on('dm user stop typing', (data) => {}); // Friend stopped typing
|
| 189 |
+
```
|
| 190 |
+
|
| 191 |
+
## Configuration
|
| 192 |
+
|
| 193 |
+
### Environment Variables (.env)
|
| 194 |
+
|
| 195 |
+
```env
|
| 196 |
+
# Required
|
| 197 |
+
MONGODB_URI=mongodb://localhost:27017/discord-app
|
| 198 |
+
JWT_SECRET=your_super_secret_key_change_me
|
| 199 |
+
|
| 200 |
+
# Optional
|
| 201 |
+
PORT=3000
|
| 202 |
+
NODE_ENV=development
|
| 203 |
+
CORS_ORIGIN=*
|
| 204 |
+
```
|
| 205 |
+
|
| 206 |
+
For Railway, update these in the dashboard under "Variables".
|
| 207 |
+
|
| 208 |
+
## Troubleshooting
|
| 209 |
+
|
| 210 |
+
**Messages not appearing in sidebar:**
|
| 211 |
+
- Ensure you've added friends
|
| 212 |
+
- Refresh page to reload friends list
|
| 213 |
+
- Check browser console for errors
|
| 214 |
+
|
| 215 |
+
**Profile picture not saving:**
|
| 216 |
+
- Check image file size (keep under 10MB)
|
| 217 |
+
- Verify valid image format (JPG, PNG)
|
| 218 |
+
- Check browser console
|
| 219 |
+
|
| 220 |
+
**Can't message a friend:**
|
| 221 |
+
- Verify you're actually friends
|
| 222 |
+
- Try refreshing the page
|
| 223 |
+
- Check if friend is blocked
|
| 224 |
+
|
| 225 |
+
**Scrolling stutters on phone:**
|
| 226 |
+
- Close other browser tabs
|
| 227 |
+
- Clear browser cache
|
| 228 |
+
- Try different browser
|
| 229 |
+
|
| 230 |
+
**Can't connect from phone:**
|
| 231 |
+
- Verify PC and phone on same WiFi
|
| 232 |
+
- Confirm using correct IP address (not localhost)
|
| 233 |
+
- Check Windows Firewall allows port 3000
|
| 234 |
+
|
| 235 |
+
## Next Steps
|
| 236 |
+
|
| 237 |
+
### For Development
|
| 238 |
+
1. Test locally thoroughly
|
| 239 |
+
2. Get friends to test with you
|
| 240 |
+
3. Gather feedback
|
| 241 |
+
4. Fix any issues
|
| 242 |
+
5. Deploy to Railway
|
| 243 |
+
|
| 244 |
+
### For Production
|
| 245 |
+
1. Follow [RAILWAY-DEPLOY.md](RAILWAY-DEPLOY.md)
|
| 246 |
+
2. Set up MongoDB Atlas (free tier)
|
| 247 |
+
3. Configure environment on Railway
|
| 248 |
+
4. Test deployed version on mobile
|
| 249 |
+
5. Share public URL with friends
|
| 250 |
+
|
| 251 |
+
### For Future Features
|
| 252 |
+
Consider adding:
|
| 253 |
+
- Group chats (multiple friends in one chat)
|
| 254 |
+
- Voice/video calls
|
| 255 |
+
- Message reactions (emoji responses)
|
| 256 |
+
- Message search
|
| 257 |
+
- Better media uploads (to cloud storage)
|
| 258 |
+
- Read receipts
|
| 259 |
+
|
| 260 |
+
## Documentation
|
| 261 |
+
|
| 262 |
+
Quick links to all guides:
|
| 263 |
+
|
| 264 |
+
- **[RAILWAY-DEPLOY.md](RAILWAY-DEPLOY.md)** - Deploy to the internet
|
| 265 |
+
- **[PHONE-TESTING.md](PHONE-TESTING.md)** - Test on mobile devices
|
| 266 |
+
- **[SETUP-GUIDE.md](SETUP-GUIDE.md)** - Setup and configuration
|
| 267 |
+
- **[FEATURES.md](FEATURES.md)** - All features explained
|
| 268 |
+
- **[GETTING-STARTED.md](GETTING-STARTED.md)** - Quick start
|
| 269 |
+
- **[UPDATE-SUMMARY.md](UPDATE-SUMMARY.md)** - Technical details
|
| 270 |
+
|
| 271 |
+
## Need Help?
|
| 272 |
+
|
| 273 |
+
1. **Local setup issues?**
|
| 274 |
+
- See SETUP-GUIDE.md
|
| 275 |
+
- Check npm install worked: `npm list`
|
| 276 |
+
- Verify MongoDB is running
|
| 277 |
+
|
| 278 |
+
2. **Phone won't connect?**
|
| 279 |
+
- See PHONE-TESTING.md
|
| 280 |
+
- Verify WiFi network
|
| 281 |
+
- Check IP address
|
| 282 |
+
|
| 283 |
+
3. **Can't deploy?**
|
| 284 |
+
- See RAILWAY-DEPLOY.md
|
| 285 |
+
- Check Railway logs
|
| 286 |
+
- Verify MongoDB connection string
|
| 287 |
+
|
| 288 |
+
4. **Messages not working?**
|
| 289 |
+
- Check Socket.IO connection
|
| 290 |
+
- Verify in browser console
|
| 291 |
+
- Check friend/user relationship
|
| 292 |
+
|
| 293 |
+
## Key Improvements
|
| 294 |
+
|
| 295 |
+
✨ **What Users Will Notice:**
|
| 296 |
+
- Much easier to use (DM sidebar instead of channels)
|
| 297 |
+
- Can personalize their profile
|
| 298 |
+
- Nice smooth message experience
|
| 299 |
+
- Works great on phones
|
| 300 |
+
|
| 301 |
+
🔧 **What Developers Will Notice:**
|
| 302 |
+
- Clean DM architecture
|
| 303 |
+
- Better Socket.IO organization
|
| 304 |
+
- Scalable friend-based messaging
|
| 305 |
+
- Easy to add more features
|
| 306 |
+
|
| 307 |
+
🚀 **What You Can Do Next:**
|
| 308 |
+
- Deploy for free on Railway
|
| 309 |
+
- Test with real friends internationally
|
| 310 |
+
- Get feedback and improve
|
| 311 |
+
- Add new features based on feedback
|
| 312 |
+
|
| 313 |
+
---
|
| 314 |
+
|
| 315 |
+
## Summary
|
| 316 |
+
|
| 317 |
+
Your app has evolved from a basic chat to a **proper DM-only messaging system** with:
|
| 318 |
+
- ✅ Friend-based private messaging
|
| 319 |
+
- ✅ Profile customization
|
| 320 |
+
- ✅ Mobile-friendly interface
|
| 321 |
+
- ✅ Production-ready deployment guides
|
| 322 |
+
- ✅ Better user experience overall
|
| 323 |
+
|
| 324 |
+
**You're ready to either:**
|
| 325 |
+
1. **Keep developing locally** - Add more features, test thoroughly
|
| 326 |
+
2. **Deploy to production** - Use RAILWAY-DEPLOY.md guide
|
| 327 |
+
3. **Invite friends** - Use PHONE-TESTING.md to get feedback
|
| 328 |
+
|
| 329 |
+
**Good luck, and have fun building! 🎉**
|
README.md
ADDED
|
@@ -0,0 +1,387 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 💬 Ultimate Chat App
|
| 2 |
+
|
| 3 |
+
A modern, feature-rich real-time chat application built with Socket.IO, Express, and vanilla JavaScript.
|
| 4 |
+
|
| 5 |
+
## ✨ Features
|
| 6 |
+
|
| 7 |
+
### Core Functionality
|
| 8 |
+
- 🚀 **Real-time Messaging** - Instant message delivery using WebSocket technology
|
| 9 |
+
- 👥 **Online Users List** - See who's currently active in the chat
|
| 10 |
+
- ⌨️ **Typing Indicators** - Know when someone is typing a message
|
| 11 |
+
- 📝 **Message History** - New users can see the last 50 messages
|
| 12 |
+
- 💾 **Persistent Sessions** - Messages are saved during the session
|
| 13 |
+
|
| 14 |
+
### User Experience
|
| 15 |
+
- 🎨 **Modern UI/UX** - Beautiful gradient design with smooth animations
|
| 16 |
+
- 🌙 **Dark/Light Theme** - Toggle between themes, preference saved locally
|
| 17 |
+
- 😀 **Emoji Support** - Built-in emoji picker with popular emojis
|
| 18 |
+
- 🔔 **Sound Notifications** - Audio alerts for new messages
|
| 19 |
+
- ⏰ **Smart Timestamps** - Dynamic time display (just now, X mins ago, etc.)
|
| 20 |
+
- 📱 **Mobile Responsive** - Works perfectly on all device sizes
|
| 21 |
+
- 👤 **User Avatars** - Auto-generated avatars with first letter of username
|
| 22 |
+
|
| 23 |
+
### UI Features
|
| 24 |
+
- Smooth fade-in animations for messages
|
| 25 |
+
- Auto-scroll to latest messages
|
| 26 |
+
- Custom scrollbar design
|
| 27 |
+
- Clean, organized message bubbles
|
| 28 |
+
- Distinct styling for own vs others' messages
|
| 29 |
+
- System notifications for user joins/leaves
|
| 30 |
+
- Professional header with action buttons
|
| 31 |
+
|
| 32 |
+
## 🚀 Getting Started
|
| 33 |
+
|
| 34 |
+
### Prerequisites
|
| 35 |
+
- Node.js (v14 or higher)
|
| 36 |
+
- npm or yarn
|
| 37 |
+
|
| 38 |
+
### Installation
|
| 39 |
+
|
| 40 |
+
1. Navigate to the project directory:
|
| 41 |
+
```bash
|
| 42 |
+
cd message
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
2. Install dependencies:
|
| 46 |
+
```bash
|
| 47 |
+
npm install
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
3. Start the server:
|
| 51 |
+
```bash
|
| 52 |
+
npm start
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
Or for development with auto-restart:
|
| 56 |
+
```bash
|
| 57 |
+
npm run dev
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
4. Open your browser and navigate to:
|
| 61 |
+
```
|
| 62 |
+
http://localhost:3000
|
| 63 |
+
```
|
| 64 |
+
|
| 65 |
+
### ⚡ Quick HTTPS Setup for LAN Access (Windows)
|
| 66 |
+
|
| 67 |
+
Run this **one command** in PowerShell to set up HTTPS with automatic certificate generation and firewall configuration:
|
| 68 |
+
|
| 69 |
+
```powershell
|
| 70 |
+
.\setup-https.ps1
|
| 71 |
+
```
|
| 72 |
+
|
| 73 |
+
Or using npm:
|
| 74 |
+
|
| 75 |
+
```powershell
|
| 76 |
+
npm run https
|
| 77 |
+
```
|
| 78 |
+
|
| 79 |
+
This will:
|
| 80 |
+
- ✅ Auto-detect your LAN IP
|
| 81 |
+
- ✅ Generate trusted HTTPS certificate
|
| 82 |
+
- ✅ Configure Windows Firewall
|
| 83 |
+
- ✅ Start the app on `https://localhost:3001`
|
| 84 |
+
- ✅ Enable LAN access from mobile devices
|
| 85 |
+
|
| 86 |
+
## 🔐 Enable HTTPS
|
| 87 |
+
|
| 88 |
+
The server now supports HTTPS automatically when you provide certificate paths.
|
| 89 |
+
|
| 90 |
+
### 1) Create or obtain certificates
|
| 91 |
+
|
| 92 |
+
- **Development (self-signed):** use OpenSSL or `mkcert`
|
| 93 |
+
- **Production:** use a trusted cert (for example Let's Encrypt)
|
| 94 |
+
|
| 95 |
+
### 2) Set environment variables
|
| 96 |
+
|
| 97 |
+
Windows PowerShell:
|
| 98 |
+
|
| 99 |
+
```powershell
|
| 100 |
+
$env:SSL_KEY_PATH="C:\path\to\key.pem"
|
| 101 |
+
$env:SSL_CERT_PATH="C:\path\to\cert.pem"
|
| 102 |
+
$env:PORT="3000"
|
| 103 |
+
npm start
|
| 104 |
+
```
|
| 105 |
+
|
| 106 |
+
Without `SSL_KEY_PATH` and `SSL_CERT_PATH`, the app falls back to HTTP.
|
| 107 |
+
|
| 108 |
+
### Windows-only quick setup (no OpenSSL/mkcert required)
|
| 109 |
+
|
| 110 |
+
You can create a local `.pfx` certificate with built-in PowerShell commands:
|
| 111 |
+
|
| 112 |
+
```powershell
|
| 113 |
+
cd C:\Users\dell\Downloads\message
|
| 114 |
+
New-Item -ItemType Directory -Force certs | Out-Null
|
| 115 |
+
$cert = New-SelfSignedCertificate -DnsName "localhost" -CertStoreLocation "cert:\CurrentUser\My"
|
| 116 |
+
$pwd = ConvertTo-SecureString -String "123456" -Force -AsPlainText
|
| 117 |
+
Export-PfxCertificate -Cert $cert -FilePath ".\certs\localhost.pfx" -Password $pwd
|
| 118 |
+
|
| 119 |
+
$env:SSL_PFX_PATH="C:\Users\dell\Downloads\message\certs\localhost.pfx"
|
| 120 |
+
$env:SSL_PFX_PASSPHRASE="123456"
|
| 121 |
+
$env:PORT="3001"
|
| 122 |
+
npm start
|
| 123 |
+
```
|
| 124 |
+
|
| 125 |
+
Open:
|
| 126 |
+
|
| 127 |
+
```
|
| 128 |
+
https://localhost:3001
|
| 129 |
+
```
|
| 130 |
+
|
| 131 |
+
If browser warns about certificate trust, continue for local development.
|
| 132 |
+
|
| 133 |
+
### 3) Open HTTPS URL
|
| 134 |
+
|
| 135 |
+
```
|
| 136 |
+
https://localhost:3000
|
| 137 |
+
```
|
| 138 |
+
|
| 139 |
+
For self-signed certificates, your browser will show a warning unless the cert is trusted locally.
|
| 140 |
+
|
| 141 |
+
## 🌐 Allow connections beyond localhost
|
| 142 |
+
|
| 143 |
+
The server now listens on `0.0.0.0` by default, so devices on your network can connect.
|
| 144 |
+
|
| 145 |
+
### LAN access (same Wi-Fi/network)
|
| 146 |
+
|
| 147 |
+
**Step 1:** Find your PC's LAN IP address:
|
| 148 |
+
|
| 149 |
+
```powershell
|
| 150 |
+
(Get-NetIPAddress -AddressFamily IPv4 | Where-Object {$_.InterfaceAlias -notlike "*Loopback*" -and $_.IPAddress -notlike "169.254.*"}).IPAddress
|
| 151 |
+
```
|
| 152 |
+
|
| 153 |
+
Example output: `192.168.1.25`
|
| 154 |
+
|
| 155 |
+
**Step 2:** Allow firewall for the app port:
|
| 156 |
+
|
| 157 |
+
```powershell
|
| 158 |
+
New-NetFirewallRule -DisplayName "Chat App HTTPS" -Direction Inbound -LocalPort 3001 -Protocol TCP -Action Allow
|
| 159 |
+
```
|
| 160 |
+
|
| 161 |
+
**Step 3:** Generate cert for both localhost and LAN IP:
|
| 162 |
+
|
| 163 |
+
```powershell
|
| 164 |
+
cd C:\Users\dell\Downloads\message
|
| 165 |
+
taskkill /F /IM node.exe
|
| 166 |
+
|
| 167 |
+
# Replace 192.168.56.1 with your actual LAN IP
|
| 168 |
+
$cert = New-SelfSignedCertificate `
|
| 169 |
+
-Subject "CN=localhost" `
|
| 170 |
+
-CertStoreLocation "Cert:\CurrentUser\My" `
|
| 171 |
+
-KeyAlgorithm RSA -KeyLength 2048 `
|
| 172 |
+
-HashAlgorithm SHA256 `
|
| 173 |
+
-NotAfter (Get-Date).AddYears(2) `
|
| 174 |
+
-TextExtension @("2.5.29.17={text}DNS=localhost&IPAddress=192.168.56.1")
|
| 175 |
+
|
| 176 |
+
$pwd = ConvertTo-SecureString "123456" -AsPlainText -Force
|
| 177 |
+
Export-PfxCertificate -Cert $cert -FilePath ".\certs\lan-localhost.pfx" -Password $pwd
|
| 178 |
+
Export-Certificate -Cert $cert -FilePath ".\certs\lan-localhost.cer" -Force
|
| 179 |
+
Import-Certificate -FilePath ".\certs\lan-localhost.cer" -CertStoreLocation "Cert:\CurrentUser\Root"
|
| 180 |
+
|
| 181 |
+
$env:SSL_PFX_PATH = (Resolve-Path ".\certs\lan-localhost.pfx").Path
|
| 182 |
+
$env:SSL_PFX_PASSPHRASE = "123456"
|
| 183 |
+
$env:PORT = "3001"
|
| 184 |
+
npm start
|
| 185 |
+
```
|
| 186 |
+
|
| 187 |
+
**Step 4:** Open from any device on your network:
|
| 188 |
+
- On same PC: `https://localhost:3001`
|
| 189 |
+
- On mobile/other PC: `https://192.168.56.1:3001` (use your actual IP)
|
| 190 |
+
|
| 191 |
+
**Note:** Mobile devices will show cert warning (self-signed). Click "Advanced" → "Proceed" for local testing.
|
| 192 |
+
|
| 193 |
+
### Internet access (different networks) - RECOMMENDED: Use Cloud Deployment
|
| 194 |
+
|
| 195 |
+
For users on different internet connections (cellular, other Wi-Fi), **deploy to a free cloud service** instead of exposing your home network:
|
| 196 |
+
|
| 197 |
+
| Option | Difficulty | Cost | HTTPS | Best For |
|
| 198 |
+
|--------|-----------|------|-------|----------|
|
| 199 |
+
| Railway | ⭐ Easy | Free tier | ✅ Auto | Quick deployment, beginners |
|
| 200 |
+
| Render | ⭐ Easy | Free tier | ✅ Auto | Static projects, free hosting |
|
| 201 |
+
| Self-host (DuckDNS+Caddy) | ⭐⭐⭐ Hard | Free | ✅ Auto | Learning, full control |
|
| 202 |
+
|
| 203 |
+
#### ☁️ Option 1: Deploy to Railway (Easiest - Free HTTPS + Domain)
|
| 204 |
+
|
| 205 |
+
1. Create account at https://railway.app
|
| 206 |
+
2. Install Railway CLI:
|
| 207 |
+
```powershell
|
| 208 |
+
npm install -g @railway/cli
|
| 209 |
+
```
|
| 210 |
+
3. Deploy:
|
| 211 |
+
```powershell
|
| 212 |
+
cd C:\Users\dell\Downloads\message
|
| 213 |
+
railway login
|
| 214 |
+
railway init
|
| 215 |
+
railway up
|
| 216 |
+
```
|
| 217 |
+
4. Get your public URL:
|
| 218 |
+
```powershell
|
| 219 |
+
railway domain
|
| 220 |
+
```
|
| 221 |
+
5. Share the URL (automatic HTTPS included!)
|
| 222 |
+
|
| 223 |
+
#### ☁️ Option 2: Deploy to Render (Free tier available)
|
| 224 |
+
|
| 225 |
+
1. Create account at https://render.com
|
| 226 |
+
2. Click "New" → "Web Service"
|
| 227 |
+
3. Connect your GitHub repo (or upload via dashboard)
|
| 228 |
+
4. Set:
|
| 229 |
+
- **Build Command:** `npm install`
|
| 230 |
+
- **Start Command:** `npm start`
|
| 231 |
+
5. Deploy and get free `.onrender.com` HTTPS URL
|
| 232 |
+
|
| 233 |
+
#### 🏠 Option 3: Self-host with proper domain (Advanced)
|
| 234 |
+
|
| 235 |
+
For advanced users who want to host from home with a real domain:
|
| 236 |
+
|
| 237 |
+
**Requirements:**
|
| 238 |
+
- Static public IP or dynamic DNS (DuckDNS)
|
| 239 |
+
- Router port forwarding access
|
| 240 |
+
- Reverse proxy (Caddy recommended for auto-HTTPS)
|
| 241 |
+
|
| 242 |
+
**Steps:**
|
| 243 |
+
1. Get free domain: https://www.duckdns.org
|
| 244 |
+
2. Install Caddy on Windows: https://caddyserver.com/docs/install
|
| 245 |
+
3. Configure router port forward: `80` and `443` → your PC
|
| 246 |
+
4. Edit `Caddyfile` (included in project) with your domain
|
| 247 |
+
5. Run your Node app: `npm start`
|
| 248 |
+
6. Run Caddy in another terminal: `caddy run`
|
| 249 |
+
7. Caddy automatically gets Let's Encrypt certificate!
|
| 250 |
+
|
| 251 |
+
**Security Note:** Self-hosting exposes your home network. Use strong passwords, keep software updated, and consider a VPS instead.
|
| 252 |
+
|
| 253 |
+
## 🎮 How to Use
|
| 254 |
+
|
| 255 |
+
1. **Join the Chat**
|
| 256 |
+
- Enter your desired username when prompted
|
| 257 |
+
- Click "Join Chat" or press Enter
|
| 258 |
+
|
| 259 |
+
2. **Send Messages**
|
| 260 |
+
- Type your message in the input field
|
| 261 |
+
- Click the send button or press Enter
|
| 262 |
+
- Your messages appear on the right (blue)
|
| 263 |
+
- Others' messages appear on the left (gray)
|
| 264 |
+
|
| 265 |
+
3. **Use Emojis**
|
| 266 |
+
- Click the emoji button (smiley face icon)
|
| 267 |
+
- Select from popular emojis
|
| 268 |
+
- Emojis are added to your message
|
| 269 |
+
|
| 270 |
+
4. **Switch Themes**
|
| 271 |
+
- Click "Toggle Theme" in the sidebar
|
| 272 |
+
- Your preference is saved automatically
|
| 273 |
+
|
| 274 |
+
5. **View Online Users**
|
| 275 |
+
- Check the sidebar to see all active users
|
| 276 |
+
- Your name is highlighted
|
| 277 |
+
- Green dot indicates online status
|
| 278 |
+
|
| 279 |
+
6. **Clear Chat**
|
| 280 |
+
- Click the trash icon in the header
|
| 281 |
+
- Confirm to clear all messages (local only)
|
| 282 |
+
|
| 283 |
+
## 📁 Project Structure
|
| 284 |
+
|
| 285 |
+
```
|
| 286 |
+
message/
|
| 287 |
+
├── index.html # Main HTML with embedded CSS
|
| 288 |
+
├── client.js # Client-side JavaScript & Socket.IO logic
|
| 289 |
+
├── server.js # Express server & Socket.IO backend
|
| 290 |
+
├── package.json # Project dependencies
|
| 291 |
+
├── README.md # This file
|
| 292 |
+
├── setup-https.ps1 # Quick HTTPS setup script for Windows
|
| 293 |
+
├── railway.json # Railway deployment config
|
| 294 |
+
├── render.yaml # Render deployment config
|
| 295 |
+
├── Caddyfile # Caddy reverse proxy config (for self-hosting)
|
| 296 |
+
├── .gitignore # Git ignore rules
|
| 297 |
+
└── certs/ # Local HTTPS certificates (auto-generated)
|
| 298 |
+
```
|
| 299 |
+
|
| 300 |
+
## 🛠️ Technologies Used
|
| 301 |
+
|
| 302 |
+
- **Backend**: Node.js, Express.js, Socket.IO
|
| 303 |
+
- **Frontend**: HTML5, CSS3, Vanilla JavaScript
|
| 304 |
+
- **Icons**: Font Awesome 6
|
| 305 |
+
- **Real-time Communication**: Socket.IO (WebSocket)
|
| 306 |
+
|
| 307 |
+
## 🎨 Design Highlights
|
| 308 |
+
|
| 309 |
+
### Color Scheme
|
| 310 |
+
- Primary: Purple gradient (#667eea → #764ba2)
|
| 311 |
+
- Light theme: Clean whites and grays
|
| 312 |
+
- Dark theme: Deep blacks with purple accents
|
| 313 |
+
|
| 314 |
+
### Animations
|
| 315 |
+
- Fade-in animations for new messages
|
| 316 |
+
- Typing indicator with bouncing dots
|
| 317 |
+
- Smooth hover effects on buttons
|
| 318 |
+
- Slide-in modal animations
|
| 319 |
+
|
| 320 |
+
## 🔧 Configuration
|
| 321 |
+
|
| 322 |
+
### Environment variables
|
| 323 |
+
|
| 324 |
+
Set these before starting the app:
|
| 325 |
+
|
| 326 |
+
```javascript
|
| 327 |
+
const PORT = process.env.PORT || 3000;
|
| 328 |
+
const HOST = process.env.HOST || '0.0.0.0';
|
| 329 |
+
```
|
| 330 |
+
|
| 331 |
+
- `PORT`: server port (default `3000`)
|
| 332 |
+
- `HOST`: bind address (default `0.0.0.0`)
|
| 333 |
+
- `SSL_KEY_PATH`: absolute path to TLS private key (`.pem`)
|
| 334 |
+
- `SSL_CERT_PATH`: absolute path to TLS certificate (`.pem`)
|
| 335 |
+
- `SSL_PFX_PATH`: absolute path to TLS certificate bundle (`.pfx`)
|
| 336 |
+
- `SSL_PFX_PASSPHRASE`: passphrase for `.pfx` (if set)
|
| 337 |
+
- `CORS_ORIGIN`: optional comma-separated allowed origins for Socket.IO (default `*`)
|
| 338 |
+
|
| 339 |
+
### Adjust Message History
|
| 340 |
+
Edit `server.js`:
|
| 341 |
+
```javascript
|
| 342 |
+
const MAX_HISTORY = 50; // Change to desired number
|
| 343 |
+
```
|
| 344 |
+
|
| 345 |
+
## 📝 Features in Detail
|
| 346 |
+
|
| 347 |
+
### Typing Indicators
|
| 348 |
+
When you start typing, other users see a real-time "typing..." indicator. It automatically disappears after 1 second of inactivity.
|
| 349 |
+
|
| 350 |
+
### Message History
|
| 351 |
+
New users joining the chat can see the last 50 messages, allowing them to catch up on the conversation.
|
| 352 |
+
|
| 353 |
+
### Smart Timestamps
|
| 354 |
+
- "Just now" for messages < 1 minute old
|
| 355 |
+
- "X mins ago" for messages < 1 hour old
|
| 356 |
+
- Time (HH:MM) for messages today
|
| 357 |
+
- Date + time for older messages
|
| 358 |
+
|
| 359 |
+
### User Management
|
| 360 |
+
- Automatic user tracking by socket connection
|
| 361 |
+
- Real-time updates when users join/leave
|
| 362 |
+
- Broadcast notifications to all connected clients
|
| 363 |
+
|
| 364 |
+
## 🚀 Future Enhancements
|
| 365 |
+
|
| 366 |
+
Potential features to add:
|
| 367 |
+
- 📤 File/image sharing
|
| 368 |
+
- 🔒 Private messaging
|
| 369 |
+
- 🏠 Chat rooms
|
| 370 |
+
- 🔍 Message search
|
| 371 |
+
- 💾 Database integration for persistent history
|
| 372 |
+
- 🔐 User authentication
|
| 373 |
+
- 📊 Read receipts
|
| 374 |
+
- ⭐ Message reactions
|
| 375 |
+
- 🎥 Video/voice calls
|
| 376 |
+
|
| 377 |
+
## 📄 License
|
| 378 |
+
|
| 379 |
+
This project is open source and available for personal and commercial use.
|
| 380 |
+
|
| 381 |
+
## 👨💻 Developer
|
| 382 |
+
|
| 383 |
+
Created with ❤️ using modern web technologies.
|
| 384 |
+
|
| 385 |
+
---
|
| 386 |
+
|
| 387 |
+
**Enjoy chatting! 💬✨**
|
SETUP-GUIDE.md
ADDED
|
@@ -0,0 +1,268 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Discord-Like Chat Application
|
| 2 |
+
|
| 3 |
+
A comprehensive real-time chat application with Discord-like features including user profiles, friends system, shop, voice channels, and media sharing.
|
| 4 |
+
|
| 5 |
+
## ✨ Features
|
| 6 |
+
|
| 7 |
+
### User Management
|
| 8 |
+
- ✅ User registration and login with email/password
|
| 9 |
+
- ✅ JWT-based authentication
|
| 10 |
+
- ✅ Editable user profiles with bio and avatar
|
| 11 |
+
- ✅ Persistent accounts saved in MongoDB
|
| 12 |
+
|
| 13 |
+
### Chat & Messaging
|
| 14 |
+
- ✅ Real-time messaging with Socket.IO
|
| 15 |
+
- ✅ Text channels and voice channel support
|
| 16 |
+
- ✅ Typing indicators
|
| 17 |
+
- ✅ Media sharing (photos & videos)
|
| 18 |
+
- ✅ Message history
|
| 19 |
+
|
| 20 |
+
### Social Features
|
| 21 |
+
- ✅ Friends list system
|
| 22 |
+
- ✅ Friend requests with accept/reject
|
| 23 |
+
- ✅ Online status tracking
|
| 24 |
+
- ✅ Member list with online indicators
|
| 25 |
+
|
| 26 |
+
### Shop & Economy
|
| 27 |
+
- ✅ In-game shop with purchasable items
|
| 28 |
+
- ✅ Coin currency system (1000 starting coins)
|
| 29 |
+
- ✅ User inventory
|
| 30 |
+
- ✅ Purchase tracking
|
| 31 |
+
|
| 32 |
+
### UI/UX
|
| 33 |
+
- ✅ Discord-inspired dark theme
|
| 34 |
+
- ✅ Responsive design (desktop, tablet, mobile)
|
| 35 |
+
- ✅ Channel sidebar with quick access
|
| 36 |
+
- ✅ Member sidebar
|
| 37 |
+
- ✅ Profile panel
|
| 38 |
+
|
| 39 |
+
## 🚀 Installation & Setup
|
| 40 |
+
|
| 41 |
+
### Prerequisites
|
| 42 |
+
- Node.js (v14 or higher)
|
| 43 |
+
- MongoDB (local or cloud)
|
| 44 |
+
- npm (comes with Node.js)
|
| 45 |
+
|
| 46 |
+
### Step 1: Install Dependencies
|
| 47 |
+
```bash
|
| 48 |
+
npm install
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
### Step 2: Configure Environment Variables
|
| 52 |
+
1. Copy `.env.example` to `.env`:
|
| 53 |
+
```bash
|
| 54 |
+
cp .env.example .env
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
2. Edit `.env` and set your MongoDB connection:
|
| 58 |
+
```
|
| 59 |
+
MONGODB_URI=mongodb://localhost:27017/discord-app
|
| 60 |
+
JWT_SECRET=your_secret_key_here
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
### Step 3: Start MongoDB
|
| 64 |
+
Make sure MongoDB is running on your system.
|
| 65 |
+
|
| 66 |
+
**Windows (if using local MongoDB):**
|
| 67 |
+
```bash
|
| 68 |
+
mongod
|
| 69 |
+
```
|
| 70 |
+
|
| 71 |
+
**Or use MongoDB Atlas (cloud):**
|
| 72 |
+
- Sign up at https://www.mongodb.com/cloud/atlas
|
| 73 |
+
- Create a cluster
|
| 74 |
+
- Get your connection string
|
| 75 |
+
- Update `MONGODB_URI` in `.env`
|
| 76 |
+
|
| 77 |
+
### Step 4: Start the Server
|
| 78 |
+
```bash
|
| 79 |
+
npm start
|
| 80 |
+
```
|
| 81 |
+
|
| 82 |
+
Or for development with auto-reload:
|
| 83 |
+
```bash
|
| 84 |
+
npm run dev
|
| 85 |
+
```
|
| 86 |
+
|
| 87 |
+
The server will start at `http://localhost:3000`
|
| 88 |
+
|
| 89 |
+
## 📖 How to Use
|
| 90 |
+
|
| 91 |
+
### 1. Create Account
|
| 92 |
+
- Click "Register"
|
| 93 |
+
- Enter username, email, and password
|
| 94 |
+
- Click "Create Account"
|
| 95 |
+
|
| 96 |
+
### 2. Log In
|
| 97 |
+
- Enter your email and password
|
| 98 |
+
- Click "Login"
|
| 99 |
+
|
| 100 |
+
### 3. Send Messages
|
| 101 |
+
- Select a channel from the left sidebar
|
| 102 |
+
- Type your message in the input box
|
| 103 |
+
- Press Enter or click the send button
|
| 104 |
+
|
| 105 |
+
### 4. Share Media
|
| 106 |
+
- Click the paperclip icon in the message input
|
| 107 |
+
- Select an image or video from your computer
|
| 108 |
+
- The file will be sent in the message
|
| 109 |
+
|
| 110 |
+
### 5. Manage Profile
|
| 111 |
+
- Click the profile icon (top right)
|
| 112 |
+
- Edit your username and bio
|
| 113 |
+
- Click "Save Profile"
|
| 114 |
+
- Check your inventory and coins
|
| 115 |
+
|
| 116 |
+
### 6. Add Friends
|
| 117 |
+
- Click the Friends icon (users icon) in the left guild sidebar
|
| 118 |
+
- Accept friend requests from others
|
| 119 |
+
- View your current friends list
|
| 120 |
+
|
| 121 |
+
### 7. Use the Shop
|
| 122 |
+
- Click the Shop icon (store icon) in the left guild sidebar
|
| 123 |
+
- Browse available items
|
| 124 |
+
- Click "Buy" to purchase items (uses coins)
|
| 125 |
+
- Check inventory in your profile
|
| 126 |
+
|
| 127 |
+
## 📁 Project Structure
|
| 128 |
+
|
| 129 |
+
```
|
| 130 |
+
message-app/
|
| 131 |
+
├── server.js # Express & Socket.IO backend
|
| 132 |
+
├── client.js # Frontend JavaScript
|
| 133 |
+
├── index.html # Frontend HTML
|
| 134 |
+
├── package.json # Dependencies
|
| 135 |
+
├── .env # Environment variables (create this)
|
| 136 |
+
├── .env.example # Example environment file
|
| 137 |
+
└── README.md # This file
|
| 138 |
+
```
|
| 139 |
+
|
| 140 |
+
## 🔧 API Endpoints
|
| 141 |
+
|
| 142 |
+
### Authentication
|
| 143 |
+
- `POST /api/register` - Register new user
|
| 144 |
+
- `POST /api/login` - Login user
|
| 145 |
+
|
| 146 |
+
### Profile
|
| 147 |
+
- `GET /api/profile/:userId` - Get user profile
|
| 148 |
+
- `PUT /api/profile` - Update profile
|
| 149 |
+
|
| 150 |
+
### Friends
|
| 151 |
+
- `POST /api/friends/request` - Send friend request
|
| 152 |
+
- `GET /api/friends/requests` - Get pending requests
|
| 153 |
+
- `POST /api/friends/accept` - Accept friend request
|
| 154 |
+
- `GET /api/friends` - Get friends list
|
| 155 |
+
|
| 156 |
+
### Shop
|
| 157 |
+
- `GET /api/shop` - Get shop items
|
| 158 |
+
- `POST /api/shop/buy` - Purchase item
|
| 159 |
+
- `GET /api/inventory` - Get user inventory
|
| 160 |
+
|
| 161 |
+
### Channels
|
| 162 |
+
- `POST /api/channels` - Create channel
|
| 163 |
+
- `GET /api/channels` - Get channels
|
| 164 |
+
|
| 165 |
+
## 🔌 Socket.IO Events
|
| 166 |
+
|
| 167 |
+
### Client to Server
|
| 168 |
+
- `join` - User joins with token
|
| 169 |
+
- `join channel` - Join a channel
|
| 170 |
+
- `leave channel` - Leave a channel
|
| 171 |
+
- `send message` - Send message
|
| 172 |
+
- `typing` - User is typing
|
| 173 |
+
- `stop typing` - User stopped typing
|
| 174 |
+
- `start voice call` - Start voice call
|
| 175 |
+
|
| 176 |
+
### Server to Client
|
| 177 |
+
- `users update` - Online users list updated
|
| 178 |
+
- `message` - New message received
|
| 179 |
+
- `user typing` - User is typing
|
| 180 |
+
- `user stop typing` - User stopped typing
|
| 181 |
+
- `voice call started` - Voice call started
|
| 182 |
+
|
| 183 |
+
## 🛠️ Configuration
|
| 184 |
+
|
| 185 |
+
### MongoDB
|
| 186 |
+
You can use either:
|
| 187 |
+
1. **Local MongoDB**: Install MongoDB Community Edition
|
| 188 |
+
2. **MongoDB Atlas**: Free cloud hosting at https://www.mongodb.com/cloud/atlas
|
| 189 |
+
|
| 190 |
+
### JWT Secret
|
| 191 |
+
Change the `JWT_SECRET` in `.env` to a secure random string for production:
|
| 192 |
+
```bash
|
| 193 |
+
# Generate a secure key
|
| 194 |
+
node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
|
| 195 |
+
```
|
| 196 |
+
|
| 197 |
+
### Port
|
| 198 |
+
Default port is 3000. Change in `.env`:
|
| 199 |
+
```
|
| 200 |
+
PORT=8080
|
| 201 |
+
```
|
| 202 |
+
|
| 203 |
+
## 📱 Mobile Support
|
| 204 |
+
|
| 205 |
+
The app is fully responsive and works on:
|
| 206 |
+
- Desktop (Chrome, Firefox, Safari, Edge)
|
| 207 |
+
- Tablet (iPad, Android tablets)
|
| 208 |
+
- Mobile phones (iOS, Android)
|
| 209 |
+
|
| 210 |
+
## 🐛 Troubleshooting
|
| 211 |
+
|
| 212 |
+
### "Cannot connect to MongoDB"
|
| 213 |
+
- Make sure MongoDB is running (`mongod` command)
|
| 214 |
+
- Check `MONGODB_URI` in `.env`
|
| 215 |
+
- Verify MongoDB port (default 27017)
|
| 216 |
+
|
| 217 |
+
### "Port already in use"
|
| 218 |
+
- Change `PORT` in `.env`
|
| 219 |
+
- Or kill the process: `lsof -ti:3000 | xargs kill -9`
|
| 220 |
+
|
| 221 |
+
### "Socket.IO connection failed"
|
| 222 |
+
- Check if server is running
|
| 223 |
+
- Verify correct server URL
|
| 224 |
+
- Check CORS settings in server.js
|
| 225 |
+
|
| 226 |
+
### Files not uploading
|
| 227 |
+
- Check file size (max 50MB)
|
| 228 |
+
- Verify file type (images/videos only)
|
| 229 |
+
- Check browser console for errors
|
| 230 |
+
|
| 231 |
+
## 📝 Default Shop Items
|
| 232 |
+
|
| 233 |
+
The shop comes with these starting items (add more by modifying server.js):
|
| 234 |
+
- Discord Nitro Badge - 500 coins
|
| 235 |
+
- Profile Border - 300 coins
|
| 236 |
+
- Custom Status - 200 coins
|
| 237 |
+
- Emote Pack - 250 coins
|
| 238 |
+
|
| 239 |
+
## 🔐 Security Notes
|
| 240 |
+
|
| 241 |
+
1. Change `JWT_SECRET` in production
|
| 242 |
+
2. Use strong MongoDB passwords
|
| 243 |
+
3. Enable HTTPS in production (use `setup-https.ps1`)
|
| 244 |
+
4. Keep dependencies updated with `npm update`
|
| 245 |
+
|
| 246 |
+
## 📞 Support
|
| 247 |
+
|
| 248 |
+
For issues or questions:
|
| 249 |
+
1. Check the troubleshooting section
|
| 250 |
+
2. Review server console for errors
|
| 251 |
+
3. Check browser console (F12) for client errors
|
| 252 |
+
|
| 253 |
+
## 🎯 Future Enhancements
|
| 254 |
+
|
| 255 |
+
- [ ] Direct messaging (DMs)
|
| 256 |
+
- [ ] Message reactions with emojis
|
| 257 |
+
- [ ] Message editing and deletion
|
| 258 |
+
- [ ] Voice call with WebRTC
|
| 259 |
+
- [ ] Video streaming
|
| 260 |
+
- [ ] File storage with cloud services
|
| 261 |
+
- [ ] Admin commands
|
| 262 |
+
- [ ] Server roles and permissions
|
| 263 |
+
- [ ] Message pins
|
| 264 |
+
- [ ] Custom emoji upload
|
| 265 |
+
|
| 266 |
+
---
|
| 267 |
+
|
| 268 |
+
**Made with ❤️ using Node.js, Express, Socket.IO, and MongoDB**
|
UPDATE-SUMMARY.md
ADDED
|
@@ -0,0 +1,274 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# App Update Summary - DM-Only with Profile Images & Deployment
|
| 2 |
+
|
| 3 |
+
## Overview
|
| 4 |
+
|
| 5 |
+
Your Discord-like chat application has been completely updated with the following improvements:
|
| 6 |
+
|
| 7 |
+
1. ✅ **DM-Only Messaging** - Removed public channels, replaced with friend-based direct messaging
|
| 8 |
+
2. ✅ **Profile Image Upload** - Users can now upload and customize profile pictures
|
| 9 |
+
3. ✅ **Improved Scrolling** - Added smooth scrolling, better scrollbars, and mobile optimization
|
| 10 |
+
4. ✅ **Railway Deployment Guide** - Complete guide to deploy your app for free
|
| 11 |
+
5. ✅ **Phone Testing Guide** - Instructions for testing on mobile devices
|
| 12 |
+
|
| 13 |
+
## What Changed
|
| 14 |
+
|
| 15 |
+
### Backend (server.js)
|
| 16 |
+
|
| 17 |
+
**New Features:**
|
| 18 |
+
- Added `DirectMessage` schema for storing DMs between users
|
| 19 |
+
- Added `/api/profile/upload` endpoint for profile image uploads
|
| 20 |
+
- Added `/api/dms/:friendId` endpoint to retrieve messages with a friend
|
| 21 |
+
- Added `/api/dms` POST endpoint to send messages
|
| 22 |
+
- Updated Socket.IO to use DM rooms instead of channels
|
| 23 |
+
- Socket.IO events changed from channel-based to DM-specific
|
| 24 |
+
|
| 25 |
+
**Socket.IO Events (Updated):**
|
| 26 |
+
- `join` - User joins with authentication
|
| 27 |
+
- `join dm` - Join a DM room with a friend
|
| 28 |
+
- `leave dm` - Leave a DM room
|
| 29 |
+
- `send dm` - Send a direct message
|
| 30 |
+
- `dm typing` - Typing indicator for DMs
|
| 31 |
+
- `dm stop typing` - Stop typing indicator
|
| 32 |
+
- `dm message` - Receive a DM (listener)
|
| 33 |
+
- `dm user typing` - Typing indicator received (listener)
|
| 34 |
+
- `dm user stop typing` - Stop typing received (listener)
|
| 35 |
+
|
| 36 |
+
### Frontend (client.js)
|
| 37 |
+
|
| 38 |
+
**Major Changes:**
|
| 39 |
+
- Replaced `currentChannel` with `currentChatFriendId` and `currentChatFriendName`
|
| 40 |
+
- Removed `showChannel()` function
|
| 41 |
+
- Added `openDM(friendId, friendName)` to open a friend's chat
|
| 42 |
+
- Added `loadDMMessages(friendId)` to load previous DM history
|
| 43 |
+
- Added `loadFriendsForDM()` to display friends as DM list
|
| 44 |
+
- Updated `sendMessage()` to send DMs instead of channel messages
|
| 45 |
+
- Updated `loadFriends()` to allow clicking friends to open DMs
|
| 46 |
+
- Added `uploadProfileImage()` for profile picture upload
|
| 47 |
+
- Updated Socket.IO listeners for DM events
|
| 48 |
+
- Added typing indicators for DMs
|
| 49 |
+
|
| 50 |
+
### UI (index.html)
|
| 51 |
+
|
| 52 |
+
**Major Changes:**
|
| 53 |
+
- Changed sidebar header from "Channels" to "Messages"
|
| 54 |
+
- Removed hardcoded "general" and "Voice Chat" channels
|
| 55 |
+
- DM list is now dynamically populated from friends
|
| 56 |
+
- Added typing indicator display below messages
|
| 57 |
+
- Added profile image upload button with file input
|
| 58 |
+
- Added scrollbar styling for better visuals
|
| 59 |
+
- Updated chat title to show friend name (e.g., "💬 Alice")
|
| 60 |
+
|
| 61 |
+
**CSS Improvements:**
|
| 62 |
+
- Added `scroll-behavior: smooth` for smooth scrolling
|
| 63 |
+
- Added custom scrollbar styling
|
| 64 |
+
- Added scroll-snap for better scroll positioning
|
| 65 |
+
- Added `-webkit-overflow-scrolling: touch` for mobile momentum scrolling
|
| 66 |
+
- Added fade-in animations for new messages
|
| 67 |
+
|
| 68 |
+
## How to Use
|
| 69 |
+
|
| 70 |
+
### For Users
|
| 71 |
+
|
| 72 |
+
1. **Messaging Friends:**
|
| 73 |
+
- Go to Chat section
|
| 74 |
+
- Your friends list appears on the left
|
| 75 |
+
- Click a friend to open their DM
|
| 76 |
+
- Type and send messages
|
| 77 |
+
- Can send images and videos
|
| 78 |
+
|
| 79 |
+
2. **Profile Picture:**
|
| 80 |
+
- Click your profile icon (top right)
|
| 81 |
+
- Go to "Profile" tab
|
| 82 |
+
- Click "Upload Profile Picture"
|
| 83 |
+
- Select an image from your device
|
| 84 |
+
- Picture updates immediately
|
| 85 |
+
|
| 86 |
+
3. **Phone Testing:**
|
| 87 |
+
- See [PHONE-TESTING.md](PHONE-TESTING.md)
|
| 88 |
+
|
| 89 |
+
### For Deployment
|
| 90 |
+
|
| 91 |
+
1. **Deploy to Railway:**
|
| 92 |
+
- See [RAILWAY-DEPLOY.md](RAILWAY-DEPLOY.md)
|
| 93 |
+
- Detailed step-by-step guide
|
| 94 |
+
- Includes MongoDB Atlas setup
|
| 95 |
+
- Free hosting with custom domain
|
| 96 |
+
|
| 97 |
+
## Technology Stack
|
| 98 |
+
|
| 99 |
+
- **Backend:** Node.js + Express
|
| 100 |
+
- **Real-time:** Socket.IO
|
| 101 |
+
- **Database:** MongoDB + Mongoose
|
| 102 |
+
- **Authentication:** JWT + Bcryptjs
|
| 103 |
+
- **Frontend:** HTML5 + CSS3 + JavaScript
|
| 104 |
+
- **Hosting:** Railway (recommended)
|
| 105 |
+
|
| 106 |
+
## Database Schema
|
| 107 |
+
|
| 108 |
+
### DirectMessage Model
|
| 109 |
+
- `messageId` - Unique message ID
|
| 110 |
+
- `from` - Sender user ID
|
| 111 |
+
- `to` - Recipient user ID
|
| 112 |
+
- `fromUsername` - Sender's username
|
| 113 |
+
- `toUsername` - Recipient's username
|
| 114 |
+
- `content` - Message text
|
| 115 |
+
- `mediaType` - text, image, video, emoji
|
| 116 |
+
- `mediaUrl` - Base64 encoded media
|
| 117 |
+
- `timestamp` - When message was sent
|
| 118 |
+
- `readBy` - Array of users who read it
|
| 119 |
+
|
| 120 |
+
### User Model (Updated)
|
| 121 |
+
- `avatar` - Profile picture (base64 encoded)
|
| 122 |
+
- `friends` - Array of friend IDs
|
| 123 |
+
- `status` - online, offline, away
|
| 124 |
+
- Plus existing: username, email, password, bio, coins
|
| 125 |
+
|
| 126 |
+
## API Endpoints
|
| 127 |
+
|
| 128 |
+
### New Endpoints
|
| 129 |
+
- `POST /api/profile/upload` - Upload profile picture
|
| 130 |
+
- `GET /api/dms/:friendId` - Get messages with friend
|
| 131 |
+
- `POST /api/dms` - Send a message
|
| 132 |
+
|
| 133 |
+
### Existing Endpoints (Still Available)
|
| 134 |
+
- `POST /api/register` - Register new user
|
| 135 |
+
- `POST /api/login` - User login
|
| 136 |
+
- `GET/PUT /api/profile` - User profile operations
|
| 137 |
+
- `GET/POST /api/friends/*` - Friend operations
|
| 138 |
+
- `GET/POST /api/shop/*` - Shop operations
|
| 139 |
+
- `GET /api/inventory` - User inventory
|
| 140 |
+
|
| 141 |
+
## File Structure
|
| 142 |
+
|
| 143 |
+
```
|
| 144 |
+
├── server.js # Backend with DM support
|
| 145 |
+
├── client.js # Frontend with DM UI
|
| 146 |
+
├── index.html # UI with scrolling improvements
|
| 147 |
+
├── package.json # Dependencies
|
| 148 |
+
├── .env.example # Environment template
|
| 149 |
+
├── init-db.js # Database initialization
|
| 150 |
+
├── RAILWAY-DEPLOY.md # Deployment guide
|
| 151 |
+
├── PHONE-TESTING.md # Phone testing instructions
|
| 152 |
+
├── SETUP-GUIDE.md # Setup documentation
|
| 153 |
+
├── FEATURES.md # Feature list
|
| 154 |
+
├── GETTING-STARTED.md # Quick start guide
|
| 155 |
+
└── IMPLEMENTATION-COMPLETE.md
|
| 156 |
+
```
|
| 157 |
+
|
| 158 |
+
## Environment Variables
|
| 159 |
+
|
| 160 |
+
Required for `.env`:
|
| 161 |
+
```
|
| 162 |
+
MONGODB_URI=mongodb://localhost:27017/discord-app
|
| 163 |
+
JWT_SECRET=your_secret_key_here
|
| 164 |
+
PORT=3000
|
| 165 |
+
NODE_ENV=development
|
| 166 |
+
CORS_ORIGIN=*
|
| 167 |
+
```
|
| 168 |
+
|
| 169 |
+
For Railway deployment:
|
| 170 |
+
```
|
| 171 |
+
MONGODB_URI=mongodb+srv://user:pass@cluster.mongodb.net/db
|
| 172 |
+
JWT_SECRET=random_string_here
|
| 173 |
+
NODE_ENV=production
|
| 174 |
+
CORS_ORIGIN=*
|
| 175 |
+
```
|
| 176 |
+
|
| 177 |
+
## Performance Improvements
|
| 178 |
+
|
| 179 |
+
1. **Better Scrolling:**
|
| 180 |
+
- Smooth scroll animation
|
| 181 |
+
- Momentum scrolling on mobile
|
| 182 |
+
- Automatic scroll to latest message
|
| 183 |
+
- Custom scrollbar styling
|
| 184 |
+
|
| 185 |
+
2. **Mobile Optimization:**
|
| 186 |
+
- Touch-friendly interface
|
| 187 |
+
- Responsive design
|
| 188 |
+
- Optimized media handling
|
| 189 |
+
|
| 190 |
+
3. **Real-time Updates:**
|
| 191 |
+
- Socket.IO for instant messaging
|
| 192 |
+
- WebSocket compression
|
| 193 |
+
- Efficient room management
|
| 194 |
+
|
| 195 |
+
## Testing Checklist
|
| 196 |
+
|
| 197 |
+
- [x] DM creation with friends
|
| 198 |
+
- [x] Message sending and receiving
|
| 199 |
+
- [x] Profile picture upload
|
| 200 |
+
- [x] Scrolling behavior smooth
|
| 201 |
+
- [x] Mobile responsiveness
|
| 202 |
+
- [x] Friend list display
|
| 203 |
+
- [x] Typing indicators
|
| 204 |
+
- [x] Online status updates
|
| 205 |
+
- [x] Image/video sharing
|
| 206 |
+
- [x] Shop functionality
|
| 207 |
+
|
| 208 |
+
## Known Limitations
|
| 209 |
+
|
| 210 |
+
1. **Media Storage:** Images/videos stored as base64 in database (limits size)
|
| 211 |
+
2. **Message History:** All messages loaded at once (slow with many messages)
|
| 212 |
+
3. **No Message Encryption:** Messages stored in plain text
|
| 213 |
+
4. **File Size Limit:** Multer set to 50MB
|
| 214 |
+
5. **No Message Reactions:** Not implemented yet
|
| 215 |
+
|
| 216 |
+
## Future Improvements
|
| 217 |
+
|
| 218 |
+
- [ ] Paginated message loading
|
| 219 |
+
- [ ] Message search functionality
|
| 220 |
+
- [ ] Voice/video calls
|
| 221 |
+
- [ ] Message reactions (emoji)
|
| 222 |
+
- [ ] Message editing/deletion
|
| 223 |
+
- [ ] Group conversations
|
| 224 |
+
- [ ] Message read receipts
|
| 225 |
+
- [ ] Message disappear after time
|
| 226 |
+
- [ ] File upload to cloud storage
|
| 227 |
+
- [ ] Message encryption
|
| 228 |
+
|
| 229 |
+
## Troubleshooting
|
| 230 |
+
|
| 231 |
+
### DMs not appearing
|
| 232 |
+
- Ensure users are friends
|
| 233 |
+
- Check database connection
|
| 234 |
+
- Verify Socket.IO is connected
|
| 235 |
+
|
| 236 |
+
### Profile picture not saving
|
| 237 |
+
- Check file size (< 10MB recommended)
|
| 238 |
+
- Verify image format is supported
|
| 239 |
+
- Check MongoDB storage quota
|
| 240 |
+
|
| 241 |
+
### Messages not scrolling
|
| 242 |
+
- Try hardRefresh (Ctrl+F5)
|
| 243 |
+
- Clear cache
|
| 244 |
+
- Check browser console for errors
|
| 245 |
+
|
| 246 |
+
### Phone can't connect
|
| 247 |
+
- Verify same WiFi network
|
| 248 |
+
- Confirm correct IP address
|
| 249 |
+
- Check firewall settings
|
| 250 |
+
|
| 251 |
+
## Next Steps
|
| 252 |
+
|
| 253 |
+
1. **Test Locally:**
|
| 254 |
+
- Run `npm install`
|
| 255 |
+
- Set up MongoDB
|
| 256 |
+
- Run `npm start`
|
| 257 |
+
- Test all features
|
| 258 |
+
|
| 259 |
+
2. **Deploy to Railway:**
|
| 260 |
+
- Follow [RAILWAY-DEPLOY.md](RAILWAY-DEPLOY.md)
|
| 261 |
+
- Test on mobile device
|
| 262 |
+
- Monitor logs for errors
|
| 263 |
+
|
| 264 |
+
3. **Optimize:**
|
| 265 |
+
- Test with multiple users
|
| 266 |
+
- Monitor database usage
|
| 267 |
+
- Check performance metrics
|
| 268 |
+
|
| 269 |
+
## Questions?
|
| 270 |
+
|
| 271 |
+
Refer to:
|
| 272 |
+
- [RAILWAY-DEPLOY.md](RAILWAY-DEPLOY.md) - Deployment help
|
| 273 |
+
- [PHONE-TESTING.md](PHONE-TESTING.md) - Mobile testing help
|
| 274 |
+
- [SETUP-GUIDE.md](SETUP-GUIDE.md) - Configuration help
|
add-firewall-rule.ps1
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Run this script as Administrator to add firewall rule
|
| 2 |
+
# Right-click PowerShell -> Run as Administrator, then run this script
|
| 3 |
+
|
| 4 |
+
Write-Host "Adding Windows Firewall rule for Chat App (port 3001)..." -ForegroundColor Yellow
|
| 5 |
+
|
| 6 |
+
try {
|
| 7 |
+
# Remove old rule if exists
|
| 8 |
+
Remove-NetFirewallRule -DisplayName "Chat App HTTPS" -ErrorAction SilentlyContinue
|
| 9 |
+
|
| 10 |
+
# Add new rule
|
| 11 |
+
New-NetFirewallRule `
|
| 12 |
+
-DisplayName "Chat App HTTPS" `
|
| 13 |
+
-Direction Inbound `
|
| 14 |
+
-LocalPort 3001 `
|
| 15 |
+
-Protocol TCP `
|
| 16 |
+
-Action Allow `
|
| 17 |
+
-Profile Any `
|
| 18 |
+
-Enabled True
|
| 19 |
+
|
| 20 |
+
Write-Host "✅ Firewall rule added successfully!" -ForegroundColor Green
|
| 21 |
+
Write-Host ""
|
| 22 |
+
Write-Host "You can now access the app from mobile devices on your network:" -ForegroundColor Cyan
|
| 23 |
+
Write-Host " https://192.168.56.1:3001" -ForegroundColor White
|
| 24 |
+
} catch {
|
| 25 |
+
Write-Host "❌ Error: $($_.Exception.Message)" -ForegroundColor Red
|
| 26 |
+
Write-Host ""
|
| 27 |
+
Write-Host "Please make sure you're running PowerShell as Administrator!" -ForegroundColor Yellow
|
| 28 |
+
}
|
client.js
ADDED
|
@@ -0,0 +1,688 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// ==================== GLOBAL STATE ====================
|
| 2 |
+
let socket;
|
| 3 |
+
let currentUser = null;
|
| 4 |
+
let currentToken = null;
|
| 5 |
+
let isRegistering = false;
|
| 6 |
+
let currentChatFriendId = null;
|
| 7 |
+
let currentChatFriendName = null;
|
| 8 |
+
|
| 9 |
+
const API_BASE = '/api';
|
| 10 |
+
|
| 11 |
+
// ==================== AUTH FUNCTIONS ====================
|
| 12 |
+
|
| 13 |
+
function toggleAuthMode() {
|
| 14 |
+
isRegistering = !isRegistering;
|
| 15 |
+
const usernameFields = document.getElementById('registerFields');
|
| 16 |
+
const authTitle = document.getElementById('authTitle');
|
| 17 |
+
const authButton = document.getElementById('authButton');
|
| 18 |
+
const authToggle = document.querySelector('.auth-toggle span');
|
| 19 |
+
|
| 20 |
+
if (isRegistering) {
|
| 21 |
+
usernameFields.style.display = 'block';
|
| 22 |
+
authTitle.textContent = 'Register';
|
| 23 |
+
authButton.textContent = 'Create Account';
|
| 24 |
+
authToggle.innerHTML = 'Already have an account? <button type="button">Login</button>';
|
| 25 |
+
} else {
|
| 26 |
+
usernameFields.style.display = 'none';
|
| 27 |
+
authTitle.textContent = 'Login';
|
| 28 |
+
authButton.textContent = 'Login';
|
| 29 |
+
authToggle.innerHTML = `Don't have an account? <button type="button">Register</button>`;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
document.querySelector('.auth-toggle button').onclick = toggleAuthMode;
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
async function handleAuth(event) {
|
| 36 |
+
event.preventDefault();
|
| 37 |
+
const email = document.getElementById('email').value.trim();
|
| 38 |
+
const password = document.getElementById('password').value.trim();
|
| 39 |
+
const username = document.getElementById('username').value.trim();
|
| 40 |
+
|
| 41 |
+
if (!email || !password) {
|
| 42 |
+
alert('Please fill in all fields');
|
| 43 |
+
return;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
try {
|
| 47 |
+
let response;
|
| 48 |
+
if (isRegistering) {
|
| 49 |
+
if (!username) {
|
| 50 |
+
alert('Username is required');
|
| 51 |
+
return;
|
| 52 |
+
}
|
| 53 |
+
response = await fetch(`${API_BASE}/register`, {
|
| 54 |
+
method: 'POST',
|
| 55 |
+
headers: { 'Content-Type': 'application/json' },
|
| 56 |
+
body: JSON.stringify({ username, email, password })
|
| 57 |
+
});
|
| 58 |
+
} else {
|
| 59 |
+
response = await fetch(`${API_BASE}/login`, {
|
| 60 |
+
method: 'POST',
|
| 61 |
+
headers: { 'Content-Type': 'application/json' },
|
| 62 |
+
body: JSON.stringify({ email, password })
|
| 63 |
+
});
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
const data = await response.json();
|
| 67 |
+
if (!response.ok) {
|
| 68 |
+
alert(data.error || 'Authentication failed');
|
| 69 |
+
return;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
currentToken = data.token;
|
| 73 |
+
currentUser = data.user;
|
| 74 |
+
localStorage.setItem('token', currentToken);
|
| 75 |
+
localStorage.setItem('user', JSON.stringify(currentUser));
|
| 76 |
+
|
| 77 |
+
showMainApp();
|
| 78 |
+
connectSocket();
|
| 79 |
+
} catch (error) {
|
| 80 |
+
console.error(error);
|
| 81 |
+
alert('Error: ' + error.message);
|
| 82 |
+
}
|
| 83 |
+
}
|
| 84 |
+
|
| 85 |
+
function logout() {
|
| 86 |
+
localStorage.removeItem('token');
|
| 87 |
+
localStorage.removeItem('user');
|
| 88 |
+
currentUser = null;
|
| 89 |
+
currentToken = null;
|
| 90 |
+
if (socket) socket.disconnect();
|
| 91 |
+
location.reload();
|
| 92 |
+
}
|
| 93 |
+
|
| 94 |
+
// ==================== SOCKET.IO CONNECTION ====================
|
| 95 |
+
|
| 96 |
+
function connectSocket() {
|
| 97 |
+
socket = io();
|
| 98 |
+
|
| 99 |
+
socket.on('connect', () => {
|
| 100 |
+
console.log('Connected to server');
|
| 101 |
+
socket.emit('join', { token: currentToken });
|
| 102 |
+
});
|
| 103 |
+
|
| 104 |
+
socket.on('users update', (users) => {
|
| 105 |
+
updateMembersList(users);
|
| 106 |
+
});
|
| 107 |
+
|
| 108 |
+
socket.on('dm message', (data) => {
|
| 109 |
+
addMessageToChat(data);
|
| 110 |
+
});
|
| 111 |
+
|
| 112 |
+
socket.on('dm user typing', (data) => {
|
| 113 |
+
// Display typing indicator for DM
|
| 114 |
+
showTypingIndicator(data.username);
|
| 115 |
+
});
|
| 116 |
+
|
| 117 |
+
socket.on('dm user stop typing', (data) => {
|
| 118 |
+
// Hide typing indicator for DM
|
| 119 |
+
hideTypingIndicator(data.username);
|
| 120 |
+
});
|
| 121 |
+
|
| 122 |
+
socket.on('error', (msg) => {
|
| 123 |
+
console.error('Socket error:', msg);
|
| 124 |
+
});
|
| 125 |
+
}
|
| 126 |
+
|
| 127 |
+
function showTypingIndicator(username) {
|
| 128 |
+
const typingDiv = document.getElementById('typingIndicator');
|
| 129 |
+
if (typingDiv) {
|
| 130 |
+
typingDiv.textContent = `${username} is typing...`;
|
| 131 |
+
typingDiv.style.display = 'block';
|
| 132 |
+
}
|
| 133 |
+
}
|
| 134 |
+
|
| 135 |
+
function hideTypingIndicator() {
|
| 136 |
+
const typingDiv = document.getElementById('typingIndicator');
|
| 137 |
+
if (typingDiv) {
|
| 138 |
+
typingDiv.style.display = 'none';
|
| 139 |
+
}
|
| 140 |
+
}
|
| 141 |
+
|
| 142 |
+
// ==================== UI FUNCTIONS ====================
|
| 143 |
+
|
| 144 |
+
function showMainApp() {
|
| 145 |
+
document.getElementById('authContainer').style.display = 'none';
|
| 146 |
+
document.getElementById('mainApp').classList.remove('hidden');
|
| 147 |
+
loadUserProfile();
|
| 148 |
+
loadShopItems();
|
| 149 |
+
}
|
| 150 |
+
|
| 151 |
+
function showSection(section) {
|
| 152 |
+
if (section === 'chat') {
|
| 153 |
+
document.querySelector('.chat-area').style.display = 'flex';
|
| 154 |
+
document.getElementById('friendsModal').classList.add('hidden');
|
| 155 |
+
document.getElementById('shopModal').classList.add('hidden');
|
| 156 |
+
loadFriendsForDM();
|
| 157 |
+
} else if (section === 'friends') {
|
| 158 |
+
document.querySelector('.chat-area').style.display = 'none';
|
| 159 |
+
loadFriends();
|
| 160 |
+
document.getElementById('friendsModal').classList.remove('hidden');
|
| 161 |
+
} else if (section === 'shop') {
|
| 162 |
+
document.querySelector('.chat-area').style.display = 'none';
|
| 163 |
+
loadShopItems();
|
| 164 |
+
document.getElementById('shopModal').classList.remove('hidden');
|
| 165 |
+
}
|
| 166 |
+
}
|
| 167 |
+
|
| 168 |
+
function openDM(friendId, friendName) {
|
| 169 |
+
currentChatFriendId = friendId;
|
| 170 |
+
currentChatFriendName = friendName;
|
| 171 |
+
|
| 172 |
+
// Update UI
|
| 173 |
+
document.getElementById('chatTitle').textContent = `💬 ${friendName}`;
|
| 174 |
+
document.getElementById('messages-container').innerHTML = '';
|
| 175 |
+
|
| 176 |
+
// Load previous messages
|
| 177 |
+
loadDMMessages(friendId);
|
| 178 |
+
|
| 179 |
+
// Join DM room
|
| 180 |
+
if (socket && socket.connected) {
|
| 181 |
+
socket.emit('join dm', friendId);
|
| 182 |
+
}
|
| 183 |
+
|
| 184 |
+
showSection('chat');
|
| 185 |
+
}
|
| 186 |
+
|
| 187 |
+
async function loadDMMessages(friendId) {
|
| 188 |
+
try {
|
| 189 |
+
const response = await fetch(`${API_BASE}/dms/${friendId}`, {
|
| 190 |
+
headers: { 'Authorization': `Bearer ${currentToken}` }
|
| 191 |
+
});
|
| 192 |
+
const messages = await response.json();
|
| 193 |
+
|
| 194 |
+
// Clear and load messages
|
| 195 |
+
document.getElementById('messages-container').innerHTML = '';
|
| 196 |
+
messages.forEach(msg => {
|
| 197 |
+
addMessageToChat({
|
| 198 |
+
from: msg.from,
|
| 199 |
+
fromUsername: msg.fromUsername,
|
| 200 |
+
fromAvatar: msg.senderAvatar || msg.fromUsername.charAt(0).toUpperCase(),
|
| 201 |
+
content: msg.content,
|
| 202 |
+
mediaType: msg.mediaType,
|
| 203 |
+
mediaUrl: msg.mediaUrl,
|
| 204 |
+
timestamp: msg.timestamp
|
| 205 |
+
});
|
| 206 |
+
});
|
| 207 |
+
} catch (error) {
|
| 208 |
+
console.error('Failed to load DM messages:', error);
|
| 209 |
+
}
|
| 210 |
+
}
|
| 211 |
+
|
| 212 |
+
function toggleChannelSidebar() {
|
| 213 |
+
document.getElementById('channelSidebar').classList.toggle('show');
|
| 214 |
+
}
|
| 215 |
+
|
| 216 |
+
function openProfile() {
|
| 217 |
+
document.getElementById('profilePanel').classList.add('show');
|
| 218 |
+
loadUserProfile();
|
| 219 |
+
}
|
| 220 |
+
|
| 221 |
+
function closeProfile() {
|
| 222 |
+
document.getElementById('profilePanel').classList.remove('show');
|
| 223 |
+
}
|
| 224 |
+
|
| 225 |
+
function switchProfileTab(tab) {
|
| 226 |
+
document.querySelectorAll('.tab-btn').forEach(el => el.classList.remove('active'));
|
| 227 |
+
document.querySelectorAll('.tab-content').forEach(el => el.classList.remove('active'));
|
| 228 |
+
|
| 229 |
+
event.target.classList.add('active');
|
| 230 |
+
document.getElementById(tab + 'Tab').classList.add('active');
|
| 231 |
+
|
| 232 |
+
if (tab === 'inventory') {
|
| 233 |
+
loadInventory();
|
| 234 |
+
}
|
| 235 |
+
}
|
| 236 |
+
|
| 237 |
+
function closeFriendsModal() {
|
| 238 |
+
document.getElementById('friendsModal').classList.add('hidden');
|
| 239 |
+
showSection('chat');
|
| 240 |
+
}
|
| 241 |
+
|
| 242 |
+
function closeShopModal() {
|
| 243 |
+
document.getElementById('shopModal').classList.add('hidden');
|
| 244 |
+
showSection('chat');
|
| 245 |
+
}
|
| 246 |
+
|
| 247 |
+
// ==================== PROFILE FUNCTIONS ====================
|
| 248 |
+
|
| 249 |
+
async function loadUserProfile() {
|
| 250 |
+
try {
|
| 251 |
+
const response = await fetch(`${API_BASE}/profile/${currentUser.id}`, {
|
| 252 |
+
headers: { 'Authorization': `Bearer ${currentToken}` }
|
| 253 |
+
});
|
| 254 |
+
const user = await response.json();
|
| 255 |
+
|
| 256 |
+
document.getElementById('profileAvatar').textContent = user.username.charAt(0).toUpperCase();
|
| 257 |
+
document.getElementById('profileName').textContent = user.username;
|
| 258 |
+
document.getElementById('profileBio').textContent = user.bio || 'No bio yet';
|
| 259 |
+
document.getElementById('editUsername').value = user.username;
|
| 260 |
+
document.getElementById('editBio').value = user.bio;
|
| 261 |
+
document.getElementById('coinsDisplay').textContent = `💰 Coins: ${user.coins}`;
|
| 262 |
+
|
| 263 |
+
currentUser = user;
|
| 264 |
+
} catch (error) {
|
| 265 |
+
console.error('Failed to load profile:', error);
|
| 266 |
+
}
|
| 267 |
+
}
|
| 268 |
+
|
| 269 |
+
async function saveProfile() {
|
| 270 |
+
try {
|
| 271 |
+
const username = document.getElementById('editUsername').value;
|
| 272 |
+
const bio = document.getElementById('editBio').value;
|
| 273 |
+
|
| 274 |
+
const response = await fetch(`${API_BASE}/profile`, {
|
| 275 |
+
method: 'PUT',
|
| 276 |
+
headers: {
|
| 277 |
+
'Content-Type': 'application/json',
|
| 278 |
+
'Authorization': `Bearer ${currentToken}`
|
| 279 |
+
},
|
| 280 |
+
body: JSON.stringify({ username, bio, avatar: currentUser.avatar || '' })
|
| 281 |
+
});
|
| 282 |
+
|
| 283 |
+
const data = await response.json();
|
| 284 |
+
if (response.ok) {
|
| 285 |
+
alert('Profile updated successfully!');
|
| 286 |
+
loadUserProfile();
|
| 287 |
+
} else {
|
| 288 |
+
alert(data.error);
|
| 289 |
+
}
|
| 290 |
+
} catch (error) {
|
| 291 |
+
console.error(error);
|
| 292 |
+
alert('Error saving profile');
|
| 293 |
+
}
|
| 294 |
+
}
|
| 295 |
+
|
| 296 |
+
// ==================== MESSAGING FUNCTIONS ====================
|
| 297 |
+
|
| 298 |
+
function handleMessageKeypress(event) {
|
| 299 |
+
if (event.key === 'Enter') {
|
| 300 |
+
sendMessage();
|
| 301 |
+
}
|
| 302 |
+
}
|
| 303 |
+
|
| 304 |
+
async function sendMessage() {
|
| 305 |
+
const input = document.getElementById('messageInput');
|
| 306 |
+
const content = input.value.trim();
|
| 307 |
+
|
| 308 |
+
if (!content || !currentChatFriendId) {
|
| 309 |
+
alert('Please select a friend to chat with');
|
| 310 |
+
return;
|
| 311 |
+
}
|
| 312 |
+
|
| 313 |
+
try {
|
| 314 |
+
socket.emit('send dm', {
|
| 315 |
+
toUserId: currentChatFriendId,
|
| 316 |
+
content: content,
|
| 317 |
+
mediaType: 'text'
|
| 318 |
+
});
|
| 319 |
+
input.value = '';
|
| 320 |
+
hideTypingIndicator();
|
| 321 |
+
} catch (error) {
|
| 322 |
+
console.error(error);
|
| 323 |
+
}
|
| 324 |
+
}
|
| 325 |
+
|
| 326 |
+
function addMessageToChat(data) {
|
| 327 |
+
const container = document.getElementById('messages-container');
|
| 328 |
+
const messageDiv = document.createElement('div');
|
| 329 |
+
messageDiv.className = 'message';
|
| 330 |
+
|
| 331 |
+
const avatar = document.createElement('div');
|
| 332 |
+
avatar.className = 'message-avatar';
|
| 333 |
+
avatar.textContent = (data.fromUsername || data.sender || 'U').charAt(0).toUpperCase();
|
| 334 |
+
|
| 335 |
+
const content = document.createElement('div');
|
| 336 |
+
content.className = 'message-content';
|
| 337 |
+
|
| 338 |
+
const header = document.createElement('div');
|
| 339 |
+
header.className = 'message-header';
|
| 340 |
+
|
| 341 |
+
const username = document.createElement('span');
|
| 342 |
+
username.className = 'message-username';
|
| 343 |
+
username.textContent = data.fromUsername || data.sender;
|
| 344 |
+
|
| 345 |
+
const time = document.createElement('span');
|
| 346 |
+
time.className = 'message-time';
|
| 347 |
+
time.textContent = new Date(data.timestamp).toLocaleTimeString();
|
| 348 |
+
|
| 349 |
+
header.appendChild(username);
|
| 350 |
+
header.appendChild(time);
|
| 351 |
+
|
| 352 |
+
const text = document.createElement('div');
|
| 353 |
+
text.className = 'message-text';
|
| 354 |
+
text.textContent = data.content;
|
| 355 |
+
|
| 356 |
+
content.appendChild(header);
|
| 357 |
+
content.appendChild(text);
|
| 358 |
+
|
| 359 |
+
if (data.mediaType !== 'text' && data.mediaUrl) {
|
| 360 |
+
const media = document.createElement('div');
|
| 361 |
+
media.className = 'message-media';
|
| 362 |
+
|
| 363 |
+
if (data.mediaType === 'image') {
|
| 364 |
+
const img = document.createElement('img');
|
| 365 |
+
img.src = data.mediaUrl;
|
| 366 |
+
media.appendChild(img);
|
| 367 |
+
} else if (data.mediaType === 'video') {
|
| 368 |
+
const video = document.createElement('video');
|
| 369 |
+
video.src = data.mediaUrl;
|
| 370 |
+
video.controls = true;
|
| 371 |
+
media.appendChild(video);
|
| 372 |
+
}
|
| 373 |
+
content.appendChild(media);
|
| 374 |
+
}
|
| 375 |
+
|
| 376 |
+
messageDiv.appendChild(avatar);
|
| 377 |
+
messageDiv.appendChild(content);
|
| 378 |
+
container.appendChild(messageDiv);
|
| 379 |
+
|
| 380 |
+
// Scroll to the latest message smoothly
|
| 381 |
+
setTimeout(() => {
|
| 382 |
+
messageDiv.scrollIntoView({ behavior: 'smooth', block: 'end' });
|
| 383 |
+
}, 10);
|
| 384 |
+
}
|
| 385 |
+
|
| 386 |
+
function updateMembersList(users) {
|
| 387 |
+
const membersList = document.getElementById('membersList');
|
| 388 |
+
membersList.innerHTML = '';
|
| 389 |
+
|
| 390 |
+
users.forEach(user => {
|
| 391 |
+
const item = document.createElement('div');
|
| 392 |
+
item.className = 'member-item';
|
| 393 |
+
|
| 394 |
+
const status = document.createElement('div');
|
| 395 |
+
status.className = 'status-indicator';
|
| 396 |
+
|
| 397 |
+
const name = document.createElement('span');
|
| 398 |
+
name.textContent = user.username;
|
| 399 |
+
|
| 400 |
+
item.appendChild(status);
|
| 401 |
+
item.appendChild(name);
|
| 402 |
+
membersList.appendChild(item);
|
| 403 |
+
});
|
| 404 |
+
}
|
| 405 |
+
|
| 406 |
+
// ==================== FILE UPLOAD ====================
|
| 407 |
+
|
| 408 |
+
async function handleFileUpload(event) {
|
| 409 |
+
const file = event.target.files[0];
|
| 410 |
+
if (!file || !currentChatFriendId) {
|
| 411 |
+
alert('Please select a friend to chat with');
|
| 412 |
+
return;
|
| 413 |
+
}
|
| 414 |
+
|
| 415 |
+
const reader = new FileReader();
|
| 416 |
+
reader.onload = (e) => {
|
| 417 |
+
const data = e.target.result;
|
| 418 |
+
const mediaType = file.type.startsWith('image') ? 'image' : 'video';
|
| 419 |
+
|
| 420 |
+
socket.emit('send dm', {
|
| 421 |
+
toUserId: currentChatFriendId,
|
| 422 |
+
content: file.name,
|
| 423 |
+
mediaType: mediaType,
|
| 424 |
+
mediaUrl: data
|
| 425 |
+
});
|
| 426 |
+
};
|
| 427 |
+
reader.readAsDataURL(file);
|
| 428 |
+
|
| 429 |
+
// Reset the input
|
| 430 |
+
event.target.value = '';
|
| 431 |
+
}
|
| 432 |
+
|
| 433 |
+
async function uploadProfileImage(event) {
|
| 434 |
+
const file = event.target.files[0];
|
| 435 |
+
if (!file) return;
|
| 436 |
+
|
| 437 |
+
const reader = new FileReader();
|
| 438 |
+
reader.onload = async (e) => {
|
| 439 |
+
const avatar = e.target.result;
|
| 440 |
+
try {
|
| 441 |
+
const response = await fetch(`${API_BASE}/profile/upload`, {
|
| 442 |
+
method: 'POST',
|
| 443 |
+
headers: {
|
| 444 |
+
'Content-Type': 'application/json',
|
| 445 |
+
'Authorization': `Bearer ${currentToken}`
|
| 446 |
+
},
|
| 447 |
+
body: JSON.stringify({ avatar })
|
| 448 |
+
});
|
| 449 |
+
|
| 450 |
+
const data = await response.json();
|
| 451 |
+
if (response.ok) {
|
| 452 |
+
currentUser.avatar = data.avatar;
|
| 453 |
+
loadUserProfile();
|
| 454 |
+
alert('Profile image updated!');
|
| 455 |
+
} else {
|
| 456 |
+
alert(data.error);
|
| 457 |
+
}
|
| 458 |
+
} catch (error) {
|
| 459 |
+
console.error(error);
|
| 460 |
+
alert('Error uploading profile image');
|
| 461 |
+
}
|
| 462 |
+
};
|
| 463 |
+
reader.readAsDataURL(file);
|
| 464 |
+
|
| 465 |
+
// Reset the input
|
| 466 |
+
event.target.value = '';
|
| 467 |
+
}
|
| 468 |
+
|
| 469 |
+
// ==================== FRIENDS FUNCTIONS ====================
|
| 470 |
+
|
| 471 |
+
async function loadFriendsForDM() {
|
| 472 |
+
try {
|
| 473 |
+
const response = await fetch(`${API_BASE}/friends`, {
|
| 474 |
+
headers: { 'Authorization': `Bearer ${currentToken}` }
|
| 475 |
+
});
|
| 476 |
+
const friends = await response.json();
|
| 477 |
+
|
| 478 |
+
const channelsList = document.getElementById('channelsList');
|
| 479 |
+
channelsList.innerHTML = '<div style="padding: 10px; color: var(--text-secondary); font-size: 12px; font-weight: bold;">DIRECT MESSAGES</div>';
|
| 480 |
+
|
| 481 |
+
if (friends.length === 0) {
|
| 482 |
+
channelsList.innerHTML += '<div style="padding: 10px; color: var(--text-secondary); font-size: 12px;">No friends yet</div>';
|
| 483 |
+
} else {
|
| 484 |
+
friends.forEach(friend => {
|
| 485 |
+
const item = document.createElement('div');
|
| 486 |
+
item.className = 'channel-item';
|
| 487 |
+
item.dataset.friendId = friend._id;
|
| 488 |
+
|
| 489 |
+
const status = friend.status === 'online' ? '🟢' : '⚫';
|
| 490 |
+
item.textContent = `${status} ${friend.username}`;
|
| 491 |
+
|
| 492 |
+
item.style.cursor = 'pointer';
|
| 493 |
+
item.onclick = () => openDM(friend._id, friend.username);
|
| 494 |
+
|
| 495 |
+
channelsList.appendChild(item);
|
| 496 |
+
});
|
| 497 |
+
}
|
| 498 |
+
} catch (error) {
|
| 499 |
+
console.error('Failed to load friends for DM:', error);
|
| 500 |
+
}
|
| 501 |
+
}
|
| 502 |
+
|
| 503 |
+
async function loadFriends() {
|
| 504 |
+
try {
|
| 505 |
+
const [requests, friends] = await Promise.all([
|
| 506 |
+
fetch(`${API_BASE}/friends/requests`, {
|
| 507 |
+
headers: { 'Authorization': `Bearer ${currentToken}` }
|
| 508 |
+
}).then(r => r.json()),
|
| 509 |
+
fetch(`${API_BASE}/friends`, {
|
| 510 |
+
headers: { 'Authorization': `Bearer ${currentToken}` }
|
| 511 |
+
}).then(r => r.json())
|
| 512 |
+
]);
|
| 513 |
+
|
| 514 |
+
const requestsDiv = document.getElementById('friendRequests');
|
| 515 |
+
requestsDiv.innerHTML = '';
|
| 516 |
+
if (requests.length === 0) {
|
| 517 |
+
requestsDiv.innerHTML = '<p style="color: var(--text-secondary);">No pending requests</p>';
|
| 518 |
+
}
|
| 519 |
+
requests.forEach(req => {
|
| 520 |
+
const item = document.createElement('div');
|
| 521 |
+
item.className = 'friend-item';
|
| 522 |
+
item.innerHTML = `
|
| 523 |
+
<div>
|
| 524 |
+
<div class="friend-name">${req.from.username}</div>
|
| 525 |
+
<div class="friend-status">pending</div>
|
| 526 |
+
</div>
|
| 527 |
+
<div>
|
| 528 |
+
<button onclick="acceptFriendRequest('${req._id}')" class="buy-btn">Accept</button>
|
| 529 |
+
</div>
|
| 530 |
+
`;
|
| 531 |
+
requestsDiv.appendChild(item);
|
| 532 |
+
});
|
| 533 |
+
|
| 534 |
+
const friendsList = document.getElementById('friendsList');
|
| 535 |
+
friendsList.innerHTML = '';
|
| 536 |
+
if (friends.length === 0) {
|
| 537 |
+
friendsList.innerHTML = '<p style="color: var(--text-secondary);">No friends yet</p>';
|
| 538 |
+
}
|
| 539 |
+
friends.forEach(friend => {
|
| 540 |
+
const item = document.createElement('div');
|
| 541 |
+
item.className = 'friend-item';
|
| 542 |
+
item.style.cursor = 'pointer';
|
| 543 |
+
const status = friend.status === 'online' ? '🟢 Online' : '⚫ Offline';
|
| 544 |
+
item.innerHTML = `
|
| 545 |
+
<div onclick="openDM('${friend._id}', '${friend.username}')">
|
| 546 |
+
<div class="friend-name">${friend.username}</div>
|
| 547 |
+
<div class="friend-status">${status}</div>
|
| 548 |
+
</div>
|
| 549 |
+
`;
|
| 550 |
+
friendsList.appendChild(item);
|
| 551 |
+
});
|
| 552 |
+
} catch (error) {
|
| 553 |
+
console.error('Failed to load friends:', error);
|
| 554 |
+
}
|
| 555 |
+
}
|
| 556 |
+
|
| 557 |
+
async function acceptFriendRequest(requestId) {
|
| 558 |
+
try {
|
| 559 |
+
const response = await fetch(`${API_BASE}/friends/accept`, {
|
| 560 |
+
method: 'POST',
|
| 561 |
+
headers: {
|
| 562 |
+
'Content-Type': 'application/json',
|
| 563 |
+
'Authorization': `Bearer ${currentToken}`
|
| 564 |
+
},
|
| 565 |
+
body: JSON.stringify({ requestId })
|
| 566 |
+
});
|
| 567 |
+
|
| 568 |
+
if (response.ok) {
|
| 569 |
+
alert('Friend request accepted!');
|
| 570 |
+
loadFriends();
|
| 571 |
+
}
|
| 572 |
+
} catch (error) {
|
| 573 |
+
console.error(error);
|
| 574 |
+
}
|
| 575 |
+
}
|
| 576 |
+
|
| 577 |
+
// ==================== SHOP FUNCTIONS ====================
|
| 578 |
+
|
| 579 |
+
async function loadShopItems() {
|
| 580 |
+
try {
|
| 581 |
+
const response = await fetch(`${API_BASE}/shop`, {
|
| 582 |
+
headers: { 'Authorization': `Bearer ${currentToken}` }
|
| 583 |
+
});
|
| 584 |
+
const items = await response.json();
|
| 585 |
+
|
| 586 |
+
const shopList = document.getElementById('shopList');
|
| 587 |
+
shopList.innerHTML = '';
|
| 588 |
+
|
| 589 |
+
if (items.length === 0) {
|
| 590 |
+
shopList.innerHTML = '<p style="color: var(--text-secondary);">No shop items available</p>';
|
| 591 |
+
} else {
|
| 592 |
+
items.forEach(item => {
|
| 593 |
+
const itemDiv = document.createElement('div');
|
| 594 |
+
itemDiv.className = 'shop-item';
|
| 595 |
+
itemDiv.innerHTML = `
|
| 596 |
+
<div>
|
| 597 |
+
<div class="shop-item-name">${item.name}</div>
|
| 598 |
+
<div style="font-size: 12px; color: var(--text-secondary);">${item.description}</div>
|
| 599 |
+
</div>
|
| 600 |
+
<div style="display: flex; align-items: center; gap: 10px;">
|
| 601 |
+
<span class="shop-item-price">${item.price} 💰</span>
|
| 602 |
+
<button onclick="buyItem('${item._id}')" class="buy-btn">Buy</button>
|
| 603 |
+
</div>
|
| 604 |
+
`;
|
| 605 |
+
shopList.appendChild(itemDiv);
|
| 606 |
+
});
|
| 607 |
+
}
|
| 608 |
+
|
| 609 |
+
loadUserProfile();
|
| 610 |
+
} catch (error) {
|
| 611 |
+
console.error('Failed to load shop:', error);
|
| 612 |
+
}
|
| 613 |
+
}
|
| 614 |
+
|
| 615 |
+
async function buyItem(itemId) {
|
| 616 |
+
try {
|
| 617 |
+
const response = await fetch(`${API_BASE}/shop/buy`, {
|
| 618 |
+
method: 'POST',
|
| 619 |
+
headers: {
|
| 620 |
+
'Content-Type': 'application/json',
|
| 621 |
+
'Authorization': `Bearer ${currentToken}`
|
| 622 |
+
},
|
| 623 |
+
body: JSON.stringify({ itemId })
|
| 624 |
+
});
|
| 625 |
+
|
| 626 |
+
const data = await response.json();
|
| 627 |
+
if (response.ok) {
|
| 628 |
+
alert('Item purchased!');
|
| 629 |
+
loadShopItems();
|
| 630 |
+
} else {
|
| 631 |
+
alert(data.error);
|
| 632 |
+
}
|
| 633 |
+
} catch (error) {
|
| 634 |
+
console.error(error);
|
| 635 |
+
alert('Error purchasing item');
|
| 636 |
+
}
|
| 637 |
+
}
|
| 638 |
+
|
| 639 |
+
// ==================== INVENTORY FUNCTIONS ====================
|
| 640 |
+
|
| 641 |
+
async function loadInventory() {
|
| 642 |
+
try {
|
| 643 |
+
const response = await fetch(`${API_BASE}/inventory`, {
|
| 644 |
+
headers: { 'Authorization': `Bearer ${currentToken}` }
|
| 645 |
+
});
|
| 646 |
+
const inventory = await response.json();
|
| 647 |
+
|
| 648 |
+
const inventoryList = document.getElementById('inventoryList');
|
| 649 |
+
inventoryList.innerHTML = '';
|
| 650 |
+
|
| 651 |
+
if (inventory.length === 0) {
|
| 652 |
+
inventoryList.innerHTML = '<p style="text-align: center; color: var(--text-secondary);">No items yet</p>';
|
| 653 |
+
return;
|
| 654 |
+
}
|
| 655 |
+
|
| 656 |
+
inventory.forEach(item => {
|
| 657 |
+
const itemDiv = document.createElement('div');
|
| 658 |
+
itemDiv.className = 'shop-item';
|
| 659 |
+
itemDiv.innerHTML = `
|
| 660 |
+
<div>
|
| 661 |
+
<div class="shop-item-name">${item.itemId.name}</div>
|
| 662 |
+
<div style="font-size: 12px; color: var(--text-secondary);">Qty: ${item.quantity}</div>
|
| 663 |
+
</div>
|
| 664 |
+
`;
|
| 665 |
+
inventoryList.appendChild(itemDiv);
|
| 666 |
+
});
|
| 667 |
+
} catch (error) {
|
| 668 |
+
console.error('Failed to load inventory:', error);
|
| 669 |
+
}
|
| 670 |
+
}
|
| 671 |
+
|
| 672 |
+
// ==================== INITIALIZATION ====================
|
| 673 |
+
|
| 674 |
+
window.addEventListener('DOMContentLoaded', () => {
|
| 675 |
+
// Check for existing token
|
| 676 |
+
const token = localStorage.getItem('token');
|
| 677 |
+
const user = localStorage.getItem('user');
|
| 678 |
+
|
| 679 |
+
if (token && user) {
|
| 680 |
+
currentToken = token;
|
| 681 |
+
currentUser = JSON.parse(user);
|
| 682 |
+
showMainApp();
|
| 683 |
+
connectSocket();
|
| 684 |
+
} else {
|
| 685 |
+
document.getElementById('authContainer').style.display = 'flex';
|
| 686 |
+
document.getElementById('mainApp').classList.add('hidden');
|
| 687 |
+
}
|
| 688 |
+
});
|
index.html
ADDED
|
@@ -0,0 +1,928 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Discord-Like Chat App</title>
|
| 7 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 8 |
+
<style>
|
| 9 |
+
* {
|
| 10 |
+
margin: 0;
|
| 11 |
+
padding: 0;
|
| 12 |
+
box-sizing: border-box;
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
:root {
|
| 16 |
+
--primary-color: #5865f2;
|
| 17 |
+
--secondary-color: #404249;
|
| 18 |
+
--bg-color: #36393f;
|
| 19 |
+
--chat-bg: #2c2f33;
|
| 20 |
+
--sidebar-bg: #2f3136;
|
| 21 |
+
--text-primary: #ffffff;
|
| 22 |
+
--text-secondary: #b9bbbe;
|
| 23 |
+
--border-color: #202225;
|
| 24 |
+
--shadow: 0 2px 10px rgba(0,0,0,0.3);
|
| 25 |
+
--success: #43b581;
|
| 26 |
+
--danger: #f04747;
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
body {
|
| 30 |
+
font-family: 'Whitney', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
| 31 |
+
background: var(--bg-color);
|
| 32 |
+
color: var(--text-primary);
|
| 33 |
+
overflow: hidden;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
/* ==================== LOGIN PAGE ==================== */
|
| 37 |
+
.auth-container {
|
| 38 |
+
position: fixed;
|
| 39 |
+
top: 0;
|
| 40 |
+
left: 0;
|
| 41 |
+
width: 100%;
|
| 42 |
+
height: 100%;
|
| 43 |
+
background: linear-gradient(135deg, var(--primary-color), #1a1a2e);
|
| 44 |
+
display: flex;
|
| 45 |
+
align-items: center;
|
| 46 |
+
justify-content: center;
|
| 47 |
+
z-index: 2000;
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
.auth-box {
|
| 51 |
+
background: var(--bg-color);
|
| 52 |
+
padding: 40px;
|
| 53 |
+
border-radius: 10px;
|
| 54 |
+
box-shadow: var(--shadow);
|
| 55 |
+
width: 100%;
|
| 56 |
+
max-width: 400px;
|
| 57 |
+
animation: slideUp 0.3s ease;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
@keyframes slideUp {
|
| 61 |
+
from { transform: translateY(30px); opacity: 0; }
|
| 62 |
+
to { transform: translateY(0); opacity: 1; }
|
| 63 |
+
}
|
| 64 |
+
|
| 65 |
+
.auth-box h2 {
|
| 66 |
+
margin-bottom: 30px;
|
| 67 |
+
color: var(--primary-color);
|
| 68 |
+
font-size: 28px;
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
.form-group {
|
| 72 |
+
margin-bottom: 20px;
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
+
.form-group label {
|
| 76 |
+
display: block;
|
| 77 |
+
margin-bottom: 8px;
|
| 78 |
+
font-size: 14px;
|
| 79 |
+
font-weight: 500;
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
.form-group input {
|
| 83 |
+
width: 100%;
|
| 84 |
+
padding: 12px;
|
| 85 |
+
background: var(--chat-bg);
|
| 86 |
+
border: 1px solid var(--border-color);
|
| 87 |
+
border-radius: 4px;
|
| 88 |
+
color: var(--text-primary);
|
| 89 |
+
font-size: 14px;
|
| 90 |
+
transition: all 0.2s ease;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
.form-group input:focus {
|
| 94 |
+
outline: none;
|
| 95 |
+
border-color: var(--primary-color);
|
| 96 |
+
box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.1);
|
| 97 |
+
}
|
| 98 |
+
|
| 99 |
+
.auth-button {
|
| 100 |
+
width: 100%;
|
| 101 |
+
padding: 12px;
|
| 102 |
+
background: var(--primary-color);
|
| 103 |
+
color: white;
|
| 104 |
+
border: none;
|
| 105 |
+
border-radius: 4px;
|
| 106 |
+
font-size: 16px;
|
| 107 |
+
font-weight: 600;
|
| 108 |
+
cursor: pointer;
|
| 109 |
+
transition: all 0.2s ease;
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
.auth-button:hover {
|
| 113 |
+
background: #4752c4;
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
.auth-button:active {
|
| 117 |
+
transform: scale(0.98);
|
| 118 |
+
}
|
| 119 |
+
|
| 120 |
+
.auth-toggle {
|
| 121 |
+
text-align: center;
|
| 122 |
+
margin-top: 15px;
|
| 123 |
+
font-size: 14px;
|
| 124 |
+
color: var(--text-secondary);
|
| 125 |
+
}
|
| 126 |
+
|
| 127 |
+
.auth-toggle button {
|
| 128 |
+
background: none;
|
| 129 |
+
border: none;
|
| 130 |
+
color: var(--primary-color);
|
| 131 |
+
cursor: pointer;
|
| 132 |
+
text-decoration: underline;
|
| 133 |
+
}
|
| 134 |
+
|
| 135 |
+
/* ==================== MAIN LAYOUT ==================== */
|
| 136 |
+
.main-container {
|
| 137 |
+
display: grid;
|
| 138 |
+
grid-template-columns: 72px 240px 1fr 240px;
|
| 139 |
+
height: 100vh;
|
| 140 |
+
gap: 0;
|
| 141 |
+
}
|
| 142 |
+
|
| 143 |
+
.main-container.hidden {
|
| 144 |
+
display: none;
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
/* ==================== GUILD SIDEBAR ==================== */
|
| 148 |
+
.guild-sidebar {
|
| 149 |
+
background: var(--sidebar-bg);
|
| 150 |
+
display: flex;
|
| 151 |
+
flex-direction: column;
|
| 152 |
+
align-items: center;
|
| 153 |
+
padding: 8px 0;
|
| 154 |
+
border-right: 1px solid var(--border-color);
|
| 155 |
+
}
|
| 156 |
+
|
| 157 |
+
.guild-item {
|
| 158 |
+
width: 56px;
|
| 159 |
+
height: 56px;
|
| 160 |
+
border-radius: 50%;
|
| 161 |
+
background: linear-gradient(135deg, var(--primary-color), #4752c4);
|
| 162 |
+
display: flex;
|
| 163 |
+
align-items: center;
|
| 164 |
+
justify-content: center;
|
| 165 |
+
color: white;
|
| 166 |
+
cursor: pointer;
|
| 167 |
+
margin-bottom: 8px;
|
| 168 |
+
transition: all 0.2s ease;
|
| 169 |
+
font-size: 24px;
|
| 170 |
+
}
|
| 171 |
+
|
| 172 |
+
.guild-item:hover {
|
| 173 |
+
border-radius: 40%;
|
| 174 |
+
transform: scale(1.1);
|
| 175 |
+
}
|
| 176 |
+
|
| 177 |
+
.guild-item.active {
|
| 178 |
+
border-radius: 40%;
|
| 179 |
+
background: var(--primary-color);
|
| 180 |
+
}
|
| 181 |
+
|
| 182 |
+
/* ==================== CHANNEL SIDEBAR ==================== */
|
| 183 |
+
.channel-sidebar {
|
| 184 |
+
background: var(--sidebar-bg);
|
| 185 |
+
border-right: 1px solid var(--border-color);
|
| 186 |
+
display: flex;
|
| 187 |
+
flex-direction: column;
|
| 188 |
+
}
|
| 189 |
+
|
| 190 |
+
.sidebar-header {
|
| 191 |
+
padding: 16px;
|
| 192 |
+
border-bottom: 1px solid var(--border-color);
|
| 193 |
+
display: flex;
|
| 194 |
+
justify-content: space-between;
|
| 195 |
+
align-items: center;
|
| 196 |
+
}
|
| 197 |
+
|
| 198 |
+
.sidebar-header h3 {
|
| 199 |
+
font-size: 16px;
|
| 200 |
+
font-weight: 600;
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.sidebar-header button {
|
| 204 |
+
background: none;
|
| 205 |
+
border: none;
|
| 206 |
+
color: var(--primary-color);
|
| 207 |
+
cursor: pointer;
|
| 208 |
+
font-size: 20px;
|
| 209 |
+
}
|
| 210 |
+
|
| 211 |
+
.channels-list {
|
| 212 |
+
flex: 1;
|
| 213 |
+
overflow-y: auto;
|
| 214 |
+
padding: 8px 0;
|
| 215 |
+
}
|
| 216 |
+
|
| 217 |
+
.channel-item {
|
| 218 |
+
padding: 8px 16px;
|
| 219 |
+
color: var(--text-secondary);
|
| 220 |
+
cursor: pointer;
|
| 221 |
+
display: flex;
|
| 222 |
+
align-items: center;
|
| 223 |
+
gap: 10px;
|
| 224 |
+
transition: all 0.2s ease;
|
| 225 |
+
}
|
| 226 |
+
|
| 227 |
+
.channel-item:hover {
|
| 228 |
+
background: var(--chat-bg);
|
| 229 |
+
color: var(--text-primary);
|
| 230 |
+
}
|
| 231 |
+
|
| 232 |
+
.channel-item.active {
|
| 233 |
+
background: var(--primary-color);
|
| 234 |
+
color: white;
|
| 235 |
+
}
|
| 236 |
+
|
| 237 |
+
.channel-icon {
|
| 238 |
+
font-size: 16px;
|
| 239 |
+
}
|
| 240 |
+
|
| 241 |
+
/* ==================== MAIN CHAT AREA ==================== */
|
| 242 |
+
.chat-area {
|
| 243 |
+
display: flex;
|
| 244 |
+
flex-direction: column;
|
| 245 |
+
background: var(--chat-bg);
|
| 246 |
+
}
|
| 247 |
+
|
| 248 |
+
.chat-header {
|
| 249 |
+
padding: 16px 24px;
|
| 250 |
+
border-bottom: 1px solid var(--border-color);
|
| 251 |
+
display: flex;
|
| 252 |
+
justify-content: space-between;
|
| 253 |
+
align-items: center;
|
| 254 |
+
}
|
| 255 |
+
|
| 256 |
+
.chat-header-left {
|
| 257 |
+
display: flex;
|
| 258 |
+
align-items: center;
|
| 259 |
+
gap: 12px;
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
.chat-header-title {
|
| 263 |
+
font-size: 18px;
|
| 264 |
+
font-weight: 600;
|
| 265 |
+
}
|
| 266 |
+
|
| 267 |
+
.chat-header-actions {
|
| 268 |
+
display: flex;
|
| 269 |
+
gap: 12px;
|
| 270 |
+
}
|
| 271 |
+
|
| 272 |
+
.header-btn {
|
| 273 |
+
background: none;
|
| 274 |
+
border: none;
|
| 275 |
+
color: var(--text-secondary);
|
| 276 |
+
cursor: pointer;
|
| 277 |
+
font-size: 18px;
|
| 278 |
+
transition: all 0.2s ease;
|
| 279 |
+
}
|
| 280 |
+
|
| 281 |
+
.header-btn:hover {
|
| 282 |
+
color: var(--text-primary);
|
| 283 |
+
}
|
| 284 |
+
|
| 285 |
+
#messages-container {
|
| 286 |
+
flex: 1;
|
| 287 |
+
overflow-y: auto;
|
| 288 |
+
padding: 16px 24px;
|
| 289 |
+
display: flex;
|
| 290 |
+
flex-direction: column;
|
| 291 |
+
gap: 12px;
|
| 292 |
+
scroll-behavior: smooth;
|
| 293 |
+
scroll-snap-type: y proximity;
|
| 294 |
+
-webkit-overflow-scrolling: touch;
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
#messages-container::-webkit-scrollbar {
|
| 298 |
+
width: 8px;
|
| 299 |
+
}
|
| 300 |
+
|
| 301 |
+
#messages-container::-webkit-scrollbar-track {
|
| 302 |
+
background: var(--chat-bg);
|
| 303 |
+
}
|
| 304 |
+
|
| 305 |
+
#messages-container::-webkit-scrollbar-thumb {
|
| 306 |
+
background: var(--secondary-color);
|
| 307 |
+
border-radius: 4px;
|
| 308 |
+
}
|
| 309 |
+
|
| 310 |
+
#messages-container::-webkit-scrollbar-thumb:hover {
|
| 311 |
+
background: #72767d;
|
| 312 |
+
}
|
| 313 |
+
|
| 314 |
+
.message {
|
| 315 |
+
display: flex;
|
| 316 |
+
gap: 12px;
|
| 317 |
+
animation: fadeIn 0.2s ease;
|
| 318 |
+
scroll-snap-align: end;
|
| 319 |
+
scroll-snap-stop: always;
|
| 320 |
+
}
|
| 321 |
+
|
| 322 |
+
@keyframes fadeIn {
|
| 323 |
+
from { opacity: 0; transform: translateY(10px); }
|
| 324 |
+
to { opacity: 1; transform: translateY(0); }
|
| 325 |
+
}
|
| 326 |
+
|
| 327 |
+
.message-avatar {
|
| 328 |
+
width: 40px;
|
| 329 |
+
height: 40px;
|
| 330 |
+
border-radius: 50%;
|
| 331 |
+
background: linear-gradient(135deg, var(--primary-color), #4752c4);
|
| 332 |
+
display: flex;
|
| 333 |
+
align-items: center;
|
| 334 |
+
justify-content: center;
|
| 335 |
+
color: white;
|
| 336 |
+
font-weight: 600;
|
| 337 |
+
flex-shrink: 0;
|
| 338 |
+
}
|
| 339 |
+
|
| 340 |
+
.message-content {
|
| 341 |
+
flex: 1;
|
| 342 |
+
}
|
| 343 |
+
|
| 344 |
+
.message-header {
|
| 345 |
+
display: flex;
|
| 346 |
+
align-items: center;
|
| 347 |
+
gap: 8px;
|
| 348 |
+
margin-bottom: 4px;
|
| 349 |
+
}
|
| 350 |
+
|
| 351 |
+
.message-username {
|
| 352 |
+
font-weight: 600;
|
| 353 |
+
color: var(--primary-color);
|
| 354 |
+
}
|
| 355 |
+
|
| 356 |
+
.message-time {
|
| 357 |
+
font-size: 12px;
|
| 358 |
+
color: var(--text-secondary);
|
| 359 |
+
}
|
| 360 |
+
|
| 361 |
+
.message-text {
|
| 362 |
+
color: var(--text-primary);
|
| 363 |
+
line-height: 1.5;
|
| 364 |
+
}
|
| 365 |
+
|
| 366 |
+
.message-media {
|
| 367 |
+
margin-top: 8px;
|
| 368 |
+
border-radius: 4px;
|
| 369 |
+
max-width: 400px;
|
| 370 |
+
}
|
| 371 |
+
|
| 372 |
+
.message-media img {
|
| 373 |
+
max-width: 100%;
|
| 374 |
+
border-radius: 4px;
|
| 375 |
+
cursor: pointer;
|
| 376 |
+
}
|
| 377 |
+
|
| 378 |
+
.message-media video {
|
| 379 |
+
max-width: 100%;
|
| 380 |
+
border-radius: 4px;
|
| 381 |
+
}
|
| 382 |
+
|
| 383 |
+
.input-area {
|
| 384 |
+
padding: 16px 24px;
|
| 385 |
+
border-top: 1px solid var(--border-color);
|
| 386 |
+
display: flex;
|
| 387 |
+
gap: 12px;
|
| 388 |
+
}
|
| 389 |
+
|
| 390 |
+
.input-area input {
|
| 391 |
+
flex: 1;
|
| 392 |
+
background: var(--bg-color);
|
| 393 |
+
border: 1px solid var(--border-color);
|
| 394 |
+
border-radius: 21px;
|
| 395 |
+
padding: 11px 16px;
|
| 396 |
+
color: var(--text-primary);
|
| 397 |
+
font-size: 14px;
|
| 398 |
+
transition: all 0.2s ease;
|
| 399 |
+
}
|
| 400 |
+
|
| 401 |
+
.input-area input:focus {
|
| 402 |
+
outline: none;
|
| 403 |
+
border-color: var(--primary-color);
|
| 404 |
+
}
|
| 405 |
+
|
| 406 |
+
.input-btn {
|
| 407 |
+
width: 44px;
|
| 408 |
+
height: 44px;
|
| 409 |
+
border-radius: 50%;
|
| 410 |
+
background: var(--primary-color);
|
| 411 |
+
border: none;
|
| 412 |
+
color: white;
|
| 413 |
+
cursor: pointer;
|
| 414 |
+
font-size: 18px;
|
| 415 |
+
transition: all 0.2s ease;
|
| 416 |
+
display: flex;
|
| 417 |
+
align-items: center;
|
| 418 |
+
justify-content: center;
|
| 419 |
+
}
|
| 420 |
+
|
| 421 |
+
.input-btn:hover {
|
| 422 |
+
background: #4752c4;
|
| 423 |
+
}
|
| 424 |
+
|
| 425 |
+
.input-file {
|
| 426 |
+
display: none;
|
| 427 |
+
}
|
| 428 |
+
|
| 429 |
+
/* ==================== RIGHT SIDEBAR (MEMBERS/USERS) ==================== */
|
| 430 |
+
.members-sidebar {
|
| 431 |
+
background: var(--sidebar-bg);
|
| 432 |
+
border-left: 1px solid var(--border-color);
|
| 433 |
+
display: flex;
|
| 434 |
+
flex-direction: column;
|
| 435 |
+
max-width: 240px;
|
| 436 |
+
}
|
| 437 |
+
|
| 438 |
+
.members-header {
|
| 439 |
+
padding: 16px;
|
| 440 |
+
border-bottom: 1px solid var(--border-color);
|
| 441 |
+
font-weight: 600;
|
| 442 |
+
font-size: 14px;
|
| 443 |
+
}
|
| 444 |
+
|
| 445 |
+
.members-list {
|
| 446 |
+
flex: 1;
|
| 447 |
+
overflow-y: auto;
|
| 448 |
+
padding: 8px;
|
| 449 |
+
}
|
| 450 |
+
|
| 451 |
+
.member-item {
|
| 452 |
+
padding: 8px 12px;
|
| 453 |
+
border-radius: 4px;
|
| 454 |
+
display: flex;
|
| 455 |
+
align-items: center;
|
| 456 |
+
gap: 8px;
|
| 457 |
+
cursor: pointer;
|
| 458 |
+
transition: all 0.2s ease;
|
| 459 |
+
font-size: 14px;
|
| 460 |
+
}
|
| 461 |
+
|
| 462 |
+
.member-item:hover {
|
| 463 |
+
background: var(--chat-bg);
|
| 464 |
+
}
|
| 465 |
+
|
| 466 |
+
.status-indicator {
|
| 467 |
+
width: 8px;
|
| 468 |
+
height: 8px;
|
| 469 |
+
border-radius: 50%;
|
| 470 |
+
background: var(--success);
|
| 471 |
+
}
|
| 472 |
+
|
| 473 |
+
.status-indicator.offline {
|
| 474 |
+
background: var(--text-secondary);
|
| 475 |
+
}
|
| 476 |
+
|
| 477 |
+
/* ==================== PROFILE PANEL ==================== */
|
| 478 |
+
.profile-panel {
|
| 479 |
+
position: fixed;
|
| 480 |
+
right: 0;
|
| 481 |
+
top: 0;
|
| 482 |
+
width: 400px;
|
| 483 |
+
height: 100%;
|
| 484 |
+
background: var(--chat-bg);
|
| 485 |
+
border-left: 1px solid var(--border-color);
|
| 486 |
+
z-index: 1000;
|
| 487 |
+
transform: translateX(400px);
|
| 488 |
+
transition: transform 0.3s ease;
|
| 489 |
+
overflow-y: auto;
|
| 490 |
+
display: flex;
|
| 491 |
+
flex-direction: column;
|
| 492 |
+
}
|
| 493 |
+
|
| 494 |
+
.profile-panel.show {
|
| 495 |
+
transform: translateX(0);
|
| 496 |
+
}
|
| 497 |
+
|
| 498 |
+
.profile-close {
|
| 499 |
+
position: absolute;
|
| 500 |
+
top: 12px;
|
| 501 |
+
right: 12px;
|
| 502 |
+
background: none;
|
| 503 |
+
border: none;
|
| 504 |
+
color: var(--text-secondary);
|
| 505 |
+
font-size: 24px;
|
| 506 |
+
cursor: pointer;
|
| 507 |
+
}
|
| 508 |
+
|
| 509 |
+
.profile-header {
|
| 510 |
+
padding: 60px 24px 24px;
|
| 511 |
+
text-align: center;
|
| 512 |
+
border-bottom: 1px solid var(--border-color);
|
| 513 |
+
}
|
| 514 |
+
|
| 515 |
+
.profile-avatar {
|
| 516 |
+
width: 80px;
|
| 517 |
+
height: 80px;
|
| 518 |
+
border-radius: 50%;
|
| 519 |
+
background: linear-gradient(135deg, var(--primary-color), #4752c4);
|
| 520 |
+
display: flex;
|
| 521 |
+
align-items: center;
|
| 522 |
+
justify-content: center;
|
| 523 |
+
color: white;
|
| 524 |
+
font-size: 40px;
|
| 525 |
+
margin: 0 auto 12px;
|
| 526 |
+
}
|
| 527 |
+
|
| 528 |
+
.profile-name {
|
| 529 |
+
font-size: 20px;
|
| 530 |
+
font-weight: 600;
|
| 531 |
+
}
|
| 532 |
+
|
| 533 |
+
.profile-bio {
|
| 534 |
+
font-size: 14px;
|
| 535 |
+
color: var(--text-secondary);
|
| 536 |
+
margin-top: 8px;
|
| 537 |
+
}
|
| 538 |
+
|
| 539 |
+
.profile-content {
|
| 540 |
+
padding: 24px;
|
| 541 |
+
flex: 1;
|
| 542 |
+
}
|
| 543 |
+
|
| 544 |
+
.tab-buttons {
|
| 545 |
+
display: flex;
|
| 546 |
+
gap: 12px;
|
| 547 |
+
margin-bottom: 24px;
|
| 548 |
+
}
|
| 549 |
+
|
| 550 |
+
.tab-btn {
|
| 551 |
+
flex: 1;
|
| 552 |
+
padding: 8px;
|
| 553 |
+
background: var(--bg-color);
|
| 554 |
+
border: 1px solid var(--border-color);
|
| 555 |
+
color: var(--text-secondary);
|
| 556 |
+
cursor: pointer;
|
| 557 |
+
border-radius: 4px;
|
| 558 |
+
font-size: 12px;
|
| 559 |
+
transition: all 0.2s ease;
|
| 560 |
+
}
|
| 561 |
+
|
| 562 |
+
.tab-btn.active {
|
| 563 |
+
background: var(--primary-color);
|
| 564 |
+
color: white;
|
| 565 |
+
border-color: var(--primary-color);
|
| 566 |
+
}
|
| 567 |
+
|
| 568 |
+
.tab-content {
|
| 569 |
+
display: none;
|
| 570 |
+
}
|
| 571 |
+
|
| 572 |
+
.tab-content.active {
|
| 573 |
+
display: block;
|
| 574 |
+
}
|
| 575 |
+
|
| 576 |
+
.form-field {
|
| 577 |
+
margin-bottom: 16px;
|
| 578 |
+
}
|
| 579 |
+
|
| 580 |
+
.form-field label {
|
| 581 |
+
display: block;
|
| 582 |
+
font-size: 12px;
|
| 583 |
+
font-weight: 600;
|
| 584 |
+
margin-bottom: 8px;
|
| 585 |
+
}
|
| 586 |
+
|
| 587 |
+
.form-field input,
|
| 588 |
+
.form-field textarea {
|
| 589 |
+
width: 100%;
|
| 590 |
+
padding: 8px;
|
| 591 |
+
background: var(--bg-color);
|
| 592 |
+
border: 1px solid var(--border-color);
|
| 593 |
+
border-radius: 4px;
|
| 594 |
+
color: var(--text-primary);
|
| 595 |
+
font-size: 14px;
|
| 596 |
+
font-family: inherit;
|
| 597 |
+
}
|
| 598 |
+
|
| 599 |
+
.form-field textarea {
|
| 600 |
+
resize: vertical;
|
| 601 |
+
min-height: 80px;
|
| 602 |
+
}
|
| 603 |
+
|
| 604 |
+
.save-btn {
|
| 605 |
+
width: 100%;
|
| 606 |
+
padding: 10px;
|
| 607 |
+
background: var(--primary-color);
|
| 608 |
+
color: white;
|
| 609 |
+
border: none;
|
| 610 |
+
border-radius: 4px;
|
| 611 |
+
font-weight: 600;
|
| 612 |
+
cursor: pointer;
|
| 613 |
+
transition: all 0.2s ease;
|
| 614 |
+
}
|
| 615 |
+
|
| 616 |
+
.save-btn:hover {
|
| 617 |
+
background: #4752c4;
|
| 618 |
+
}
|
| 619 |
+
|
| 620 |
+
.shop-item {
|
| 621 |
+
background: var(--bg-color);
|
| 622 |
+
border: 1px solid var(--border-color);
|
| 623 |
+
border-radius: 4px;
|
| 624 |
+
padding: 12px;
|
| 625 |
+
margin-bottom: 12px;
|
| 626 |
+
display: flex;
|
| 627 |
+
justify-content: space-between;
|
| 628 |
+
align-items: center;
|
| 629 |
+
}
|
| 630 |
+
|
| 631 |
+
.shop-item-name {
|
| 632 |
+
font-weight: 600;
|
| 633 |
+
font-size: 14px;
|
| 634 |
+
}
|
| 635 |
+
|
| 636 |
+
.shop-item-price {
|
| 637 |
+
color: var(--success);
|
| 638 |
+
font-weight: 600;
|
| 639 |
+
margin-right: 12px;
|
| 640 |
+
}
|
| 641 |
+
|
| 642 |
+
.buy-btn {
|
| 643 |
+
padding: 6px 12px;
|
| 644 |
+
background: var(--primary-color);
|
| 645 |
+
color: white;
|
| 646 |
+
border: none;
|
| 647 |
+
border-radius: 4px;
|
| 648 |
+
cursor: pointer;
|
| 649 |
+
font-size: 12px;
|
| 650 |
+
}
|
| 651 |
+
|
| 652 |
+
.friend-item {
|
| 653 |
+
padding: 12px;
|
| 654 |
+
background: var(--bg-color);
|
| 655 |
+
border-radius: 4px;
|
| 656 |
+
margin-bottom: 12px;
|
| 657 |
+
display: flex;
|
| 658 |
+
justify-content: space-between;
|
| 659 |
+
align-items: center;
|
| 660 |
+
}
|
| 661 |
+
|
| 662 |
+
.friend-name {
|
| 663 |
+
font-weight: 600;
|
| 664 |
+
font-size: 14px;
|
| 665 |
+
}
|
| 666 |
+
|
| 667 |
+
.friend-status {
|
| 668 |
+
font-size: 12px;
|
| 669 |
+
color: var(--text-secondary);
|
| 670 |
+
}
|
| 671 |
+
|
| 672 |
+
.coins-display {
|
| 673 |
+
font-size: 14px;
|
| 674 |
+
color: var(--success);
|
| 675 |
+
font-weight: 600;
|
| 676 |
+
margin-bottom: 16px;
|
| 677 |
+
}
|
| 678 |
+
|
| 679 |
+
/* ==================== MODAL ==================== */
|
| 680 |
+
.modal {
|
| 681 |
+
position: fixed;
|
| 682 |
+
top: 0;
|
| 683 |
+
left: 0;
|
| 684 |
+
width: 100%;
|
| 685 |
+
height: 100%;
|
| 686 |
+
background: rgba(0,0,0,0.6);
|
| 687 |
+
display: flex;
|
| 688 |
+
align-items: center;
|
| 689 |
+
justify-content: center;
|
| 690 |
+
z-index: 1500;
|
| 691 |
+
}
|
| 692 |
+
|
| 693 |
+
.modal.hidden {
|
| 694 |
+
display: none;
|
| 695 |
+
}
|
| 696 |
+
|
| 697 |
+
.modal-content {
|
| 698 |
+
background: var(--chat-bg);
|
| 699 |
+
padding: 32px;
|
| 700 |
+
border-radius: 8px;
|
| 701 |
+
max-width: 500px;
|
| 702 |
+
width: 90%;
|
| 703 |
+
box-shadow: 0 10px 40px rgba(0,0,0,0.5);
|
| 704 |
+
max-height: 90vh;
|
| 705 |
+
overflow-y: auto;
|
| 706 |
+
}
|
| 707 |
+
|
| 708 |
+
/* ==================== SCROLLBAR ==================== */
|
| 709 |
+
::-webkit-scrollbar {
|
| 710 |
+
width: 8px;
|
| 711 |
+
}
|
| 712 |
+
|
| 713 |
+
::-webkit-scrollbar-track {
|
| 714 |
+
background: transparent;
|
| 715 |
+
}
|
| 716 |
+
|
| 717 |
+
::-webkit-scrollbar-thumb {
|
| 718 |
+
background: var(--secondary-color);
|
| 719 |
+
border-radius: 4px;
|
| 720 |
+
}
|
| 721 |
+
|
| 722 |
+
::-webkit-scrollbar-thumb:hover {
|
| 723 |
+
background: #5a5d60;
|
| 724 |
+
}
|
| 725 |
+
|
| 726 |
+
/* ==================== RESPONSIVE ==================== */
|
| 727 |
+
@media (max-width: 1200px) {
|
| 728 |
+
.main-container {
|
| 729 |
+
grid-template-columns: 72px 240px 1fr;
|
| 730 |
+
}
|
| 731 |
+
|
| 732 |
+
.members-sidebar {
|
| 733 |
+
display: none;
|
| 734 |
+
}
|
| 735 |
+
|
| 736 |
+
.profile-panel {
|
| 737 |
+
width: 300px;
|
| 738 |
+
transform: translateX(300px);
|
| 739 |
+
}
|
| 740 |
+
|
| 741 |
+
.profile-panel.show {
|
| 742 |
+
transform: translateX(0);
|
| 743 |
+
}
|
| 744 |
+
}
|
| 745 |
+
|
| 746 |
+
@media (max-width: 768px) {
|
| 747 |
+
.main-container {
|
| 748 |
+
grid-template-columns: 72px 1fr;
|
| 749 |
+
}
|
| 750 |
+
|
| 751 |
+
.channel-sidebar {
|
| 752 |
+
display: none;
|
| 753 |
+
position: fixed;
|
| 754 |
+
left: 72px;
|
| 755 |
+
top: 0;
|
| 756 |
+
width: 240px;
|
| 757 |
+
height: 100%;
|
| 758 |
+
z-index: 999;
|
| 759 |
+
}
|
| 760 |
+
|
| 761 |
+
.channel-sidebar.show {
|
| 762 |
+
display: flex;
|
| 763 |
+
}
|
| 764 |
+
}
|
| 765 |
+
</style>
|
| 766 |
+
</head>
|
| 767 |
+
<body>
|
| 768 |
+
<!-- AUTH CONTAINER -->
|
| 769 |
+
<div class="auth-container" id="authContainer">
|
| 770 |
+
<div class="auth-box">
|
| 771 |
+
<h2 id="authTitle">Login</h2>
|
| 772 |
+
<form id="authForm" onsubmit="handleAuth(event)">
|
| 773 |
+
<div id="registerFields" style="display: none;">
|
| 774 |
+
<div class="form-group">
|
| 775 |
+
<label>Username</label>
|
| 776 |
+
<input type="text" id="username" placeholder="Choose a username" required>
|
| 777 |
+
</div>
|
| 778 |
+
</div>
|
| 779 |
+
<div class="form-group">
|
| 780 |
+
<label>Email</label>
|
| 781 |
+
<input type="email" id="email" placeholder="Enter your email" required>
|
| 782 |
+
</div>
|
| 783 |
+
<div class="form-group">
|
| 784 |
+
<label>Password</label>
|
| 785 |
+
<input type="password" id="password" placeholder="Enter your password" required>
|
| 786 |
+
</div>
|
| 787 |
+
<button type="submit" class="auth-button" id="authButton">Login</button>
|
| 788 |
+
</form>
|
| 789 |
+
<div class="auth-toggle">
|
| 790 |
+
<span>Don't have an account? <button type="button" onclick="toggleAuthMode()">Register</button></span>
|
| 791 |
+
</div>
|
| 792 |
+
</div>
|
| 793 |
+
</div>
|
| 794 |
+
|
| 795 |
+
<!-- MAIN APP -->
|
| 796 |
+
<div class="main-container" id="mainApp">
|
| 797 |
+
<!-- GUILD SIDEBAR -->
|
| 798 |
+
<div class="guild-sidebar">
|
| 799 |
+
<div class="guild-item active" onclick="showSection('chat')" title="Chat">
|
| 800 |
+
<i class="fas fa-comment"></i>
|
| 801 |
+
</div>
|
| 802 |
+
<div class="guild-item" onclick="showSection('friends')" title="Friends">
|
| 803 |
+
<i class="fas fa-users"></i>
|
| 804 |
+
</div>
|
| 805 |
+
<div class="guild-item" onclick="showSection('shop')" title="Shop">
|
| 806 |
+
<i class="fas fa-store"></i>
|
| 807 |
+
</div>
|
| 808 |
+
</div>
|
| 809 |
+
|
| 810 |
+
<!-- CHANNEL SIDEBAR -->
|
| 811 |
+
<div class="channel-sidebar" id="channelSidebar">
|
| 812 |
+
<div class="sidebar-header">
|
| 813 |
+
<h3>Messages</h3>
|
| 814 |
+
<button onclick="toggleChannelSidebar()"><i class="fas fa-times"></i></button>
|
| 815 |
+
</div>
|
| 816 |
+
<div class="channels-list" id="channelsList">
|
| 817 |
+
<!-- Direct messages will be populated here by loadFriendsForDM() -->
|
| 818 |
+
</div>
|
| 819 |
+
</div>
|
| 820 |
+
|
| 821 |
+
<!-- CHAT AREA -->
|
| 822 |
+
<div class="chat-area">
|
| 823 |
+
<div class="chat-header">
|
| 824 |
+
<div class="chat-header-left">
|
| 825 |
+
<button class="header-btn" onclick="toggleChannelSidebar()">
|
| 826 |
+
<i class="fas fa-bars"></i>
|
| 827 |
+
</button>
|
| 828 |
+
<div class="chat-header-title" id="chatTitle">💬 Select a friend to chat</div>
|
| 829 |
+
</div>
|
| 830 |
+
<div class="chat-header-actions">
|
| 831 |
+
<button class="header-btn" onclick="openProfile()" title="Profile">
|
| 832 |
+
<i class="fas fa-user-circle"></i>
|
| 833 |
+
</button>
|
| 834 |
+
<button class="header-btn" onclick="logout()" title="Logout">
|
| 835 |
+
<i class="fas fa-sign-out-alt"></i>
|
| 836 |
+
</button>
|
| 837 |
+
</div>
|
| 838 |
+
</div>
|
| 839 |
+
|
| 840 |
+
<div id="messages-container"></div>
|
| 841 |
+
|
| 842 |
+
<div id="typingIndicator" style="display: none; padding: 10px; color: var(--text-secondary); font-size: 12px; font-style: italic;"></div>
|
| 843 |
+
|
| 844 |
+
<div class="input-area">
|
| 845 |
+
<button class="input-btn" onclick="document.getElementById('fileInput').click()" title="Upload file">
|
| 846 |
+
<i class="fas fa-paperclip"></i>
|
| 847 |
+
</button>
|
| 848 |
+
<input type="text" id="messageInput" placeholder="Message..." onkeypress="handleMessageKeypress(event)">
|
| 849 |
+
<button class="input-btn" onclick="sendMessage()" title="Send">
|
| 850 |
+
<i class="fas fa-paper-plane"></i>
|
| 851 |
+
</button>
|
| 852 |
+
<input type="file" id="fileInput" class="input-file" onchange="handleFileUpload(event)" accept="image/*,video/*">
|
| 853 |
+
</div>
|
| 854 |
+
</div>
|
| 855 |
+
|
| 856 |
+
<!-- MEMBERS SIDEBAR -->
|
| 857 |
+
<div class="members-sidebar">
|
| 858 |
+
<div class="members-header">👥 Online Members</div>
|
| 859 |
+
<div class="members-list" id="membersList"></div>
|
| 860 |
+
</div>
|
| 861 |
+
</div>
|
| 862 |
+
|
| 863 |
+
<!-- PROFILE PANEL -->
|
| 864 |
+
<div class="profile-panel" id="profilePanel">
|
| 865 |
+
<button class="profile-close" onclick="closeProfile()"><i class="fas fa-times"></i></button>
|
| 866 |
+
<div class="profile-header">
|
| 867 |
+
<div class="profile-avatar" id="profileAvatar">U</div>
|
| 868 |
+
<div class="profile-name" id="profileName">Username</div>
|
| 869 |
+
<div class="profile-bio" id="profileBio">No bio yet</div>
|
| 870 |
+
</div>
|
| 871 |
+
<div class="profile-content">
|
| 872 |
+
<div class="tab-buttons">
|
| 873 |
+
<button class="tab-btn active" onclick="switchProfileTab('profile')">Profile</button>
|
| 874 |
+
<button class="tab-btn" onclick="switchProfileTab('inventory')">Inventory</button>
|
| 875 |
+
</div>
|
| 876 |
+
|
| 877 |
+
<!-- Profile Tab -->
|
| 878 |
+
<div class="tab-content active" id="profileTab">
|
| 879 |
+
<div class="form-field">
|
| 880 |
+
<label>Profile Picture</label>
|
| 881 |
+
<button class="save-btn" onclick="document.getElementById('profileImageInput').click()">Upload Profile Picture</button>
|
| 882 |
+
<input type="file" id="profileImageInput" class="input-file" onchange="uploadProfileImage(event)" accept="image/*" style="display: none;">
|
| 883 |
+
<p style="font-size: 12px; color: var(--text-secondary); margin-top: 5px;">Click to upload your profile picture</p>
|
| 884 |
+
</div>
|
| 885 |
+
<div class="form-field">
|
| 886 |
+
<label>Username</label>
|
| 887 |
+
<input type="text" id="editUsername" placeholder="Username">
|
| 888 |
+
</div>
|
| 889 |
+
<div class="form-field">
|
| 890 |
+
<label>Bio</label>
|
| 891 |
+
<textarea id="editBio" placeholder="Tell us about yourself"></textarea>
|
| 892 |
+
</div>
|
| 893 |
+
<button class="save-btn" onclick="saveProfile()">Save Profile</button>
|
| 894 |
+
</div>
|
| 895 |
+
|
| 896 |
+
<!-- Inventory Tab -->
|
| 897 |
+
<div class="tab-content" id="inventoryTab">
|
| 898 |
+
<div id="inventoryList"></div>
|
| 899 |
+
</div>
|
| 900 |
+
</div>
|
| 901 |
+
</div>
|
| 902 |
+
|
| 903 |
+
<!-- FRIENDS MODAL -->
|
| 904 |
+
<div class="modal hidden" id="friendsModal">
|
| 905 |
+
<div class="modal-content">
|
| 906 |
+
<h2><i class="fas fa-users"></i> Friends & Friend Requests</h2>
|
| 907 |
+
<h3 style="margin-top: 20px; margin-bottom: 10px;">Pending Requests</h3>
|
| 908 |
+
<div id="friendRequests"></div>
|
| 909 |
+
<h3 style="margin-top: 20px; margin-bottom: 10px;">Your Friends</h3>
|
| 910 |
+
<div id="friendsList"></div>
|
| 911 |
+
<button class="save-btn" onclick="closeFriendsModal()" style="margin-top: 20px;">Close</button>
|
| 912 |
+
</div>
|
| 913 |
+
</div>
|
| 914 |
+
|
| 915 |
+
<!-- SHOP MODAL -->
|
| 916 |
+
<div class="modal hidden" id="shopModal">
|
| 917 |
+
<div class="modal-content">
|
| 918 |
+
<h2><i class="fas fa-store"></i> Shop</h2>
|
| 919 |
+
<div class="coins-display" id="coinsDisplay">💰 Coins: 1000</div>
|
| 920 |
+
<div id="shopList"></div>
|
| 921 |
+
<button class="save-btn" onclick="closeShopModal()" style="margin-top: 20px;">Close</button>
|
| 922 |
+
</div>
|
| 923 |
+
</div>
|
| 924 |
+
|
| 925 |
+
<script src="/socket.io/socket.io.js"></script>
|
| 926 |
+
<script src="client.js"></script>
|
| 927 |
+
</body>
|
| 928 |
+
</html>
|
init-db.js
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
require('dotenv').config();
|
| 2 |
+
const mongoose = require('mongoose');
|
| 3 |
+
const { v4: uuidv4 } = require('uuid');
|
| 4 |
+
|
| 5 |
+
mongoose.connect(process.env.MONGODB_URI || 'mongodb://localhost:27017/discord-app', {
|
| 6 |
+
useNewUrlParser: true,
|
| 7 |
+
useUnifiedTopology: true
|
| 8 |
+
});
|
| 9 |
+
|
| 10 |
+
const shopItemSchema = new mongoose.Schema({
|
| 11 |
+
itemId: String,
|
| 12 |
+
name: String,
|
| 13 |
+
description: String,
|
| 14 |
+
price: Number,
|
| 15 |
+
category: String,
|
| 16 |
+
image: String,
|
| 17 |
+
createdAt: { type: Date, default: Date.now }
|
| 18 |
+
});
|
| 19 |
+
|
| 20 |
+
const ShopItem = mongoose.model('ShopItem', shopItemSchema);
|
| 21 |
+
|
| 22 |
+
const defaultItems = [
|
| 23 |
+
{
|
| 24 |
+
itemId: uuidv4(),
|
| 25 |
+
name: 'Discord Nitro Badge',
|
| 26 |
+
description: 'Show off your premium status',
|
| 27 |
+
price: 500,
|
| 28 |
+
category: 'badges'
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
itemId: uuidv4(),
|
| 32 |
+
name: 'Custom Profile Border',
|
| 33 |
+
description: 'Personalize your profile',
|
| 34 |
+
price: 300,
|
| 35 |
+
category: 'profile'
|
| 36 |
+
},
|
| 37 |
+
{
|
| 38 |
+
itemId: uuidv4(),
|
| 39 |
+
name: 'Custom Status',
|
| 40 |
+
description: 'Set a custom status message',
|
| 41 |
+
price: 200,
|
| 42 |
+
category: 'status'
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
itemId: uuidv4(),
|
| 46 |
+
name: 'Emote Pack',
|
| 47 |
+
description: 'Get exclusive emotes',
|
| 48 |
+
price: 250,
|
| 49 |
+
category: 'emotes'
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
itemId: uuidv4(),
|
| 53 |
+
name: 'Pink Theme',
|
| 54 |
+
description: 'UI theme customization',
|
| 55 |
+
price: 150,
|
| 56 |
+
category: 'themes'
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
itemId: uuidv4(),
|
| 60 |
+
name: 'Animated Avatar',
|
| 61 |
+
description: 'Use animated GIF as avatar',
|
| 62 |
+
price: 400,
|
| 63 |
+
category: 'avatar'
|
| 64 |
+
}
|
| 65 |
+
];
|
| 66 |
+
|
| 67 |
+
async function initializeDatabase() {
|
| 68 |
+
try {
|
| 69 |
+
// Clear existing items
|
| 70 |
+
await ShopItem.deleteMany({});
|
| 71 |
+
console.log('Cleared existing shop items');
|
| 72 |
+
|
| 73 |
+
// Insert new items
|
| 74 |
+
await ShopItem.insertMany(defaultItems);
|
| 75 |
+
console.log(`✅ Successfully added ${defaultItems.length} shop items to database`);
|
| 76 |
+
|
| 77 |
+
// List all items
|
| 78 |
+
const items = await ShopItem.find();
|
| 79 |
+
console.log('\n📦 Shop Items:');
|
| 80 |
+
items.forEach(item => {
|
| 81 |
+
console.log(` - ${item.name}: ${item.price} coins`);
|
| 82 |
+
});
|
| 83 |
+
|
| 84 |
+
mongoose.connection.close();
|
| 85 |
+
console.log('\n✨ Database initialization complete!');
|
| 86 |
+
} catch (error) {
|
| 87 |
+
console.error('❌ Error initializing database:', error.message);
|
| 88 |
+
mongoose.connection.close();
|
| 89 |
+
process.exit(1);
|
| 90 |
+
}
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
console.log('🚀 Initializing Discord-Like App Database...');
|
| 94 |
+
initializeDatabase();
|
mobile-connect.ps1
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Complete automated mobile connection setup
|
| 2 |
+
# Run as Administrator
|
| 3 |
+
|
| 4 |
+
Write-Host "╔════════════════════════════════════════╗" -ForegroundColor Cyan
|
| 5 |
+
Write-Host "║ Mobile Connection Setup - Complete ║" -ForegroundColor Cyan
|
| 6 |
+
Write-Host "╚════════════════════════════════════════╝" -ForegroundColor Cyan
|
| 7 |
+
Write-Host ""
|
| 8 |
+
|
| 9 |
+
# Step 1: Get Wi-Fi IP
|
| 10 |
+
Write-Host "Finding your PC Wi-Fi IP address..." -ForegroundColor Yellow
|
| 11 |
+
$wifiIP = $null
|
| 12 |
+
try {
|
| 13 |
+
$wifiIP = (Get-NetIPConfiguration | Where-Object {
|
| 14 |
+
$_.IPv4DefaultGateway -ne $null
|
| 15 |
+
} | Select-Object -ExpandProperty IPv4Address).IPAddress | Where-Object {$_ -like "10.*" -or $_ -like "192.168.*"}
|
| 16 |
+
}
|
| 17 |
+
catch {}
|
| 18 |
+
|
| 19 |
+
if (!$wifiIP) {
|
| 20 |
+
Write-Host "Could not find Wi-Fi IP automatically" -ForegroundColor Red
|
| 21 |
+
Write-Host " Run: ipconfig" -ForegroundColor Yellow
|
| 22 |
+
Write-Host " Look for your Wi-Fi adapter IP (usually 10.x.x.x or 192.168.x.x)" -ForegroundColor Yellow
|
| 23 |
+
exit 1
|
| 24 |
+
}
|
| 25 |
+
|
| 26 |
+
Write-Host "Found Wi-Fi IP: $wifiIP" -ForegroundColor Green
|
| 27 |
+
Write-Host ""
|
| 28 |
+
|
| 29 |
+
# Step 2: Kill existing Node
|
| 30 |
+
Write-Host "Stopping existing servers..." -ForegroundColor Yellow
|
| 31 |
+
taskkill /F /IM node.exe 2>$null | Out-Null
|
| 32 |
+
Start-Sleep -Seconds 2
|
| 33 |
+
Write-Host "OK - Stopped" -ForegroundColor Green
|
| 34 |
+
Write-Host ""
|
| 35 |
+
|
| 36 |
+
# Step 3: Ensure certificate exists
|
| 37 |
+
Write-Host "Checking certificate..." -ForegroundColor Yellow
|
| 38 |
+
$pfxPath = "C:\Users\dell\Downloads\message\certs\lan-localhost.pfx"
|
| 39 |
+
if (!(Test-Path $pfxPath)) {
|
| 40 |
+
Write-Host "Certificate file not found!" -ForegroundColor Red
|
| 41 |
+
Write-Host " Run: npm run https" -ForegroundColor Yellow
|
| 42 |
+
exit 1
|
| 43 |
+
}
|
| 44 |
+
Write-Host "OK - Certificate ready" -ForegroundColor Green
|
| 45 |
+
Write-Host ""
|
| 46 |
+
|
| 47 |
+
# Step 4: Add firewall rule
|
| 48 |
+
Write-Host "Adding firewall rule..." -ForegroundColor Yellow
|
| 49 |
+
try {
|
| 50 |
+
Remove-NetFirewallRule -DisplayName "Chat App 3001" -ErrorAction SilentlyContinue
|
| 51 |
+
New-NetFirewallRule -DisplayName "Chat App 3001" -Direction Inbound -LocalPort 3001 -Protocol TCP -Action Allow -Profile Any | Out-Null
|
| 52 |
+
Write-Host "OK - Firewall configured" -ForegroundColor Green
|
| 53 |
+
} catch {
|
| 54 |
+
Write-Host "Warning: Firewall rule failed (may need admin)" -ForegroundColor Yellow
|
| 55 |
+
}
|
| 56 |
+
Write-Host ""
|
| 57 |
+
|
| 58 |
+
# Step 5: Start server
|
| 59 |
+
Write-Host "Starting server..." -ForegroundColor Yellow
|
| 60 |
+
Write-Host ""
|
| 61 |
+
|
| 62 |
+
Set-Location "C:\Users\dell\Downloads\message"
|
| 63 |
+
$env:SSL_PFX_PATH = $pfxPath
|
| 64 |
+
$env:SSL_PFX_PASSPHRASE = "123456"
|
| 65 |
+
$env:PORT = "3001"
|
| 66 |
+
$env:HOST = "0.0.0.0"
|
| 67 |
+
|
| 68 |
+
Write-Host "╔════════════════════════════════════════╗" -ForegroundColor Green
|
| 69 |
+
Write-Host "║ MOBILE CONNECTION INFO ║" -ForegroundColor Green
|
| 70 |
+
Write-Host "╚════════════════════════════════════════╝" -ForegroundColor Green
|
| 71 |
+
Write-Host "Open on your phone (same Wi-Fi):" -ForegroundColor White
|
| 72 |
+
Write-Host " https://$wifiIP:3001" -ForegroundColor Cyan
|
| 73 |
+
Write-Host ""
|
| 74 |
+
Write-Host "If you see a certificate warning:" -ForegroundColor White
|
| 75 |
+
Write-Host " 1. Click Advanced" -ForegroundColor Gray
|
| 76 |
+
Write-Host " 2. Click Proceed to the IP shown above" -ForegroundColor Gray
|
| 77 |
+
Write-Host ""
|
| 78 |
+
Write-Host "Troubleshooting:" -ForegroundColor White
|
| 79 |
+
Write-Host " Can't connect? Make sure phone is on SAME Wi-Fi" -ForegroundColor Gray
|
| 80 |
+
Write-Host " Check: ipconfig (on PC) vs Settings WiFi (on phone)" -ForegroundColor Gray
|
| 81 |
+
Write-Host ""
|
| 82 |
+
|
| 83 |
+
npm start
|
package-lock.json
ADDED
|
@@ -0,0 +1,1906 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "discord-like-app",
|
| 3 |
+
"version": "2.0.0",
|
| 4 |
+
"lockfileVersion": 3,
|
| 5 |
+
"requires": true,
|
| 6 |
+
"packages": {
|
| 7 |
+
"": {
|
| 8 |
+
"name": "discord-like-app",
|
| 9 |
+
"version": "2.0.0",
|
| 10 |
+
"dependencies": {
|
| 11 |
+
"bcryptjs": "^2.4.3",
|
| 12 |
+
"body-parser": "^1.20.2",
|
| 13 |
+
"cors": "^2.8.5",
|
| 14 |
+
"dotenv": "^16.3.1",
|
| 15 |
+
"express": "^4.18.2",
|
| 16 |
+
"jsonwebtoken": "^9.0.2",
|
| 17 |
+
"mongoose": "^7.5.0",
|
| 18 |
+
"multer": "^1.4.5-lts.1",
|
| 19 |
+
"nodemon": "^3.0.1",
|
| 20 |
+
"socket.io": "^4.5.4",
|
| 21 |
+
"uuid": "^9.0.0"
|
| 22 |
+
}
|
| 23 |
+
},
|
| 24 |
+
"node_modules/@mongodb-js/saslprep": {
|
| 25 |
+
"version": "1.4.6",
|
| 26 |
+
"resolved": "https://registry.npmjs.org/@mongodb-js/saslprep/-/saslprep-1.4.6.tgz",
|
| 27 |
+
"integrity": "sha512-y+x3H1xBZd38n10NZF/rEBlvDOOMQ6LKUTHqr8R9VkJ+mmQOYtJFxIlkkK8fZrtOiL6VixbOBWMbZGBdal3Z1g==",
|
| 28 |
+
"license": "MIT",
|
| 29 |
+
"optional": true,
|
| 30 |
+
"dependencies": {
|
| 31 |
+
"sparse-bitfield": "^3.0.3"
|
| 32 |
+
}
|
| 33 |
+
},
|
| 34 |
+
"node_modules/@socket.io/component-emitter": {
|
| 35 |
+
"version": "3.1.2",
|
| 36 |
+
"resolved": "https://registry.npmjs.org/@socket.io/component-emitter/-/component-emitter-3.1.2.tgz",
|
| 37 |
+
"integrity": "sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==",
|
| 38 |
+
"license": "MIT"
|
| 39 |
+
},
|
| 40 |
+
"node_modules/@types/cors": {
|
| 41 |
+
"version": "2.8.19",
|
| 42 |
+
"resolved": "https://registry.npmjs.org/@types/cors/-/cors-2.8.19.tgz",
|
| 43 |
+
"integrity": "sha512-mFNylyeyqN93lfe/9CSxOGREz8cpzAhH+E93xJ4xWQf62V8sQ/24reV2nyzUWM6H6Xji+GGHpkbLe7pVoUEskg==",
|
| 44 |
+
"license": "MIT",
|
| 45 |
+
"dependencies": {
|
| 46 |
+
"@types/node": "*"
|
| 47 |
+
}
|
| 48 |
+
},
|
| 49 |
+
"node_modules/@types/node": {
|
| 50 |
+
"version": "25.3.3",
|
| 51 |
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-25.3.3.tgz",
|
| 52 |
+
"integrity": "sha512-DpzbrH7wIcBaJibpKo9nnSQL0MTRdnWttGyE5haGwK86xgMOkFLp7vEyfQPGLOJh5wNYiJ3V9PmUMDhV9u8kkQ==",
|
| 53 |
+
"license": "MIT",
|
| 54 |
+
"dependencies": {
|
| 55 |
+
"undici-types": "~7.18.0"
|
| 56 |
+
}
|
| 57 |
+
},
|
| 58 |
+
"node_modules/@types/webidl-conversions": {
|
| 59 |
+
"version": "7.0.3",
|
| 60 |
+
"resolved": "https://registry.npmjs.org/@types/webidl-conversions/-/webidl-conversions-7.0.3.tgz",
|
| 61 |
+
"integrity": "sha512-CiJJvcRtIgzadHCYXw7dqEnMNRjhGZlYK05Mj9OyktqV8uVT8fD2BFOB7S1uwBE3Kj2Z+4UyPmFw/Ixgw/LAlA==",
|
| 62 |
+
"license": "MIT"
|
| 63 |
+
},
|
| 64 |
+
"node_modules/@types/whatwg-url": {
|
| 65 |
+
"version": "8.2.2",
|
| 66 |
+
"resolved": "https://registry.npmjs.org/@types/whatwg-url/-/whatwg-url-8.2.2.tgz",
|
| 67 |
+
"integrity": "sha512-FtQu10RWgn3D9U4aazdwIE2yzphmTJREDqNdODHrbrZmmMqI0vMheC/6NE/J1Yveaj8H+ela+YwWTjq5PGmuhA==",
|
| 68 |
+
"license": "MIT",
|
| 69 |
+
"dependencies": {
|
| 70 |
+
"@types/node": "*",
|
| 71 |
+
"@types/webidl-conversions": "*"
|
| 72 |
+
}
|
| 73 |
+
},
|
| 74 |
+
"node_modules/accepts": {
|
| 75 |
+
"version": "1.3.8",
|
| 76 |
+
"resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
|
| 77 |
+
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
|
| 78 |
+
"license": "MIT",
|
| 79 |
+
"dependencies": {
|
| 80 |
+
"mime-types": "~2.1.34",
|
| 81 |
+
"negotiator": "0.6.3"
|
| 82 |
+
},
|
| 83 |
+
"engines": {
|
| 84 |
+
"node": ">= 0.6"
|
| 85 |
+
}
|
| 86 |
+
},
|
| 87 |
+
"node_modules/anymatch": {
|
| 88 |
+
"version": "3.1.3",
|
| 89 |
+
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
|
| 90 |
+
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
|
| 91 |
+
"license": "ISC",
|
| 92 |
+
"dependencies": {
|
| 93 |
+
"normalize-path": "^3.0.0",
|
| 94 |
+
"picomatch": "^2.0.4"
|
| 95 |
+
},
|
| 96 |
+
"engines": {
|
| 97 |
+
"node": ">= 8"
|
| 98 |
+
}
|
| 99 |
+
},
|
| 100 |
+
"node_modules/append-field": {
|
| 101 |
+
"version": "1.0.0",
|
| 102 |
+
"resolved": "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz",
|
| 103 |
+
"integrity": "sha512-klpgFSWLW1ZEs8svjfb7g4qWY0YS5imI82dTg+QahUvJ8YqAY0P10Uk8tTyh9ZGuYEZEMaeJYCF5BFuX552hsw==",
|
| 104 |
+
"license": "MIT"
|
| 105 |
+
},
|
| 106 |
+
"node_modules/array-flatten": {
|
| 107 |
+
"version": "1.1.1",
|
| 108 |
+
"resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
|
| 109 |
+
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==",
|
| 110 |
+
"license": "MIT"
|
| 111 |
+
},
|
| 112 |
+
"node_modules/balanced-match": {
|
| 113 |
+
"version": "4.0.4",
|
| 114 |
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.4.tgz",
|
| 115 |
+
"integrity": "sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==",
|
| 116 |
+
"license": "MIT",
|
| 117 |
+
"engines": {
|
| 118 |
+
"node": "18 || 20 || >=22"
|
| 119 |
+
}
|
| 120 |
+
},
|
| 121 |
+
"node_modules/base64id": {
|
| 122 |
+
"version": "2.0.0",
|
| 123 |
+
"resolved": "https://registry.npmjs.org/base64id/-/base64id-2.0.0.tgz",
|
| 124 |
+
"integrity": "sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==",
|
| 125 |
+
"license": "MIT",
|
| 126 |
+
"engines": {
|
| 127 |
+
"node": "^4.5.0 || >= 5.9"
|
| 128 |
+
}
|
| 129 |
+
},
|
| 130 |
+
"node_modules/bcryptjs": {
|
| 131 |
+
"version": "2.4.3",
|
| 132 |
+
"resolved": "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz",
|
| 133 |
+
"integrity": "sha512-V/Hy/X9Vt7f3BbPJEi8BdVFMByHi+jNXrYkW3huaybV/kQ0KJg0Y6PkEMbn+zeT+i+SiKZ/HMqJGIIt4LZDqNQ==",
|
| 134 |
+
"license": "MIT"
|
| 135 |
+
},
|
| 136 |
+
"node_modules/binary-extensions": {
|
| 137 |
+
"version": "2.3.0",
|
| 138 |
+
"resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz",
|
| 139 |
+
"integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==",
|
| 140 |
+
"license": "MIT",
|
| 141 |
+
"engines": {
|
| 142 |
+
"node": ">=8"
|
| 143 |
+
},
|
| 144 |
+
"funding": {
|
| 145 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
| 146 |
+
}
|
| 147 |
+
},
|
| 148 |
+
"node_modules/body-parser": {
|
| 149 |
+
"version": "1.20.4",
|
| 150 |
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.4.tgz",
|
| 151 |
+
"integrity": "sha512-ZTgYYLMOXY9qKU/57FAo8F+HA2dGX7bqGc71txDRC1rS4frdFI5R7NhluHxH6M0YItAP0sHB4uqAOcYKxO6uGA==",
|
| 152 |
+
"license": "MIT",
|
| 153 |
+
"dependencies": {
|
| 154 |
+
"bytes": "~3.1.2",
|
| 155 |
+
"content-type": "~1.0.5",
|
| 156 |
+
"debug": "2.6.9",
|
| 157 |
+
"depd": "2.0.0",
|
| 158 |
+
"destroy": "~1.2.0",
|
| 159 |
+
"http-errors": "~2.0.1",
|
| 160 |
+
"iconv-lite": "~0.4.24",
|
| 161 |
+
"on-finished": "~2.4.1",
|
| 162 |
+
"qs": "~6.14.0",
|
| 163 |
+
"raw-body": "~2.5.3",
|
| 164 |
+
"type-is": "~1.6.18",
|
| 165 |
+
"unpipe": "~1.0.0"
|
| 166 |
+
},
|
| 167 |
+
"engines": {
|
| 168 |
+
"node": ">= 0.8",
|
| 169 |
+
"npm": "1.2.8000 || >= 1.4.16"
|
| 170 |
+
}
|
| 171 |
+
},
|
| 172 |
+
"node_modules/body-parser/node_modules/debug": {
|
| 173 |
+
"version": "2.6.9",
|
| 174 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 175 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 176 |
+
"license": "MIT",
|
| 177 |
+
"dependencies": {
|
| 178 |
+
"ms": "2.0.0"
|
| 179 |
+
}
|
| 180 |
+
},
|
| 181 |
+
"node_modules/body-parser/node_modules/ms": {
|
| 182 |
+
"version": "2.0.0",
|
| 183 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 184 |
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
| 185 |
+
"license": "MIT"
|
| 186 |
+
},
|
| 187 |
+
"node_modules/brace-expansion": {
|
| 188 |
+
"version": "5.0.4",
|
| 189 |
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.4.tgz",
|
| 190 |
+
"integrity": "sha512-h+DEnpVvxmfVefa4jFbCf5HdH5YMDXRsmKflpf1pILZWRFlTbJpxeU55nJl4Smt5HQaGzg1o6RHFPJaOqnmBDg==",
|
| 191 |
+
"license": "MIT",
|
| 192 |
+
"dependencies": {
|
| 193 |
+
"balanced-match": "^4.0.2"
|
| 194 |
+
},
|
| 195 |
+
"engines": {
|
| 196 |
+
"node": "18 || 20 || >=22"
|
| 197 |
+
}
|
| 198 |
+
},
|
| 199 |
+
"node_modules/braces": {
|
| 200 |
+
"version": "3.0.3",
|
| 201 |
+
"resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
| 202 |
+
"integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
| 203 |
+
"license": "MIT",
|
| 204 |
+
"dependencies": {
|
| 205 |
+
"fill-range": "^7.1.1"
|
| 206 |
+
},
|
| 207 |
+
"engines": {
|
| 208 |
+
"node": ">=8"
|
| 209 |
+
}
|
| 210 |
+
},
|
| 211 |
+
"node_modules/bson": {
|
| 212 |
+
"version": "5.5.1",
|
| 213 |
+
"resolved": "https://registry.npmjs.org/bson/-/bson-5.5.1.tgz",
|
| 214 |
+
"integrity": "sha512-ix0EwukN2EpC0SRWIj/7B5+A6uQMQy6KMREI9qQqvgpkV2frH63T0UDVd1SYedL6dNCmDBYB3QtXi4ISk9YT+g==",
|
| 215 |
+
"license": "Apache-2.0",
|
| 216 |
+
"engines": {
|
| 217 |
+
"node": ">=14.20.1"
|
| 218 |
+
}
|
| 219 |
+
},
|
| 220 |
+
"node_modules/buffer-equal-constant-time": {
|
| 221 |
+
"version": "1.0.1",
|
| 222 |
+
"resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
|
| 223 |
+
"integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==",
|
| 224 |
+
"license": "BSD-3-Clause"
|
| 225 |
+
},
|
| 226 |
+
"node_modules/buffer-from": {
|
| 227 |
+
"version": "1.1.2",
|
| 228 |
+
"resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz",
|
| 229 |
+
"integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==",
|
| 230 |
+
"license": "MIT"
|
| 231 |
+
},
|
| 232 |
+
"node_modules/busboy": {
|
| 233 |
+
"version": "1.6.0",
|
| 234 |
+
"resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
|
| 235 |
+
"integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
|
| 236 |
+
"dependencies": {
|
| 237 |
+
"streamsearch": "^1.1.0"
|
| 238 |
+
},
|
| 239 |
+
"engines": {
|
| 240 |
+
"node": ">=10.16.0"
|
| 241 |
+
}
|
| 242 |
+
},
|
| 243 |
+
"node_modules/bytes": {
|
| 244 |
+
"version": "3.1.2",
|
| 245 |
+
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
|
| 246 |
+
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
|
| 247 |
+
"license": "MIT",
|
| 248 |
+
"engines": {
|
| 249 |
+
"node": ">= 0.8"
|
| 250 |
+
}
|
| 251 |
+
},
|
| 252 |
+
"node_modules/call-bind-apply-helpers": {
|
| 253 |
+
"version": "1.0.2",
|
| 254 |
+
"resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz",
|
| 255 |
+
"integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==",
|
| 256 |
+
"license": "MIT",
|
| 257 |
+
"dependencies": {
|
| 258 |
+
"es-errors": "^1.3.0",
|
| 259 |
+
"function-bind": "^1.1.2"
|
| 260 |
+
},
|
| 261 |
+
"engines": {
|
| 262 |
+
"node": ">= 0.4"
|
| 263 |
+
}
|
| 264 |
+
},
|
| 265 |
+
"node_modules/call-bound": {
|
| 266 |
+
"version": "1.0.4",
|
| 267 |
+
"resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz",
|
| 268 |
+
"integrity": "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==",
|
| 269 |
+
"license": "MIT",
|
| 270 |
+
"dependencies": {
|
| 271 |
+
"call-bind-apply-helpers": "^1.0.2",
|
| 272 |
+
"get-intrinsic": "^1.3.0"
|
| 273 |
+
},
|
| 274 |
+
"engines": {
|
| 275 |
+
"node": ">= 0.4"
|
| 276 |
+
},
|
| 277 |
+
"funding": {
|
| 278 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 279 |
+
}
|
| 280 |
+
},
|
| 281 |
+
"node_modules/chokidar": {
|
| 282 |
+
"version": "3.6.0",
|
| 283 |
+
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz",
|
| 284 |
+
"integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==",
|
| 285 |
+
"license": "MIT",
|
| 286 |
+
"dependencies": {
|
| 287 |
+
"anymatch": "~3.1.2",
|
| 288 |
+
"braces": "~3.0.2",
|
| 289 |
+
"glob-parent": "~5.1.2",
|
| 290 |
+
"is-binary-path": "~2.1.0",
|
| 291 |
+
"is-glob": "~4.0.1",
|
| 292 |
+
"normalize-path": "~3.0.0",
|
| 293 |
+
"readdirp": "~3.6.0"
|
| 294 |
+
},
|
| 295 |
+
"engines": {
|
| 296 |
+
"node": ">= 8.10.0"
|
| 297 |
+
},
|
| 298 |
+
"funding": {
|
| 299 |
+
"url": "https://paulmillr.com/funding/"
|
| 300 |
+
},
|
| 301 |
+
"optionalDependencies": {
|
| 302 |
+
"fsevents": "~2.3.2"
|
| 303 |
+
}
|
| 304 |
+
},
|
| 305 |
+
"node_modules/concat-stream": {
|
| 306 |
+
"version": "1.6.2",
|
| 307 |
+
"resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz",
|
| 308 |
+
"integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==",
|
| 309 |
+
"engines": [
|
| 310 |
+
"node >= 0.8"
|
| 311 |
+
],
|
| 312 |
+
"license": "MIT",
|
| 313 |
+
"dependencies": {
|
| 314 |
+
"buffer-from": "^1.0.0",
|
| 315 |
+
"inherits": "^2.0.3",
|
| 316 |
+
"readable-stream": "^2.2.2",
|
| 317 |
+
"typedarray": "^0.0.6"
|
| 318 |
+
}
|
| 319 |
+
},
|
| 320 |
+
"node_modules/content-disposition": {
|
| 321 |
+
"version": "0.5.4",
|
| 322 |
+
"resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
|
| 323 |
+
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
|
| 324 |
+
"license": "MIT",
|
| 325 |
+
"dependencies": {
|
| 326 |
+
"safe-buffer": "5.2.1"
|
| 327 |
+
},
|
| 328 |
+
"engines": {
|
| 329 |
+
"node": ">= 0.6"
|
| 330 |
+
}
|
| 331 |
+
},
|
| 332 |
+
"node_modules/content-type": {
|
| 333 |
+
"version": "1.0.5",
|
| 334 |
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
|
| 335 |
+
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
|
| 336 |
+
"license": "MIT",
|
| 337 |
+
"engines": {
|
| 338 |
+
"node": ">= 0.6"
|
| 339 |
+
}
|
| 340 |
+
},
|
| 341 |
+
"node_modules/cookie": {
|
| 342 |
+
"version": "0.7.2",
|
| 343 |
+
"resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz",
|
| 344 |
+
"integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==",
|
| 345 |
+
"license": "MIT",
|
| 346 |
+
"engines": {
|
| 347 |
+
"node": ">= 0.6"
|
| 348 |
+
}
|
| 349 |
+
},
|
| 350 |
+
"node_modules/cookie-signature": {
|
| 351 |
+
"version": "1.0.7",
|
| 352 |
+
"resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.7.tgz",
|
| 353 |
+
"integrity": "sha512-NXdYc3dLr47pBkpUCHtKSwIOQXLVn8dZEuywboCOJY/osA0wFSLlSawr3KN8qXJEyX66FcONTH8EIlVuK0yyFA==",
|
| 354 |
+
"license": "MIT"
|
| 355 |
+
},
|
| 356 |
+
"node_modules/core-util-is": {
|
| 357 |
+
"version": "1.0.3",
|
| 358 |
+
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
|
| 359 |
+
"integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==",
|
| 360 |
+
"license": "MIT"
|
| 361 |
+
},
|
| 362 |
+
"node_modules/cors": {
|
| 363 |
+
"version": "2.8.6",
|
| 364 |
+
"resolved": "https://registry.npmjs.org/cors/-/cors-2.8.6.tgz",
|
| 365 |
+
"integrity": "sha512-tJtZBBHA6vjIAaF6EnIaq6laBBP9aq/Y3ouVJjEfoHbRBcHBAHYcMh/w8LDrk2PvIMMq8gmopa5D4V8RmbrxGw==",
|
| 366 |
+
"license": "MIT",
|
| 367 |
+
"dependencies": {
|
| 368 |
+
"object-assign": "^4",
|
| 369 |
+
"vary": "^1"
|
| 370 |
+
},
|
| 371 |
+
"engines": {
|
| 372 |
+
"node": ">= 0.10"
|
| 373 |
+
},
|
| 374 |
+
"funding": {
|
| 375 |
+
"type": "opencollective",
|
| 376 |
+
"url": "https://opencollective.com/express"
|
| 377 |
+
}
|
| 378 |
+
},
|
| 379 |
+
"node_modules/debug": {
|
| 380 |
+
"version": "4.4.3",
|
| 381 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
| 382 |
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
| 383 |
+
"license": "MIT",
|
| 384 |
+
"dependencies": {
|
| 385 |
+
"ms": "^2.1.3"
|
| 386 |
+
},
|
| 387 |
+
"engines": {
|
| 388 |
+
"node": ">=6.0"
|
| 389 |
+
},
|
| 390 |
+
"peerDependenciesMeta": {
|
| 391 |
+
"supports-color": {
|
| 392 |
+
"optional": true
|
| 393 |
+
}
|
| 394 |
+
}
|
| 395 |
+
},
|
| 396 |
+
"node_modules/depd": {
|
| 397 |
+
"version": "2.0.0",
|
| 398 |
+
"resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
|
| 399 |
+
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
|
| 400 |
+
"license": "MIT",
|
| 401 |
+
"engines": {
|
| 402 |
+
"node": ">= 0.8"
|
| 403 |
+
}
|
| 404 |
+
},
|
| 405 |
+
"node_modules/destroy": {
|
| 406 |
+
"version": "1.2.0",
|
| 407 |
+
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
|
| 408 |
+
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
|
| 409 |
+
"license": "MIT",
|
| 410 |
+
"engines": {
|
| 411 |
+
"node": ">= 0.8",
|
| 412 |
+
"npm": "1.2.8000 || >= 1.4.16"
|
| 413 |
+
}
|
| 414 |
+
},
|
| 415 |
+
"node_modules/dotenv": {
|
| 416 |
+
"version": "16.6.1",
|
| 417 |
+
"resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
|
| 418 |
+
"integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
|
| 419 |
+
"license": "BSD-2-Clause",
|
| 420 |
+
"engines": {
|
| 421 |
+
"node": ">=12"
|
| 422 |
+
},
|
| 423 |
+
"funding": {
|
| 424 |
+
"url": "https://dotenvx.com"
|
| 425 |
+
}
|
| 426 |
+
},
|
| 427 |
+
"node_modules/dunder-proto": {
|
| 428 |
+
"version": "1.0.1",
|
| 429 |
+
"resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
|
| 430 |
+
"integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
|
| 431 |
+
"license": "MIT",
|
| 432 |
+
"dependencies": {
|
| 433 |
+
"call-bind-apply-helpers": "^1.0.1",
|
| 434 |
+
"es-errors": "^1.3.0",
|
| 435 |
+
"gopd": "^1.2.0"
|
| 436 |
+
},
|
| 437 |
+
"engines": {
|
| 438 |
+
"node": ">= 0.4"
|
| 439 |
+
}
|
| 440 |
+
},
|
| 441 |
+
"node_modules/ecdsa-sig-formatter": {
|
| 442 |
+
"version": "1.0.11",
|
| 443 |
+
"resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz",
|
| 444 |
+
"integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==",
|
| 445 |
+
"license": "Apache-2.0",
|
| 446 |
+
"dependencies": {
|
| 447 |
+
"safe-buffer": "^5.0.1"
|
| 448 |
+
}
|
| 449 |
+
},
|
| 450 |
+
"node_modules/ee-first": {
|
| 451 |
+
"version": "1.1.1",
|
| 452 |
+
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
|
| 453 |
+
"integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==",
|
| 454 |
+
"license": "MIT"
|
| 455 |
+
},
|
| 456 |
+
"node_modules/encodeurl": {
|
| 457 |
+
"version": "2.0.0",
|
| 458 |
+
"resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz",
|
| 459 |
+
"integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==",
|
| 460 |
+
"license": "MIT",
|
| 461 |
+
"engines": {
|
| 462 |
+
"node": ">= 0.8"
|
| 463 |
+
}
|
| 464 |
+
},
|
| 465 |
+
"node_modules/engine.io": {
|
| 466 |
+
"version": "6.6.5",
|
| 467 |
+
"resolved": "https://registry.npmjs.org/engine.io/-/engine.io-6.6.5.tgz",
|
| 468 |
+
"integrity": "sha512-2RZdgEbXmp5+dVbRm0P7HQUImZpICccJy7rN7Tv+SFa55pH+lxnuw6/K1ZxxBfHoYpSkHLAO92oa8O4SwFXA2A==",
|
| 469 |
+
"license": "MIT",
|
| 470 |
+
"dependencies": {
|
| 471 |
+
"@types/cors": "^2.8.12",
|
| 472 |
+
"@types/node": ">=10.0.0",
|
| 473 |
+
"accepts": "~1.3.4",
|
| 474 |
+
"base64id": "2.0.0",
|
| 475 |
+
"cookie": "~0.7.2",
|
| 476 |
+
"cors": "~2.8.5",
|
| 477 |
+
"debug": "~4.4.1",
|
| 478 |
+
"engine.io-parser": "~5.2.1",
|
| 479 |
+
"ws": "~8.18.3"
|
| 480 |
+
},
|
| 481 |
+
"engines": {
|
| 482 |
+
"node": ">=10.2.0"
|
| 483 |
+
}
|
| 484 |
+
},
|
| 485 |
+
"node_modules/engine.io-parser": {
|
| 486 |
+
"version": "5.2.3",
|
| 487 |
+
"resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-5.2.3.tgz",
|
| 488 |
+
"integrity": "sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==",
|
| 489 |
+
"license": "MIT",
|
| 490 |
+
"engines": {
|
| 491 |
+
"node": ">=10.0.0"
|
| 492 |
+
}
|
| 493 |
+
},
|
| 494 |
+
"node_modules/es-define-property": {
|
| 495 |
+
"version": "1.0.1",
|
| 496 |
+
"resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
|
| 497 |
+
"integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
|
| 498 |
+
"license": "MIT",
|
| 499 |
+
"engines": {
|
| 500 |
+
"node": ">= 0.4"
|
| 501 |
+
}
|
| 502 |
+
},
|
| 503 |
+
"node_modules/es-errors": {
|
| 504 |
+
"version": "1.3.0",
|
| 505 |
+
"resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
|
| 506 |
+
"integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
|
| 507 |
+
"license": "MIT",
|
| 508 |
+
"engines": {
|
| 509 |
+
"node": ">= 0.4"
|
| 510 |
+
}
|
| 511 |
+
},
|
| 512 |
+
"node_modules/es-object-atoms": {
|
| 513 |
+
"version": "1.1.1",
|
| 514 |
+
"resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz",
|
| 515 |
+
"integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==",
|
| 516 |
+
"license": "MIT",
|
| 517 |
+
"dependencies": {
|
| 518 |
+
"es-errors": "^1.3.0"
|
| 519 |
+
},
|
| 520 |
+
"engines": {
|
| 521 |
+
"node": ">= 0.4"
|
| 522 |
+
}
|
| 523 |
+
},
|
| 524 |
+
"node_modules/escape-html": {
|
| 525 |
+
"version": "1.0.3",
|
| 526 |
+
"resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
|
| 527 |
+
"integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==",
|
| 528 |
+
"license": "MIT"
|
| 529 |
+
},
|
| 530 |
+
"node_modules/etag": {
|
| 531 |
+
"version": "1.8.1",
|
| 532 |
+
"resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
|
| 533 |
+
"integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
|
| 534 |
+
"license": "MIT",
|
| 535 |
+
"engines": {
|
| 536 |
+
"node": ">= 0.6"
|
| 537 |
+
}
|
| 538 |
+
},
|
| 539 |
+
"node_modules/express": {
|
| 540 |
+
"version": "4.22.1",
|
| 541 |
+
"resolved": "https://registry.npmjs.org/express/-/express-4.22.1.tgz",
|
| 542 |
+
"integrity": "sha512-F2X8g9P1X7uCPZMA3MVf9wcTqlyNp7IhH5qPCI0izhaOIYXaW9L535tGA3qmjRzpH+bZczqq7hVKxTR4NWnu+g==",
|
| 543 |
+
"license": "MIT",
|
| 544 |
+
"dependencies": {
|
| 545 |
+
"accepts": "~1.3.8",
|
| 546 |
+
"array-flatten": "1.1.1",
|
| 547 |
+
"body-parser": "~1.20.3",
|
| 548 |
+
"content-disposition": "~0.5.4",
|
| 549 |
+
"content-type": "~1.0.4",
|
| 550 |
+
"cookie": "~0.7.1",
|
| 551 |
+
"cookie-signature": "~1.0.6",
|
| 552 |
+
"debug": "2.6.9",
|
| 553 |
+
"depd": "2.0.0",
|
| 554 |
+
"encodeurl": "~2.0.0",
|
| 555 |
+
"escape-html": "~1.0.3",
|
| 556 |
+
"etag": "~1.8.1",
|
| 557 |
+
"finalhandler": "~1.3.1",
|
| 558 |
+
"fresh": "~0.5.2",
|
| 559 |
+
"http-errors": "~2.0.0",
|
| 560 |
+
"merge-descriptors": "1.0.3",
|
| 561 |
+
"methods": "~1.1.2",
|
| 562 |
+
"on-finished": "~2.4.1",
|
| 563 |
+
"parseurl": "~1.3.3",
|
| 564 |
+
"path-to-regexp": "~0.1.12",
|
| 565 |
+
"proxy-addr": "~2.0.7",
|
| 566 |
+
"qs": "~6.14.0",
|
| 567 |
+
"range-parser": "~1.2.1",
|
| 568 |
+
"safe-buffer": "5.2.1",
|
| 569 |
+
"send": "~0.19.0",
|
| 570 |
+
"serve-static": "~1.16.2",
|
| 571 |
+
"setprototypeof": "1.2.0",
|
| 572 |
+
"statuses": "~2.0.1",
|
| 573 |
+
"type-is": "~1.6.18",
|
| 574 |
+
"utils-merge": "1.0.1",
|
| 575 |
+
"vary": "~1.1.2"
|
| 576 |
+
},
|
| 577 |
+
"engines": {
|
| 578 |
+
"node": ">= 0.10.0"
|
| 579 |
+
},
|
| 580 |
+
"funding": {
|
| 581 |
+
"type": "opencollective",
|
| 582 |
+
"url": "https://opencollective.com/express"
|
| 583 |
+
}
|
| 584 |
+
},
|
| 585 |
+
"node_modules/express/node_modules/debug": {
|
| 586 |
+
"version": "2.6.9",
|
| 587 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 588 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 589 |
+
"license": "MIT",
|
| 590 |
+
"dependencies": {
|
| 591 |
+
"ms": "2.0.0"
|
| 592 |
+
}
|
| 593 |
+
},
|
| 594 |
+
"node_modules/express/node_modules/ms": {
|
| 595 |
+
"version": "2.0.0",
|
| 596 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 597 |
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
| 598 |
+
"license": "MIT"
|
| 599 |
+
},
|
| 600 |
+
"node_modules/fill-range": {
|
| 601 |
+
"version": "7.1.1",
|
| 602 |
+
"resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
| 603 |
+
"integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
| 604 |
+
"license": "MIT",
|
| 605 |
+
"dependencies": {
|
| 606 |
+
"to-regex-range": "^5.0.1"
|
| 607 |
+
},
|
| 608 |
+
"engines": {
|
| 609 |
+
"node": ">=8"
|
| 610 |
+
}
|
| 611 |
+
},
|
| 612 |
+
"node_modules/finalhandler": {
|
| 613 |
+
"version": "1.3.2",
|
| 614 |
+
"resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.2.tgz",
|
| 615 |
+
"integrity": "sha512-aA4RyPcd3badbdABGDuTXCMTtOneUCAYH/gxoYRTZlIJdF0YPWuGqiAsIrhNnnqdXGswYk6dGujem4w80UJFhg==",
|
| 616 |
+
"license": "MIT",
|
| 617 |
+
"dependencies": {
|
| 618 |
+
"debug": "2.6.9",
|
| 619 |
+
"encodeurl": "~2.0.0",
|
| 620 |
+
"escape-html": "~1.0.3",
|
| 621 |
+
"on-finished": "~2.4.1",
|
| 622 |
+
"parseurl": "~1.3.3",
|
| 623 |
+
"statuses": "~2.0.2",
|
| 624 |
+
"unpipe": "~1.0.0"
|
| 625 |
+
},
|
| 626 |
+
"engines": {
|
| 627 |
+
"node": ">= 0.8"
|
| 628 |
+
}
|
| 629 |
+
},
|
| 630 |
+
"node_modules/finalhandler/node_modules/debug": {
|
| 631 |
+
"version": "2.6.9",
|
| 632 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 633 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 634 |
+
"license": "MIT",
|
| 635 |
+
"dependencies": {
|
| 636 |
+
"ms": "2.0.0"
|
| 637 |
+
}
|
| 638 |
+
},
|
| 639 |
+
"node_modules/finalhandler/node_modules/ms": {
|
| 640 |
+
"version": "2.0.0",
|
| 641 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 642 |
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
| 643 |
+
"license": "MIT"
|
| 644 |
+
},
|
| 645 |
+
"node_modules/forwarded": {
|
| 646 |
+
"version": "0.2.0",
|
| 647 |
+
"resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
|
| 648 |
+
"integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
|
| 649 |
+
"license": "MIT",
|
| 650 |
+
"engines": {
|
| 651 |
+
"node": ">= 0.6"
|
| 652 |
+
}
|
| 653 |
+
},
|
| 654 |
+
"node_modules/fresh": {
|
| 655 |
+
"version": "0.5.2",
|
| 656 |
+
"resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
|
| 657 |
+
"integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
|
| 658 |
+
"license": "MIT",
|
| 659 |
+
"engines": {
|
| 660 |
+
"node": ">= 0.6"
|
| 661 |
+
}
|
| 662 |
+
},
|
| 663 |
+
"node_modules/fsevents": {
|
| 664 |
+
"version": "2.3.3",
|
| 665 |
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
| 666 |
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
| 667 |
+
"hasInstallScript": true,
|
| 668 |
+
"license": "MIT",
|
| 669 |
+
"optional": true,
|
| 670 |
+
"os": [
|
| 671 |
+
"darwin"
|
| 672 |
+
],
|
| 673 |
+
"engines": {
|
| 674 |
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
| 675 |
+
}
|
| 676 |
+
},
|
| 677 |
+
"node_modules/function-bind": {
|
| 678 |
+
"version": "1.1.2",
|
| 679 |
+
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
|
| 680 |
+
"integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
|
| 681 |
+
"license": "MIT",
|
| 682 |
+
"funding": {
|
| 683 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 684 |
+
}
|
| 685 |
+
},
|
| 686 |
+
"node_modules/get-intrinsic": {
|
| 687 |
+
"version": "1.3.0",
|
| 688 |
+
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz",
|
| 689 |
+
"integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==",
|
| 690 |
+
"license": "MIT",
|
| 691 |
+
"dependencies": {
|
| 692 |
+
"call-bind-apply-helpers": "^1.0.2",
|
| 693 |
+
"es-define-property": "^1.0.1",
|
| 694 |
+
"es-errors": "^1.3.0",
|
| 695 |
+
"es-object-atoms": "^1.1.1",
|
| 696 |
+
"function-bind": "^1.1.2",
|
| 697 |
+
"get-proto": "^1.0.1",
|
| 698 |
+
"gopd": "^1.2.0",
|
| 699 |
+
"has-symbols": "^1.1.0",
|
| 700 |
+
"hasown": "^2.0.2",
|
| 701 |
+
"math-intrinsics": "^1.1.0"
|
| 702 |
+
},
|
| 703 |
+
"engines": {
|
| 704 |
+
"node": ">= 0.4"
|
| 705 |
+
},
|
| 706 |
+
"funding": {
|
| 707 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 708 |
+
}
|
| 709 |
+
},
|
| 710 |
+
"node_modules/get-proto": {
|
| 711 |
+
"version": "1.0.1",
|
| 712 |
+
"resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
|
| 713 |
+
"integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
|
| 714 |
+
"license": "MIT",
|
| 715 |
+
"dependencies": {
|
| 716 |
+
"dunder-proto": "^1.0.1",
|
| 717 |
+
"es-object-atoms": "^1.0.0"
|
| 718 |
+
},
|
| 719 |
+
"engines": {
|
| 720 |
+
"node": ">= 0.4"
|
| 721 |
+
}
|
| 722 |
+
},
|
| 723 |
+
"node_modules/glob-parent": {
|
| 724 |
+
"version": "5.1.2",
|
| 725 |
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
| 726 |
+
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
| 727 |
+
"license": "ISC",
|
| 728 |
+
"dependencies": {
|
| 729 |
+
"is-glob": "^4.0.1"
|
| 730 |
+
},
|
| 731 |
+
"engines": {
|
| 732 |
+
"node": ">= 6"
|
| 733 |
+
}
|
| 734 |
+
},
|
| 735 |
+
"node_modules/gopd": {
|
| 736 |
+
"version": "1.2.0",
|
| 737 |
+
"resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
|
| 738 |
+
"integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
|
| 739 |
+
"license": "MIT",
|
| 740 |
+
"engines": {
|
| 741 |
+
"node": ">= 0.4"
|
| 742 |
+
},
|
| 743 |
+
"funding": {
|
| 744 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 745 |
+
}
|
| 746 |
+
},
|
| 747 |
+
"node_modules/has-flag": {
|
| 748 |
+
"version": "3.0.0",
|
| 749 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
| 750 |
+
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
|
| 751 |
+
"license": "MIT",
|
| 752 |
+
"engines": {
|
| 753 |
+
"node": ">=4"
|
| 754 |
+
}
|
| 755 |
+
},
|
| 756 |
+
"node_modules/has-symbols": {
|
| 757 |
+
"version": "1.1.0",
|
| 758 |
+
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
|
| 759 |
+
"integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
|
| 760 |
+
"license": "MIT",
|
| 761 |
+
"engines": {
|
| 762 |
+
"node": ">= 0.4"
|
| 763 |
+
},
|
| 764 |
+
"funding": {
|
| 765 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 766 |
+
}
|
| 767 |
+
},
|
| 768 |
+
"node_modules/hasown": {
|
| 769 |
+
"version": "2.0.2",
|
| 770 |
+
"resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
|
| 771 |
+
"integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
|
| 772 |
+
"license": "MIT",
|
| 773 |
+
"dependencies": {
|
| 774 |
+
"function-bind": "^1.1.2"
|
| 775 |
+
},
|
| 776 |
+
"engines": {
|
| 777 |
+
"node": ">= 0.4"
|
| 778 |
+
}
|
| 779 |
+
},
|
| 780 |
+
"node_modules/http-errors": {
|
| 781 |
+
"version": "2.0.1",
|
| 782 |
+
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz",
|
| 783 |
+
"integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==",
|
| 784 |
+
"license": "MIT",
|
| 785 |
+
"dependencies": {
|
| 786 |
+
"depd": "~2.0.0",
|
| 787 |
+
"inherits": "~2.0.4",
|
| 788 |
+
"setprototypeof": "~1.2.0",
|
| 789 |
+
"statuses": "~2.0.2",
|
| 790 |
+
"toidentifier": "~1.0.1"
|
| 791 |
+
},
|
| 792 |
+
"engines": {
|
| 793 |
+
"node": ">= 0.8"
|
| 794 |
+
},
|
| 795 |
+
"funding": {
|
| 796 |
+
"type": "opencollective",
|
| 797 |
+
"url": "https://opencollective.com/express"
|
| 798 |
+
}
|
| 799 |
+
},
|
| 800 |
+
"node_modules/iconv-lite": {
|
| 801 |
+
"version": "0.4.24",
|
| 802 |
+
"resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
|
| 803 |
+
"integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
|
| 804 |
+
"license": "MIT",
|
| 805 |
+
"dependencies": {
|
| 806 |
+
"safer-buffer": ">= 2.1.2 < 3"
|
| 807 |
+
},
|
| 808 |
+
"engines": {
|
| 809 |
+
"node": ">=0.10.0"
|
| 810 |
+
}
|
| 811 |
+
},
|
| 812 |
+
"node_modules/ignore-by-default": {
|
| 813 |
+
"version": "1.0.1",
|
| 814 |
+
"resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
|
| 815 |
+
"integrity": "sha512-Ius2VYcGNk7T90CppJqcIkS5ooHUZyIQK+ClZfMfMNFEF9VSE73Fq+906u/CWu92x4gzZMWOwfFYckPObzdEbA==",
|
| 816 |
+
"license": "ISC"
|
| 817 |
+
},
|
| 818 |
+
"node_modules/inherits": {
|
| 819 |
+
"version": "2.0.4",
|
| 820 |
+
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
| 821 |
+
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==",
|
| 822 |
+
"license": "ISC"
|
| 823 |
+
},
|
| 824 |
+
"node_modules/ip-address": {
|
| 825 |
+
"version": "10.1.0",
|
| 826 |
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.1.0.tgz",
|
| 827 |
+
"integrity": "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==",
|
| 828 |
+
"license": "MIT",
|
| 829 |
+
"engines": {
|
| 830 |
+
"node": ">= 12"
|
| 831 |
+
}
|
| 832 |
+
},
|
| 833 |
+
"node_modules/ipaddr.js": {
|
| 834 |
+
"version": "1.9.1",
|
| 835 |
+
"resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
|
| 836 |
+
"integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
|
| 837 |
+
"license": "MIT",
|
| 838 |
+
"engines": {
|
| 839 |
+
"node": ">= 0.10"
|
| 840 |
+
}
|
| 841 |
+
},
|
| 842 |
+
"node_modules/is-binary-path": {
|
| 843 |
+
"version": "2.1.0",
|
| 844 |
+
"resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
|
| 845 |
+
"integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
|
| 846 |
+
"license": "MIT",
|
| 847 |
+
"dependencies": {
|
| 848 |
+
"binary-extensions": "^2.0.0"
|
| 849 |
+
},
|
| 850 |
+
"engines": {
|
| 851 |
+
"node": ">=8"
|
| 852 |
+
}
|
| 853 |
+
},
|
| 854 |
+
"node_modules/is-extglob": {
|
| 855 |
+
"version": "2.1.1",
|
| 856 |
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
| 857 |
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
| 858 |
+
"license": "MIT",
|
| 859 |
+
"engines": {
|
| 860 |
+
"node": ">=0.10.0"
|
| 861 |
+
}
|
| 862 |
+
},
|
| 863 |
+
"node_modules/is-glob": {
|
| 864 |
+
"version": "4.0.3",
|
| 865 |
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
| 866 |
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
| 867 |
+
"license": "MIT",
|
| 868 |
+
"dependencies": {
|
| 869 |
+
"is-extglob": "^2.1.1"
|
| 870 |
+
},
|
| 871 |
+
"engines": {
|
| 872 |
+
"node": ">=0.10.0"
|
| 873 |
+
}
|
| 874 |
+
},
|
| 875 |
+
"node_modules/is-number": {
|
| 876 |
+
"version": "7.0.0",
|
| 877 |
+
"resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
| 878 |
+
"integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
| 879 |
+
"license": "MIT",
|
| 880 |
+
"engines": {
|
| 881 |
+
"node": ">=0.12.0"
|
| 882 |
+
}
|
| 883 |
+
},
|
| 884 |
+
"node_modules/isarray": {
|
| 885 |
+
"version": "1.0.0",
|
| 886 |
+
"resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
|
| 887 |
+
"integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==",
|
| 888 |
+
"license": "MIT"
|
| 889 |
+
},
|
| 890 |
+
"node_modules/jsonwebtoken": {
|
| 891 |
+
"version": "9.0.3",
|
| 892 |
+
"resolved": "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-9.0.3.tgz",
|
| 893 |
+
"integrity": "sha512-MT/xP0CrubFRNLNKvxJ2BYfy53Zkm++5bX9dtuPbqAeQpTVe0MQTFhao8+Cp//EmJp244xt6Drw/GVEGCUj40g==",
|
| 894 |
+
"license": "MIT",
|
| 895 |
+
"dependencies": {
|
| 896 |
+
"jws": "^4.0.1",
|
| 897 |
+
"lodash.includes": "^4.3.0",
|
| 898 |
+
"lodash.isboolean": "^3.0.3",
|
| 899 |
+
"lodash.isinteger": "^4.0.4",
|
| 900 |
+
"lodash.isnumber": "^3.0.3",
|
| 901 |
+
"lodash.isplainobject": "^4.0.6",
|
| 902 |
+
"lodash.isstring": "^4.0.1",
|
| 903 |
+
"lodash.once": "^4.0.0",
|
| 904 |
+
"ms": "^2.1.1",
|
| 905 |
+
"semver": "^7.5.4"
|
| 906 |
+
},
|
| 907 |
+
"engines": {
|
| 908 |
+
"node": ">=12",
|
| 909 |
+
"npm": ">=6"
|
| 910 |
+
}
|
| 911 |
+
},
|
| 912 |
+
"node_modules/jwa": {
|
| 913 |
+
"version": "2.0.1",
|
| 914 |
+
"resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz",
|
| 915 |
+
"integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==",
|
| 916 |
+
"license": "MIT",
|
| 917 |
+
"dependencies": {
|
| 918 |
+
"buffer-equal-constant-time": "^1.0.1",
|
| 919 |
+
"ecdsa-sig-formatter": "1.0.11",
|
| 920 |
+
"safe-buffer": "^5.0.1"
|
| 921 |
+
}
|
| 922 |
+
},
|
| 923 |
+
"node_modules/jws": {
|
| 924 |
+
"version": "4.0.1",
|
| 925 |
+
"resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz",
|
| 926 |
+
"integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==",
|
| 927 |
+
"license": "MIT",
|
| 928 |
+
"dependencies": {
|
| 929 |
+
"jwa": "^2.0.1",
|
| 930 |
+
"safe-buffer": "^5.0.1"
|
| 931 |
+
}
|
| 932 |
+
},
|
| 933 |
+
"node_modules/kareem": {
|
| 934 |
+
"version": "2.5.1",
|
| 935 |
+
"resolved": "https://registry.npmjs.org/kareem/-/kareem-2.5.1.tgz",
|
| 936 |
+
"integrity": "sha512-7jFxRVm+jD+rkq3kY0iZDJfsO2/t4BBPeEb2qKn2lR/9KhuksYk5hxzfRYWMPV8P/x2d0kHD306YyWLzjjH+uA==",
|
| 937 |
+
"license": "Apache-2.0",
|
| 938 |
+
"engines": {
|
| 939 |
+
"node": ">=12.0.0"
|
| 940 |
+
}
|
| 941 |
+
},
|
| 942 |
+
"node_modules/lodash.includes": {
|
| 943 |
+
"version": "4.3.0",
|
| 944 |
+
"resolved": "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz",
|
| 945 |
+
"integrity": "sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==",
|
| 946 |
+
"license": "MIT"
|
| 947 |
+
},
|
| 948 |
+
"node_modules/lodash.isboolean": {
|
| 949 |
+
"version": "3.0.3",
|
| 950 |
+
"resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz",
|
| 951 |
+
"integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==",
|
| 952 |
+
"license": "MIT"
|
| 953 |
+
},
|
| 954 |
+
"node_modules/lodash.isinteger": {
|
| 955 |
+
"version": "4.0.4",
|
| 956 |
+
"resolved": "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz",
|
| 957 |
+
"integrity": "sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==",
|
| 958 |
+
"license": "MIT"
|
| 959 |
+
},
|
| 960 |
+
"node_modules/lodash.isnumber": {
|
| 961 |
+
"version": "3.0.3",
|
| 962 |
+
"resolved": "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz",
|
| 963 |
+
"integrity": "sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==",
|
| 964 |
+
"license": "MIT"
|
| 965 |
+
},
|
| 966 |
+
"node_modules/lodash.isplainobject": {
|
| 967 |
+
"version": "4.0.6",
|
| 968 |
+
"resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz",
|
| 969 |
+
"integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==",
|
| 970 |
+
"license": "MIT"
|
| 971 |
+
},
|
| 972 |
+
"node_modules/lodash.isstring": {
|
| 973 |
+
"version": "4.0.1",
|
| 974 |
+
"resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz",
|
| 975 |
+
"integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==",
|
| 976 |
+
"license": "MIT"
|
| 977 |
+
},
|
| 978 |
+
"node_modules/lodash.once": {
|
| 979 |
+
"version": "4.1.1",
|
| 980 |
+
"resolved": "https://registry.npmjs.org/lodash.once/-/lodash.once-4.1.1.tgz",
|
| 981 |
+
"integrity": "sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==",
|
| 982 |
+
"license": "MIT"
|
| 983 |
+
},
|
| 984 |
+
"node_modules/math-intrinsics": {
|
| 985 |
+
"version": "1.1.0",
|
| 986 |
+
"resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
|
| 987 |
+
"integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
|
| 988 |
+
"license": "MIT",
|
| 989 |
+
"engines": {
|
| 990 |
+
"node": ">= 0.4"
|
| 991 |
+
}
|
| 992 |
+
},
|
| 993 |
+
"node_modules/media-typer": {
|
| 994 |
+
"version": "0.3.0",
|
| 995 |
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
|
| 996 |
+
"integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
|
| 997 |
+
"license": "MIT",
|
| 998 |
+
"engines": {
|
| 999 |
+
"node": ">= 0.6"
|
| 1000 |
+
}
|
| 1001 |
+
},
|
| 1002 |
+
"node_modules/memory-pager": {
|
| 1003 |
+
"version": "1.5.0",
|
| 1004 |
+
"resolved": "https://registry.npmjs.org/memory-pager/-/memory-pager-1.5.0.tgz",
|
| 1005 |
+
"integrity": "sha512-ZS4Bp4r/Zoeq6+NLJpP+0Zzm0pR8whtGPf1XExKLJBAczGMnSi3It14OiNCStjQjM6NU1okjQGSxgEZN8eBYKg==",
|
| 1006 |
+
"license": "MIT",
|
| 1007 |
+
"optional": true
|
| 1008 |
+
},
|
| 1009 |
+
"node_modules/merge-descriptors": {
|
| 1010 |
+
"version": "1.0.3",
|
| 1011 |
+
"resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz",
|
| 1012 |
+
"integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==",
|
| 1013 |
+
"license": "MIT",
|
| 1014 |
+
"funding": {
|
| 1015 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
| 1016 |
+
}
|
| 1017 |
+
},
|
| 1018 |
+
"node_modules/methods": {
|
| 1019 |
+
"version": "1.1.2",
|
| 1020 |
+
"resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
|
| 1021 |
+
"integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
|
| 1022 |
+
"license": "MIT",
|
| 1023 |
+
"engines": {
|
| 1024 |
+
"node": ">= 0.6"
|
| 1025 |
+
}
|
| 1026 |
+
},
|
| 1027 |
+
"node_modules/mime": {
|
| 1028 |
+
"version": "1.6.0",
|
| 1029 |
+
"resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
|
| 1030 |
+
"integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
|
| 1031 |
+
"license": "MIT",
|
| 1032 |
+
"bin": {
|
| 1033 |
+
"mime": "cli.js"
|
| 1034 |
+
},
|
| 1035 |
+
"engines": {
|
| 1036 |
+
"node": ">=4"
|
| 1037 |
+
}
|
| 1038 |
+
},
|
| 1039 |
+
"node_modules/mime-db": {
|
| 1040 |
+
"version": "1.52.0",
|
| 1041 |
+
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
|
| 1042 |
+
"integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
|
| 1043 |
+
"license": "MIT",
|
| 1044 |
+
"engines": {
|
| 1045 |
+
"node": ">= 0.6"
|
| 1046 |
+
}
|
| 1047 |
+
},
|
| 1048 |
+
"node_modules/mime-types": {
|
| 1049 |
+
"version": "2.1.35",
|
| 1050 |
+
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
|
| 1051 |
+
"integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
|
| 1052 |
+
"license": "MIT",
|
| 1053 |
+
"dependencies": {
|
| 1054 |
+
"mime-db": "1.52.0"
|
| 1055 |
+
},
|
| 1056 |
+
"engines": {
|
| 1057 |
+
"node": ">= 0.6"
|
| 1058 |
+
}
|
| 1059 |
+
},
|
| 1060 |
+
"node_modules/minimatch": {
|
| 1061 |
+
"version": "10.2.4",
|
| 1062 |
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.4.tgz",
|
| 1063 |
+
"integrity": "sha512-oRjTw/97aTBN0RHbYCdtF1MQfvusSIBQM0IZEgzl6426+8jSC0nF1a/GmnVLpfB9yyr6g6FTqWqiZVbxrtaCIg==",
|
| 1064 |
+
"license": "BlueOak-1.0.0",
|
| 1065 |
+
"dependencies": {
|
| 1066 |
+
"brace-expansion": "^5.0.2"
|
| 1067 |
+
},
|
| 1068 |
+
"engines": {
|
| 1069 |
+
"node": "18 || 20 || >=22"
|
| 1070 |
+
},
|
| 1071 |
+
"funding": {
|
| 1072 |
+
"url": "https://github.com/sponsors/isaacs"
|
| 1073 |
+
}
|
| 1074 |
+
},
|
| 1075 |
+
"node_modules/minimist": {
|
| 1076 |
+
"version": "1.2.8",
|
| 1077 |
+
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
|
| 1078 |
+
"integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
|
| 1079 |
+
"license": "MIT",
|
| 1080 |
+
"funding": {
|
| 1081 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1082 |
+
}
|
| 1083 |
+
},
|
| 1084 |
+
"node_modules/mkdirp": {
|
| 1085 |
+
"version": "0.5.6",
|
| 1086 |
+
"resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz",
|
| 1087 |
+
"integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==",
|
| 1088 |
+
"license": "MIT",
|
| 1089 |
+
"dependencies": {
|
| 1090 |
+
"minimist": "^1.2.6"
|
| 1091 |
+
},
|
| 1092 |
+
"bin": {
|
| 1093 |
+
"mkdirp": "bin/cmd.js"
|
| 1094 |
+
}
|
| 1095 |
+
},
|
| 1096 |
+
"node_modules/mongodb": {
|
| 1097 |
+
"version": "5.9.2",
|
| 1098 |
+
"resolved": "https://registry.npmjs.org/mongodb/-/mongodb-5.9.2.tgz",
|
| 1099 |
+
"integrity": "sha512-H60HecKO4Bc+7dhOv4sJlgvenK4fQNqqUIlXxZYQNbfEWSALGAwGoyJd/0Qwk4TttFXUOHJ2ZJQe/52ScaUwtQ==",
|
| 1100 |
+
"license": "Apache-2.0",
|
| 1101 |
+
"dependencies": {
|
| 1102 |
+
"bson": "^5.5.0",
|
| 1103 |
+
"mongodb-connection-string-url": "^2.6.0",
|
| 1104 |
+
"socks": "^2.7.1"
|
| 1105 |
+
},
|
| 1106 |
+
"engines": {
|
| 1107 |
+
"node": ">=14.20.1"
|
| 1108 |
+
},
|
| 1109 |
+
"optionalDependencies": {
|
| 1110 |
+
"@mongodb-js/saslprep": "^1.1.0"
|
| 1111 |
+
},
|
| 1112 |
+
"peerDependencies": {
|
| 1113 |
+
"@aws-sdk/credential-providers": "^3.188.0",
|
| 1114 |
+
"@mongodb-js/zstd": "^1.0.0",
|
| 1115 |
+
"kerberos": "^1.0.0 || ^2.0.0",
|
| 1116 |
+
"mongodb-client-encryption": ">=2.3.0 <3",
|
| 1117 |
+
"snappy": "^7.2.2"
|
| 1118 |
+
},
|
| 1119 |
+
"peerDependenciesMeta": {
|
| 1120 |
+
"@aws-sdk/credential-providers": {
|
| 1121 |
+
"optional": true
|
| 1122 |
+
},
|
| 1123 |
+
"@mongodb-js/zstd": {
|
| 1124 |
+
"optional": true
|
| 1125 |
+
},
|
| 1126 |
+
"kerberos": {
|
| 1127 |
+
"optional": true
|
| 1128 |
+
},
|
| 1129 |
+
"mongodb-client-encryption": {
|
| 1130 |
+
"optional": true
|
| 1131 |
+
},
|
| 1132 |
+
"snappy": {
|
| 1133 |
+
"optional": true
|
| 1134 |
+
}
|
| 1135 |
+
}
|
| 1136 |
+
},
|
| 1137 |
+
"node_modules/mongodb-connection-string-url": {
|
| 1138 |
+
"version": "2.6.0",
|
| 1139 |
+
"resolved": "https://registry.npmjs.org/mongodb-connection-string-url/-/mongodb-connection-string-url-2.6.0.tgz",
|
| 1140 |
+
"integrity": "sha512-WvTZlI9ab0QYtTYnuMLgobULWhokRjtC7db9LtcVfJ+Hsnyr5eo6ZtNAt3Ly24XZScGMelOcGtm7lSn0332tPQ==",
|
| 1141 |
+
"license": "Apache-2.0",
|
| 1142 |
+
"dependencies": {
|
| 1143 |
+
"@types/whatwg-url": "^8.2.1",
|
| 1144 |
+
"whatwg-url": "^11.0.0"
|
| 1145 |
+
}
|
| 1146 |
+
},
|
| 1147 |
+
"node_modules/mongoose": {
|
| 1148 |
+
"version": "7.8.9",
|
| 1149 |
+
"resolved": "https://registry.npmjs.org/mongoose/-/mongoose-7.8.9.tgz",
|
| 1150 |
+
"integrity": "sha512-V3GBAJbmOAdzEP8murOvlg7q1szlbe4jTBRyW+JBHRduJBe7F9dk5eyqJDTuYrdBcOOWfLbr6AgXrDK7F0/o5A==",
|
| 1151 |
+
"license": "MIT",
|
| 1152 |
+
"dependencies": {
|
| 1153 |
+
"bson": "^5.5.0",
|
| 1154 |
+
"kareem": "2.5.1",
|
| 1155 |
+
"mongodb": "5.9.2",
|
| 1156 |
+
"mpath": "0.9.0",
|
| 1157 |
+
"mquery": "5.0.0",
|
| 1158 |
+
"ms": "2.1.3",
|
| 1159 |
+
"sift": "16.0.1"
|
| 1160 |
+
},
|
| 1161 |
+
"engines": {
|
| 1162 |
+
"node": ">=14.20.1"
|
| 1163 |
+
},
|
| 1164 |
+
"funding": {
|
| 1165 |
+
"type": "opencollective",
|
| 1166 |
+
"url": "https://opencollective.com/mongoose"
|
| 1167 |
+
}
|
| 1168 |
+
},
|
| 1169 |
+
"node_modules/mpath": {
|
| 1170 |
+
"version": "0.9.0",
|
| 1171 |
+
"resolved": "https://registry.npmjs.org/mpath/-/mpath-0.9.0.tgz",
|
| 1172 |
+
"integrity": "sha512-ikJRQTk8hw5DEoFVxHG1Gn9T/xcjtdnOKIU1JTmGjZZlg9LST2mBLmcX3/ICIbgJydT2GOc15RnNy5mHmzfSew==",
|
| 1173 |
+
"license": "MIT",
|
| 1174 |
+
"engines": {
|
| 1175 |
+
"node": ">=4.0.0"
|
| 1176 |
+
}
|
| 1177 |
+
},
|
| 1178 |
+
"node_modules/mquery": {
|
| 1179 |
+
"version": "5.0.0",
|
| 1180 |
+
"resolved": "https://registry.npmjs.org/mquery/-/mquery-5.0.0.tgz",
|
| 1181 |
+
"integrity": "sha512-iQMncpmEK8R8ncT8HJGsGc9Dsp8xcgYMVSbs5jgnm1lFHTZqMJTUWTDx1LBO8+mK3tPNZWFLBghQEIOULSTHZg==",
|
| 1182 |
+
"license": "MIT",
|
| 1183 |
+
"dependencies": {
|
| 1184 |
+
"debug": "4.x"
|
| 1185 |
+
},
|
| 1186 |
+
"engines": {
|
| 1187 |
+
"node": ">=14.0.0"
|
| 1188 |
+
}
|
| 1189 |
+
},
|
| 1190 |
+
"node_modules/ms": {
|
| 1191 |
+
"version": "2.1.3",
|
| 1192 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
| 1193 |
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
| 1194 |
+
"license": "MIT"
|
| 1195 |
+
},
|
| 1196 |
+
"node_modules/multer": {
|
| 1197 |
+
"version": "1.4.5-lts.2",
|
| 1198 |
+
"resolved": "https://registry.npmjs.org/multer/-/multer-1.4.5-lts.2.tgz",
|
| 1199 |
+
"integrity": "sha512-VzGiVigcG9zUAoCNU+xShztrlr1auZOlurXynNvO9GiWD1/mTBbUljOKY+qMeazBqXgRnjzeEgJI/wyjJUHg9A==",
|
| 1200 |
+
"deprecated": "Multer 1.x is impacted by a number of vulnerabilities, which have been patched in 2.x. You should upgrade to the latest 2.x version.",
|
| 1201 |
+
"license": "MIT",
|
| 1202 |
+
"dependencies": {
|
| 1203 |
+
"append-field": "^1.0.0",
|
| 1204 |
+
"busboy": "^1.0.0",
|
| 1205 |
+
"concat-stream": "^1.5.2",
|
| 1206 |
+
"mkdirp": "^0.5.4",
|
| 1207 |
+
"object-assign": "^4.1.1",
|
| 1208 |
+
"type-is": "^1.6.4",
|
| 1209 |
+
"xtend": "^4.0.0"
|
| 1210 |
+
},
|
| 1211 |
+
"engines": {
|
| 1212 |
+
"node": ">= 6.0.0"
|
| 1213 |
+
}
|
| 1214 |
+
},
|
| 1215 |
+
"node_modules/negotiator": {
|
| 1216 |
+
"version": "0.6.3",
|
| 1217 |
+
"resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
|
| 1218 |
+
"integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
|
| 1219 |
+
"license": "MIT",
|
| 1220 |
+
"engines": {
|
| 1221 |
+
"node": ">= 0.6"
|
| 1222 |
+
}
|
| 1223 |
+
},
|
| 1224 |
+
"node_modules/nodemon": {
|
| 1225 |
+
"version": "3.1.14",
|
| 1226 |
+
"resolved": "https://registry.npmjs.org/nodemon/-/nodemon-3.1.14.tgz",
|
| 1227 |
+
"integrity": "sha512-jakjZi93UtB3jHMWsXL68FXSAosbLfY0In5gtKq3niLSkrWznrVBzXFNOEMJUfc9+Ke7SHWoAZsiMkNP3vq6Jw==",
|
| 1228 |
+
"license": "MIT",
|
| 1229 |
+
"dependencies": {
|
| 1230 |
+
"chokidar": "^3.5.2",
|
| 1231 |
+
"debug": "^4",
|
| 1232 |
+
"ignore-by-default": "^1.0.1",
|
| 1233 |
+
"minimatch": "^10.2.1",
|
| 1234 |
+
"pstree.remy": "^1.1.8",
|
| 1235 |
+
"semver": "^7.5.3",
|
| 1236 |
+
"simple-update-notifier": "^2.0.0",
|
| 1237 |
+
"supports-color": "^5.5.0",
|
| 1238 |
+
"touch": "^3.1.0",
|
| 1239 |
+
"undefsafe": "^2.0.5"
|
| 1240 |
+
},
|
| 1241 |
+
"bin": {
|
| 1242 |
+
"nodemon": "bin/nodemon.js"
|
| 1243 |
+
},
|
| 1244 |
+
"engines": {
|
| 1245 |
+
"node": ">=10"
|
| 1246 |
+
},
|
| 1247 |
+
"funding": {
|
| 1248 |
+
"type": "opencollective",
|
| 1249 |
+
"url": "https://opencollective.com/nodemon"
|
| 1250 |
+
}
|
| 1251 |
+
},
|
| 1252 |
+
"node_modules/normalize-path": {
|
| 1253 |
+
"version": "3.0.0",
|
| 1254 |
+
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
|
| 1255 |
+
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
|
| 1256 |
+
"license": "MIT",
|
| 1257 |
+
"engines": {
|
| 1258 |
+
"node": ">=0.10.0"
|
| 1259 |
+
}
|
| 1260 |
+
},
|
| 1261 |
+
"node_modules/object-assign": {
|
| 1262 |
+
"version": "4.1.1",
|
| 1263 |
+
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
| 1264 |
+
"integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
|
| 1265 |
+
"license": "MIT",
|
| 1266 |
+
"engines": {
|
| 1267 |
+
"node": ">=0.10.0"
|
| 1268 |
+
}
|
| 1269 |
+
},
|
| 1270 |
+
"node_modules/object-inspect": {
|
| 1271 |
+
"version": "1.13.4",
|
| 1272 |
+
"resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz",
|
| 1273 |
+
"integrity": "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==",
|
| 1274 |
+
"license": "MIT",
|
| 1275 |
+
"engines": {
|
| 1276 |
+
"node": ">= 0.4"
|
| 1277 |
+
},
|
| 1278 |
+
"funding": {
|
| 1279 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1280 |
+
}
|
| 1281 |
+
},
|
| 1282 |
+
"node_modules/on-finished": {
|
| 1283 |
+
"version": "2.4.1",
|
| 1284 |
+
"resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
|
| 1285 |
+
"integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
|
| 1286 |
+
"license": "MIT",
|
| 1287 |
+
"dependencies": {
|
| 1288 |
+
"ee-first": "1.1.1"
|
| 1289 |
+
},
|
| 1290 |
+
"engines": {
|
| 1291 |
+
"node": ">= 0.8"
|
| 1292 |
+
}
|
| 1293 |
+
},
|
| 1294 |
+
"node_modules/parseurl": {
|
| 1295 |
+
"version": "1.3.3",
|
| 1296 |
+
"resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
|
| 1297 |
+
"integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
|
| 1298 |
+
"license": "MIT",
|
| 1299 |
+
"engines": {
|
| 1300 |
+
"node": ">= 0.8"
|
| 1301 |
+
}
|
| 1302 |
+
},
|
| 1303 |
+
"node_modules/path-to-regexp": {
|
| 1304 |
+
"version": "0.1.12",
|
| 1305 |
+
"resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz",
|
| 1306 |
+
"integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==",
|
| 1307 |
+
"license": "MIT"
|
| 1308 |
+
},
|
| 1309 |
+
"node_modules/picomatch": {
|
| 1310 |
+
"version": "2.3.1",
|
| 1311 |
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
| 1312 |
+
"integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
| 1313 |
+
"license": "MIT",
|
| 1314 |
+
"engines": {
|
| 1315 |
+
"node": ">=8.6"
|
| 1316 |
+
},
|
| 1317 |
+
"funding": {
|
| 1318 |
+
"url": "https://github.com/sponsors/jonschlinkert"
|
| 1319 |
+
}
|
| 1320 |
+
},
|
| 1321 |
+
"node_modules/process-nextick-args": {
|
| 1322 |
+
"version": "2.0.1",
|
| 1323 |
+
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
|
| 1324 |
+
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
|
| 1325 |
+
"license": "MIT"
|
| 1326 |
+
},
|
| 1327 |
+
"node_modules/proxy-addr": {
|
| 1328 |
+
"version": "2.0.7",
|
| 1329 |
+
"resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
|
| 1330 |
+
"integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
|
| 1331 |
+
"license": "MIT",
|
| 1332 |
+
"dependencies": {
|
| 1333 |
+
"forwarded": "0.2.0",
|
| 1334 |
+
"ipaddr.js": "1.9.1"
|
| 1335 |
+
},
|
| 1336 |
+
"engines": {
|
| 1337 |
+
"node": ">= 0.10"
|
| 1338 |
+
}
|
| 1339 |
+
},
|
| 1340 |
+
"node_modules/pstree.remy": {
|
| 1341 |
+
"version": "1.1.8",
|
| 1342 |
+
"resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
|
| 1343 |
+
"integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
|
| 1344 |
+
"license": "MIT"
|
| 1345 |
+
},
|
| 1346 |
+
"node_modules/punycode": {
|
| 1347 |
+
"version": "2.3.1",
|
| 1348 |
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
| 1349 |
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
| 1350 |
+
"license": "MIT",
|
| 1351 |
+
"engines": {
|
| 1352 |
+
"node": ">=6"
|
| 1353 |
+
}
|
| 1354 |
+
},
|
| 1355 |
+
"node_modules/qs": {
|
| 1356 |
+
"version": "6.14.2",
|
| 1357 |
+
"resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz",
|
| 1358 |
+
"integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==",
|
| 1359 |
+
"license": "BSD-3-Clause",
|
| 1360 |
+
"dependencies": {
|
| 1361 |
+
"side-channel": "^1.1.0"
|
| 1362 |
+
},
|
| 1363 |
+
"engines": {
|
| 1364 |
+
"node": ">=0.6"
|
| 1365 |
+
},
|
| 1366 |
+
"funding": {
|
| 1367 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1368 |
+
}
|
| 1369 |
+
},
|
| 1370 |
+
"node_modules/range-parser": {
|
| 1371 |
+
"version": "1.2.1",
|
| 1372 |
+
"resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
|
| 1373 |
+
"integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
|
| 1374 |
+
"license": "MIT",
|
| 1375 |
+
"engines": {
|
| 1376 |
+
"node": ">= 0.6"
|
| 1377 |
+
}
|
| 1378 |
+
},
|
| 1379 |
+
"node_modules/raw-body": {
|
| 1380 |
+
"version": "2.5.3",
|
| 1381 |
+
"resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.3.tgz",
|
| 1382 |
+
"integrity": "sha512-s4VSOf6yN0rvbRZGxs8Om5CWj6seneMwK3oDb4lWDH0UPhWcxwOWw5+qk24bxq87szX1ydrwylIOp2uG1ojUpA==",
|
| 1383 |
+
"license": "MIT",
|
| 1384 |
+
"dependencies": {
|
| 1385 |
+
"bytes": "~3.1.2",
|
| 1386 |
+
"http-errors": "~2.0.1",
|
| 1387 |
+
"iconv-lite": "~0.4.24",
|
| 1388 |
+
"unpipe": "~1.0.0"
|
| 1389 |
+
},
|
| 1390 |
+
"engines": {
|
| 1391 |
+
"node": ">= 0.8"
|
| 1392 |
+
}
|
| 1393 |
+
},
|
| 1394 |
+
"node_modules/readable-stream": {
|
| 1395 |
+
"version": "2.3.8",
|
| 1396 |
+
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
|
| 1397 |
+
"integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
|
| 1398 |
+
"license": "MIT",
|
| 1399 |
+
"dependencies": {
|
| 1400 |
+
"core-util-is": "~1.0.0",
|
| 1401 |
+
"inherits": "~2.0.3",
|
| 1402 |
+
"isarray": "~1.0.0",
|
| 1403 |
+
"process-nextick-args": "~2.0.0",
|
| 1404 |
+
"safe-buffer": "~5.1.1",
|
| 1405 |
+
"string_decoder": "~1.1.1",
|
| 1406 |
+
"util-deprecate": "~1.0.1"
|
| 1407 |
+
}
|
| 1408 |
+
},
|
| 1409 |
+
"node_modules/readable-stream/node_modules/safe-buffer": {
|
| 1410 |
+
"version": "5.1.2",
|
| 1411 |
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
| 1412 |
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
| 1413 |
+
"license": "MIT"
|
| 1414 |
+
},
|
| 1415 |
+
"node_modules/readdirp": {
|
| 1416 |
+
"version": "3.6.0",
|
| 1417 |
+
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
| 1418 |
+
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
| 1419 |
+
"license": "MIT",
|
| 1420 |
+
"dependencies": {
|
| 1421 |
+
"picomatch": "^2.2.1"
|
| 1422 |
+
},
|
| 1423 |
+
"engines": {
|
| 1424 |
+
"node": ">=8.10.0"
|
| 1425 |
+
}
|
| 1426 |
+
},
|
| 1427 |
+
"node_modules/safe-buffer": {
|
| 1428 |
+
"version": "5.2.1",
|
| 1429 |
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
| 1430 |
+
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
|
| 1431 |
+
"funding": [
|
| 1432 |
+
{
|
| 1433 |
+
"type": "github",
|
| 1434 |
+
"url": "https://github.com/sponsors/feross"
|
| 1435 |
+
},
|
| 1436 |
+
{
|
| 1437 |
+
"type": "patreon",
|
| 1438 |
+
"url": "https://www.patreon.com/feross"
|
| 1439 |
+
},
|
| 1440 |
+
{
|
| 1441 |
+
"type": "consulting",
|
| 1442 |
+
"url": "https://feross.org/support"
|
| 1443 |
+
}
|
| 1444 |
+
],
|
| 1445 |
+
"license": "MIT"
|
| 1446 |
+
},
|
| 1447 |
+
"node_modules/safer-buffer": {
|
| 1448 |
+
"version": "2.1.2",
|
| 1449 |
+
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
| 1450 |
+
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==",
|
| 1451 |
+
"license": "MIT"
|
| 1452 |
+
},
|
| 1453 |
+
"node_modules/semver": {
|
| 1454 |
+
"version": "7.7.4",
|
| 1455 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
|
| 1456 |
+
"integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
|
| 1457 |
+
"license": "ISC",
|
| 1458 |
+
"bin": {
|
| 1459 |
+
"semver": "bin/semver.js"
|
| 1460 |
+
},
|
| 1461 |
+
"engines": {
|
| 1462 |
+
"node": ">=10"
|
| 1463 |
+
}
|
| 1464 |
+
},
|
| 1465 |
+
"node_modules/send": {
|
| 1466 |
+
"version": "0.19.2",
|
| 1467 |
+
"resolved": "https://registry.npmjs.org/send/-/send-0.19.2.tgz",
|
| 1468 |
+
"integrity": "sha512-VMbMxbDeehAxpOtWJXlcUS5E8iXh6QmN+BkRX1GARS3wRaXEEgzCcB10gTQazO42tpNIya8xIyNx8fll1OFPrg==",
|
| 1469 |
+
"license": "MIT",
|
| 1470 |
+
"dependencies": {
|
| 1471 |
+
"debug": "2.6.9",
|
| 1472 |
+
"depd": "2.0.0",
|
| 1473 |
+
"destroy": "1.2.0",
|
| 1474 |
+
"encodeurl": "~2.0.0",
|
| 1475 |
+
"escape-html": "~1.0.3",
|
| 1476 |
+
"etag": "~1.8.1",
|
| 1477 |
+
"fresh": "~0.5.2",
|
| 1478 |
+
"http-errors": "~2.0.1",
|
| 1479 |
+
"mime": "1.6.0",
|
| 1480 |
+
"ms": "2.1.3",
|
| 1481 |
+
"on-finished": "~2.4.1",
|
| 1482 |
+
"range-parser": "~1.2.1",
|
| 1483 |
+
"statuses": "~2.0.2"
|
| 1484 |
+
},
|
| 1485 |
+
"engines": {
|
| 1486 |
+
"node": ">= 0.8.0"
|
| 1487 |
+
}
|
| 1488 |
+
},
|
| 1489 |
+
"node_modules/send/node_modules/debug": {
|
| 1490 |
+
"version": "2.6.9",
|
| 1491 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
|
| 1492 |
+
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
|
| 1493 |
+
"license": "MIT",
|
| 1494 |
+
"dependencies": {
|
| 1495 |
+
"ms": "2.0.0"
|
| 1496 |
+
}
|
| 1497 |
+
},
|
| 1498 |
+
"node_modules/send/node_modules/debug/node_modules/ms": {
|
| 1499 |
+
"version": "2.0.0",
|
| 1500 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
| 1501 |
+
"integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==",
|
| 1502 |
+
"license": "MIT"
|
| 1503 |
+
},
|
| 1504 |
+
"node_modules/serve-static": {
|
| 1505 |
+
"version": "1.16.3",
|
| 1506 |
+
"resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.3.tgz",
|
| 1507 |
+
"integrity": "sha512-x0RTqQel6g5SY7Lg6ZreMmsOzncHFU7nhnRWkKgWuMTu5NN0DR5oruckMqRvacAN9d5w6ARnRBXl9xhDCgfMeA==",
|
| 1508 |
+
"license": "MIT",
|
| 1509 |
+
"dependencies": {
|
| 1510 |
+
"encodeurl": "~2.0.0",
|
| 1511 |
+
"escape-html": "~1.0.3",
|
| 1512 |
+
"parseurl": "~1.3.3",
|
| 1513 |
+
"send": "~0.19.1"
|
| 1514 |
+
},
|
| 1515 |
+
"engines": {
|
| 1516 |
+
"node": ">= 0.8.0"
|
| 1517 |
+
}
|
| 1518 |
+
},
|
| 1519 |
+
"node_modules/setprototypeof": {
|
| 1520 |
+
"version": "1.2.0",
|
| 1521 |
+
"resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
|
| 1522 |
+
"integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==",
|
| 1523 |
+
"license": "ISC"
|
| 1524 |
+
},
|
| 1525 |
+
"node_modules/side-channel": {
|
| 1526 |
+
"version": "1.1.0",
|
| 1527 |
+
"resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
|
| 1528 |
+
"integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
|
| 1529 |
+
"license": "MIT",
|
| 1530 |
+
"dependencies": {
|
| 1531 |
+
"es-errors": "^1.3.0",
|
| 1532 |
+
"object-inspect": "^1.13.3",
|
| 1533 |
+
"side-channel-list": "^1.0.0",
|
| 1534 |
+
"side-channel-map": "^1.0.1",
|
| 1535 |
+
"side-channel-weakmap": "^1.0.2"
|
| 1536 |
+
},
|
| 1537 |
+
"engines": {
|
| 1538 |
+
"node": ">= 0.4"
|
| 1539 |
+
},
|
| 1540 |
+
"funding": {
|
| 1541 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1542 |
+
}
|
| 1543 |
+
},
|
| 1544 |
+
"node_modules/side-channel-list": {
|
| 1545 |
+
"version": "1.0.0",
|
| 1546 |
+
"resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
|
| 1547 |
+
"integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
|
| 1548 |
+
"license": "MIT",
|
| 1549 |
+
"dependencies": {
|
| 1550 |
+
"es-errors": "^1.3.0",
|
| 1551 |
+
"object-inspect": "^1.13.3"
|
| 1552 |
+
},
|
| 1553 |
+
"engines": {
|
| 1554 |
+
"node": ">= 0.4"
|
| 1555 |
+
},
|
| 1556 |
+
"funding": {
|
| 1557 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1558 |
+
}
|
| 1559 |
+
},
|
| 1560 |
+
"node_modules/side-channel-map": {
|
| 1561 |
+
"version": "1.0.1",
|
| 1562 |
+
"resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
|
| 1563 |
+
"integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
|
| 1564 |
+
"license": "MIT",
|
| 1565 |
+
"dependencies": {
|
| 1566 |
+
"call-bound": "^1.0.2",
|
| 1567 |
+
"es-errors": "^1.3.0",
|
| 1568 |
+
"get-intrinsic": "^1.2.5",
|
| 1569 |
+
"object-inspect": "^1.13.3"
|
| 1570 |
+
},
|
| 1571 |
+
"engines": {
|
| 1572 |
+
"node": ">= 0.4"
|
| 1573 |
+
},
|
| 1574 |
+
"funding": {
|
| 1575 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1576 |
+
}
|
| 1577 |
+
},
|
| 1578 |
+
"node_modules/side-channel-weakmap": {
|
| 1579 |
+
"version": "1.0.2",
|
| 1580 |
+
"resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
|
| 1581 |
+
"integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
|
| 1582 |
+
"license": "MIT",
|
| 1583 |
+
"dependencies": {
|
| 1584 |
+
"call-bound": "^1.0.2",
|
| 1585 |
+
"es-errors": "^1.3.0",
|
| 1586 |
+
"get-intrinsic": "^1.2.5",
|
| 1587 |
+
"object-inspect": "^1.13.3",
|
| 1588 |
+
"side-channel-map": "^1.0.1"
|
| 1589 |
+
},
|
| 1590 |
+
"engines": {
|
| 1591 |
+
"node": ">= 0.4"
|
| 1592 |
+
},
|
| 1593 |
+
"funding": {
|
| 1594 |
+
"url": "https://github.com/sponsors/ljharb"
|
| 1595 |
+
}
|
| 1596 |
+
},
|
| 1597 |
+
"node_modules/sift": {
|
| 1598 |
+
"version": "16.0.1",
|
| 1599 |
+
"resolved": "https://registry.npmjs.org/sift/-/sift-16.0.1.tgz",
|
| 1600 |
+
"integrity": "sha512-Wv6BjQ5zbhW7VFefWusVP33T/EM0vYikCaQ2qR8yULbsilAT8/wQaXvuQ3ptGLpoKx+lihJE3y2UTgKDyyNHZQ==",
|
| 1601 |
+
"license": "MIT"
|
| 1602 |
+
},
|
| 1603 |
+
"node_modules/simple-update-notifier": {
|
| 1604 |
+
"version": "2.0.0",
|
| 1605 |
+
"resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz",
|
| 1606 |
+
"integrity": "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==",
|
| 1607 |
+
"license": "MIT",
|
| 1608 |
+
"dependencies": {
|
| 1609 |
+
"semver": "^7.5.3"
|
| 1610 |
+
},
|
| 1611 |
+
"engines": {
|
| 1612 |
+
"node": ">=10"
|
| 1613 |
+
}
|
| 1614 |
+
},
|
| 1615 |
+
"node_modules/smart-buffer": {
|
| 1616 |
+
"version": "4.2.0",
|
| 1617 |
+
"resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz",
|
| 1618 |
+
"integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==",
|
| 1619 |
+
"license": "MIT",
|
| 1620 |
+
"engines": {
|
| 1621 |
+
"node": ">= 6.0.0",
|
| 1622 |
+
"npm": ">= 3.0.0"
|
| 1623 |
+
}
|
| 1624 |
+
},
|
| 1625 |
+
"node_modules/socket.io": {
|
| 1626 |
+
"version": "4.8.3",
|
| 1627 |
+
"resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.8.3.tgz",
|
| 1628 |
+
"integrity": "sha512-2Dd78bqzzjE6KPkD5fHZmDAKRNe3J15q+YHDrIsy9WEkqttc7GY+kT9OBLSMaPbQaEd0x1BjcmtMtXkfpc+T5A==",
|
| 1629 |
+
"license": "MIT",
|
| 1630 |
+
"dependencies": {
|
| 1631 |
+
"accepts": "~1.3.4",
|
| 1632 |
+
"base64id": "~2.0.0",
|
| 1633 |
+
"cors": "~2.8.5",
|
| 1634 |
+
"debug": "~4.4.1",
|
| 1635 |
+
"engine.io": "~6.6.0",
|
| 1636 |
+
"socket.io-adapter": "~2.5.2",
|
| 1637 |
+
"socket.io-parser": "~4.2.4"
|
| 1638 |
+
},
|
| 1639 |
+
"engines": {
|
| 1640 |
+
"node": ">=10.2.0"
|
| 1641 |
+
}
|
| 1642 |
+
},
|
| 1643 |
+
"node_modules/socket.io-adapter": {
|
| 1644 |
+
"version": "2.5.6",
|
| 1645 |
+
"resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-2.5.6.tgz",
|
| 1646 |
+
"integrity": "sha512-DkkO/dz7MGln0dHn5bmN3pPy+JmywNICWrJqVWiVOyvXjWQFIv9c2h24JrQLLFJ2aQVQf/Cvl1vblnd4r2apLQ==",
|
| 1647 |
+
"license": "MIT",
|
| 1648 |
+
"dependencies": {
|
| 1649 |
+
"debug": "~4.4.1",
|
| 1650 |
+
"ws": "~8.18.3"
|
| 1651 |
+
}
|
| 1652 |
+
},
|
| 1653 |
+
"node_modules/socket.io-parser": {
|
| 1654 |
+
"version": "4.2.5",
|
| 1655 |
+
"resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-4.2.5.tgz",
|
| 1656 |
+
"integrity": "sha512-bPMmpy/5WWKHea5Y/jYAP6k74A+hvmRCQaJuJB6I/ML5JZq/KfNieUVo/3Mh7SAqn7TyFdIo6wqYHInG1MU1bQ==",
|
| 1657 |
+
"license": "MIT",
|
| 1658 |
+
"dependencies": {
|
| 1659 |
+
"@socket.io/component-emitter": "~3.1.0",
|
| 1660 |
+
"debug": "~4.4.1"
|
| 1661 |
+
},
|
| 1662 |
+
"engines": {
|
| 1663 |
+
"node": ">=10.0.0"
|
| 1664 |
+
}
|
| 1665 |
+
},
|
| 1666 |
+
"node_modules/socks": {
|
| 1667 |
+
"version": "2.8.7",
|
| 1668 |
+
"resolved": "https://registry.npmjs.org/socks/-/socks-2.8.7.tgz",
|
| 1669 |
+
"integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==",
|
| 1670 |
+
"license": "MIT",
|
| 1671 |
+
"dependencies": {
|
| 1672 |
+
"ip-address": "^10.0.1",
|
| 1673 |
+
"smart-buffer": "^4.2.0"
|
| 1674 |
+
},
|
| 1675 |
+
"engines": {
|
| 1676 |
+
"node": ">= 10.0.0",
|
| 1677 |
+
"npm": ">= 3.0.0"
|
| 1678 |
+
}
|
| 1679 |
+
},
|
| 1680 |
+
"node_modules/sparse-bitfield": {
|
| 1681 |
+
"version": "3.0.3",
|
| 1682 |
+
"resolved": "https://registry.npmjs.org/sparse-bitfield/-/sparse-bitfield-3.0.3.tgz",
|
| 1683 |
+
"integrity": "sha512-kvzhi7vqKTfkh0PZU+2D2PIllw2ymqJKujUcyPMd9Y75Nv4nPbGJZXNhxsgdQab2BmlDct1YnfQCguEvHr7VsQ==",
|
| 1684 |
+
"license": "MIT",
|
| 1685 |
+
"optional": true,
|
| 1686 |
+
"dependencies": {
|
| 1687 |
+
"memory-pager": "^1.0.2"
|
| 1688 |
+
}
|
| 1689 |
+
},
|
| 1690 |
+
"node_modules/statuses": {
|
| 1691 |
+
"version": "2.0.2",
|
| 1692 |
+
"resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz",
|
| 1693 |
+
"integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==",
|
| 1694 |
+
"license": "MIT",
|
| 1695 |
+
"engines": {
|
| 1696 |
+
"node": ">= 0.8"
|
| 1697 |
+
}
|
| 1698 |
+
},
|
| 1699 |
+
"node_modules/streamsearch": {
|
| 1700 |
+
"version": "1.1.0",
|
| 1701 |
+
"resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
|
| 1702 |
+
"integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
|
| 1703 |
+
"engines": {
|
| 1704 |
+
"node": ">=10.0.0"
|
| 1705 |
+
}
|
| 1706 |
+
},
|
| 1707 |
+
"node_modules/string_decoder": {
|
| 1708 |
+
"version": "1.1.1",
|
| 1709 |
+
"resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
|
| 1710 |
+
"integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
|
| 1711 |
+
"license": "MIT",
|
| 1712 |
+
"dependencies": {
|
| 1713 |
+
"safe-buffer": "~5.1.0"
|
| 1714 |
+
}
|
| 1715 |
+
},
|
| 1716 |
+
"node_modules/string_decoder/node_modules/safe-buffer": {
|
| 1717 |
+
"version": "5.1.2",
|
| 1718 |
+
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
|
| 1719 |
+
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==",
|
| 1720 |
+
"license": "MIT"
|
| 1721 |
+
},
|
| 1722 |
+
"node_modules/supports-color": {
|
| 1723 |
+
"version": "5.5.0",
|
| 1724 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
| 1725 |
+
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
| 1726 |
+
"license": "MIT",
|
| 1727 |
+
"dependencies": {
|
| 1728 |
+
"has-flag": "^3.0.0"
|
| 1729 |
+
},
|
| 1730 |
+
"engines": {
|
| 1731 |
+
"node": ">=4"
|
| 1732 |
+
}
|
| 1733 |
+
},
|
| 1734 |
+
"node_modules/to-regex-range": {
|
| 1735 |
+
"version": "5.0.1",
|
| 1736 |
+
"resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
| 1737 |
+
"integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
| 1738 |
+
"license": "MIT",
|
| 1739 |
+
"dependencies": {
|
| 1740 |
+
"is-number": "^7.0.0"
|
| 1741 |
+
},
|
| 1742 |
+
"engines": {
|
| 1743 |
+
"node": ">=8.0"
|
| 1744 |
+
}
|
| 1745 |
+
},
|
| 1746 |
+
"node_modules/toidentifier": {
|
| 1747 |
+
"version": "1.0.1",
|
| 1748 |
+
"resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
|
| 1749 |
+
"integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
|
| 1750 |
+
"license": "MIT",
|
| 1751 |
+
"engines": {
|
| 1752 |
+
"node": ">=0.6"
|
| 1753 |
+
}
|
| 1754 |
+
},
|
| 1755 |
+
"node_modules/touch": {
|
| 1756 |
+
"version": "3.1.1",
|
| 1757 |
+
"resolved": "https://registry.npmjs.org/touch/-/touch-3.1.1.tgz",
|
| 1758 |
+
"integrity": "sha512-r0eojU4bI8MnHr8c5bNo7lJDdI2qXlWWJk6a9EAFG7vbhTjElYhBVS3/miuE0uOuoLdb8Mc/rVfsmm6eo5o9GA==",
|
| 1759 |
+
"license": "ISC",
|
| 1760 |
+
"bin": {
|
| 1761 |
+
"nodetouch": "bin/nodetouch.js"
|
| 1762 |
+
}
|
| 1763 |
+
},
|
| 1764 |
+
"node_modules/tr46": {
|
| 1765 |
+
"version": "3.0.0",
|
| 1766 |
+
"resolved": "https://registry.npmjs.org/tr46/-/tr46-3.0.0.tgz",
|
| 1767 |
+
"integrity": "sha512-l7FvfAHlcmulp8kr+flpQZmVwtu7nfRV7NZujtN0OqES8EL4O4e0qqzL0DC5gAvx/ZC/9lk6rhcUwYvkBnBnYA==",
|
| 1768 |
+
"license": "MIT",
|
| 1769 |
+
"dependencies": {
|
| 1770 |
+
"punycode": "^2.1.1"
|
| 1771 |
+
},
|
| 1772 |
+
"engines": {
|
| 1773 |
+
"node": ">=12"
|
| 1774 |
+
}
|
| 1775 |
+
},
|
| 1776 |
+
"node_modules/type-is": {
|
| 1777 |
+
"version": "1.6.18",
|
| 1778 |
+
"resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
|
| 1779 |
+
"integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
|
| 1780 |
+
"license": "MIT",
|
| 1781 |
+
"dependencies": {
|
| 1782 |
+
"media-typer": "0.3.0",
|
| 1783 |
+
"mime-types": "~2.1.24"
|
| 1784 |
+
},
|
| 1785 |
+
"engines": {
|
| 1786 |
+
"node": ">= 0.6"
|
| 1787 |
+
}
|
| 1788 |
+
},
|
| 1789 |
+
"node_modules/typedarray": {
|
| 1790 |
+
"version": "0.0.6",
|
| 1791 |
+
"resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz",
|
| 1792 |
+
"integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==",
|
| 1793 |
+
"license": "MIT"
|
| 1794 |
+
},
|
| 1795 |
+
"node_modules/undefsafe": {
|
| 1796 |
+
"version": "2.0.5",
|
| 1797 |
+
"resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
|
| 1798 |
+
"integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
|
| 1799 |
+
"license": "MIT"
|
| 1800 |
+
},
|
| 1801 |
+
"node_modules/undici-types": {
|
| 1802 |
+
"version": "7.18.2",
|
| 1803 |
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz",
|
| 1804 |
+
"integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==",
|
| 1805 |
+
"license": "MIT"
|
| 1806 |
+
},
|
| 1807 |
+
"node_modules/unpipe": {
|
| 1808 |
+
"version": "1.0.0",
|
| 1809 |
+
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
|
| 1810 |
+
"integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
|
| 1811 |
+
"license": "MIT",
|
| 1812 |
+
"engines": {
|
| 1813 |
+
"node": ">= 0.8"
|
| 1814 |
+
}
|
| 1815 |
+
},
|
| 1816 |
+
"node_modules/util-deprecate": {
|
| 1817 |
+
"version": "1.0.2",
|
| 1818 |
+
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
|
| 1819 |
+
"integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==",
|
| 1820 |
+
"license": "MIT"
|
| 1821 |
+
},
|
| 1822 |
+
"node_modules/utils-merge": {
|
| 1823 |
+
"version": "1.0.1",
|
| 1824 |
+
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
|
| 1825 |
+
"integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==",
|
| 1826 |
+
"license": "MIT",
|
| 1827 |
+
"engines": {
|
| 1828 |
+
"node": ">= 0.4.0"
|
| 1829 |
+
}
|
| 1830 |
+
},
|
| 1831 |
+
"node_modules/uuid": {
|
| 1832 |
+
"version": "9.0.1",
|
| 1833 |
+
"resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
|
| 1834 |
+
"integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
|
| 1835 |
+
"funding": [
|
| 1836 |
+
"https://github.com/sponsors/broofa",
|
| 1837 |
+
"https://github.com/sponsors/ctavan"
|
| 1838 |
+
],
|
| 1839 |
+
"license": "MIT",
|
| 1840 |
+
"bin": {
|
| 1841 |
+
"uuid": "dist/bin/uuid"
|
| 1842 |
+
}
|
| 1843 |
+
},
|
| 1844 |
+
"node_modules/vary": {
|
| 1845 |
+
"version": "1.1.2",
|
| 1846 |
+
"resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
|
| 1847 |
+
"integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==",
|
| 1848 |
+
"license": "MIT",
|
| 1849 |
+
"engines": {
|
| 1850 |
+
"node": ">= 0.8"
|
| 1851 |
+
}
|
| 1852 |
+
},
|
| 1853 |
+
"node_modules/webidl-conversions": {
|
| 1854 |
+
"version": "7.0.0",
|
| 1855 |
+
"resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz",
|
| 1856 |
+
"integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==",
|
| 1857 |
+
"license": "BSD-2-Clause",
|
| 1858 |
+
"engines": {
|
| 1859 |
+
"node": ">=12"
|
| 1860 |
+
}
|
| 1861 |
+
},
|
| 1862 |
+
"node_modules/whatwg-url": {
|
| 1863 |
+
"version": "11.0.0",
|
| 1864 |
+
"resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-11.0.0.tgz",
|
| 1865 |
+
"integrity": "sha512-RKT8HExMpoYx4igMiVMY83lN6UeITKJlBQ+vR/8ZJ8OCdSiN3RwCq+9gH0+Xzj0+5IrM6i4j/6LuvzbZIQgEcQ==",
|
| 1866 |
+
"license": "MIT",
|
| 1867 |
+
"dependencies": {
|
| 1868 |
+
"tr46": "^3.0.0",
|
| 1869 |
+
"webidl-conversions": "^7.0.0"
|
| 1870 |
+
},
|
| 1871 |
+
"engines": {
|
| 1872 |
+
"node": ">=12"
|
| 1873 |
+
}
|
| 1874 |
+
},
|
| 1875 |
+
"node_modules/ws": {
|
| 1876 |
+
"version": "8.18.3",
|
| 1877 |
+
"resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz",
|
| 1878 |
+
"integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==",
|
| 1879 |
+
"license": "MIT",
|
| 1880 |
+
"engines": {
|
| 1881 |
+
"node": ">=10.0.0"
|
| 1882 |
+
},
|
| 1883 |
+
"peerDependencies": {
|
| 1884 |
+
"bufferutil": "^4.0.1",
|
| 1885 |
+
"utf-8-validate": ">=5.0.2"
|
| 1886 |
+
},
|
| 1887 |
+
"peerDependenciesMeta": {
|
| 1888 |
+
"bufferutil": {
|
| 1889 |
+
"optional": true
|
| 1890 |
+
},
|
| 1891 |
+
"utf-8-validate": {
|
| 1892 |
+
"optional": true
|
| 1893 |
+
}
|
| 1894 |
+
}
|
| 1895 |
+
},
|
| 1896 |
+
"node_modules/xtend": {
|
| 1897 |
+
"version": "4.0.2",
|
| 1898 |
+
"resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
|
| 1899 |
+
"integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
|
| 1900 |
+
"license": "MIT",
|
| 1901 |
+
"engines": {
|
| 1902 |
+
"node": ">=0.4"
|
| 1903 |
+
}
|
| 1904 |
+
}
|
| 1905 |
+
}
|
| 1906 |
+
}
|
package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "discord-like-app",
|
| 3 |
+
"version": "2.0.0",
|
| 4 |
+
"main": "server.js",
|
| 5 |
+
"scripts": {
|
| 6 |
+
"dev": "nodemon server.js",
|
| 7 |
+
"start": "node server.js",
|
| 8 |
+
"init-db": "node init-db.js",
|
| 9 |
+
"https": "powershell -ExecutionPolicy Bypass -File ./setup-https.ps1"
|
| 10 |
+
},
|
| 11 |
+
"dependencies": {
|
| 12 |
+
"express": "^4.18.2",
|
| 13 |
+
"socket.io": "^4.5.4",
|
| 14 |
+
"mongoose": "^7.5.0",
|
| 15 |
+
"jsonwebtoken": "^9.0.2",
|
| 16 |
+
"bcryptjs": "^2.4.3",
|
| 17 |
+
"multer": "^1.4.5-lts.1",
|
| 18 |
+
"dotenv": "^16.3.1",
|
| 19 |
+
"cors": "^2.8.5",
|
| 20 |
+
"body-parser": "^1.20.2",
|
| 21 |
+
"uuid": "^9.0.0",
|
| 22 |
+
"nodemon": "^3.0.1"
|
| 23 |
+
}
|
| 24 |
+
}
|
railway.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"$schema": "https://railway.app/railway.schema.json",
|
| 3 |
+
"build": {
|
| 4 |
+
"builder": "NIXPACKS"
|
| 5 |
+
},
|
| 6 |
+
"deploy": {
|
| 7 |
+
"startCommand": "npm start",
|
| 8 |
+
"restartPolicyType": "ON_FAILURE",
|
| 9 |
+
"restartPolicyMaxRetries": 10
|
| 10 |
+
}
|
| 11 |
+
}
|
render.yaml
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
services:
|
| 2 |
+
- type: web
|
| 3 |
+
name: ultimate-chat-app
|
| 4 |
+
env: node
|
| 5 |
+
buildCommand: npm install
|
| 6 |
+
startCommand: npm start
|
| 7 |
+
envVars:
|
| 8 |
+
- key: PORT
|
| 9 |
+
value: 10000
|
| 10 |
+
- key: NODE_ENV
|
| 11 |
+
value: production
|
server.js
ADDED
|
@@ -0,0 +1,676 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
const express = require('express');
|
| 2 |
+
const fs = require('fs');
|
| 3 |
+
const os = require('os');
|
| 4 |
+
const path = require('path');
|
| 5 |
+
const http = require('http');
|
| 6 |
+
const https = require('https');
|
| 7 |
+
const mongoose = require('mongoose');
|
| 8 |
+
const jwt = require('jsonwebtoken');
|
| 9 |
+
const bcrypt = require('bcryptjs');
|
| 10 |
+
const multer = require('multer');
|
| 11 |
+
const bodyParser = require('body-parser');
|
| 12 |
+
const { v4: uuidv4 } = require('uuid');
|
| 13 |
+
require('dotenv').config();
|
| 14 |
+
|
| 15 |
+
const app = express();
|
| 16 |
+
|
| 17 |
+
// Middleware
|
| 18 |
+
app.use(bodyParser.json({ limit: '50mb' }));
|
| 19 |
+
app.use(bodyParser.urlencoded({ limit: '50mb', extended: true }));
|
| 20 |
+
app.use(express.static(__dirname));
|
| 21 |
+
|
| 22 |
+
// MongoDB Connection
|
| 23 |
+
mongoose.connect(process.env.MONGODB_URI || 'mongodb://localhost:27017/discord-app', {
|
| 24 |
+
useNewUrlParser: true,
|
| 25 |
+
useUnifiedTopology: true
|
| 26 |
+
}).then(() => console.log('MongoDB connected')).catch(err => console.error('MongoDB connection error:', err));
|
| 27 |
+
|
| 28 |
+
// ======================== SCHEMAS ========================
|
| 29 |
+
|
| 30 |
+
// User Schema
|
| 31 |
+
const userSchema = new mongoose.Schema({
|
| 32 |
+
username: { type: String, required: true, unique: true },
|
| 33 |
+
email: { type: String, required: true, unique: true },
|
| 34 |
+
password: { type: String, required: true },
|
| 35 |
+
avatar: { type: String, default: '' },
|
| 36 |
+
bio: { type: String, default: 'No bio yet' },
|
| 37 |
+
status: { type: String, enum: ['online', 'offline', 'away'], default: 'offline' },
|
| 38 |
+
friends: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User' }],
|
| 39 |
+
blockedUsers: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User' }],
|
| 40 |
+
coins: { type: Number, default: 1000 },
|
| 41 |
+
createdAt: { type: Date, default: Date.now }
|
| 42 |
+
});
|
| 43 |
+
|
| 44 |
+
// Channel Schema
|
| 45 |
+
const channelSchema = new mongoose.Schema({
|
| 46 |
+
channelId: String,
|
| 47 |
+
name: String,
|
| 48 |
+
type: { type: String, enum: ['text', 'voice'], default: 'text' },
|
| 49 |
+
description: String,
|
| 50 |
+
isPrivate: { type: Boolean, default: false },
|
| 51 |
+
members: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User' }],
|
| 52 |
+
createdBy: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
|
| 53 |
+
createdAt: { type: Date, default: Date.now }
|
| 54 |
+
});
|
| 55 |
+
|
| 56 |
+
// Message Schema
|
| 57 |
+
const messageSchema = new mongoose.Schema({
|
| 58 |
+
messageId: String,
|
| 59 |
+
channelId: String,
|
| 60 |
+
sender: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
|
| 61 |
+
senderUsername: String,
|
| 62 |
+
content: String,
|
| 63 |
+
mediaType: { type: String, enum: ['text', 'image', 'video', 'emoji'], default: 'text' },
|
| 64 |
+
mediaUrl: String,
|
| 65 |
+
timestamp: { type: Date, default: Date.now },
|
| 66 |
+
reactions: [{ emoji: String, users: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User' }] }]
|
| 67 |
+
});
|
| 68 |
+
|
| 69 |
+
// Shop Item Schema
|
| 70 |
+
const shopItemSchema = new mongoose.Schema({
|
| 71 |
+
itemId: String,
|
| 72 |
+
name: String,
|
| 73 |
+
description: String,
|
| 74 |
+
price: Number,
|
| 75 |
+
category: String,
|
| 76 |
+
image: String,
|
| 77 |
+
createdAt: { type: Date, default: Date.now }
|
| 78 |
+
});
|
| 79 |
+
|
| 80 |
+
// User Inventory Schema
|
| 81 |
+
const inventorySchema = new mongoose.Schema({
|
| 82 |
+
userId: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
|
| 83 |
+
itemId: String,
|
| 84 |
+
quantity: { type: Number, default: 1 },
|
| 85 |
+
purchasedAt: { type: Date, default: Date.now }
|
| 86 |
+
});
|
| 87 |
+
|
| 88 |
+
// Friend Request Schema
|
| 89 |
+
const friendRequestSchema = new mongoose.Schema({
|
| 90 |
+
from: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
|
| 91 |
+
to: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
|
| 92 |
+
status: { type: String, enum: ['pending', 'accepted', 'rejected'], default: 'pending' },
|
| 93 |
+
createdAt: { type: Date, default: Date.now }
|
| 94 |
+
});
|
| 95 |
+
|
| 96 |
+
// Direct Message Schema
|
| 97 |
+
const directMessageSchema = new mongoose.Schema({
|
| 98 |
+
messageId: String,
|
| 99 |
+
from: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
|
| 100 |
+
to: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
|
| 101 |
+
fromUsername: String,
|
| 102 |
+
toUsername: String,
|
| 103 |
+
content: String,
|
| 104 |
+
mediaType: { type: String, enum: ['text', 'image', 'video', 'emoji'], default: 'text' },
|
| 105 |
+
mediaUrl: String,
|
| 106 |
+
timestamp: { type: Date, default: Date.now },
|
| 107 |
+
readBy: [{ type: mongoose.Schema.Types.ObjectId, ref: 'User' }]
|
| 108 |
+
});
|
| 109 |
+
|
| 110 |
+
// Models
|
| 111 |
+
const User = mongoose.model('User', userSchema);
|
| 112 |
+
const Channel = mongoose.model('Channel', channelSchema);
|
| 113 |
+
const Message = mongoose.model('Message', messageSchema);
|
| 114 |
+
const ShopItem = mongoose.model('ShopItem', shopItemSchema);
|
| 115 |
+
const Inventory = mongoose.model('Inventory', inventorySchema);
|
| 116 |
+
const FriendRequest = mongoose.model('FriendRequest', friendRequestSchema);
|
| 117 |
+
const DirectMessage = mongoose.model('DirectMessage', directMessageSchema);
|
| 118 |
+
|
| 119 |
+
// Auth Middleware
|
| 120 |
+
const authenticateToken = (req, res, next) => {
|
| 121 |
+
const authHeader = req.headers['authorization'];
|
| 122 |
+
const token = authHeader && authHeader.split(' ')[1];
|
| 123 |
+
|
| 124 |
+
if (!token) return res.status(401).json({ error: 'Access token required' });
|
| 125 |
+
|
| 126 |
+
jwt.verify(token, process.env.JWT_SECRET || 'secret_key', (err, user) => {
|
| 127 |
+
if (err) return res.status(403).json({ error: 'Invalid token' });
|
| 128 |
+
req.user = user;
|
| 129 |
+
next();
|
| 130 |
+
});
|
| 131 |
+
};
|
| 132 |
+
|
| 133 |
+
// ======================== AUTH ROUTES ========================
|
| 134 |
+
|
| 135 |
+
// Register
|
| 136 |
+
app.post('/api/register', async (req, res) => {
|
| 137 |
+
try {
|
| 138 |
+
const { username, email, password } = req.body;
|
| 139 |
+
|
| 140 |
+
if (!username || !email || !password) {
|
| 141 |
+
return res.status(400).json({ error: 'All fields required' });
|
| 142 |
+
}
|
| 143 |
+
|
| 144 |
+
if (await User.findOne({ username })) {
|
| 145 |
+
return res.status(400).json({ error: 'Username already taken' });
|
| 146 |
+
}
|
| 147 |
+
|
| 148 |
+
if (await User.findOne({ email })) {
|
| 149 |
+
return res.status(400).json({ error: 'Email already registered' });
|
| 150 |
+
}
|
| 151 |
+
|
| 152 |
+
const hashedPassword = await bcrypt.hash(password, 10);
|
| 153 |
+
const user = new User({ username, email, password: hashedPassword });
|
| 154 |
+
await user.save();
|
| 155 |
+
|
| 156 |
+
const token = jwt.sign(
|
| 157 |
+
{ userId: user._id, username: user.username },
|
| 158 |
+
process.env.JWT_SECRET || 'secret_key'
|
| 159 |
+
);
|
| 160 |
+
|
| 161 |
+
res.status(201).json({ token, user: { id: user._id, username, email } });
|
| 162 |
+
} catch (error) {
|
| 163 |
+
res.status(500).json({ error: error.message });
|
| 164 |
+
}
|
| 165 |
+
});
|
| 166 |
+
|
| 167 |
+
// Login
|
| 168 |
+
app.post('/api/login', async (req, res) => {
|
| 169 |
+
try {
|
| 170 |
+
const { email, password } = req.body;
|
| 171 |
+
|
| 172 |
+
if (!email || !password) {
|
| 173 |
+
return res.status(400).json({ error: 'Email and password required' });
|
| 174 |
+
}
|
| 175 |
+
|
| 176 |
+
const user = await User.findOne({ email });
|
| 177 |
+
if (!user) {
|
| 178 |
+
return res.status(401).json({ error: 'Invalid credentials' });
|
| 179 |
+
}
|
| 180 |
+
|
| 181 |
+
const validPassword = await bcrypt.compare(password, user.password);
|
| 182 |
+
if (!validPassword) {
|
| 183 |
+
return res.status(401).json({ error: 'Invalid credentials' });
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
const token = jwt.sign(
|
| 187 |
+
{ userId: user._id, username: user.username },
|
| 188 |
+
process.env.JWT_SECRET || 'secret_key'
|
| 189 |
+
);
|
| 190 |
+
|
| 191 |
+
res.json({
|
| 192 |
+
token,
|
| 193 |
+
user: {
|
| 194 |
+
id: user._id,
|
| 195 |
+
username: user.username,
|
| 196 |
+
email: user.email,
|
| 197 |
+
avatar: user.avatar,
|
| 198 |
+
bio: user.bio,
|
| 199 |
+
coins: user.coins
|
| 200 |
+
}
|
| 201 |
+
});
|
| 202 |
+
} catch (error) {
|
| 203 |
+
res.status(500).json({ error: error.message });
|
| 204 |
+
}
|
| 205 |
+
});
|
| 206 |
+
|
| 207 |
+
// ======================== PROFILE ROUTES ========================
|
| 208 |
+
|
| 209 |
+
// Get Profile
|
| 210 |
+
app.get('/api/profile/:userId', authenticateToken, async (req, res) => {
|
| 211 |
+
try {
|
| 212 |
+
const user = await User.findById(req.params.userId).populate('friends');
|
| 213 |
+
if (!user) return res.status(404).json({ error: 'User not found' });
|
| 214 |
+
|
| 215 |
+
res.json({
|
| 216 |
+
id: user._id,
|
| 217 |
+
username: user.username,
|
| 218 |
+
email: user.email,
|
| 219 |
+
avatar: user.avatar,
|
| 220 |
+
bio: user.bio,
|
| 221 |
+
status: user.status,
|
| 222 |
+
coins: user.coins,
|
| 223 |
+
friends: user.friends,
|
| 224 |
+
createdAt: user.createdAt
|
| 225 |
+
});
|
| 226 |
+
} catch (error) {
|
| 227 |
+
res.status(500).json({ error: error.message });
|
| 228 |
+
}
|
| 229 |
+
});
|
| 230 |
+
|
| 231 |
+
// Update Profile
|
| 232 |
+
app.put('/api/profile', authenticateToken, async (req, res) => {
|
| 233 |
+
try {
|
| 234 |
+
const { username, bio, avatar } = req.body;
|
| 235 |
+
const user = await User.findById(req.user.userId);
|
| 236 |
+
|
| 237 |
+
if (!user) return res.status(404).json({ error: 'User not found' });
|
| 238 |
+
|
| 239 |
+
if (username && username !== user.username) {
|
| 240 |
+
if (await User.findOne({ username })) {
|
| 241 |
+
return res.status(400).json({ error: 'Username already taken' });
|
| 242 |
+
}
|
| 243 |
+
user.username = username;
|
| 244 |
+
}
|
| 245 |
+
|
| 246 |
+
if (bio) user.bio = bio;
|
| 247 |
+
if (avatar) user.avatar = avatar;
|
| 248 |
+
|
| 249 |
+
await user.save();
|
| 250 |
+
|
| 251 |
+
res.json({
|
| 252 |
+
message: 'Profile updated',
|
| 253 |
+
user: {
|
| 254 |
+
id: user._id,
|
| 255 |
+
username: user.username,
|
| 256 |
+
avatar: user.avatar,
|
| 257 |
+
bio: user.bio
|
| 258 |
+
}
|
| 259 |
+
});
|
| 260 |
+
} catch (error) {
|
| 261 |
+
res.status(500).json({ error: error.message });
|
| 262 |
+
}
|
| 263 |
+
});
|
| 264 |
+
|
| 265 |
+
// Upload Profile Image
|
| 266 |
+
app.post('/api/profile/upload', authenticateToken, async (req, res) => {
|
| 267 |
+
try {
|
| 268 |
+
const { avatar } = req.body;
|
| 269 |
+
const user = await User.findById(req.user.userId);
|
| 270 |
+
|
| 271 |
+
if (!user) return res.status(404).json({ error: 'User not found' });
|
| 272 |
+
|
| 273 |
+
if (avatar) {
|
| 274 |
+
user.avatar = avatar;
|
| 275 |
+
await user.save();
|
| 276 |
+
}
|
| 277 |
+
|
| 278 |
+
res.json({
|
| 279 |
+
message: 'Profile image updated',
|
| 280 |
+
avatar: user.avatar
|
| 281 |
+
});
|
| 282 |
+
} catch (error) {
|
| 283 |
+
res.status(500).json({ error: error.message });
|
| 284 |
+
}
|
| 285 |
+
});
|
| 286 |
+
|
| 287 |
+
// ======================== FRIENDS ROUTES ========================
|
| 288 |
+
|
| 289 |
+
// Send Friend Request
|
| 290 |
+
app.post('/api/friends/request', authenticateToken, async (req, res) => {
|
| 291 |
+
try {
|
| 292 |
+
const { toUserId } = req.body;
|
| 293 |
+
const request = new FriendRequest({ from: req.user.userId, to: toUserId });
|
| 294 |
+
await request.save();
|
| 295 |
+
res.status(201).json({ message: 'Friend request sent' });
|
| 296 |
+
} catch (error) {
|
| 297 |
+
res.status(500).json({ error: error.message });
|
| 298 |
+
}
|
| 299 |
+
});
|
| 300 |
+
|
| 301 |
+
// Get Friend Requests
|
| 302 |
+
app.get('/api/friends/requests', authenticateToken, async (req, res) => {
|
| 303 |
+
try {
|
| 304 |
+
const requests = await FriendRequest.find({ to: req.user.userId, status: 'pending' })
|
| 305 |
+
.populate('from', 'username avatar');
|
| 306 |
+
res.json(requests);
|
| 307 |
+
} catch (error) {
|
| 308 |
+
res.status(500).json({ error: error.message });
|
| 309 |
+
}
|
| 310 |
+
});
|
| 311 |
+
|
| 312 |
+
// Accept Friend Request
|
| 313 |
+
app.post('/api/friends/accept', authenticateToken, async (req, res) => {
|
| 314 |
+
try {
|
| 315 |
+
const { requestId } = req.body;
|
| 316 |
+
const request = await FriendRequest.findById(requestId);
|
| 317 |
+
|
| 318 |
+
if (!request) return res.status(404).json({ error: 'Request not found' });
|
| 319 |
+
|
| 320 |
+
request.status = 'accepted';
|
| 321 |
+
await request.save();
|
| 322 |
+
|
| 323 |
+
await User.findByIdAndUpdate(request.from, { $addToSet: { friends: request.to } });
|
| 324 |
+
await User.findByIdAndUpdate(request.to, { $addToSet: { friends: request.from } });
|
| 325 |
+
|
| 326 |
+
res.json({ message: 'Friend request accepted' });
|
| 327 |
+
} catch (error) {
|
| 328 |
+
res.status(500).json({ error: error.message });
|
| 329 |
+
}
|
| 330 |
+
});
|
| 331 |
+
|
| 332 |
+
// Get Friends List
|
| 333 |
+
app.get('/api/friends', authenticateToken, async (req, res) => {
|
| 334 |
+
try {
|
| 335 |
+
const user = await User.findById(req.user.userId).populate('friends', 'username avatar status bio');
|
| 336 |
+
res.json(user.friends);
|
| 337 |
+
} catch (error) {
|
| 338 |
+
res.status(500).json({ error: error.message });
|
| 339 |
+
}
|
| 340 |
+
});
|
| 341 |
+
|
| 342 |
+
// ======================== DIRECT MESSAGES ROUTES ========================
|
| 343 |
+
|
| 344 |
+
// Get DMs with a specific friend
|
| 345 |
+
app.get('/api/dms/:friendId', authenticateToken, async (req, res) => {
|
| 346 |
+
try {
|
| 347 |
+
const { friendId } = req.params;
|
| 348 |
+
const messages = await DirectMessage.find({
|
| 349 |
+
$or: [
|
| 350 |
+
{ from: req.user.userId, to: friendId },
|
| 351 |
+
{ from: friendId, to: req.user.userId }
|
| 352 |
+
]
|
| 353 |
+
}).sort({ timestamp: 1 });
|
| 354 |
+
|
| 355 |
+
res.json(messages);
|
| 356 |
+
} catch (error) {
|
| 357 |
+
res.status(500).json({ error: error.message });
|
| 358 |
+
}
|
| 359 |
+
});
|
| 360 |
+
|
| 361 |
+
// Send DM (POST also works in addition to Socket.IO)
|
| 362 |
+
app.post('/api/dms', authenticateToken, async (req, res) => {
|
| 363 |
+
try {
|
| 364 |
+
const { toUserId, content, mediaType, mediaUrl } = req.body;
|
| 365 |
+
const fromUser = await User.findById(req.user.userId);
|
| 366 |
+
const toUser = await User.findById(toUserId);
|
| 367 |
+
|
| 368 |
+
if (!toUser) return res.status(404).json({ error: 'User not found' });
|
| 369 |
+
|
| 370 |
+
// Check if users are friends
|
| 371 |
+
if (!fromUser.friends.includes(toUserId)) {
|
| 372 |
+
return res.status(403).json({ error: 'Can only DM friends' });
|
| 373 |
+
}
|
| 374 |
+
|
| 375 |
+
const dm = new DirectMessage({
|
| 376 |
+
messageId: uuidv4(),
|
| 377 |
+
from: req.user.userId,
|
| 378 |
+
to: toUserId,
|
| 379 |
+
fromUsername: fromUser.username,
|
| 380 |
+
toUsername: toUser.username,
|
| 381 |
+
content,
|
| 382 |
+
mediaType: mediaType || 'text',
|
| 383 |
+
mediaUrl: mediaUrl || null
|
| 384 |
+
});
|
| 385 |
+
|
| 386 |
+
await dm.save();
|
| 387 |
+
res.status(201).json(dm);
|
| 388 |
+
} catch (error) {
|
| 389 |
+
res.status(500).json({ error: error.message });
|
| 390 |
+
}
|
| 391 |
+
});
|
| 392 |
+
|
| 393 |
+
// ======================== SHOP ROUTES ========================
|
| 394 |
+
|
| 395 |
+
// Get Shop Items
|
| 396 |
+
app.get('/api/shop', authenticateToken, async (req, res) => {
|
| 397 |
+
try {
|
| 398 |
+
const items = await ShopItem.find();
|
| 399 |
+
res.json(items);
|
| 400 |
+
} catch (error) {
|
| 401 |
+
res.status(500).json({ error: error.message });
|
| 402 |
+
}
|
| 403 |
+
});
|
| 404 |
+
|
| 405 |
+
// Buy Shop Item
|
| 406 |
+
app.post('/api/shop/buy', authenticateToken, async (req, res) => {
|
| 407 |
+
try {
|
| 408 |
+
const { itemId } = req.body;
|
| 409 |
+
const item = await ShopItem.findById(itemId);
|
| 410 |
+
const user = await User.findById(req.user.userId);
|
| 411 |
+
|
| 412 |
+
if (!item) return res.status(404).json({ error: 'Item not found' });
|
| 413 |
+
if (user.coins < item.price) return res.status(400).json({ error: 'Not enough coins' });
|
| 414 |
+
|
| 415 |
+
user.coins -= item.price;
|
| 416 |
+
await user.save();
|
| 417 |
+
|
| 418 |
+
const inventory = new Inventory({ userId: user._id, itemId: item._id });
|
| 419 |
+
await inventory.save();
|
| 420 |
+
|
| 421 |
+
res.json({ message: 'Item purchased', coins: user.coins });
|
| 422 |
+
} catch (error) {
|
| 423 |
+
res.status(500).json({ error: error.message });
|
| 424 |
+
}
|
| 425 |
+
});
|
| 426 |
+
|
| 427 |
+
// Get User Inventory
|
| 428 |
+
app.get('/api/inventory', authenticateToken, async (req, res) => {
|
| 429 |
+
try {
|
| 430 |
+
const inventory = await Inventory.find({ userId: req.user.userId }).populate('itemId');
|
| 431 |
+
res.json(inventory);
|
| 432 |
+
} catch (error) {
|
| 433 |
+
res.status(500).json({ error: error.message });
|
| 434 |
+
}
|
| 435 |
+
});
|
| 436 |
+
|
| 437 |
+
// ======================== CHANNELS ROUTES ========================
|
| 438 |
+
|
| 439 |
+
// Create Channel
|
| 440 |
+
app.post('/api/channels', authenticateToken, async (req, res) => {
|
| 441 |
+
try {
|
| 442 |
+
const { name, type, description, isPrivate } = req.body;
|
| 443 |
+
const channel = new Channel({
|
| 444 |
+
channelId: uuidv4(),
|
| 445 |
+
name,
|
| 446 |
+
type,
|
| 447 |
+
description,
|
| 448 |
+
isPrivate,
|
| 449 |
+
createdBy: req.user.userId,
|
| 450 |
+
members: [req.user.userId]
|
| 451 |
+
});
|
| 452 |
+
await channel.save();
|
| 453 |
+
res.status(201).json(channel);
|
| 454 |
+
} catch (error) {
|
| 455 |
+
res.status(500).json({ error: error.message });
|
| 456 |
+
}
|
| 457 |
+
});
|
| 458 |
+
|
| 459 |
+
// Get All Channels
|
| 460 |
+
app.get('/api/channels', authenticateToken, async (req, res) => {
|
| 461 |
+
try {
|
| 462 |
+
const channels = await Channel.find({ $or: [{ isPrivate: false }, { members: req.user.userId }] });
|
| 463 |
+
res.json(channels);
|
| 464 |
+
} catch (error) {
|
| 465 |
+
res.status(500).json({ error: error.message });
|
| 466 |
+
}
|
| 467 |
+
});
|
| 468 |
+
|
| 469 |
+
// ======================== SOCKET.IO ========================
|
| 470 |
+
|
| 471 |
+
function createServer(appInstance) {
|
| 472 |
+
const pfxPath = process.env.SSL_PFX_PATH;
|
| 473 |
+
const pfxPassphrase = process.env.SSL_PFX_PASSPHRASE;
|
| 474 |
+
const keyPath = process.env.SSL_KEY_PATH;
|
| 475 |
+
const certPath = process.env.SSL_CERT_PATH;
|
| 476 |
+
|
| 477 |
+
if (pfxPath) {
|
| 478 |
+
const httpsOptions = {
|
| 479 |
+
pfx: fs.readFileSync(path.resolve(pfxPath)),
|
| 480 |
+
passphrase: pfxPassphrase
|
| 481 |
+
};
|
| 482 |
+
return { server: https.createServer(httpsOptions, appInstance), protocol: 'https' };
|
| 483 |
+
}
|
| 484 |
+
|
| 485 |
+
if (keyPath && certPath) {
|
| 486 |
+
const httpsOptions = {
|
| 487 |
+
key: fs.readFileSync(path.resolve(keyPath)),
|
| 488 |
+
cert: fs.readFileSync(path.resolve(certPath))
|
| 489 |
+
};
|
| 490 |
+
return { server: https.createServer(httpsOptions, appInstance), protocol: 'https' };
|
| 491 |
+
}
|
| 492 |
+
|
| 493 |
+
return { server: http.createServer(appInstance), protocol: 'http' };
|
| 494 |
+
}
|
| 495 |
+
|
| 496 |
+
const { server, protocol } = createServer(app);
|
| 497 |
+
const io = require('socket.io')(server, {
|
| 498 |
+
cors: {
|
| 499 |
+
origin: process.env.CORS_ORIGIN ? process.env.CORS_ORIGIN.split(',') : '*',
|
| 500 |
+
methods: ['GET', 'POST']
|
| 501 |
+
}
|
| 502 |
+
});
|
| 503 |
+
|
| 504 |
+
// Store active connections
|
| 505 |
+
const onlineUsers = new Map();
|
| 506 |
+
|
| 507 |
+
io.on('connection', (socket) => {
|
| 508 |
+
console.log('User connected:', socket.id);
|
| 509 |
+
|
| 510 |
+
// User joins with authentication token
|
| 511 |
+
socket.on('join', async (data) => {
|
| 512 |
+
try {
|
| 513 |
+
const decoded = jwt.verify(data.token, process.env.JWT_SECRET || 'secret_key');
|
| 514 |
+
const user = await User.findById(decoded.userId);
|
| 515 |
+
|
| 516 |
+
if (user) {
|
| 517 |
+
socket.userId = decoded.userId;
|
| 518 |
+
socket.username = user.username;
|
| 519 |
+
socket.userAvatar = user.avatar;
|
| 520 |
+
|
| 521 |
+
onlineUsers.set(socket.id, {
|
| 522 |
+
userId: decoded.userId,
|
| 523 |
+
username: user.username,
|
| 524 |
+
avatar: user.avatar,
|
| 525 |
+
status: 'online'
|
| 526 |
+
});
|
| 527 |
+
|
| 528 |
+
user.status = 'online';
|
| 529 |
+
await user.save();
|
| 530 |
+
|
| 531 |
+
// Broadcast updated users list
|
| 532 |
+
io.emit('users update', Array.from(onlineUsers.values()));
|
| 533 |
+
}
|
| 534 |
+
} catch (error) {
|
| 535 |
+
socket.emit('error', 'Authentication failed');
|
| 536 |
+
}
|
| 537 |
+
});
|
| 538 |
+
|
| 539 |
+
// Join a DM room with a friend
|
| 540 |
+
socket.on('join dm', (friendId) => {
|
| 541 |
+
const roomId = [socket.userId, friendId].sort().join('_');
|
| 542 |
+
socket.join(roomId);
|
| 543 |
+
socket.currentDmRoom = roomId;
|
| 544 |
+
});
|
| 545 |
+
|
| 546 |
+
// Leave a DM room
|
| 547 |
+
socket.on('leave dm', (friendId) => {
|
| 548 |
+
const roomId = [socket.userId, friendId].sort().join('_');
|
| 549 |
+
socket.leave(roomId);
|
| 550 |
+
socket.currentDmRoom = null;
|
| 551 |
+
});
|
| 552 |
+
|
| 553 |
+
// Send DM
|
| 554 |
+
socket.on('send dm', async (data) => {
|
| 555 |
+
try {
|
| 556 |
+
const { toUserId, content, mediaType, mediaUrl } = data;
|
| 557 |
+
const fromUser = await User.findById(socket.userId);
|
| 558 |
+
const toUser = await User.findById(toUserId);
|
| 559 |
+
|
| 560 |
+
if (!toUser) {
|
| 561 |
+
socket.emit('error', 'User not found');
|
| 562 |
+
return;
|
| 563 |
+
}
|
| 564 |
+
|
| 565 |
+
// Check they are friends
|
| 566 |
+
if (!fromUser.friends.includes(toUserId)) {
|
| 567 |
+
socket.emit('error', 'Can only DM friends');
|
| 568 |
+
return;
|
| 569 |
+
}
|
| 570 |
+
|
| 571 |
+
const dm = new DirectMessage({
|
| 572 |
+
messageId: uuidv4(),
|
| 573 |
+
from: socket.userId,
|
| 574 |
+
to: toUserId,
|
| 575 |
+
fromUsername: socket.username,
|
| 576 |
+
toUsername: toUser.username,
|
| 577 |
+
content,
|
| 578 |
+
mediaType: mediaType || 'text',
|
| 579 |
+
mediaUrl: mediaUrl || null
|
| 580 |
+
});
|
| 581 |
+
|
| 582 |
+
await dm.save();
|
| 583 |
+
|
| 584 |
+
// Send to DM room
|
| 585 |
+
const roomId = [socket.userId, toUserId].sort().join('_');
|
| 586 |
+
io.to(roomId).emit('dm message', {
|
| 587 |
+
messageId: dm.messageId,
|
| 588 |
+
from: socket.userId,
|
| 589 |
+
fromUsername: socket.username,
|
| 590 |
+
fromAvatar: socket.userAvatar,
|
| 591 |
+
to: toUserId,
|
| 592 |
+
toUsername: toUser.username,
|
| 593 |
+
content: dm.content,
|
| 594 |
+
mediaType: dm.mediaType,
|
| 595 |
+
mediaUrl: dm.mediaUrl,
|
| 596 |
+
timestamp: dm.timestamp
|
| 597 |
+
});
|
| 598 |
+
} catch (error) {
|
| 599 |
+
socket.emit('error', error.message);
|
| 600 |
+
}
|
| 601 |
+
});
|
| 602 |
+
|
| 603 |
+
// Typing indicator for DMs
|
| 604 |
+
socket.on('dm typing', (friendId) => {
|
| 605 |
+
const roomId = [socket.userId, friendId].sort().join('_');
|
| 606 |
+
socket.broadcast.to(roomId).emit('dm user typing', {
|
| 607 |
+
userId: socket.userId,
|
| 608 |
+
username: socket.username
|
| 609 |
+
});
|
| 610 |
+
});
|
| 611 |
+
|
| 612 |
+
socket.on('dm stop typing', (friendId) => {
|
| 613 |
+
const roomId = [socket.userId, friendId].sort().join('_');
|
| 614 |
+
socket.broadcast.to(roomId).emit('dm user stop typing', {
|
| 615 |
+
userId: socket.userId,
|
| 616 |
+
username: socket.username
|
| 617 |
+
});
|
| 618 |
+
});
|
| 619 |
+
|
| 620 |
+
// Disconnect
|
| 621 |
+
socket.on('disconnect', async () => {
|
| 622 |
+
try {
|
| 623 |
+
const userData = onlineUsers.get(socket.id);
|
| 624 |
+
if (userData) {
|
| 625 |
+
const user = await User.findById(socket.userId);
|
| 626 |
+
if (user) {
|
| 627 |
+
user.status = 'offline';
|
| 628 |
+
await user.save();
|
| 629 |
+
}
|
| 630 |
+
onlineUsers.delete(socket.id);
|
| 631 |
+
io.emit('users update', Array.from(onlineUsers.values()));
|
| 632 |
+
}
|
| 633 |
+
} catch (error) {
|
| 634 |
+
console.error(error);
|
| 635 |
+
}
|
| 636 |
+
});
|
| 637 |
+
});
|
| 638 |
+
|
| 639 |
+
// ======================== STARTUP ========================
|
| 640 |
+
|
| 641 |
+
function getLocalNetworkAddress() {
|
| 642 |
+
const interfaces = os.networkInterfaces();
|
| 643 |
+
for (const name of Object.keys(interfaces)) {
|
| 644 |
+
for (const net of interfaces[name]) {
|
| 645 |
+
if (net.family === 'IPv4' && !net.internal) {
|
| 646 |
+
return net.address;
|
| 647 |
+
}
|
| 648 |
+
}
|
| 649 |
+
}
|
| 650 |
+
return '127.0.0.1';
|
| 651 |
+
}
|
| 652 |
+
|
| 653 |
+
const PORT = process.env.PORT || 3000;
|
| 654 |
+
const HOST = process.env.HOST || '0.0.0.0';
|
| 655 |
+
|
| 656 |
+
server.listen(PORT, HOST, () => {
|
| 657 |
+
const networkAddress = getLocalNetworkAddress();
|
| 658 |
+
console.log(`
|
| 659 |
+
╔═══════════════════════════════════════╗
|
| 660 |
+
║ 🚀 Discord-Like Server Running ║
|
| 661 |
+
║ ║
|
| 662 |
+
║ 📡 Local: ${protocol}://localhost:${PORT} ║
|
| 663 |
+
║ 🌐 LAN: ${protocol}://${networkAddress}:${PORT} ║
|
| 664 |
+
║ ✨ Status: Online & Ready ║
|
| 665 |
+
║ ║
|
| 666 |
+
║ Features: ║
|
| 667 |
+
║ ✓ User Authentication ║
|
| 668 |
+
║ ✓ Profiles & Friends ║
|
| 669 |
+
║ ✓ Text & Voice Channels ║
|
| 670 |
+
║ ✓ Media Sharing ║
|
| 671 |
+
║ ✓ Shop System ║
|
| 672 |
+
║ ✓ Real-time Messaging ║
|
| 673 |
+
║ ║
|
| 674 |
+
╚═══════════════════════════════════════╝
|
| 675 |
+
`);
|
| 676 |
+
});
|
setup-https.ps1
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ultimate Chat App - Quick HTTPS Setup for LAN Access
|
| 2 |
+
# Run this in PowerShell from the project directory
|
| 3 |
+
|
| 4 |
+
Write-Host "🚀 Ultimate Chat App - HTTPS LAN Setup" -ForegroundColor Cyan
|
| 5 |
+
Write-Host "=======================================" -ForegroundColor Cyan
|
| 6 |
+
Write-Host ""
|
| 7 |
+
|
| 8 |
+
# Get LAN IP
|
| 9 |
+
$lanIP = (Get-NetIPAddress -AddressFamily IPv4 | Where-Object {$_.InterfaceAlias -notlike "*Loopback*" -and $_.IPAddress -notlike "169.254.*"}).IPAddress | Select-Object -First 1
|
| 10 |
+
|
| 11 |
+
if (!$lanIP) {
|
| 12 |
+
Write-Host "❌ Could not detect LAN IP address" -ForegroundColor Red
|
| 13 |
+
exit 1
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
Write-Host "📡 Detected LAN IP: $lanIP" -ForegroundColor Green
|
| 17 |
+
Write-Host ""
|
| 18 |
+
|
| 19 |
+
# Stop existing Node processes
|
| 20 |
+
Write-Host "🛑 Stopping existing Node processes..." -ForegroundColor Yellow
|
| 21 |
+
taskkill /F /IM node.exe 2>$null | Out-Null
|
| 22 |
+
|
| 23 |
+
# Create certs directory
|
| 24 |
+
Write-Host "📁 Creating certs directory..." -ForegroundColor Yellow
|
| 25 |
+
New-Item -ItemType Directory -Force .\certs | Out-Null
|
| 26 |
+
|
| 27 |
+
# Add firewall rule
|
| 28 |
+
Write-Host "🔥 Adding Windows Firewall rule..." -ForegroundColor Yellow
|
| 29 |
+
$existingRule = Get-NetFirewallRule -DisplayName "Chat App HTTPS" -ErrorAction SilentlyContinue
|
| 30 |
+
if (!$existingRule) {
|
| 31 |
+
New-NetFirewallRule -DisplayName "Chat App HTTPS" -Direction Inbound -LocalPort 3001 -Protocol TCP -Action Allow | Out-Null
|
| 32 |
+
Write-Host "✅ Firewall rule added" -ForegroundColor Green
|
| 33 |
+
} else {
|
| 34 |
+
Write-Host "✅ Firewall rule already exists" -ForegroundColor Green
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
# Generate certificate
|
| 38 |
+
Write-Host "🔐 Generating HTTPS certificate for localhost and $lanIP..." -ForegroundColor Yellow
|
| 39 |
+
$cert = New-SelfSignedCertificate `
|
| 40 |
+
-Subject "CN=localhost" `
|
| 41 |
+
-CertStoreLocation "Cert:\CurrentUser\My" `
|
| 42 |
+
-KeyAlgorithm RSA -KeyLength 2048 `
|
| 43 |
+
-HashAlgorithm SHA256 `
|
| 44 |
+
-NotAfter (Get-Date).AddYears(2) `
|
| 45 |
+
-TextExtension @("2.5.29.17={text}DNS=localhost&IPAddress=$lanIP")
|
| 46 |
+
|
| 47 |
+
# Export certificate
|
| 48 |
+
$pwd = ConvertTo-SecureString "123456" -AsPlainText -Force
|
| 49 |
+
Export-PfxCertificate -Cert $cert -FilePath ".\certs\lan-localhost.pfx" -Password $pwd | Out-Null
|
| 50 |
+
Export-Certificate -Cert $cert -FilePath ".\certs\lan-localhost.cer" -Force | Out-Null
|
| 51 |
+
Write-Host "✅ Certificate generated" -ForegroundColor Green
|
| 52 |
+
|
| 53 |
+
# Trust certificate
|
| 54 |
+
Write-Host "🔒 Trusting certificate..." -ForegroundColor Yellow
|
| 55 |
+
Import-Certificate -FilePath ".\certs\lan-localhost.cer" -CertStoreLocation "Cert:\CurrentUser\Root" | Out-Null
|
| 56 |
+
Write-Host "✅ Certificate trusted" -ForegroundColor Green
|
| 57 |
+
Write-Host ""
|
| 58 |
+
|
| 59 |
+
# Set environment variables
|
| 60 |
+
$env:SSL_PFX_PATH = (Resolve-Path ".\certs\lan-localhost.pfx").Path
|
| 61 |
+
$env:SSL_PFX_PASSPHRASE = "123456"
|
| 62 |
+
$env:PORT = "3001"
|
| 63 |
+
|
| 64 |
+
# Display access URLs
|
| 65 |
+
Write-Host "╔═══════════════════════════════════════╗" -ForegroundColor Cyan
|
| 66 |
+
Write-Host "║ 🎉 Setup Complete! ║" -ForegroundColor Cyan
|
| 67 |
+
Write-Host "╚═══════════════════════════════════════╝" -ForegroundColor Cyan
|
| 68 |
+
Write-Host ""
|
| 69 |
+
Write-Host "Access URLs:" -ForegroundColor Yellow
|
| 70 |
+
Write-Host " 📱 On this PC: https://localhost:3001" -ForegroundColor White
|
| 71 |
+
Write-Host " 📱 On LAN devices: https://$lanIP:3001" -ForegroundColor White
|
| 72 |
+
Write-Host ""
|
| 73 |
+
Write-Host "Note: Mobile devices will show a certificate warning." -ForegroundColor Gray
|
| 74 |
+
Write-Host " Click 'Advanced' → 'Proceed' to continue." -ForegroundColor Gray
|
| 75 |
+
Write-Host ""
|
| 76 |
+
Write-Host "Starting server..." -ForegroundColor Yellow
|
| 77 |
+
Write-Host ""
|
| 78 |
+
|
| 79 |
+
# Start the app
|
| 80 |
+
npm start
|