Showing 8 of 16 total issues
Function _resolve_dn_to_alias
has 50 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports._resolve_dn_to_alias = (dn, callback, connection) => {
const pool = connection.server.notes.ldappool;
if (!pool) {
return onError('LDAP Pool not found!');
}
Function _get_alias
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports._get_alias = function (address, callback, connection) {
const pool = connection.server.notes.ldappool;
if (!pool) {
return onError('LDAP Pool not found!');
}
Function check_authz
has 36 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports.check_authz = function (next, connection, params) {
if (
!connection.notes ||
!connection.notes.auth_user ||
!params ||
Function aliases
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports.aliases = function (next, connection, params) {
if (!params || !params[0] || !params[0].address) {
connection.logerror(
`Ignoring invalid call. Given params: ${util.inspect(params)}`,
);
Function _verify_address
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports._verify_address = function (uid, address, callback, connection) {
const pool = connection.server.notes.ldappool;
const onError = (err) => {
connection.logerror(`Could not verify address ${address} for UID ${uid}`);
connection.logdebug(`${util.inspect(err)}`);
Function _verify_existence
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports._verify_existence = function (address, callback, connection) {
const pool = connection.server.notes.ldappool;
function onError(err) {
connection.logerror(`Could not verify address ${address}`);
connection.logdebug(`${util.inspect(err)}`);
Function _get_dn_for_uid
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
exports._get_dn_for_uid = function (uid, callback, connection) {
const pool = connection.server.notes.ldappool;
function onError(err) {
connection.logerror(`Could not get DN for UID ${uid}`);
connection.logdebug(`: ${util.inspect(err)}`);
Function check_plain_passwd_dn
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
Open
exports.check_plain_passwd_dn = function (connection, user, passwd, cb) {
connection.logdebug(`Looking up user ${util.inspect(user)} by DN.`);
let iter = 0;
let cbCalled = false;
- 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"