@feathersjs/authentication-local 5.0.0-pre.3 → 5.0.0-pre.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2021 Feathers
3
+ Copyright (c) 2022 Feathers
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @feathersjs/authentication-local
2
2
 
3
3
  [![CI](https://github.com/feathersjs/feathers/workflows/CI/badge.svg)](https://github.com/feathersjs/feathers/actions?query=workflow%3ACI)
4
- [![Dependency Status](https://img.shields.io/david/feathersjs/feathers.svg?style=flat-square&path=packages/authentication-local)](https://david-dm.org/feathersjs/feathers?path=packages/authentication-local)
5
4
  [![Download Status](https://img.shields.io/npm/dm/@feathersjs/authentication-local.svg?style=flat-square)](https://www.npmjs.com/package/@feathersjs/authentication-local)
5
+ [![Discord](https://badgen.net/badge/icon/discord?icon=discord&label)](https://discord.gg/qa8kez8QBx)
6
6
 
7
7
  > Local username and password authentication strategy for Feathers authentication
8
8
 
@@ -18,6 +18,6 @@ Refer to the [Feathers local authentication API documentation](https://docs.feat
18
18
 
19
19
  ## License
20
20
 
21
- Copyright (c) 2021 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
21
+ Copyright (c) 2022 [Feathers contributors](https://github.com/feathersjs/feathers/graphs/contributors)
22
22
 
23
23
  Licensed under the [MIT license](LICENSE).
@@ -1,6 +1,12 @@
1
- import { HookContext } from '@feathersjs/feathers';
1
+ import { HookContext, NextFunction } from '@feathersjs/feathers';
2
2
  export interface HashPasswordOptions {
3
3
  authentication?: string;
4
4
  strategy?: string;
5
5
  }
6
- export default function hashPassword(field: string, options?: HashPasswordOptions): (context: HookContext<any, any>) => Promise<HookContext<any, any>>;
6
+ /**
7
+ * @deprecated Use Feathers schema resolvers and the `passwordHash` resolver instead
8
+ * @param field
9
+ * @param options
10
+ * @returns
11
+ */
12
+ export default function hashPassword(field: string, options?: HashPasswordOptions): (context: HookContext, next?: NextFunction) => Promise<any>;
@@ -1,13 +1,4 @@
1
1
  "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
2
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
13
4
  };
@@ -17,42 +8,46 @@ const set_1 = __importDefault(require("lodash/set"));
17
8
  const cloneDeep_1 = __importDefault(require("lodash/cloneDeep"));
18
9
  const errors_1 = require("@feathersjs/errors");
19
10
  const commons_1 = require("@feathersjs/commons");
20
- const debug = commons_1.createDebug('@feathersjs/authentication-local/hooks/hash-password');
11
+ const debug = (0, commons_1.createDebug)('@feathersjs/authentication-local/hooks/hash-password');
12
+ /**
13
+ * @deprecated Use Feathers schema resolvers and the `passwordHash` resolver instead
14
+ * @param field
15
+ * @param options
16
+ * @returns
17
+ */
21
18
  function hashPassword(field, options = {}) {
22
19
  if (!field) {
23
20
  throw new Error('The hashPassword hook requires a field name option');
24
21
  }
25
- return (context) => __awaiter(this, void 0, void 0, function* () {
26
- if (context.type !== 'before') {
27
- throw new Error('The \'hashPassword\' hook should only be used as a \'before\' hook');
28
- }
22
+ return async (context, next) => {
29
23
  const { app, data, params } = context;
30
- if (data === undefined) {
31
- debug('hook.data is undefined. Skipping hashPassword hook.');
32
- return context;
33
- }
34
- const authService = app.defaultAuthentication(options.authentication);
35
- const { strategy = 'local' } = options;
36
- if (!authService || typeof authService.getStrategies !== 'function') {
37
- throw new errors_1.BadRequest('Could not find an authentication service to hash password');
24
+ if (data !== undefined) {
25
+ const authService = app.defaultAuthentication(options.authentication);
26
+ const { strategy = 'local' } = options;
27
+ if (!authService || typeof authService.getStrategies !== 'function') {
28
+ throw new errors_1.BadRequest('Could not find an authentication service to hash password');
29
+ }
30
+ const [localStrategy] = authService.getStrategies(strategy);
31
+ if (!localStrategy || typeof localStrategy.hashPassword !== 'function') {
32
+ throw new errors_1.BadRequest(`Could not find '${strategy}' strategy to hash password`);
33
+ }
34
+ const addHashedPassword = async (data) => {
35
+ const password = (0, get_1.default)(data, field);
36
+ if (password === undefined) {
37
+ debug(`hook.data.${field} is undefined, not hashing password`);
38
+ return data;
39
+ }
40
+ const hashedPassword = await localStrategy.hashPassword(password, params);
41
+ return (0, set_1.default)((0, cloneDeep_1.default)(data), field, hashedPassword);
42
+ };
43
+ context.data = Array.isArray(data)
44
+ ? await Promise.all(data.map(addHashedPassword))
45
+ : await addHashedPassword(data);
38
46
  }
39
- const [localStrategy] = authService.getStrategies(strategy);
40
- if (!localStrategy || typeof localStrategy.hashPassword !== 'function') {
41
- throw new errors_1.BadRequest(`Could not find '${strategy}' strategy to hash password`);
47
+ if (typeof next === 'function') {
48
+ return next();
42
49
  }
43
- const addHashedPassword = (data) => __awaiter(this, void 0, void 0, function* () {
44
- const password = get_1.default(data, field);
45
- if (password === undefined) {
46
- debug(`hook.data.${field} is undefined, not hashing password`);
47
- return data;
48
- }
49
- const hashedPassword = yield localStrategy.hashPassword(password, params);
50
- return set_1.default(cloneDeep_1.default(data), field, hashedPassword);
51
- });
52
- context.data = Array.isArray(data) ? yield Promise.all(data.map(addHashedPassword)) :
53
- yield addHashedPassword(data);
54
- return context;
55
- });
50
+ };
56
51
  }
57
52
  exports.default = hashPassword;
58
53
  //# sourceMappingURL=hash-password.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"hash-password.js","sourceRoot":"","sources":["../../src/hooks/hash-password.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAAA,qDAA6B;AAC7B,qDAA6B;AAC7B,iEAAyC;AACzC,+CAAgD;AAChD,iDAAkD;AAIlD,MAAM,KAAK,GAAG,qBAAW,CAAC,sDAAsD,CAAC,CAAC;AAOlF,SAAwB,YAAY,CAAE,KAAa,EAAE,UAA+B,EAAE;IACpF,IAAI,CAAC,KAAK,EAAE;QACV,MAAM,IAAI,KAAK,CAAC,oDAAoD,CAAC,CAAC;KACvE;IAED,OAAO,CAAO,OAA8B,EAAE,EAAE;QAC9C,IAAI,OAAO,CAAC,IAAI,KAAK,QAAQ,EAAE;YAC7B,MAAM,IAAI,KAAK,CAAC,oEAAoE,CAAC,CAAC;SACvF;QAED,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAC;QAEtC,IAAI,IAAI,KAAK,SAAS,EAAE;YACtB,KAAK,CAAC,qDAAqD,CAAC,CAAC;YAC7D,OAAO,OAAO,CAAC;SAChB;QAED,MAAM,WAAW,GAAG,GAAG,CAAC,qBAAqB,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;QACtE,MAAM,EAAE,QAAQ,GAAG,OAAO,EAAE,GAAG,OAAO,CAAC;QAEvC,IAAI,CAAC,WAAW,IAAI,OAAO,WAAW,CAAC,aAAa,KAAK,UAAU,EAAE;YACnE,MAAM,IAAI,mBAAU,CAAC,2DAA2D,CAAC,CAAC;SACnF;QAED,MAAM,CAAE,aAAa,CAAE,GAAG,WAAW,CAAC,aAAa,CAAC,QAAQ,CAAoB,CAAC;QAEjF,IAAI,CAAC,aAAa,IAAI,OAAO,aAAa,CAAC,YAAY,KAAK,UAAU,EAAE;YACtE,MAAM,IAAI,mBAAU,CAAC,mBAAmB,QAAQ,6BAA6B,CAAC,CAAC;SAChF;QAED,MAAM,iBAAiB,GAAG,CAAO,IAAS,EAAE,EAAE;YAC5C,MAAM,QAAQ,GAAG,aAAG,CAAC,IAAI,EAAE,KAAK,CAAC,CAAC;YAElC,IAAI,QAAQ,KAAK,SAAS,EAAE;gBAC1B,KAAK,CAAC,aAAa,KAAK,qCAAqC,CAAC,CAAC;gBAC/D,OAAO,IAAI,CAAC;aACb;YAED,MAAM,cAAc,GAAW,MAAM,aAAa,CAAC,YAAY,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;YAElF,OAAO,aAAG,CAAC,mBAAS,CAAC,IAAI,CAAC,EAAE,KAAK,EAAE,cAAc,CAAC,CAAC;QACrD,CAAC,CAAA,CAAA;QAED,OAAO,CAAC,IAAI,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,MAAM,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC;YACnF,MAAM,iBAAiB,CAAC,IAAI,CAAC,CAAC;QAEhC,OAAO,OAAO,CAAC;IACjB,CAAC,CAAA,CAAC;AACJ,CAAC;AAhDD,+BAgDC"}
1
+ {"version":3,"file":"hash-password.js","sourceRoot":"","sources":["../../src/hooks/hash-password.ts"],"names":[],"mappings":";;;;;AAAA,qDAA4B;AAC5B,qDAA4B;AAC5B,iEAAwC;AACxC,+CAA+C;AAC/C,iDAAiD;AAIjD,MAAM,KAAK,GAAG,IAAA,qBAAW,EAAC,sDAAsD,CAAC,CAAA;AAOjF;;;;;GAKG;AACH,SAAwB,YAAY,CAAC,KAAa,EAAE,UAA+B,EAAE;IACnF,IAAI,CAAC,KAAK,EAAE;QACV,MAAM,IAAI,KAAK,CAAC,oDAAoD,CAAC,CAAA;KACtE;IAED,OAAO,KAAK,EAAE,OAAoB,EAAE,IAAmB,EAAE,EAAE;QACzD,MAAM,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,OAAO,CAAA;QAErC,IAAI,IAAI,KAAK,SAAS,EAAE;YACtB,MAAM,WAAW,GAAG,GAAG,CAAC,qBAAqB,CAAC,OAAO,CAAC,cAAc,CAAC,CAAA;YACrE,MAAM,EAAE,QAAQ,GAAG,OAAO,EAAE,GAAG,OAAO,CAAA;YAEtC,IAAI,CAAC,WAAW,IAAI,OAAO,WAAW,CAAC,aAAa,KAAK,UAAU,EAAE;gBACnE,MAAM,IAAI,mBAAU,CAAC,2DAA2D,CAAC,CAAA;aAClF;YAED,MAAM,CAAC,aAAa,CAAC,GAAG,WAAW,CAAC,aAAa,CAAC,QAAQ,CAAoB,CAAA;YAE9E,IAAI,CAAC,aAAa,IAAI,OAAO,aAAa,CAAC,YAAY,KAAK,UAAU,EAAE;gBACtE,MAAM,IAAI,mBAAU,CAAC,mBAAmB,QAAQ,6BAA6B,CAAC,CAAA;aAC/E;YAED,MAAM,iBAAiB,GAAG,KAAK,EAAE,IAAS,EAAE,EAAE;gBAC5C,MAAM,QAAQ,GAAG,IAAA,aAAG,EAAC,IAAI,EAAE,KAAK,CAAC,CAAA;gBAEjC,IAAI,QAAQ,KAAK,SAAS,EAAE;oBAC1B,KAAK,CAAC,aAAa,KAAK,qCAAqC,CAAC,CAAA;oBAC9D,OAAO,IAAI,CAAA;iBACZ;gBAED,MAAM,cAAc,GAAW,MAAM,aAAa,CAAC,YAAY,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAA;gBAEjF,OAAO,IAAA,aAAG,EAAC,IAAA,mBAAS,EAAC,IAAI,CAAC,EAAE,KAAK,EAAE,cAAc,CAAC,CAAA;YACpD,CAAC,CAAA;YAED,OAAO,CAAC,IAAI,GAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC;gBAChC,CAAC,CAAC,MAAM,OAAO,CAAC,GAAG,CAAC,IAAI,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC;gBAChD,CAAC,CAAC,MAAM,iBAAiB,CAAC,IAAI,CAAC,CAAA;SAClC;QAED,IAAI,OAAO,IAAI,KAAK,UAAU,EAAE;YAC9B,OAAO,IAAI,EAAE,CAAA;SACd;IACH,CAAC,CAAA;AACH,CAAC;AA5CD,+BA4CC"}
@@ -1,3 +1,7 @@
1
- import { HookContext } from '@feathersjs/feathers';
2
- declare const _default: (...fields: string[]) => (context: HookContext<any, any>) => HookContext<any, any>;
1
+ import { HookContext, NextFunction } from '@feathersjs/feathers';
2
+ /**
3
+ * @deprecated For reliable safe data representations use Feathers schema dispatch resolvers.
4
+ * See https://dove.docs.feathersjs.com/api/schema/resolvers.html#safe-data-resolvers for more information.
5
+ */
6
+ declare const _default: (...fields: string[]) => (context: HookContext, next?: NextFunction) => Promise<void>;
3
7
  export default _default;
@@ -4,33 +4,39 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  const omit_1 = __importDefault(require("lodash/omit"));
7
- exports.default = (...fields) => (context) => {
8
- const result = context.dispatch || context.result;
7
+ /**
8
+ * @deprecated For reliable safe data representations use Feathers schema dispatch resolvers.
9
+ * See https://dove.docs.feathersjs.com/api/schema/resolvers.html#safe-data-resolvers for more information.
10
+ */
11
+ exports.default = (...fields) => {
9
12
  const o = (current) => {
10
13
  if (typeof current === 'object' && !Array.isArray(current)) {
11
- const data = typeof current.toJSON === 'function'
12
- ? current.toJSON() : current;
13
- return omit_1.default(data, fields);
14
+ const data = typeof current.toJSON === 'function' ? current.toJSON() : current;
15
+ return (0, omit_1.default)(data, fields);
14
16
  }
15
17
  return current;
16
18
  };
17
- if (!result) {
18
- return context;
19
- }
20
- if (Array.isArray(result)) {
21
- context.dispatch = result.map(o);
22
- }
23
- else if (result.data && context.method === 'find') {
24
- context.dispatch = Object.assign({}, result, {
25
- data: result.data.map(o)
26
- });
27
- }
28
- else {
29
- context.dispatch = o(result);
30
- }
31
- if (context.params && context.params.provider) {
32
- context.result = context.dispatch;
33
- }
34
- return context;
19
+ return async (context, next) => {
20
+ if (typeof next === 'function') {
21
+ await next();
22
+ }
23
+ const result = context.dispatch || context.result;
24
+ if (result) {
25
+ if (Array.isArray(result)) {
26
+ context.dispatch = result.map(o);
27
+ }
28
+ else if (result.data && context.method === 'find') {
29
+ context.dispatch = Object.assign({}, result, {
30
+ data: result.data.map(o)
31
+ });
32
+ }
33
+ else {
34
+ context.dispatch = o(result);
35
+ }
36
+ if (context.params && context.params.provider) {
37
+ context.result = context.dispatch;
38
+ }
39
+ }
40
+ };
35
41
  };
36
42
  //# sourceMappingURL=protect.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"protect.js","sourceRoot":"","sources":["../../src/hooks/protect.ts"],"names":[],"mappings":";;;;;AAAA,uDAA+B;AAG/B,kBAAe,CAAC,GAAG,MAAgB,EAAE,EAAE,CAAC,CAAC,OAA8B,EAAE,EAAE;IACzE,MAAM,MAAM,GAAG,OAAO,CAAC,QAAQ,IAAI,OAAO,CAAC,MAAM,CAAC;IAClD,MAAM,CAAC,GAAG,CAAC,OAAY,EAAE,EAAE;QACzB,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;YAC1D,MAAM,IAAI,GAAG,OAAO,OAAO,CAAC,MAAM,KAAK,UAAU;gBAC/C,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,OAAO,CAAC;YAE/B,OAAO,cAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;SAC3B;QAED,OAAO,OAAO,CAAC;IACjB,CAAC,CAAC;IAEF,IAAI,CAAC,MAAM,EAAE;QACX,OAAO,OAAO,CAAC;KAChB;IAED,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;QACzB,OAAO,CAAC,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;KAClC;SAAM,IAAI,MAAM,CAAC,IAAI,IAAI,OAAO,CAAC,MAAM,KAAK,MAAM,EAAE;QACnD,OAAO,CAAC,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE;YAC3C,IAAI,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;SACzB,CAAC,CAAC;KACJ;SAAM;QACL,OAAO,CAAC,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC,CAAC;KAC9B;IAED,IAAI,OAAO,CAAC,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC,QAAQ,EAAE;QAC7C,OAAO,CAAC,MAAM,GAAG,OAAO,CAAC,QAAQ,CAAC;KACnC;IAED,OAAO,OAAO,CAAC;AACjB,CAAC,CAAC"}
1
+ {"version":3,"file":"protect.js","sourceRoot":"","sources":["../../src/hooks/protect.ts"],"names":[],"mappings":";;;;;AAAA,uDAA8B;AAG9B;;;GAGG;AACH,kBAAe,CAAC,GAAG,MAAgB,EAAE,EAAE;IACrC,MAAM,CAAC,GAAG,CAAC,OAAY,EAAE,EAAE;QACzB,IAAI,OAAO,OAAO,KAAK,QAAQ,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE;YAC1D,MAAM,IAAI,GAAG,OAAO,OAAO,CAAC,MAAM,KAAK,UAAU,CAAC,CAAC,CAAC,OAAO,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,OAAO,CAAA;YAE9E,OAAO,IAAA,cAAI,EAAC,IAAI,EAAE,MAAM,CAAC,CAAA;SAC1B;QAED,OAAO,OAAO,CAAA;IAChB,CAAC,CAAA;IAED,OAAO,KAAK,EAAE,OAAoB,EAAE,IAAmB,EAAE,EAAE;QACzD,IAAI,OAAO,IAAI,KAAK,UAAU,EAAE;YAC9B,MAAM,IAAI,EAAE,CAAA;SACb;QAED,MAAM,MAAM,GAAG,OAAO,CAAC,QAAQ,IAAI,OAAO,CAAC,MAAM,CAAA;QAEjD,IAAI,MAAM,EAAE;YACV,IAAI,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE;gBACzB,OAAO,CAAC,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAA;aACjC;iBAAM,IAAI,MAAM,CAAC,IAAI,IAAI,OAAO,CAAC,MAAM,KAAK,MAAM,EAAE;gBACnD,OAAO,CAAC,QAAQ,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE;oBAC3C,IAAI,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;iBACzB,CAAC,CAAA;aACH;iBAAM;gBACL,OAAO,CAAC,QAAQ,GAAG,CAAC,CAAC,MAAM,CAAC,CAAA;aAC7B;YAED,IAAI,OAAO,CAAC,MAAM,IAAI,OAAO,CAAC,MAAM,CAAC,QAAQ,EAAE;gBAC7C,OAAO,CAAC,MAAM,GAAG,OAAO,CAAC,QAAQ,CAAA;aAClC;SACF;IACH,CAAC,CAAA;AACH,CAAC,CAAA"}
package/lib/index.d.ts CHANGED
@@ -1,6 +1,19 @@
1
+ import { HookContext } from '@feathersjs/feathers';
1
2
  import hashPassword from './hooks/hash-password';
3
+ import { LocalStrategy } from './strategy';
2
4
  export declare const hooks: {
3
5
  hashPassword: typeof hashPassword;
4
- protect: (...fields: string[]) => (context: import("@feathersjs/feathers/lib").HookContext<any, any>) => import("@feathersjs/feathers/lib").HookContext<any, any>;
6
+ protect: (...fields: string[]) => (context: HookContext<import("@feathersjs/feathers").Application<any, any>, any>, next?: import("@feathersjs/feathers").NextFunction) => Promise<void>;
5
7
  };
6
- export { LocalStrategy } from './strategy';
8
+ export { LocalStrategy };
9
+ /**
10
+ * Returns as property resolver that hashes a given plain text password using a Local
11
+ * authentication strategy.
12
+ *
13
+ * @param options The authentication `service` and `strategy` name
14
+ * @returns
15
+ */
16
+ export declare const passwordHash: (options: {
17
+ service?: string;
18
+ strategy: string;
19
+ }) => <H extends HookContext<any, any>>(value: string | undefined, _data: any, context: H) => Promise<string>;
package/lib/index.js CHANGED
@@ -3,10 +3,27 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.LocalStrategy = exports.hooks = void 0;
6
+ exports.passwordHash = exports.LocalStrategy = exports.hooks = void 0;
7
7
  const hash_password_1 = __importDefault(require("./hooks/hash-password"));
8
8
  const protect_1 = __importDefault(require("./hooks/protect"));
9
- exports.hooks = { hashPassword: hash_password_1.default, protect: protect_1.default };
10
- var strategy_1 = require("./strategy");
9
+ const strategy_1 = require("./strategy");
11
10
  Object.defineProperty(exports, "LocalStrategy", { enumerable: true, get: function () { return strategy_1.LocalStrategy; } });
11
+ exports.hooks = { hashPassword: hash_password_1.default, protect: protect_1.default };
12
+ /**
13
+ * Returns as property resolver that hashes a given plain text password using a Local
14
+ * authentication strategy.
15
+ *
16
+ * @param options The authentication `service` and `strategy` name
17
+ * @returns
18
+ */
19
+ const passwordHash = (options) => async (value, _data, context) => {
20
+ if (value === undefined) {
21
+ return value;
22
+ }
23
+ const { app, params } = context;
24
+ const authService = app.defaultAuthentication(options.service);
25
+ const localStrategy = authService.getStrategy(options.strategy);
26
+ return localStrategy.hashPassword(value, params);
27
+ };
28
+ exports.passwordHash = passwordHash;
12
29
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AAAA,0EAAiD;AACjD,8DAAsC;AAEzB,QAAA,KAAK,GAAG,EAAE,YAAY,EAAZ,uBAAY,EAAE,OAAO,EAAP,iBAAO,EAAE,CAAC;AAC/C,uCAA2C;AAAlC,yGAAA,aAAa,OAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;AACA,0EAAgD;AAChD,8DAAqC;AACrC,yCAA0C;AAGjC,8FAHA,wBAAa,OAGA;AADT,QAAA,KAAK,GAAG,EAAE,YAAY,EAAZ,uBAAY,EAAE,OAAO,EAAP,iBAAO,EAAE,CAAA;AAG9C;;;;;;GAMG;AACI,MAAM,YAAY,GACvB,CAAC,OAA+C,EAAE,EAAE,CACpD,KAAK,EAAmC,KAAyB,EAAE,KAAU,EAAE,OAAU,EAAE,EAAE;IAC3F,IAAI,KAAK,KAAK,SAAS,EAAE;QACvB,OAAO,KAAK,CAAA;KACb;IAED,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,OAAO,CAAA;IAC/B,MAAM,WAAW,GAAG,GAAG,CAAC,qBAAqB,CAAC,OAAO,CAAC,OAAO,CAAC,CAAA;IAC9D,MAAM,aAAa,GAAG,WAAW,CAAC,WAAW,CAAC,OAAO,CAAC,QAAQ,CAAkB,CAAA;IAEhF,OAAO,aAAa,CAAC,YAAY,CAAC,KAAK,EAAE,MAAM,CAAC,CAAA;AAClD,CAAC,CAAA;AAZU,QAAA,YAAY,gBAYtB"}
package/lib/strategy.js CHANGED
@@ -1,13 +1,4 @@
1
1
  "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
2
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
13
4
  };
@@ -20,11 +11,11 @@ const omit_1 = __importDefault(require("lodash/omit"));
20
11
  const errors_1 = require("@feathersjs/errors");
21
12
  const authentication_1 = require("@feathersjs/authentication");
22
13
  const commons_1 = require("@feathersjs/commons");
23
- const debug = commons_1.createDebug('@feathersjs/authentication-local/strategy');
14
+ const debug = (0, commons_1.createDebug)('@feathersjs/authentication-local/strategy');
24
15
  class LocalStrategy extends authentication_1.AuthenticationBaseStrategy {
25
16
  verifyConfiguration() {
26
17
  const config = this.configuration;
27
- ['usernameField', 'passwordField'].forEach(prop => {
18
+ ['usernameField', 'passwordField'].forEach((prop) => {
28
19
  if (typeof config[prop] !== 'string') {
29
20
  throw new Error(`'${this.name}' authentication strategy requires a '${prop}' setting`);
30
21
  }
@@ -33,82 +24,90 @@ class LocalStrategy extends authentication_1.AuthenticationBaseStrategy {
33
24
  get configuration() {
34
25
  const authConfig = this.authentication.configuration;
35
26
  const config = super.configuration || {};
36
- return Object.assign({ hashSize: 10, service: authConfig.service, entity: authConfig.entity, entityId: authConfig.entityId, errorMessage: 'Invalid login', entityPasswordField: config.passwordField, entityUsernameField: config.usernameField }, config);
27
+ return {
28
+ hashSize: 10,
29
+ service: authConfig.service,
30
+ entity: authConfig.entity,
31
+ entityId: authConfig.entityId,
32
+ errorMessage: 'Invalid login',
33
+ entityPasswordField: config.passwordField,
34
+ entityUsernameField: config.usernameField,
35
+ ...config
36
+ };
37
37
  }
38
- getEntityQuery(query, _params) {
39
- return __awaiter(this, void 0, void 0, function* () {
40
- return Object.assign({ $limit: 1 }, query);
41
- });
38
+ async getEntityQuery(query, _params) {
39
+ return {
40
+ $limit: 1,
41
+ ...query
42
+ };
42
43
  }
43
- findEntity(username, params) {
44
- return __awaiter(this, void 0, void 0, function* () {
45
- const { entityUsernameField, errorMessage } = this.configuration;
46
- if (!username) { // don't query for users without any condition set.
47
- throw new errors_1.NotAuthenticated(errorMessage);
48
- }
49
- const query = yield this.getEntityQuery({
50
- [entityUsernameField]: username
51
- }, params);
52
- const findParams = Object.assign({}, params, { query });
53
- const entityService = this.entityService;
54
- debug('Finding entity with query', params.query);
55
- const result = yield entityService.find(findParams);
56
- const list = Array.isArray(result) ? result : result.data;
57
- if (!Array.isArray(list) || list.length === 0) {
58
- debug('No entity found');
59
- throw new errors_1.NotAuthenticated(errorMessage);
60
- }
61
- const [entity] = list;
62
- return entity;
63
- });
44
+ async findEntity(username, params) {
45
+ const { entityUsernameField, errorMessage } = this.configuration;
46
+ if (!username) {
47
+ // don't query for users without any condition set.
48
+ throw new errors_1.NotAuthenticated(errorMessage);
49
+ }
50
+ const query = await this.getEntityQuery({
51
+ [entityUsernameField]: username
52
+ }, params);
53
+ const findParams = Object.assign({}, params, { query });
54
+ const entityService = this.entityService;
55
+ debug('Finding entity with query', params.query);
56
+ const result = await entityService.find(findParams);
57
+ const list = Array.isArray(result) ? result : result.data;
58
+ if (!Array.isArray(list) || list.length === 0) {
59
+ debug('No entity found');
60
+ throw new errors_1.NotAuthenticated(errorMessage);
61
+ }
62
+ const [entity] = list;
63
+ return entity;
64
64
  }
65
- getEntity(result, params) {
66
- return __awaiter(this, void 0, void 0, function* () {
67
- const entityService = this.entityService;
68
- const { entityId = entityService.id, entity } = this.configuration;
69
- if (!entityId || result[entityId] === undefined) {
70
- throw new errors_1.NotAuthenticated('Could not get local entity');
71
- }
72
- if (!params.provider) {
73
- return result;
74
- }
75
- return entityService.get(result[entityId], Object.assign(Object.assign({}, params), { [entity]: result }));
65
+ async getEntity(result, params) {
66
+ const entityService = this.entityService;
67
+ const { entityId = entityService.id, entity } = this.configuration;
68
+ if (!entityId || result[entityId] === undefined) {
69
+ throw new errors_1.NotAuthenticated('Could not get local entity');
70
+ }
71
+ if (!params.provider) {
72
+ return result;
73
+ }
74
+ return entityService.get(result[entityId], {
75
+ ...params,
76
+ [entity]: result
76
77
  });
77
78
  }
78
- comparePassword(entity, password) {
79
- return __awaiter(this, void 0, void 0, function* () {
80
- const { entityPasswordField, errorMessage } = this.configuration;
81
- // find password in entity, this allows for dot notation
82
- const hash = get_1.default(entity, entityPasswordField);
83
- if (!hash) {
84
- debug(`Record is missing the '${entityPasswordField}' password field`);
85
- throw new errors_1.NotAuthenticated(errorMessage);
86
- }
87
- debug('Verifying password');
88
- const result = yield bcryptjs_1.default.compare(password, hash);
89
- if (result) {
90
- return entity;
91
- }
79
+ async comparePassword(entity, password) {
80
+ const { entityPasswordField, errorMessage } = this.configuration;
81
+ // find password in entity, this allows for dot notation
82
+ const hash = (0, get_1.default)(entity, entityPasswordField);
83
+ if (!hash) {
84
+ debug(`Record is missing the '${entityPasswordField}' password field`);
92
85
  throw new errors_1.NotAuthenticated(errorMessage);
93
- });
86
+ }
87
+ debug('Verifying password');
88
+ const result = await bcryptjs_1.default.compare(password, hash);
89
+ if (result) {
90
+ return entity;
91
+ }
92
+ throw new errors_1.NotAuthenticated(errorMessage);
94
93
  }
95
- hashPassword(password, _params) {
96
- return __awaiter(this, void 0, void 0, function* () {
97
- return bcryptjs_1.default.hash(password, this.configuration.hashSize);
98
- });
94
+ async hashPassword(password, _params) {
95
+ return bcryptjs_1.default.hash(password, this.configuration.hashSize);
99
96
  }
100
- authenticate(data, params) {
101
- return __awaiter(this, void 0, void 0, function* () {
102
- const { passwordField, usernameField, entity } = this.configuration;
103
- const username = data[usernameField];
104
- const password = data[passwordField];
105
- const result = yield this.findEntity(username, omit_1.default(params, 'provider'));
106
- yield this.comparePassword(result, password);
107
- return {
108
- authentication: { strategy: this.name },
109
- [entity]: yield this.getEntity(result, params)
110
- };
111
- });
97
+ async authenticate(data, params) {
98
+ const { passwordField, usernameField, entity, errorMessage } = this.configuration;
99
+ const username = data[usernameField];
100
+ const password = data[passwordField];
101
+ if (!password) {
102
+ // exit early if there is no password
103
+ throw new errors_1.NotAuthenticated(errorMessage);
104
+ }
105
+ const result = await this.findEntity(username, (0, omit_1.default)(params, 'provider'));
106
+ await this.comparePassword(result, password);
107
+ return {
108
+ authentication: { strategy: this.name },
109
+ [entity]: await this.getEntity(result, params)
110
+ };
112
111
  }
113
112
  }
114
113
  exports.LocalStrategy = LocalStrategy;
@@ -1 +1 @@
1
- {"version":3,"file":"strategy.js","sourceRoot":"","sources":["../src/strategy.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"strategy.js","sourceRoot":"","sources":["../src/strategy.ts"],"names":[],"mappings":";;;;;;AAAA,sDAAsD;AACtD,wDAA6B;AAC7B,qDAA4B;AAC5B,uDAA8B;AAC9B,+CAAqD;AAErD,+DAA8F;AAC9F,iDAAiD;AAEjD,MAAM,KAAK,GAAG,IAAA,qBAAW,EAAC,2CAA2C,CAAC,CAAA;AAEtE,MAAa,aAAc,SAAQ,2CAA0B;IAC3D,mBAAmB;QACjB,MAAM,MAAM,GAAG,IAAI,CAAC,aAAa,CAEhC;QAAA,CAAC,eAAe,EAAE,eAAe,CAAC,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;YACnD,IAAI,OAAO,MAAM,CAAC,IAAI,CAAC,KAAK,QAAQ,EAAE;gBACpC,MAAM,IAAI,KAAK,CAAC,IAAI,IAAI,CAAC,IAAI,yCAAyC,IAAI,WAAW,CAAC,CAAA;aACvF;QACH,CAAC,CAAC,CAAA;IACJ,CAAC;IAED,IAAI,aAAa;QACf,MAAM,UAAU,GAAG,IAAI,CAAC,cAAc,CAAC,aAAa,CAAA;QACpD,MAAM,MAAM,GAAG,KAAK,CAAC,aAAa,IAAI,EAAE,CAAA;QAExC,OAAO;YACL,QAAQ,EAAE,EAAE;YACZ,OAAO,EAAE,UAAU,CAAC,OAAO;YAC3B,MAAM,EAAE,UAAU,CAAC,MAAM;YACzB,QAAQ,EAAE,UAAU,CAAC,QAAQ;YAC7B,YAAY,EAAE,eAAe;YAC7B,mBAAmB,EAAE,MAAM,CAAC,aAAa;YACzC,mBAAmB,EAAE,MAAM,CAAC,aAAa;YACzC,GAAG,MAAM;SACV,CAAA;IACH,CAAC;IAED,KAAK,CAAC,cAAc,CAAC,KAAY,EAAE,OAAe;QAChD,OAAO;YACL,MAAM,EAAE,CAAC;YACT,GAAG,KAAK;SACT,CAAA;IACH,CAAC;IAED,KAAK,CAAC,UAAU,CAAC,QAAgB,EAAE,MAAc;QAC/C,MAAM,EAAE,mBAAmB,EAAE,YAAY,EAAE,GAAG,IAAI,CAAC,aAAa,CAAA;QAChE,IAAI,CAAC,QAAQ,EAAE;YACb,mDAAmD;YACnD,MAAM,IAAI,yBAAgB,CAAC,YAAY,CAAC,CAAA;SACzC;QAED,MAAM,KAAK,GAAG,MAAM,IAAI,CAAC,cAAc,CACrC;YACE,CAAC,mBAAmB,CAAC,EAAE,QAAQ;SAChC,EACD,MAAM,CACP,CAAA;QAED,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAA;QACvD,MAAM,aAAa,GAAG,IAAI,CAAC,aAAa,CAAA;QAExC,KAAK,CAAC,2BAA2B,EAAE,MAAM,CAAC,KAAK,CAAC,CAAA;QAEhD,MAAM,MAAM,GAAG,MAAM,aAAa,CAAC,IAAI,CAAC,UAAU,CAAC,CAAA;QACnD,MAAM,IAAI,GAAG,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAA;QAEzD,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,MAAM,KAAK,CAAC,EAAE;YAC7C,KAAK,CAAC,iBAAiB,CAAC,CAAA;YAExB,MAAM,IAAI,yBAAgB,CAAC,YAAY,CAAC,CAAA;SACzC;QAED,MAAM,CAAC,MAAM,CAAC,GAAG,IAAI,CAAA;QAErB,OAAO,MAAM,CAAA;IACf,CAAC;IAED,KAAK,CAAC,SAAS,CAAC,MAAW,EAAE,MAAc;QACzC,MAAM,aAAa,GAAG,IAAI,CAAC,aAAa,CAAA;QACxC,MAAM,EAAE,QAAQ,GAAI,aAAqB,CAAC,EAAE,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC,aAAa,CAAA;QAE3E,IAAI,CAAC,QAAQ,IAAI,MAAM,CAAC,QAAQ,CAAC,KAAK,SAAS,EAAE;YAC/C,MAAM,IAAI,yBAAgB,CAAC,4BAA4B,CAAC,CAAA;SACzD;QAED,IAAI,CAAC,MAAM,CAAC,QAAQ,EAAE;YACpB,OAAO,MAAM,CAAA;SACd;QAED,OAAO,aAAa,CAAC,GAAG,CAAC,MAAM,CAAC,QAAQ,CAAC,EAAE;YACzC,GAAG,MAAM;YACT,CAAC,MAAM,CAAC,EAAE,MAAM;SACjB,CAAC,CAAA;IACJ,CAAC;IAED,KAAK,CAAC,eAAe,CAAC,MAAW,EAAE,QAAgB;QACjD,MAAM,EAAE,mBAAmB,EAAE,YAAY,EAAE,GAAG,IAAI,CAAC,aAAa,CAAA;QAChE,wDAAwD;QACxD,MAAM,IAAI,GAAG,IAAA,aAAG,EAAC,MAAM,EAAE,mBAAmB,CAAC,CAAA;QAE7C,IAAI,CAAC,IAAI,EAAE;YACT,KAAK,CAAC,0BAA0B,mBAAmB,kBAAkB,CAAC,CAAA;YAEtE,MAAM,IAAI,yBAAgB,CAAC,YAAY,CAAC,CAAA;SACzC;QAED,KAAK,CAAC,oBAAoB,CAAC,CAAA;QAE3B,MAAM,MAAM,GAAG,MAAM,kBAAM,CAAC,OAAO,CAAC,QAAQ,EAAE,IAAI,CAAC,CAAA;QAEnD,IAAI,MAAM,EAAE;YACV,OAAO,MAAM,CAAA;SACd;QAED,MAAM,IAAI,yBAAgB,CAAC,YAAY,CAAC,CAAA;IAC1C,CAAC;IAED,KAAK,CAAC,YAAY,CAAC,QAAgB,EAAE,OAAe;QAClD,OAAO,kBAAM,CAAC,IAAI,CAAC,QAAQ,EAAE,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAA;IAC3D,CAAC;IAED,KAAK,CAAC,YAAY,CAAC,IAA2B,EAAE,MAAc;QAC5D,MAAM,EAAE,aAAa,EAAE,aAAa,EAAE,MAAM,EAAE,YAAY,EAAE,GAAG,IAAI,CAAC,aAAa,CAAA;QACjF,MAAM,QAAQ,GAAG,IAAI,CAAC,aAAa,CAAC,CAAA;QACpC,MAAM,QAAQ,GAAG,IAAI,CAAC,aAAa,CAAC,CAAA;QAEpC,IAAI,CAAC,QAAQ,EAAE;YACb,qCAAqC;YACrC,MAAM,IAAI,yBAAgB,CAAC,YAAY,CAAC,CAAA;SACzC;QAED,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,QAAQ,EAAE,IAAA,cAAI,EAAC,MAAM,EAAE,UAAU,CAAC,CAAC,CAAA;QAExE,MAAM,IAAI,CAAC,eAAe,CAAC,MAAM,EAAE,QAAQ,CAAC,CAAA;QAE5C,OAAO;YACL,cAAc,EAAE,EAAE,QAAQ,EAAE,IAAI,CAAC,IAAI,EAAE;YACvC,CAAC,MAAM,CAAC,EAAE,MAAM,IAAI,CAAC,SAAS,CAAC,MAAM,EAAE,MAAM,CAAC;SAC/C,CAAA;IACH,CAAC;CACF;AAlID,sCAkIC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@feathersjs/authentication-local",
3
3
  "description": "Local authentication strategy for @feathers/authentication",
4
- "version": "5.0.0-pre.3",
4
+ "version": "5.0.0-pre.31",
5
5
  "homepage": "https://feathersjs.com",
6
6
  "main": "lib/",
7
7
  "types": "lib/",
@@ -16,7 +16,8 @@
16
16
  },
17
17
  "repository": {
18
18
  "type": "git",
19
- "url": "git://github.com/feathersjs/feathers.git"
19
+ "url": "git://github.com/feathersjs/feathers.git",
20
+ "directory": "packages/authentication-local"
20
21
  },
21
22
  "author": {
22
23
  "name": "Feathers contributors",
@@ -41,9 +42,9 @@
41
42
  ],
42
43
  "scripts": {
43
44
  "prepublish": "npm run compile",
44
- "compile": "shx rm -rf lib/ && tsc",
45
- "test": "npm run compile && npm run mocha",
46
- "mocha": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
45
+ "pack": "npm pack --pack-destination ../cli/test/build",
46
+ "compile": "shx rm -rf lib/ && tsc && npm run pack",
47
+ "test": "mocha --config ../../.mocharc.json --recursive test/**.test.ts test/**/*.test.ts"
47
48
  },
48
49
  "directories": {
49
50
  "lib": "lib"
@@ -52,24 +53,24 @@
52
53
  "access": "public"
53
54
  },
54
55
  "dependencies": {
55
- "@feathersjs/authentication": "^5.0.0-pre.3",
56
- "@feathersjs/commons": "^5.0.0-pre.3",
57
- "@feathersjs/errors": "^5.0.0-pre.3",
58
- "@feathersjs/feathers": "^5.0.0-pre.3",
56
+ "@feathersjs/authentication": "^5.0.0-pre.31",
57
+ "@feathersjs/commons": "^5.0.0-pre.31",
58
+ "@feathersjs/errors": "^5.0.0-pre.31",
59
+ "@feathersjs/feathers": "^5.0.0-pre.31",
59
60
  "bcryptjs": "^2.4.3",
60
61
  "lodash": "^4.17.21"
61
62
  },
62
63
  "devDependencies": {
63
- "@feathersjs/adapter-memory": "^5.0.0-pre.3",
64
+ "@feathersjs/memory": "^5.0.0-pre.31",
65
+ "@feathersjs/schema": "^5.0.0-pre.31",
64
66
  "@types/bcryptjs": "^2.4.2",
65
- "@types/debug": "^4.1.5",
66
- "@types/lodash": "^4.14.168",
67
- "@types/mocha": "^8.2.2",
68
- "@types/node": "^14.14.41",
69
- "mocha": "^8.3.2",
70
- "shx": "^0.3.3",
71
- "ts-node": "^9.1.1",
72
- "typescript": "^4.2.4"
67
+ "@types/lodash": "^4.14.186",
68
+ "@types/mocha": "^10.0.0",
69
+ "@types/node": "^18.8.2",
70
+ "mocha": "^10.0.0",
71
+ "shx": "^0.3.4",
72
+ "ts-node": "^10.9.1",
73
+ "typescript": "^4.8.4"
73
74
  },
74
- "gitHead": "d332eaca9945aab0c222413a7e46cec1c0601648"
75
+ "gitHead": "4500dbeb8cea566678cf88b3313a88efd93a2ed9"
75
76
  }