Beispiel #1
0
 def addSponsoredIdentity(self, idy: Identity):
     if idy.role and not Authoriser.isValidRole(idy.role):
         raise AttributeError("invalid role: {}".format(idy.role))
     if idy.identifier in self._sponsored:
         del self._sponsored[idy.identifier]
     self._sponsored[idy.identifier] = idy
     self._sendIdReq(idy)
Beispiel #2
0
    def __init__(self,
                 identifier: Identifier,
                 sponsor: Identifier = None,
                 verkey=None,
                 role=None,
                 last_synced=None,
                 seqNo=None):

        self.identifier = identifier
        self.sponsor = sponsor

        # None indicates the identifier is a cryptonym
        self.verkey = verkey

        # None indicates the identifier is a cryptonym
        # if role and role not in (SPONSOR, STEWARD):
        if not Authoriser.isValidRole(role):
            raise AttributeError("Invalid role {}".format(role))
        self.role = role

        # timestamp for when the ledger was last checked for key replacement or
        # revocation
        self.last_synced = last_synced

        # sequence number of the latest key management transaction for this
        # identifier
        self.seqNo = seqNo
Beispiel #3
0
    def __init__(self,
                 identifier: Identifier,
                 trust_anchor: Identifier=None,
                 verkey=None,
                 role=None,
                 last_synced=None,
                 seq_no=None):
        """

        :param identifier:
        :param trust_anchor:
        :param verkey:
        :param role: If role is explicitly passed as `null` then in the request
         to ledger, `role` key would be sent as None which would stop the
         Identity's ability to do any privileged actions. If role is not passed,
          `role` key will not be included in the request to the ledger
        :param last_synced:
        :param seq_no:
        """

        self.identity = DidIdentity(identifier, verkey=verkey)
        self.trustAnchor = trust_anchor

        # if role and role not in (TRUST_ANCHOR, STEWARD):
        if not Authoriser.isValidRole(self.correctRole(role)):
            raise AttributeError("Invalid role {}".format(role))
        self._role = role

        # timestamp for when the ledger was last checked for key replacement or
        # revocation
        self.last_synced = last_synced

        # sequence number of the latest key management transaction for this
        # identifier
        self.seqNo = seq_no
Beispiel #4
0
    def __init__(self,
                 identifier: Identifier,
                 trust_anchor: Identifier = None,
                 verkey=None,
                 role=None,
                 last_synced=None,
                 seq_no=None):
        """

        :param identifier:
        :param trust_anchor:
        :param verkey:
        :param role: If role is explicitly passed as `null` then in the request
         to ledger, `role` key would be sent as None which would stop the
         Identity's ability to do any privileged actions. If role is not passed,
          `role` key will not be included in the request to the ledger
        :param last_synced:
        :param seq_no:
        """

        self.identity = DidIdentity(identifier, verkey=verkey)
        self.trustAnchor = trust_anchor

        # if role and role not in (TRUST_ANCHOR, STEWARD):
        if not Authoriser.isValidRole(self.correctRole(role)):
            raise AttributeError("Invalid role {}".format(role))
        self._role = role

        # timestamp for when the ledger was last checked for key replacement or
        # revocation
        self.last_synced = last_synced

        # sequence number of the latest key management transaction for this
        # identifier
        self.seqNo = seq_no
