2019-08-05 11:51:04 -04:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as os from 'os';
|
2019-08-05 11:35:39 -04:00
|
|
|
import * as path from 'path';
|
2019-08-05 11:51:04 -04:00
|
|
|
import * as core from '@actions/core';
|
2019-08-05 15:18:52 -04:00
|
|
|
import * as github from '@actions/github';
|
2019-08-05 11:35:39 -04:00
|
|
|
|
2019-08-05 13:12:37 -04:00
|
|
|
export function configAuthentication(registryUrl: string) {
|
2019-08-06 09:26:34 -04:00
|
|
|
const npmrc: string = path.resolve(
|
|
|
|
process.env['RUNNER_TEMP'] || process.cwd(),
|
|
|
|
'.npmrc'
|
|
|
|
);
|
2019-08-05 11:35:39 -04:00
|
|
|
|
2019-08-05 11:57:53 -04:00
|
|
|
writeRegistryToFile(registryUrl, npmrc);
|
2019-08-05 11:35:39 -04:00
|
|
|
}
|
|
|
|
|
2019-08-05 11:57:53 -04:00
|
|
|
function writeRegistryToFile(registryUrl: string, fileLocation: string) {
|
2019-08-05 15:18:52 -04: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 11:51:04 -04:00
|
|
|
core.debug(`Setting auth in ${fileLocation}`);
|
2019-08-05 13:15:47 -04:00
|
|
|
let newContents: string = '';
|
2019-08-05 11:51:04 -04:00
|
|
|
if (fs.existsSync(fileLocation)) {
|
2019-08-05 13:12:37 -04:00
|
|
|
const curContents: string = fs.readFileSync(fileLocation, 'utf8');
|
2019-08-05 11:51:04 -04:00
|
|
|
curContents.split(os.EOL).forEach((line: string) => {
|
|
|
|
// Add current contents unless they are setting the registry
|
2019-08-05 13:12:37 -04:00
|
|
|
if (!line.toLowerCase().startsWith('registry')) {
|
2019-08-05 11:51:04 -04:00
|
|
|
newContents += line + os.EOL;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2019-08-05 15:18:52 -04: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 11:51:04 -04:00
|
|
|
fs.writeFileSync(fileLocation, newContents);
|
2019-08-06 09:26:34 -04:00
|
|
|
core.exportVariable('NPM_CONFIG_USERCONFIG', fileLocation);
|
2019-08-05 11:35:39 -04:00
|
|
|
}
|