lovelyCARDINAL/WikiBots

View on GitHub

Showing 10 of 10 total issues

Function techTable has 67 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    const techTable = async () => {
        const { data: ghiaData } = await axios.get('https://raw.githubusercontent.com/MoegirlPediaInterfaceAdmins/MoegirlPediaInterfaceCodes/master/src/global/zh/MediaWiki:GHIAHistory.json');
        const processData = [
            Promise.all([
                queryContribs(zhapi, userData.techeditor, '10|828', time[180]),
Severity: Major
Found in src/Activity/maintainer.js - About 2 hrs to fix

    Consider simplifying this complex logical expression.
    Open

                if (nsContribsData.length || ghiaContribsCount) {
                    const nsLatestTimestamp = nsContribsData.length && moment.max(nsContribsData.map((item) => moment(item.timestamp)));
                    const ghiaLatestTimestamp = ghiaUserData?.length && moment.max(ghiaUserData.map((item) => moment(item.datetime))) || 0;
                    const latestTimestamp = moment.max([nsLatestTimestamp, ghiaLatestTimestamp]);
                    const timestamp = timestampCST(latestTimestamp);
    Severity: Critical
    Found in src/Activity/maintainer.js - About 2 hrs to fix

      Function hidePages has 38 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      async function hidePages(user) {
          const pagelist = await Promise.all([
              queryPages(user, '2'),
              queryPages(user, '3'),
          ]).then((result) => result.flat());
      Severity: Minor
      Found in src/Suppress/userLog.js - About 1 hr to fix

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

        async function hideAbuseLog(afluser) {
            let retry = 0;
            while (retry < 30) {
                const ids = await (async () => {
                    const result = [];
        Severity: Minor
        Found in src/Suppress/userLog.js - About 1 hr to fix

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

              const maintainTable = async () => {
                  const processData = [
                      Promise.all([
                          queryContribs(zhapi, userData.sysop, '0|10|14|12|4|6', time[30]),
                          queryContribs(cmapi, userData.sysop, '0|10|14|12|4|6', time[30]),
          Severity: Minor
          Found in src/Activity/maintainer.js - About 1 hr to fix

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

            async function hideAbuseLog(afluser) {
                let retry = 0;
                while (retry < 30) {
                    const ids = await (async () => {
                        const result = [];
            Severity: Minor
            Found in src/Suppress/userLog.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 queryLatestEvents has 27 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            async function queryLatestEvents(api, user, end) {
                const { data: { query: { usercontribs, logevents } } } = await api.post({
                    list: 'usercontribs|logevents',
                    uclimit: '1',
                    lelimit: '1',
            Severity: Minor
            Found in src/Activity/maintainer.js - About 1 hr to fix

              Function clientLogin has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              async function clientLogin(api, username, password = config.password) {
                  return api
                      .postWithToken(
                          'login',
                          {
              Severity: Minor
              Found in src/utils/clientLogin.js - About 1 hr to fix

                Function findImageName has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                function findImageName(imgSrc) {
                    const result = {
                        bad_image_info: '',
                        image_name: '',
                    };
                Severity: Minor
                Found in src/File/mainpageImages.js - About 35 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 queryLogs has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
                Open

                async function queryLogs(api, leaction, leend, lestart = undefined) {
                    const result = [];
                    const eol = Symbol();
                    let lecontinue = undefined;
                    while (lecontinue !== eol) {
                Severity: Minor
                Found in src/Suppress/userLog.js - About 35 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