Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/express/src/clientRoutes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1696,6 +1696,7 @@ export function setupAPIRoutes(app: express.Application, config: Config): void {
router.get('express.pingExpress', [typedPromiseWrapper(handlePingExpress)]);

// auth
router.post('express.v1.login', [prepareBitGo(config), typedPromiseWrapper(handleLogin)]);
router.post('express.login', [prepareBitGo(config), typedPromiseWrapper(handleLogin)]);

router.post('express.v1.decrypt', [prepareBitGo(config), typedPromiseWrapper(handleDecrypt)]);
Expand Down
8 changes: 6 additions & 2 deletions modules/express/src/typedRoutes/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import * as express from 'express';

import { GetPing } from './common/ping';
import { GetPingExpress } from './common/pingExpress';
import { PostLogin } from './common/login';
import { PostV1Login } from './v1/login';
import { PostV2Login } from './v2/login';
import { PostV1Decrypt } from './v1/decrypt';
import { PostV2Decrypt } from './v2/decrypt';
import { PostV1Encrypt } from './v1/encrypt';
Expand Down Expand Up @@ -77,8 +78,11 @@ export const ExpressPingExpressApiSpec = apiSpec({
});

export const ExpressLoginApiSpec = apiSpec({
'express.v1.login': {
post: PostV1Login,
},
'express.login': {
post: PostLogin,
post: PostV2Login,
},
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,16 @@ export const LoginRequest = {
};

/**
* Login
* Login (v1)
*
* @operationId express.login
* @tag express
* Authenticate a user and retrieve their session details.
*
* @operationId express.v1.login
* @tag Express
* @private
*/
export const PostLogin = httpRoute({
path: '/api/v[12]/user/login',
export const PostV1Login = httpRoute({
path: '/api/v1/user/login',
method: 'POST',
request: httpRequest({
body: LoginRequest,
Expand Down
37 changes: 37 additions & 0 deletions modules/express/src/typedRoutes/api/v2/login.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import * as t from 'io-ts';
import { httpRoute, httpRequest, optional } from '@api-ts/io-ts-http';
import { BitgoExpressError } from '../../schemas/error';
import { LoginRequest } from '../v1/login';

/**
* Login
*
* Authenticate a user and retrieve their session details.
*
* @operationId express.login
* @tag Express
* @public
*/
export const PostV2Login = httpRoute({
path: '/api/v2/user/login',
method: 'POST',
request: httpRequest({
body: LoginRequest,
}),
response: {
200: t.type({
email: t.string,
password: t.string,
forceSMS: t.boolean,
otp: optional(t.string),
trust: optional(t.number),
extensible: optional(t.boolean),
extensionAddress: optional(t.string),
forceV1Auth: optional(t.boolean),
forReset2FA: optional(t.boolean),
initialHash: optional(t.string),
fingerprintHash: optional(t.string),
}),
404: BitgoExpressError,
},
});
2 changes: 1 addition & 1 deletion modules/express/test/unit/typedRoutes/decode.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as assert from 'assert';
import * as t from 'io-ts';
import { DecryptRequestBody } from '../../../src/typedRoutes/api/v1/decrypt';
import { EncryptRequestBody } from '../../../src/typedRoutes/api/v1/encrypt';
import { LoginRequest } from '../../../src/typedRoutes/api/common/login';
import { LoginRequest } from '../../../src/typedRoutes/api/v1/login';
import { VerifyAddressBody } from '../../../src/typedRoutes/api/common/verifyAddress';
import { VerifyAddressV2Body, VerifyAddressV2Params } from '../../../src/typedRoutes/api/v2/verifyCoinAddress';
import { SimpleCreateRequestBody } from '../../../src/typedRoutes/api/v1/simpleCreate';
Expand Down
48 changes: 33 additions & 15 deletions modules/express/test/unit/typedRoutes/userLogin.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import * as assert from 'assert';
import * as t from 'io-ts';
import { LoginRequest, PostLogin } from '../../../src/typedRoutes/api/common/login';
import { LoginRequest, PostV1Login } from '../../../src/typedRoutes/api/v1/login';
import { PostV2Login } from '../../../src/typedRoutes/api/v2/login';
import { assertDecode } from './common';
import 'should';
import 'should-http';
Expand Down Expand Up @@ -130,7 +131,7 @@ describe('Login codec tests', function () {
});

describe('LoginResponse', function () {
const LoginResponse = PostLogin.response[200];
const LoginResponse = PostV1Login.response[200];

it('should validate response with all required fields', function () {
const validResponse = {
Expand Down Expand Up @@ -245,24 +246,41 @@ describe('Login codec tests', function () {
});
});

describe('PostLogin route definition', function () {
describe('PostV1Login route definition', function () {
it('should have the correct path', function () {
assert.strictEqual(PostLogin.path, '/api/v[12]/user/login');
assert.strictEqual(PostV1Login.path, '/api/v1/user/login');
});

it('should have the correct HTTP method', function () {
assert.strictEqual(PostLogin.method, 'POST');
assert.strictEqual(PostV1Login.method, 'POST');
});

it('should have the correct request configuration', function () {
// Verify the route is configured with a request property
assert.ok(PostLogin.request);
assert.ok(PostV1Login.request);
});

it('should have the correct response types', function () {
// Check that the response object has the expected status codes
assert.ok(PostLogin.response[200]);
assert.ok(PostLogin.response[404]);
assert.ok(PostV1Login.response[200]);
assert.ok(PostV1Login.response[404]);
});
});

describe('PostV2Login route definition', function () {
it('should have the correct path', function () {
assert.strictEqual(PostV2Login.path, '/api/v2/user/login');
});

it('should have the correct HTTP method', function () {
assert.strictEqual(PostV2Login.method, 'POST');
});

it('should have the correct request configuration', function () {
assert.ok(PostV2Login.request);
});

it('should have the correct response types', function () {
assert.ok(PostV2Login.response[200]);
assert.ok(PostV2Login.response[404]);
});
});

Expand Down Expand Up @@ -304,7 +322,7 @@ describe('Login codec tests', function () {
assert.strictEqual(result.body.email, mockLoginResponse.email);
assert.strictEqual(result.body.forceSMS, mockLoginResponse.forceSMS);

const decodedResponse = assertDecode(PostLogin.response[200], result.body);
const decodedResponse = assertDecode(PostV1Login.response[200], result.body);
assert.strictEqual(decodedResponse.email, mockLoginResponse.email);
});

Expand All @@ -329,7 +347,7 @@ describe('Login codec tests', function () {
assert.strictEqual(result.body.email, mockLoginResponse.email);
assert.strictEqual(result.body.forceSMS, mockLoginResponse.forceSMS);

const decodedResponse = assertDecode(PostLogin.response[200], result.body);
const decodedResponse = assertDecode(PostV2Login.response[200], result.body);
assert.strictEqual(decodedResponse.email, mockLoginResponse.email);
});

Expand Down Expand Up @@ -375,7 +393,7 @@ describe('Login codec tests', function () {
result.body.should.have.property('forceSMS');
result.body.should.have.property('extensible');

const decodedResponse = assertDecode(PostLogin.response[200], result.body);
const decodedResponse = assertDecode(PostV1Login.response[200], result.body);
assert.strictEqual(decodedResponse.email, mockFullResponse.email);
assert.strictEqual(decodedResponse.extensible, mockFullResponse.extensible);
assert.strictEqual(decodedResponse.initialHash, mockFullResponse.initialHash);
Expand Down Expand Up @@ -423,7 +441,7 @@ describe('Login codec tests', function () {
result.body.should.have.property('forceSMS');
result.body.should.have.property('extensible');

const decodedResponse = assertDecode(PostLogin.response[200], result.body);
const decodedResponse = assertDecode(PostV2Login.response[200], result.body);
assert.strictEqual(decodedResponse.email, mockFullResponse.email);
assert.strictEqual(decodedResponse.extensible, mockFullResponse.extensible);
assert.strictEqual(decodedResponse.initialHash, mockFullResponse.initialHash);
Expand All @@ -447,7 +465,7 @@ describe('Login codec tests', function () {
result.body.should.have.property('email');
result.body.should.have.property('forceSMS');

const decodedResponse = assertDecode(PostLogin.response[200], result.body);
const decodedResponse = assertDecode(PostV2Login.response[200], result.body);
assert.ok(decodedResponse);
});
});
Expand Down
Loading