BerniWittmann/spielplanismaning

View on GitHub

Showing 181 of 353 total issues

Function reset has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

SpielSchema.methods.reset = function (cb) {
    const beachEventID = cls.getBeachEventID();
    const clsSession = cls.getNamespace();
    const self = this;
    return clsSession.run(function () {
Severity: Minor
Found in src/models/Spiele.js - About 1 hr to fix

    Function registerMail has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        mailGenerator.registerMail = function (user, cb) {
            logger.verbose('Sending Register-Mail');
            if (user) {
                const templatePath = path.join(__dirname, emailTemplatesFolderName, 'register.ejs');
                return fs.readFile(templatePath, 'utf-8', function (err, template) {
    Severity: Minor
    Found in src/routes/mailGenerator/mailGenerator.js - About 1 hr to fix

      Function prepareSpiel has 37 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function prepareSpiel(spiel, index, store, cb) {
          const beachEventID = cls.getBeachEventID();
          const clsSession = cls.getNamespace();
          return clsSession.run(function () {
              clsSession.set('beachEventID', beachEventID);
      Severity: Minor
      Found in src/routes/spielImporter/importer.js - About 1 hr to fix

        Function calcSpielDateTime has 36 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function calcSpielDateTime(nr, spielplan, delays) {
            delays = delays || {};
            logger.silly('Calculate Date and Time for a Spiel');
            if (!checkSpielplanZeitenValid(spielplan)) {
                return undefined;
        Severity: Minor
        Found in src/routes/helpers.js - About 1 hr to fix

          Function exports has 36 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          module.exports = function () {
              const logger = require('winston').loggers.get('apiAnsprechpartner');
              const express = require('express');
              const router = express.Router();
          
          
          Severity: Minor
          Found in src/routes/ansprechpartner.js - About 1 hr to fix

            Function populate has 36 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              function populate(opts, level, cb) {
                var docs = opts.docs
                  , paths = opts.paths
                  , lvlPaths = paths.filter(function (path) { return (path.split('.').length - 1) === level })
                  , remained = lvlPaths.length
            Severity: Minor
            Found in src/config/mongoose-deep-populate.js - About 1 hr to fix

              Function authenticate has 35 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  const authenticate = function (req, res, next) {
                      const requiredRoles = helpers.getRequiredRouteConfig(routes, req.path, req.method, 'AUTH');
              
                      logger.silly('Required Roles: ', requiredRoles);
              
              
              Severity: Minor
              Found in src/routes/middleware/authorization.js - About 1 hr to fix

                Function getEntity has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function getEntity(model, population, notFoundMessage, res, req) {
                    const queryData = getEntityQuery(model, req);
                    const query = queryData.query;
                    const searchById = queryData.searchById;
                    const beachEventID = cls.getBeachEventID();
                Severity: Minor
                Found in src/routes/helpers.js - About 1 hr to fix

                  Function VerwaltungSpielplanController has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                      function VerwaltungSpielplanController(spielplan, zeiten, $scope, toastr, spiele, spiel, spielplanEnabled) {
                          const vm = this;
                          vm.loading = true;
                  
                          _.extend(vm, {

                    Function VerwaltungTeamsController has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        function VerwaltungTeamsController($scope, auth, jugend, spielplan, $timeout, jugenden, teams, JUGEND_FARBEN, team, turniere, TurnierImportDialog) {
                            const vm = this;
                            vm.loading = true;
                    
                            _.extend(vm, {
                    Severity: Minor
                    Found in src/public/templates/event/verwaltung/teams/verwaltung.teams.ui.js - About 1 hr to fix

                      Function fill has 35 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      function fill(entity, cb) {
                          const beachEventID = cls.getBeachEventID();
                          const clsSession = cls.getNamespace();
                          return clsSession.run(function () {
                              clsSession.set('beachEventID', beachEventID);
                      Severity: Minor
                      Found in src/routes/helpers.js - About 1 hr to fix

                        Function VerwaltungTeamsController has 11 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                            function VerwaltungTeamsController($scope, auth, jugend, spielplan, $timeout, jugenden, teams, JUGEND_FARBEN, team, turniere, TurnierImportDialog) {
                        Severity: Major
                        Found in src/public/templates/event/verwaltung/teams/verwaltung.teams.ui.js - About 1 hr to fix

                          Function passwordForgotMail has 34 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              mailGenerator.passwordForgotMail = function (user, cb) {
                                  logger.verbose('Sending Password-Forgot-Email');
                                  if (user) {
                                      const templatePath = path.join(__dirname, emailTemplatesFolderName, 'passwordForgot.ejs');
                                      return fs.readFile(templatePath, 'utf-8', function (err, template) {
                          Severity: Minor
                          Found in src/routes/mailGenerator/mailGenerator.js - About 1 hr to fix

                            Function setPunkte has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                            SpielSchema.methods.setPunkte = function (punkteA, punkteB, cb) {
                                const beachEventID = cls.getBeachEventID();
                                const clsSession = cls.getNamespace();
                                const self = this;
                                return clsSession.run(function () {
                            Severity: Minor
                            Found in src/models/Spiele.js - About 1 hr to fix

                              Function checkSpielChangeable has 33 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              function checkSpielChangeable(spielid, cb) {
                                  const beachEventID = cls.getBeachEventID();
                                  const clsSession = cls.getNamespace();
                                  return clsSession.run(function () {
                                      clsSession.set('beachEventID', beachEventID);
                              Severity: Minor
                              Found in src/routes/helpers.js - About 1 hr to fix

                                Function bugReportMail has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                    mailGenerator.bugReportMail = function (data, cb) {
                                        logger.verbose('Sending Bug-Report');
                                        const beachEventID = cls.getBeachEventID();
                                        const templatePath = path.join(__dirname, emailTemplatesFolderName, 'bugReport.ejs');
                                        return fs.readFile(templatePath, 'utf-8', function (err, template) {
                                Severity: Minor
                                Found in src/routes/mailGenerator/mailGenerator.js - About 1 hr to fix

                                  Function handleBadRequest has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                      const handleBadRequest = function (req, res, next) {
                                          const requiredKeys = helpers.getRequiredRouteConfig(routes, req.path, req.method, 'PARAMS');
                                          if (requiredKeys) {
                                              logger.silly('Required Keys', requiredKeys);
                                  
                                  
                                  Severity: Minor
                                  Found in src/routes/middleware/badRequestHandler.js - About 1 hr to fix

                                    Function SpielplanController has 10 arguments (exceeds 4 allowed). Consider refactoring.
                                    Open

                                        function SpielplanController($state, $scope, spiele, spiel, auth, toastr, anzahlPlaetze, spielModus, zeiten, spielplanEnabled) {
                                    Severity: Major
                                    Found in src/public/templates/event/spielplan/spielplan.ui.js - About 1 hr to fix

                                      Function JugendPanelController has 10 arguments (exceeds 4 allowed). Consider refactoring.
                                      Open

                                          function JugendPanelController(auth, gruppe, jugend, GruppeEditierenDialog, spielplan, $state, $scope, BestaetigenDialog, AddZwischengruppeDialog, $rootScope) {
                                      Severity: Major
                                      Found in src/public/components/jugend-panel/jugend-panel.ui.js - About 1 hr to fix

                                        Function TeamController has 10 arguments (exceeds 4 allowed). Consider refactoring.
                                        Open

                                            function TeamController(aktivesTeam, spiele, TeamAbonnierenDialog, email, $state, toastr, gruppe, anmeldung, auth, spielplanEnabled) {
                                        Severity: Major
                                        Found in src/public/templates/event/tgj/teams/team/team.ui.js - About 1 hr to fix
                                          Severity
                                          Category
                                          Status
                                          Source
                                          Language