2018-06-20 19:14:06 +00:00
|
|
|
pragma solidity ^0.4.18;
|
|
|
|
|
|
|
|
import './ENS.sol';
|
2018-07-13 16:37:34 +00:00
|
|
|
import './Resolver.sol';
|
2018-06-20 19:14:06 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A registrar that allocates subdomains to the first person to claim them.
|
|
|
|
*/
|
|
|
|
contract FIFSRegistrar {
|
|
|
|
ENS ens;
|
|
|
|
bytes32 rootNode;
|
|
|
|
|
|
|
|
modifier only_owner(bytes32 subnode) {
|
2018-08-16 15:34:47 +00:00
|
|
|
bytes32 node = keccak256(abi.encodePacked(rootNode, subnode));
|
2018-07-12 20:31:00 +00:00
|
|
|
address currentOwner = ens.owner(node);
|
2018-06-20 19:14:06 +00:00
|
|
|
require(currentOwner == 0 || currentOwner == msg.sender);
|
|
|
|
_;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
* @param ensAddr The address of the ENS registry.
|
|
|
|
* @param node The node that this registrar administers.
|
|
|
|
*/
|
2018-08-16 15:34:47 +00:00
|
|
|
constructor(ENS ensAddr, bytes32 node) public {
|
2018-06-20 19:14:06 +00:00
|
|
|
ens = ensAddr;
|
|
|
|
rootNode = node;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register a name, or change the owner of an existing registration.
|
|
|
|
* @param subnode The hash of the label to register.
|
|
|
|
* @param owner The address of the new owner.
|
|
|
|
*/
|
2018-07-25 15:05:27 +00:00
|
|
|
function register(bytes32 subnode, address owner) public only_owner(subnode) {
|
2018-06-20 19:14:06 +00:00
|
|
|
ens.setSubnodeOwner(rootNode, subnode, owner);
|
|
|
|
}
|
|
|
|
}
|