Sharkey/src/api/serializers/drive-file.ts

69 lines
1.3 KiB
TypeScript
Raw Normal View History

2016-12-28 22:49:51 +00:00
'use strict';
/**
* Module dependencies
*/
import * as mongo from 'mongodb';
import DriveFile from '../models/drive-file';
import serializeDriveTag from './drive-tag';
2017-01-02 21:03:19 +00:00
import deepcopy = require('deepcopy');
2017-01-17 00:17:52 +00:00
import config from '../../conf';
2016-12-28 22:49:51 +00:00
/**
* Serialize a drive file
*
* @param {Object} file
* @param {Object} options?
* @return {Promise<Object>}
*/
export default (
file: any,
options?: {
includeTags: boolean
}
) => new Promise<Object>(async (resolve, reject) => {
const opts = options || {
includeTags: true
};
let _file: any;
// Populate the file if 'file' is ID
if (mongo.ObjectID.prototype.isPrototypeOf(file)) {
_file = await DriveFile.findOne({
_id: file
}, {
2017-01-17 21:21:22 +00:00
fields: {
data: false
}
2016-12-28 22:49:51 +00:00
});
} else if (typeof file === 'string') {
_file = await DriveFile.findOne({
_id: new mongo.ObjectID(file)
}, {
2017-01-17 21:21:22 +00:00
fields: {
data: false
}
2016-12-28 22:49:51 +00:00
});
} else {
_file = deepcopy(file);
}
// Rename _id to id
_file.id = _file._id;
delete _file._id;
delete _file.data;
_file.url = `${config.drive_url}/${_file.id}/${encodeURIComponent(_file.name)}`;
if (opts.includeTags && _file.tags) {
// Populate tags
_file.tags = await _file.tags.map(async (tag: any) =>
await serializeDriveTag(tag)
);
}
resolve(_file);
});