Files
setup-node/src/authutil.ts
T

54 lines
1.8 KiB
TypeScript
Raw Normal View History

2019-08-06 18:26:04 -04:00
import * as fs from 'fs';
import * as os from 'os';
import * as path from 'path';
import * as core from '@actions/core';
import * as github from '@actions/github';
export function configAuthentication(registryUrl: string) {
2019-08-06 18:26:04 -04:00
const npmrc: string = path.resolve(
process.env['RUNNER_TEMP'] || process.cwd(),
'.npmrc'
);
if (!registryUrl.endsWith('/')) {
registryUrl += '/';
}
writeRegistryToFile(registryUrl, npmrc);
2019-08-06 18:26:04 -04:00
}
function writeRegistryToFile(registryUrl: string, fileLocation: string) {
2019-08-06 18:26:04 -04:00
let scope: string = core.getInput('scope');
if (!scope && registryUrl.indexOf('npm.pkg.github.com') > -1) {
scope = github.context.repo.owner;
}
if (scope && scope[0] != '@') {
scope = '@' + scope;
}
if (scope) {
2022-12-05 13:32:26 +01:00
scope = scope.toLowerCase() + ':';
}
2019-08-06 18:26:04 -04:00
core.debug(`Setting auth in ${fileLocation}`);
let newContents = '';
2019-08-06 18:26:04 -04:00
if (fs.existsSync(fileLocation)) {
const curContents: string = fs.readFileSync(fileLocation, 'utf8');
curContents.split(os.EOL).forEach((line: string) => {
// Add current contents unless they are setting the registry
2022-12-05 13:32:26 +01:00
if (!line.toLowerCase().startsWith(`${scope}registry`)) {
2019-08-06 18:26:04 -04:00
newContents += line + os.EOL;
}
});
}
// Remove http: or https: from front of registry.
const authString: string =
registryUrl.replace(/(^\w+:|^)/, '') + ':_authToken=${NODE_AUTH_TOKEN}';
const registryString = `${scope}registry=${registryUrl}`;
newContents += `${authString}${os.EOL}${registryString}`;
2019-08-06 18:26:04 -04:00
fs.writeFileSync(fileLocation, newContents);
core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
2026-05-28 08:26:31 +05:30
// Only export NODE_AUTH_TOKEN if explicitly provided by user
if (Object.prototype.hasOwnProperty.call(process.env, 'NODE_AUTH_TOKEN')) {
core.exportVariable('NODE_AUTH_TOKEN', process.env.NODE_AUTH_TOKEN);
}
2019-08-06 18:26:04 -04:00
}