GSoC report - Moxxy MUC implementation

Posted by Ikjot Singh Dhody on 2023-08-20

GSoC Final Report: XMPP Standards Foundation - Moxxy: Implement Group Chats

Project: Moxxy - Implement Group Chats
Organization: XMPP Standards Foundation
Duration: March 2023 - August 2023
Student: Ikjot Singh Dhody
Mentor: Alexander

Introduction

This report presents the culmination of my work on the GSoC project "Moxxy: Implement Group Chats" under the mentorship of Alexander at the XMPP Standards Foundation. Over the course of this project, I have been engaged in implementing a group chat feature for the Moxxy application, aiming to enhance its functionality and user experience.

About Me

Personal and Social/Contact Details

  • Name: Ikjot Singh Dhody
  • Jabber ID: ikjot-2605[at]jabber.fr
  • Email: ikjotsd[at]gmail.com
  • GitHub: ikjot-2605
  • LinkedIn: LinkedIn Profile

Educational Background

  • University: National Institute of Technology Karnataka, Surathkal
  • Major: Computer Science and Engineering
  • Year: Senior Year
  • Degree: Bachelor of Technology (B. Tech)

The Project

Before getting into the details of the actual project - here is a demo screencast for the implementation:

I have outlined the features I implemented through the GSoC period below.

PRs merged

Feature Use-Cases

The group chat feature required changes to the Moxxy codebase, as well as the moxxmpp codebase. Moxxmpp is the data worker that sends and maintains all the request requirements of the Moxxy frontend. These are the list of contributions across both projects:

  • Joining rooms and getting disco info for the room.
  • Sending messages to a group chat and receiving messages from the group chat.
  • Leaving the group chat.
  • Displaying a UI for joining a group chat and providing a nickname.
  • Handling group chat details and database support.
  • Handling group chat errors and basic error handling.
  • Adding a GroupchatDetails model.
  • Adding UI elements for group chat, such as title and nickname fields.
  • Adding documentation to group chat service methods.
  • Minor code refactoring and naming enhancements.
  • Enhancing enums for conversation types.
  • Removing unnecessary translation strings.
  • Improving UI and formatting.

Outlined below are commits made across both codebases throughout the GSoC period.

Moxxmpp

There were 2 PRs merged for this codebase.

  • XEP-0421 support for occupant ID support.
Serial NumberCommit HashDescription
1255d0f88e0feat(xep): Use cascading operation to return state
2fa11a3a384feat(xep): Checked for the occupant-id directly.
3ac5bb9e461feat(xep): Implement XEP 0421 in Moxxmpp.
  • XEP-0045 support for MUC support.
Serial NumberCommit HashDescription
1b2724aba0cMerge branch 'master' into xep_0045
2d3742ea156feat(xep): Small fixes - MUC Example.
38b00e85167feat(xep): Add example for XEP 0045 Moxxmpp.
404dfc6d2acfeat(xep): Replace DiscoError with StanzaError.
59e70e802efMerge branch 'master' into xep_0045
63ebd9b86ecfeat(xep): Fix lint issues and use moxlib for result.
7a873edb9ecfeat(xep): Check for null nick before leaveRoom.
8e6bd6d05cdfeat(xep): Remove NOOP cache access.
9b7d53b8f47feat(xep): Add docstings for the XEP-0045 routines
10217c3ac236feat(xep): Fix cache issue with join/leaveRoom.
1151bca6c25dfeat(xep): XEP-0045 cache fixes.
128728166a4dfeat(xep): Add cache and roomstate to MUC implementation.
131f1321b269feat(xep): Small fixes - review cycle 1.
1466195f66faMerge branch 'master' into xep_0045
1570fdfaf16dfeat(xep): Fix imports for xep_0045 files.
16cd73f89e63feat(xep): Remove duplicate manager string
1705c41d3185feat(xep): Refactor sendMessage to allow groupchat
1864a8de6caafeat(xep): Set base for XEP 0045 implementation
1968809469f6feat(xep): Add joinRoom, leaveRoom routines.
20762cf1c77afeat(xep): Set base for XEP 0045 implementation

Moxxy

  • Implement MUCs in Moxxy
