DEV Community

Rachit Chawla
Rachit Chawla

Posted on

Navigating the Open Source Seas: My Journey with GitHub Issues

Introduction

Embarking on the final leg of my Open Source Development course, I've chosen to dive deep into three intriguing GitHub issues, each presenting a unique set of challenges and opportunities. This journey involves contributing to the Microsoft CLI for Microsoft 365, specifically focusing on Teams integration and code structure improvement. Let's take a closer look at the tasks ahead.


1. Enhancing Teams Integration with Microsoft CLI

Issue: Add command to install an app in a Teams chat

In this task, I'm set to introduce new functionality to the Microsoft CLI, specifically focusing on Teams chat app management. The goal is to add a command that allows users to install an app in a specified chat. The command structure involves parameters like chat ID, app ID, and app name.

Key Features:

  • m365 teams chat app add: The new command for installing apps.
  • Options: Customizing the installation with parameters like app ID or app name.
  • Usage Examples: Demonstrating how to use the command in various scenarios.

Important Notes:

  • App ID: Clarifying the source of the app ID and the importance of using the Teams App Catalog ID.
  • Meeting Association: Handling app installations in chats associated with meetings.

2. Upgrading Teams Apps at the User Level

Issue: New command: Upgrade installed Teams app for a specified user

This task involves implementing a new command to upgrade a Teams app for a specific user. The command takes parameters like app ID or name and user ID or username. The goal is to streamline the app upgrade process in the personal scope of a given user.

Key Features:

  • m365 teams user app upgrade: The new command for upgrading installed Teams apps.
  • Options: Specifying app details and the target user.
  • Usage Examples: Illustrating how to upgrade apps for users using different parameters.

Important Notes:

  • User Identification: Choosing between user ID and username for targeting a specific user.
  • Personal Scope: Focusing on upgrading within the personal scope of the user.

3. Code Refactoring for "/logout" Route

Issue: Refactor "/logout" Route for Improved Code Structure

This GitHub issue addresses the need to refactor the "/logout" route for improved code structure. The focus is on using res.locals.reqClientData as the source for client data, eliminating direct accesses to req.body, req.query, and req.params. Additionally, introducing a try-catch block for effective error handling is part of the task.

Tasks:

  • Code Refactoring: Enhancing code structure by using res.locals.reqClientData.
  • Error Handling: Implementing a try-catch block for graceful error handling.
  • Testing: Ensuring correct functionality and effective error handling.
  • Documentation: Updating relevant documentation to reflect changes.

Acceptance Criteria:

  • Successful refactoring with improved code structure.
  • Elimination of direct accesses in favor of res.locals.reqClientData.
  • Effective error handling through the try-catch block.
  • Thorough testing and updated documentation.

Additional Information:

  • Leveraging res.locals.reqClientData improves code structure.
  • Effective error handling enhances the route's robustness.

Conclusion

Navigating the seas of open source contributions is a challenging yet rewarding journey. As I work on these three issues simultaneously, uncertainties linger about the completion timeline. However, the experience gained and the skills honed during this endeavor will undoubtedly be valuable, marking the end of my Open Source Development course on a high note. Cheers to the collaborative spirit of open source!

Top comments (0)