inventid/opengraph-cacher

View on GitHub

Showing 20 of 23 total issues

Function fetchFromRemote has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

async function fetchFromRemote(urlToFetch) {
const options = {
url : encodeURI(urlToFetch),
timeout : HTTP_TIMEOUT,
headers : {
Severity: Minor
Found in src/opengraph.js - About 2 hrs to fix

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

async function fetchFromRemote(urlToFetch) {
const options = {
url : encodeURI(urlToFetch),
timeout : HTTP_TIMEOUT,
headers : {
Severity: Minor
Found in src/opengraph.js - About 1 hr to fix

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

    it('should prefer the set url', async () => {
    const result = await postProcess("http://bit.ly/redirect", {ogUrl : 'http://example.com'});
    assert.strictEqual(result.data.url[0].value, 'http://example.com');
    });
    Severity: Major
    Found in test/mapper.js and 1 other location - About 1 hr to fix
    test/mapper.js on lines 17..20

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

    it('should set the name if given', async () => {
    const result = await postProcess("http://bit.ly/redirect", {ogSiteName : 'Example'});
    assert.strictEqual(result.data.site_name[0].value, 'Example');
    });
    Severity: Major
    Found in test/mapper.js and 1 other location - About 1 hr to fix
    test/mapper.js on lines 7..10

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

    export default function postProcess(url, data) {
    const result = defaultOutput(url);
    const canonicalUrl = data.ogUrl || url;
     
    // Format images for their special cases
    Severity: Minor
    Found in src/mapper.js - About 1 hr to fix

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

      app.get('/opengraph', async (req, res) => {
      const data = await getOpengraphData(req.query.url);
      respondWithData(res, data);
      });
      Severity: Minor
      Found in src/index.js and 1 other location - About 40 mins to fix
      src/index.js on lines 23..26

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

      app.delete('/opengraph', async (req, res) => {
      const data = await removeOpengraphData(req.query.url);
      respondWithData(res, data);
      });
      Severity: Minor
      Found in src/index.js and 1 other location - About 40 mins to fix
      src/index.js on lines 19..22

      Parsing error: Invalid ecmaVersion.
      Open

      import defaultOutput from './defaultOutput';
      Severity: Minor
      Found in src/mapper.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      // A top 1000 over Alexa at one point in time (limited to approx 150 entries)
      Severity: Minor
      Found in test/knownDomainList.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      const moment = require("moment-timezone");
      Severity: Minor
      Found in src/defaultOutput.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import ogs from 'open-graph-scraper';
      Severity: Minor
      Found in src/opengraph.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import moment from "moment-timezone";
      Severity: Minor
      Found in src/log.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import {describe, it} from 'mocha';
      Severity: Minor
      Found in test/mapper.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import './mapper';
      Severity: Minor
      Found in test/index.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import {describe, it} from 'mocha';
      Severity: Minor
      Found in test/opengraph.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import ElasticSearch from 'elasticsearch';
      Severity: Minor
      Found in src/cache.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import express from 'express';
      Severity: Minor
      Found in src/index.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import {it} from "mocha";
      Severity: Minor
      Found in test/knownDomains.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import {promisify} from 'es6-promisify';
      Severity: Minor
      Found in src/network.js by eslint

      Parsing error: Invalid ecmaVersion.
      Open

      import {describe, it} from 'mocha';
      Severity: Minor
      Found in test/network.js by eslint
      Severity
      Category
      Status
      Source
      Language