Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scan create: allow maven files, include cwd option #319

Merged
merged 7 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 31 additions & 7 deletions src/commands/scan/cmd-create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ const config: CliCommandConfig = {
default: '',
description: 'Commit hash'
},
cwd: {
type: 'string',
description: 'working directory, defaults to process.cwd()'
},
pullRequest: {
type: 'number',
shortFlag: 'pr',
Expand Down Expand Up @@ -76,13 +80,18 @@ const config: CliCommandConfig = {
},
help: (parentName, config) => `
Usage
$ ${parentName} ${config.commandName} [...options] <org>
$ ${parentName} ${config.commandName} [...options] <org> <TARGET> [TARGET...]

Where TARGET is a FILE or DIR that _must_ be inside the CWD.

When a FILE is given only that FILE is targeted. Otherwise any eligible
files in the given DIR will be considered.

Options
${getFlagListOutput(config.flags, 6)}

Examples
$ ${parentName} ${config.commandName} --org=FakeOrg --repo=test-repo --branch=main ./package.json
$ ${parentName} ${config.commandName} --repo=test-repo --branch=main FakeOrg ./package.json
`
}

Expand All @@ -104,8 +113,12 @@ async function run(
flags: config.flags
})

const orgSlug = cli.input[0] ?? '' // TODO: if nobody uses this then get rid of it in favor of --org
const cwd = process.cwd()
const [orgSlug = '', ...targets] = cli.input

const cwd =
cli.flags['cwd'] && cli.flags['cwd'] !== 'process.cwd()'
? String(cli.flags['cwd'])
: process.cwd()

const socketSdk = await setupSdk()
const supportedFiles = await socketSdk
Expand All @@ -126,18 +139,28 @@ async function run(

const packagePaths = await getPackageFilesFullScans(
cwd,
cli.input,
targets,
supportedFiles
)

const { branch: branchName, repo: repoName } = cli.flags

if (!orgSlug || !repoName || !branchName || !packagePaths.length) {
console.error(`${colors.bgRed(colors.white('Input error'))}: Please provide the required fields:\n
- Org name as the argument ${!orgSlug ? colors.red('(missing!)') : colors.green('(ok)')}\n
- Org name as the first argument ${!orgSlug ? colors.red('(missing!)') : colors.green('(ok)')}\n
- Repository name using --repo ${!repoName ? colors.red('(missing!)') : colors.green('(ok)')}\n
- Branch name using --branch ${!branchName ? colors.red('(missing!)') : colors.green('(ok)')}\n
- At least one file path (e.g. ./package.json) ${!packagePaths.length ? colors.red('(missing or no matching/supported files found!)') : colors.green('(ok)')}`)
- At least one TARGET (e.g. \`.\` or \`./package.json\`) ${
!packagePaths.length
? colors.red(
targets.length > 0
? '(TARGET' +
(targets.length ? 's' : '') +
' contained no matching/supported files!)'
: '(missing)'
)
: colors.green('(ok)')
}`)
config.help(parentName, config)
return
}
Expand All @@ -159,6 +182,7 @@ async function run(
pendingHead: Boolean(cli.flags['pendingHead']),
tmp: Boolean(cli.flags['tmp']),
packagePaths,
cwd,
commitHash: (cli.flags['commitHash'] as string) ?? '',
committers: (cli.flags['committers'] as string) ?? '',
pullRequest: (cli.flags['pullRequest'] as number) ?? undefined
Expand Down
5 changes: 4 additions & 1 deletion src/commands/scan/create-full-scan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export async function createFullScan({
commitHash: _commitHash,
commitMessage,
committers: _committers,
cwd,
defaultBranch,
orgSlug,
packagePaths,
Expand All @@ -35,6 +36,7 @@ export async function createFullScan({
pendingHead: boolean
tmp: boolean
packagePaths: string[]
cwd: string
}): Promise<void> {
const spinnerText = 'Creating a scan... \n'
const spinner = new Spinner({ text: spinnerText }).start()
Expand All @@ -51,7 +53,8 @@ export async function createFullScan({
set_as_pending_head: pendingHead,
tmp
},
packagePaths
packagePaths,
cwd
),
'Creating scan'
)
Expand Down
22 changes: 15 additions & 7 deletions src/utils/path-resolve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,18 @@ async function filterGlobResultToSupportedFiles(
entries: string[],
supportedFiles: SocketSdkReturnType<'getReportSupportedFiles'>['data']
): Promise<string[]> {
const patterns = ['golang', NPM, 'pypi'].reduce((r: string[], n: string) => {
const supported = supportedFiles[n]
r.push(
...(supported ? Object.values(supported).map(p => `**/${p.pattern}`) : [])
)
return r
}, [])
const patterns = ['golang', NPM, 'maven', 'pypi'].reduce(
(r: string[], n: string) => {
const supported = supportedFiles[n]
r.push(
...(supported
? Object.values(supported).map(p => `**/${p.pattern}`)
: [])
)
return r
},
[]
)
return entries.filter(p => micromatch.some(p, patterns))
}

Expand Down Expand Up @@ -84,6 +89,9 @@ async function globWithGitIgnore(
return result
}
const { absolute } = globOptions

// Note: the input files must be INSIDE the cwd. If you get strange looking
// relative path errors here, most likely your path is outside the given cwd.
const filtered = ignore()
.add(ignores)
.filter(absolute ? result.map(p => path.relative(cwd, p)) : result)
Expand Down
Loading