Last active
December 16, 2024 22:45
-
-
Save bwaidelich/0659f0519d4f02b4b4d274fc68172f3d to your computer and use it in GitHub Desktop.
DCB Example: Unique username
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This example is the most simple one just checking whether a given username is claimed | |
*/ | |
const events = [ | |
{ | |
type: "ACCOUNT_REGISTERED", | |
data: { id: "a1", username: "u1" }, | |
tags: ["account:a1", "username:u1"], | |
}, | |
{ | |
type: "ACCOUNT_REGISTERED", | |
data: { id: "a2", username: "u2" }, | |
tags: ["account:a2", "username:u2"], | |
}, | |
]; | |
const isUsernameClaimed = (username) => { | |
const projection = (state, event) => { | |
switch (event.type) { | |
case "ACCOUNT_REGISTERED": | |
return true; | |
default: | |
return state; | |
} | |
}; | |
return events.filter((e) => e.tags.includes(`username:${username}`)).reduce(projection, false); | |
}; | |
console.log(isUsernameClaimed("u1")); // true | |
console.log(isUsernameClaimed("u2")); // true | |
console.log(isUsernameClaimed("u3")); // false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This example extends the previous one to show how a previously claimed username could be released whent the corresponding account is suspended | |
*/ | |
const events = [ | |
{ | |
type: "ACCOUNT_REGISTERED", | |
data: { id: "a1", username: "u1" }, | |
tags: ["account:a1", "username:u1"], | |
}, | |
{ | |
type: "ACCOUNT_REGISTERED", | |
data: { id: "a2", username: "u2" }, | |
tags: ["account:a2", "username:u2"], | |
}, | |
{ | |
type: "ACCOUNT_SUSPENDED", | |
data: { id: "a1" }, | |
tags: ["account:a2", "username:u1"], | |
} | |
]; | |
const isUsernameClaimed = (username) => { | |
const projection = (state, event) => { | |
switch (event.type) { | |
case "ACCOUNT_REGISTERED": | |
return true; | |
case "ACCOUNT_SUSPENDED": | |
return false; | |
default: | |
return state; | |
} | |
}; | |
return events.filter((e) => e.tags.includes(`username:${username}`)).reduce(projection, false); | |
}; | |
console.log(isUsernameClaimed("u1")); // false | |
console.log(isUsernameClaimed("u2")); // true | |
console.log(isUsernameClaimed("u3")); // false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This example extends the previous one to show how the username of an active account could be changed | |
*/ | |
const events = [ | |
{ | |
type: "ACCOUNT_REGISTERED", | |
data: { id: "a1", username: "u1" }, | |
tags: ["account:a1", "username:u1"], | |
}, | |
{ | |
type: "ACCOUNT_REGISTERED", | |
data: { id: "a2", username: "u2" }, | |
tags: ["account:a2", "username:u2"], | |
}, | |
{ | |
type: "ACCOUNT_SUSPENDED", | |
data: { id: "a1" }, | |
tags: ["account:a2", "username:u1"], | |
}, | |
{ | |
type: "USERNAME_CHANGED", | |
data: { id: "a2", newUsername: "u3" }, | |
tags: ["account:a2", "username:u2", "username:u3"], // NOTE: contains both tags, of the old and the new username | |
}, | |
]; | |
const isUsernameClaimed = (username) => { | |
const projection = (state, event) => { | |
switch (event.type) { | |
case "ACCOUNT_REGISTERED": | |
return true; | |
case "ACCOUNT_SUSPENDED": | |
return false; | |
case "USERNAME_CHANGED": | |
return event.data.newUsername === username; | |
default: | |
return state; | |
} | |
}; | |
return events.filter((e) => e.tags.includes(`username:${username}`)).reduce(projection, false); | |
}; | |
console.log(isUsernameClaimed("u1")); // false | |
console.log(isUsernameClaimed("u2")); // false | |
console.log(isUsernameClaimed("u3")); // true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
This example extends the previous one to show how the release of a username could be postponed by X days | |
*/ | |
// little helper function to generate dates X days ago | |
const daysAgo = (days) => new Date((new Date).getTime() - days * (1000 * 60 * 60 * 24)); | |
const events = [ | |
{ | |
type: "ACCOUNT_REGISTERED", | |
data: { id: "a1", username: "u1" }, | |
tags: ["account:a1", "username:u1"], | |
recordedAt: daysAgo(5), | |
}, | |
{ | |
type: "ACCOUNT_REGISTERED", | |
data: { id: "a2", username: "u2" }, | |
tags: ["account:a2", "username:u2"], | |
recordedAt: daysAgo(4), | |
}, | |
{ | |
type: "ACCOUNT_SUSPENDED", | |
data: { id: "a1" }, | |
tags: ["account:a2", "username:u1"], | |
recordedAt: daysAgo(3), | |
}, | |
{ | |
type: "USERNAME_CHANGED", | |
data: { id: "a2", newUsername: "u3" }, | |
tags: ["account:a2", "username:u2", "username:u3"], | |
recordedAt: daysAgo(2), | |
}, | |
]; | |
const usernameReleaseDelayInDays = 2; | |
const isUsernameClaimed = (username) => { | |
const projection = (state, event) => { | |
const eventAgeInDays = (new Date - event.recordedAt) / (1000 * 60 * 60 * 24); | |
switch (event.type) { | |
case "ACCOUNT_REGISTERED": | |
return true; | |
case "ACCOUNT_SUSPENDED": | |
return eventAgeInDays < usernameReleaseDelayInDays; | |
case "USERNAME_CHANGED": | |
return event.data.newUsername === username || eventAgeInDays < usernameReleaseDelayInDays; | |
default: | |
return state; | |
} | |
}; | |
return events.filter((e) => e.tags.includes(`username:${username}`)).reduce(projection, false); | |
}; | |
console.log(isUsernameClaimed("u1")); // false | |
console.log(isUsernameClaimed("u2")); // false | |
console.log(isUsernameClaimed("u3")); // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"advanced" version of the last example