Beispiel #5
0
 def _doStaticValidationNym(self, identifier, reqId, operation):
     role = operation.get(ROLE)
     nym = operation.get(TARGET_NYM)
     if not nym:
         raise InvalidClientRequest(
             identifier, reqId, "{} needs to be present".format(TARGET_NYM))
     if not Authoriser.isValidRole(role):
         raise InvalidClientRequest(identifier, reqId,
                                    "{} not a valid role".format(role))
     # TODO: This is not static validation as it involves state
     s, reason = self.canNymRequestBeProcessed(identifier, operation)
     if not s:
         raise InvalidClientRequest(identifier, reqId, reason)
 def _doStaticValidationNym(self, identifier, reqId, operation):
     role = operation.get(ROLE)
     nym = operation.get(TARGET_NYM)
     if not nym:
         raise InvalidClientRequest(identifier, reqId,
                                    "{} needs to be present".
                                    format(TARGET_NYM))
     if not Authoriser.isValidRole(role):
         raise InvalidClientRequest(identifier, reqId,
                                    "{} not a valid role".
                                    format(role))
     # TODO: This is not static validation as it involves state
     s, reason = self.canNymRequestBeProcessed(identifier, operation)
     if not s:
         raise InvalidClientRequest(identifier, reqId, reason)
Beispiel #7
0
 def addNymTxnToGraph(self, txn):
     origin = txn.get(f.IDENTIFIER.nm)
     role = txn.get(ROLE)
     if not Authoriser.isValidRole(role):
         raise ValueError(
             "Unknown role {} for nym, cannot add nym to graph".format(
                 role))
     verkey = txn.get(VERKEY)
     nym = txn[TARGET_NYM]
     try:
         txnId = txn[TXN_ID]
         seqNo = txn.get(F.seqNo.name)
         # Since NYM vertex has a unique index on the identifier,
         # (CID or DID) a unique constraint violation would occur if the
         # nym exists. Instead of catching an exception, a call to hasNym or
         #  getNym could be done but since NYM update txns would be less
         # common then NYM adding transactions so avoiding the cost of
         # extra db query
         try:
             self.addNym(txnId,
                         nym,
                         verkey,
                         role,
                         frm=origin,
                         reference=txn.get(REF),
                         seqNo=seqNo)
         except pyorient.PyOrientORecordDuplicatedException:
             updateData = {}
             # Since role can be None, it is only included for update if
             # it was supplied in the transaction as if ROLE was not
             # supplied in transaction, the client did not intend to update
             # the role, but if absence of role is considered None then it
             # will lead to the identity losing its role
             if ROLE in txn:
                 updateData[ROLE] = txn[ROLE]
             if VERKEY in txn:
                 updateData[VERKEY] = txn[VERKEY]
             self.updateNym(txnId, nym, seqNo, **updateData)
         else:
             # Only update edge in case of new NYM transaction
             self._updateTxnIdEdgeWithTxn(txnId, Edges.AddsNym, txn)
     except pyorient.PyOrientORecordDuplicatedException:
         logger.debug("The nym {} was already added to graph".format(nym))
     except pyorient.PyOrientCommandException as ex:
         fault(
             ex, "An exception was raised while adding "
             "nym {}: {}".format(nym, ex))
 def addNymTxnToGraph(self, txn):
     origin = txn.get(f.IDENTIFIER.nm)
     role = txn.get(ROLE)
     if not Authoriser.isValidRole(role):
         raise ValueError(
             "Unknown role {} for nym, cannot add nym to graph".format(
                 role))
     nym = txn[TARGET_NYM]
     verkey = txn.get(VERKEY)
     try:
         txnId = txn[TXN_ID]
         seqNo = txn.get(F.seqNo.name)
         # Since NYM vertex has a unique index on the identifier,
         # (CID or DID) a unique constraint violattion would occur if the
         # nym exists. Instead of catching an exception, a call to hasNym or
         #  getNym could be done but since NYM update txns would be less
         # common then NYM adding transactions so avoidinhg the cost of
         # extra db query
         try:
             self.addNym(txnId,
                         nym,
                         verkey,
                         role,
                         frm=origin,
                         reference=txn.get(REF),
                         seqNo=seqNo)
         except pyorient.PyOrientORecordDuplicatedException:
             self.updateNym(txnId, nym, verkey, seqNo, role)
         else:
             # Only update edge in case of new NYM transaction
             self._updateTxnIdEdgeWithTxn(txnId, Edges.AddsNym, txn)
     except pyorient.PyOrientORecordDuplicatedException:
         logger.debug("The nym {} was already added to graph".format(nym))
     except pyorient.PyOrientCommandException as ex:
         fault(
             ex, "An exception was raised while adding "
             "nym {}: {}".format(nym, ex))
 def role(self, role):
     if not Authoriser.isValidRole(self.correctRole(role)):
         raise AttributeError("Invalid role {}".format(role))
     self._role = role
