gyrodraw/GyroDraw

View on GitHub
functions/index.js

Summary

Maintainability
D
1 day
Test Coverage

File index.js has 374 lines of code (exceeds 250 allowed). Consider refactoring.
Open

// The Cloud Functions for Firebase SDK to create Cloud Functions and setup triggers.
const functions = require('firebase-functions');

// The Firebase Admin SDK to access the Firebase Realtime Database.
const admin = require('firebase-admin');
Severity: Minor
Found in functions/index.js - About 5 hrs to fix

    Function functionTimer has 44 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function functionTimer (seconds, state, roomID, isWaiting, call) {
      return new Promise((resolve, reject) => {
        // This represents the maximum time allowed for firebase.
        if (seconds > 300) {
            return;
    Severity: Minor
    Found in functions/index.js - About 1 hr to fix

      Function joinGame has 39 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      exports.joinGame = functions.https.onCall((data, context) => {
        const id = data.id;
        const username = data.username;
        const league = data.league - 1;
        const gameMode = data.mode;
      Severity: Minor
      Found in functions/index.js - About 1 hr to fix

        Function onInterval has 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            function onInterval() {
        
              if (stop === true) {
                stop = false;
                throw new "Timer stopped";
        Severity: Minor
        Found in functions/index.js - About 1 hr to fix

          Function updateUser has 27 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function updateUser(userID) {
            return admin.database().ref("users/").once('value', (snapshot) => {
              if(snapshot.hasChild(userID)) {
                let newTrophies;
                let totalMatches;
          Severity: Minor
          Found in functions/index.js - About 1 hr to fix

            Function startTimer has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            function startTimer(time, roomID, prevState, newState, nodeCreation, isWaiting) {
            Severity: Minor
            Found in functions/index.js - About 45 mins to fix

              Function createRoomAndJoin has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              function createRoomAndJoin(league, roomsList, username, id, gameMode) {
              Severity: Minor
              Found in functions/index.js - About 35 mins to fix

                Function functionTimer has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                function functionTimer (seconds, state, roomID, isWaiting, call) {
                Severity: Minor
                Found in functions/index.js - About 35 mins to fix

                  Avoid too many return statements within this function.
                  Open

                    return 0;
                  Severity: Major
                  Found in functions/index.js - About 30 mins to fix

                    Avoid too many return statements within this function.
                    Open

                          return admin.database().ref(parentRoomID + roomID + "/ranking").once('value', (snapshot) => {
                            return updateDisconnectedUsers(snapshot, roomID);
                          });
                    Severity: Major
                    Found in functions/index.js - About 30 mins to fix

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                                  promises.push(admin.database().ref(parentRoomID + roomID + "/playing").set(PlayingEnum.Idle));
                      Severity: Minor
                      Found in functions/index.js and 1 other location - About 35 mins to fix
                      functions/index.js on lines 110..110

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 46.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                                  promises.push(admin.database().ref(parentRoomID + roomID + "/state").set(StateEnum.Idle));
                      Severity: Minor
                      Found in functions/index.js and 1 other location - About 35 mins to fix
                      functions/index.js on lines 111..111

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 46.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      There are no issues that match your filters.

                      Category
                      Status