Exemplo n.º 1
0
def do_add_sub_artifact(args, config):
    artifact_id = args.artifact_id
    sub_artifact_id = args.sub_artifact_id
    path = args.path
    private_key = args.private_key
    public_key = args.public_key 
    
   
    payload = "{}"
    key = json.loads(payload)
    key["publickey"] = public_key
    key["privatekey"] = private_key
    key["allowedrole"]=[{"role":"admin"},{"role":"member"}]
    payload = json.dumps(key)
       
    headers = {'content-type': 'application/json'}
    response = requests.post("http://127.0.0.1:818/api/sparts/ledger/auth",data=json.dumps(key),headers=headers)
    output = response.content.decode("utf-8").strip()
    statusinfo = json.loads(output)
       
    if statusinfo.get('status')and statusinfo.get('message'):
            
        status = statusinfo['status']
        message = statusinfo['message']
            
        if status == 'success' and message == 'authorized':
            url = config.get('DEFAULT', 'url')
            client = ArtifactBatch(base_url=url)
            response = client.add_artifact(private_key,public_key,artifact_id,sub_artifact_id,path)
            print_msg(response)
        else:
            print(output)
    else:
        print(output)
Exemplo n.º 2
0
def do_add_sub_artifact(args, config):
    """
    Establishes relationship between Artifact and Sub-Artifact in the state
    associating with the UUID of the Transaction Family : Artifact
    
    Args:
        args (ArgumentParser):
            ArgumentParser object containing required parameters
        config (ConfigParser): ConfigParser which contains the default url
        
    Returns:
        type: str
        String representing JSON object which allows the client to know that
        the call was either a success or a failure.
        
    """
    deleteSub = args.delete

    artifact_id = args.artifact_id
    sub_artifact_id = args.sub_artifact_id
    path = args.path
    private_key = args.private_key
    public_key = args.public_key

    payload = "{}"
    key = json.loads(payload)
    key["publickey"] = public_key
    key["privatekey"] = private_key
    key["allowedrole"] = [{"role": "admin"}, {"role": "member"}]
    payload = json.dumps(key)

    headers = {"content-type": "application/json"}
    response = requests.post("http://127.0.0.1:818/api/sparts/ledger/auth",
                             data=json.dumps(key),
                             headers=headers)
    output = response.content.decode("utf-8").strip()
    statusinfo = json.loads(output)

    if statusinfo.get("status") and statusinfo.get("message"):

        status = statusinfo["status"]
        message = statusinfo["message"]

        if status == "success" and message == "authorized":
            b_url = config.get("DEFAULT", "url")
            client = ArtifactBatch(base_url=b_url)
            response = client.add_artifact(private_key, public_key,
                                           artifact_id, sub_artifact_id, path,
                                           deleteSub)

            print_msg(response, "AddArtifact")
        else:
            print(output)
    else:
        print(output)
Exemplo n.º 3
0
def api_do_add_sub_artifact(args, config, del_flag=False):
    """
    API version of "do_add_sub_artifact" function.
    """
    param_check = _payload_check_(args, cmd="AddArtifact")

    if param_check[0]:
        return ret_msg("failed", param_check[1], "EmptyRecord", "{}")

    artifact_id = args["relation"]["artifact_uuid"]
    sub_artifact_id = args["relation"]["sub_artifact_uuid"]
    path = args["relation"]["path"]
    private_key = args["private_key"]
    public_key = args["public_key"]

    payload = "{}"
    key = json.loads(payload)
    key["publickey"] = public_key
    key["privatekey"] = private_key
    key["allowedrole"] = [{"role": "admin"}, {"role": "member"}]
    payload = json.dumps(key)

    headers = {"content-type": "application/json"}
    response = requests.post("http://127.0.0.1:818/api/sparts/ledger/auth",
                             data=json.dumps(key),
                             headers=headers)
    output = response.content.decode("utf-8").strip()
    statusinfo = json.loads(output)

    if statusinfo.get("status") and statusinfo.get("message"):

        status = statusinfo["status"]
        message = statusinfo["message"]

        if status == "success" and message == "authorized":
            b_url = config.get("DEFAULT", "url")
            client = ArtifactBatch(base_url=b_url)
            response = client.add_artifact(private_key, public_key,
                                           artifact_id, sub_artifact_id, path,
                                           del_flag)

            return print_msg(response, "AddArtifact")
        else:
            return output
    else:
        return output