Serial NumberCommit HashDescription
1549e61a168feat(all): Fix linter issues.
226bcaccd81Merge branch 'master' into feat/groupchat
3df5810a347feat(all): Formatting change, lock file update
4ef931c566ffeat(all): Send messages/chat state from Moxxy to MUC.
5a3d4883406feat(all): Remove unnecessary buttons/options for MUC.
6532f0b1bb2feat(all): Formatting fix, and navigation fix.
7a98fe0d9f3feat(all): Minor fixes - strings, formatting.
8a7c3bd507fMerge branch 'master' of https://codeberg.org/moxxy/moxxy into feat/groupchat
9fba2cf86aefeat(all): Minor formatting changes.
10af481bf465feat(all): remove unnecessary comparator override.
11e6ae8182c2feat(all): Organize import in main.dart.
12de7b9adfa6feat(all): Fix user flow for joining MUC.
13e4f98bb82ffeat(all): Add label to nick text field.
1456d6f97168feat(all): Minor changes, fixes.
15b0067f055ffeat(all): Move away from exception type design.
16bd094dfc9afeat(all): Remove unnecessary function.
177e9d7d6281feat(all): Check if Groupchat exists before method.
182cf781459dfeat(all): Debug mode and translatable string
194ff9e3c81efeat(all): Remove title from GroupchatDetails.
20e337f1c579feat(all): Minor refactors - naming.
217c840334e1feat(all): Add docs to groupchat service methods.
2206eab1d6f5feat(all): Make ConversationType an enhanced enum.
23008e816d70feat(all): Rename JoinGroupchatResultEvent.
242bbbc164b5feat(all): Remove incorrect translations.
2511f4fd9932feat(all): Add title to GroupchatDetails.
26a1451c6fbffeat(all): Refactor groupchat to new object in db.
27993da40297feat(all): Complete join groupchat flow.
2809684b1268feat(all): Fix fromDatabaseJson for MUC details.
290abb89cf38feat(all): Fix database issues with nick.
307880f51b76feat(all): Add db support for GroupchatDetails.
31f0a79ca0e0feat(all): Add GroupchatDetails model.
3206dcd5491bfeat(all): Basic groupchat error handling set up.
333641be4f56feat(all): Join room functionality complete.
3418e28c3bbffeat(all): Groupchat service/bloc updated.
3562e39bf066feat(all): Set base for groupchat implementation.

Accomplishments

  • Was able to produce a working model of groupchats in Moxxy.

  • Started the design approach from scratch and pretty much stuck to it till the end gave me confidence in my design capability.

  • Fruitful discussions and review cycles were conducted that allowed for a smooth GSoC experience.

Challenges Faced

  • Needed to understand 2 different codebases, and the architecture of the project. This was a pretty interesting, albeit challenging task that took me a while to master.

  • Managing the busy schedule with GSoC work, family, college among other things was difficult. Also, managing a job in the latter parts was also challenging but a rewarding experience.

  • The complete virtual approach was slightly difficult, and although not practical - it might have been slightly better with inter-GSoC meetings.

Learnings/Takeaways

  • Implemented group chat (Multi-User Chat or MUC) support in the Moxxy project.
  • Successfully added features for joining a group chat room, sending messages to the room, and receiving messages from the room.
  • Learned to handle various aspects of XMPP communication, including sending and receiving messages, and interacting with group chat services.
  • Gained insights into implementing complex functionality in a Flutter application, involving UI components, service classes, and database interactions.
  • Collaborated with experienced developers through code reviews to improve code quality and ensure adherence to best practices.
  • Acquired knowledge of working with the XMPP protocol, understanding its intricacies and how it relates to group chat interactions.
  • Learned to manage and address feedback from code reviewers, making necessary adjustments to improve code readability and functionality.
  • Discovered the importance of proper error handling in real-time communication scenarios, such as handling different types of group chat errors.
  • Gained experience in integrating new features while maintaining the overall architecture and user experience of the application.
  • Understood the complexities of XMPP server behavior, including handling discussion history and preventing message loops.
  • Explored techniques for optimizing communication performance, such as preventing redundant message processing.
  • Improved skills in project management, including version control practices, managing branches, and resolving merge conflicts.
  • Gained familiarity with the process of creating, testing, and merging pull requests in a collaborative development environment.
  • Developed a better understanding of Flutter's state management, navigation, and widget composition for creating feature-rich user interfaces.
  • Learned to balance feature development with code quality, addressing both functional and non-functional aspects of the implementation.
  • Explored advanced Flutter topics, such as handling asynchronous operations, managing state, and integrating with external libraries.
  • Gained a deeper understanding of how group chat and real-time communication play a significant role in modern applications.
  • Developed the ability to diagnose and troubleshoot issues related to communication and user interface interactions.
  • Strengthened communication skills by participating in technical discussions and effectively conveying ideas and solutions.

Future Work

The future remaining work has been enlisted in this issue by my mentor here.

This includes a list of improvements, bug fixes and general future requirements that will be needed to make the groupchat experience pleasurable for the users of Moxxy.

Conclusion

Participating in GSoC has been an enriching experience. I've learned valuable skills, collaborated with mentors and the open-source community, and contributed to the Moxxy project. I'm grateful to XMPP Standards Foundation for this opportunity and look forward to continuing my journey in the world of open-source software development.

Acknowledgments

I would like to express my gratitude to my mentor Alexander for their guidance and support throughout this project. His guidance and understanding is what allowed me to pull through and complete the GSoC with a happy mind. I also want to thank the XMPP Standards Foundation community for their encouragement and feedback.