universoimpulso/atena

View on GitHub

Showing 47 of 96 total issues

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

export const reactionSended = () => {
  const medals = [
    {
      name: 'iron',
      displayMedal: 'Ferro',
Severity: Minor
Found in src/config/achievements/reactionSended.js - About 1 hr to fix

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

    export const reactionReceived = () => {
      const medals = [
        {
          name: 'iron',
          displayMedal: 'Ferro',
    Severity: Minor
    Found in src/config/achievements/reactionReceived.js - About 1 hr to fix

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

        async handle({ user, previousLevel }) {
          try {
            LevelHistory.create({
              user: user.uuid,
              level: {
      Severity: Minor
      Found in src/controllers/LevelController.js - About 1 hr to fix

        Function generateRankingMessage has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

          generateRankingMessage({ ranking, user, userRanking, monthName }) {
            if (!ranking || ranking.length < 5)
              return 'Ops. Ainda não temos dados suficientes para gerar o ranking neste momento. :/'
        
            const type = monthName ? `de ${monthName}` : 'geral'
        Severity: Minor
        Found in src/controllers/CommandController/utils.js - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function updateEmailServices has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
        Open

          async updateEmailServices() {
            try {
              const totalUsers = await User.countDocuments({})
              let dripSubscribers = []
              let mailJetContacts = []
        Severity: Minor
        Found in src/controllers/UserController/index.js - About 1 hr to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

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

          async scoreReactionRemoved({ sender, receiver, reaction }) {
            try {
              const options = {
                runValidators: true,
                upsert: true,
        Severity: Minor
        Found in src/controllers/ScoreController/index.js - About 1 hr to fix

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

            async handleGivePoints({ user, provider, content }) {
              try {
                if (!user.isCoreTeam) {
                  return BotController.sendMessageToUser({
                    provider: provider.name,
          Severity: Minor
          Found in src/controllers/CommandController/index.js - About 1 hr to fix

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

            const handleClickOnProduct = async data => {
              try {
                const { properties, impulser_uuid, time } = data
            
                if (!properties.name || !Object.keys(products).includes(properties.name))
            Severity: Minor
            Found in src/services/amqp/enlistment.js - About 1 hr to fix

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

              scoreSchema.statics.getDailyScore = async function (uuid) {
                const result = await this.aggregate([
                  {
                    $match: {
                      user: uuid,
              Severity: Minor
              Found in src/models/Score/index.js - About 1 hr to fix

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

                  generateRankingMessage({ ranking, user, userRanking, monthName }) {
                    if (!ranking || ranking.length < 5)
                      return 'Ops. Ainda não temos dados suficientes para gerar o ranking neste momento. :/'
                
                    const type = monthName ? `de ${monthName}` : 'geral'
                Severity: Minor
                Found in src/controllers/CommandController/utils.js - About 1 hr to fix

                  Function handleProfileCompleteness has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
                  Open

                    async handleProfileCompleteness(payload) {
                      try {
                        const { uuid, completeness, provider } = payload
                  
                        let user = await User.findOne({ uuid })
                  Severity: Minor
                  Found in src/controllers/ScoreController/index.js - About 1 hr to fix

                  Cognitive Complexity

                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                  A method's cognitive complexity is based on a few simple rules:

                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                  • Code is considered more complex for each "break in the linear flow of the code"
                  • Code is considered more complex when "flow breaking structures are nested"

                  Further reading

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

                  export const formatUser = data => {
                    const {
                      uuid,
                      status,
                      fullname,
                  Severity: Minor
                  Found in src/utils/index.js - About 1 hr to fix

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

                      async handle(payload) {
                        try {
                          const { provider } = payload
                          const user = await User.findOne({
                            [`${provider.name}.id`]: provider.user.id
                    Severity: Minor
                    Found in src/controllers/MessageController.js - About 1 hr to fix

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

                        async sendMonthlyRankingToChannel() {
                          try {
                            const { ranking } = await RankingController.getMonthlyRanking({
                              offset: 0,
                              size: 5
                      Severity: Minor
                      Found in src/controllers/BotController.js - About 1 hr to fix

                        Function scoreReactionSended has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                          async scoreReactionSended({ sender, reaction, payload, alreadyAchieved }) {
                            try {
                              if (await this.reactionSendedCannotScore({ reaction, payload })) return
                              await Score.create({
                                user: sender.uuid,
                        Severity: Minor
                        Found in src/controllers/ScoreController/index.js - About 1 hr to fix

                          Function sendMessage has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                            async sendMessage({ user, provider, mentions, channels, content }) {
                              try {
                                if (!user.isCoreTeam) {
                                  return BotController.sendMessageToUser({
                                    provider: provider.name,
                          Severity: Minor
                          Found in src/controllers/CommandController/index.js - About 1 hr to fix

                            Function removeEmptyValues has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                            Open

                            export const removeEmptyValues = obj => {
                              Object.keys(obj).forEach(function (key) {
                                if (obj[key] && typeof obj[key] === 'object') {
                                  if (Object.keys(obj[key]).length) {
                                    removeEmptyValues(obj[key])
                            Severity: Minor
                            Found in src/utils/index.js - About 1 hr to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Function givePoints has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                            Open

                              async givePoints({ user, usernames, provider, points, reason }) {
                                const response = {
                                  msg: 'Eis o resultado do seu comando: ',
                                  attachments: []
                                }
                            Severity: Minor
                            Found in src/controllers/CommandController/utils.js - About 1 hr to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Function handle has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                            Open

                              async handle(payload) {
                                try {
                                  const { isNew, user } = await User.createOrUpdate(payload)
                            
                                  if (
                            Severity: Minor
                            Found in src/controllers/UserController/index.js - About 55 mins to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Function handle has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                            Open

                              async handle({ user, previousLevel }) {
                                try {
                                  LevelHistory.create({
                                    user: user.uuid,
                                    level: {
                            Severity: Minor
                            Found in src/controllers/LevelController.js - About 45 mins to fix

                            Cognitive Complexity

                            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                            A method's cognitive complexity is based on a few simple rules:

                            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                            • Code is considered more complex for each "break in the linear flow of the code"
                            • Code is considered more complex when "flow breaking structures are nested"

                            Further reading

                            Severity
                            Category
                            Status
                            Source
                            Language