Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/045 matchmaking #66

Closed
wants to merge 49 commits into from
Closed

Feature/045 matchmaking #66

wants to merge 49 commits into from

Conversation

mtoof
Copy link
Collaborator

@mtoof mtoof commented Aug 14, 2024

No description provided.

abbastoof and others added 30 commits July 23, 2024 13:01
…rvice to nginx.conf, I changed name of User class to UserProfileModel and I also added ChatModel and ChatNotification classes to the models.py, in __init__.py of user_app app I have added this line default_app_config = user_app.apps.UserAppConfig to load the app config class when the app is loaded.

, I have registered the models in the admin.py file so that I can access the models from the admin panel, I have created a new file named signals.py in the user_app directory. This file will contain the signals that I will use to create a user profile when a new user is created. Then I imported the signals file in the apps.py file and added the ready() method to import the signals file when the app is ready.I have created consumers for handling websocket connections. I have created three consumers: PersonalChatConsumer, NotificationConsumer, and OnlineStatusConsumer. The PersonalChatConsumer is used for handling personal chat messages between two users. The NotificationConsumer is used for handling notifications. The OnlineStatusConsumer is used for handling online status of users. I have used the @csrf_exempt decorator to exempt the consumers from CSRF verification. I have used the @method_decorator decorator to apply the @csrf_exempt decorator to the dispatch method of the consumers. I have imported the json, AsyncWebsocketConsumer, database_sync_to_async, csrf_exempt, and method_decorator modules. I have imported the csrf_exempt and method_decorator decorators from the django.views.decorators.csrf and django.utils.decorators modules. I have imported the json module. I have imported the AsyncWebsocketConsumer module from the channels.generic.websocket module. I have imported the database_sync_to_async module from the channels.db module
- Updated OnlineStatusConsumer in consumers.py to handle 'close' messages appropriately.
- Improved error handling in OnlineStatusConsumer for JSON decoding and missing keys.
- Ensured correct handling of WebSocket connections and message flow in consumers.py.
- Verified WebSocket connections and message handling using Postman.
- Cleaned up and clarified the roles of send_onlineStatus in consumers.py.
- Added appropriate print statements for debugging WebSocket connections and message flow.
…t gets true when they get connect or false if they get disconnect
… classes to serializers.py and added an error handling to send_friend_request to prevent a user from sending a request to a friend
…ion when user left or enter the room and remove a user from the room when get disconnect or delete the whole room when the room is empty
…when GameRoomConsumer class sends a request to match players and added supervisord and it's config file and a bash file to start a consumer
… functions to GameRoomConsumer class for matchmaking
…create_record_request to views 'I need to fix its connection with rabbitmq'
…oken and added channels to settings to handle database_sync_to_async
… OnlinestatusConsumer class, fixed user_login connection with rabbitmq, , updated rabbitmq_utils to async and fixed serializer for GameRoom class to retrieve the user_name and user_id for players
mtoof and others added 19 commits August 10, 2024 14:27
…nd removed an extra logger in user_session_views.py
….py and updated rabbitmq_utils, 'Still don't get any logs from logger'
…tils, added packages versions to requirements and upgraded pip in tools.sh
…ce in memory, added packages versions in requirements, upgraded pip in tools.sh, updated user_session_views.py, updated rabbitmq utils, fixed Online status and Gameroom consumers according to the rabbitmq_utils
…irectory exists before trying to remove it.

Volume Removal: Added 2>/dev/null || true to suppress errors if a volume doesn't exist during the removal process.
Container Removal: Added 2>/dev/null || true to suppress errors if a container doesn't exist during the removal process.
…dded logging settings to the User-service and Token-service. Also removed RabbitMQ consumers and utility files from all services. Updated views files and removed all functions related to RabbitMQ. Changed all communication between microservices to direct communication. Added `gen-tokens`, `invalidate-tokens`, and `validate-token` endpoints to token_service urls.py
…omConsumer.py in user-service to send a postrequest to game-history
…tat url for game-history to nginx, fixed line 157 in GameRoomConsumer in user-service, removed extra rabbitmq and websocket packages from requirements in token-service and game-history, fixed urls on project level in token-service and game-history, removed extra import packages from views.py in token-service and game-history and fixed dockerfile in game-history to run tools.sh
…ed friend from the friend list the user was not able to send a new request to the same user(got duplication error)
….py, added argon2 as password_hash to settings.py, added argon2 packages to requirements and removed extra lines from nginx.conf
@abbastoof abbastoof closed this Aug 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants