exec method

  1. @override
Future<void> exec(
  1. ExecContext context
)
override

Run command.

The contents of katana.yaml and the arguments of the command are passed to context.

コマンドを実行します。

contextkatana.yamlの内容やコマンドの引数が渡されます。

Implementation

@override
Future<void> exec(ExecContext context) async {
  final regExp = RegExp(r".cer$");
  final bin = context.yaml.getAsMap("bin");
  final openssl = bin.get("openssl", "openssl");
  label("Find cer file");
  final cer = await find(Directory("ios"), regExp);
  if (cer == null) {
    error(
      "Could not find the cer file in the IOS folder. First create a `CertificateSigningRequest.certSigningRequest` from `katana app csr` and download it from https://mathru.notion.site/AppStoreConnect-ID-f516ff1a767146 f69acd6780fbcf20fe to download the cer file to your IOS folder.",
    );
    return;
  }
  final key = File("ios/ios_enterprise.key");
  if (!key.existsSync()) {
    error(
      "Could not find `ios/ios_enterprise.key`. Please run `katana app csr` first.",
    );
    return;
  }
  final passwordFile = File("ios/ios_certificate_password.key");
  if (!passwordFile.existsSync()) {
    final password = generateCode(16);
    await passwordFile.writeAsString(password);
  }
  final password = await passwordFile.readAsString();
  if (password.isEmpty) {
    error("Password is missing in `ios/ios_certificate_password.key`.");
    return;
  }
  if (!File(cer.path.replaceAll(regExp, ".p12")).existsSync()) {
    await command(
      "Converts a cer file to a pem file.",
      [
        openssl,
        "x509",
        "-in",
        cer.path,
        "-inform",
        "DER",
        "-out",
        cer.path.replaceAll(regExp, ".pem"),
        "-outform",
        "PEM"
      ],
    );
    await command(
      "Converts a pem file to a p12 file.",
      [
        openssl,
        "pkcs12",
        "-export",
        "-legacy",
        "-in",
        cer.path.replaceAll(regExp, ".pem"),
        "-out",
        cer.path.replaceAll(regExp, ".p12"),
        "-inkey",
        "ios/ios_enterprise.key",
        "-password",
        "pass:$password",
      ],
    );
  }
  label("Rewrite `.gitignore`.");
  final gitignore = File("ios/.gitignore");
  if (!gitignore.existsSync()) {
    error("Cannot find `ios/.gitignore`. Project is broken.");
    return;
  }
  final gitignores = await gitignore.readAsLines();
  if (context.yaml.getAsMap("git").get("ignore_secure_file", true)) {
    if (!gitignores.any((e) => e.startsWith("**/*.p12"))) {
      gitignores.add("**/*.p12");
    }
    if (!gitignores.any((e) => e.startsWith("**/*.p8"))) {
      gitignores.add("**/*.p8");
    }
    if (!gitignores.any((e) => e.startsWith("**/*.mobileprovision"))) {
      gitignores.add("**/*.mobileprovision");
    }
    if (!gitignores.any((e) => e.startsWith("**/*.pem"))) {
      gitignores.add("**/*.pem");
    }
    if (!gitignores.any((e) => e.startsWith("**/*.cer"))) {
      gitignores.add("**/*.cer");
    }
    if (!gitignores.any((e) => e.startsWith("**/*.certSigningRequest"))) {
      gitignores.add("**/*.certSigningRequest");
    }
    if (!gitignores
        .any((e) => e.startsWith("**/ios_certificate_password.key"))) {
      gitignores.add("**/ios_certificate_password.key");
    }
    if (!gitignores.any((e) => e.startsWith("**/ios_enterprise.key"))) {
      gitignores.add("**/ios_enterprise.key");
    }
  } else {
    gitignores.removeWhere((e) => e.startsWith("**/*.p12"));
    gitignores.removeWhere((e) => e.startsWith("**/*.p8"));
    gitignores.removeWhere((e) => e.startsWith("**/*.mobileprovision"));
    gitignores.removeWhere((e) => e.startsWith("**/*.pem"));
    gitignores.removeWhere((e) => e.startsWith("**/*.cer"));
    gitignores.removeWhere((e) => e.startsWith("**/*.certSigningRequest"));
    gitignores
        .removeWhere((e) => e.startsWith("**/ios_certificate_password.key"));
    gitignores.removeWhere((e) => e.startsWith("**/ios_enterprise.key"));
  }
  await gitignore.writeAsString(gitignores.join("\n"));
}