Beispiel #10
0
    def checkValidSovrinOperation(self, identifier, reqId, operation):
        unknownKeys = set(operation.keys()).difference(set(allOpKeys))
        if unknownKeys:
            raise InvalidClientRequest(
                identifier, reqId,
                'invalid keys "{}"'.format(",".join(unknownKeys)))

        missingKeys = set(reqOpKeys).difference(set(operation.keys()))
        if missingKeys:
            raise InvalidClientRequest(
                identifier, reqId,
                'missing required keys "{}"'.format(",".join(missingKeys)))

        if operation[TXN_TYPE] not in validTxnTypes:
            raise InvalidClientRequest(
                identifier, reqId,
                'invalid {}: {}'.format(TXN_TYPE, operation[TXN_TYPE]))

        if operation[TXN_TYPE] == ATTRIB:
            dataKeys = {RAW, ENC, HASH}.intersection(set(operation.keys()))
            if len(dataKeys) != 1:
                raise InvalidClientRequest(
                    identifier, reqId, '{} should have one and only one of '
                    '{}, {}, {}'.format(ATTRIB, RAW, ENC, HASH))
            if RAW in dataKeys:
                try:
                    data = json.loads(operation[RAW])
                    endpoint = data.get(ENDPOINT)
                    check_endpoint_valid(endpoint, required=False)

                except EndpointException as exc:
                    raise InvalidClientRequest(identifier, reqId, str(exc))
                except BaseException as exc:
                    raise InvalidClientRequest(identifier, reqId, str(exc))
                # PREVIOUS CODE, ASSUMED ANY EXCEPTION WAS A JSON ISSUE
                # except:
                #     raise InvalidClientRequest(identifier, reqId,
                #                                'raw attribute {} should be '
                #                                'JSON'.format(operation[RAW]))

            if not (not operation.get(TARGET_NYM)
                    or self.graphStore.hasNym(operation[TARGET_NYM])):
                raise InvalidClientRequest(
                    identifier, reqId, '{} should be added before adding '
                    'attribute for it'.format(TARGET_NYM))

        if operation[TXN_TYPE] == NYM:
            role = operation.get(ROLE)
            nym = operation.get(TARGET_NYM)
            if not nym:
                raise InvalidClientRequest(
                    identifier, reqId,
                    "{} needs to be present".format(TARGET_NYM))
            if not Authoriser.isValidRole(role):
                raise InvalidClientRequest(identifier, reqId,
                                           "{} not a valid role".format(role))
            # Only
            if not self.canNymRequestBeProcessed(identifier, operation):
                raise InvalidClientRequest(identifier, reqId,
                                           "{} is already present".format(nym))

        if operation[TXN_TYPE] == POOL_UPGRADE:
            action = operation.get(ACTION)
            if action not in (START, CANCEL):
                raise InvalidClientRequest(
                    identifier, reqId, "{} not a valid action".format(action))
            if action == START:
                schedule = operation.get(SCHEDULE, {})
                isValid, msg = self.upgrader.isScheduleValid(
                    schedule, self.poolManager.nodeIds)
                if not isValid:
                    raise InvalidClientRequest(
                        identifier, reqId,
                        "{} not a valid schedule since {}".format(
                            schedule, msg))
Beispiel #11
0
 def role(self, role):
     if not Authoriser.isValidRole(self.correctRole(role)):
         raise AttributeError("Invalid role {}".format(role))
     self._role = role