本文整理汇总了TypeScript中builder-util-runtime/out/bintray.BintrayClient.getVersionFiles方法的典型用法代码示例。如果您正苦于以下问题:TypeScript BintrayClient.getVersionFiles方法的具体用法?TypeScript BintrayClient.getVersionFiles怎么用?TypeScript BintrayClient.getVersionFiles使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类builder-util-runtime/out/bintray.BintrayClient
的用法示例。
在下文中一共展示了BintrayClient.getVersionFiles方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: getLatestVersion
async getLatestVersion(): Promise<UpdateInfo> {
try {
const data = await this.client.getVersion("_latest")
const channelFilename = getChannelFilename(this.getDefaultChannelName())
const files = await this.client.getVersionFiles(data.name)
const channelFile = files.find(it => it.name.endsWith(`_${channelFilename}`) || it.name.endsWith(`-${channelFilename}`))
if (channelFile == null) {
// noinspection ExceptionCaughtLocallyJS
throw newError(`Cannot find channel file "${channelFilename}", existing files:\n${files.map(it => JSON.stringify(it, null, 2)).join(",\n")}`, "ERR_UPDATER_CHANNEL_FILE_NOT_FOUND")
}
const channelFileUrl = new URL(`https://dl.bintray.com/${this.client.owner}/${this.client.repo}/${channelFile.name}`)
return parseUpdateInfo(await this.httpRequest(channelFileUrl), channelFilename, channelFileUrl)
}
catch (e) {
if ("statusCode" in e && e.statusCode === 404) {
throw newError(`No latest version, please ensure that user, package and repository correctly configured. Or at least one version is published. ${e.stack || e.message}`, "ERR_UPDATER_LATEST_VERSION_NOT_FOUND")
}
throw e
}
}
示例2: getUpdateFile
async getUpdateFile(versionInfo: VersionInfo): Promise<FileInfo> {
try {
const files = await this.client.getVersionFiles(versionInfo.version)
const suffix = `${versionInfo.version}.exe`
const file = files.find(it => it.name.endsWith(suffix) && it.name.includes("Setup")) || files.find(it => it.name.endsWith(suffix)) || files.find(it => it.name.endsWith(".exe"))
if (file == null) {
//noinspection ExceptionCaughtLocallyJS
throw new Error(`Cannot find suitable file for version ${versionInfo.version} in: ${JSON.stringify(files, null, 2)}`)
}
return {
name: file.name,
url: `https://dl.bintray.com/${this.client.owner}/${this.client.repo}/${file.name}`,
sha2: file.sha256,
}
}
catch (e) {
if (e instanceof HttpError && e.response.statusCode === 404) {
throw new Error(`No latest version, please ensure that user, package and repository correctly configured. Or at least one version is published. ${e.stack || e.message}`)
}
throw e
}
}