NotesController: Get text from request body when creating a named note.

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-09-22 18:31:20 +02:00
parent cccd52d1b0
commit 1abb472621
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -52,11 +52,21 @@ export class NotesController {
} }
@Post(':noteAlias') @Post(':noteAlias')
createNamedNote( async createNamedNote(
@Param('noteAlias') noteAlias: string, @Param('noteAlias') noteAlias: string,
@Body() noteContent: string, @Req() req: Request,
) { ) {
return this.noteService.createNote(noteContent, noteAlias); // we have to check req.readable because of raw-body issue #57
// https://github.com/stream-utils/raw-body/issues/57
if (req.readable) {
let bodyText: string = await getRawBody(req, 'utf-8');
bodyText = bodyText.trim();
this.logger.debug('Got raw markdown:\n' + bodyText);
return this.noteService.createNote(bodyText, noteAlias);
} else {
// TODO: Better error message
throw new BadRequestException('Invalid body');
}
} }
@Delete(':noteIdOrAlias') @Delete(':noteIdOrAlias')