Skip to content

Commit

Permalink
generated and pretty files
Browse files Browse the repository at this point in the history
  • Loading branch information
Bryan Clark committed Nov 28, 2019
1 parent b0e5cf2 commit dc5f78f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
9 changes: 5 additions & 4 deletions lib/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ const core = __importStar(require("@actions/core"));
const io = __importStar(require("@actions/io"));
exports.M2_DIR = '.m2';
exports.SETTINGS_FILE = 'settings.xml';
function configAuthentication(username, password) {
function configAuthentication(id, username, password) {
return __awaiter(this, void 0, void 0, function* () {
if (username && password) {
if (id && username && password) {
core.debug(`configAuthentication with ${username} and a password`);
const directory = path.join(os.homedir(), exports.M2_DIR);
yield io.mkdirP(directory);
core.debug(`created directory ${directory}`);
yield write(directory, generate(username, password));
yield write(directory, generate(id, username, password));
}
else {
core.debug(`no auth without username: ${username} and password: ${password}`);
Expand All @@ -38,11 +38,12 @@ function configAuthentication(username, password) {
}
exports.configAuthentication = configAuthentication;
// only exported for testing purposes
function generate(username, password) {
function generate(id, username, password) {
return `
<settings>
<servers>
<server>
<id>${id}</id>
<username>${username}</username>
<password>${password}</password>
</server>
Expand Down
9 changes: 6 additions & 3 deletions lib/setup-java.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@ function run() {
const arch = core.getInput('architecture', { required: true });
const jdkFile = core.getInput('jdkFile', { required: false }) || '';
yield installer.getJava(version, arch, jdkFile);
const username = core.getInput('username', { required: false });
const password = core.getInput('password', { required: false });
yield auth.configAuthentication(username, password);
const matchersPath = path.join(__dirname, '..', '.github');
console.log(`##[add-matcher]${path.join(matchersPath, 'java.json')}`);
const id = core.getInput('id', { required: false });
const username = core.getInput('username', { required: false });
const password = core.getInput('password', { required: false });
if (id && username && password) {
yield auth.configAuthentication(id, username, password);
}
}
catch (error) {
core.setFailed(error.message);
Expand Down
6 changes: 5 additions & 1 deletion src/auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ import * as io from '@actions/io';
export const M2_DIR = '.m2';
export const SETTINGS_FILE = 'settings.xml';

export async function configAuthentication(id: string, username: string, password: string) {
export async function configAuthentication(
id: string,
username: string,
password: string
) {
if (id && username && password) {
core.debug(`configAuthentication with ${username} and a password`);
const directory: string = path.join(os.homedir(), M2_DIR);
Expand Down
1 change: 0 additions & 1 deletion src/setup-java.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ async function run() {
if (id && username && password) {
await auth.configAuthentication(id, username, password);
}

} catch (error) {
core.setFailed(error.message);
}
Expand Down

0 comments on commit dc5f78f

Please sign in to comment.