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

AddressBooks and AddressBookItems deletion API endpoints #2148

Merged
merged 5 commits into from
Nov 21, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ export interface IAddressBooksRepository {
chainId: string;
createAddressBookItemDto: CreateAddressBookItemDto;
}): Promise<AddressBookItem>;

deleteAddressBook(args: {
authPayload: AuthPayload;
address: `0x${string}`;
chainId: string;
}): Promise<void>;

deleteAddressBookItem(args: {
authPayload: AuthPayload;
address: `0x${string}`;
chainId: string;
addressBookItemId: number;
}): Promise<void>;
}

@Module({
Expand Down
50 changes: 50 additions & 0 deletions src/domain/accounts/address-books/address-books.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,56 @@ export class AddressBooksRepository implements IAddressBooksRepository {
});
}

async deleteAddressBook(args: {
authPayload: AuthPayload;
address: `0x${string}`;
chainId: string;
}): Promise<void> {
if (!args.authPayload.isForSigner(args.address)) {
throw new UnauthorizedException();
}
await this.checkAddressBooksIsEnabled({
authPayload: args.authPayload,
address: args.address,
});
const account = await this.accountsRepository.getAccount({
authPayload: args.authPayload,
address: args.address,
});
const addressBook = await this.datasource.getAddressBook({
account,
chainId: args.chainId,
});
return this.datasource.deleteAddressBook(addressBook);
}

async deleteAddressBookItem(args: {
authPayload: AuthPayload;
address: `0x${string}`;
chainId: string;
addressBookItemId: number;
}): Promise<void> {
if (!args.authPayload.isForSigner(args.address)) {
throw new UnauthorizedException();
}
await this.checkAddressBooksIsEnabled({
authPayload: args.authPayload,
address: args.address,
});
const account = await this.accountsRepository.getAccount({
authPayload: args.authPayload,
address: args.address,
});
const addressBook = await this.datasource.getAddressBook({
account,
chainId: args.chainId,
});
return this.datasource.deleteAddressBookItem({
addressBook,
id: args.addressBookItemId,
});
}

// TODO: Extract this functionality in AccountsRepository['checkIsEnabled(DataType, Account)']
private async checkAddressBooksIsEnabled(args: {
authPayload: AuthPayload;
Expand Down
Loading