-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bdb28dd
commit d0b7530
Showing
3 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import { Args } from '@oclif/core'; | ||
import { promises as fs } from 'fs'; | ||
import * as yaml from 'js-yaml'; | ||
import Command from '../core/base'; | ||
import { load } from '../core/models/SpecificationFile'; | ||
import { ValidationError } from '../core/errors/validation-error'; | ||
import { prettyFlags } from '../core/flags/pretty.flags'; | ||
|
||
export default class Pretty extends Command { | ||
static description = 'Format AsyncAPI specification file'; | ||
|
||
static examples = [ | ||
'asyncapi pretty ./asyncapi.yaml', | ||
'asyncapi pretty ./asyncapi.yaml --output formatted-asyncapi.yaml', | ||
]; | ||
|
||
static flags = prettyFlags(); | ||
|
||
static args = { | ||
'spec-file': Args.string({description: 'spec path, url, or context-name', required: true}), | ||
}; | ||
|
||
async run() { | ||
const { args, flags } = await this.parse(Pretty); | ||
const filePath = args['spec-file']; | ||
const outputPath = flags.output; | ||
|
||
try { | ||
this.specFile = await load(filePath); | ||
} catch (err) { | ||
this.error( | ||
new ValidationError({ | ||
type: 'invalid-file', | ||
filepath: filePath, | ||
}) | ||
); | ||
} | ||
|
||
const content = this.specFile.text(); | ||
let formatted: string; | ||
|
||
try { | ||
const parsed = yaml.load(content); | ||
formatted = yaml.dump(parsed, { | ||
indent: 2, | ||
lineWidth: -1, | ||
noRefs: true, | ||
sortKeys: true, | ||
}); | ||
} catch (err) { | ||
this.error(`Error formatting file: ${err}`); | ||
} | ||
|
||
if (outputPath) { | ||
await fs.writeFile(outputPath, formatted, 'utf8'); | ||
this.log(`Formatted content has been written to ${outputPath}`); | ||
} else { | ||
await fs.writeFile(filePath, formatted, 'utf8'); | ||
this.log(`File ${filePath} has been formatted in-place.`); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { Flags } from '@oclif/core'; | ||
|
||
export const prettyFlags = () => { | ||
return { | ||
output: Flags.string({ | ||
char: 'o', | ||
description: 'Output file path', | ||
}), | ||
}; | ||
}; |
Empty file.