A11yWatch/a11ywatch-core

View on GitHub

Showing 188 of 188 total issues

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

    if (!user.role && validateResetDate(user.usageAnchorDate)) {
      user.usageAnchorDate = addMonths(user.usageAnchorDate, 1);
      scanInfo.totalUptime = 0;
    }
Severity: Major
Found in src/core/controllers/users/update/scan-attempt.ts and 1 other location - About 1 hr to fix
src/core/controllers/users/update/reset.ts on lines 45..48

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

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

    if (!user.role && validateResetDate(user.usageAnchorDate)) {
      user.usageAnchorDate = addMonths(user.usageAnchorDate, 1);
      scanInfo.totalUptime = 0;
    }
Severity: Major
Found in src/core/controllers/users/update/reset.ts and 1 other location - About 1 hr to fix
src/core/controllers/users/update/scan-attempt.ts on lines 47..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 58.

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 getWebParams has 28 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const getWebParams = (req: FastifyContext["request"]) => {
  const url = paramParser(req, "url");
  const customHeaders = paramParser(req, "customHeaders");
  const mobile = paramParser(req, "mobile");
  const pageInsights = paramParser(req, "pageInsights");
Severity: Minor
Found in src/web/params/web.ts - About 1 hr to fix

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

    export const getPageActionsPaging = async (
      {
        userId,
        domain,
        url,
    Severity: Minor
    Found in src/core/controllers/page-actions/page-actions.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 crawlWebsite has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

      crawlWebsite: async (_, { url }, context) => {
        if (!url) {
          return {
            website: null,
            code: StatusCode.NotFound,
    Severity: Minor
    Found in src/core/mutations.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 crawlMultiSiteWithEvent has 27 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export const crawlMultiSiteWithEvent = (
      props: CrawlParams
    ): Promise<CrawlMultiSite> => {
      const { url, userId, subdomains, tld, agent, proxy } = props;
    
    
    Severity: Minor
    Found in src/core/utils/multi-site.ts - About 1 hr to fix

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

      const createIframe = async (
        req: FastifyContext["request"],
        res: FastifyContext["reply"]
      ) => {
        const baseUrl = req.query["url"] || req.query["websiteUrl"];
      Severity: Minor
      Found in src/core/controllers/iframe.ts - About 1 hr to fix

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

          if (typeof domain !== "undefined" && domain) {
            if (all) {
              searchProps = domainNameFind(searchProps, domain);
            } else {
              searchProps = { ...searchProps, domain };
        Severity: Major
        Found in src/core/utils/filters/website.ts and 2 other locations - About 1 hr to fix
        src/core/controllers/analytics/index.ts on lines 27..33
        src/core/controllers/page-speed/main.ts on lines 14..20

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

        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 3 locations. Consider refactoring.
        Open

          if (typeof domain !== "undefined" && domain) {
            if (all) {
              filters = domainNameFind(filters, domain);
            } else {
              filters = { ...filters, domain };
        Severity: Major
        Found in src/core/controllers/analytics/index.ts and 2 other locations - About 1 hr to fix
        src/core/controllers/page-speed/main.ts on lines 14..20
        src/core/utils/filters/website.ts on lines 32..38

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

        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 3 locations. Consider refactoring.
        Open

          if (typeof domain !== "undefined" && domain) {
            if (all) {
              params = domainNameFind(params, domain);
            } else {
              params = { ...params, domain };
        Severity: Major
        Found in src/core/controllers/page-speed/main.ts and 2 other locations - About 1 hr to fix
        src/core/controllers/analytics/index.ts on lines 27..33
        src/core/utils/filters/website.ts on lines 32..38

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

        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

        Consider simplifying this complex logical expression.
        Open

          if (
            (typeof proxy !== "undefined" && !proxy) ||
            (proxy &&
              typeof proxy === "string" &&
              (proxy.startsWith("http") ||
        Severity: Major
        Found in src/core/controllers/websites/update/update-website.ts - About 1 hr to fix

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

            server.bindAsync(GRPC_HOST, ServerCredentials.createInsecure(), () => {
              server.start();
              console.log(`gRPC server running at ${GRPC_HOST}`);
            });
          Severity: Major
          Found in src/proto/website-server.ts and 1 other location - About 1 hr to fix
          src/proto/website-server.ts on lines 55..62

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

          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

            publicServer.bindAsync(
              GRPC_HOST_PUBLIC,
              ServerCredentials.createInsecure(),
              () => {
                publicServer.start();
          Severity: Major
          Found in src/proto/website-server.ts and 1 other location - About 1 hr to fix
          src/proto/website-server.ts on lines 50..53

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

          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 AnalyticsController has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          export const AnalyticsController = ({ user } = { user: null }) => ({
            getCollection: analyticsCollection,
            getWebsite: async (
              { pageUrl, userId, domain, bypass }: BaseParams & { bypass?: boolean },
              chain?: boolean
          Severity: Minor
          Found in src/core/controllers/analytics/index.ts - 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 websiteShape has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          const websiteShape = (source: any) => {
            let website;
          
            if ("website" in source) {
              website = source?.website;
          Severity: Minor
          Found in src/core/utils/shapes/website-gql.ts - 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 websiteSearchParams has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          export function websiteSearchParams({
            userId,
            url,
            pageUrl,
            domain,
          Severity: Minor
          Found in src/core/utils/filters/website.ts - 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 getPages has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          export const getPages = async (
            { domain, userId, url }: { domain?: string; userId?: number; url?: string },
            chain?: boolean
          ) => {
            if (!pagesCollection) {
          Severity: Minor
          Found in src/core/controllers/pages/find/domains.ts - 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 getDataUntil has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          const getDataUntil = async (
            baseProps: ScoreProps & { resolve: Resolver },
            offset?: number,
            prevIssuesInfo?: any
          ): Promise<void> => {
          Severity: Minor
          Found in src/core/controllers/pages/update/utils/domain.ts - 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 getIssue has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

          export const getIssue = async (
            { url, pageUrl, userId, noRetries }: any,
            chain?: boolean
          ) => {
            const queryUrl = decodeURIComponent(String(url || pageUrl));
          Severity: Minor
          Found in src/core/controllers/issues/find/index.ts - 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

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

            if (!url) {
              res.status(400);
              res.send(
                responseModel({
                  code: StatusCode.BadRequest,
          Severity: Major
          Found in src/web/routes/scan.ts and 2 other locations - About 50 mins to fix
          src/web/routes/scan.ts on lines 45..55
          src/web/routes/scan.ts on lines 81..91

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

          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

          Severity
          Category
          Status
          Source
          Language