示例#1
0
def resign_ipa(self: Task, uuid: str, cert: str, cert_url: str, cert_md5: str,
               mp_url, mp_md5, project, ipa_url, ipa_md5, ipa_new, upload_url,
               process_url: str):
    worker = self.request.hostname
    Log("[%s]启动Celery任务[%s][%s][%s]" %
        (worker, uuid, self.request.retries, json_str(self.request.kwargs)))
    base = tempfile.gettempdir()
    _update_state(process_url, worker, "ready")
    # 确认ipa
    with Block("cert部分"):
        if cert in _certs:
            Log("钥匙串中已经拥有证书[%s]" % cert)
        else:
            _refresh_certs()
        if cert in _certs:
            Log("钥匙串中已经拥有证书[%s]" % cert)
        else:
            _update_state(process_url, worker, "prepare_cert")
            Log("下载证书p12[%s]" % cert)
            file_cert = os.path.join(base, "cert.p12")
            assert call(["wget", cert_url, "-O", file_cert, "-o",
                         "/dev/null"]) == 0, "下载[%s]失败了" % cert_url
            assert md5bytes(
                read_binary_file(file_cert)) == cert_md5, "下载[%s]失败" % cert_url
            Log("导入证书p12[%s]" % cert)
            assert call([SECURITY_BIN, "import", file_cert, "-P",
                         "q1w2e3r4"]), "导入证书[%s]失败" % cert
    with Block("mobileprovision部分"):
        file_mp = os.path.join(base, "package.mobileprovision")
        if os.path.isfile(file_mp) and md5bytes(
                read_binary_file(file_mp)) == mp_md5:
            Log("采用本地的mobileprovision文件")
        else:
            _update_state(process_url, worker, "prepare_mp")
            Log("下载mobileprovision文件")
            os.makedirs(os.path.join("package", project), exist_ok=True)
            assert call(["wget", mp_url, "-O", file_mp, "-o",
                         "/dev/null"]) == 0, "下载[%s]失败了" % mp_url
            assert md5bytes(
                read_binary_file(file_mp)) == mp_md5, "下载[%s]失败" % mp_url
    with Block("ipa部分"):
        file_ipa = os.path.join("package", project, "orig.ipa")
        if os.path.isfile(file_ipa) and md5bytes(
                read_binary_file(file_ipa)) == ipa_md5:
            Log("采用本地的ipa文件")
        else:
            _update_state(process_url, worker, "prepare_ipa")
            Log("下载ipa文件[%s]" % ipa_url)
            os.makedirs(os.path.join("package", project), exist_ok=True)
            assert call(["wget", ipa_url, "-O", file_ipa, "-o",
                         "/dev/null"]) == 0, "下载[%s]失败了" % ipa_url
            assert md5bytes(
                read_binary_file(file_ipa)) == ipa_md5, "下载[%s]失败了" % ipa_url

    with Block("打包"):
        Log("开始打包[%s]" % project)
        file_new = os.path.join("package", project, ipa_new)
        _update_state(process_url, worker, "resign")
        # noinspection PyBroadException
        try:
            _package(file_ipa, file_mp, cert, file_new)
        except Exception:
            _update_state(process_url, worker, "fail")

    with Block("上传"):
        _update_state(process_url, worker, "upload_ipa")
        Log("上传ipa[%s][%s]" % (project, upload_url))
        rsp = requests.post(upload_url,
                            files={
                                "worker": worker,
                                "file": read_binary_file(file_new),
                            })
        assert rsp.status_code == 200
        assert rsp.json()["ret"] == 0
    Log("任务完成")
    _update_state(process_url, worker, "succ", fail=True)
    return {
        "succ": True,
        "uuid": uuid,
    }
示例#2
0
文件: tasks.py 项目: ai966669/ios_ci
def _download(url, file, md5=None):
    # assert call(["wget", url, "-O", file, "-o", "/dev/null"]) == 0, "下载[%s]失败了" % url
    assert call(["curl", url, "-o", file, "-sSLk"]) == 0, "下载[%s]失败了" % url
    if md5:
        assert md5bytes(read_binary_file(file)) == md5, "下载[%s]校验失败" % url