A11yWatch/a11ywatch-core

View on GitHub

Showing 188 of 188 total issues

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

export async function websiteWatch(pages: Website[] = []): Promise<void> {
  for (const website of pages) {
    const { userId, url, subdomains, tld, ua, proxy, monitoringEnabled } =
      website;

Severity: Minor
Found in src/core/controllers/websites/watch-pages.ts - 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 allowedNext has 34 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const allowedNext = (
  token: string,
  req: FastifyContext["request"],
  res: FastifyContext["reply"],
  mediaType?: "html" | "json"
Severity: Minor
Found in src/core/utils/get-user-data.ts - About 1 hr to fix

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

    export const registerApp = async (app: FastifyInstance) => {
      await app.register(cors, {
        origin: true,
      });
    
    
    Severity: Minor
    Found in src/web/register.ts - About 1 hr to fix

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

      const onAuthGithub = (requestToken: string): Promise<any> => {
        return new Promise((resolve, reject) => {
          // TODO: shape with ttsc
          const data = JSON.stringify({
            client_id: clientID,
      Severity: Minor
      Found in src/web/routes_groups/auth.ts - About 1 hr to fix

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

        export const createServer = async () => {
          const websiteProto = await loadProto(); // crawler handling proto
          const coreProto = await loadProto("apicore.proto");
        
          server = new Server();
        Severity: Minor
        Found in src/proto/website-server.ts - About 1 hr to fix

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

          const cleanUserProps = ({
            alertEnabled,
            email,
            emailConfirmed,
            githubId,
          Severity: Major
          Found in src/web/routes_groups/auth.ts and 1 other location - About 1 hr to fix
          src/web/routes_groups/auth.ts on lines 85..98

          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 61.

          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

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

            return {
              alertEnabled,
              email,
              emailConfirmed,
              githubId,
          Severity: Major
          Found in src/web/routes_groups/auth.ts and 1 other location - About 1 hr to fix
          src/web/routes_groups/auth.ts on lines 71..84

          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 61.

          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

                          `${JSON.stringify({
                            data,
                            message: `${data?.url} has ${issuesFound} issue${
                              issuesFound === 1 ? "" : "s"
                            }`,
          Severity: Major
          Found in src/core/utils/crawl-stream.ts and 1 other location - About 1 hr to fix
          src/core/utils/crawl-stream.ts on lines 43..50

          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 61.

          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

                          `${JSON.stringify({
                            data,
                            message: `${data?.url} has ${issuesFound} issue${
                              issuesFound === 1 ? "" : "s"
                            }`,
          Severity: Major
          Found in src/core/utils/crawl-stream.ts and 1 other location - About 1 hr to fix
          src/core/utils/crawl-stream.ts on lines 63..70

          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 61.

          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

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

          export const getAnalyticsPaging = async (
            params,
            chain?: boolean
          ): Promise<[Analytic[], Collection<Document>] | Analytic[]> => {
            const { userId, domain, limit = 20, offset = 0, all = false } = params ?? {};
          Severity: Minor
          Found in src/core/controllers/analytics/index.ts - 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 runUserChecks has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

          export const runUserChecks = async ({
            userId,
            user,
            collection,
          }: {
          Severity: Minor
          Found in src/core/controllers/users/update/reset.ts - 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

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

                if (user.stripeID) {
                  try {
                    await stripe.customers.update(user.stripeID, { email: user.email });
                  } catch (e) {
                    console.error(e);
          Severity: Major
          Found in src/core/controllers/users/update/validate-email.ts and 1 other location - About 1 hr to fix
          src/core/controllers/users/update/payments.ts on lines 84..92

          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 60.

          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

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

          export const verifyUserSend = async ({
            userId,
            confirmedOnly = false, // confirmed only requires user id - non marketing sending.
            sendEmail = false, // conditional to determine email sending. Without having to use conditionals.
          }: VerifySend) => {
          Severity: Minor
          Found in src/core/messagers/verify.ts - 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 setDnsVerifyRoutes has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

          export const setDnsVerifyRoutes = (app: FastifyInstance) => {
            app.get("/api/website/dns", async (req, res) => {
              const userId = validateUserRequest(req);
          
              // check to see if dns if verified
          Severity: Minor
          Found in src/web/routes_groups/dns-verify.ts - 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 getUserFromApiScan has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

          export const getUserFromApiScan = async (
            token: string = "",
            _req: FastifyContext["request"],
            res: FastifyContext["reply"]
          ): Promise<User> => {
          Severity: Minor
          Found in src/core/utils/get-user-data.ts - 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 coreCrawl has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

          export const coreCrawl = async (call: ServerCallStreaming) => {
            const { authorization, url, subdomains, tld, sitemap } = call.request;
            const userNext = getUserFromToken(authorization); // get current user
            const userId = userNext?.payload?.keyid;
          
          
          Severity: Minor
          Found in src/proto/calls/core-crawl.ts - 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 getWebsiteReport has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

          export const getWebsiteReport = async (
            req: FastifyContext["request"],
            res: FastifyContext["reply"]
          ) => {
            const download = paramParser(req, "download");
          Severity: Minor
          Found in src/web/routes/data/website.ts - 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 sendMailMultiPage has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
          Open

          const sendMailMultiPage = async ({
            userId,
            data,
            domain,
            sendEmail = true,
          Severity: Minor
          Found in src/core/messagers/email.ts - 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

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

                if (parsedToken?.id) {
                  try {
                    await stripe.customers.createSource(customer.id, {
                      source: parsedToken.id,
                    });
          Severity: Major
          Found in src/core/controllers/users/update/payments.ts and 1 other location - About 1 hr to fix
          src/core/controllers/users/update/validate-email.ts on lines 13..19

          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 60.

          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

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

          export const coreCrawl = async (call: ServerCallStreaming) => {
            const { authorization, url, subdomains, tld, sitemap } = call.request;
            const userNext = getUserFromToken(authorization); // get current user
            const userId = userNext?.payload?.keyid;
          
          
          Severity: Minor
          Found in src/proto/calls/core-crawl.ts - About 1 hr to fix
            Severity
            Category
            Status
            Source
            Language