Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fix/temporary-file-streams' into…
Browse files Browse the repository at this point in the history
… try/github-action-tests
  • Loading branch information
sr258 committed Dec 4, 2019
2 parents 0099273 + 4a33b5f commit 1004ed6
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 18 deletions.
2 changes: 2 additions & 0 deletions examples/express.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ const start = async () => {
);
stream.on('end', () => {
res.end();
stream.close();
});
stream.pipe(res.type(path.basename(req.params.file)));
});
Expand All @@ -86,6 +87,7 @@ const start = async () => {
);
stream.on('end', () => {
res.end();
stream.close();
});
stream.pipe(res.type(path.basename(req.params.file)));
}
Expand Down
28 changes: 16 additions & 12 deletions src/ContentStorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,22 +262,26 @@ export default class ContentStorer {
`Temporary file ${fileToCopy} does not exist or is not accessible to user: ${error}`
);
}
if (readStream !== undefined) {
log.debug(
`Adding temporary file ${fileToCopy} to content id ${contentId}`
);
await this.contentManager.addContentFile(
contentId,
fileToCopy,
readStream,
user
);
if (deleteTemporaryFiles) {
await this.temporaryFileManager.deleteFile(
try {
if (readStream !== undefined) {
log.debug(
`Adding temporary file ${fileToCopy} to content id ${contentId}`
);
await this.contentManager.addContentFile(
contentId,
fileToCopy,
readStream,
user
);
if (deleteTemporaryFiles) {
await this.temporaryFileManager.deleteFile(
fileToCopy,
user
);
}
}
} finally {
readStream.close();
}
}
}
Expand Down
1 change: 1 addition & 0 deletions src/TemporaryFileManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export default class TemporaryFileManager {
/**
* Returns a file stream for temporary file.
* Will throw H5PError if the file doesn't exist or the user has no access permissions!
* Make sure to close this stream. Otherwise the temporary files can't be deleted properly!
* @param filename the file to get
* @param user the user who requests the file
* @returns a stream to read from
Expand Down
13 changes: 7 additions & 6 deletions test/H5PEditor.saving.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ describe('H5PEditor', () => {
mockWriteStream1.on('finish', onFinish1);
await promisepipe(returnedStream, mockWriteStream1);
expect(onFinish1).toHaveBeenCalled();
returnedStream.close();
},
{ keep: false, unsafeCleanup: true }
);
Expand Down Expand Up @@ -360,12 +361,12 @@ describe('H5PEditor', () => {
0,
savedFilePath.length - 4
);
await expect(
h5pEditor.temporaryFileManager.getFileStream(
cleanFilePath,
user
)
).resolves.toBeDefined();
const fileStream = await h5pEditor.temporaryFileManager.getFileStream(
cleanFilePath,
user
);
await expect(fileStream).toBeDefined();
fileStream.close();

// put path of image into parameters (like the H5P editor client would)
mockupParametersWithImage.image.path = savedFilePath;
Expand Down

0 comments on commit 1004ed6

Please sign in to comment.