Skip to content

Commit ed2b80e

Browse files
authored
feat(api): add importUserLastLoggedAt usecase
1 parent 103227e commit ed2b80e

File tree

2 files changed

+203
-0
lines changed

2 files changed

+203
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
import { UserLogin } from '../models/UserLogin.js';
2+
3+
/**
4+
* @typedef {function} importUserLastLoggedAt
5+
* @param {Object} params
6+
* @param {boolean} params.dryRun
7+
* @param {string} params.userId
8+
* @param {Date} params.lastActivity
9+
* @param {UserRepository} params.userRepository
10+
* @param {UserLoginRepository} params.userLoginRepository
11+
* @return {Promise<boolean>}
12+
*/
13+
export const importUserLastLoggedAt = async function ({
14+
dryRun,
15+
userId,
16+
lastActivity,
17+
userRepository,
18+
userLoginRepository,
19+
}) {
20+
const user = await userRepository.findById(userId);
21+
if (!user || user.hasBeenAnonymised) {
22+
return false;
23+
}
24+
25+
const userLogin = await userLoginRepository.findByUserId(userId);
26+
if (!userLogin) {
27+
const newUserLogin = new UserLogin({ userId, lastLoggedAt: lastActivity });
28+
if (!dryRun) await userLoginRepository.create(newUserLogin);
29+
return true;
30+
}
31+
32+
if (userLogin.lastLoggedAt) {
33+
return false;
34+
}
35+
36+
userLogin.lastLoggedAt = lastActivity;
37+
if (!dryRun) await userLoginRepository.update(userLogin, { preventUpdatedAt: true });
38+
return true;
39+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
import { usecases } from '../../../../../src/identity-access-management/domain/usecases/index.js';
2+
import { databaseBuilder, expect, sinon } from '../../../../test-helper.js';
3+
4+
describe('Integration | Identity Access Management | Domain | UseCase | import user last logged at', function () {
5+
let clock;
6+
const now = new Date('2025-01-01');
7+
8+
beforeEach(function () {
9+
clock = sinon.useFakeTimers({ now, toFake: ['Date'] });
10+
});
11+
12+
afterEach(function () {
13+
clock.restore();
14+
});
15+
16+
context('when dryRun is false', function () {
17+
let dryRun;
18+
19+
beforeEach(function () {
20+
dryRun = false;
21+
});
22+
23+
context('when the user exists', function () {
24+
context('when the user has not been anonymized', function () {
25+
context('when the user login has no lastloggedAt', function () {
26+
it('updates the user login lastLoggedAt', async function () {
27+
// given
28+
const userId = databaseBuilder.factory.buildUser({
29+
hasBeenAnonymised: false,
30+
}).id;
31+
databaseBuilder.factory.buildUserLogin({
32+
userId,
33+
lastLoggedAt: null,
34+
});
35+
36+
await databaseBuilder.commit();
37+
38+
// when
39+
await usecases.importUserLastLoggedAt({
40+
dryRun,
41+
userId,
42+
lastActivity: new Date(),
43+
});
44+
45+
// then
46+
const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first();
47+
expect(userLoginUpdated.lastLoggedAt).to.deep.equal(now);
48+
});
49+
});
50+
});
51+
52+
context('when there is no user login', function () {
53+
it('creates a new user login', async function () {
54+
// given
55+
const userId = databaseBuilder.factory.buildUser({
56+
hasBeenAnonymised: false,
57+
}).id;
58+
59+
await databaseBuilder.commit();
60+
61+
// when
62+
await usecases.importUserLastLoggedAt({
63+
dryRun,
64+
userId,
65+
lastActivity: new Date(),
66+
});
67+
68+
// then
69+
const userLoginCreated = await databaseBuilder.knex('user-logins').where({ userId }).first();
70+
expect(userLoginCreated.lastLoggedAt).to.deep.equal(now);
71+
});
72+
});
73+
74+
context('when the user login has a lastLoggedAt', function () {
75+
it('does nothing', async function () {
76+
// given
77+
const userId = databaseBuilder.factory.buildUser({
78+
hasBeenAnonymised: false,
79+
}).id;
80+
databaseBuilder.factory.buildUserLogin({
81+
userId,
82+
lastLoggedAt: new Date('2020-01-01'),
83+
});
84+
await databaseBuilder.commit();
85+
86+
// when
87+
const result = await usecases.importUserLastLoggedAt({
88+
dryRun,
89+
userId,
90+
lastActivity: new Date(),
91+
});
92+
93+
// then
94+
const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first();
95+
expect(userLoginUpdated.lastLoggedAt).to.deep.equal(new Date('2020-01-01'));
96+
expect(result).to.be.false;
97+
});
98+
});
99+
});
100+
101+
context('when the user has been anonymized', function () {
102+
it('does nothing', async function () {
103+
// given
104+
const userId = databaseBuilder.factory.buildUser({
105+
hasBeenAnonymised: true,
106+
}).id;
107+
databaseBuilder.factory.buildUserLogin({
108+
userId,
109+
lastLoggedAt: null,
110+
});
111+
await databaseBuilder.commit();
112+
113+
// when
114+
const result = await usecases.importUserLastLoggedAt({
115+
dryRun,
116+
userId,
117+
lastActivity: new Date(),
118+
});
119+
120+
// then
121+
const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first();
122+
expect(userLoginUpdated.lastLoggedAt).to.be.null;
123+
expect(result).to.be.false;
124+
});
125+
});
126+
127+
context('when the user does not exist', function () {
128+
it('does nothing', async function () {
129+
// when
130+
const result = await usecases.importUserLastLoggedAt({
131+
dryRun,
132+
userId: 789,
133+
lastActivity: new Date(),
134+
});
135+
136+
// then
137+
expect(result).to.be.false;
138+
});
139+
});
140+
});
141+
142+
context('when dryRun is true', function () {
143+
it('does nothing', async function () {
144+
// given
145+
const userId = databaseBuilder.factory.buildUser().id;
146+
databaseBuilder.factory.buildUserLogin({
147+
userId,
148+
lastLoggedAt: null,
149+
});
150+
await databaseBuilder.commit();
151+
152+
// when
153+
await usecases.importUserLastLoggedAt({
154+
dryRun: true,
155+
userId,
156+
lastActivity: new Date(),
157+
});
158+
159+
// then
160+
const userLoginUpdated = await databaseBuilder.knex('user-logins').where({ userId }).first();
161+
expect(userLoginUpdated.lastLoggedAt).to.be.null;
162+
});
163+
});
164+
});

0 commit comments

Comments
 (0)