Permalink
Cannot retrieve contributors at this time
92 lines (92 sloc)
2.96 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/@actions/core/lib/command.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | |
if (k2 === undefined) k2 = k; | |
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | |
}) : (function(o, m, k, k2) { | |
if (k2 === undefined) k2 = k; | |
o[k2] = m[k]; | |
})); | |
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | |
Object.defineProperty(o, "default", { enumerable: true, value: v }); | |
}) : function(o, v) { | |
o["default"] = v; | |
}); | |
var __importStar = (this && this.__importStar) || function (mod) { | |
if (mod && mod.__esModule) return mod; | |
var result = {}; | |
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | |
__setModuleDefault(result, mod); | |
return result; | |
}; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
exports.issue = exports.issueCommand = void 0; | |
const os = __importStar(require("os")); | |
const utils_1 = require("./utils"); | |
/** | |
* Commands | |
* | |
* Command Format: | |
* ::name key=value,key=value::message | |
* | |
* Examples: | |
* ::warning::This is the message | |
* ::set-env name=MY_VAR::some value | |
*/ | |
function issueCommand(command, properties, message) { | |
const cmd = new Command(command, properties, message); | |
process.stdout.write(cmd.toString() + os.EOL); | |
} | |
exports.issueCommand = issueCommand; | |
function issue(name, message = '') { | |
issueCommand(name, {}, message); | |
} | |
exports.issue = issue; | |
const CMD_STRING = '::'; | |
class Command { | |
constructor(command, properties, message) { | |
if (!command) { | |
command = 'missing.command'; | |
} | |
this.command = command; | |
this.properties = properties; | |
this.message = message; | |
} | |
toString() { | |
let cmdStr = CMD_STRING + this.command; | |
if (this.properties && Object.keys(this.properties).length > 0) { | |
cmdStr += ' '; | |
let first = true; | |
for (const key in this.properties) { | |
if (this.properties.hasOwnProperty(key)) { | |
const val = this.properties[key]; | |
if (val) { | |
if (first) { | |
first = false; | |
} | |
else { | |
cmdStr += ','; | |
} | |
cmdStr += `${key}=${escapeProperty(val)}`; | |
} | |
} | |
} | |
} | |
cmdStr += `${CMD_STRING}${escapeData(this.message)}`; | |
return cmdStr; | |
} | |
} | |
function escapeData(s) { | |
return utils_1.toCommandValue(s) | |
.replace(/%/g, '%25') | |
.replace(/\r/g, '%0D') | |
.replace(/\n/g, '%0A'); | |
} | |
function escapeProperty(s) { | |
return utils_1.toCommandValue(s) | |
.replace(/%/g, '%25') | |
.replace(/\r/g, '%0D') | |
.replace(/\n/g, '%0A') | |
.replace(/:/g, '%3A') | |
.replace(/,/g, '%2C'); | |
} | |
//# sourceMappingURL=command.js.map |