当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Shiorif.getVersion2方法代码示例

本文整理汇总了TypeScript中shiorif.Shiorif.getVersion2方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Shiorif.getVersion2方法的具体用法?TypeScript Shiorif.getVersion2怎么用?TypeScript Shiorif.getVersion2使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在shiorif.Shiorif的用法示例。


在下文中一共展示了Shiorif.getVersion2方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: getShioriVersionInfo

  /**
   * SSPと同様の方式でバージョン情報を取得する
   *
   * 注意: このメソッドはshiorif.autoConvertRequestVersionを変更します。
   */
  static async getShioriVersionInfo(shiorif: Shiorif) {
    shiorif.autoConvertRequestVersion = "2.6";
    // SHIORI/2.6 GET Versionを問い合わせる
    const { response } = await shiorif.getVersion2();
    const code = response.status_line.code;
    const version = response.status_line.version;
    if (!version) throw new Error("no shiori protocol version");
    if (code === 200 && /2\.\d/.test(version)) {
      // SHIORI/2.6で返ってきたらそのまま読む
      const header = response.headers.header;
      const _version = "2.6";
      const name = header.ID || "";
      const craftman = header.Craftman || "";

      return new ShioriVersionInfo(name, _version, craftman, craftman);
    } else if (/3\.\d/.test(version)) {
      // SHIORI/3.0で返ってきたら以後SHIORI/3.0で通信することにし、取り直す
      shiorif.autoConvertRequestVersion = "3.0";
      const [_version, name, craftman, craftmanw] = await Promise.all([
        (await shiorif.request3("GET", "version")).response.headers.Value as string,
        (await shiorif.request3("GET", "name")).response.headers.Value as string,
        (await shiorif.request3("GET", "craftman")).response.headers.Value as string,
        (await shiorif.request3("GET", "craftmanw")).response.headers.Value as string,
      ]);

      return new ShioriVersionInfo(name, _version, craftman, craftmanw);
    } else {
      throw new Error(`unknown shiori protocol version: ${version}`);
    }
  }
开发者ID:Ikagaka,项目名称:ghost-kernel.js,代码行数:35,代码来源:VersionService.ts


注:本文中的shiorif.Shiorif.getVersion2方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。