本文整理匯總了TypeScript中webdeployment-common/utility.js.default.getFileNameFromPath方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript js.default.getFileNameFromPath方法的具體用法?TypeScript js.default.getFileNameFromPath怎麽用?TypeScript js.default.getFileNameFromPath使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類webdeployment-common/utility.js.default
的用法示例。
在下文中一共展示了js.default.getFileNameFromPath方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: DeployWebAppStep
public async DeployWebAppStep() {
tl.debug("Initiated deployment via kudu service for webapp war package : "+ this.taskParams.Package.getPath());
await this.kuduServiceUtility.warmpUp();
var warName = webCommonUtility.getFileNameFromPath(this.taskParams.Package.getPath(), ".war");
this.zipDeploymentID = await this.kuduServiceUtility.deployUsingWarDeploy(this.taskParams.Package.getPath(),
{ slotName: this.appService.getSlot() }, warName);
await this.PostDeploymentStep();
}
示例2: DeployWebAppStep
public async DeployWebAppStep() {
let deploymentMethodtelemetry = '{"deploymentMethod":"War Deploy"}';
console.log("##vso[telemetry.publish area=TaskDeploymentMethod;feature=AzureWebAppDeployment]" + deploymentMethodtelemetry);
tl.debug("Initiated deployment via kudu service for webapp war package : "+ this.taskParams.Package.getPath());
await this.kuduServiceUtility.warmpUp();
var warName = webCommonUtility.getFileNameFromPath(this.taskParams.Package.getPath(), ".war");
this.zipDeploymentID = await this.kuduServiceUtility.deployUsingWarDeploy(this.taskParams.Package.getPath(),
{ slotName: this.appService.getSlot() }, warName);
await this.PostDeploymentStep();
}
示例3: getParameters
public static getParameters(): TaskParameters {
var taskParameters: TaskParameters = {
ConnectionType: tl.getInput('ConnectionType', true),
WebAppKind: tl.getInput('WebAppKind', false),
DeployToSlotOrASEFlag: tl.getBoolInput('DeployToSlotOrASEFlag', false),
GenerateWebConfig: tl.getBoolInput('GenerateWebConfig', false),
WebConfigParameters: tl.getInput('WebConfigParameters', false),
XmlTransformation: tl.getBoolInput('XmlTransformation', false),
JSONFiles: tl.getDelimitedInput('JSONFiles', '\n', false),
XmlVariableSubstitution: tl.getBoolInput('XmlVariableSubstitution', false),
TakeAppOfflineFlag: tl.getBoolInput('TakeAppOfflineFlag', false),
RenameFilesFlag: tl.getBoolInput('RenameFilesFlag', false),
AdditionalArguments: tl.getInput('AdditionalArguments', false),
ScriptType: tl.getInput('ScriptType', false),
InlineScript: tl.getInput('InlineScript', false),
ScriptPath : tl.getPathInput('ScriptPath', false),
DockerNamespace: tl.getInput('DockerNamespace', false),
AppSettings: tl.getInput('AppSettings', false),
StartupCommand: tl.getInput('StartupCommand', false),
ConfigurationSettings: tl.getInput('ConfigurationSettings', false)
}
if(taskParameters.ConnectionType === Constant.ConnectionType.PublishProfile) {
this._initializeDefaultParametersForPublishProfile(taskParameters);
return taskParameters;
}
taskParameters.connectedServiceName = tl.getInput('ConnectedServiceName', true);
taskParameters.WebAppName = tl.getInput('WebAppName', true);
taskParameters.isFunctionApp = taskParameters.WebAppKind.indexOf("function") != -1;
taskParameters.isLinuxApp = taskParameters.WebAppKind && (taskParameters.WebAppKind.indexOf("Linux") !=-1 || taskParameters.WebAppKind.indexOf("Container") != -1);
taskParameters.isBuiltinLinuxWebApp = taskParameters.WebAppKind.indexOf('Linux') != -1;
taskParameters.isContainerWebApp =taskParameters.WebAppKind.indexOf('Container') != -1;
taskParameters.ResourceGroupName = taskParameters.DeployToSlotOrASEFlag ? tl.getInput('ResourceGroupName', false) : null;
taskParameters.SlotName = taskParameters.DeployToSlotOrASEFlag ? tl.getInput('SlotName', false) : null;
var endpointTelemetry = '{"endpointId":"' + taskParameters.connectedServiceName + '"}';
console.log("##vso[telemetry.publish area=TaskEndpointId;feature=AzureRmWebAppDeployment]" + endpointTelemetry);
if(!taskParameters.isContainerWebApp){
taskParameters.Package = new Package(tl.getPathInput('Package', true));
tl.debug("intially web config parameters :" + taskParameters.WebConfigParameters);
if(taskParameters.Package.getPackageType() === PackageType.jar && (!taskParameters.isLinuxApp)) {
if(!taskParameters.WebConfigParameters) {
taskParameters.WebConfigParameters = "-appType java_springboot";
}
if(taskParameters.WebConfigParameters.indexOf("-appType java_springboot") < 0) {
taskParameters.WebConfigParameters += " -appType java_springboot";
}
if(taskParameters.WebConfigParameters.indexOf("-JAR_PATH D:\\home\\site\\wwwroot\\*.jar") >= 0) {
var jarPath = webCommonUtility.getFileNameFromPath(taskParameters.Package.getPath());
taskParameters.WebConfigParameters = taskParameters.WebConfigParameters.replace("D:\\home\\site\\wwwroot\\*.jar", jarPath);
} else if(taskParameters.WebConfigParameters.indexOf("-JAR_PATH ") < 0) {
var jarPath = webCommonUtility.getFileNameFromPath(taskParameters.Package.getPath());
taskParameters.WebConfigParameters += " -JAR_PATH " + jarPath;
}
if(taskParameters.WebConfigParameters.indexOf("-Dserver.port=%HTTP_PLATFORM_PORT%") > 0) {
taskParameters.WebConfigParameters = taskParameters.WebConfigParameters.replace("-Dserver.port=%HTTP_PLATFORM_PORT%", "");
}
tl.debug("web config parameters :" + taskParameters.WebConfigParameters);
}
}
taskParameters.UseWebDeploy = !taskParameters.isLinuxApp ? tl.getBoolInput('UseWebDeploy', false) : false;
if(taskParameters.isLinuxApp && taskParameters.isBuiltinLinuxWebApp) {
if(taskParameters.isFunctionApp) {
taskParameters.RuntimeStack = tl.getInput('RuntimeStackFunction', false);
}
else {
taskParameters.RuntimeStack = tl.getInput('RuntimeStack', false);
}
taskParameters.TakeAppOfflineFlag = false;
}
if (!taskParameters.isFunctionApp && !taskParameters.isLinuxApp) {
taskParameters.VirtualApplication = tl.getInput('VirtualApplication', false);
taskParameters.VirtualApplication = taskParameters.VirtualApplication && taskParameters.VirtualApplication.startsWith('/')
? taskParameters.VirtualApplication.substr(1) : taskParameters.VirtualApplication;
}
if(taskParameters.UseWebDeploy) {
taskParameters.DeploymentType = this.getDeploymentType(tl.getInput('DeploymentType', false));
if(taskParameters.DeploymentType == DeploymentType.webDeploy) {
taskParameters.RemoveAdditionalFilesFlag = tl.getBoolInput('RemoveAdditionalFilesFlag', false);
taskParameters.SetParametersFile = tl.getPathInput('SetParametersFile', false);
taskParameters.ExcludeFilesFromAppDataFlag = tl.getBoolInput('ExcludeFilesFromAppDataFlag', false)
taskParameters.AdditionalArguments = tl.getInput('AdditionalArguments', false) || '';
}
}
else {
// Retry Attempt is passed by default
taskParameters.AdditionalArguments = '-retryAttempts:6 -retryInterval:10000';
}
if(taskParameters.isLinuxApp && taskParameters.ScriptType) {
this.UpdateLinuxAppTypeScriptParameters(taskParameters);
}
return taskParameters;
//.........這裏部分代碼省略.........
示例4: DeployWebAppStep
public async DeployWebAppStep() {
tl.debug('Performing Linux built-in package deployment');
var isNewValueUpdated: boolean = false;
if(this.taskParams.isFunctionApp) {
var linuxFunctionRuntimeSetting = "";
if(this.taskParams.RuntimeStack){
linuxFunctionRuntimeSetting = linuxFunctionRuntimeSettingName + linuxFunctionRuntimeSettingValue.get(this.taskParams.RuntimeStack);
}
var linuxFunctionAppSetting = linuxFunctionRuntimeSetting + linuxFunctionStorageSetting;
var customApplicationSetting = ParameterParser.parse(linuxFunctionAppSetting);
isNewValueUpdated = await this.appServiceUtility.updateAndMonitorAppSettings(customApplicationSetting);
}
if(!isNewValueUpdated) {
await this.kuduServiceUtility.warmpUp();
}
switch(this.taskParams.Package.getPackageType()){
case PackageType.folder:
let tempPackagePath = deployUtility.generateTemporaryFolderOrZipPath(tl.getVariable('AGENT.TEMPDIRECTORY'), false);
let archivedWebPackage = await zipUtility.archiveFolder(this.taskParams.Package.getPath(), "", tempPackagePath);
tl.debug("Compressed folder into zip " + archivedWebPackage);
this.zipDeploymentID = await this.kuduServiceUtility.deployUsingZipDeploy(archivedWebPackage, this.taskParams.TakeAppOfflineFlag,
{ slotName: this.appService.getSlot() });
break;
case PackageType.zip:
this.zipDeploymentID = await this.kuduServiceUtility.deployUsingZipDeploy(this.taskParams.Package.getPath(), this.taskParams.TakeAppOfflineFlag,
{ slotName: this.appService.getSlot() });
break;
case PackageType.jar:
tl.debug("Initiated deployment via kudu service for webapp jar package : "+ this.taskParams.Package.getPath());
var folderPath = await webCommonUtility.generateTemporaryFolderForDeployment(false, this.taskParams.Package.getPath(), PackageType.jar);
var jarName = webCommonUtility.getFileNameFromPath(this.taskParams.Package.getPath(), ".jar");
var destRootPath = "/home/site/wwwroot/";
var script = 'java -jar "' + destRootPath + jarName + '.jar' + '" --server.port=80';
var initScriptFileName = "startupscript_" + jarName + ".sh";
var initScriptFile = path.join(folderPath, initScriptFileName);
var destInitScriptPath = destRootPath + initScriptFileName;
if(!this.taskParams.AppSettings) {
this.taskParams.AppSettings = "-INIT_SCRIPT " + destInitScriptPath;
}
if(this.taskParams.AppSettings.indexOf("-INIT_SCRIPT") < 0) {
this.taskParams.AppSettings += " -INIT_SCRIPT " + destInitScriptPath;
}
this.taskParams.AppSettings = this.taskParams.AppSettings.trim();
tl.writeFile(initScriptFile, script, { encoding: 'utf8' });
var output = await webCommonUtility.archiveFolderForDeployment(false, folderPath);
var webPackage = output.webDeployPkg;
tl.debug("Initiated deployment via kudu service for webapp jar package : "+ webPackage);
this.zipDeploymentID = await this.kuduServiceUtility.deployUsingZipDeploy(webPackage, this.taskParams.TakeAppOfflineFlag,
{ slotName: this.appService.getSlot() });
break;
case PackageType.war:
tl.debug("Initiated deployment via kudu service for webapp war package : "+ this.taskParams.Package.getPath());
var warName = webCommonUtility.getFileNameFromPath(this.taskParams.Package.getPath(), ".war");
this.zipDeploymentID = await this.kuduServiceUtility.deployUsingWarDeploy(this.taskParams.Package.getPath(),
{ slotName: this.appService.getSlot() }, warName);
break;
default:
throw new Error(tl.loc('Invalidwebapppackageorfolderpathprovided', this.taskParams.Package.getPath()));
}
await this.appServiceUtility.updateStartupCommandAndRuntimeStack(this.taskParams.RuntimeStack, this.taskParams.StartupCommand);
await this.PostDeploymentStep();
}