Details
-
Wish
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
2.17.0
-
None
-
Any
-
Novice
Description
Currently the camel-mongodb-gridfs component (which is not available in this Jira) when a file is cretated does not return back the Id (_id) of the file created, it only returns the filename
String metaData = exchange.getIn().getHeader(GridFsEndpoint.GRIDFS_METADATA, String.class); DBObject dbObject = (DBObject) JSON.parse(metaData); gfsFile.setMetaData(dbObject); gfsFile.save(); exchange.getIn().setHeader(Exchange.FILE_NAME_PRODUCED, gfsFile.getFilename());
mongodb api has the method getid: http://api.mongodb.org/java/current/com/mongodb/gridfs/GridFSFile.html#getId--
So i'd like to ask to:
a) create a header field (maybe GridFsEndpoint.GRIDFS_FILE_ID_PRODUCED)
b) Add the header after the creation
String metaData = exchange.getIn().getHeader(GridFsEndpoint.GRIDFS_METADATA, String.class); DBObject dbObject = (DBObject) JSON.parse(metaData); gfsFile.setMetaData(dbObject); gfsFile.save(); exchange.getIn().setHeader(Exchange.FILE_NAME_PRODUCED, gfsFile.getFilename()); exchange.getIn().setHeader(GridFsEndpoint.GRIDFS_FILE_ID_PRODUCED, gfsFile.getId());
Of course I can create a PR myself, but I think the administrative work would be more? Up to you guys.