summaryrefslogtreecommitdiffstats
path: root/models/import.js
diff options
context:
space:
mode:
authorXavier Priour <xavier.priour@bubblyware.com>2015-10-14 17:57:58 +0200
committerMaxime Quandalle <maxime@quandalle.com>2015-10-14 23:23:16 +0200
commitd8892d640860b77795b1e81d2ba121cf65d35373 (patch)
tree03f12e41264e032d56df1e4390fcf35a7fb5940d /models/import.js
parent7e64c22c1a6352e805b0ba9402062823f9b02e11 (diff)
downloadwekan-d8892d640860b77795b1e81d2ba121cf65d35373.tar.gz
wekan-d8892d640860b77795b1e81d2ba121cf65d35373.tar.bz2
wekan-d8892d640860b77795b1e81d2ba121cf65d35373.zip
Import single card: refactor to meteor method
Diffstat (limited to 'models/import.js')
-rw-r--r--models/import.js98
1 files changed, 98 insertions, 0 deletions
diff --git a/models/import.js b/models/import.js
new file mode 100644
index 00000000..83559078
--- /dev/null
+++ b/models/import.js
@@ -0,0 +1,98 @@
+Meteor.methods({
+ /**
+ *
+ */
+ importTrelloCard(trelloCard, listId, sortIndex) {
+ DateString = Match.Where(function (dateAsString) {
+ check(dateAsString, String);
+ //const date = new Date(dateAsString);
+ //return (date.toString() !== 'Invalid Date') && !isNan(date);
+ return moment(dateAsString, moment.ISO_8601).isValid();
+ });
+
+ check(trelloCard, Match.ObjectIncluding({
+ name: String,
+ desc: String,
+ closed: Boolean,
+ dateLastActivity: DateString,
+ labels: [Match.ObjectIncluding({
+ name: String,
+ color: String,
+ })],
+ actions: [Match.ObjectIncluding({
+ type: String,
+ date: DateString,
+ data: Object,
+ })],
+ members: [Object],
+ }));
+ check(listId, String);
+ check(sortIndex, Number);
+
+ const list = Lists.findOne(listId);
+ if(!list) {
+ throw 'exception-list-doesNotExist';
+ }
+
+ // XXX check we are allowed to run method
+
+ // 1. map all fields for the card to create
+ const dateOfImport = new Date();
+ // XXX parse trelloCard.actions to determine creation date
+ const cardToCreate = {
+ title: trelloCard.name,
+ description: trelloCard.desc,
+ listId: list._id,
+ boardId: list.boardId,
+ userId: Meteor.userId(),
+ sort: sortIndex,
+ archived: trelloCard.closed,
+ // XXX dateOfImport
+ createdAt: dateOfImport,
+ dateLastActivity: dateOfImport,
+ };
+ // 2. map labels
+ trelloCard.labels.forEach((currentLabel) => {
+ const color = currentLabel.color;
+ const name = currentLabel.name;
+ const existingLabel = list.board().getLabel(name, color);
+ let labelId = undefined;
+ if (existingLabel) {
+ labelId = existingLabel._id;
+ } else {
+ let labelCreated = list.board().addLabel(name, color);
+ // XXX currently mutations return no value so we have to fetch the label we just created
+ // waiting on https://github.com/mquandalle/meteor-collection-mutations/issues/1 to remove...
+ labelCreated = list.board().getLabel(name, color);
+ labelId = labelCreated._id;
+ }
+ if(labelId) {
+ if (!cardToCreate.labelIds) {
+ cardToCreate.labelIds = [];
+ }
+ cardToCreate.labelIds.push(labelId);
+ }
+ });
+ // 3. insert new card into list
+ // XXX replace with direct MongoDB inserts
+ const _id = Cards.direct.insert(cardToCreate);
+ // XXX then add import activity
+ // 4. parse actions and add comments
+ trelloCard.actions.forEach((currentAction) => {
+ if(currentAction.type === 'commentCard') {
+ const commentToCreate = {
+ boardId: list.boardId,
+ cardId: _id,
+ userId: Meteor.userId(),
+ text: currentAction.data.text,
+ createdAt: currentAction.date,
+ };
+ // console.log(commentToCreate);
+ CardComments.direct.insert(commentToCreate);
+ }
+ // XXX add other type of activities?
+ // XXX look for createCard to set create date > no do it BEFORE saving
+ });
+ return _id;
+ },
+});