setup-node/lib/authutil.js

45 lines
1.9 KiB
JavaScript
Raw Normal View History

2019-08-05 23:35:39 +08:00
"use strict";
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
2019-08-05 23:51:04 +08:00
const fs = __importStar(require("fs"));
const os = __importStar(require("os"));
2019-08-05 23:35:39 +08:00
const path = __importStar(require("path"));
2019-08-05 23:51:04 +08:00
const core = __importStar(require("@actions/core"));
2019-08-06 03:18:52 +08:00
const github = __importStar(require("@actions/github"));
2019-08-06 01:12:37 +08:00
function configAuthentication(registryUrl) {
const npmrc = path.resolve(process.cwd(), '.npmrc');
writeRegistryToFile(registryUrl, npmrc);
2019-08-05 23:35:39 +08:00
}
2019-08-06 01:12:37 +08:00
exports.configAuthentication = configAuthentication;
function writeRegistryToFile(registryUrl, fileLocation) {
2019-08-06 03:18:52 +08:00
let scope = core.getInput('scope');
if (!scope && registryUrl.indexOf('npm.pkg.github.com') > -1) {
scope = github.context.repo.owner;
}
if (scope && scope[0] != '@') {
scope = '@' + scope;
}
2019-08-05 23:51:04 +08:00
core.debug(`Setting auth in ${fileLocation}`);
let newContents = '';
if (fs.existsSync(fileLocation)) {
const curContents = fs.readFileSync(fileLocation, 'utf8');
curContents.split(os.EOL).forEach((line) => {
// Add current contents unless they are setting the registry
2019-08-06 01:12:37 +08:00
if (!line.toLowerCase().startsWith('registry')) {
2019-08-05 23:51:04 +08:00
newContents += line + os.EOL;
}
});
}
2019-08-06 03:18:52 +08:00
// Remove http: or https: from front of registry.
const authString = registryUrl.replace(/(^\w+:|^)/, '') + ':_authToken=${NODE_AUTH_TOKEN}';
const registryString = scope ? `${scope}:registry=${registryUrl}` : `registry=${registryUrl}`;
newContents += `${registryString}${os.EOL}always-auth=true${os.EOL}${authString}`;
2019-08-05 23:51:04 +08:00
fs.writeFileSync(fileLocation, newContents);
2019-08-05 23:35:39 +08:00
}