Ref: trello & wekan importers

This commit is contained in:
David Arnold 2020-09-13 23:02:39 -05:00 committed by Denis Perov
parent 55acce9f0c
commit e2934b9b09
2 changed files with 48 additions and 103 deletions

View file

@ -422,46 +422,36 @@ export class TrelloCreator {
}
const attachments = this.attachments[card.id];
const trelloCoverId = card.idAttachmentCover;
if (attachments) {
const links = [];
// Simulating file.attachData on the client generates multiple errors
// - HEAD returns null, which causes exception down the line
// - the template then tries to display the url to the attachment which causes other errors
// so we make it server only, and let UI catch up once it is done, forget about latency comp.
if (attachments && Meteor.isServer) {
attachments.forEach(att => {
// if the attachment `name` and `url` are the same, then the
// attachment is an attached link
if (att.name === att.url) {
links.push(att.url);
} else {
const file = new FS.File();
// Simulating file.attachData on the client generates multiple errors
// - HEAD returns null, which causes exception down the line
// - the template then tries to display the url to the attachment which causes other errors
// so we make it server only, and let UI catch up once it is done, forget about latency comp.
const self = this;
if (Meteor.isServer) {
file.attachData(att.url, function(error) {
file.boardId = boardId;
file.cardId = cardId;
file.userId = self._user(att.idMemberCreator);
// The field source will only be used to prevent adding
// attachments' related activities automatically
file.source = 'import';
if (error) {
throw error;
} else {
const wekanAtt = Attachments.insert(file, () => {
// we do nothing
});
self.attachmentIds[att.id] = wekanAtt._id;
//
if (trelloCoverId === att.id) {
Cards.direct.update(cardId, {
$set: { coverId: wekanAtt._id },
});
}
}
});
}
// Simulating file.attachData on the client generates multiple errors
// - HEAD returns null, which causes exception down the line
// - the template then tries to display the url to the attachment which causes other errors
// so we make it server only, and let UI catch up once it is done, forget about latency comp.
const self = this;
if (att.url) {
Attachment.load(att.url, (error, fileObj) => {
if (error) {
throw error;
}
fileObj.boardId = boardId;
fileObj.cardId = cardId;
fileObj.userId = self._user(att.userId);
// The field source will only be used to prevent adding
// attachments' related activities automatically
fileObj.source = 'import';
self.attachmentIds[att._id] = fileObj._id;
if (trelloCoverId === att.id) {
Cards.direct.update(cardId, {
$set: { coverId: fileObj._id },
});
}
});
}
// todo XXX set cover - if need be
});
if (links.length) {