os-js/osjs-server

View on GitHub

Showing 13 of 17 total issues

Function createRequestFactory has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
Open

const createRequestFactory = findMountpoint => (getter, method, readOnly, respond) => async (req, res) => {
  const call = async (target, rest, options) => {
    const found = await findMountpoint(target);
    const attributes = found.mount.attributes || {};
    const strict = attributes.strictGroups !== false;
Severity: Minor
Found in src/vfs.js - About 1 day 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 exports has 129 lines of code (exceeds 25 allowed). Consider refactoring.
Open

module.exports = (core) => {
  const wrapper = (method, cb, ...args) => vfs => (file, options = {}) => {
    const promise = Promise.resolve(getRealPath(core, options.session, vfs.mount, file))
      .then(realPath => fs[method](realPath, ...args));

Severity: Major
Found in src/adapters/vfs/system.js - About 5 hrs to fix

    Function createRequestFactory has 55 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const createRequestFactory = findMountpoint => (getter, method, readOnly, respond) => async (req, res) => {
      const call = async (target, rest, options) => {
        const found = await findMountpoint(target);
        const attributes = found.mount.attributes || {};
        const strict = attributes.strictGroups !== false;
    Severity: Major
    Found in src/vfs.js - About 2 hrs to fix

      Function call has 44 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        const call = async (target, rest, options) => {
          const found = await findMountpoint(target);
          const attributes = found.mount.attributes || {};
          const strict = attributes.strictGroups !== false;
      
      
      Severity: Minor
      Found in src/vfs.js - About 1 hr to fix

        Function exports has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
        Open

        module.exports = (core) => {
          const wrapper = (method, cb, ...args) => vfs => (file, options = {}) => {
            const promise = Promise.resolve(getRealPath(core, options.session, vfs.mount, file))
              .then(realPath => fs[method](realPath, ...args));
        
        
        Severity: Minor
        Found in src/adapters/vfs/system.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 initSocketRoutes has 35 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          initSocketRoutes() {
            const {app} = this.core;
        
            app.ws('/', (ws, req) => {
              ws.upgradeReq = ws.upgradeReq || req;
        Severity: Minor
        Found in src/providers/core.js - About 1 hr to fix

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

          module.exports = core => {
            const router = express.Router();
            const methods = vfs(core);
            const middleware = createMiddleware(core);
            const {isAuthenticated} = core.make('osjs/express');
          Severity: Minor
          Found in src/vfs.js - About 1 hr to fix

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

              initService() {
                const {app} = this.core;
                const {requireAllGroups} = this.core.configuration.auth;
            
                const middleware = {
            Severity: Minor
            Found in src/providers/core.js - About 1 hr to fix

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

                async listen() {
                  const httpPort = this.config('port');
                  const httpHost = this.config('bind');
                  const wsPort = this.config('ws.port') || httpPort;
                  const pub = this.config('public');
              Severity: Minor
              Found in src/core.js - About 1 hr to fix

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

                const onDone = (req, res) => {
                  if (req.files) {
                    for (let fieldname in req.files) {
                      try {
                        const n = req.files[fieldname].path;
                Severity: Minor
                Found in src/vfs.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 destroy has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                Open

                  async destroy(done = () => {}) {
                    if (this.destroyed) {
                      return;
                    }
                
                
                Severity: Minor
                Found in src/core.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

                Function createCrossRequestFactory has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                const createCrossRequestFactory = findMountpoint => (getter, method, respond) => async (req, res) => {
                  const [from, to, options] = [...getter(req, res), createOptions(req)];
                
                  const srcMount = await findMountpoint(from);
                  const destMount = await findMountpoint(to);
                Severity: Minor
                Found in src/vfs.js - About 25 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 createOptions has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                Open

                const createOptions = req => {
                  const options = req.fields.options;
                  const range = req.headers && req.headers.range;
                  const session = {...req.session || {}};
                  let result = options || {};
                Severity: Minor
                Found in src/vfs.js - About 25 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