-
Notifications
You must be signed in to change notification settings - Fork 4
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
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…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
…s setting inside of settings.py
- 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
…into feature/045-matchmaking
…e need to handle the rest
…t to onlinestatusconsumer class
… classes to serializers.py and added an error handling to send_friend_request to prevent a user from sending a request to a friend
…/profile-and-friends
… match making system
…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
…fixed publish and consumer in views.py
…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.
…endence into feature/045-matchmaking
…nce into feature/045-matchmaking
…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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.