Showing 38 of 72 total issues
File instance.js
has 653 lines of code (exceeds 250 allowed). Consider refactoring. Open
'use strict';
const _ = require('lodash');
const Promise = require('bluebird');
const util = require('util');
File model.js
has 443 lines of code (exceeds 250 allowed). Consider refactoring. Open
const util = require('util');
const _ = require("lodash");
const Promise = require('bluebird');
const StorageAdapter = require("./storageAdapter");
Function cloneDefaults
has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring. Open
function cloneDefaults(data) {
var cloned;
if (!_.isPlainObject(data) && !Array.isArray(data)) {
if (data instanceof Instance) {
- Read upRead up
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 _getDirtyRefDocs
has 65 lines of code (exceeds 25 allowed). Consider refactoring. Open
Instance.prototype._getDirtyRefDocs = Promise.method(function() {
const self = this;
const out = {
current: [],//collection of current ref-documents which will be persisted to the bucket
Function getByIdOrFail
has 64 lines of code (exceeds 25 allowed). Consider refactoring. Open
Model.prototype.getByIdOrFail = Promise.method(function(id, options) {
let key = id;
const actions = [];
const defaults = {
paranoid: true,
Function build
has 62 lines of code (exceeds 25 allowed). Consider refactoring. Open
function build(options) {
const defaults = {
_data: true, //data json references
allErrors: false,
verbose: true, //include validated data in errors
Function Model
has 58 lines of code (exceeds 25 allowed). Consider refactoring. Open
function Model(name, schema, options) {
if (!name || (typeof name !== "string" && !(name instanceof String) )) {
throw new ModelError("Model's name must be non-empty string value");
}
Function _init
has 57 lines of code (exceeds 25 allowed). Consider refactoring. Open
Model.prototype._init = function(modelManager) {
const self = this;
this._modelManager = modelManager;
Function Instance
has 53 lines of code (exceeds 25 allowed). Consider refactoring. Open
function Instance(data, options) {
Document.call(this, {
data : data,
key : options.key,
Function replace
has 53 lines of code (exceeds 25 allowed). Consider refactoring. Open
Instance.prototype.replace = Promise.method(function(options) {
const self = this;
let timestampsBck;
options = options || {};
File storageAdapter.js
has 254 lines of code (exceeds 250 allowed). Consider refactoring. Open
var Promise = require("bluebird");
var Key = require("./key/key.js");
var Document = require("./document.js");
var _ = require("lodash");
var couchbase = require('couchbase');
Function _extract
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
function _extract(schema, keywords, _skipDefaults) {
let out = {};
keywords = keywords || {};
if (typeof _skipDefaults !== 'boolean') {
_skipDefaults = true;
- Read upRead up
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 _initRelations
has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring. Open
Instance.prototype._initRelations = function() {
const idPropName = this._schemaSettings.doc.idPropertyName;
const modelManager = this.Model._modelManager;
const relations = this.Model.relations;
const dataValues = this.getData();
- Read upRead up
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 getMulti
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Model.prototype.getMulti = Promise.method(function(ids, options) {
const defaults = {
indexed : true,
hooks : true,
Function extractAssociations
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
function extractAssociations(schema, data, path) {
data || (data = []);
path || (path = []);
if (!_.isPlainObject(schema)) {
- Read upRead up
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 _extract
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
function _extract(schema, keywords, _skipDefaults) {
let out = {};
keywords = keywords || {};
if (typeof _skipDefaults !== 'boolean') {
_skipDefaults = true;
Function cloneDefaults
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
function cloneDefaults(data) {
var cloned;
if (!_.isPlainObject(data) && !Array.isArray(data)) {
if (data instanceof Instance) {
Function extractAssociations
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
function extractAssociations(schema, data, path) {
data || (data = []);
path || (path = []);
if (!_.isPlainObject(schema)) {
Function getSerializedData
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Instance.prototype.getSerializedData = Promise.method(function() {
const relations = this.Model.relations;
const instance = this;
const modelManager = this.Model._modelManager;
Function populate
has 37 lines of code (exceeds 25 allowed). Consider refactoring. Open
Instance.prototype.populate = Promise.method(function(include, options) {
const instance = this;
const defaults = {
skipPopulated: true,
getOrFail: false