forked from use-ink/ink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
252 lines (219 loc) · 8.28 KB
/
Copy pathlib.rs
File metadata and controls
252 lines (219 loc) · 8.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
#![cfg_attr(not(feature = "std"), no_std)]
use ink_lang as ink;
#[ink::contract]
mod dns {
#[cfg(not(feature = "ink-as-dependency"))]
use ink_storage::{
collections::hashmap::Entry,
collections::HashMap as StorageHashMap,
lazy::Lazy,
};
/// Emitted whenever a new name is being registered.
#[ink(event)]
pub struct Register {
#[ink(topic)]
name: Hash,
#[ink(topic)]
from: AccountId,
}
/// Emitted whenever an address changes.
#[ink(event)]
pub struct SetAddress {
#[ink(topic)]
name: Hash,
from: AccountId,
#[ink(topic)]
old_address: Option<AccountId>,
#[ink(topic)]
new_address: AccountId,
}
/// Emitted whenever a name is being transferred.
#[ink(event)]
pub struct Transfer {
#[ink(topic)]
name: Hash,
from: AccountId,
#[ink(topic)]
old_owner: Option<AccountId>,
#[ink(topic)]
new_owner: AccountId,
}
/// Domain name service contract inspired by
/// [this blog post](https://medium.com/@chainx_org/secure-and-decentralized-polkadot-domain-name-system-e06c35c2a48d).
///
/// # Note
///
/// This is a port from the blog post's ink! 1.0 based version of the contract
/// to ink! 2.0.
///
/// # Description
///
/// The main function of this contract is domain name resolution which
/// refers to the retrieval of numeric values corresponding to readable
/// and easily memorable names such as "polka.dot" which can be used
/// to facilitate transfers, voting and DApp-related operations instead
/// of resorting to long IP addresses that are hard to remember.
#[ink(storage)]
#[derive(Default)]
pub struct DomainNameService {
/// A hashmap to store all name to addresses mapping.
name_to_address: StorageHashMap<Hash, AccountId>,
/// A hashmap to store all name to owners mapping.
name_to_owner: StorageHashMap<Hash, AccountId>,
/// The default address.
default_address: Lazy<AccountId>,
}
/// Errors that can occur upon calling this contract.
#[derive(Debug, PartialEq, Eq, scale::Encode, scale::Decode)]
#[cfg_attr(feature = "std", derive(::scale_info::TypeInfo))]
pub enum Error {
/// Returned if the name already exists upon registration.
NameAlreadyExists,
/// Returned if caller is not owner while required to.
CallerIsNotOwner,
}
/// Type alias for the contract's result type.
pub type Result<T> = core::result::Result<T, Error>;
impl DomainNameService {
/// Creates a new domain name service contract.
#[ink(constructor)]
pub fn new() -> Self {
Default::default()
}
/// Register specific name with caller as owner.
#[ink(message)]
pub fn register(&mut self, name: Hash) -> Result<()> {
let caller = self.env().caller();
let entry = self.name_to_owner.entry(name);
match entry {
Entry::Occupied(_) => return Err(Error::NameAlreadyExists),
Entry::Vacant(vacant) => {
vacant.insert(caller);
self.env().emit_event(Register { name, from: caller });
}
}
Ok(())
}
/// Set address for specific name.
#[ink(message)]
pub fn set_address(&mut self, name: Hash, new_address: AccountId) -> Result<()> {
let caller = self.env().caller();
let owner = self.get_owner_or_default(name);
if caller != owner {
return Err(Error::CallerIsNotOwner)
}
let old_address = self.name_to_address.insert(name, new_address);
self.env().emit_event(SetAddress {
name,
from: caller,
old_address,
new_address,
});
Ok(())
}
/// Transfer owner to another address.
#[ink(message, selector = 0xFEEDDEED)]
pub fn transfer(&mut self, name: Hash, to: AccountId) -> Result<()> {
let caller = self.env().caller();
let owner = self.get_owner_or_default(name);
if caller != owner {
return Err(Error::CallerIsNotOwner)
}
let old_owner = self.name_to_owner.insert(name, to);
self.env().emit_event(Transfer {
name,
from: caller,
old_owner,
new_owner: to,
});
Ok(())
}
/// Get address for specific name.
#[ink(message)]
pub fn get_address(&self, name: Hash) -> AccountId {
self.get_address_or_default(name)
}
/// Returns the owner given the hash or the default address.
fn get_owner_or_default(&self, name: Hash) -> AccountId {
*self
.name_to_owner
.get(&name)
.unwrap_or(&*self.default_address)
}
/// Returns the address given the hash or the default address.
fn get_address_or_default(&self, name: Hash) -> AccountId {
*self
.name_to_address
.get(&name)
.unwrap_or(&*self.default_address)
}
}
#[cfg(test)]
mod tests {
use super::*;
use ink_lang as ink;
const DEFAULT_CALLEE_HASH: [u8; 32] = [0x07; 32];
const DEFAULT_ENDOWMENT: Balance = 1_000_000;
const DEFAULT_GAS_LIMIT: u64 = 1_000_000;
fn default_accounts(
) -> ink_env::test::DefaultAccounts<ink_env::DefaultEnvironment> {
ink_env::test::default_accounts::<ink_env::DefaultEnvironment>()
.expect("off-chain environment should have been initialized already")
}
fn set_next_caller(caller: AccountId) {
ink_env::test::push_execution_context::<ink_env::DefaultEnvironment>(
caller,
AccountId::from(DEFAULT_CALLEE_HASH),
DEFAULT_GAS_LIMIT,
DEFAULT_ENDOWMENT,
ink_env::test::CallData::new(ink_env::call::Selector::new([0x00; 4])),
)
}
#[ink::test]
fn register_works() {
let default_accounts = default_accounts();
let name = Hash::from([0x99; 32]);
set_next_caller(default_accounts.alice);
let mut contract = DomainNameService::new();
assert_eq!(contract.register(name), Ok(()));
assert_eq!(contract.register(name), Err(Error::NameAlreadyExists));
}
#[ink::test]
fn set_address_works() {
let accounts = default_accounts();
let name = Hash::from([0x99; 32]);
set_next_caller(accounts.alice);
let mut contract = DomainNameService::new();
assert_eq!(contract.register(name), Ok(()));
// Caller is not owner, `set_address` should fail.
set_next_caller(accounts.bob);
assert_eq!(
contract.set_address(name, accounts.bob),
Err(Error::CallerIsNotOwner)
);
// Caller is owner, set_address will be successful
set_next_caller(accounts.alice);
assert_eq!(contract.set_address(name, accounts.bob), Ok(()));
assert_eq!(contract.get_address(name), accounts.bob);
}
#[ink::test]
fn transfer_works() {
let accounts = default_accounts();
let name = Hash::from([0x99; 32]);
set_next_caller(accounts.alice);
let mut contract = DomainNameService::new();
assert_eq!(contract.register(name), Ok(()));
// Test transfer of owner.
assert_eq!(contract.transfer(name, accounts.bob), Ok(()));
// Owner is bob, alice `set_address` should fail.
assert_eq!(
contract.set_address(name, accounts.bob),
Err(Error::CallerIsNotOwner)
);
set_next_caller(accounts.bob);
// Now owner is bob, `set_address` should be successful.
assert_eq!(contract.set_address(name, accounts.bob), Ok(()));
assert_eq!(contract.get_address(name), accounts.bob);
}
}
}