microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.6.3

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/extension/appcenter/helpers/utils.ts

77lines · modepreview

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for details.

// tslint:disable-next-line:no-var-requires
const opener = require("opener");
// tslint:disable-next-line:no-var-requires
const open = require("open");
import * as Q from "q";
import * as fs from "fs";
import * as path from "path";
import { Package, IPackageInformation } from "../../../common/node/package";
import { ACConstants, AppCenterOS, CurrentAppDeployments } from "../appCenterConstants";
import { DefaultApp } from "../command/commandParams";

export class ACUtils {
    private static validApp = /^([a-zA-Z0-9-_.]{1,100})\/([a-zA-Z0-9-_.]{1,100})$/;

    // Use open for Windows and Mac, opener for Linux
    public static OpenUrl(url: string): void {
        switch (process.platform) {
            case "win32":
            case "darwin":
                open(url);
                break;
            default:
                opener(url);
                break;
        }
    }

    public static isCodePushProject(projectRoot: string): Q.Promise<boolean> {
        if (!projectRoot || !fs.existsSync(path.join(projectRoot, "package.json"))) {
            return Q<boolean>(false);
        }
        return new Package(projectRoot).parsePackageInformation().then((packageInfo: IPackageInformation) => {
            if (packageInfo.dependencies && packageInfo.dependencies[ACConstants.CodePushNpmPackageName]) {
                return Q<boolean>(true);
            } else {
                return Q<boolean>(false);
            }
        });
    }

    public static formatDeploymentNameForStatusBar(deployment: CurrentAppDeployments): string {
        return deployment.currentDeploymentName;
    }

    public static formatAppName(app: DefaultApp): string | null {
        if (app) {
            return `${app.appName} (${app.os})`;
        }
        return null;
    }

    public static toDefaultApp(app: string,
                               appOS: AppCenterOS,
                               appDeployment: CurrentAppDeployments | null,
                               targetBinaryVersion: string,
                               isMandatory: boolean): DefaultApp | null {
        const matches = app.match(this.validApp);
        if (matches !== null) {
          return {
            ownerName: matches[1],
            appName: matches[2],
            identifier: `${matches[1]}/${matches[2]}`,
            os: appOS,
            targetBinaryVersion: targetBinaryVersion,
            isMandatory: isMandatory,
            currentAppDeployments: appDeployment ? appDeployment : {
                codePushDeployments: new Array(),
                currentDeploymentName: "",
            },
          };
        }
        return null;
      }
}