/bugzilla-dashboard

This is a bugzilla dashboard that helps management determine Bugzilla components triaging status

Primary LanguageJavaScriptMozilla Public License 2.0MPL-2.0

The Bugzilla management dashboard

This is a Bugzilla dashboard that helps management determine Bugzilla components triaging status plus listing members of their reporting chain.

Only LDAP users are allowed to use this app. You can do development locally without an LDAP account, however, the app will only have fake org data. See the Contribute section.

You can see the deployment in our Netlify instance.

Adding more teams

A team is a collection of components that can span various products and it is shown under the Teams tab. You can add new teams and make them show in the Teams tab by making changes to the config file.

To add a team you need to modify TEAMS_CONFIG and an entry similar to this:

export const TEAMS_CONFIG = {
  domCore: {
    label: 'DOM Core',
    owner: 'someone@mozilla.com',
    product: ['Core'],
    component: [
      'DOM: Core & HTML', 'DOM: Events',
      'Editor', 'HTML: Parser', 'Selection', 'Serializers',
      'User events and focus handling',
    ],
},

Here's how to configure it:

  • product and component are parameters passed to the Bugzilla queries.
  • owner should match someone reporting to you.
    • Use their Bugzilla email rather than their LDAP
    • If the person does is not someone showing up on your Reportees tab it won't work
  • label is the name of the team

Generate data

Until we have a backend, we need to regenerate certain files to bring the app up-to-date.

Org related data

The data is stored in Taskcluster Secrets and it's only accessible to moco_team. See bug 1540823

To update the data you will need to take a Phonebook dump, get it reduced and converted to Yaml and upload it to Taskcluster Secrets.

Requirements:

  • Python
  • pip (which comes with Python) or poetry

Set up the virtualenv with poetry:

poetry install
poetry shell

or:

python3 -m venv venv
source ./venv/bin/activate
pip install PyYaml

Execute the command:

python scripts/processPeopleFile.py --path /path/to/phonebook.json

You can read in here what changes are needed to get data from CIS.

triageOwners.json

This file is checked-in because it makes the app snapier, however, it can fall out of date.

To regenerate it run this and commit the updated file:

node scripts/generateTriageOwners.js

Contribute

If you don't have LDAP access you can start the app with yarn start:alternativeAuth and use Google or GitHub to authenticate. This will not give you access to a functioning app, however, it will allow you to make contributions to the authenticated interface.

Issue #66 will add fake data into this alternative auth approach.

Auth info

This app authenticates with Mozilla's official Auth0 domain. It uses SSO and it only allows authentication of Mozilla staff via LDAP.

The authentication configuration has the following characteristics:

  • There are two different Auth0 clients
    • An official one (SSO + LDAP) and the other for non-LDAP contributors
    • Non-LDAP users will receive fake org data
  • After a user authenticates, the auth will also authenticate with Firefox CI Taskcluster (firefox-ci-tc.services.mozilla.com)
    • This is in order to later fetch a Taskcluster secret (only available to LDAP users)

Running & tests

yarn install
  • To run the tests:
yarn test -u
  • To run the linting tests
yarn lint
  • To run the project
yarn install
yarn start