Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert static methods to instance methods #481

Merged
merged 3 commits into from
Oct 31, 2023
Merged
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
80 changes: 53 additions & 27 deletions src/Contacts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,13 @@ export class ConsentListEntry {
}

export class ConsentList {
client: Client
entries: Map<string, ConsentState>
static _identifier: string
private _identifier: string | undefined

constructor() {
constructor(client: Client) {
this.entries = new Map<string, ConsentState>()
this.client = client
}

allow(address: string) {
Expand All @@ -58,21 +60,25 @@ export class ConsentList {
return this.entries.get(entry.key) ?? 'unknown'
}

static async getIdentifier(client: Client): Promise<string> {
async getIdentifier(): Promise<string> {
if (!this._identifier) {
const { identifier } =
await client.keystore.getPrivatePreferencesTopicIdentifier()
await this.client.keystore.getPrivatePreferencesTopicIdentifier()
this._identifier = identifier
}
return this._identifier
}

static async load(client: Client, startTime?: Date): Promise<ConsentList> {
const consentList = new ConsentList()
const identifier = await this.getIdentifier(client)
async load(startTime?: Date) {
// no startTime, all entries will be fetched
if (!startTime) {
// clear existing entries
this.entries.clear()
}
const identifier = await this.getIdentifier()
const contentTopic = buildUserPrivatePreferencesTopic(identifier)

const messages = await client.listEnvelopes(
const messages = await this.client.listEnvelopes(
contentTopic,
async ({ message }: EnvelopeWithMessage) => message,
{
Expand All @@ -81,7 +87,7 @@ export class ConsentList {
)

// decrypt messages
const { responses } = await client.keystore.selfDecrypt({
const { responses } = await this.client.keystore.selfDecrypt({
requests: messages.map((message) => ({ payload: message })),
})

Expand All @@ -96,23 +102,23 @@ export class ConsentList {
: result
}, [] as privatePreferences.PrivatePreferencesAction[])

// update consent list entries
actions.forEach((action) => {
action.allow?.walletAddresses.forEach((address) => {
consentList.allow(address)
this.allow(address)
})
action.block?.walletAddresses.forEach((address) => {
consentList.block(address)
this.block(address)
})
})

return consentList
}

static async publish(entries: ConsentListEntry[], client: Client) {
const identifier = await this.getIdentifier(client)
async publish(entries: ConsentListEntry[]) {
const identifier = await this.getIdentifier()

// encoded actions
const actions = entries.reduce((result, entry) => {
// only handle address entries for now
if (entry.entryType === 'address') {
const action: privatePreferences.PrivatePreferencesAction = {
allow:
Expand All @@ -135,7 +141,7 @@ export class ConsentList {
return result
}, [] as Uint8Array[])

const { responses } = await client.keystore.selfEncrypt({
const { responses } = await this.client.keystore.selfEncrypt({
requests: actions.map((action) => ({ payload: action })),
})

Expand All @@ -156,7 +162,13 @@ export class ConsentList {
timestamp,
}))

await client.publishEnvelopes(envelopes)
// publish entries
await this.client.publishEnvelopes(envelopes)

// update local entries after publishing
entries.forEach((entry) => {
this.entries.set(entry.key, entry.permissionType)
})
}
}

Expand All @@ -165,17 +177,29 @@ export class Contacts {
* Addresses that the client has connected to
*/
addresses: Set<string>
private consentList: ConsentList
/**
* XMTP client
*/
client: Client
/**
* The last time the consent list was synced
*/
lastSyncedAt?: Date
private consentList: ConsentList

constructor(client: Client) {
this.addresses = new Set<string>()
this.consentList = new ConsentList()
this.consentList = new ConsentList(client)
this.client = client
}

async refreshConsentList(startTime?: Date) {
this.consentList = await ConsentList.load(this.client, startTime)
async loadConsentList(startTime?: Date) {
this.lastSyncedAt = new Date()
await this.consentList.load(startTime)
}

async refreshConsentList() {
await this.loadConsentList()
}

isAllowed(address: string) {
Expand All @@ -191,16 +215,18 @@ export class Contacts {
}

async allow(addresses: string[]) {
await ConsentList.publish(
addresses.map((address) => this.consentList.allow(address)),
this.client
await this.consentList.publish(
addresses.map((address) =>
ConsentListEntry.fromAddress(address, 'allowed')
)
)
}

async block(addresses: string[]) {
await ConsentList.publish(
addresses.map((address) => this.consentList.block(address)),
this.client
await this.consentList.publish(
addresses.map((address) =>
ConsentListEntry.fromAddress(address, 'blocked')
)
)
}
}
2 changes: 1 addition & 1 deletion src/conversations/Conversations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ export default class Conversations<ContentTypes = any> {
])

// add peer address to allow list
this.client.contacts.allow([peerAddress])
await this.client.contacts.allow([peerAddress])

return this.conversationReferenceToV2(conversation)
}
Expand Down
Loading